﻿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-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;

}
body p,
body li {
    font-size: 1.1rem ;
    color: var(--ink-light) ;
    line-height: 1.7 !;
}

/* ── 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.5rem;
}

    .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);
}
@media (max-width: 580px) {
    footer{
        padding: 0px; 
    }
}

.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;
}
@media (max-width: 580px) {
    .footer-brand-desc {
        max-width: 100%;
    }
}

.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: 100%;
}

.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,2.5rem);
    font-weight: 700;
    color: var(--lime);
}

.stat-plus {
    font-size: clamp(1.8rem,3vw,1.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: #1e2810 !important;
}

.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: .60rem;
    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;
}
    .two-col-section > div:first-child {
        display: flex;
        flex-direction: column;

    }
        .two-col-section > div:first-child > p {
            max-width: 100%;
        }

        .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;
    }
    #home{

    }
    /* Nav */
    .nav-links {
        display: none;
    }

    .nav-hamburger {
        display: flex;
    }

    /* Hero */
    .hero {
        grid-template-columns: 1fr;
        padding: 120px 4vw 60px !important;
        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;
}

.tsc-section {
    padding: 6rem 4vw 7rem;
    background: #ffffff;
    position: relative;
    overflow: hidden;
}

    .tsc-section::before {
        content: '';
        position: absolute;
        inset: 0;
        background-image: radial-gradient(circle, rgba(154,181,74,.12) 1px, transparent 1px);
        background-size: 34px 34px;
        pointer-events: none;
    }

/* Header */
.tsc-header {
    text-align: center;
    margin-bottom: 3.5rem;
    position: relative;
    z-index: 1;
}

.tsc-eyebrow {
    display: inline-block;
    font-size: .72rem;
    font-weight: 600;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--olive-deep);
    margin-bottom: .9rem;
}

.tsc-title {
    font-family: var(--font-d);
    font-size: clamp(2rem, 3.5vw, 3rem);
    font-weight: 700;
    line-height: 1.08;
    letter-spacing: -.025em;
    color: var(--ink);
    margin-bottom: .9rem;
}

.tsc-subtitle {
    font-size: .96rem;
    color: var(--ink-light);
    line-height: 1.72;
    max-width: 480px;
    margin: 0 auto;
}

/* Carousel wrapper */
.tsc-carousel-wrap {
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.tsc-track {
    display: flex;
    gap: 1.4rem;
    transition: transform 0.55s cubic-bezier(.4,0,.2,1);
    will-change: transform;
}

/* Card */
.tsc-card {
    background: #f9f8f2;
    border-radius: 22px;
    border: 1px solid rgba(154,181,74,.18);
    padding: 1.6rem 1.5rem 1.5rem;
    flex: 0 0 calc((100% - 2 * 1.4rem) / 3);
    min-width: 0;
    position: relative;
    transition: transform .35s cubic-bezier(.34,1.4,.64,1), box-shadow .35s ease, border-color .35s ease;
    cursor: default;
    box-sizing: border-box;
}

    .tsc-card:hover {
        
        box-shadow: 0 20px 56px rgba(90,117,32,.13), 0 0 0 1.5px rgba(154,181,74,.45);
        border-color: rgba(154,181,74,.45);
    }


    .tsc-card:hover::before {
        transform: scaleX(1);
    }

/* Quote bars */
.tsc-quote-icon {
    display: flex;
    gap: 5px;
    margin-bottom: .8rem;
}

.tsc-quote-bar {
    width: 4px;
    height: 22px;
    border-radius: 3px;
    background: rgba(154,181,74,.35);
    transition: background .3s;
}

    .tsc-quote-bar:first-child {
        height: 16px;
        margin-top: 4px;
    }

.tsc-card:hover .tsc-quote-bar {
    background: var(--olive);
}

/* Stars */
.tsc-stars {
    display: flex;
    gap: 3px;
    margin-bottom: .9rem;
}

.tsc-star::before {
    content: '★';
    font-size: .9rem;
    color: #9ab54a;
    line-height: 1;
}

/* Review text */
.tsc-review-text {
    font-size: .82rem;
    color: var(--ink-mid);
    line-height: 1.7;
    margin-bottom: 1.2rem;
    font-style: italic;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Divider */
.tsc-divider {
    height: 1px;
    background: linear-gradient(90deg, rgba(154,181,74,.25), transparent);
    margin-bottom: 1rem;
}

/* Author */
.tsc-author {
    display: flex;
    align-items: center;
    gap: .8rem;
}

.tsc-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
    border: 2px solid rgba(154,181,74,.25);
    background: var(--olive-lightest);
    transition: border-color .3s;
}

.tsc-card:hover .tsc-avatar {
    border-color: rgba(154,181,74,.55);
}

.tsc-avatar-initials {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-d);
    font-size: .78rem;
    font-weight: 700;
    color: var(--olive-dark);
    background: var(--olive-lightest);
    border-radius: 50%;
}

.tsc-author-name {
    font-family: var(--font-d);
    font-size: .86rem;
    font-weight: 700;
    color: var(--ink);
    margin-bottom: .15rem;
    transition: color .25s;
}

.tsc-card:hover .tsc-author-name {
    color: var(--olive-deep);
}

.tsc-author-role {
    font-size: .7rem;
    color: var(--ink-muted);
    line-height: 1.3;
}

/* Nav controls */
.tsc-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-top: 2.5rem;
    position: relative;
    z-index: 1;
}

