﻿body {
}
/* ── 1. ROOT VARIABLES ── */
:root {
    /* Olive palette */
    --olive-lightest: #f4f6ee;
    --olive-light: #dde6bb;
    --olive-mid: #b8cc78;
    --olive: #9ab54a;
    --olive-deep: #7a9a32;
    --olive-dark: #5c7520;
    --olive-darker: #3d5012;
    /* Accents */
    --lime: #c6f135;
    --lime-glow: rgba(198,241,53,.22);
    --electric: #38e8a0;
    --electric-glow: rgba(56,232,160,.18);
    --amber: #f5a623;
    --amber-glow: rgba(245,166,35,.18);
    --coral: #ff6b6b;
    --sky: #5bc8f5;
    /* Neutrals */
    --cream: #f9f8f2;
    --cream-mid: #f0ede0;
    --ink: #1a1c14;
    --ink-darker: #0e0f0a;
    --ink-mid: #3a3f28;
    --ink-light: #6b7250;
    --ink-muted: #9aa080;
    /* Glass */
    --glass: rgba(255,255,255,.82);
    --glass-border: rgba(255,255,255,.6);
    /* Shadows */
    --shadow-sm: 0 2px 12px rgba(26,28,20,.07);
    --shadow-md: 0 8px 32px rgba(26,28,20,.13);
    --shadow-lg: 0 24px 64px rgba(26,28,20,.16);
    /* Radii */
    --r-sm: 12px;
    --r-md: 20px;
    --r-lg: 32px;
    --r-xl: 48px;
    /* Typography */
    --font-display: 'Clash Display', sans-serif;
    --font-body: 'Sora', sans-serif;
}

/* ── 2. RESET / BASE ── */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    background: var(--cream);
    color: var(--ink);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

a {
    text-decoration: none;
    color: inherit;
    text-align: justify;
}

ul {
    list-style: none;
    text-align: justify;
}

img {
    max-width: 100%;
    display: block;
}

p {
    text-align: justify;
}

/* ── 3. TYPOGRAPHY ── */
h1, h2, h3, h4 {
    font-family: var(--font-display);
    line-height: 1.1;
}

.section-tag {
    display: inline-block;
    font-size: .75rem;
    font-weight: 600;
    color: var(--olive-dark);
    letter-spacing: .1em;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

::selection {
    background: #9ab54a;
    color: #000; /* or #fff depending on your design */
}

::-moz-selection {
    background: #9ab54a;
    color: #000;
}

a::selection {
    background: #9ab54a;
    color: #000;
}

.section-headline {
    font-family: var(--font-display);
    font-size: clamp(2rem,3.5vw,3rem);
    font-weight: 700;
    line-height: 1.12;
    letter-spacing: -.025em;
    color: var(--ink);
    margin-bottom: 1rem;
}

    .section-headline em {
        font-style: normal;
        color: var(--olive-deep);
    }

.section-sub {
    font-size: 1rem;
    color: var(--ink-light);
    line-height: 1.75;
    max-width: 560px;
}

.section-sub {
    display: flex !important;
    justify-self: center !important;
}

.text-center {
    text-align: center;
}

    .text-center .section-sub {
        margin: 0 auto;
    }

/* ── 4. LAYOUT ── */
.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 4vw;
}

section {
    padding: 6rem 4vw;
}

.bg-white {
    background: white;
}

.bg-cream {
    background: var(--cream);
}

.bg-dark {
    background: var(--ink);
}

/* ── 5. COMPONENTS ── */

/* NAV */
#navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    height: 68px;
    padding: 0 4vw;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: white !important;
    backdrop-filter: blur(22px);
    border-bottom: 1px solid rgba(154,181,74,.2);
    transition: box-shadow .3s;
}

    #navbar.scrolled {
        box-shadow: 0 4px 28px rgba(26,28,20,.09);
    }

.nav-logo img {
    height: 44px;
    width: auto;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 1.8rem;
}

    .nav-links > li > a {
        font-size: 0.85rem;
        font-weight: 550;
        color: var(--ink-mid);
        display: inline-flex;
        align-items: center;
        transition: color 0.2s;
        gap: 4px;
    }

        .nav-links > li > a:hover,
        .nav-links > li.active > a {
            color: var(--olive-deep);
        }

    .nav-links > li.has-dropdown > a::after {
        content: '';
        display: inline-block;
        width: 6px;
        height: 6px;
        border-right: 1.5px solid currentColor;
        border-bottom: 1.5px solid currentColor;
        transform: rotate(45deg) translateY(-2px);
        margin-left: 2px;
        transition: transform .25s;
    }

    .nav-links > li.has-dropdown:hover > a::after {
        transform: rotate(-135deg) translateY(-2px);
    }

.nav-cta {
    background: var(--ink) !important;
    color: white !important;
    padding: .5rem 1.3rem;
    border-radius: 40px;
    font-size: .85rem !important;
    transition: background .2s !important;
}

    .nav-cta:hover {
        background: var(--olive-dark) !important;
    }

/* Mega dropdown */
.nav-links > li.has-dropdown:hover .mega-drop {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.mega-drop {
    position: absolute;
    top: calc(100% + 12px);
    left: 50%;
    transform: translateX(-50%) translateY(8px);
    width: 680px;
    background: white;
    border-radius: var(--r-lg);
    border: 1px solid rgba(154,181,74,.2);
    box-shadow: var(--shadow-lg);
    padding: 1.5rem;
    opacity: 0;
    visibility: hidden;
    transition: opacity .25s, transform .25s, visibility .25s;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: .5rem;
}

    .mega-drop::before {
        content: '';
        position: absolute;
        top: -7px;
        left: 50%;
        transform: translateX(-50%) rotate(45deg);
        width: 13px;
        height: 13px;
        background: white;
        border-left: 1px solid rgba(154,181,74,.2);
        border-top: 1px solid rgba(154,181,74,.2);
        border-radius: 3px 0 0 0;
    }

.md-item {
    display: flex;
    align-items: flex-start;
    gap: .8rem;
    padding: .75rem .9rem;
    border-radius: 10px;
    transition: background .2s, transform .2s;
    border: 1px solid transparent;
}

    .md-item:hover, .md-item.active {
        background: var(--olive-lightest);
        border-color: rgba(154,181,74,.2);
        transform: translateX(3px);
    }

.md-thumb {
    width: 44px;
    height: 44px;
    flex-shrink: 0;
    border-radius: 10px;
    background: var(--olive-lightest);
    border: 1px solid rgba(154,181,74,.18);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.md-title {
    font-family: var(--font-display);
    font-size: .84rem;
    font-weight: 600;
    color: var(--ink);
    margin-bottom: .18rem;
}

.md-desc {
    font-size: .7rem;
    color: var(--ink-muted);
    line-height: 1.4;
}

.md-item:hover .md-title, .md-item.active .md-title {
    color: var(--olive-deep);
}

.md-footer {
    grid-column: 1 / -1;
    padding-top: .8rem;
    border-top: 1px solid rgba(26,28,20,.06);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.md-footer-text {
    font-size: .75rem;
    color: var(--ink-muted);
}

.md-footer-cta {
    font-size: .75rem;
    font-weight: 600;
    color: var(--olive-deep);
    transition: gap .2s;
}

    .md-footer-cta:hover {
        gap: 8px;
    }

/* Hamburger */
.nav-hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}

    .nav-hamburger span {
        display: block;
        width: 22px;
        height: 2px;
        background: var(--ink);
        border-radius: 2px;
        transition: all .3s;
    }

    .nav-hamburger.open span:nth-child(1) {
        transform: translateY(7px) rotate(45deg);
    }

    .nav-hamburger.open span:nth-child(2) {
        opacity: 0;
    }

    .nav-hamburger.open span:nth-child(3) {
        transform: translateY(-7px) rotate(-45deg);
    }

/* Mobile nav */
#mobileNav {
    display: none;
    position: fixed;
    top: 68px;
    left: 0;
    right: 0;
    background: rgba(249,248,242,.98);
    backdrop-filter: blur(22px);
    padding: 1.2rem 4vw 1.6rem;
    border-bottom: 1px solid rgba(154,181,74,.2);
    z-index: 999;
    flex-direction: column;
    gap: .1rem;
    max-height: calc(100vh - 68px);
    overflow-y: auto;
}

    #mobileNav.open {
        display: flex;
    }

    #mobileNav > a {
        font-size: .95rem;
        font-weight: 500;
        color: var(--ink-mid);
        padding: .65rem .5rem;
        border-bottom: 1px solid rgba(26,28,20,.05);
    }

        #mobileNav > a:hover {
            color: var(--olive-deep);
        }

.mobile-group-label {
    font-size: .7rem;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--olive-dark);
    font-weight: 600;
    padding: .9rem .5rem .3rem;
}

.mobile-sub-link {
    display: flex;
    align-items: center;
    gap: .6rem;
    padding: .5rem .5rem .5rem 1rem;
    font-size: .83rem;
    color: var(--ink-light);
    border-left: 2px solid var(--olive-light);
    margin-left: .5rem;
    transition: color .2s;
}

    .mobile-sub-link:hover {
        color: var(--olive-deep);
    }

.mobile-sub-link-icon {
    font-size: 1rem;
}

.mobile-book-demo {
    color: var(--olive-deep) !important;
    font-weight: 600;
}

