﻿/* ═══════════════════════════════════════════════════
   RIGVEX PHARMA — MULTI-SPECIALTY PREMIUM DESIGN
   ═══════════════════════════════════════════════════ */

:root {
    --cream: #F7F3EE;
    --cream-dk: #EDE7DF;
    --navy: #08192E;
    --navy-mid: #0F2D52;
    --teal: #1BAB9C;
    --teal-lt: #5fd0c2;
    --gold: #C9A86C;
    --white: #FFFFFF;
    --ink: #1A1A2E;
    --muted: #64748B;
    --line: #DDD7CF;
    /* specialty colors */
    --sp-neurology: #5B6EF5;
    --sp-women: #D4638A;
    --sp-bone: #4E8B6E;
    --sp-gut: #2E9E62;
    --sp-skin: #C07B40;
    --sp-wellness: #1BAB9C;
    --sp-hematology: #D44040;
}

*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Plus Jakarta Sans', sans-serif;
    background: var(--cream);
    color: var(--ink);
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3 {
    font-family: 'Playfair Display', serif;
}

a {
    text-decoration: none;
    color: inherit;
}

img {
    display: block;
    max-width: 100%;
}

/* ── Reveal animation ── */
.reveal {
    opacity: 0;
    transform: translateY(22px);
    transition: opacity 0.72s ease, transform 0.72s ease;
}

    .reveal.visible {
        opacity: 1;
        transform: none;
    }

/* ══════════════ NAV ══════════════ */
.site-nav {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(247,243,238,0.95);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid var(--line);
    transition: box-shadow .3s ease;
}

    .site-nav.scrolled {
        box-shadow: 0 4px 28px rgba(8,25,46,0.10);
    }

.nav-inner {
    max-width: 1240px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 32px;
}

.brand-logo img {
    height: 42px;
    width: auto;
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 30px;
}

    .main-nav a {
        font-size: 0.86rem;
        font-weight: 600;
        color: var(--navy);
        letter-spacing: 0.02em;
        position: relative;
        padding-bottom: 3px;
        transition: color .2s;
    }

        .main-nav a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 1.5px;
            background: var(--teal);
            transition: width .25s ease;
        }

        .main-nav a:hover {
            color: var(--teal);
        }

            .main-nav a:hover::after {
                width: 100%;
            }

.nav-cta {
    background: var(--navy) !important;
    color: var(--cream) !important;
    padding: 9px 20px !important;
    border-radius: 100px !important;
    letter-spacing: .03em !important;
    transition: background .25s !important;
}

    .nav-cta::after {
        display: none !important;
    }

    .nav-cta:hover {
        background: var(--teal) !important;
        color: #fff !important;
    }

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}

    .hamburger span {
        display: block;
        width: 24px;
        height: 2px;
        background: var(--navy);
        border-radius: 2px;
        transition: all .25s ease;
    }

/* ══════════════ HERO ══════════════ */
.hero-section {
    min-height: 100vh;
    background: var(--navy);
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
}

.hero-noise {
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: radial-gradient(ellipse at 70% 25%, rgba(27,171,156,.14) 0%, transparent 55%), radial-gradient(ellipse at 5% 80%, rgba(91,110,245,.08) 0%, transparent 50%), radial-gradient(ellipse at 90% 85%, rgba(201,168,108,.05) 0%, transparent 40%);
}

.hero-inner {
    max-width: 1240px;
    margin: 0 auto;
    padding: 88px 32px;
    flex: 1;
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 56px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.eyebrow-tag {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: var(--teal);
    border: 1px solid rgba(27,171,156,.35);
    padding: 6px 16px;
    border-radius: 100px;
    margin-bottom: 24px;
}

.hero-headline {
    font-size: clamp(2.3rem, 4.2vw, 3.7rem);
    color: #EEE8E0;
    line-height: 1.08;
    letter-spacing: -.02em;
    margin-bottom: 20px;
}

    .hero-headline em {
        color: var(--teal-lt);
        font-style: italic;
    }

.hero-sub {
    font-size: 1.02rem;
    color: #8FA0B5;
    max-width: 480px;
    margin-bottom: 32px;
    line-height: 1.78;
}

.hero-actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-bottom: 36px;
}

