/* ==========================================================================
   Biovita Pharma — Main Stylesheet
   Brand colors extracted from the official logo
   ========================================================================== */

:root {
    /* Brand palette — sampled from logo */
    --bv-teal: #4A9FBF;
    --bv-teal-dark: #2E7A96;
    --bv-teal-light: #E8F4F9;
    --bv-green: #8DC63F;
    --bv-green-dark: #6FA02E;
    --bv-green-light: #F1F8E5;

    /* Neutrals */
    --bv-ink: #0F2233;
    --bv-slate: #3D4F60;
    --bv-mute: #6B7C8C;
    --bv-line: #E2E8EE;
    --bv-soft: #F6F9FB;
    --bv-white: #FFFFFF;

    /* Semantic */
    --bv-bg: var(--bv-white);
    --bv-text: var(--bv-ink);
    --bv-text-muted: var(--bv-mute);
    --bv-primary: var(--bv-teal);
    --bv-accent: var(--bv-green);

    /* Typography */
    --font-display: 'Outfit', 'Helvetica Neue', sans-serif;
    --font-body: 'Inter', system-ui, -apple-system, sans-serif;

    /* Layout */
    --container: 1200px;
    --radius-sm: 6px;
    --radius: 12px;
    --radius-lg: 20px;
    --shadow-sm: 0 2px 8px rgba(15, 34, 51, 0.06);
    --shadow: 0 8px 24px rgba(15, 34, 51, 0.08);
    --shadow-lg: 0 20px 50px rgba(15, 34, 51, 0.12);
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Reset */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    margin: 0;
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.7;
    color: var(--bv-text);
    background: var(--bv-bg);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--bv-primary); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--bv-teal-dark); }

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
    color: var(--bv-ink);
    font-weight: 600;
    line-height: 1.2;
    margin: 0 0 0.6em;
    letter-spacing: -0.02em;
}

h1 { font-size: clamp(2.2rem, 5vw, 3.6rem); font-weight: 700; }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.6rem); }
h3 { font-size: 1.4rem; }
h4 { font-size: 1.15rem; }

p { margin: 0 0 1rem; }

.container {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 24px;
}

/* ==========================================================================
   Header / Navigation
   ========================================================================== */
.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--bv-line);
    transition: box-shadow var(--transition);
}
.site-header.scrolled { box-shadow: var(--shadow-sm); }

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 0;
}

.site-branding {
    display: flex;
    align-items: center;
    gap: 12px;
}

.site-branding .custom-logo,
.site-branding .text-logo {
    height: 50px;
    width: auto;
}

.text-logo {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.6rem;
    color: var(--bv-teal);
    letter-spacing: 0.02em;
}
.text-logo span { color: var(--bv-green); }

.site-tagline {
    font-size: 0.7rem;
    color: var(--bv-mute);
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin-top: 2px;
}

/* Primary navigation */
.primary-nav {
    display: flex;
    align-items: center;
    gap: 8px;
}
.primary-nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
    gap: 4px;
}
.primary-nav a {
    display: block;
    padding: 10px 18px;
    color: var(--bv-slate);
    font-weight: 500;
    font-size: 0.95rem;
    border-radius: var(--radius-sm);
    transition: all var(--transition);
    position: relative;
}
.primary-nav a:hover,
.primary-nav .current-menu-item > a,
.primary-nav .current_page_item > a {
    color: var(--bv-teal);
    background: var(--bv-teal-light);
}

.nav-cta {
    margin-left: 16px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 26px;
    background: var(--bv-teal);
    color: var(--bv-white) !important;
    border: 2px solid var(--bv-teal);
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all var(--transition);
    text-align: center;
}
.btn:hover {
    background: var(--bv-teal-dark);
    border-color: var(--bv-teal-dark);
    color: var(--bv-white) !important;
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}
.btn-outline {
    background: transparent;
    color: var(--bv-teal) !important;
}
.btn-outline:hover {
    background: var(--bv-teal);
    color: var(--bv-white) !important;
}
.btn-accent {
    background: var(--bv-green);
    border-color: var(--bv-green);
}
.btn-accent:hover {
    background: var(--bv-green-dark);
    border-color: var(--bv-green-dark);
}

