﻿* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --navy: #0E1B5E;
    --navy-dark: #050D2E;
    --cyan: #00C2E8;
    --cyan-light: rgba(0,194,232,0.12);
    --orange: #F17E1F;
    --rose: #E05A8A;
    --gray-light: #F8FAFE;
    --gray-mid: #5a6a8f;
    --white: #ffffff;
    --shadow-sm: 0 8px 20px rgba(14,27,94,0.07);
    --shadow-md: 0 16px 32px rgba(14,27,94,0.10);
    --shadow-lg: 0 24px 48px rgba(14,27,94,0.14);
    --grad-accent: linear-gradient(135deg,var(--orange),var(--rose));
    --grad-brand: linear-gradient(135deg,var(--navy-dark),var(--navy));
    --grad-cyan: linear-gradient(135deg,var(--navy),var(--cyan));
    --radius: 20px;
    --radius-sm: 12px;
    --radius-pill: 40px;
}

body {
    font-family: 'Inter',sans-serif;
    background: #fff;
    color: var(--navy);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, .logo-text h1, .section-tag {
    font-family: 'Syne',sans-serif;
}

img {
    max-width: 100%;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ---- BUTTONS ---- */
.btn-primary {
    background: var(--grad-accent);
    color: #fff;
    padding: 11px 26px;
    border-radius: var(--radius-pill);
    font-weight: 700;
    font-family: 'Syne',sans-serif;
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: none;
    cursor: pointer;
    transition: transform 0.2s,box-shadow 0.2s;
}

    .btn-primary:hover {
        transform: translateY(-2px);
        box-shadow: 0 8px 24px rgba(241,126,31,0.35);
    }

.btn-outline {
    background: transparent;
    border: 2px solid var(--cyan);
    color: var(--cyan);
    padding: 9px 24px;
    border-radius: var(--radius-pill);
    font-weight: 700;
    font-family: 'Syne',sans-serif;
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    transition: all 0.2s;
}

    .btn-outline:hover {
        background: var(--cyan);
        color: #fff;
    }

/* ---- NAVBAR ---- */
nav.navbar {
    background: rgba(255,255,255,0.97);
    backdrop-filter: blur(16px);
    position: sticky;
    top: 0;
    z-index: 999;
    border-bottom: 1px solid rgba(0,194,232,0.18);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 22px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-icon {
    width: 42px;
    height: 42px;
    background: var(--grad-brand);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--cyan);
}

    .logo-icon span {
        font-family: 'Syne',sans-serif;
        font-weight: 800;
        color: #fff;
        font-size: 1rem;
        letter-spacing: -1px;
    }

.logo-text h1 {
    font-size: 1.35rem;
    background: var(--grad-cyan);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    letter-spacing: -0.5px;
}

.logo-text .byte-part {
    background: var(--grad-accent);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.logo-text p {
    font-size: 0.65rem;
    color: var(--gray-mid);
    letter-spacing: 0.04em;
}

.nav-menu {
    display: flex;
    gap: 28px;
    list-style: none;
    align-items: center;
}

    .nav-menu a {
        font-weight: 600;
        font-size: 0.88rem;
        color: var(--navy);
        transition: color 0.2s;
        letter-spacing: 0.01em;
    }

        .nav-menu a:hover, .nav-menu a.active {
            color: var(--cyan);
        }

.mobile-toggle {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--navy);
    background: none;
    border: none;
}

/* ---- TICKER ---- */
.ticker {
    background: var(--grad-brand);
    padding: 9px 0;
    overflow: hidden;
    white-space: nowrap;
}

.ticker-inner {
    display: inline-block;
    animation: tick 28s linear infinite;
}

.ticker-item {
    display: inline-block;
    padding: 0 28px;
    font-weight: 600;
    font-size: 0.8rem;
    color: var(--cyan);
    letter-spacing: 0.06em;
}

@keyframes tick {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* ---- SECTION COMMONS ---- */
section {
    padding: 30px 30px;
}

.section-tag {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: rgba(0,194,232,0.1);
    color: var(--cyan);
    padding: 5px 16px;
    border-radius: var(--radius-pill);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 14px;
}

.section-title {
    font-size: clamp(1.7rem,3.5vw,2.4rem);
    margin-bottom: 10px;
    line-height: 1.2;
}

    .section-title span {
        background: var(--grad-accent);
        -webkit-background-clip: text;
        background-clip: text;
        color: transparent;
    }

.section-sub {
    color: var(--gray-mid);
    max-width: 640px;
    margin-bottom: 40px;
    font-size: 0.92rem;
    line-height: 1.75;
}

.text-center {
    text-align: center;
}

    .text-center .section-sub {
        margin: 0 auto 40px;
    }

/* ============================================================
           1. HERO SLIDER
        ============================================================ */
#hero {
    padding: 0;
}

.hero-slider {
    position: relative;
    height: 88vh;
    min-height: 540px;
    overflow: hidden;
}

.slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 0.85s ease;
}

    .slide.active {
        opacity: 1;
        z-index: 1;
    }

    .slide img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
    }

    .slide::before {
        content: '';
        position: absolute;
        inset: 0;
        background: linear-gradient(135deg,rgba(5,13,46,0.78),rgba(14,27,94,0.6));
        z-index: 1;
    }