/* BUTTONS */
.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--ink);
    color: white;
    padding: .875rem 2rem;
    border-radius: 40px;
    font-family: var(--font-body);
    font-size: .9rem;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: all .25s;
    position: relative;
    overflow: hidden;
}

    .btn-primary::after {
        content: '';
        position: absolute;
        inset: 0;
        background: linear-gradient(135deg,rgba(198,241,53,.35),transparent);
        opacity: 0;
        transition: opacity .3s;
    }

    .btn-primary:hover::after {
        opacity: 1;
    }

    .btn-primary:hover {
        background: var(--olive-dark);
        transform: translateY(-3px);
        box-shadow: 0 14px 36px rgba(90,117,32,.35);
    }

.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: transparent;
    color: var(--ink);
    padding: .875rem 2rem;
    border-radius: 40px;
    color: white;
    border: 1.5px solid rgba(216, 216, 216, 0.18);
    font-family: var(--font-body);
    font-size: .9rem;
    font-weight: 500;
    cursor: pointer;
    transition: all .25s;
}

    .btn-secondary:hover {
        border-color: var(--olive-deep);
        color: var(--olive-deep);
        transform: translateY(-2px);
        background: var(--lime-glow);
    }

.btn-olive {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--olive-dark);
    color: white;
    border: 1.5px solid rgba(255, 255, 255, 0.18);
    padding: .875rem 2rem;
    border-radius: 40px;
    font-family: var(--font-body);
    font-size: .9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all .25s;
}

    .btn-olive:hover {
        background: var(--olive-darker);
        transform: translateY(-3px);
        box-shadow: 0 14px 36px rgba(90,117,32,.35);
    }

.btn-outline-olive {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: transparent;
    color: var(--olive-deep);
    padding: .75rem 1.8rem;
    border-radius: 40px;
    border: 1.5px solid var(--olive-mid);
    font-family: var(--font-body);
    font-size: .88rem;
    font-weight: 600;
    cursor: pointer;
    transition: all .25s;
}

    .btn-outline-olive:hover {
        background: var(--olive-lightest);
        border-color: var(--olive-deep);
        transform: translateY(-2px);
    }

.btn-white {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: white;
    color: var(--ink);
    padding: .9rem 2.2rem;
    border-radius: 40px;
    font-family: var(--font-body);
    font-size: .9rem;
    font-weight: 700;
    border: none;
    cursor: pointer;
    transition: all .25s;
}

    .btn-white:hover {
        transform: translateY(-3px);
        box-shadow: 0 14px 36px rgba(255,255,255,.25);
        background: var(--lime);
    }

.btn-outline-white {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: transparent;
    color: white;
    padding: .9rem 2.2rem;
    border-radius: 40px;
    border: 1.5px solid rgba(255,255,255,.3);
    font-family: var(--font-body);
    font-size: .9rem;
    font-weight: 500;
    cursor: pointer;
    transition: all .25s;
}

    .btn-outline-white:hover {
        border-color: rgba(255,255,255,.7);
        background: rgba(255,255,255,.07);
    }

.btn-lime {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--lime);
    color: var(--ink);
    padding: .9rem 2.2rem;
    border-radius: 40px;
    font-family: var(--font-body);
    font-size: .9rem;
    font-weight: 700;
    border: none;
    cursor: pointer;
    transition: all .25s;
}

    .btn-lime:hover {
        background: #d6ff45;
        transform: translateY(-3px);
        box-shadow: 0 14px 36px rgba(198,241,53,.35);
    }

/* CARDS */
.card {
    background: white;
    border-radius: var(--r-lg);
    border: 1px solid rgba(26,28,20,.06);
    transition: all .35s cubic-bezier(.34,1.4,.64,1);
}

    .card:hover {
        transform: translateY(-6px);
        box-shadow: var(--shadow-lg);
    }

/* FOOTER */
footer {
    background: var(--cream);
    padding: 4rem 4vw 2rem;
    border-top: 1px solid rgba(26,28,20,.06);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
}

.footer-logo img {
    height: 38px;
    width: auto;
    margin-bottom: 1rem;
}

.footer-brand-desc {
    font-size: .83rem;
    color: var(--ink-light);
    line-height: 1.7;
    max-width: 280px;
    margin-bottom: 1.3rem;
}

.footer-contact-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: .8rem;
    color: var(--ink-light);
    margin-bottom: .5rem;
}

    .footer-contact-item a {
        color: var(--ink-light);
        transition: color .2s;
    }

        .footer-contact-item a:hover {
            color: var(--olive-deep);
        }

.footer-col-title {
    font-family: var(--font-display);
    font-size: .88rem;
    font-weight: 600;
    color: var(--ink);
    margin-bottom: 1.1rem;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: .55rem;
}

    .footer-links a {
        font-size: .81rem;
        color: var(--ink-light);
        transition: color .2s, transform .2s;
        display: inline-block;
    }

        .footer-links a:hover {
            color: var(--olive-deep);
            transform: translateX(4px);
        }

.footer-bottom {
    padding-top: 1.5rem;
    border-top: 1px solid rgba(26,28,20,.06);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-copy {
    font-size: .76rem;
    color: var(--ink-muted);
}

.footer-socials {
    display: flex;
    gap: .7rem;
}

.social-btn {
    width: 34px;
    height: 34px;
    border-radius: 9px;
    border: 1px solid rgba(26,28,20,.1);
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .82rem;
    color: var(--ink-mid);
    transition: all .2s;
}

    .social-btn:hover {
        background: var(--olive-deep);
        color: white;
        border-color: var(--olive-deep);
        transform: translateY(-3px) scale(1.1);
    }

/* ── 6. SECTIONS ── */


/* HERO */
.hero {
    min-height: 100vh;
    padding: 120px 4vw 80px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    overflow: hidden;
    background: linear-gradient(160deg, #fafaf4 0%, #f2f5e6 45%, #e8edcc 100%);
}

    .hero::before {
        content: '';
        position: absolute;
        inset: 0;
        background-image: linear-gradient(rgba(154,181,74,.08) 1px, transparent 1px), linear-gradient(90deg, rgba(154,181,74,.08) 1px, transparent 1px);
        background-size: 48px 48px;
        pointer-events: none;
        animation: gridShift 20s linear infinite;
    }

.hero-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(90px);
    pointer-events: none;
}

.hero-orb-1 {
    width: 520px;
    height: 520px;
    background: radial-gradient(circle,rgba(122,154,50,.22),transparent 70%);
    top: -120px;
    right: -80px;
    animation: floatOrb 9s ease-in-out infinite;
}

.hero-orb-2 {
    width: 360px;
    height: 360px;
    background: radial-gradient(circle,rgba(198,241,53,.15),transparent 70%);
    bottom: 0;
    left: 8%;
    animation: floatOrb 9s ease-in-out 3.5s infinite;
}

.hero-orb-3 {
    width: 200px;
    height: 200px;
    background: radial-gradient(circle,rgba(56,232,160,.18),transparent 70%);
    top: 40%;
    right: 30%;
    animation: floatOrb 9s ease-in-out 6s infinite;
}

.hero-content, .hero-visual {
    position: relative;
    z-index: 1;
}

.hero-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--lime-glow);
    border: 1px solid rgba(198,241,53,.5);
    color: var(--olive-dark);
    padding: .4rem 1rem;
    border-radius: 40px;
    font-size: .8rem;
    font-weight: 600;
    letter-spacing: .06em;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
    animation: fadeSlideUp .8s ease forwards;
    opacity: 0;
}

.hero-tag-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--lime);
    animation: pulseAnim 2s ease infinite;
    box-shadow: 0 0 8px var(--lime);
}

.hero-headline {
    font-family: var(--font-display);
    font-size: clamp(2.6rem,4vw,4.2rem);
    font-weight: 700;
    line-height: 1.08;
    color: var(--ink);
    letter-spacing: -.03em;
    margin-bottom: 1.5rem;
    animation: fadeSlideUp .8s .25s ease forwards;
    opacity: 0;
}

    .hero-headline em {
        font-style: normal;
        color: var(--olive-deep);
        position: relative;
    }

        .hero-headline em::after {
            content: '';
            position: absolute;
            left: 0;
            bottom: -4px;
            right: 0;
            height: 3px;
            background: linear-gradient(90deg,var(--lime),var(--electric));
            border-radius: 2px;
        }

.hero-sub {
    font-size: 1.1rem;
    color: var(--ink-light);
    line-height: 1.7;
    max-width: 520px;
    margin-bottom: 2.5rem;
    animation: fadeSlideUp .8s .40s ease forwards;
    opacity: 0;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 3rem;
    animation: fadeSlideUp .8s .55s ease forwards;
    opacity: 0;
    justify-content: center;
}

.hero-stats {
    display: flex;
    gap: 2.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(26,28,20,.08);
    animation: fadeSlideUp .8s .70s ease forwards;
    opacity: 0;
}

.hero-stat-num {
    font-family: var(--font-display);
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--ink);
    line-height: 1;
}

.hero-stat-label {
    font-size: .78rem;
    color: var(--ink-muted);
    margin-top: 4px;
}

/* Hero visual */
.hero-visual {
    position: relative;
    height: 540px;
}

#particle-canvas {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
}

.hero-card-main {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    width: 340px;
    background: var(--glass);
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(28px);
    border-radius: var(--r-lg);
    padding: 2rem;
    box-shadow: var(--shadow-lg);
    animation: floatCard 6s ease-in-out infinite;
    z-index: 1;
}