/* Mobile menu toggle */
.menu-toggle {
    display: none;
    background: transparent;
    border: 0;
    cursor: pointer;
    padding: 8px;
}
.menu-toggle span {
    display: block;
    width: 26px;
    height: 2px;
    background: var(--bv-ink);
    margin: 5px 0;
    transition: all var(--transition);
}
.menu-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 7px); }
.menu-toggle.active span:nth-child(2) { opacity: 0; }
.menu-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -7px); }

/* ==========================================================================
   Hero (Home)
   ========================================================================== */
.hero {
    position: relative;
    padding: 100px 0 120px;
    background: linear-gradient(135deg, var(--bv-teal-light) 0%, var(--bv-white) 50%, var(--bv-green-light) 100%);
    overflow: hidden;
}
.hero::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(74, 159, 191, 0.15), transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}
.hero::after {
    content: '';
    position: absolute;
    bottom: -150px;
    left: -150px;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(141, 198, 63, 0.12), transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: var(--bv-white);
    border: 1px solid var(--bv-line);
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--bv-slate);
    margin-bottom: 24px;
    box-shadow: var(--shadow-sm);
}
.hero-eyebrow::before {
    content: '';
    width: 8px;
    height: 8px;
    background: var(--bv-green);
    border-radius: 50%;
    box-shadow: 0 0 0 4px rgba(141, 198, 63, 0.2);
}

.hero h1 {
    margin-bottom: 24px;
}
.hero h1 .accent { color: var(--bv-teal); }
.hero h1 .accent-green { color: var(--bv-green); }

.hero-lead {
    font-size: 1.2rem;
    color: var(--bv-slate);
    margin-bottom: 36px;
    max-width: 540px;
}

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

.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 60px;
    padding-top: 40px;
    border-top: 1px solid var(--bv-line);
}
.hero-stat .num {
    font-family: var(--font-display);
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--bv-teal);
    line-height: 1;
    margin-bottom: 8px;
}
.hero-stat .label {
    font-size: 0.9rem;
    color: var(--bv-mute);
}

/* Hero visual / pulse animation */
.hero-visual {
    position: relative;
    aspect-ratio: 1;
    max-width: 520px;
    margin-left: auto;
}
.hero-visual-card {
    position: absolute;
    inset: 0;
    background: var(--bv-white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    overflow: hidden;
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.hero-pulse-line {
    position: relative;
    height: 80px;
    margin: 30px 0;
}
.hero-pulse-line svg {
    width: 100%;
    height: 100%;
}
.hero-pulse-line .pulse-path {
    fill: none;
    stroke: var(--bv-green);
    stroke-width: 3;
    stroke-linecap: round;
    stroke-dasharray: 1200;
    stroke-dashoffset: 1200;
    animation: pulse-draw 4s ease-out infinite;
}
@keyframes pulse-draw {
    0% { stroke-dashoffset: 1200; }
    50% { stroke-dashoffset: 0; }
    100% { stroke-dashoffset: -1200; }
}

.feature-card-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    margin-top: auto;
}
.feature-mini {
    padding: 16px;
    background: var(--bv-soft);
    border-radius: var(--radius);
    border: 1px solid var(--bv-line);
}
.feature-mini .icon {
    width: 36px;
    height: 36px;
    background: var(--bv-teal-light);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 10px;
    color: var(--bv-teal);
}
.feature-mini h4 { font-size: 0.95rem; margin-bottom: 4px; }
.feature-mini p { font-size: 0.8rem; color: var(--bv-mute); margin: 0; }

/* ==========================================================================
   Sections
   ========================================================================== */
.section {
    padding: 100px 0;
}
.section-soft { background: var(--bv-soft); }
.section-dark {
    background: var(--bv-ink);
    color: var(--bv-white);
}
.section-dark h1, .section-dark h2, .section-dark h3 { color: var(--bv-white); }

.section-head {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 64px;
}
.section-eyebrow {
    display: inline-block;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--bv-teal);
    text-transform: uppercase;
    letter-spacing: 0.18em;
    margin-bottom: 12px;
}
.section-head p {
    font-size: 1.1rem;
    color: var(--bv-text-muted);
}