.hero-content {
    position: absolute;
    inset: 0;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: center;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 32px;
    color: #fff;
}

.hero-badge {
    background: rgba(0,194,232,0.22);
    backdrop-filter: blur(4px);
    border: 1px solid rgba(0,194,232,0.35);
    padding: 5px 16px;
    border-radius: var(--radius-pill);
    font-size: 0.72rem;
    font-weight: 700;
    width: fit-content;
    margin-bottom: 18px;
    color: var(--cyan);
    letter-spacing: 0.08em;
}

.hero-title {
    font-size: clamp(2rem,5.5vw,3.6rem);
    line-height: 1.12;
    margin-bottom: 14px;
    max-width: 720px;
}

    .hero-title .accent {
        background: linear-gradient(135deg,var(--cyan),var(--orange));
        -webkit-background-clip: text;
        background-clip: text;
        color: transparent;
    }

.hero-sub {
    max-width: 520px;
    margin-bottom: 28px;
    opacity: 0.88;
    font-size: 1rem;
    line-height: 1.7;
}

.hero-btns {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-bottom: 36px;
}

.hero-stats {
    display: flex;
    gap: 36px;
    flex-wrap: wrap;
}

.hero-stat-item {
}

.stat-num {
    font-size: 1.7rem;
    font-weight: 800;
    background: var(--grad-accent);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    font-family: 'Syne',sans-serif;
}

.stat-label {
    font-size: 0.78rem;
    opacity: 0.72;
    margin-top: 2px;
}

.slider-controls {
    position: absolute;
    bottom: 22px;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    gap: 8px;
    z-index: 5;
}

.dot {
    width: 8px;
    height: 8px;
    background: rgba(255,255,255,0.45);
    border-radius: 50%;
    cursor: pointer;
    border: none;
    transition: all 0.3s;
}

    .dot.active {
        background: var(--cyan);
        width: 28px;
        border-radius: 6px;
    }

.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(14,27,94,0.55);
    backdrop-filter: blur(6px);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: #fff;
    z-index: 5;
    border: 1px solid rgba(0,194,232,0.3);
    transition: background 0.2s;
}

    .slider-arrow:hover {
        background: var(--cyan);
    }

.arrow-left {
    left: 20px;
}

.arrow-right {
    right: 20px;
}

/* ============================================================
           2. CORE SERVICES — 4 then 2+2
        ============================================================ */
#services {
    background: var(--gray-light);
}
/* Row 1: 4 cards */
.services-row-4 {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 22px;
    margin-bottom: 22px;
}
/* Row 2: 2 cards half-width */
.services-row-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 22px;
    margin-bottom: 22px;
}
/* Row 3: 2 cards */
.services-row-2b {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 22px;
}

.service-card {
    background: #fff;
    border-radius: var(--radius);
    padding: 26px;
    border: 1px solid rgba(0,194,232,0.13);
    transition: all 0.25s;
    position: relative;
    overflow: hidden;
}

    .service-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 3px;
        background: var(--grad-accent);
        transform: scaleX(0);
        transform-origin: left;
        transition: transform 0.35s;
    }

    .service-card:hover {
        transform: translateY(-5px);
        border-color: var(--cyan);
        box-shadow: var(--shadow-md);
    }

        .service-card:hover::before {
            transform: scaleX(1);
        }

.service-icon {
    width: 52px;
    height: 52px;
    background: rgba(0,194,232,0.08);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--navy);
    margin-bottom: 16px;
    transition: background 0.2s;
}

.service-card:hover .service-icon {
    background: rgba(0,194,232,0.18);
}

.service-card h3 {
    font-size: 1.1rem;
    margin-bottom: 8px;
    color: var(--navy);
}

.service-card p {
    color: var(--gray-mid);
    font-size: 0.84rem;
    line-height: 1.6;
    margin-bottom: 12px;
}