.hero-card-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg,var(--olive),var(--olive-dark));
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.hero-card-title {
    font-family: var(--font-display);
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--ink);
    margin-bottom: .4rem;
}

.hero-card-sub {
    font-size: .8rem;
    color: var(--ink-light);
    line-height: 1.5;
    margin-bottom: 1.2rem;
}

.hero-card-bar {
    height: 6px;
    background: var(--olive-lightest);
    border-radius: 3px;
    margin-bottom: .5rem;
    overflow: hidden;
}

.hero-card-bar-fill {
    height: 100%;
    background: linear-gradient(90deg,var(--olive-deep),var(--lime));
    border-radius: 3px;
    animation: barGrow 2s ease-out forwards;
}

.hero-mini-stats {
    margin-top: 1.2rem;
    display: flex;
    gap: .6rem;
    justify-content: space-around;
    margin-bottom: 30px;
}

    .hero-mini-stats > div {
        color: white;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

.hero-mini-stat {
    flex: 1;
    border-radius: 10px;
    padding: .7rem;
    text-align: center;
    border: 1px solid rgba(198,241,53,.3);
}

    .hero-mini-stat.lime-bg {
        background: var(--lime-glow);
    }

    .hero-mini-stat.electric-bg {
        background: var(--electric-glow);
        border-color: rgba(56,232,160,.3);
    }

.hero-mini-num {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--olive-dark);
}

.hero-mini-label {
    font-size: .68rem;
    color: var(--ink-muted);
}

.hero-badge {
    position: absolute;
    background: white;
    border-radius: var(--r-md);
    padding: .8rem 1.2rem;
    box-shadow: var(--shadow-md);
    display: flex;
    align-items: center;
    gap: 10px;
    border: 1px solid rgba(184,204,120,.3);
    z-index: 2;
}

.hero-badge-icon {
    font-size: 1.4rem;
}

.hero-badge-text {
    font-size: .75rem;
    font-weight: 600;
    color: var(--ink);
}

.hero-badge-sub {
    font-size: .68rem;
    color: var(--ink-muted);
}

.badge-1 {
    top: 60px;
    right: 20px;
    animation: floatBadge 5s ease-in-out 1s infinite;
}

.badge-2 {
    bottom: 80px;
    left: 0;
    animation: floatBadge 5s ease-in-out 2.5s infinite;
}

.badge-3 {
    top: 160px;
    left: -20px;
    animation: floatBadge 5s ease-in-out 0s infinite;
}

/* TRUST STRIP */
.trust-strip {
    padding: 3.5rem 4vw;
    background: white;
    border-top: 1px solid rgba(26,28,20,.05);
    border-bottom: 1px solid rgba(26,28,20,.05);
    overflow: hidden;
}

.trust-strip-label {
    text-align: center;
    font-size: .78rem;
    font-weight: 600;
    color: var(--ink-muted);
    letter-spacing: .12em;
    text-transform: uppercase;
    margin-bottom: 2rem;
}

.trust-marquee-wrap {
    overflow: hidden;
}

.trust-marquee {
    display: flex;
    gap: 2rem;
    width: max-content;
    animation: marquee 24s linear infinite;
}

    .trust-marquee:hover {
        animation-play-state: paused;
    }

.trust-pill {
    background: var(--cream);
    border: 1px solid rgba(26,28,20,.08);
    border-radius: 10px;
    padding: .8rem 1.8rem;
    font-family: var(--font-display);
    font-size: .9rem;
    font-weight: 600;
    color: var(--ink-light);
    letter-spacing: .04em;
    white-space: nowrap;
    transition: all .2s;
    cursor: default;
}

    .trust-pill:hover {
        color: var(--olive-deep);
        border-color: var(--lime);
        box-shadow: 0 0 14px var(--lime-glow);
    }

/* ABOUT */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.about-img-wrap {
    position: relative;
    height: 520px;
}

.about-img-main {
    position: absolute;
    inset: 0;
    border-radius: 28px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 4px solid white;
}

    .about-img-main img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

.about-stat-card {
    position: absolute;
    right: -10px;
    top: 30px;
    background: linear-gradient(135deg,var(--lime),#a8e000);
    border-radius: var(--r-md);
    padding: 1.2rem 1.6rem;
    box-shadow: 0 8px 32px rgba(198,241,53,.4);
    text-align: center;
    z-index: 3;
}

.about-stat-num {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 700;
    color: var(--olive-darker);
}

.about-stat-txt {
    font-size: .78rem;
    color: var(--olive-dark);
    font-weight: 600;
}

.about-body {
    font-size: 1rem;
    color: var(--ink-light);
    line-height: 1.8;
    margin: 1.5rem 0 2rem;
}

.about-pills {
    display: flex;
    gap: .6rem;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.about-pill {
    background: var(--olive-lightest);
    color: var(--olive-dark);
    border-radius: 40px;
    padding: .35rem 1rem;
    font-size: .8rem;
    font-weight: 500;
    border: 1px solid rgba(122,154,50,.22);
    transition: all .2s;
}

    .about-pill:hover {
        background: var(--lime-glow);
        border-color: var(--lime);
        transform: translateY(-2px);
    }

/* SERVICES */
.services-header {
    text-align: center;
    margin-bottom: 4rem;
}

.services-grid {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 1.5rem;
}

.service-card {
    background: white;
    border: 1px solid rgba(26,28,20,.06);
    border-radius: var(--r-lg);
    overflow: hidden;
    transition: all .35s cubic-bezier(.34,1.56,.64,1);
}

    .service-card:hover {
        transform: translateY(-8px);
        box-shadow: var(--shadow-lg);
        border-color: var(--olive-light);
    }

.service-card-img {
    height: 200px;
    overflow: hidden;
    position: relative;
}

    .service-card-img img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform .5s;
    }

.service-card:hover .service-card-img img {
    transform: scale(1.06);
}

.service-card-img-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top,rgba(26,28,20,.3),transparent 60%);
}

.service-card-content {
    padding: 1.8rem;
}

.service-icon {
    width: 50px;
    height: 50px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    margin-bottom: 1rem;
}

.icon-olive {
    background: var(--olive-lightest);
}

.icon-sky {
    background: rgba(91,200,245,.15);
}

.icon-amber {
    background: var(--amber-glow);
}

.icon-rose {
    background: rgba(255,107,107,.12);
}

.icon-purple {
    background: rgba(147,51,234,.1);
}

.icon-teal {
    background: rgba(56,232,160,.15);
}

.service-card-title {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--ink);
    margin-bottom: .6rem;
}

.service-card-desc {
    font-size: .85rem;
    color: var(--ink-light);
    line-height: 1.65;
    margin-bottom: 1.2rem;
}

.service-card-arrow {
    font-size: .85rem;
    font-weight: 600;
    color: var(--olive-deep);
    transition: gap .2s;
    display: inline-flex;
    gap: 4px;
}

    .service-card-arrow:hover {
        gap: 8px;
    }

/* WHY CHOOSE US */
.why-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.why-list {
    margin-top: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.why-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.why-item-icon {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    background: var(--olive-lightest);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    flex-shrink: 0;
}

.why-item-title {
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 600;
    color: var(--ink);
    margin-bottom: .3rem;
}

.why-item-desc {
    font-size: .85rem;
    color: var(--ink-light);
    line-height: 1.6;
}

.why-visual {
    position: relative;
    height: 480px;
}

.why-img-bg {
    position: absolute;
    inset: 0;
    border-radius: var(--r-lg);
    overflow: hidden;
}

    .why-img-bg img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

.why-img-overlay {
    position: absolute;
    inset: 0;
    border-radius: var(--r-lg);
    background: linear-gradient(to bottom,transparent 40%,rgba(26,28,20,.6));
}

.why-center-card {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    background: var(--glass);
    backdrop-filter: blur(22px);
    border: 1px solid var(--glass-border);
    border-radius: var(--r-md);
    padding: 1.5rem 2rem;
    text-align: center;
    white-space: nowrap;
    box-shadow: var(--shadow-md);
}

.why-center-num {
    font-family: var(--font-display);
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--ink);
}

.why-center-label {
    font-size: .8rem;
    color: var(--ink-light);
    margin-top: .3rem;
}

.why-tag-badge {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: var(--lime);
    color: var(--ink-darker);
    padding: .4rem .9rem;
    border-radius: 40px;
    font-size: .75rem;
    font-weight: 700;
}

/* STATS */
.stats-section {
    background: linear-gradient(135deg, var(--ink) 0%, #2a3510 55%, #1e2810 100%) !important;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 2rem;
}

.stat-item {
    text-align: center;
}

.stat-num {
    font-family: var(--font-display);
    font-size: clamp(2.4rem,4vw,3.5rem);
    font-weight: 700;
    color: var(--lime);
}

.stat-plus {
    font-size: clamp(1.8rem,3vw,2.5rem);
    color: var(--olive-mid);
}

.stat-label {
    font-size: .85rem;
    color: rgba(255,255,255,.55);
    margin-top: .5rem;
}

/* PRODUCTS GRID */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill,minmax(280px,1fr));
    gap: 1.5rem;
}