.btn-primary-pill {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: var(--teal);
    color: var(--navy);
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 700;
    font-size: .88rem;
    padding: 13px 28px;
    border-radius: 100px;
    letter-spacing: .02em;
    border: none;
    cursor: pointer;
    transition: all .25s ease;
}

    .btn-primary-pill:hover {
        background: var(--teal-lt);
        color: var(--navy);
        transform: translateY(-2px);
        box-shadow: 0 10px 30px rgba(27,171,156,.30);
    }

.btn-ghost-pill {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    border: 1.5px solid rgba(238,232,224,.25);
    color: #EEE8E0;
    font-weight: 600;
    font-size: .88rem;
    padding: 12px 26px;
    border-radius: 100px;
    transition: all .25s ease;
}

    .btn-ghost-pill:hover {
        border-color: var(--teal);
        color: var(--teal);
    }

.hero-specialties-row {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

    .hero-specialties-row span {
        font-size: .74rem;
        color: #485A70;
        font-weight: 600;
        letter-spacing: .05em;
        display: flex;
        align-items: center;
        gap: 5px;
    }

    .hero-specialties-row i {
        color: var(--teal);
        font-size: .7rem;
    }

/* Hero Badge */
.hero-visual {
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-badge-ring {
    position: relative;
    width: 380px;
    height: 380px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ring-orbit {
    position: absolute;
    border-radius: 50%;
    border: 1px solid rgba(27,171,156,.16);
}

    .ring-orbit.r1 {
        width: 310px;
        height: 310px;
        animation: spin-ring 22s linear infinite;
    }

    .ring-orbit.r2 {
        width: 420px;
        height: 420px;
        animation: spin-ring 34s linear infinite reverse;
    }

@keyframes spin-ring {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.hero-badge-img {
    width: 215px;
    height: 215px;
    object-fit: contain;
    filter: drop-shadow(0 0 52px rgba(27,171,156,.30));
    animation: float-badge 6s ease-in-out infinite;
    position: relative;
    z-index: 2;
}

@keyframes float-badge {
    0%, 100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-15px);
    }
}

.hero-scroll-hint {
    position: absolute;
    bottom: 22px;
    left: 50%;
    transform: translateX(-50%);
    font-size: .66rem;
    color: rgba(72,90,112,.5);
    letter-spacing: .14em;
    text-transform: uppercase;
    z-index: 1;
}

/* ══════════════ TRUST STRIP ══════════════ */
.trust-strip {
    background: var(--navy-mid);
    border-bottom: 1px solid rgba(255,255,255,.08);
    padding: 22px 32px;
}

.trust-inner {
    max-width: 1240px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 28px;
    flex-wrap: wrap;
}

.trust-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
}

.t-num {
    font-family: 'Playfair Display', serif;
    font-size: 1.15rem;
    font-weight: 900;
    color: var(--teal-lt);
    line-height: 1;
}

.t-label {
    font-size: .7rem;
    color: rgba(255,255,255,.45);
    font-weight: 600;
    letter-spacing: .05em;
}

.trust-sep {
    color: rgba(255,255,255,.15);
    font-size: 1.2rem;
}

/* ══════════════ SHARED SECTION STYLES ══════════════ */
.section-inner {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 32px;
}

.section-header {
    margin-bottom: 52px;
}

.section-eyebrow {
    font-size: .7rem;
    font-weight: 700;
    letter-spacing: .15em;
    text-transform: uppercase;
    color: var(--teal);
    margin-bottom: 12px;
}

    .section-eyebrow.centered {
        text-align: center;
        display: block;
    }

    .section-eyebrow.light {
        color: var(--teal-lt);
    }

.section-headline {
    font-size: clamp(1.7rem, 2.5vw, 2.45rem);
    color: var(--navy);
    line-height: 1.15;
    letter-spacing: -.02em;
    margin-bottom: 18px;
}

    .section-headline.centered {
        text-align: center;
    }

    .section-headline.light {
        color: #EEE8E0;
    }

.section-sub {
    font-size: .97rem;
    color: var(--muted);
    max-width: 560px;
    margin: 0 auto;
    text-align: center;
    line-height: 1.72;
}

    .section-sub.light {
        color: #6A7E96;
    }

/* ══════════════ SPECIALTIES ══════════════ */
.specialties-section {
    padding: 100px 0;
    background: var(--white);
}

.specialty-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.specialty-card {
    background: var(--cream);
    border: 1px solid var(--line);
    border-radius: 14px;
    padding: 28px 24px;
    cursor: pointer;
    transition: all .28s ease;
    position: relative;
    overflow: hidden;
}

    .specialty-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 3px;
        background: var(--teal);
        transform: scaleX(0);
        transform-origin: left;
        transition: transform .28s ease;
    }

    .specialty-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 16px 40px rgba(8,25,46,.10);
    }

        .specialty-card:hover::before {
            transform: scaleX(1);
        }

    .specialty-card.active {
        border-color: var(--teal);
        background: white;
        box-shadow: 0 8px 28px rgba(27,171,156,.14);
    }

        .specialty-card.active::before {
            transform: scaleX(1);
        }