.service-bullets li {
    font-size: 0.78rem;
    color: var(--gray-mid);
    padding: 3px 0;
    display: flex;
    align-items: center;
    gap: 7px;
}

    .service-bullets li i {
        color: var(--cyan);
        font-size: 0.68rem;
    }

.service-link {
    color: var(--cyan);
    font-weight: 700;
    font-size: 0.8rem;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 14px;
    transition: gap 0.2s;
}

    .service-link:hover {
        gap: 10px;
    }

/* ============================================================
           3. HOW WE WORK
        ============================================================ */
#how-we-work {
    background: #fff;
}

.workflow-grid {
    display: grid;
    grid-template-columns: repeat(5,1fr);
    gap: 18px;
    position: relative;
}

    .workflow-grid::before {
        content: '';
        position: absolute;
        top: 38px;
        left: 10%;
        right: 10%;
        height: 2px;
        background: linear-gradient(90deg,var(--cyan),var(--orange));
        z-index: 0;
    }

.workflow-step {
    background: #fff;
    border-radius: var(--radius);
    padding: 22px 18px;
    text-align: center;
    border: 1px solid rgba(0,194,232,0.13);
    transition: all 0.25s;
    position: relative;
    z-index: 1;
}

    .workflow-step:hover {
        transform: translateY(-5px);
        box-shadow: var(--shadow-md);
        border-color: var(--cyan);
    }

.step-icon {
    font-size: 1.7rem;
    margin-bottom: 10px;
    background: var(--grad-accent);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.step-number {
    width: 44px;
    height: 44px;
    background: var(--grad-brand);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-family: 'Syne',sans-serif;
    margin: 0 auto 12px;
    font-size: 1rem;
    border: 2px solid var(--cyan);
}

.workflow-step h3 {
    font-size: 1rem;
    margin-bottom: 6px;
    color: var(--navy);
}

.workflow-step p {
    font-size: 0.8rem;
    color: var(--gray-mid);
}

/* ============================================================
           4. CTA
        ============================================================ */
#cta {
    background: var(--grad-brand);
    padding: 72px 0;
    position: relative;
    overflow: hidden;
}

    #cta::before {
        content: '';
        position: absolute;
        top: -80px;
        right: -80px;
        width: 420px;
        height: 420px;
        border-radius: 50%;
        background: rgba(0,194,232,0.06);
    }

    #cta::after {
        content: '';
        position: absolute;
        bottom: -100px;
        left: 5%;
        width: 350px;
        height: 350px;
        border-radius: 50%;
        background: rgba(241,126,31,0.05);
    }

.cta-inner {
    position: relative;
    z-index: 1;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.cta-text h2 {
    font-size: clamp(1.8rem,4vw,2.8rem);
    color: #fff;
    line-height: 1.15;
    margin-bottom: 12px;
}

    .cta-text h2 span {
        background: var(--grad-accent);
        -webkit-background-clip: text;
        background-clip: text;
        color: transparent;
    }

.cta-text p {
    color: rgba(255,255,255,0.75);
    font-size: 1rem;
    max-width: 480px;
}

.btn-white {
    background: #fff;
    color: var(--navy);
    padding: 13px 32px;
    border-radius: var(--radius-pill);
    font-weight: 800;
    font-family: 'Syne',sans-serif;
    font-size: 0.95rem;
    border: none;
    cursor: pointer;
    white-space: nowrap;
    transition: transform 0.2s,box-shadow 0.2s;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

    .btn-white:hover {
        transform: translateY(-3px);
        box-shadow: 0 10px 30px rgba(0,0,0,0.25);
    }

/* ============================================================
           5. CLIENTS
        ============================================================ */
#clients {
    background: var(--gray-light);
}

.clients-marquee-wrap {
    overflow: hidden;
    margin-top: 2rem;
}

.clients-marquee {
    display: flex;
    gap: 2rem;
    animation: marquee 30s linear infinite;
    width: max-content;
    align-items: center;
}

    .clients-marquee:hover {
        animation-play-state: paused;
    }

@keyframes marquee {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

.client-item {
    background: #fff;
    border: 1.5px solid rgba(0,194,232,0.15);
    border-radius: var(--radius);
    padding: 16px 28px;
    display: flex;
    align-items: center;
    gap: 14px;
    transition: all 0.25s;
    white-space: nowrap;
    min-width: 180px;
    flex-shrink: 0;
}

    .client-item:hover {
        border-color: var(--cyan);
        transform: translateY(-3px);
        box-shadow: var(--shadow-sm);
    }

    .client-item img {
        width: 46px;
        height: 46px;
        border-radius: 50%;
        object-fit: cover;
        border: 2px solid var(--cyan);
    }

.client-item-info h4 {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--navy);
}

.client-item-info span {
    font-size: 0.72rem;
    color: var(--gray-mid);
}

/* ============================================================
           6. LET'S CONNECT
        ============================================================ */
#lets-connect {
    background: #fff;
}