.product-card {
    background: white;
    border-radius: var(--r-lg);
    overflow: hidden;
    border: 1px solid rgba(26,28,20,.06);
    transition: all .35s cubic-bezier(.34,1.4,.64,1);
}

    .product-card:hover {
        transform: translateY(-8px);
        box-shadow: var(--shadow-lg);
    }

.product-card-top {
    height: 200px;
    overflow: hidden;
    position: relative;
}

    .product-card-top img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform .5s;
    }

.product-card:hover .product-card-top img {
    transform: scale(1.06);
}

.product-card-top-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top,rgba(26,28,20,.35),transparent 60%);
}

.product-card-top-emoji {
    position: absolute;
    bottom: 1rem;
    left: 1.2rem;
    font-size: 2rem;
}

.product-card-body {
    padding: 1.6rem;
}

.product-badge {
    display: inline-block;
    background: var(--olive-lightest);
    color: var(--olive-dark);
    padding: .25rem .75rem;
    border-radius: 40px;
    font-size: .72rem;
    font-weight: 600;
    letter-spacing: .06em;
    text-transform: uppercase;
    margin-bottom: .8rem;
}

.product-card-title {
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 600;
    color: var(--ink);
    margin-bottom: .5rem;
}

.product-card-desc {
    font-size: .83rem;
    color: var(--ink-light);
    line-height: 1.6;
    margin-bottom: 1.2rem;
}

/* TESTIMONIALS */
.testimonials-header {
    text-align: center;
    margin-bottom: 4rem;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(280px,1fr));
    gap: 1.5rem;
}

.testi-card {
    background: white;
    border-radius: var(--r-lg);
    padding: 2rem;
    text-align: center !important;
    border: 1px solid rgba(26,28,20,.06);
    transition: all .35s cubic-bezier(.34,1.4,.64,1);
}

.testi-quote {
    text-align: center;
}

.testi-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}

.testi-stars {
    color: var(--amber);
    font-size: 1rem;
    letter-spacing: 2px;
    margin-bottom: 1rem;
    text-align: center;
}

.testi-quote {
    font-size: .9rem;
    color: var(--ink-light);
    line-height: 1.75;
    font-style: italic;
    margin-bottom: 1.5rem;
}

.testi-author {
    display: flex;
    align-items: center;
    gap: .8rem;
    justify-content: center !important;
}

.testi-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid var(--olive-light);
    flex-shrink: 0;
}

    .testi-avatar img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

.testi-name {
    font-family: var(--font-display);
    font-size: .9rem;
    font-weight: 600;
    color: var(--ink);
}

.testi-role {
    font-size: .75rem;
    color: var(--ink-muted);
}

/* CTA SECTION */
.cta-section {
    padding: 5rem 4vw;
    background: linear-gradient(135deg,var(--ink) 0%,#1e2510 55%,#2d3a0e 100%);
    text-align: center;
    position: relative;
    overflow: hidden;
}

    .cta-section::before {
        content: '';
        position: absolute;
        inset: 0;
        background-image: linear-gradient(rgba(198,241,53,.06) 1px,transparent 1px),linear-gradient(90deg,rgba(198,241,53,.06) 1px,transparent 1px);
        background-size: 40px 40px;
        pointer-events: none;
    }

    .cta-section::after {
        content: '';
        position: absolute;
        width: 600px;
        height: 600px;
        border-radius: 50%;
        background: radial-gradient(circle,rgba(198,241,53,.1),transparent 70%);
        top: 50%;
        left: 50%;
        transform: translate(-50%,-50%);
        pointer-events: none;
    }

.cta-inner {
    position: relative;
    z-index: 1;
}

.cta-section .section-tag {
    color: var(--lime);
}

.cta-section .section-headline {
    color: white;
    max-width: 640px;
    margin: 0 auto .9rem;
}

.cta-section .section-sub {
    color: rgba(255,255,255,.55);
    max-width: 520px;
    margin: 0 auto 2.2rem;
    font-size: .90rem;
}

.cta-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-footnote {
    font-size: .75rem;
    color: rgba(255,255,255,.3);
    margin-top: 1.2rem;
}

/* ── 7. PAGE-SPECIFIC ── */

/* Page Hero (inner pages) */
.page-hero {
    display: flex;
    justify-content: center;
    padding: 120px 4vw 5rem;
    background: linear-gradient(135deg,var(--ink) 0%,#2a3510 55%,#1e2810 100%);
    position: relative;
    overflow: hidden;
}

    .page-hero::before {
        content: '';
        position: absolute;
        inset: 0;
        background-image: linear-gradient(rgba(198,241,53,.05) 1px,transparent 1px),linear-gradient(90deg,rgba(198,241,53,.05) 1px,transparent 1px);
        background-size: 48px 48px;
        pointer-events: none;
        animation: gridShift 22s linear infinite;
    }

.page-hero-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(90px);
    pointer-events: none;
}

.page-hero-orb-1 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle,rgba(198,241,53,.13),transparent 70%);
    top: -150px;
    right: -80px;
    animation: floatOrb 9s ease-in-out infinite;
}

.page-hero-orb-2 {
    width: 280px;
    height: 280px;
    background: radial-gradient(circle,rgba(56,232,160,.1),transparent 70%);
    bottom: -40px;
    left: 8%;
    animation: floatOrb 9s ease-in-out 4.5s infinite;
}

.page-hero-content {
    position: relative;
    z-index: 1;
    max-width: 780px;
    display: flex !important;
    justify-content: center !important;
    flex-direction: column;
}

    .page-hero-content > h1 {
        text-align: center !important;
    }

    .page-hero-content > p {
        align-self: center;
        text-align: center !important;
    }

    .page-hero-content > .search {
        width: 100% !important;
        max-width: 900px !important;
    }

.page-hero-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    display: flex !important;
    width: fit-content;
    align-self: center;
    background: rgba(198,241,53,.12);
    border: 1px solid rgba(198,241,53,.3);
    color: var(--lime);
    padding: .38rem 1.1rem;
    border-radius: 40px;
    font-size: .78rem;
    font-weight: 600;
    letter-spacing: .08em;
    text-transform: uppercase;
    margin-bottom: 1.4rem;
}

.hero-tag-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--lime);
    animation: pulseAnim 2s ease infinite;
}

.page-hero h1 {
    font-family: var(--font-display);
    font-size: clamp(2.4rem,5vw,4rem);
    font-weight: 700;
    line-height: 1.08;
    letter-spacing: -.03em;
    color: white;
    margin-bottom: 1.2rem;
}

    .page-hero h1 em {
        font-style: normal;
        color: var(--lime);
    }

.page-hero p {
    font-size: 1.05rem;
    color: rgba(255,255,255,.6);
    line-height: 1.75;
    max-width: 650px;
    margin-bottom: 2.5rem;
}

.breadcrumb {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    font-size: .8rem;
    color: rgba(255,255,255,.4);
    margin-top: 1.5rem;
    justify-content: center;
}

    .breadcrumb a {
        color: var(--lime);
        transition: opacity .2s;
    }

        .breadcrumb a:hover {
            opacity: .75;
        }

    .breadcrumb span {
        color: rgba(255,255,255,.25);
    }

/* Overview grid (About, IVF pages) */
.overview-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.overview-image {
    border-radius: var(--r-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    height: 420px;
}

    .overview-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

.overview-stat-card {
    position: absolute;
    right: -10px;
    top: 20px;
    background: linear-gradient(135deg,var(--lime),#a8e000);
    border-radius: var(--r-md);
    padding: 1.2rem 1.6rem;
    box-shadow: 0 8px 32px rgba(198,241,53,.4);
    text-align: center;
    z-index: 2;
}

.os-num {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 700;
    color: var(--olive-darker);
}

.os-txt {
    font-size: .78rem;
    color: var(--olive-dark);
    font-weight: 600;
}

/* Mission/Vision cards */
.mv-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(400px,1fr)) !important;
    gap: 1.5rem;
}

.mv-card {
    background: white;
    border-radius: var(--r-lg);
    padding: 2rem;
    border: 1px solid rgba(154,181,74,.15);
    transition: all .3s;
}

    .mv-card:hover {
        transform: translateY(-4px);
        box-shadow: var(--shadow-md);
    }

.mv-card-icon {
    font-size: 2.2rem;
    margin-bottom: 1rem;
}

.mv-card-title {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--ink);
    margin-bottom: .8rem;
}

.mv-card-text {
    font-size: .87rem;
    color: var(--ink-light);
    line-height: 1.7;
}

/* Team */
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill,minmax(260px,1fr));
    gap: 1.5rem;
}

.team-card {
    background: white;
    border-radius: var(--r-lg);
    padding: 2rem;
    border: 1px solid rgba(26,28,20,.06);
    text-align: center;
    transition: all .35s cubic-bezier(.34,1.4,.64,1);
}

    .team-card:hover {
        transform: translateY(-6px);
        box-shadow: var(--shadow-lg);
    }

.team-avatar {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-weight: 700;
    color: white;
    margin: 0 auto 1rem;
}

.team-name {
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 600;
    color: var(--ink);
    margin-bottom: .3rem;
}

.team-role {
    font-size: .78rem;
    color: var(--olive-deep);
    font-weight: 600;
    margin-bottom: .8rem;
}

.team-bio {
    font-size: .82rem;
    color: var(--ink-light);
    line-height: 1.65;
}

/* Modules */
.modules-section {
    padding: 5rem 4vw;
    background: #1a1c14;
}