.tsc-nav-btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--olive-lightest);
    border: 1.5px solid rgba(154,181,74,.3);
    color: var(--olive-dark);
    font-size: 1rem;
    cursor: pointer;
    transition: all .25s;
    display: flex;
    align-items: center;
    justify-content: center;
}

    .tsc-nav-btn:hover {
        background: var(--olive-deep);
        color: white;
        border-color: var(--olive-deep);
        transform: scale(1.08);
    }

    .tsc-nav-btn:disabled {
        opacity: .35;
        cursor: default;
        transform: none;
    }

/* Dots */
.tsc-dots {
    display: flex;
    align-items: center;
    gap: .5rem;
}

.tsc-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(154,181,74,.25);
    border: 1.5px solid rgba(154,181,74,.2);
    cursor: pointer;
    transition: all .35s;
    padding: 0;
}

    .tsc-dot.tsc-dot-active {
        width: 24px;
        border-radius: 4px;
        background: var(--olive-deep);
        border-color: var(--olive-deep);
    }

/* Responsive */
@media (max-width: 900px) {
    .tsc-card {
        flex: 0 0 calc((100% - 1.4rem) / 2);
    }
}

@media (max-width: 580px) {
    .tsc-card {
        flex: 0 0 100%;
    }
}
. /* ── Header ── */
.products-header {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin-bottom: 3.5rem;
}

.products-header-left {
    max-width: 560px;
}

.products-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(154,181,74,.12);
    border: 1px solid rgba(154,181,74,.28);
    color: var(--olive-dark);
    padding: .35rem 1rem;
    border-radius: 40px;
    font-size: .72rem;
    font-weight: 600;
    letter-spacing: .08em;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.eyebrow-dot {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--olive);
    animation: dotPulse 2s ease infinite;
}

@keyframes dotPulse {
    0%,100% {
        opacity: 1;
        transform: scale(1)
    }

    50% {
        opacity: .4;
        transform: scale(1.6)
    }
}

.products-title {
    font-family: 'Clash Display', sans-serif;
    font-size: clamp(2rem, 3.2vw, 3rem);
    font-weight: 700;
    line-height: 1.08;
    letter-spacing: -.03em;
    color: var(--ink);
    margin-bottom: .8rem;
}

    .products-title span {
        color: var(--olive-deep);
        position: relative;
        display: inline-block;
    }

        .products-title span::after {
            content: '';
            position: absolute;
            left: 0;
            bottom: -2px;
            right: 0;
            height: 3px;
            background: linear-gradient(90deg, var(--olive-deep), var(--lime), transparent);
            border-radius: 2px;
        }

.products-subtitle {
    font-size: .96rem;
    color: var(--ink-light);
    line-height: 1.72;
}

.products-header-right {
    flex-shrink: 0;
}

.view-all-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--ink);
    color: white;
    padding: .78rem 1.7rem;
    border-radius: 40px;
    font-family: var(--font-b);
    font-size: .85rem;
    font-weight: 600;
    transition: all .25s;
    white-space: nowrap;
}

    .view-all-btn:hover {
        background: var(--olive-dark);
        transform: translateY(-2px);
        box-shadow: 0 10px 28px rgba(90,117,32,.32);
    }

    .view-all-btn .arrow {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 22px;
        height: 22px;
        border-radius: 50%;
        background: rgba(255,255,255,.15);
        font-size: .7rem;
        transition: transform .25s;
    }

    .view-all-btn:hover .arrow {
        transform: translateX(4px);
    }

/* ── Products Header — Responsive ── */
.products-header {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin-bottom: 3.5rem;
}

/* Tablet (≤1024px) */
@media (max-width: 1024px) {
    .products-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
        margin-bottom: 2.5rem;
    }
}

/* Mobile (≤767px) */
@media (max-width: 767px) {
    .products-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.75rem;
        margin-bottom: 2rem;
    }

    /* Make "View All" button full width on mobile */
    .products-header-right {
        width: 100%;
    }

    .view-all-btn {
        width: 100%;
        justify-content: center;
    }
}
.products-header.visible {
    opacity: 1;
    transform: translateY(0);
}
.products-header {
    
    transition: opacity .7s ease, transform .7s ease;
}

/* ═══════════════════════════════════════════
   HB4 — HERO BANNER
   All classes prefixed hb4- to avoid conflicts
═══════════════════════════════════════════ */

.hb4-section {
    position: relative;
    min-height: 90vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

/* ── Video Background ── */
.hb4-video-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

    .hb4-video-bg video {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center;
        display: block;
    }

/* ── Dark overlay ── */
.hb4-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient( 110deg, rgba(0, 5, 0, 0.97) 0%, rgba(0, 12, 5, 0.75) 30%, rgba(0, 20, 10, 0.66) 58%, rgba(0, 30, 15, 0.0) 100% );
}

/* ── Pulsing rings ── */
.hb4-pulse-ring {
    position: absolute;
    z-index: 2;
    pointer-events: none;
    right: 8%;
    top: 50%;
    transform: translateY(-50%);
    width: 400px;
    height: 400px;
}

    .hb4-pulse-ring span {
        position: absolute;
        inset: 0;
        border-radius: 50%;
        border: 1px solid rgba(189, 232, 74, 0.45);
        animation: hb4-ring-expand 3s ease-out infinite;
    }

        .hb4-pulse-ring span:nth-child(2) {
            animation-delay: 1s;
        }

        .hb4-pulse-ring span:nth-child(3) {
            animation-delay: 2s;
        }

.hb4-pulse-ring-core {
    position: absolute;
    inset: 30%;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(0,255,100,0.15) 0%, transparent 70%);
    animation: hb4-core-pulse 3s ease-in-out infinite;
}