.connect-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.connect-img {
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

    .connect-img img {
        width: 100%;
        height: 460px;
        object-fit: cover;
    }

.connect-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    margin-top: 24px;
}

.connect-card {
    padding: 18px;
    border-radius: var(--radius-sm);
    border: 1px solid rgba(0,194,232,0.15);
    background: var(--gray-light);
    text-align: center;
    transition: all 0.25s;
}

    .connect-card:hover {
        border-color: var(--cyan);
        transform: translateY(-3px);
        box-shadow: var(--shadow-sm);
    }

    .connect-card .cc-icon {
        width: 44px;
        height: 44px;
        background: var(--grad-accent);
        border-radius: 12px;
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 0 auto 10px;
        color: #fff;
        font-size: 1.1rem;
    }

    .connect-card h4 {
        font-size: 0.85rem;
        font-weight: 700;
        color: var(--navy);
        margin-bottom: 3px;
    }

    .connect-card p {
        font-size: 0.78rem;
        color: var(--gray-mid);
    }

/* ============================================================
           7. SIMPLE BANNER
        ============================================================ */
#simple-banner {
    padding: 0;
    position: relative;
    height: 300px;
    overflow: hidden;
}

    #simple-banner img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        filter: brightness(0.52);
    }

.simple-banner-inner {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 2rem;
}

    .simple-banner-inner h2 {
        font-size: clamp(1.8rem,5vw,3.4rem);
        color: #fff;
        font-weight: 800;
        line-height: 1.1;
        margin-bottom: 12px;
        letter-spacing: -0.02em;
    }

        .simple-banner-inner h2 span {
            background: linear-gradient(135deg,var(--cyan),var(--orange));
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
        }

    .simple-banner-inner p {
        color: rgba(255,255,255,0.82);
        font-size: 1rem;
        max-width: 560px;
    }

/* ============================================================
           8. OUR STORY
        ============================================================ */
#our-story {
    background: var(--gray-light);
}

.story-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.story-images {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}

.story-img-main {
    grid-row: span 2;
    border-radius: var(--radius);
    overflow: hidden;
}

    .story-img-main img {
        width: 100%;
        height: 360px;
        object-fit: cover;
    }

.story-img-sm {
    border-radius: var(--radius);
    overflow: hidden;
}

    .story-img-sm img {
        width: 100%;
        height: 170px;
        object-fit: cover;
    }

.story-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    margin-top: 24px;
}

.stat-box {
    background: #fff;
    border-radius: var(--radius-sm);
    padding: 18px;
    border: 1px solid rgba(0,194,232,0.13);
    text-align: center;
}

    .stat-box .num {
        font-family: 'Syne',sans-serif;
        font-size: 2rem;
        font-weight: 900;
        background: var(--grad-accent);
        -webkit-background-clip: text;
        background-clip: text;
        color: transparent;
    }

    .stat-box p {
        font-size: 0.8rem;
        color: var(--gray-mid);
        margin-top: 4px;
    }

/* ============================================================
           9. CORE VALUES
        ============================================================ */
#core-values {
    background: #fff;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 20px;
}

.value-card {
    background: var(--gray-light);
    border-radius: var(--radius);
    padding: 26px 22px;
    border-top: 4px solid var(--cyan);
    transition: all 0.25s;
}

    .value-card:nth-child(2) {
        border-color: var(--orange);
    }

    .value-card:nth-child(3) {
        border-color: var(--rose);
    }

    .value-card:nth-child(4) {
        border-color: #8e6bbf;
    }

    .value-card:hover {
        transform: translateY(-5px);
        box-shadow: var(--shadow-md);
    }

.value-icon {
    width: 50px;
    height: 50px;
    background: rgba(0,194,232,0.1);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 16px;
}

.value-card:nth-child(2) .value-icon {
    background: rgba(241,126,31,0.1);
}

.value-card:nth-child(3) .value-icon {
    background: rgba(224,90,138,0.1);
}

.value-card:nth-child(4) .value-icon {
    background: rgba(142,107,191,0.1);
}

.value-card h3 {
    font-size: 1.05rem;
    margin-bottom: 8px;
    color: var(--navy);
}

.value-card p {
    font-size: 0.84rem;
    color: var(--gray-mid);
    line-height: 1.65;
}

/* ============================================================
           10. TWO CARDS IN A ROW
        ============================================================ */
#two-cards {
    background: var(--gray-light);
}

