/* Theme variables are centralized in theme.css. */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', sans-serif;
}

.logo img {
    height: 60px;
}

body {
    background-color: var(--bg-base);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
}

/* --- Typography Helpers --- */
.text-gradient {
    background: linear-gradient(90deg, #8b5cf6, #d946ef);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.section-tag {
    color: var(--primary);
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
    margin-bottom: 16px;
    display: block;
}

/* --- Hero Section --- */
.hero {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    padding: 100px 0;
    align-items: center;
}

.hero h1 {
    font-size: clamp(2.5rem, 8vw, 4rem);
    line-height: 1.15;
    margin-bottom: 24px;
}

.hero p {
    color: var(--text-muted);
    font-size: clamp(1rem, 3vw, 1.1rem);
    max-width: 500px;
}

.hero-graphic {
    position: relative;
    height: auto;
    min-height: 300px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-graphic img {
    height: auto;
    max-height: 400px;
    width: 100%;
    object-fit: contain;
    border-radius: 25px;
}

/* Orbit Graphic Mockup */
.orbit-center {
    width: 140px;
    height: 140px;
    background: linear-gradient(135deg, #2e0854, #4c1d95);
    border-radius: 20px;
    transform: rotate(45deg);
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 0 50px var(--primary-glow);
    position: relative;
    z-index: 2;
}

.orbit-center span {
    transform: rotate(-45deg);
    font-size: 4rem;
    font-weight: 800;
    color: white;
}

.orbit-ring {
    position: absolute;
    width: 250px;
    height: 250px;
    border: 1px dashed rgba(139, 92, 246, 0.3);
    border-radius: 50%;
    z-index: 1;
}

.orbit-node {
    position: absolute;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    text-align: center;
}

.orbit-icon {
    width: 50px;
    height: 50px;
    background: var(--bg-surface);
    border: 1px solid var(--primary);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--primary);
    font-size: 1.2rem;
    box-shadow: 0 0 15px rgba(139, 92, 246, 0.2);
}

.orbit-node span {
    font-weight: 600;
    font-size: 0.9rem;
}

.orbit-node small {
    color: var(--text-muted);
    font-size: 0.75rem;
}

.node-top {
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
}

.node-bottom {
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
}

.node-left {
    left: 0;
    top: 50%;
    transform: translateY(-50%);
}

.node-right {
    right: 0;
    top: 50%;
    transform: translateY(-50%);
}

/* --- Core Services Section --- */
.core-header {
    text-align: center;
    margin: 60px 0 80px;
}

.core-header h2 {
    font-size: clamp(1.8rem, 6vw, 2.5rem);
    margin-bottom: 16px;
}

.core-header p {
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto;
}

.service-block {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(30px, 6vw, 60px);
    background: var(--bg-surface);
    border: 1px solid var(--border-color);
    border-radius: 24px;
    padding: clamp(20px, 4vw, 40px);
    margin-bottom: 10px;
    align-items: center;
}

.service-block.reverse {
    grid-template-columns: 1.2fr 0.8fr;
}

.service-block.reverse .block-content {
    grid-column: 1;
    grid-row: 1;
}

.block-content h3 {
    font-size: clamp(1.5rem, 5vw, 2rem);
    margin-bottom: 8px;
}

.block-content .highlight {
    color: var(--primary);
    font-weight: 600;
    margin-bottom: 20px;
}

.block-content>p {
    color: var(--text-muted);
    margin-bottom: 32px;
    font-size: 1.05rem;
}

.icon-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 16px;
    margin-bottom: 32px;
}

.icon-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 12px;
}

.icon-item i {
    font-size: 1.8rem;
    color: var(--primary);
}

.icon-item span {
    font-size: 0.8rem;
    color: var(--text-muted);
    line-height: 1.2;
}

.outcomes-box {
    background: rgba(139, 92, 246, 0.05);
    border: 1px solid rgba(139, 92, 246, 0.2);
    border-radius: 12px;
    padding: clamp(16px, 4vw, 24px);
    display: flex;
    gap: clamp(16px, 4vw, 24px);
}

.outcomes-label {
    color: var(--primary);
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.outcomes-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    flex: 1;
}

.outcomes-list div {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    font-size: 0.9rem;
}

.outcomes-list i {
    color: var(--primary);
    margin-top: 3px;
    font-size: 0.9rem;
}

/* --- Mocking Images in Service Blocks --- */
.service-block .mock-img img {
    height: auto;
    width: 100%;
    border-radius: 25px;
    top: 0;
    bottom: 0;
}
.mock-img img{
    border-radius: 45px;
}


/* Image 2: Dashboard */
.mock-dash {
    flex-direction: column;
    padding: 40px;
    align-items: flex-start;
}

.dash-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 20px;
    width: 100%;
    margin-bottom: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.dash-line {
    height: 8px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    margin-bottom: 12px;
}

.dash-line.w-50 {
    width: 50%;
}

.dash-line.w-75 {
    width: 75%;
}

.dash-btn {
    background: rgba(16, 185, 129, 0.2);
    color: var(--success);
    border: 1px solid var(--success);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.8rem;
    align-self: flex-end;
}

/* Image 3: Mobile User */


.mobile-ui {
    position: absolute;
    background: rgba(16, 6, 36, 0.8);
    border: 1px solid var(--primary);
    padding: 10px 15px;
    border-radius: 12px;
    font-size: 0.8rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

.ui-1 {
    top: 20%;
    left: 10%;
}

.ui-2 {
    top: 40%;
    right: 10%;
}

.ui-3 {
    bottom: 20%;
    right: 20%;
}

/* Image 4: Storefront */
.mock-store {
    flex-direction: column;
}

.store-awning {
    width: 200px;
    height: 40px;
    background: repeating-linear-gradient(90deg, #1a0b3b, #1a0b3b 20px, #2e1a5a 20px, #2e1a5a 40px);
    border-radius: 10px 10px 0 0;
}

.store-window {
    width: 180px;
    height: 100px;
    background: rgba(139, 92, 246, 0.1);
    border: 2px solid var(--primary);
    border-top: none;
    display: flex;


    justify-content: center;
    align-items: center;
    font-size: 3rem;
    color: var(--primary);
}

.robot-icon {
    font-size: 3rem;
    color: var(--text-main);
    margin-bottom: 20px;
}


.btn-outline {
    background: transparent;
    border: 1px solid var(--border-color);
}

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.05);
}


@media (max-width: 1024px) {

    .hero,
    .service-block,
    .service-block.reverse {
        grid-template-columns: 1fr;
    }

    .service-block.reverse .block-content {
        grid-row: 2;
    }

    .icon-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .outcomes-box {
        flex-direction: column;
        gap: 12px;
    }
}

/* Remove extra image spacing */
.block-image {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 !important;
    margin: 0 !important;
    min-height: unset !important;
}

.block-image img {
    display: block;
    width: 100%;
    height: auto;
    margin: 0 !important;
    border-radius: 25px !important;
}




/* Service Learn More Button */
.service-actions {
    margin-top: 24px;
}

.btn-learn-more {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 24px;
    border-radius: 12px;
    text-decoration: none;
    font-size: 15px;
    font-weight: 600;
    color: #fff;
    background: linear-gradient(135deg, #7c3aed, #a855f7);
    transition: all .25s ease;
    box-shadow: 0 10px 24px rgba(124, 58, 237, .18);
}

.btn-learn-more:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 30px rgba(124, 58, 237, .28);
}

.btn-learn-more i {
    transition: transform .25s ease;
}

.btn-learn-more:hover i {
    transform: translateX(4px);
}