@keyframes hb4-ring-expand {
    0% {
        transform: scale(0.5);
        opacity: 0.9;
    }

    100% {
        transform: scale(1.6);
        opacity: 0;
    }
}

@keyframes hb4-core-pulse {
    0%,100% {
        opacity: 0.4;
        transform: scale(0.95);
    }

    50% {
        opacity: 1;
        transform: scale(1.05);
    }
}

/* ── Floating data dots ── */
.hb4-dot {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    z-index: 2;
    background: rgba(58, 114, 0, 0.56);
    box-shadow: 0 0 6px rgba(139, 167, 30, 0.68);
    animation: hb4-float-dot linear infinite;
}

@keyframes hb4-float-dot {
    0% {
        transform: translateY(0) translateX(0);
        opacity: 0;
    }

    10% {
        opacity: 1;
    }

    90% {
        opacity: 0.8;
    }

    100% {
        transform: translateY(-80vh) translateX(40px);
        opacity: 0;
    }
}

/* ── EKG heartbeat line ── */
.hb4-ekg {
    position: absolute;
    bottom: 40px;
    left: 0;
    right: 0;
    height: 60px;
    z-index: 3;
    pointer-events: none;
    overflow: hidden;
}

    .hb4-ekg svg {
        width: 100%;
        height: 100%;
        stroke: #ffffff;
        stroke-width: 1.5;
        fill: none;
        opacity: 0.3;
    }

.hb4-ekg-path {
    stroke-dasharray: 2000;
    stroke-dashoffset: 2000;
    animation: hb4-draw-ekg 3s ease-out forwards, hb4-ekg-loop 3s 3s linear infinite;
}

@keyframes hb4-draw-ekg {
    to {
        stroke-dashoffset: 0;
    }
}

@keyframes hb4-ekg-loop {
    from {
        stroke-dashoffset: 0;
    }

    to {
        stroke-dashoffset: -2000;
    }
}

/* ── Content ── */
.hb4-content {
    position: relative;
    z-index: 4;
    max-width: 680px;
}

    /* fade-up entry */
    .hb4-content > * {
        animation: hb4-fade-up 0.72s cubic-bezier(0.22,1,0.36,1) both;
    }

@keyframes hb4-fade-up {
    from {
        opacity: 0;
        transform: translateY(28px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ── Tag pill ── */
.hb4-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 6px 14px;
    border-radius: 999px;
    margin-bottom: 1.4rem;
    margin-top: 50px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    background: rgba(0, 255, 120, 0.1);
    border: 1px solid #bde84a;
    color: #bde84a;
    animation-delay: 0.08s;
}

.hb4-tag-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #00ff78;
    box-shadow: 0 0 10px #00ff78;
    flex-shrink: 0;
    animation: hb4-pulse-dot 2.2s ease-in-out infinite;
}

@keyframes hb4-pulse-dot {
    0%,100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: 0.4;
        transform: scale(0.6);
    }
}

/* ── Headline ── */
.hb4-headline {
    font-size: clamp(2.4rem, 5vw, 4rem);
    font-weight: 600;
    line-height: 1.06;
    letter-spacing: -0.025em;
    margin: 0 0 1.2rem;
    color: #e8fff4;
    animation-delay: 0.20s;
}

    .hb4-headline em {
        font-style: normal;
        background: linear-gradient(130deg, #bde84a 0%, #7a9a32 50%, #6b7250 100%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
        filter: drop-shadow(0 0 16px rgba(0,255,100,0.4));
    }

.hb4-headline-scale {
    font-family: 'Playfair Display', serif;
    color: #cce95c;
}

/* ── Subtext ── */
.hb4-sub {
    font-size: 1.05rem;
    line-height: 1.72;
    max-width: 500px;
    margin: 0 0 2.2rem;
    color: white;
    animation-delay: 0.32s;
}

/* ── Buttons ── */
.hb4-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    align-items: center;
    margin-bottom: 2.2rem;
    animation-delay: 0.42s;
}

.hb4-btn-primary,
.hb4-btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    padding: 13px 26px;
    border-radius: 35px;
    text-decoration: none;
    letter-spacing: 0.01em;
    transition: transform 0.18s, box-shadow 0.18s, background 0.2s;
}

.hb4-btn-primary {
    background: linear-gradient(135deg, rgba(0,0,0,0.82), rgba(20,20,20,0.78));
    color: #fffefe;
    font-weight: 800;
    box-shadow: 0 4px 28px rgba(189,232,74,0.05);
}

    .hb4-btn-primary:hover {
        background: #7a9a32;
        box-shadow: 0 10px 20px rgba(255,255,255,0.12);
        transform: translateY(-2px);
    }

.hb4-btn-secondary {
    background: #7a9a32;
    color: #ffffff;
    backdrop-filter: blur(12px);
    font-weight: 200;
}

    .hb4-btn-secondary:hover {
        background: transparent;
        border: 1px solid #7a9a32;
        color: #89b424;
        transform: translateY(-2px);
    }

/* ── Trust strip ── */
.hb4-trust {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 18px;
    padding-top: 1.8rem;
    border-top: 1px solid rgba(253,253,253,0.15);
    animation-delay: 0.52s;
}

.hb4-trust-item {
    display: flex;
    align-items: center;
    gap: 7px;
    font-size: 0.8rem;
    font-weight: 500;
    color: #ffffff;
}

.hb4-trust-icon {
    width: 18px;
    height: 18px;
    fill: #3a7200;
    flex-shrink: 0;
}

/* ═══════════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════════ */