/* Feature/values grid */
.grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}
.grid-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
}
.grid-4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.value-card {
    background: var(--bv-white);
    border: 1px solid var(--bv-line);
    border-radius: var(--radius-lg);
    padding: 36px 30px;
    transition: all var(--transition);
    position: relative;
    overflow: hidden;
}
.value-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--bv-teal), var(--bv-green));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform var(--transition);
}
.value-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow);
    border-color: transparent;
}
.value-card:hover::before { transform: scaleX(1); }

.value-icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    background: linear-gradient(135deg, var(--bv-teal-light), var(--bv-green-light));
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 22px;
    color: var(--bv-teal);
}
.value-card h3 { margin-bottom: 12px; }
.value-card p { color: var(--bv-text-muted); margin: 0; }

/* Service / feature list */
.service-card {
    background: var(--bv-white);
    border-radius: var(--radius-lg);
    padding: 40px;
    border: 1px solid var(--bv-line);
    transition: all var(--transition);
    height: 100%;
}
.service-card:hover {
    border-color: var(--bv-teal);
    box-shadow: var(--shadow);
}
.service-number {
    font-family: var(--font-display);
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--bv-green);
    letter-spacing: 0.2em;
    margin-bottom: 16px;
}
.service-card h3 {
    margin-bottom: 14px;
}
.service-card ul {
    margin: 16px 0 0;
    padding: 0;
    list-style: none;
}
.service-card ul li {
    padding: 8px 0 8px 26px;
    position: relative;
    color: var(--bv-slate);
    font-size: 0.95rem;
}
.service-card ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 14px;
    width: 14px;
    height: 8px;
    border-left: 2px solid var(--bv-green);
    border-bottom: 2px solid var(--bv-green);
    transform: rotate(-45deg);
}

/* About / Split section */
.split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}
.split-image {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    aspect-ratio: 4/5;
    background: linear-gradient(135deg, var(--bv-teal-light), var(--bv-green-light));
}
.split-image::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 30% 30%, rgba(74, 159, 191, 0.4), transparent 50%),
        radial-gradient(circle at 70% 70%, rgba(141, 198, 63, 0.3), transparent 50%);
}
.split-image .badge {
    position: absolute;
    bottom: 30px;
    left: 30px;
    right: 30px;
    background: var(--bv-white);
    padding: 24px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    display: flex;
    align-items: center;
    gap: 16px;
}
.split-image .badge-num {
    font-family: var(--font-display);
    font-size: 2.4rem;
    font-weight: 700;
    color: var(--bv-teal);
    line-height: 1;
}
.split-image .badge-text {
    font-size: 0.9rem;
    color: var(--bv-slate);
}

.checklist {
    list-style: none;
    margin: 24px 0;
    padding: 0;
}
.checklist li {
    padding: 10px 0 10px 36px;
    position: relative;
    color: var(--bv-slate);
}
.checklist li::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 8px;
    width: 24px;
    height: 24px;
    background: var(--bv-green);
    color: var(--bv-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: 700;
}