.sp-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    margin-bottom: 14px;
    transition: transform .28s ease;
}

.specialty-card:hover .sp-icon {
    transform: scale(1.08);
}

.sp-icon.neurology {
    background: rgba(91,110,245,.10);
    color: var(--sp-neurology);
}

.sp-icon.women {
    background: rgba(212,99,138,.10);
    color: var(--sp-women);
}

.sp-icon.bone {
    background: rgba(78,139,110,.10);
    color: var(--sp-bone);
}

.sp-icon.gut {
    background: rgba(46,158,98,.10);
    color: var(--sp-gut);
}

.sp-icon.skin {
    background: rgba(192,123,64,.10);
    color: var(--sp-skin);
}

.sp-icon.wellness {
    background: rgba(27,171,156,.10);
    color: var(--sp-wellness);
}

.specialty-card h3 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 1rem;
    font-weight: 800;
    color: var(--navy);
    margin-bottom: 6px;
}

.specialty-card p {
    font-size: .83rem;
    color: var(--muted);
    line-height: 1.55;
    margin-bottom: 14px;
}

.sp-tag {
    display: inline-block;
    font-size: .68rem;
    font-weight: 700;
    letter-spacing: .07em;
    text-transform: uppercase;
    color: var(--teal);
    background: rgba(27,171,156,.08);
    border: 1px solid rgba(27,171,156,.25);
    padding: 4px 10px;
    border-radius: 100px;
}

/* ══════════════ STORIES ══════════════ */
.stories-section {
    padding: 100px 0;
    background: var(--navy);
}

.stories-grid {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 22px;
    margin-bottom: 28px;
}

.story-card {
    background: rgba(255,255,255,.04);
    border: 1px solid rgba(255,255,255,.09);
    border-radius: 16px;
    padding: 32px 28px;
    position: relative;
    overflow: hidden;
    transition: background .3s ease;
}

    .story-card:hover {
        background: rgba(255,255,255,.07);
    }

    .story-card::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        width: 100%;
        height: 2px;
        background: linear-gradient(90deg, var(--teal), transparent);
    }

.story-specialty {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: .7rem;
    font-weight: 700;
    letter-spacing: .09em;
    text-transform: uppercase;
    padding: 4px 11px;
    border-radius: 100px;
    margin-bottom: 18px;
}

    .story-specialty.neurology {
        background: rgba(91,110,245,.15);
        color: #8B9CFF;
    }

    .story-specialty.hematology {
        background: rgba(212,64,64,.15);
        color: #FF8B8B;
    }

    .story-specialty.bone {
        background: rgba(78,139,110,.15);
        color: #82C9A6;
    }

.story-quote {
    font-family: 'Playfair Display', serif;
    font-size: 4rem;
    color: var(--teal);
    line-height: .6;
    margin-bottom: 12px;
    opacity: .4;
}

.story-text {
    font-size: .95rem;
    color: rgba(238,232,224,.85);
    font-style: italic;
    line-height: 1.76;
    margin-bottom: 20px;
}

.story-attr {
    font-size: .82rem;
    font-weight: 700;
    color: #EEE8E0;
    margin-bottom: 4px;
}

.story-condition {
    font-size: .74rem;
    color: #5A6E84;
    margin-bottom: 16px;
    letter-spacing: .03em;
}

.story-product {
    font-size: .78rem;
    color: var(--teal-lt);
    border-top: 1px solid rgba(255,255,255,.08);
    padding-top: 14px;
}

    .story-product strong {
        font-weight: 700;
    }