/* Tablet (≤1024px) */
@media (max-width: 1024px) {
    .hb4-section {
        min-height: 80vh;
    }

    .hb4-content {
        max-width: 100%;
        padding: 30px 5vw 4rem;
    }

    .hb4-headline {
        font-size: clamp(2rem, 5vw, 3.2rem);
    }

    .hb4-pulse-ring {
        width: 280px;
        height: 280px;
        right: 2%;
    }
}

/* Mobile (≤767px) */
@media (max-width: 767px) {
    .hb4-section {
        min-height: 85vh;
        align-items: flex-end;
    }

    .hb4-content {
        padding: 0 5vw 4rem;
    }

    .hb4-headline {
        font-size: 2rem;
    }

    .hb4-sub {
        font-size: 0.95rem;
    }

    .hb4-actions {
        flex-direction: column;
        align-items: flex-start;
    }

    .hb4-btn-primary,
    .hb4-btn-secondary {
        width: 100%;
        justify-content: center;
    }

    .hb4-trust {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    .hb4-pulse-ring {
        display: none;
    }

    .hb4-ekg {
        display: none;
    }

    .hb4-tag {
        margin-top: 30px;
    }
}

/* Small mobile (≤480px) */
@media (max-width: 480px) {
    .hb4-section {
        min-height: 100vh;
    }

    .hb4-headline {
        font-size: 1.75rem;
    }

    .hb4-sub {
        font-size: 0.88rem;
    }

    .hb4-content {
        padding: 0 5vw 3rem;
    }
}
/* ============================================================
   BLOG ARTICLE PAGE STYLES
   Add these to your main Site.css (or a separate Blog.css)
   ============================================================ */

/* Meta bar above article */
.article-meta-bar {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.25rem;
    background: #fff;
    border: 1px solid rgba(0,0,0,.07);
    border-radius: 12px;
    margin-bottom: 1.75rem;
    flex-wrap: wrap;
}

/* Article body typography */
.article-content {
    line-height: 1.8;
    color: var(--ink);
    font-size: 1rem;
}

    .article-content .article-lead {
        font-size: 1.1rem;
        font-weight: 500;
        color: var(--ink);
        border-left: 4px solid var(--olive);
        padding-left: 1.25rem;
        margin-bottom: 2rem;
        line-height: 1.7;
    }

    .article-content h2 {
        font-family: var(--font-display);
        font-size: 1.3rem;
        font-weight: 700;
        color: var(--ink);
        margin: 2.25rem 0 0.75rem;
        padding-bottom: 0.4rem;
        border-bottom: 2px solid rgba(154,181,74,.25);
    }

    .article-content h3 {
        font-family: var(--font-display);
        font-size: 1.05rem;
        font-weight: 700;
        color: var(--ink);
        margin: 1.5rem 0 0.5rem;
    }

    .article-content p {
        margin-bottom: 1.25rem;
    }

    .article-content ul,
    .article-content ol {
        margin: 0 0 1.25rem 1.5rem;
        line-height: 1.8;
    }

    .article-content li {
        margin-bottom: 0.4rem;
    }

    .article-content a {
        color: var(--olive);
        text-decoration: underline;
        text-decoration-color: rgba(154,181,74,.4);
    }

        .article-content a:hover {
            text-decoration-color: var(--olive);
        }

/* Responsive */
@media (max-width: 640px) {
    .article-meta-bar {
        gap: .75rem;
    }

    .article-content {
        font-size: .95rem;
    }
}

@media (max-width: 768px) {
    .page-hero-tag {
        font-size: 12px !important;
    }
}
.logos-section{
    display: none !important
}

.why-item-title {
    text-align: justify;
}

.service-card-desc {
    text-align: justify;
}

.prob-card-text {
    text-align: center;
}

.why-item-desc {
    text-align: justify;
}

.section-sub {
    text-align: center;
}

/* Tablet */
@media (max-width: 1024px) {
    #services-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        padding: 6rem 4vw 6rem !important;
    }

    #services {
        padding: 6rem 4vw 6rem !important;
    }
}

@media (max-width: 1024px) {
    #services-grid {
        padding: 6rem 4vw 6rem !important;
    }
}

@media (max-width: 768px) {
    #services-grid {
        padding: 0 !important;
    }

    .aic-eyebrow {
        width: 70% !important;
    }
}

/* Mobile */
@media (max-width: 767px) {
    #services-grid {
        grid-template-columns: repeat(1, 1fr) !important;
    }

    #services {
        padding: 6rem 4vw 6rem !important;
    }
}

#particle-canvas {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
}
.stat-label {
    color: #6b7250 !important;
}

.stat-num > .counter {
    color: #5d7901 !important;
}

.hero-dr-img {
    position: absolute;
    bottom: 0;
    right: 0;
    height: 90%;
    width: auto;
    object-fit: contain;
    object-position: bottom;
    z-index: 1;
    filter: drop-shadow(0 8px 32px rgba(26,28,20,.10));
    pointer-events: none;
    /* Animation */
    animation: drSlideIn 1s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.3s both;
}

@keyframes drSlideIn {
    from {
        transform: translateX(120px);
        opacity: 0;
    }

    to {
        transform: translateX(0);
        opacity: 1;
    }
}

.hero-dr-img {
    position: absolute;
    bottom: 0;
    left: 40%;
    transform: translateX(-50%);
    height: 85%;
    width: auto;
    object-fit: contain;
    object-position: bottom;
    z-index: 2;
    filter: drop-shadow(0 8px 32px rgba(26,28,20,.12));
    pointer-events: none;
}

@media (max-width: 768px) {
    .hero-dr-img {
        height: 60%;
    }
}