.modules-intro {
    text-align: center;
    margin-bottom: 3rem;
}

    .modules-intro .section-headline {
        color: white;
    }

    .modules-intro .section-sub {
        color: rgba(255,255,255,.5);
        margin: 0 auto;
    }

.modules-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.2rem;
}

.module-card {
    background: rgba(255,255,255,.07);
    border-radius: var(--r-md);
    border: 1px solid rgba(255,255,255,.1);
    padding: 1.5rem;
    transition: all .3s;
}

    .module-card:hover {
        background: rgba(255,255,255,.12);
        transform: translateY(-4px);
    }

.mic-olive {
    background: rgba(154,181,74,.25);
}

.mic-green {
    background: rgba(56,232,160,.2);
}

.mic-electric {
    background: rgba(91,200,245,.2);
}

.mic-amber {
    background: rgba(245,166,35,.2);
    width: 64px;
    height: 64px;
    border-radius: 18px;
    margin: 0 auto 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    background: rgba(90, 117, 32, .25);
    border: 1px solid rgba(90, 117, 32, .35);
    transition: transform .3s;
}

.module-card > .module-icon-wrap {
    width: 64px;
    height: 64px;
    border-radius: 18px;
    margin: 0 auto 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    background: rgba(90, 117, 32, .25);
    border: 1px solid rgba(90, 117, 32, .35);
    transition: transform .3s;
}

.hero-mini-stats {
    display: none !important;
}

.module-card:hover {
    background: rgba(255, 255, 255, .08);
    border-color: rgba(154, 181, 74, .38);
    transform: translateY(-6px) scale(1.02);
    box-shadow: 0 12px 40px rgba(0, 0, 0, .3), 0 0 0 1px rgba(154, 181, 74, .25);
}

.module-card {
    background: rgb(169 241 13 / 29%);
    border: 1px solid rgba(154, 181, 74, .15);
    border-radius: var(--r-lg);
    padding: 1.8rem 1.4rem;
    text-align: center;
    cursor: default;
    transition: all .3s cubic-bezier(.34, 1.5, .64, 1);
    position: relative;
    overflow: hidden;
}

.mic-lime {
    background: rgba(198,241,53,.2);
}

.mic-coral {
    background: rgba(255,107,107,.2);
}

.mic-sky {
    background: rgba(91,200,245,.2);
}

.module-title {
    font-family: var(--font-display);
    font-size: .9rem;
    font-weight: 600;
    color: white;
    margin-bottom: .4rem;
}

.module-desc {
    font-size: .75rem;
    color: rgba(255,255,255,.45);
    line-height: 1.55;
    color: white;
}

/* Contact form */
.contact-main {
    padding: 5rem 4vw;
    background: var(--cream);
}

.contact-main-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
}

.contact-form-wrap {
    background: white;
    border-radius: var(--r-xl);
    padding: 3rem;
    box-shadow: var(--shadow-md);
}

.form-heading {
    font-family: var(--font-display);
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--ink);
    margin-bottom: .5rem;
}

.form-sub {
    font-size: .88rem;
    color: var(--ink-muted);
    margin-bottom: 2rem;
}

.form-row-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.form-group {
    margin-bottom: 1.2rem;
}

.form-label {
    display: block;
    font-size: .8rem;
    font-weight: 600;
    color: var(--ink-mid);
    margin-bottom: .4rem;
}

.form-control {
    width: 100%;
    padding: .8rem 1rem;
    border-radius: var(--r-sm);
    border: 1px solid rgba(26,28,20,.12);
    background: var(--cream);
    font-family: var(--font-body);
    font-size: .88rem;
    color: var(--ink);
    outline: none;
    transition: border-color .2s;
}

    .form-control:focus {
        border-color: var(--olive-mid);
        background: white;
    }

textarea.form-control {
    resize: vertical;
    min-height: 130px;
}

.btn-submit {
    width: 100%;
    padding: 1rem;
    border-radius: 40px;
    background: var(--ink);
    color: white;
    border: none;
    font-family: var(--font-body);
    font-size: .95rem;
    font-weight: 700;
    cursor: pointer;
    transition: all .25s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

    .btn-submit:hover {
        background: var(--olive-dark);
        transform: translateY(-2px);
        box-shadow: 0 10px 28px rgba(90,117,32,.3);
    }

.form-success {
    display: none;
    align-items: center;
    gap: .8rem;
    margin-top: 1rem;
    padding: 1rem;
    border-radius: var(--r-sm);
    background: rgba(56,232,160,.12);
    border: 1px solid rgba(56,232,160,.3);
    font-size: .88rem;
    color: var(--ink-mid);
}

    .form-success.show {
        display: flex;
    }

/* Contact strip */
.contact-strip {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    background: white;
    border-bottom: 1px solid rgba(26,28,20,.06);
}

.contact-strip-item {
    display: flex;
    align-items: center;
    gap: .8rem;
    padding: 1.5rem 2rem;
    border-right: 1px solid rgba(26,28,20,.06);
    transition: background .2s;
}

    .contact-strip-item:last-child {
        border-right: none;
    }

    .contact-strip-item:hover {
        background: var(--olive-lightest);
    }

.strip-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
}

    .strip-icon.green {
        background: rgba(56,232,160,.15);
    }

    .strip-icon.amber {
        background: var(--amber-glow);
    }

    .strip-icon.sky {
        background: rgba(91,200,245,.15);
    }

    .strip-icon.lime {
        background: var(--lime-glow);
    }

.strip-label {
    font-size: .72rem;
    color: var(--ink-muted);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .06em;
}

.strip-value {
    font-size: .88rem;
    font-weight: 600;
    color: var(--ink);
}

/* Office cards */
.office-cards {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin: 2rem 0;
}

.office-card {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.2rem;
    border-radius: var(--r-md);
    background: white;
    border: 1px solid rgba(26,28,20,.06);
    transition: all .2s;
}

    .office-card:hover {
        border-color: var(--olive-mid);
        box-shadow: var(--shadow-sm);
    }

.office-card-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    flex-shrink: 0;
}

.oc-hq {
    background: var(--olive-lightest);
}

.oc-dev {
    background: rgba(91,200,245,.15);
}

.oc-int {
    background: rgba(245,166,35,.15);
}

.oc-par {
    background: rgba(56,232,160,.15);
}

.oc-sup {
    background: rgba(198,241,53,.15);
}

.office-card-title {
    font-family: var(--font-display);
    font-size: .9rem;
    font-weight: 600;
    color: var(--ink);
    margin-bottom: .3rem;
}

.office-card-desc {
    font-size: .8rem;
    color: var(--ink-light);
    line-height: 1.55;
}

.social-row {
    display: flex;
    gap: .6rem;
    flex-wrap: wrap;
}

.social-pill {
    padding: .4rem 1rem;
    border-radius: 40px;
    border: 1px solid rgba(26,28,20,.1);
    background: white;
    font-size: .78rem;
    font-weight: 500;
    color: var(--ink-mid);
    transition: all .2s;
}

    .social-pill:hover {
        background: var(--olive-deep);
        color: white;
        border-color: var(--olive-deep);
    }

/* Map */
.map-section {
    padding: 0 4vw 5rem;
    background: var(--cream);
}

.map-wrap {
    border-radius: var(--r-xl);
    overflow: hidden;
    background: linear-gradient(135deg,var(--olive-lightest),white);
    border: 1px solid rgba(154,181,74,.2);
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.map-placeholder-inner {
    text-align: center;
}

.map-pin {
    font-size: 3rem;
    margin-bottom: .8rem;
}

.map-title {
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--ink);
    margin-bottom: .4rem;
}

.map-address {
    font-size: .85rem;
    color: var(--ink-muted);
    margin-bottom: 1.2rem;
}

.map-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--ink);
    color: white;
    padding: .75rem 1.5rem;
    border-radius: 40px;
    font-family: var(--font-body);
    font-size: .85rem;
    font-weight: 600;
    transition: all .25s;
}

    .map-btn:hover {
        background: var(--olive-dark);
        transform: translateY(-2px);
    }

.map-overlay-badges {
    position: absolute;
    bottom: 1.5rem;
    right: 1.5rem;
    display: flex;
    gap: .8rem;
}

.map-badge {
    display: flex;
    align-items: center;
    gap: .6rem;
    background: white;
    border-radius: var(--r-md);
    padding: .8rem 1rem;
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(154,181,74,.15);
}

.map-badge-icon {
    font-size: 1.2rem;
}

.map-badge-text {
    font-size: .78rem;
    font-weight: 600;
    color: var(--ink);
}

.map-badge-sub {
    font-size: .68rem;
    color: var(--ink-muted);
}

/* FAQ */
.faq-section {
    padding: 5rem 4vw;
    background: white;
}

    .faq-section .text-center {
        margin-bottom: 3rem;
    }

.faq-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    max-width: 900px;
    margin: 2rem auto 0;
}

.faq-item {
    background: var(--cream);
    border-radius: var(--r-md);
    padding: 1.5rem;
    border: 1px solid rgba(26,28,20,.06);
    cursor: pointer;
    transition: all .2s;
}

    .faq-item:hover, .faq-item.open {
        border-color: var(--olive-mid);
        background: var(--olive-lightest);
    }

.faq-q {
    font-family: var(--font-display);
    font-size: .92rem;
    font-weight: 600;
    color: var(--ink);
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
}