.stories-disclaimer {
    font-size: .72rem;
    color: #3E5268;
    text-align: center;
    line-height: 1.6;
    max-width: 640px;
    margin: 0 auto;
}

/* ══════════════ PRODUCTS ══════════════ */
.products-section {
    padding: 100px 0;
    background: var(--cream);
}

.filter-tabs {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 44px;
    justify-content: center;
}

.filter-btn {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: .78rem;
    font-weight: 700;
    letter-spacing: .04em;
    padding: 9px 18px;
    border-radius: 100px;
    border: 1.5px solid var(--line);
    background: var(--white);
    color: var(--muted);
    cursor: pointer;
    transition: all .22s ease;
}

    .filter-btn:hover {
        border-color: var(--teal);
        color: var(--teal);
    }

    .filter-btn.active {
        background: var(--navy);
        border-color: var(--navy);
        color: var(--white);
    }

.product-grid {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 20px;
}

.product-card {
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 14px;
    padding: 26px 24px;
    position: relative;
    overflow: hidden;
    transition: transform .28s ease, box-shadow .28s ease;
}

    .product-card:hover {
        transform: translateY(-6px);
        box-shadow: 0 20px 48px rgba(8,25,46,.11);
    }

    .product-card.hidden {
        display: none;
    }

/* Coming soon overlay */
.coming-soon {
    opacity: .75;
}

.coming-soon-overlay {
    position: absolute;
    inset: 0;
    z-index: 10;
    background: rgba(8,25,46,.55);
    backdrop-filter: blur(2px);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
}

    .coming-soon-overlay span {
        font-family: 'Plus Jakarta Sans', sans-serif;
        font-size: .75rem;
        font-weight: 800;
        letter-spacing: .14em;
        text-transform: uppercase;
        color: var(--teal-lt);
        border: 1.5px solid rgba(95,208,194,.4);
        padding: 8px 18px;
        border-radius: 100px;
        background: rgba(8,25,46,.7);
    }

/* Specialty badge per card */
.card-sp-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: .66rem;
    font-weight: 700;
    letter-spacing: .09em;
    text-transform: uppercase;
    padding: 4px 10px;
    border-radius: 100px;
    margin-bottom: 10px;
}

    .card-sp-badge.neurology {
        background: rgba(91,110,245,.10);
        color: var(--sp-neurology);
    }

    .card-sp-badge.women {
        background: rgba(212,99,138,.10);
        color: var(--sp-women);
    }

    .card-sp-badge.bone {
        background: rgba(78,139,110,.10);
        color: var(--sp-bone);
    }

    .card-sp-badge.gut {
        background: rgba(46,158,98,.10);
        color: var(--sp-gut);
    }

    .card-sp-badge.skin {
        background: rgba(192,123,64,.10);
        color: var(--sp-skin);
    }

    .card-sp-badge.wellness {
        background: rgba(27,171,156,.10);
        color: var(--sp-wellness);
    }

    .card-sp-badge.hematology {
        background: rgba(212,64,64,.10);
        color: var(--sp-hematology);
    }

.card-category {
    font-size: .72rem;
    font-weight: 700;
    color: var(--muted);
    text-transform: uppercase;
    letter-spacing: .06em;
    margin-bottom: 6px;
}

.card-name {
    font-size: 1.55rem;
    font-weight: 800;
    color: var(--navy);
    letter-spacing: -.02em;
    margin-bottom: 6px;
    line-height: 1;
}

.card-story {
    font-size: .85rem;
    color: var(--muted);
    font-style: italic;
    margin-bottom: 14px;
    line-height: 1.5;
}

.card-divider {
    height: 1px;
    background: var(--line);
    margin-bottom: 14px;
}

.formula-label {
    display: block;
    font-size: .65rem;
    font-weight: 700;
    letter-spacing: .11em;
    text-transform: uppercase;
    color: #9CA3AF;
    margin-bottom: 9px;
}