/* Product cards */
.product-card {
    background: var(--bv-white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--bv-line);
    transition: all var(--transition);
}
.product-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow);
}
.product-image {
    aspect-ratio: 4/3;
    background: linear-gradient(135deg, var(--bv-teal-light), var(--bv-green-light));
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--bv-teal);
    position: relative;
}
.product-tag {
    position: absolute;
    top: 16px;
    right: 16px;
    background: var(--bv-white);
    padding: 6px 12px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--bv-teal);
}
.product-body { padding: 28px; }
.product-body h3 { margin-bottom: 8px; }
.product-body p { color: var(--bv-text-muted); font-size: 0.95rem; }
.product-meta {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px solid var(--bv-line);
    font-size: 0.85rem;
    color: var(--bv-mute);
}

/* CTA banner */
.cta-banner {
    background: linear-gradient(135deg, var(--bv-teal) 0%, var(--bv-teal-dark) 100%);
    border-radius: var(--radius-lg);
    padding: 72px 60px;
    text-align: center;
    color: var(--bv-white);
    position: relative;
    overflow: hidden;
}
.cta-banner::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(141, 198, 63, 0.3), transparent 70%);
    border-radius: 50%;
}
.cta-banner h2 {
    color: var(--bv-white);
    margin-bottom: 16px;
    position: relative;
}
.cta-banner p {
    font-size: 1.15rem;
    opacity: 0.9;
    margin-bottom: 32px;
    position: relative;
    max-width: 580px;
    margin-left: auto;
    margin-right: auto;
}
.cta-banner .btn {
    background: var(--bv-white);
    color: var(--bv-teal) !important;
    border-color: var(--bv-white);
    position: relative;
}
.cta-banner .btn:hover {
    background: var(--bv-green);
    color: var(--bv-white) !important;
    border-color: var(--bv-green);
}

/* ==========================================================================
   Page header (interior pages)
   ========================================================================== */
.page-hero {
    background: linear-gradient(135deg, var(--bv-teal-light) 0%, var(--bv-green-light) 100%);
    padding: 100px 0 80px;
    position: relative;
    overflow: hidden;
}
.page-hero::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(74, 159, 191, 0.2), transparent 70%);
    border-radius: 50%;
    transform: translate(30%, -30%);
}
.page-hero-inner {
    position: relative;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}
.breadcrumbs {
    display: flex;
    justify-content: center;
    gap: 8px;
    font-size: 0.9rem;
    color: var(--bv-mute);
    margin-bottom: 16px;
}
.breadcrumbs a { color: var(--bv-mute); }
.breadcrumbs a:hover { color: var(--bv-teal); }
.breadcrumbs .sep { color: var(--bv-line); }

/* ==========================================================================
   Contact page
   ========================================================================== */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
}

.contact-info-list {
    list-style: none;
    margin: 0;
    padding: 0;
}
.contact-info-list li {
    display: flex;
    gap: 18px;
    padding: 24px 0;
    border-bottom: 1px solid var(--bv-line);
}
.contact-info-list li:last-child { border-bottom: 0; }
.contact-info-list .icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    background: var(--bv-teal-light);
    color: var(--bv-teal);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.contact-info-list h4 {
    font-size: 1rem;
    margin: 0 0 4px;
}
.contact-info-list p {
    margin: 0;
    color: var(--bv-text-muted);
    font-size: 0.95rem;
}

.contact-form {
    background: var(--bv-white);
    padding: 40px;
    border-radius: var(--radius-lg);
    border: 1px solid var(--bv-line);
    box-shadow: var(--shadow-sm);
}
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}
.form-field { margin-bottom: 20px; }
.form-field label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--bv-slate);
    margin-bottom: 8px;
}
.form-field input,
.form-field textarea,
.form-field select {
    width: 100%;
    padding: 14px 16px;
    border: 1.5px solid var(--bv-line);
    border-radius: var(--radius-sm);
    font-family: inherit;
    font-size: 0.95rem;
    color: var(--bv-text);
    background: var(--bv-white);
    transition: all var(--transition);
}
.form-field input:focus,
.form-field textarea:focus,
.form-field select:focus {
    outline: none;
    border-color: var(--bv-teal);
    box-shadow: 0 0 0 3px rgba(74, 159, 191, 0.15);
}
.form-field textarea { min-height: 140px; resize: vertical; }