.two-card-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.feature-card {
    border-radius: var(--radius);
    overflow: hidden;
    position: relative;
    box-shadow: var(--shadow-md);
}

    .feature-card img {
        width: 100%;
        height: 320px;
        object-fit: cover;
        display: block;
    }

.feature-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 28px;
    background: linear-gradient(0deg,rgba(5,13,46,0.95) 0%,transparent 100%);
}

.feature-badge {
    display: inline-block;
    background: var(--grad-accent);
    color: #fff;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 3px 10px;
    border-radius: 6px;
    margin-bottom: 8px;
}

.feature-overlay h3 {
    font-family: 'Syne',sans-serif;
    font-size: 1.3rem;
    color: #fff;
    margin-bottom: 7px;
}

.feature-overlay p {
    font-size: 0.84rem;
    color: rgba(255,255,255,0.75);
    line-height: 1.6;
}

/* ============================================================
           11. MEET OUR LEADERS
        ============================================================ */
#meet-leaders {
    background: #fff;
}

.leaders-grid {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 22px;
}

.leader-card {
    background: var(--gray-light);
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid rgba(0,194,232,0.12);
    transition: all 0.3s;
}

    .leader-card:hover {
        transform: translateY(-6px);
        box-shadow: var(--shadow-lg);
        border-color: var(--cyan);
    }

.leader-img {
    position: relative;
    overflow: hidden;
    height: 260px;
}

    .leader-img img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.5s;
    }

.leader-card:hover .leader-img img {
    transform: scale(1.06);
}

.leader-socials {
    position: absolute;
    bottom: 12px;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    gap: 8px;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.3s;
}

.leader-card:hover .leader-socials {
    opacity: 1;
    transform: translateY(0);
}

.social-btn {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: rgba(255,255,255,0.92);
    color: var(--navy);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.78rem;
    font-weight: 700;
    transition: all 0.2s;
}

    .social-btn:hover {
        background: var(--cyan);
        color: #fff;
    }

.leader-info {
    padding: 18px;
}

    .leader-info h3 {
        font-size: 1rem;
        font-weight: 700;
        color: var(--navy);
    }

.leader-role {
    font-size: 0.78rem;
    color: var(--cyan);
    font-weight: 600;
    margin: 3px 0 8px;
}

.leader-info p {
    font-size: 0.82rem;
    color: var(--gray-mid);
    line-height: 1.6;
}

/* ============================================================
           12. PRODUCTS
        ============================================================ */
#products {
    background: var(--gray-light);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 22px;
}

.product-card {
    background: #fff;
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid rgba(0,194,232,0.12);
    transition: all 0.3s;
}

    .product-card:hover {
        transform: translateY(-6px);
        box-shadow: var(--shadow-lg);
        border-color: var(--cyan);
    }

.product-img {
    overflow: hidden;
    height: 200px;
}

    .product-img img {
       /* width: 100%;
        height: 100%;*/
        object-fit: cover;
        transition: transform 0.4s;
    }

.product-card:hover .product-img img {
    transform: scale(1.06);
}

.product-body {
    padding: 22px;
}

.product-badge {
    display: inline-block;
    padding: 3px 10px;
    border-radius: 6px;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.badge-cyan {
    background: rgba(0,194,232,0.12);
    color: var(--navy);
}

.badge-orange {
    background: rgba(241,126,31,0.12);
    color: var(--orange);
}

.badge-rose {
    background: rgba(224,90,138,0.12);
    color: var(--rose);
}

.product-body h3 {
    font-size: 1.1rem;
    margin-bottom: 8px;
    color: var(--navy);
}

.product-body p {
    font-size: 0.84rem;
    color: var(--gray-mid);
    line-height: 1.65;
    margin-bottom: 16px;
}

.product-price {
    font-family: 'Syne',sans-serif;
    font-size: 1.5rem;
    font-weight: 800;
    background: var(--grad-accent);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

    .product-price small {
        font-size: 0.72rem;
        color: var(--gray-mid);
        font-family: 'Inter',sans-serif;
        font-weight: 400;
    }

.product-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 16px;
}

/* ============================================================
           13. CONTACT US
        ============================================================ */
#contact-us {
    background: #fff;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.6fr;
    gap: 4rem;
    margin-top: 2.5rem;
}

.contact-info h3 {
    font-family: 'Syne',sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 12px;
}

.contact-info p {
    color: var(--gray-mid);
    line-height: 1.75;
    margin-bottom: 24px;
    font-size: 0.92rem;
}

.contact-detail {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    margin-bottom: 18px;
}

.cd-icon {
    width: 44px;
    height: 44px;
    background: var(--grad-accent);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1rem;
    flex-shrink: 0;
}