.card-formula {
    list-style: none;
    padding: 0;
    margin: 0 0 18px;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

    .card-formula li {
        font-size: .79rem;
        color: #374151;
        padding-left: 13px;
        position: relative;
        line-height: 1.45;
    }

        .card-formula li::before {
            content: '·';
            position: absolute;
            left: 0;
            color: var(--teal);
            font-weight: 900;
            font-size: 1.1rem;
            line-height: 1.1;
        }

.card-badge {
    display: inline-block;
    font-size: .66rem;
    font-weight: 700;
    letter-spacing: .06em;
    text-transform: uppercase;
    color: var(--teal);
    border: 1px solid rgba(27,171,156,.28);
    background: rgba(27,171,156,.06);
    padding: 4px 11px;
    border-radius: 100px;
}

/* ══════════════ SCIENCE ══════════════ */
.science-section {
    padding: 100px 0;
    background: var(--navy-mid);
}

.science-grid {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 18px;
    margin-top: 52px;
}

.science-card {
    background: rgba(255,255,255,.04);
    border: 1px solid rgba(255,255,255,.08);
    border-radius: 12px;
    padding: 26px 22px;
    transition: background .3s ease;
}

    .science-card:hover {
        background: rgba(255,255,255,.07);
    }

.vs-row {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 16px;
    flex-wrap: wrap;
}

.vs-bad {
    font-size: .76rem;
    font-weight: 600;
    color: #4A5A6A;
    text-decoration: line-through;
    padding: 4px 10px;
    border-radius: 6px;
    background: rgba(255,255,255,.04);
}

.vs-arrow {
    color: var(--teal);
    font-size: .8rem;
}

.vs-good {
    font-size: .78rem;
    font-weight: 700;
    color: var(--teal-lt);
    padding: 4px 10px;
    border-radius: 6px;
    background: rgba(27,171,156,.12);
    border: 1px solid rgba(27,171,156,.25);
}

.science-card p {
    font-size: .84rem;
    color: #7A8898;
    line-height: 1.72;
}

/* ══════════════ FOR DOCTORS ══════════════ */
.doctors-section {
    padding: 100px 0;
    background: var(--cream);
}

.doctors-inner {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 72px;
    align-items: start;
}

.doctors-left .section-headline {
    margin-bottom: 16px;
}

.doctors-left > p {
    font-size: .97rem;
    color: var(--muted);
    line-height: 1.75;
}

.doctors-right {
    display: flex;
    flex-direction: column;
    gap: 22px;
}

.doctor-feature {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    padding: 20px;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 12px;
    transition: box-shadow .25s ease;
}

    .doctor-feature:hover {
        box-shadow: 0 8px 24px rgba(8,25,46,.08);
    }

.df-icon {
    width: 42px;
    height: 42px;
    flex-shrink: 0;
    border-radius: 10px;
    background: rgba(27,171,156,.08);
    border: 1px solid rgba(27,171,156,.20);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--teal);
    font-size: 1rem;
}

.doctor-feature h4 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: .93rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 4px;
}

.doctor-feature p {
    font-size: .82rem;
    color: var(--muted);
    line-height: 1.55;
}

/* ══════════════ CERTIFICATIONS ══════════════ */
.cert-section {
    background: var(--white);
    padding: 56px 0;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}

.cert-title {
    text-align: center;
    font-size: .7rem;
    font-weight: 700;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: var(--muted);
    margin-bottom: 32px;
}

.cert-list {
    display: flex;
    justify-content: center;
    gap: 44px;
    flex-wrap: wrap;
}

.cert-item {
    display: flex;
    gap: 12px;
    align-items: center;
}

.cert-icon {
    color: var(--teal);
    font-size: 1.1rem;
}

.cert-item h5 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: .88rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 2px;
}

.cert-item p {
    font-size: .74rem;
    color: var(--muted);
}

/* ══════════════ CONTACT ══════════════ */
.contact-section {
    padding: 100px 0;
    background: var(--cream);
}

.contact-inner {
    display: grid;
    grid-template-columns: 1fr 1.15fr;
    gap: 72px;
    align-items: start;
}

.contact-left .section-headline {
    margin-bottom: 14px;
}

.contact-left > p {
    font-size: .97rem;
    color: var(--muted);
    margin-bottom: 32px;
    line-height: 1.75;
}

.contact-info-list {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.contact-info-item {
    display: flex;
    gap: 14px;
    align-items: flex-start;
}

.c-icon {
    width: 38px;
    height: 38px;
    flex-shrink: 0;
    border-radius: 9px;
    background: var(--white);
    border: 1px solid var(--line);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--teal);
    font-size: .92rem;
}