/* ==========================================================================
   Footer
   ========================================================================== */
.site-footer {
    background: var(--bv-ink);
    color: rgba(255, 255, 255, 0.75);
    padding: 80px 0 0;
}
.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1fr;
    gap: 50px;
    padding-bottom: 60px;
}
.footer-brand .text-logo { color: var(--bv-white); }
.footer-brand .text-logo span { color: var(--bv-green); }
.footer-brand p {
    margin-top: 20px;
    color: rgba(255, 255, 255, 0.65);
    max-width: 320px;
}
.footer-col h4 {
    color: var(--bv-white);
    font-size: 1rem;
    margin-bottom: 20px;
}
.footer-col ul {
    list-style: none;
    margin: 0;
    padding: 0;
}
.footer-col ul li {
    margin-bottom: 10px;
}
.footer-col a {
    color: rgba(255, 255, 255, 0.65);
    font-size: 0.95rem;
}
.footer-col a:hover { color: var(--bv-green); }

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 24px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.55);
    flex-wrap: wrap;
    gap: 12px;
}
.social-links {
    display: flex;
    gap: 10px;
}
.social-links a {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.7);
    transition: all var(--transition);
}
.social-links a:hover {
    background: var(--bv-green);
    color: var(--bv-white);
}

/* ==========================================================================
   Animations / Reveal
   ========================================================================== */
.reveal {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}
.reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* ==========================================================================
   Elementor / Page Builder Compatibility
   When Elementor is editing or rendering, the theme's main wrapper must not
   add max-width, padding, or any horizontal constraint. Elementor sections
   handle their own layout and "boxed vs full" widths.
   ========================================================================== */
body.biovita-elementor-page .site-main,
body.elementor-page .site-main,
body.elementor-editor-active .site-main {
    max-width: none;
    width: 100%;
    padding: 0;
    margin: 0;
}

body.biovita-elementor-page .site-main > article,
body.elementor-page .site-main > article {
    max-width: none;
    width: 100%;
    padding: 0;
    margin: 0;
}

/* The Elementor Canvas template removes header/footer entirely. */
body.elementor-template-canvas {
    background: #fff;
}

/* ==========================================================================
   Responsive
   ========================================================================== */
@media (max-width: 1024px) {
    .hero-grid,
    .split,
    .contact-grid { grid-template-columns: 1fr; gap: 50px; }
    .hero-visual { max-width: 460px; margin: 0 auto; }
    .grid-3 { grid-template-columns: repeat(2, 1fr); }
    .grid-4 { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
    .menu-toggle { display: block; }
    .primary-nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 85%;
        max-width: 360px;
        height: 100vh;
        background: var(--bv-white);
        flex-direction: column;
        align-items: flex-start;
        padding: 90px 30px 30px;
        gap: 0;
        box-shadow: -10px 0 40px rgba(0, 0, 0, 0.15);
        transition: right 0.4s ease;
        overflow-y: auto;
    }
    .primary-nav.active { right: 0; }
    .primary-nav ul {
        flex-direction: column;
        align-items: stretch;
        width: 100%;
    }
    .primary-nav a { padding: 14px 18px; }
    .nav-cta { margin: 16px 0 0; width: 100%; }
    .nav-cta .btn { width: 100%; }

    .section { padding: 70px 0; }
    .hero { padding: 60px 0 80px; }
    .hero-stats { grid-template-columns: 1fr; gap: 16px; }
    .grid-3, .grid-2, .grid-4 { grid-template-columns: 1fr; }
    .form-row { grid-template-columns: 1fr; }
    .cta-banner { padding: 50px 30px; }
    .footer-grid { grid-template-columns: 1fr; gap: 40px; }
    .footer-bottom { flex-direction: column; text-align: center; }
}