.cd-text strong {
    display: block;
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 2px;
}

.cd-text span {
    font-size: 0.87rem;
    color: var(--gray-mid);
}

.contact-form-box {
    background: var(--gray-light);
    padding: 28px;
    border-radius: var(--radius);
    border: 1px solid rgba(0,194,232,0.12);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}

.form-group {
    margin-bottom: 16px;
}

    .form-group label {
        display: block;
        font-size: 0.78rem;
        font-weight: 700;
        color: var(--navy);
        margin-bottom: 6px;
        letter-spacing: 0.04em;
    }

    .form-group input, .form-group textarea, .form-group select {
        width: 100%;
        padding: 11px 16px;
        border: 1.5px solid rgba(0,194,232,0.2);
        border-radius: var(--radius-sm);
        font-family: 'Inter',sans-serif;
        font-size: 0.88rem;
        color: var(--navy);
        background: #fff;
        outline: none;
        transition: border-color 0.2s,box-shadow 0.2s;
    }

        .form-group input:focus, .form-group textarea:focus, .form-group select:focus {
            border-color: var(--cyan);
            box-shadow: 0 0 0 3px rgba(0,194,232,0.12);
        }

    .form-group textarea {
        resize: vertical;
        min-height: 110px;
    }

.btn-submit {
    width: 100%;
    padding: 13px;
    background: var(--grad-accent);
    color: #fff;
    border: none;
    border-radius: var(--radius-pill);
    font-family: 'Syne',sans-serif;
    font-size: 0.95rem;
    font-weight: 700;
    cursor: pointer;
    transition: transform 0.2s,box-shadow 0.2s;
}

    .btn-submit:hover {
        transform: translateY(-2px);
        box-shadow: 0 8px 24px rgba(241,126,31,0.35);
    }

/* ============================================================
           14. FAQ
        ============================================================ */
#faq {
    background: var(--gray-light);
}

.faq-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    max-width: 1100px;
    margin: 2.5rem auto 0;
}

.faq-item {
    background: #fff;
    border-radius: var(--radius-sm);
    overflow: hidden;
    border: 1px solid rgba(0,194,232,0.15);
}

.faq-question {
    padding: 18px 22px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-weight: 600;
    font-size: 0.9rem;
    gap: 12px;
    transition: background 0.2s;
}

    .faq-question:hover {
        background: rgba(0,194,232,0.04);
    }

    .faq-question i {
        color: var(--cyan);
        transition: transform 0.3s;
        flex-shrink: 0;
    }

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease,padding 0.3s;
    font-size: 0.87rem;
    color: var(--gray-mid);
    line-height: 1.75;
    padding: 0 22px;
}

.faq-item.active .faq-answer {
    max-height: 200px;
    padding: 0 22px 18px;
}

/* ============================================================
           15. IMPACT
        ============================================================ */
#impact {
    background: var(--grad-brand);
    padding: 0;
}

.impact-header {
    padding: 60px 24px 0;
    text-align: center;
}

    .impact-header .section-title {
        color: #fff;
    }

    .impact-header .section-sub {
        color: rgba(255,255,255,0.6);
        margin: 0 auto 48px;
    }

.impact-grid {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    background: rgba(255,255,255,0.04);
}

.impact-item {
    padding: 44px 20px;
    text-align: center;
    border-right: 1px solid rgba(255,255,255,0.07);
    transition: background 0.25s;
}

    .impact-item:last-child {
        border-right: none;
    }

    .impact-item:hover {
        background: rgba(255,255,255,0.06);
    }

.impact-num {
    font-family: 'Syne',sans-serif;
    font-size: clamp(2.2rem,4vw,3.4rem);
    font-weight: 900;
    background: var(--grad-accent);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    line-height: 1;
}

.impact-plus {
    color: var(--cyan);
}

.impact-label {
    color: rgba(255,255,255,0.62);
    font-size: 0.82rem;
    margin-top: 8px;
}

/* ============================================================
           16. PRIVACY POLICY
        ============================================================ */
#privacy-policy {
    background: #fff;
}

.privacy-wrap {
    max-width: 860px;
    margin: 0 auto;
}

.privacy-body {
    margin-top: 2rem;
}

.pp-update {
    font-size: 0.8rem;
    color: var(--gray-mid);
    margin-bottom: 1.5rem;
}

.pp-highlight {
    background: var(--gray-light);
    border-left: 4px solid var(--cyan);
    padding: 14px 20px;
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
    font-size: 0.88rem;
    color: var(--gray-mid);
    margin-bottom: 2rem;
    line-height: 1.75;
}