.faq-chevron {
    font-size: 1.2rem;
    color: var(--olive);
    transition: transform .2s;
}

.faq-item.open .faq-chevron {
    transform: rotate(90deg);
}

.faq-a {
    font-size: .83rem;
    color: var(--ink-light);
    line-height: 1.7;
    margin-top: 1rem;
    display: none;
}

.faq-item.open .faq-a {
    display: block;
}

/* Blog */
.blog-layout {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 3rem;
    align-items: start;
}

.blog-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.blog-card {
    background: white;
    border-radius: var(--r-lg);
    overflow: hidden;
    border: 1px solid rgba(26,28,20,.06);
    transition: all .35s cubic-bezier(.34,1.4,.64,1);
    display: flex;
    flex-direction: column;
}

    .blog-card:hover {
        transform: translateY(-8px);
        box-shadow: var(--shadow-lg);
        border-color: var(--olive-mid);
    }

.blog-card-img {
    height: 200px;
    overflow: hidden;
    position: relative;
}

    .blog-card-img img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform .45s;
    }

.blog-card:hover .blog-card-img img {
    transform: scale(1.07);
}

.blog-card-img-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top,rgba(26,28,20,.25),transparent 60%);
}

.blog-card-body {
    padding: 1.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.blog-card-meta {
    display: flex;
    align-items: center;
    gap: .7rem;
    margin-bottom: .8rem;
    flex-wrap: wrap;
}

.blog-card-title {
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 600;
    color: var(--ink);
    line-height: 1.3;
    margin-bottom: .6rem;
    flex: 1;
}

    .blog-card-title a:hover {
        color: var(--olive-deep);
    }

.blog-card-excerpt {
    font-size: .8rem;
    color: var(--ink-light);
    line-height: 1.65;
    margin-bottom: 1.2rem;
}

.blog-card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 1rem;
    border-top: 1px solid rgba(26,28,20,.06);
    margin-top: auto;
}

.blog-card-author {
    display: flex;
    align-items: center;
    gap: .5rem;
}

.author-avatar-sm {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-size: .7rem;
    font-weight: 700;
    color: white;
}

.author-name-sm {
    font-size: .75rem;
    font-weight: 500;
    color: var(--ink-mid);
}

.read-arrow {
    font-size: .8rem;
    font-weight: 600;
    color: var(--olive-deep);
    transition: transform .2s;
}

.blog-card:hover .read-arrow {
    transform: translateX(4px);
}

/* Post categories */
.post-cat {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: .25rem .75rem;
    border-radius: 40px;
    font-size: .72rem;
    font-weight: 600;
    letter-spacing: .06em;
    text-transform: uppercase;
}

.cat-hims {
    background: var(--lime-glow);
    color: var(--olive-darker);
    border: 1px solid rgba(198,241,53,.3);
}

.cat-ai {
    background: rgba(56,232,160,.15);
    color: #0f6e56;
    border: 1px solid rgba(56,232,160,.3);
}

.cat-telecom {
    background: rgba(91,200,245,.15);
    color: #185fa5;
    border: 1px solid rgba(91,200,245,.3);
}

.cat-pharma {
    background: var(--amber-glow);
    color: #633806;
    border: 1px solid rgba(245,166,35,.3);
}

.cat-hipaa {
    background: rgba(122,154,50,.12);
    color: var(--olive-dark);
    border: 1px solid rgba(122,154,50,.25);
}

.post-date, .post-read-time {
    font-size: .75rem;
    color: var(--ink-muted);
}

/* Sidebar */
.sidebar {
    display: flex;
    flex-direction: column;
    gap: 1.8rem;
    position: sticky;
    top: 90px;
}

.sidebar-widget {
    background: white;
    border-radius: var(--r-lg);
    padding: 1.6rem;
    border: 1px solid rgba(26,28,20,.06);
}

.widget-title {
    font-family: var(--font-display);
    font-size: .95rem;
    font-weight: 700;
    color: var(--ink);
    margin-bottom: 1.2rem;
    padding-bottom: .8rem;
    border-bottom: 2px solid var(--olive-lightest);
}

.cat-list {
    display: flex;
    flex-direction: column;
    gap: .5rem;
}

.cat-list-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: .6rem .8rem;
    border-radius: var(--r-sm);
    cursor: pointer;
    transition: all .2s;
}

    .cat-list-item:hover, .cat-list-item.active {
        background: var(--olive-lightest);
    }

.cat-list-name {
    font-size: .83rem;
    font-weight: 500;
    color: var(--ink-mid);
}

.cat-list-item:hover .cat-list-name, .cat-list-item.active .cat-list-name {
    color: var(--olive-deep);
}

.cat-list-count {
    background: var(--olive-lightest);
    color: var(--olive-dark);
    font-size: .7rem;
    font-weight: 700;
    padding: .2rem .55rem;
    border-radius: 20px;
}

.popular-list {
    display: flex;
    flex-direction: column;
    gap: .9rem;
}

.popular-item {
    display: flex;
    align-items: flex-start;
    gap: .8rem;
    cursor: pointer;
}

.popular-num {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--olive-light);
    line-height: 1;
    min-width: 28px;
}

.popular-title {
    font-size: .8rem;
    font-weight: 600;
    color: var(--ink);
    line-height: 1.35;
    transition: color .2s;
}

.popular-item:hover .popular-title {
    color: var(--olive-deep);
}

.popular-date {
    font-size: .7rem;
    color: var(--ink-muted);
    margin-top: 2px;
}

.tags-cloud {
    display: flex;
    flex-wrap: wrap;
    gap: .5rem;
}

.tag-chip {
    padding: .32rem .85rem;
    border-radius: 40px;
    border: 1px solid rgba(26,28,20,.1);
    background: var(--cream);
    font-size: .75rem;
    font-weight: 500;
    color: var(--ink-light);
    cursor: pointer;
    transition: all .2s;
}

    .tag-chip:hover {
        background: var(--olive-lightest);
        border-color: var(--olive-mid);
        color: var(--olive-dark);
    }

.newsletter-widget {
    background: linear-gradient(135deg,var(--ink),#2d3a0e);
    border-radius: var(--r-lg);
    padding: 1.8rem;
    position: relative;
    overflow: hidden;
}

    .newsletter-widget::before {
        content: '';
        position: absolute;
        inset: 0;
        background-image: linear-gradient(rgba(198,241,53,.06) 1px,transparent 1px),linear-gradient(90deg,rgba(198,241,53,.06) 1px,transparent 1px);
        background-size: 32px 32px;
    }

.newsletter-inner {
    position: relative;
    z-index: 1;
}

.newsletter-icon {
    font-size: 2rem;
    margin-bottom: .8rem;
}

.newsletter-title {
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 700;
    color: white;
    margin-bottom: .5rem;
}

.newsletter-sub {
    font-size: .78rem;
    color: rgba(255,255,255,.55);
    line-height: 1.6;
    margin-bottom: 1.2rem;
}

.newsletter-input {
    width: 100%;
    padding: .75rem 1rem;
    border-radius: var(--r-sm);
    border: 1px solid rgba(255,255,255,.12);
    background: rgba(255,255,255,.08);
    color: white;
    font-family: var(--font-body);
    font-size: .83rem;
    margin-bottom: .7rem;
    outline: none;
    transition: border-color .2s;
}

    .newsletter-input::placeholder {
        color: rgba(255,255,255,.35);
    }

    .newsletter-input:focus {
        border-color: var(--lime);
    }

.btn-subscribe {
    width: 100%;
    padding: .8rem;
    border-radius: 40px;
    background: var(--lime);
    color: var(--ink);
    border: none;
    font-family: var(--font-body);
    font-size: .85rem;
    font-weight: 700;
    cursor: pointer;
    transition: all .2s;
}

    .btn-subscribe:hover {
        background: #d6ff45;
        transform: translateY(-1px);
    }

/* Pagination */
.pagination {
    display: flex;
    align-items: center;
    gap: .5rem;
    margin-top: 3rem;
    flex-wrap: wrap;
}

.page-btn {
    width: 40px;
    height: 40px;
    border-radius: var(--r-sm);
    border: 1px solid rgba(26,28,20,.1);
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .85rem;
    font-weight: 500;
    color: var(--ink-mid);
    cursor: pointer;
    transition: all .2s;
}

    .page-btn:hover {
        border-color: var(--olive-mid);
        color: var(--olive-deep);
        background: var(--olive-lightest);
    }

    .page-btn.active {
        background: var(--ink);
        color: white;
        border-color: var(--ink);
    }

    .page-btn.wide {
        width: auto;
        padding: 0 1rem;
    }

/* Featured blog */
.featured-section {
    padding: 4rem 4vw 3rem;
    background: var(--cream);
}

.featured-label {
    display: flex;
    align-items: center;
    gap: .6rem;
    font-size: .75rem;
    font-weight: 600;
    color: var(--olive-dark);
    text-transform: uppercase;
    letter-spacing: .1em;
    margin-bottom: 1.4rem;
}

.featured-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--lime);
    animation: pulseAnim 2s infinite;
}

.featured-card {
    display: grid;
    grid-template-columns: 1.15fr 1fr;
    border-radius: var(--r-xl);
    overflow: hidden;
    border: 1px solid rgba(184,204,120,.2);
    box-shadow: var(--shadow-md);
    background: white;
    transition: all .35s cubic-bezier(.34,1.4,.64,1);
}

    .featured-card:hover {
        transform: translateY(-6px);
        box-shadow: var(--shadow-lg);
    }