.contact-info-item h5 {
    font-size: .82rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 2px;
}

.contact-info-item p {
    font-size: .83rem;
    color: var(--muted);
}

.contact-form {
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 16px;
    padding: 34px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}

.field {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

label {
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: .06em;
    text-transform: uppercase;
    color: var(--navy);
}

input, textarea, select {
    background: var(--cream);
    border: 1.5px solid var(--line);
    border-radius: 8px;
    padding: 11px 13px;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: .90rem;
    color: var(--ink);
    transition: border-color .2s ease, background .2s ease;
    width: 100%;
}

    input::placeholder, textarea::placeholder {
        color: #A0AEC0;
    }

    input:focus, textarea:focus, select:focus {
        outline: none;
        border-color: var(--teal);
        background: var(--white);
    }

textarea {
    min-height: 108px;
    resize: vertical;
}

.full-w {
    width: 100%;
    text-align: center;
    justify-content: center;
}

.form-note {
    font-size: .72rem;
    color: var(--muted);
    text-align: center;
    line-height: 1.55;
}

/* ══════════════ FOOTER ══════════════ */
.site-footer {
    background: var(--navy);
    padding: 44px 32px;
}

.footer-inner {
    max-width: 1240px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 24px;
}

.footer-brand img {
    height: 30px;
    margin-bottom: 8px;
}

.footer-brand p {
    font-size: .75rem;
    color: #3E5268;
    font-style: italic;
}

.footer-links {
    display: flex;
    gap: 26px;
}

    .footer-links a {
        font-size: .82rem;
        font-weight: 600;
        color: #3E5268;
        transition: color .2s ease;
    }

        .footer-links a:hover {
            color: var(--teal);
        }

.footer-legal p {
    font-size: .74rem;
    color: #3E5268;
    text-align: right;
}

/* ══════════════ RESPONSIVE ══════════════ */
@media (max-width: 1100px) {
    .specialty-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .product-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .science-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .main-nav {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--cream);
        flex-direction: column;
        gap: 0;
        border-bottom: 1px solid var(--line);
        max-height: 0;
        overflow: hidden;
        transition: max-height .3s ease;
        z-index: 99;
    }

        .main-nav.open {
            max-height: 450px;
        }

        .main-nav a {
            display: block;
            padding: 14px 28px;
            border-top: 1px solid var(--line);
        }

    .nav-cta {
        margin: 12px 28px !important;
        border-radius: 8px !important;
        text-align: center;
    }

    .site-nav {
        position: relative;
    }

    .hero-inner {
        grid-template-columns: 1fr;
        text-align: center;
        padding-top: 52px;
    }

    .hero-sub {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-actions, .hero-specialties-row {
        justify-content: center;
    }

    .hero-visual {
        order: -1;
    }

    .hero-badge-ring {
        width: 240px;
        height: 240px;
    }

    .hero-badge-img {
        width: 152px;
        height: 152px;
    }

    .ring-orbit.r1 {
        width: 195px;
        height: 195px;
    }

    .ring-orbit.r2 {
        width: 255px;
        height: 255px;
    }

    .trust-sep {
        display: none;
    }

    .trust-inner {
        gap: 18px;
    }

    .specialty-grid {
        grid-template-columns: 1fr 1fr;
    }

    .stories-grid {
        grid-template-columns: 1fr;
    }

    .product-grid {
        grid-template-columns: 1fr;
    }

    .science-grid {
        grid-template-columns: 1fr;
    }

    .doctors-inner {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .contact-inner {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .cert-list {
        flex-direction: column;
        align-items: center;
        gap: 18px;
    }

    .footer-inner {
        flex-direction: column;
        text-align: center;
    }

    .footer-legal p {
        text-align: center;
    }

    .footer-links {
        justify-content: center;
        flex-wrap: wrap;
    }

    .specialties-section, .stories-section, .products-section,
    .science-section, .doctors-section, .contact-section {
        padding: 68px 0;
    }

    .section-inner {
        padding: 0 18px;
    }

    .filter-tabs {
        gap: 8px;
    }

    .filter-btn {
        font-size: .72rem;
        padding: 7px 14px;
    }
}

@media (max-width: 480px) {
    .specialty-grid {
        grid-template-columns: 1fr;
    }
}