.pp-sec {
    margin-bottom: 2.5rem;
}

    .pp-sec h3 {
        font-family: 'Syne',sans-serif;
        font-size: 1.1rem;
        font-weight: 700;
        color: var(--navy);
        margin-bottom: 10px;
        padding-bottom: 8px;
        border-bottom: 2px solid rgba(0,194,232,0.18);
    }

    .pp-sec p, .pp-sec li {
        font-size: 0.88rem;
        color: var(--gray-mid);
        line-height: 1.8;
        margin-bottom: 6px;
    }

    .pp-sec ul {
        padding-left: 1.2rem;
    }

        .pp-sec ul li {
            list-style: disc;
        }

/* ============================================================
           17. BROWSE BY CATEGORY
        ============================================================ */
#browse-category {
    background: var(--gray-light);
}

.cat-search {
    position: relative;
    max-width: 500px;
    margin: 0 auto 2.5rem;
}

    .cat-search input {
        width: 100%;
        padding: 12px 16px 12px 48px;
        border: 1.5px solid rgba(0,194,232,0.2);
        border-radius: var(--radius-pill);
        font-family: 'Inter',sans-serif;
        font-size: 0.9rem;
        color: var(--navy);
        background: #fff;
        outline: none;
        transition: border-color 0.2s,box-shadow 0.2s;
    }

        .cat-search input:focus {
            border-color: var(--cyan);
            box-shadow: 0 0 0 3px rgba(0,194,232,0.12);
        }

    .cat-search .si {
        position: absolute;
        left: 16px;
        top: 50%;
        transform: translateY(-50%);
        color: var(--cyan);
    }

.cat-grid {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 16px;
}

.cat-card {
    background: #fff;
    border-radius: var(--radius);
    padding: 26px 18px;
    text-align: center;
    border: 1.5px solid rgba(0,194,232,0.13);
    cursor: pointer;
    transition: all 0.25s;
}

    .cat-card:hover {
        border-color: var(--cyan);
        transform: translateY(-4px);
        box-shadow: var(--shadow-md);
    }

.cat-icon {
    width: 56px;
    height: 56px;
    background: rgba(0,194,232,0.08);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin: 0 auto 14px;
    transition: background 0.2s;
}

.cat-card:hover .cat-icon {
    background: rgba(0,194,232,0.18);
}

.cat-card h4 {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 4px;
}

.cat-card span {
    font-size: 0.72rem;
    color: var(--gray-mid);
}

/* ============================================================
           18. SUPPORT TICKET
        ============================================================ */
#support-ticket {
    background: #fff;
}

.ticket-grid {
    display: grid;
    grid-template-columns: 1fr 1.8fr;
    gap: 4rem;
    margin-top: 2.5rem;
}

.ticket-tips {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.ticket-tip {
    background: var(--gray-light);
    border-radius: var(--radius-sm);
    padding: 18px;
    border: 1px solid rgba(0,194,232,0.13);
}

    .ticket-tip h4 {
        font-size: 0.88rem;
        font-weight: 700;
        color: var(--navy);
        margin-bottom: 6px;
        display: flex;
        align-items: center;
        gap: 8px;
    }

        .ticket-tip h4 i {
            color: var(--cyan);
        }

    .ticket-tip p {
        font-size: 0.82rem;
        color: var(--gray-mid);
        line-height: 1.65;
    }

.ticket-form-box {
    background: var(--gray-light);
    padding: 28px;
    border-radius: var(--radius);
    border: 1px solid rgba(0,194,232,0.12);
}

    .ticket-form-box h3 {
        font-family: 'Syne',sans-serif;
        font-size: 1.3rem;
        font-weight: 700;
        color: var(--navy);
        margin-bottom: 20px;
    }

.priority-btns {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 4px;
}

.priority-btn {
    padding: 5px 14px;
    border-radius: var(--radius-pill);
    border: 1.5px solid rgba(0,194,232,0.2);
    background: transparent;
    font-family: 'Syne',sans-serif;
    font-size: 0.78rem;
    font-weight: 700;
    cursor: pointer;
    color: var(--navy);
    transition: all 0.2s;
}

    .priority-btn:hover, .priority-btn.active {
        background: var(--grad-accent);
        color: #fff;
        border-color: transparent;
    }

/* ============================================================
           FOOTER
        ============================================================ */
footer {
    background: var(--grad-brand);
    color: #fff;
    padding: 56px 0 24px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr 1.5fr;
    gap: 28px;
    margin-bottom: 40px;
}

.footer-brand .logo {
    margin-bottom: 14px;
}

.footer-brand p {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.65);
    line-height: 1.75;
    max-width: 280px;
}