.featured-img {
    height: 460px;
    overflow: hidden;
    position: relative;
}

    .featured-img img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform .5s;
    }

.featured-card:hover .featured-img img {
    transform: scale(1.04);
}

.featured-img-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right,transparent 60%,rgba(255,255,255,.1));
}

.featured-img-badge {
    position: absolute;
    top: 1.2rem;
    left: 1.2rem;
    background: var(--lime);
    color: var(--ink-darker);
    padding: .3rem .8rem;
    border-radius: 40px;
    font-size: .72rem;
    font-weight: 700;
}

.featured-body {
    padding: 3rem 2.5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.post-meta {
    display: flex;
    align-items: center;
    gap: .8rem;
    margin-bottom: 1.2rem;
    flex-wrap: wrap;
}

.featured-title {
    font-family: var(--font-display);
    font-size: clamp(1.5rem,2.5vw,2rem);
    font-weight: 700;
    color: var(--ink);
    line-height: 1.18;
    margin-bottom: 1rem;
    letter-spacing: -.02em;
}

    .featured-title a:hover {
        color: var(--olive-deep);
    }

.featured-excerpt {
    font-size: .9rem;
    color: var(--ink-light);
    line-height: 1.75;
    margin-bottom: 1.8rem;
}

.featured-author {
    display: flex;
    align-items: center;
    gap: .8rem;
    padding-top: 1.4rem;
    border-top: 1px solid rgba(26,28,20,.07);
}

.author-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-size: .9rem;
    font-weight: 700;
    color: white;
    flex-shrink: 0;
}

.author-name {
    font-size: .83rem;
    font-weight: 600;
    color: var(--ink);
}

.author-role {
    font-size: .72rem;
    color: var(--ink-muted);
}

.btn-read-more {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: var(--ink);
    color: white;
    padding: .8rem 1.8rem;
    border-radius: 40px;
    font-family: var(--font-body);
    font-size: .85rem;
    font-weight: 600;
    margin-bottom: 1.8rem;
    transition: all .25s;
    align-self: flex-start;
}

    .btn-read-more:hover {
        background: var(--olive-dark);
        transform: translateY(-2px);
    }

/* Filter bar */
.filter-bar {
    background: white;
    padding: 1.4rem 4vw;
    border-bottom: 1px solid rgba(26,28,20,.06);
    position: sticky;
    top: 68px;
    z-index: 100;
}

.filter-inner {
    display: flex;
    align-items: center;
    gap: .7rem;
    flex-wrap: wrap;
}

.filter-label {
    font-size: .75rem;
    font-weight: 600;
    color: var(--ink-muted);
    text-transform: uppercase;
    letter-spacing: .08em;
}

.filter-btn {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: .42rem 1rem;
    border-radius: 40px;
    border: 1px solid rgba(26,28,20,.1);
    background: var(--cream);
    font-family: var(--font-body);
    font-size: .78rem;
    font-weight: 500;
    color: var(--ink-mid);
    cursor: pointer;
    transition: all .2s;
}

    .filter-btn:hover {
        border-color: var(--olive-mid);
        color: var(--olive-deep);
        background: var(--olive-lightest);
    }

    .filter-btn.active {
        background: var(--ink);
        color: white;
        border-color: var(--ink);
    }

.filter-count {
    background: rgba(26,28,20,.07);
    color: var(--ink-muted);
    border-radius: 10px;
    padding: .1rem .4rem;
    font-size: .7rem;
    font-weight: 700;
}

.filter-btn.active .filter-count {
    background: rgba(255,255,255,.2);
    color: rgba(255,255,255,.8);
}

/* Services page detail blocks */
.service-detail-block {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 3rem;
    align-items: center;
    padding: 3rem 0;
}

    .service-detail-block.reverse {
        grid-template-columns: 1fr 280px;
    }

        .service-detail-block.reverse .service-detail-visual {
            order: 2;
        }

.service-detail-visual {
    height: 260px;
    border-radius: var(--r-xl);
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(145deg,var(--olive-lightest),var(--cream));
}

.service-detail-visual-icon {
    font-size: 5rem;
}

.service-feature-list {
    display: flex;
    flex-direction: column;
    gap: .6rem;
}

    .service-feature-list li {
        display: flex;
        align-items: flex-start;
        gap: .5rem;
        font-size: .88rem;
        color: var(--ink-light);
        line-height: 1.6;
    }

        .service-feature-list li::before {
            content: '✓';
            color: var(--olive-deep);
            font-weight: 700;
            flex-shrink: 0;
            margin-top: 1px;
        }

/* Why circles decorative */
.why-circles {
    position: absolute;
    inset: 0;
    border-radius: var(--r-lg);
}

.why-circle {
    position: absolute;
    border-radius: 50%;
    border: 1px solid rgba(154,181,74,.2);
}

.wc1 {
    width: 300px;
    height: 300px;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
}

.wc2 {
    width: 450px;
    height: 450px;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
}

.wc3 {
    width: 600px;
    height: 600px;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
}

/* Client logos */
.logos-section {
    padding: 5rem 4vw;
    background: var(--cream);
}

.logos-header {
    text-align: center;
    margin-bottom: 3rem;
}

.logos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill,minmax(180px,1fr));
    gap: 1rem;
    max-width: 900px;
    margin: 0 auto;
}

.logo-placeholder {
    background: white;
    border: 1px solid rgba(26,28,20,.07);
    border-radius: var(--r-md);
    padding: 1.2rem;
    text-align: center;
    font-family: var(--font-display);
    font-size: .85rem;
    font-weight: 600;
    color: var(--ink-muted);
    transition: all .2s;
}

    .logo-placeholder:hover {
        border-color: var(--olive-mid);
        color: var(--olive-deep);
        box-shadow: var(--shadow-sm);
    }

/* IVF check/benefit list */
.two-col-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.check-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 1.5rem;
}

.check-item {
    display: flex;
    align-items: flex-start;
    gap: .8rem;
}

.check-ico {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: var(--olive-lightest);
    color: var(--olive-deep);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .85rem;
    font-weight: 700;
    flex-shrink: 0;
    margin-top: 2px;
}

.check-text {
    font-size: .87rem;
    color: var(--ink-light);
    line-height: 1.65;
}

/* Why card (IVF) */
.wc-card {
    background: var(--ink);
    border-radius: var(--r-xl);
    padding: 2.5rem;
    border: 1px solid rgba(255,255,255,.08);
    position: relative;
    overflow: hidden;
}

    .wc-card::before {
        content: '';
        position: absolute;
        inset: 0;
        background-image: linear-gradient(rgba(198,241,53,.05) 1px,transparent 1px),linear-gradient(90deg,rgba(198,241,53,.05) 1px,transparent 1px);
        background-size: 28px 28px;
    }

.wc-card-tag {
    font-size: .72rem;
    font-weight: 600;
    color: var(--lime);
    letter-spacing: .1em;
    text-transform: uppercase;
    margin-bottom: .5rem;
    position: relative;
    z-index: 1;
}

.wc-card-title {
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
}

.wc-items {
    display: flex;
    flex-direction: column;
    gap: .9rem;
    position: relative;
    z-index: 1;
}

.wc-item {
    display: flex;
    align-items: flex-start;
    gap: .7rem;
}

.wc-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--lime);
    flex-shrink: 0;
    margin-top: 5px;
}

.wc-item-text {
    font-size: .83rem;
    color: rgba(255,255,255,.6);
    line-height: 1.6;
}

.wc-uptime {
    display: flex;
    align-items: center;
    padding: 1.2rem;
    margin-top: 1.5rem;
    background: rgba(255,255,255,.06);
    border-radius: var(--r-md);
    border: 1px solid rgba(255,255,255,.08);
    position: relative;
    z-index: 1;
}

.wc-uptime-num {
    font-family: var(--font-display);
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--lime);
}

.wc-uptime-label {
    font-size: .72rem;
    color: rgba(255,255,255,.4);
}

/* Why bullet list (IVF) */
.why-layout {
    display: grid;
    grid-template-columns: 0.7fr 1fr;
    gap: 3rem;
}

.why-bullet-list {
    display: flex;
    flex-direction: column;
    gap: .6rem;
}

.bullet-group-label {
    font-size: .72rem;
    font-weight: 600;
    color: var(--olive-dark);
    letter-spacing: .08em;
    text-transform: uppercase;
    padding: .5rem 0 .2rem;
    border-bottom: 1px solid rgba(154,181,74,.2);
}

.why-bullet-item {
    display: flex;
    align-items: flex-start;
    gap: .7rem;
    padding: .7rem;
    border-radius: var(--r-sm);
    background: var(--cream);
    border: 1px solid rgba(26,28,20,.05);
}

    .why-bullet-item:hover {
        border-color: #b8cc78;
        transform: translateX(5px);
        box-shadow: 0 2px 12px rgba(26, 28, 20, .07);
        background: #f4f6ee;
    }

        .why-bullet-item:hover .wb-ico {
            background: #9ab54a;
            color: white;
            transform: scale(1.1);
        }

.wb-ico {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: var(--olive-lightest);
    color: var(--olive-deep);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .78rem;
    font-weight: 700;
    flex-shrink: 0;
}