@media (max-width: 955px) {
    .hero-dr-img {
        display: none;
    }
}

@media (min-width: 955px) {
    .hero-card-main {
        top: 25% !important;
        left: 25% !important;
    }

    .hero {
        padding: 120px 4vw 0px !important;
    }

    .hero-visual {
        height: 100%;
    }

    .badge-3 {
        top: -10px;
        left: -120px;
    }

    .badge-2 {
        bottom: 40%;
    }

    .badge-1 {
        right: 30% !important;
    }
}


.trust-pill img {
    width: 120px;
    height: 60px;
    object-fit: contain; /* scales image to fit without cropping */
    display: block;
}

.testi-author {
    justify-content: center !important;
}
/* Reused button classes */
.btn-olive {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, var(--olive-deep), var(--olive));
    color: white;
    padding: .72rem 1.6rem;
    border-radius: 40px;
    font-family: var(--font-b);
    font-size: .82rem;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: all .25s;
}

    .btn-olive:hover {
        transform: translateY(-2px);
        box-shadow: 0 10px 28px rgba(90,117,32,.32);
    }

.btn-outline-olive {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: transparent;
    color: var(--olive-dark);
    padding: .72rem 1.6rem;
    border-radius: 40px;
    border: 1.5px solid var(--olive-mid);
    font-family: var(--font-b);
    font-size: .82rem;
    font-weight: 500;
    cursor: pointer;
    transition: all .25s;
}

    .btn-outline-olive:hover {
        background: var(--olive-lightest);
        border-color: var(--olive-deep);
        transform: translateY(-2px);
    }

/* Reused section tag */
.section-tag {
    display: inline-block;
    font-size: .72rem;
    font-weight: 600;
    color: var(--olive-dark);
    letter-spacing: .1em;
    text-transform: uppercase;
    margin-bottom: .8rem;
}

/* Reused headline */
.section-headline {
    font-family: var(--font-d);
    font-size: clamp(1.8rem, 3vw, 2.7rem);
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -.025em;
    color: var(--ink);
    margin-bottom: 1rem;
}

/* Reused scroll reveal */
.reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity .75s ease, transform .75s 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;
}


.solution-section {
    padding: 6rem 4vw 7rem;
    background: var(--cream);
    position: relative;
    overflow: hidden;
}

    /* Subtle grid pattern */
    .solution-section::before {
        content: '';
        position: absolute;
        inset: 0;
        background-image: linear-gradient(rgba(154,181,74,.04) 1px, transparent 1px), linear-gradient(90deg, rgba(154,181,74,.04) 1px, transparent 1px);
        background-size: 56px 56px;
        pointer-events: none;
    }
    /* Ambient orb */
    .solution-section::after {
        content: '';
        position: absolute;
        width: 600px;
        height: 600px;
        border-radius: 50%;
        background: radial-gradient(circle, rgba(198,241,53,.07), transparent 70%);
        bottom: -200px;
        right: -180px;
        pointer-events: none;
    }

/* Header */
.sol-header {
    position: relative;
    z-index: 1;
    text-align: center;
    margin-bottom: 4rem;
}

.sol-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(154,181,74,.1);
    border: 1px solid rgba(154,181,74,.25);
    color: var(--olive-dark);
    padding: .35rem 1rem;
    border-radius: 40px;
    font-size: .72rem;
    font-weight: 600;
    letter-spacing: .09em;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.sol-eyebrow-dot {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--olive);
    animation: dotPulse 2s ease infinite;
}

.sol-title {
    font-family: var(--font-d);
    font-size: clamp(2rem, 3.5vw, 3.2rem);
    font-weight: 700;
    line-height: 1.08;
    letter-spacing: -.03em;
    color: var(--ink);
    margin-bottom: .8rem;
}

    .sol-title em {
        font-style: normal;
        color: var(--olive-deep);
        position: relative;
    }

        .sol-title em::after {
            content: '';
            position: absolute;
            left: 0;
            bottom: -3px;
            right: 0;
            height: 3px;
            background: linear-gradient(90deg, var(--olive-deep), var(--lime), transparent);
            border-radius: 2px;
        }

.sol-subtitle {
    font-size: .96rem;
    color: var(--ink-light);
    line-height: 1.72;
    max-width: 580px;
    margin: 0 auto;
}

/* ── Solution Grid ── */
.sol-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

/* ── Solution Card ── */
.sol-card {
    background: white;
    border-radius: var(--r-lg);
    border: 1px solid rgba(26,28,20,.07);
    overflow: hidden;
    transition: all .38s cubic-bezier(.34,1.3,.64,1);
    position: relative;
    display: flex;
    flex-direction: column;
}

    .sol-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 3px;
        background: var(--sol-accent, linear-gradient(90deg,var(--olive),var(--lime)));
        transform: scaleX(0);
        transform-origin: left;
        transition: transform .4s cubic-bezier(.34,1.2,.64,1);
        z-index: 1;
    }

    .sol-card:hover::before {
        transform: scaleX(1);
    }

    .sol-card:hover {
        transform: translateY(-9px) scale(1.01);
        border-color: transparent;
        box-shadow: 0 20px 60px rgba(26,28,20,.12), 0 0 0 1px rgba(154,181,74,.18);
    }

/* Per-card accent colors */
.sol-card--voicemd {
    --sol-accent: linear-gradient(90deg, var(--olive-deep), var(--lime));
}