.footer-social {
    display: flex;
    gap: 10px;
    margin-top: 20px;
}

    .footer-social a {
        width: 34px;
        height: 34px;
        background: rgba(0,194,232,0.15);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        color: var(--cyan);
        transition: all 0.2s;
    }

        .footer-social a:hover {
            background: var(--cyan);
            color: var(--navy);
        }

.footer-col h4 {
    color: var(--cyan);
    margin-bottom: 16px;
    font-size: 0.9rem;
    letter-spacing: 0.05em;
}

.footer-col a {
    display: block;
    color: rgba(255,255,255,0.65);
    font-size: 0.84rem;
    margin-bottom: 9px;
    transition: color 0.2s;
}

    .footer-col a:hover {
        color: var(--cyan);
    }

.footer-col .fc-contact {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255,255,255,0.65);
    font-size: 0.84rem;
    margin-bottom: 9px;
}

    .footer-col .fc-contact i {
        color: var(--cyan);
    }

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.08);
    padding-top: 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
    font-size: 0.78rem;
    color: rgba(255,255,255,0.5);
}

/* ---- SCROLL TO TOP ---- */
#scroll-top {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 46px;
    height: 46px;
    background: var(--grad-accent);
    color: #fff;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    z-index: 990;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    box-shadow: var(--shadow-md);
    opacity: 0;
    transform: translateY(12px);
    transition: opacity 0.3s,transform 0.3s;
}

    #scroll-top.visible {
        opacity: 1;
        transform: translateY(0);
    }

    #scroll-top:hover {
        transform: translateY(-3px);
    }

/* ---- FADE IN ---- */
.fade-in {
    opacity: 0;
    transform: translateY(22px);
    transition: opacity 0.55s ease,transform 0.55s ease;
}

    .fade-in.visible {
        opacity: 1;
        transform: translateY(0);
    }

/* ============================================================
           RESPONSIVE
        ============================================================ */
@media(max-width:1100px) {
    .services-row-4 {
        grid-template-columns: 1fr 1fr;
    }

    .values-grid {
        grid-template-columns: 1fr 1fr;
    }

    .leaders-grid {
        grid-template-columns: 1fr 1fr;
    }

    .impact-grid {
        grid-template-columns: repeat(3,1fr);
    }

    .impact-item {
        border-bottom: 1px solid rgba(255,255,255,0.07);
    }

    .cat-grid {
        grid-template-columns: repeat(4,1fr);
    }
}

@media(max-width:900px) {
    .workflow-grid {
        grid-template-columns: 1fr 1fr;
    }

        .workflow-grid::before {
            display: none;
        }

    .connect-grid {
        grid-template-columns: 1fr;
    }

    .story-grid {
        grid-template-columns: 1fr;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }

    .ticket-grid {
        grid-template-columns: 1fr;
    }

    .products-grid {
        grid-template-columns: 1fr 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media(max-width:768px) {
    section {
        padding: 56px 0;
    }

    .nav-menu {
        position: fixed;
        top: 68px;
        left: -110%;
        width: 75%;
        height: calc(100vh - 68px);
        background: #fff;
        flex-direction: column;
        padding: 28px 24px;
        gap: 20px;
        box-shadow: var(--shadow-md);
        transition: left 0.3s;
        z-index: 998;
    }

        .nav-menu.active {
            left: 0;
        }

    .mobile-toggle {
        display: block;
    }

    .services-row-4 {
        grid-template-columns: 1fr;
    }

    .services-row-2 {
        grid-template-columns: 1fr;
    }

    .services-row-2b {
        grid-template-columns: 1fr;
    }

    .two-card-row {
        grid-template-columns: 1fr;
    }

    .values-grid {
        grid-template-columns: 1fr 1fr;
    }

    .leaders-grid {
        grid-template-columns: 1fr 1fr;
    }

    .faq-grid {
        grid-template-columns: 1fr;
    }

    .impact-grid {
        grid-template-columns: 1fr 1fr;
    }

    .cat-grid {
        grid-template-columns: 1fr 1fr;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .connect-cards {
        grid-template-columns: 1fr 1fr;
    }

    .cta-inner {
        flex-direction: column;
        text-align: center;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media(max-width:480px) {
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .values-grid {
        grid-template-columns: 1fr;
    }

    .leaders-grid {
        grid-template-columns: 1fr;
    }

    .cat-grid {
        grid-template-columns: 1fr 1fr;
    }

    .story-images {
        grid-template-columns: 1fr;
    }

    .story-img-main {
        grid-row: auto;
    }

        .story-img-main img {
            height: 220px;
        }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}