.wb-text {
    font-size: .83rem;
    color: var(--ink-light);
    line-height: 1.6;
}

/* ── 8. ANIMATIONS / UTILITIES ── */
.reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity .7s ease, transform .7s ease;
}

    .reveal.visible {
        opacity: 1;
        transform: translateY(0);
    }

.reveal-delay-1 {
    transition-delay: .1s;
}

.reveal-delay-2 {
    transition-delay: .2s;
}

.reveal-delay-3 {
    transition-delay: .3s;
}

.reveal-delay-4 {
    transition-delay: .4s;
}

@keyframes gridShift {
    0% {
        background-position: 0 0, 0 0;
    }

    100% {
        background-position: 48px 48px, 48px 48px;
    }
}

@keyframes floatOrb {
    0%, 100% {
        transform: translateY(0) scale(1);
    }

    50% {
        transform: translateY(-32px) scale(1.06);
    }
}

@keyframes floatCard {
    0%, 100% {
        transform: translate(-50%,-50%) translateY(0);
    }

    50% {
        transform: translate(-50%,-50%) translateY(-16px);
    }
}

@keyframes floatBadge {
    0%, 100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-9px);
    }
}

@keyframes marquee {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

@keyframes fadeSlideUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulseAnim {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: .5;
        transform: scale(1.6);
    }
}

@keyframes barGrow {
    from {
        width: 0;
    }
}

/* ── 9. RESPONSIVE ── */

/* 1200px — large desktop, no changes needed */

/* 900px — tablet */
@media (max-width: 900px) {
    section {
        padding: 4rem 4vw;
    }

    /* Nav */
    .nav-links {
        display: none;
    }

    .nav-hamburger {
        display: flex;
    }

    /* Hero */
    .hero {
        grid-template-columns: 1fr;
        padding: 120px 4vw 60px;
        min-height: auto;
        gap: 2rem;
    }

    .hero-visual {
        height: 380px;
    }

    .hero-card-main {
        width: 280px;
    }

    /* About */
    .about-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .about-img-wrap {
        height: 340px;
    }

    /* Why */
    .why-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .why-visual {
        height: 320px;
    }

    /* Stats */
    .stats-grid {
        grid-template-columns: repeat(2,1fr);
        gap: 2rem;
    }

    /* Footer */
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }

    /* Overview */
    .overview-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    /* Contact */
    .contact-main-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .contact-strip {
        grid-template-columns: repeat(2,1fr);
    }

    .contact-strip-item:nth-child(2) {
        border-right: none;
    }

    .contact-strip-item:nth-child(3) {
        border-top: 1px solid rgba(26,28,20,.06);
    }

    .contact-strip-item:nth-child(4) {
        border-right: none;
        border-top: 1px solid rgba(26,28,20,.06);
    }

    /* Featured */
    .featured-card {
        grid-template-columns: 1fr;
    }

    .featured-img {
        height: 280px;
    }

    /* Blog */
    .blog-layout {
        grid-template-columns: 1fr;
    }

    .sidebar {
        position: static;
        flex-direction: row;
        flex-wrap: wrap;
    }

    .sidebar-widget {
        flex: 1;
        min-width: 260px;
    }

    /* FAQ */
    .faq-grid {
        grid-template-columns: 1fr;
    }

    /* IVF */
    .why-layout {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .two-col-section {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    /* Services detail */
    .service-detail-block {
        grid-template-columns: 1fr;
    }

        .service-detail-block.reverse {
            grid-template-columns: 1fr;
        }

            .service-detail-block.reverse .service-detail-visual {
                order: 0;
            }

    .service-detail-visual {
        height: 200px;
    }

    /* Form */
    .form-row-2 {
        grid-template-columns: 1fr;
    }
}

/* 600px — mobile */
@media (max-width: 600px) {
    .hero-headline {
        font-size: 2.2rem;
    }

    .hero-visual {
        height: 280px;
    }

    .hero-card-main {
        margin-top: 30px;
        width: 320px;
        padding: 1.4rem;
    }

    .badge-1, .badge-2, .badge-3 {
        display: none;
    }

    .hero-stats {
        gap: 1.5rem;
    }

    .about-img-wrap {
        height: 260px;
    }

    .about-stat-card {
        right: 0;
        top: 10px;
        padding: .8rem 1rem;
    }

    .about-stat-num {
        font-size: 1.5rem;
    }

    .stats-grid {
        grid-template-columns: 1fr 1fr;
        gap: 1.5rem;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .contact-strip {
        grid-template-columns: 1fr;
    }

    .contact-strip-item {
        border-right: none !important;
        border-top: 1px solid rgba(26,28,20,.06);
    }

        .contact-strip-item:first-child {
            border-top: none;
        }

    .contact-form-wrap {
        padding: 2rem 1.5rem;
    }

    .blog-grid {
        grid-template-columns: 1fr;
    }

    .featured-body {
        padding: 1.8rem;
    }

    .modules-grid {
        grid-template-columns: repeat(2,1fr);
    }

    .module-card {
        background: rgba(255, 255, 255, .04);
        border: 1px solid rgba(154, 181, 74, .15);
        border-radius: var(--r-lg);
        padding: 1.8rem 1.4rem;
        text-align: center;
        cursor: default;
        transition: all .3s cubic-bezier(.34, 1.5, .64, 1);
        position: relative;
        overflow: hidden;
    }

    .mic-amber {
        width: 64px !important;
        height: 64px !important;
        border-radius: 18px !important;
        margin: 0 auto 1.2rem !important;
        display: flex !important;
        align-items: center;
        justify-content: center !important;
        font-size: 1.6rem;
        transition: transform .3s;
        background: rgba(90, 117, 32, .25);
        border: 1px solid rgba(90, 117, 32, .35);
    }

    .module-card > .module-icon-wrap {
        width: 64px !important;
        height: 64px !important;
        border-radius: 18px;
        margin: 0 auto 1.2rem !important;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1.6rem;
        background: rgba(90, 117, 32, .25);
        border: 1px solid rgba(90, 117, 32, .35);
        transition: transform .3s;
    }

    .module-card:hover .module-icon-wrap {
        transform: scale(1.15) rotate(-6deg) !important;
    }

    .module-card:hover .module-title {
        color: #b8cc78 !important;
    }

    .map-overlay-badges {
        flex-direction: column;
        right: 1rem;
        bottom: 1rem;
    }

    .page-hero {
        padding: 100px 4vw 3rem;
    }
}

.svc-page-hero {
    display: flex !important;
    justify-content: center !important;
}

.prod-page-hero {
    display: flex !important;
    justify-content: center !important;
}

.svc-hero-content {
    display: flex !important;
    flex-direction: column !important;
}

.prod-hero-content {
    display: flex !important;
    flex-direction: column !important;
}

.svc-hero-tag {
    display: flex !important;
    width: fit-content;
    align-self: center;
}

.prod-hero-tag {
    display: flex !important;
    width: fit-content;
    align-self: center;
}

.svc-hero-content > h1 {
    text-align: center !important;
}

.prod-hero-content > h1 {
    text-align: center !important;
}

.prod-hero-content > p {
    text-align: center !important;
    width: 100% !important;
    max-width: 850px !important;
}

.svc-hero-content > p {
    text-align: center !important;
}

/* smooth animation (optional but recommended) */
.module-icon-wrap {
    transition: transform 0.3s ease;
}

/* when parent is hovered → apply transform to child */
.visible:hover .module-icon-wrap {
    transform: scale(1.15) rotate(-6deg) !important;
}

.visible:hover .module-title {
    #b8cc78;
}

.module-card:hover {
    background: rgba(255, 255, 255, .12) !important;
}

.modules-section > .modules-intro > .section-sub {
    text-align: center !important;
}

.bg-white {
    text-align: justify !important;
}

.cta-inner > .section-sub {
    text-align: center !important;
}

.logos-header > .section-sub {
    text-align: center !important;
}

.module-card {
    background: rgba(255,255,255,.04) !important;
    border: 1px solid rgba(154,181,74,.15) !important;
    border-radius: var(--r-lg) !important;
    padding: 1.8rem 1.4rem !important;
    text-align: center !important;
    cursor: default !important;
    transition: all .3s cubic-bezier(.34,1.5,.64,1) !important;
    position: relative !important;
    overflow: hidden !important;
}

    .module-card::before {
        content: '' !important;
        position: absolute !important;
        inset: 0 !important;
        background: radial-gradient(circle at 50% 0%, rgba(154,181,74,.1), transparent 65%) !important;
        opacity: 0 !important;
        transition: opacity .3s !important;
    }

    .module-card:hover::before {
        opacity: 1 !important;
    }

    .module-card:hover {
        background: rgba(255,255,255,.08) !important;
        border-color: rgba(154,181,74,.38) !important;
        transform: translateY(-6px) scale(1.02) !important;
        box-shadow: 0 12px 40px rgba(0,0,0,.3), 0 0 0 1px rgba(154,181,74,.25) !important;
    }

    .module-card::after {
        content: '' !important;
        position: absolute !important;
        top: 0 !important;
        left: -100% !important;
        right: 100% !important;
        height: 2px !important;
        background: linear-gradient(90deg,transparent,var(--olive),transparent) !important;
        transition: left .5s, right .5s !important;
    }

    .module-card:hover::after {
        left: 0 !important;
        right: 0 !important;
    }

.module-card-content {
    position: relative !important;
}