.sol-card--claimiq {
    --sol-accent: linear-gradient(90deg, var(--electric), #5cf5c0);
}

.sol-card--langdoc {
    --sol-accent: linear-gradient(90deg, var(--olive), var(--olive-mid));
}

.sol-card--radibot {
    --sol-accent: linear-gradient(90deg, var(--sky), #8ae6ff);
}

.sol-card--lipiai {
    --sol-accent: linear-gradient(90deg, var(--amber), #f5d060);
}

.sol-card--sahayogi {
    --sol-accent: linear-gradient(90deg, var(--coral), #ff9e8a);
}

/* ── Card Visual Area ── */
.sol-card-visual {
    height: 200px;
    position: relative;
    overflow: hidden;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.4rem;
}

/* Visual bg per card */
.sol-card--voicemd .sol-card-visual {
    background: linear-gradient(150deg, #eef5dc, #d5e9a0);
}

.sol-card--claimiq .sol-card-visual {
    background: linear-gradient(150deg, #e0faf1, #aaf0d5);
}

.sol-card--langdoc .sol-card-visual {
    background: linear-gradient(150deg, #f0f4e5, #dce9b0);
}

.sol-card--radibot .sol-card-visual {
    background: linear-gradient(150deg, #e0f3fd, #a8dff5);
}

.sol-card--lipiai .sol-card-visual {
    background: linear-gradient(150deg, #fdf3e2, #f8dca8);
}

.sol-card--sahayogi .sol-card-visual {
    background: linear-gradient(150deg, #fde8e8, #ffbcbc);
}

/* Grid pattern in visual */
.sol-card-visual::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: linear-gradient(rgba(26,28,20,.04) 1px, transparent 1px), linear-gradient(90deg, rgba(26,28,20,.04) 1px, transparent 1px);
    background-size: 24px 24px;
}

/* ─── UI MOCK: Voice MD — Waveform ─── */
.mock-voicemd {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 280px;
    background: white;
    border-radius: 14px;
    padding: 1.1rem 1.3rem;
    box-shadow: 0 8px 32px rgba(26,28,20,.12);
    border: 1px solid rgba(26,28,20,.06);
}

.mock-voicemd-header {
    display: flex;
    align-items: center;
    gap: .6rem;
    margin-bottom: 1rem;
}

.mock-voicemd-rec {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--coral);
    animation: recPulse 1.2s ease infinite;
}

@keyframes recPulse {
    0%,100% {
        opacity: 1;
        box-shadow: 0 0 0 0 rgba(255,107,107,.4)
    }

    50% {
        opacity: .7;
        box-shadow: 0 0 0 5px rgba(255,107,107,0)
    }
}

.mock-voicemd-label {
    font-family: var(--font-d);
    font-size: .65rem;
    font-weight: 600;
    color: var(--ink-light);
    letter-spacing: .06em;
    text-transform: uppercase;
}

.mock-waveform {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 3px;
    height: 40px;
    margin-bottom: .9rem;
}

.mock-wave-bar {
    width: 3px;
    border-radius: 2px;
    background: linear-gradient(to top, var(--olive-deep), var(--lime));
    animation: waveDance var(--dur, .8s) ease-in-out var(--del, 0s) infinite alternate;
}

@keyframes waveDance {
    from {
        height: 4px;
        opacity: .4
    }

    to {
        height: var(--h,24px);
        opacity: 1
    }
}

.mock-emr-preview {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.mock-emr-line {
    height: 7px;
    border-radius: 3px;
    background: var(--olive-lightest);
    border: 1px solid rgba(154,181,74,.2);
}

.mock-emr-line-short {
    width: 60%;
}

/* ─── UI MOCK: Claim IQ — Dashboard ─── */
.mock-claimiq {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 280px;
    background: white;
    border-radius: 14px;
    padding: 1rem 1.2rem;
    box-shadow: 0 8px 32px rgba(26,28,20,.12);
    border: 1px solid rgba(26,28,20,.06);
}

.mock-claimiq-row {
    display: flex;
    gap: .5rem;
    margin-bottom: .65rem;
}

.mock-claim-stat {
    flex: 1;
    background: var(--olive-lightest);
    border-radius: 8px;
    padding: .5rem .4rem;
    text-align: center;
    border: 1px solid rgba(154,181,74,.15);
}

.mock-claim-stat-n {
    font-family: var(--font-d);
    font-size: .85rem;
    font-weight: 700;
    color: var(--olive-dark);
    line-height: 1;
}

.mock-claim-stat-l {
    font-size: .48rem;
    color: var(--ink-muted);
    margin-top: 2px;
    font-family: var(--font-d);
    text-transform: uppercase;
    letter-spacing: .04em;
}

.mock-claim-bar-row {
    margin-bottom: .45rem;
}

.mock-claim-bar-lbl {
    display: flex;
    justify-content: space-between;
    font-size: .52rem;
    color: var(--ink-muted);
    margin-bottom: 2px;
}

.mock-claim-bar {
    height: 5px;
    background: rgba(154,181,74,.15);
    border-radius: 3px;
    overflow: hidden;
}

.mock-claim-bar-fill {
    height: 100%;
    border-radius: 3px;
    background: linear-gradient(90deg, var(--electric), var(--lime));
    animation: barGrow 2s ease-out forwards;
}

@keyframes barGrow {
    from {
        width: 0
    }
}

.mock-claim-status {
    display: flex;
    align-items: center;
    gap: .4rem;
    margin-top: .5rem;
}

.mock-claim-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--electric);
}

.mock-claim-status-txt {
    font-size: .52rem;
    color: var(--ink-muted);
}

/* ─── UI MOCK: Langdoc — JSON / Structured ─── */
.mock-langdoc {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 280px;
    background: #1c2016;
    border-radius: 14px;
    padding: 1rem 1.2rem;
    box-shadow: 0 8px 32px rgba(26,28,20,.2);
    border: 1px solid rgba(154,181,74,.2);
    font-family: 'Courier New', monospace;
}

.mock-langdoc-topbar {
    display: flex;
    align-items: center;
    gap: 5px;
    margin-bottom: .8rem;
}

.mock-langdoc-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
}

.mock-langdoc-fname {
    font-size: .52rem;
    color: rgba(255,255,255,.25);
    margin-left: 6px;
    letter-spacing: .05em;
}

.mock-json-line {
    font-size: .56rem;
    line-height: 1.8;
}

.json-key {
    color: var(--lime);
}

.json-val {
    color: var(--electric);
}

.json-str {
    color: #f0a8c8;
}

.json-num {
    color: var(--amber);
}

.json-brace {
    color: rgba(255,255,255,.4);
}

.mock-cursor {
    display: inline-block;
    width: 2px;
    height: 10px;
    background: var(--lime);
    vertical-align: middle;
    margin-left: 1px;
    animation: blink .9s step-end infinite;
}

@keyframes blink {
    0%,100% {
        opacity: 1
    }

    50% {
        opacity: 0
    }
}

/* ─── UI MOCK: Radibot — Scan + Voice ─── */
.mock-radibot {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 280px;
    background: white;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(26,28,20,.12);
    border: 1px solid rgba(26,28,20,.06);
}

.mock-radibot-scan {
    height: 80px;
    background: linear-gradient(145deg, #0d1a2e, #162640);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}
/* Scan line sweep */
.mock-scan-line {
    position: absolute;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, transparent, rgba(91,200,245,.7), transparent);
    animation: scanSweep 2.4s ease-in-out infinite;
}

@keyframes scanSweep {
    0%,100% {
        left: 10%;
        opacity: 0;
    }

    15% {
        opacity: 1;
    }

    85% {
        opacity: 1;
    }

    to {
        left: 90%;
    }
}

.mock-scan-grid {
    position: absolute;
    inset: 0;
    background-image: linear-gradient(rgba(91,200,245,.08) 1px, transparent 1px), linear-gradient(90deg, rgba(91,200,245,.08) 1px, transparent 1px);
    background-size: 18px 18px;
}

.mock-scan-label {
    font-family: var(--font-d);
    font-size: .5rem;
    color: var(--sky);
    letter-spacing: .12em;
    text-transform: uppercase;
    position: relative;
    z-index: 1;
}

.mock-radibot-body {
    padding: .8rem 1rem;
}

.mock-rad-mic-row {
    display: flex;
    align-items: center;
    gap: .6rem;
    margin-bottom: .6rem;
}

.mock-rad-mic {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--sky), #3e9fcf);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.mock-rad-mic-icon {
    width: 8px;
    height: 10px;
    background: white;
    border-radius: 4px;
    position: relative;
}

.mock-rad-mini-wave {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 2px;
    height: 18px;
}

.mock-rad-wave-b {
    width: 2px;
    border-radius: 1px;
    background: linear-gradient(to top, var(--sky), #8ae6ff);
    animation: waveDance var(--dur,.7s) ease-in-out var(--del,0s) infinite alternate;
}

.mock-rad-lines {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.mock-rad-line {
    height: 6px;
    border-radius: 3px;
    background: #f0f5e8;
}

/* ─── UI MOCK: Lipi AI — Handwriting to Digital ─── */
.mock-lipiai {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 280px;
    background: white;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(26,28,20,.12);
    border: 1px solid rgba(26,28,20,.06);
}

.mock-lipi-top {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    padding: .9rem 1rem;
    gap: .5rem;
    border-bottom: 1px solid rgba(26,28,20,.06);
}

.mock-lipi-paper {
    background: #fffbf0;
    border-radius: 8px;
    padding: .6rem .7rem;
    border: 1px solid rgba(245,166,35,.2);
}

.mock-handwrite-line {
    height: 5px;
    border-radius: 2px;
    margin-bottom: 4px;
    background: repeating-linear-gradient(90deg, var(--ink-light) 0, var(--ink-light) 3px, transparent 3px, transparent 6px);
    opacity: .35;
}

    .mock-handwrite-line:last-child {
        margin-bottom: 0;
        width: 70%;
    }

.mock-lipi-arrow {
    width: 28px;
    height: 28px;
    background: var(--olive-lightest);
    border-radius: 50%;
    border: 1px solid rgba(154,181,74,.3);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .7rem;
    color: var(--olive-deep);
}

.mock-lipi-digital {
    background: var(--olive-lightest);
    border-radius: 8px;
    padding: .6rem .7rem;
    border: 1px solid rgba(154,181,74,.2);
}

.mock-digital-line {
    height: 5px;
    border-radius: 3px;
    background: var(--olive-light);
    margin-bottom: 4px;
}

    .mock-digital-line:last-child {
        margin-bottom: 0;
        width: 65%;
    }

.mock-lipi-fields {
    padding: .8rem 1rem;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.mock-lipi-field {
    display: flex;
    align-items: center;
    gap: .5rem;
    background: var(--olive-lightest);
    border-radius: 6px;
    padding: .4rem .6rem;
    border: 1px solid rgba(154,181,74,.15);
}

.mock-lipi-field-key {
    font-family: var(--font-d);
    font-size: .52rem;
    font-weight: 600;
    color: var(--olive-dark);
    text-transform: uppercase;
    letter-spacing: .05em;
    width: 55px;
    flex-shrink: 0;
}

.mock-lipi-field-val {
    height: 5px;
    flex: 1;
    border-radius: 3px;
    background: var(--olive-mid);
    opacity: .5;
}

/* ─── UI MOCK: Sahayogi — Chatbot UI ─── */
.mock-sahayogi {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 260px;
    background: white;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(26,28,20,.12);
    border: 1px solid rgba(26,28,20,.06);
}

.mock-chat-header {
    background: linear-gradient(135deg, var(--ink), #2a3020);
    padding: .7rem 1rem;
    display: flex;
    align-items: center;
    gap: .6rem;
}

.mock-chat-avatar {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--olive-deep), var(--lime));
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.mock-chat-avatar-inner {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: white;
    opacity: .9;
}

.mock-chat-hname {
    font-family: var(--font-d);
    font-size: .65rem;
    font-weight: 600;
    color: white;
    letter-spacing: .04em;
}

.mock-chat-status {
    font-size: .52rem;
    color: var(--electric);
    margin-top: 1px;
}

.mock-chat-msgs {
    padding: .8rem;
    display: flex;
    flex-direction: column;
    gap: .5rem;
}

.mock-msg {
    max-width: 85%;
    padding: .45rem .65rem;
    border-radius: 10px;
    font-size: .18rem;
    line-height: 1.5;
}

.mock-msg-ai {
    background: var(--olive-lightest);
    color: var(--ink-mid);
    border-radius: 2px 10px 10px 10px;
    align-self: flex-start;
    border: 1px solid rgba(154,181,74,.2);
}

.mock-msg-user {
    background: linear-gradient(135deg, var(--olive-deep), var(--olive));
    color: white;
    border-radius: 10px 2px 10px 10px;
    align-self: flex-end;
}

.mock-msg-typing {
    background: var(--olive-lightest);
    padding: .4rem .65rem;
    border-radius: 2px 10px 10px 10px;
    align-self: flex-start;
    border: 1px solid rgba(154,181,74,.2);
    display: flex;
    gap: 3px;
    align-items: center;
}

.mock-typing-dot {
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: var(--ink-muted);
    animation: typingBounce .9s ease infinite;
}

    .mock-typing-dot:nth-child(2) {
        animation-delay: .15s;
    }

    .mock-typing-dot:nth-child(3) {
        animation-delay: .3s;
    }

@keyframes typingBounce {
    0%,100% {
        transform: translateY(0);
        opacity: .4
    }

    50% {
        transform: translateY(-4px);
        opacity: 1
    }
}

.mock-chat-input {
    display: flex;
    gap: .4rem;
    padding: .5rem .8rem;
    border-top: 1px solid rgba(26,28,20,.06);
}

.mock-chat-input-bar {
    flex: 1;
    height: 22px;
    background: var(--cream);
    border-radius: 11px;
    border: 1px solid rgba(26,28,20,.08);
}

.mock-chat-send {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--olive-deep), var(--olive));
}

/* ── Card Body ── */
.sol-card-body {
    padding: 1.5rem 1.7rem 1.8rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.sol-product-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: .68rem;
    font-weight: 600;
    letter-spacing: .07em;
    text-transform: uppercase;
    color: var(--ink-muted);
    margin-bottom: .65rem;
}

    .sol-product-tag::before {
        content: '';
        display: inline-block;
        width: 14px;
        height: 2px;
        border-radius: 1px;
        background: var(--tag-color, var(--olive-mid));
    }

.sol-card--voicemd .sol-product-tag {
    --tag-color: var(--olive);
}

.sol-card--claimiq .sol-product-tag {
    --tag-color: var(--electric);
}

.sol-card--langdoc .sol-product-tag {
    --tag-color: var(--olive-mid);
}

.sol-card--radibot .sol-product-tag {
    --tag-color: var(--sky);
}

.sol-card--lipiai .sol-product-tag {
    --tag-color: var(--amber);
}

.sol-card--sahayogi .sol-product-tag {
    --tag-color: var(--coral);
}

.sol-card-name {
    font-family: var(--font-d);
    font-size: 1.18rem;
    font-weight: 700;
    color: var(--ink);
    margin-bottom: .5rem;
    transition: color .25s;
}

.sol-card:hover .sol-card-name {
    color: var(--olive-deep);
}

.sol-card-desc {
    font-size: .82rem;
    color: var(--ink-light);
    line-height: 1.68;
    flex: 1;
    margin-bottom: 1.3rem;
}

/* ── Scroll reveal for cards ── */
.sol-card {
    opacity: 0;
    transform: translateY(30px);
}

    .sol-card.visible {
        animation: cardReveal .65s ease forwards;
    }

    .sol-card:nth-child(1).visible {
        animation-delay: .05s;
    }

    .sol-card:nth-child(2).visible {
        animation-delay: .12s;
    }

    .sol-card:nth-child(3).visible {
        animation-delay: .19s;
    }

    .sol-card:nth-child(4).visible {
        animation-delay: .26s;
    }

    .sol-card:nth-child(5).visible {
        animation-delay: .33s;
    }

    .sol-card:nth-child(6).visible {
        animation-delay: .40s;
    }

@keyframes cardReveal {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Headers reveal */
.prob-header, .sol-header {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity .7s ease, transform .7s ease;
}

    .prob-header.visible, .sol-header.visible {
        opacity: 1;
        transform: translateY(0);
    }

/* ── Responsive ── */
@media (max-width: 1024px) {
    .sol-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .sol-grid {
        grid-template-columns: 1fr;
    }

    .prob-card {
        padding: 2rem 1.5rem;
    }

    .prob-stat {
        font-size: 2.2rem;
    }

    .mock-lipi-top {
        grid-template-columns: 1fr auto 1fr;
    }
}