/* ── Reset & Base ─────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
    --teal-50:  #f0fdfa;
    --teal-100: #ccfbf1;
    --teal-200: #99f6e4;
    --teal-400: #2dd4bf;
    --teal-500: #14b8a6;
    --teal-600: #0d9488;
    --teal-700: #0f766e;
    --teal-800: #115e59;
    --teal-900: #134e4a;
    --slate-50:  #f8fafc;
    --slate-100: #f1f5f9;
    --slate-200: #e2e8f0;
    --slate-300: #cbd5e1;
    --slate-400: #94a3b8;
    --slate-500: #64748b;
    --slate-600: #475569;
    --slate-700: #334155;
    --slate-800: #1e293b;
    --slate-900: #0f172a;
    --slate-950: #020617;

    --font-serif: 'Playfair Display', Georgia, 'Times New Roman', serif;
    --font-sans:  'Inter', system-ui, -apple-system, sans-serif;

    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --shadow-sm: 0 1px 3px rgba(2,6,23,.08), 0 1px 2px rgba(2,6,23,.06);
    --shadow-md: 0 4px 20px rgba(2,6,23,.08), 0 2px 8px rgba(2,6,23,.04);
    --shadow-lg: 0 12px 40px rgba(2,6,23,.12), 0 4px 16px rgba(2,6,23,.06);

    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
    font-family: var(--font-sans);
    color: var(--slate-800);
    background: var(--slate-50);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; font-family: inherit; }

.skip-link {
    position: absolute; left: -9999px; top: 0;
    background: var(--teal-700); color: #fff;
    padding: 8px 16px; z-index: 200; border-radius: 0 0 var(--radius-sm) 0;
}
.skip-link:focus { left: 0; }

.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* ── Typography ───────────────────────────────────────── */
.section-eyebrow {
    font-family: var(--font-sans);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--teal-600);
    margin-bottom: 12px;
}

.section-title {
    font-family: var(--font-serif);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    line-height: 1.15;
    color: var(--slate-900);
    margin-bottom: 20px;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--slate-500);
    max-width: 560px;
    line-height: 1.7;
}

.text-accent { color: var(--teal-600); }

.text-gradient {
    background: linear-gradient(135deg, var(--teal-600) 0%, var(--teal-400) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ── Buttons ──────────────────────────────────────────── */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-sans);
    font-weight: 500;
    font-size: 0.95rem;
    padding: 14px 28px;
    border-radius: var(--radius-sm);
    border: 2px solid transparent;
    transition: all var(--transition);
    white-space: nowrap;
}

.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn-teal {
    background: var(--teal-600);
    color: #fff;
    border-color: var(--teal-600);
}
.btn-teal:hover { background: var(--teal-700); border-color: var(--teal-700); }

.btn-outline-light {
    background: transparent;
    color: #fff;
    border-color: rgba(255,255,255,0.4);
}
.btn-outline-light:hover { background: rgba(255,255,255,0.1); border-color: #fff; }

.btn-outline-dark {
    background: transparent;
    color: var(--slate-700);
    border-color: var(--slate-300);
}
.btn-outline-dark:hover { border-color: var(--teal-600); color: var(--teal-600); }

.btn-sm { padding: 10px 20px; font-size: 0.875rem; }
.btn-lg { padding: 16px 32px; font-size: 1rem; }
.btn-full { width: 100%; justify-content: center; }

/* ── Nav ──────────────────────────────────────────────── */
.nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 100;
    background: rgba(248,250,252,0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--slate-200);
    transition: box-shadow var(--transition);
}
.nav.scrolled { box-shadow: var(--shadow-sm); }

.nav-inner {
    max-width: 1200px; margin: 0 auto;
    padding: 0 24px;
    display: flex; align-items: center;
    height: 72px;
}

.nav-logo {
    display: inline-flex; align-items: center; gap: 10px;
    font-family: var(--font-serif);
    font-weight: 700; font-size: 1.15rem;
    color: var(--slate-900);
}
.nav-logo-icon { color: var(--teal-600); }
.nav-logo-text { letter-spacing: -0.02em; }

.nav-menu {
    display: flex; align-items: center; gap: 32px;
    margin-left: auto;
}
.nav-menu a {
    font-size: 0.9rem; font-weight: 500;
    color: var(--slate-600);
    transition: color var(--transition);
    position: relative;
}
.nav-menu a::after {
    content: ''; position: absolute;
    bottom: -4px; left: 0; width: 0; height: 2px;
    background: var(--teal-600);
    transition: width var(--transition);
}
.nav-menu a:hover { color: var(--teal-600); }
.nav-menu a:hover::after { width: 100%; }

.nav-toggle {
    display: none;
    flex-direction: column; gap: 5px;
    background: none; border: none; padding: 8px; margin-left: auto;
}
.nav-toggle-bar {
    width: 22px; height: 2px;
    background: var(--slate-700);
    transition: all var(--transition);
    transform-origin: center;
}
.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}
.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* ── Hero ─────────────────────────────────────────────── */
.hero {
    min-height: 100vh;
    display: flex; align-items: center;
    position: relative;
    background: var(--slate-900);
    overflow: hidden;
    padding-top: 72px;
}

.hero-bg {
    position: absolute; inset: 0;
    background:
        radial-gradient(ellipse 80% 60% at 70% 40%, rgba(13,148,136,0.25) 0%, transparent 60%),
        radial-gradient(ellipse 50% 80% at 20% 80%, rgba(13,148,136,0.12) 0%, transparent 50%),
        var(--slate-900);
}

.hero-bg-pattern {
    position: absolute; inset: 0;
    opacity: 0.03;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='1'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

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

.hero-eyebrow {
    font-size: 0.75rem; font-weight: 600;
    letter-spacing: 0.15em; text-transform: uppercase;
    color: var(--teal-400);
    margin-bottom: 20px;
}

.hero-headline {
    font-family: var(--font-serif);
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    line-height: 1.08;
    color: #fff;
    margin-bottom: 24px;
    letter-spacing: -0.02em;
}

.hero-sub {
    font-size: 1.15rem;
    color: var(--slate-300);
    line-height: 1.75;
    margin-bottom: 36px;
    max-width: 480px;
}

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

.hero-badges {
    display: flex; flex-wrap: wrap; gap: 10px;
}

.badge-light {
    display: inline-flex; align-items: center;
    padding: 6px 14px;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 100px;
    font-size: 0.8rem; font-weight: 500;
    color: var(--slate-300);
}

.hero-image {
    position: relative;
}

.hero-image-wrapper {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.hero-image-wrapper img {
    width: 100%; height: 100%;
    object-fit: cover;
    aspect-ratio: 600/750;
}

.hero-image-accent {
    position: absolute; inset: 0;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(255,255,255,0.1);
    pointer-events: none;
}

.hero-card {
    position: absolute; bottom: -24px; left: -32px;
    background: #fff;
    border-radius: var(--radius-md);
    padding: 20px 28px;
    box-shadow: var(--shadow-lg);
    display: flex; align-items: baseline; gap: 12px;
}

.hero-card-stat {
    font-family: var(--font-serif);
    font-size: 2.5rem; font-weight: 700;
    color: var(--teal-600);
    line-height: 1;
}

.hero-card-label {
    font-size: 0.85rem;
    color: var(--slate-500);
    line-height: 1.3;
}

.hero-scroll {
    position: absolute; bottom: 32px; left: 50%;
    transform: translateX(-50%);
    display: flex; align-items: center; gap: 8px;
    font-size: 0.75rem; font-weight: 500;
    letter-spacing: 0.1em; text-transform: uppercase;
    color: var(--slate-400);
    animation: scrollBounce 2s ease-in-out infinite;
}

@keyframes scrollBounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(6px); }
}

/* ── About ────────────────────────────────────────────── */
.about {
    padding: 120px 0;
    background: var(--slate-50);
}

.about-grid {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 80px; align-items: center;
}

.about-image-col { position: relative; }

.about-image-main {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.about-image-main img {
    width: 100%; aspect-ratio: 560/420;
    object-fit: cover;
}

.about-image-secondary {
    position: absolute; bottom: -40px; right: -40px;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 4px solid var(--slate-50);
}

.about-image-secondary img {
    width: 100%; aspect-ratio: 320/240;
    object-fit: cover;
}

.about-accent-box {
    display: flex; align-items: center; gap: 12px;
    margin-top: 24px;
    padding: 16px 20px;
    background: var(--teal-50);
    border: 1px solid var(--teal-100);
    border-radius: var(--radius-sm);
    font-size: 0.9rem;
    color: var(--teal-800);
}
.about-accent-box svg { color: var(--teal-600); flex-shrink: 0; }

.about-text-col .section-title { margin-top: 4px; }

.about-text-col > p {
    color: var(--slate-600);
    font-size: 1.05rem;
    margin-bottom: 16px;
    line-height: 1.8;
}

.about-features {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 16px; margin-top: 32px;
}

.about-feature {
    display: flex; align-items: flex-start; gap: 10px;
    font-size: 0.9rem; font-weight: 500;
    color: var(--slate-700);
}
.about-feature svg { color: var(--teal-600); flex-shrink: 0; margin-top: 2px; }

/* ── Services ─────────────────────────────────────────── */
.services {
    padding: 120px 0;
    background: #fff;
}

.services .section-header {
    text-align: center;
    margin-bottom: 64px;
}

.services-grid {
    display: grid; grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.service-card {
    padding: 40px;
    background: var(--slate-50);
    border: 1px solid var(--slate-200);
    border-radius: var(--radius-md);
    transition: all var(--transition);
}

.service-card:hover {
    border-color: var(--teal-200);
    box-shadow: var(--shadow-md);
    transform: translateY(-4px);
}

.service-icon {
    width: 56px; height: 56px;
    display: flex; align-items: center; justify-content: center;
    background: var(--teal-50);
    border: 1px solid var(--teal-100);
    border-radius: var(--radius-sm);
    color: var(--teal-600);
    margin-bottom: 20px;
}

.service-title {
    font-family: var(--font-serif);
    font-size: 1.35rem; font-weight: 700;
    color: var(--slate-900);
    margin-bottom: 12px;
}

.service-desc {
    color: var(--slate-500);
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 20px;
}

.service-list {
    list-style: none; display: flex; flex-direction: column; gap: 8px;
}

.service-list li {
    display: flex; align-items: center; gap: 8px;
    font-size: 0.875rem; color: var(--slate-600);
}

.service-list li::before {
    content: '';
    width: 6px; height: 6px;
    background: var(--teal-500);
    border-radius: 50%;
    flex-shrink: 0;
}

/* ── Why ──────────────────────────────────────────────── */
.why {
    padding: 120px 0;
    background: var(--slate-900);
    position: relative;
    overflow: hidden;
}

.why::before {
    content: '';
    position: absolute; inset: 0;
    background: radial-gradient(ellipse 60% 50% at 80% 50%, rgba(13,148,136,0.15) 0%, transparent 60%);
    pointer-events: none;
}

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

.why-content .section-eyebrow { color: var(--teal-400); }
.why-content .section-title { color: #fff; }
.why-intro {
    color: var(--slate-400);
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 40px;
}

.why-features { display: flex; flex-direction: column; gap: 32px; }

.why-feature {
    display: flex; gap: 20px; align-items: flex-start;
}

.why-feature-number {
    font-family: var(--font-serif);
    font-size: 2rem; font-weight: 700;
    color: var(--teal-600);
    line-height: 1;
    flex-shrink: 0;
    opacity: 0.6;
}

.why-feature-text h4 {
    font-family: var(--font-serif);
    font-size: 1.15rem; font-weight: 700;
    color: #fff;
    margin-bottom: 6px;
}

.why-feature-text p {
    font-size: 0.9rem;
    color: var(--slate-400);
    line-height: 1.7;
}

.why-image-col { position: relative; }

.why-image-stack { position: relative; }

.why-image-stack-main {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.why-image-stack-main img {
    width: 100%; aspect-ratio: 480/600;
    object-fit: cover;
}

.why-image-stack-accent {
    position: absolute; bottom: -32px; left: -32px;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 4px solid var(--slate-900);
}

.why-image-stack-accent img {
    width: 100%; aspect-ratio: 320/240;
    object-fit: cover;
}

/* ── FAQ ──────────────────────────────────────────────── */
.faq {
    padding: 120px 0;
    background: var(--slate-50);
}

.faq-layout {
    display: grid; grid-template-columns: 1fr 1.2fr;
    gap: 80px; align-items: start;
}

.faq-header-col .section-title { margin-top: 4px; }

.faq-intro {
    color: var(--slate-500);
    font-size: 1.05rem;
    line-height: 1.75;
    margin-bottom: 32px;
}

.faq-list { display: flex; flex-direction: column; gap: 12px; }

.faq-item {
    background: #fff;
    border: 1px solid var(--slate-200);
    border-radius: var(--radius-sm);
    overflow: hidden;
    transition: border-color var(--transition);
}

.faq-item:hover { border-color: var(--teal-200); }

.faq-question {
    width: 100%;
    display: flex; align-items: center; justify-content: space-between;
    gap: 16px;
    padding: 20px 24px;
    background: none; border: none;
    text-align: left;
    font-family: var(--font-serif);
    font-size: 1.05rem; font-weight: 600;
    color: var(--slate-800);
    transition: color var(--transition);
}

.faq-question:hover { color: var(--teal-600); }

.faq-chevron {
    flex-shrink: 0;
    color: var(--slate-400);
    transition: transform var(--transition);
}

.faq-item[open] .faq-chevron,
.faq-question[aria-expanded="true"] .faq-chevron {
    transform: rotate(180deg);
    color: var(--teal-600);
}

.faq-answer {
    padding: 0 24px 20px;
    font-size: 0.95rem;
    color: var(--slate-500);
    line-height: 1.75;
}

/* ── CTA ──────────────────────────────────────────────── */
.cta {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--teal-700) 0%, var(--teal-600) 50%, var(--teal-500) 100%);
    position: relative;
    overflow: hidden;
}

.cta::before {
    content: '';
    position: absolute; inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23ffffff' fill-opacity='0.04' fill-rule='evenodd'%3E%3Cpath d='M0 40L40 0H20L0 20M40 40V20L20 40'/%3E%3C/g%3E%3C/svg%3E");
    pointer-events: none;
}

.cta-inner {
    position: relative; z-index: 1;
    display: flex; align-items: center; justify-content: space-between;
    gap: 40px; flex-wrap: wrap;
}

.cta-content { max-width: 520px; }
.cta-eyebrow { color: var(--teal-200); }
.cta-title { color: #fff; margin-bottom: 16px; }
.cta-text { color: var(--teal-100); font-size: 1.05rem; line-height: 1.75; }

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

/* ── Contact ──────────────────────────────────────────── */
.contact {
    padding: 120px 0;
    background: #fff;
}

.contact-grid {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 80px;
}

.contact-info .section-title { margin-top: 4px; }
.contact-intro {
    color: var(--slate-500);
    font-size: 1.05rem;
    line-height: 1.75;
    margin-bottom: 36px;
}

.contact-details { display: flex; flex-direction: column; gap: 24px; margin-bottom: 32px; }

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

.contact-detail svg { color: var(--teal-600); flex-shrink: 0; margin-top: 2px; }
.contact-detail strong {
    display: block;
    font-size: 0.75rem; font-weight: 600;
    letter-spacing: 0.1em; text-transform: uppercase;
    color: var(--slate-400);
    margin-bottom: 4px;
}
.contact-detail span,
.contact-detail a {
    font-size: 1rem; color: var(--slate-700);
    line-height: 1.6;
}
.contact-detail a:hover { color: var(--teal-600); }

.contact-map { border-radius: var(--radius-md); overflow: hidden; box-shadow: var(--shadow-sm); }

.contact-form-col {
    background: var(--slate-50);
    border: 1px solid var(--slate-200);
    border-radius: var(--radius-md);
    padding: 40px;
}

.contact-form-title {
    font-family: var(--font-serif);
    font-size: 1.5rem; font-weight: 700;
    color: var(--slate-900);
    margin-bottom: 8px;
}

.contact-form-sub {
    font-size: 0.9rem;
    color: var(--slate-500);
    margin-bottom: 28px;
}

.form-group { margin-bottom: 20px; }

.form-group label {
    display: block;
    font-size: 0.85rem; font-weight: 500;
    color: var(--slate-700);
    margin-bottom: 6px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 14px;
    border: 1px solid var(--slate-200);
    border-radius: var(--radius-sm);
    font-family: var(--font-sans);
    font-size: 0.95rem;
    color: var(--slate-800);
    background: #fff;
    transition: border-color var(--transition), box-shadow var(--transition);
    outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--teal-500);
    box-shadow: 0 0 0 3px rgba(20,184,166,0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--slate-300); }

.form-group textarea { resize: vertical; }

.form-success {
    display: flex; align-items: center; gap: 10px;
    margin-top: 16px;
    padding: 14px 18px;
    background: var(--teal-50);
    border: 1px solid var(--teal-100);
    border-radius: var(--radius-sm);
    font-size: 0.9rem;
    color: var(--teal-800);
}
.form-success svg { color: var(--teal-600); flex-shrink: 0; }

/* ── Footer ───────────────────────────────────────────── */
.footer {
    background: var(--slate-900);
    padding: 80px 0 0;
}

.footer-grid {
    display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 48px;
    padding-bottom: 60px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-logo {
    display: inline-flex; align-items: center; gap: 10px;
    font-family: var(--font-serif);
    font-weight: 700; font-size: 1.1rem;
    color: #fff;
    margin-bottom: 14px;
}
.footer-logo svg { color: var(--teal-500); }

.footer-tagline {
    font-size: 0.9rem;
    color: var(--slate-400);
    line-height: 1.7;
    max-width: 280px;
}

.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links strong {
    font-size: 0.75rem; font-weight: 600;
    letter-spacing: 0.12em; text-transform: uppercase;
    color: var(--slate-400);
    margin-bottom: 4px;
}
.footer-links a {
    font-size: 0.9rem;
    color: var(--slate-300);
    transition: color var(--transition);
}
.footer-links a:hover { color: var(--teal-400); }

.footer-contact { display: flex; flex-direction: column; gap: 10px; }
.footer-contact strong {
    font-size: 0.75rem; font-weight: 600;
    letter-spacing: 0.12em; text-transform: uppercase;
    color: var(--slate-400);
    margin-bottom: 4px;
}
.footer-contact p { font-size: 0.9rem; color: var(--slate-400); line-height: 1.7; }
.footer-contact a { color: var(--slate-300); transition: color var(--transition); }
.footer-contact a:hover { color: var(--teal-400); }

.footer-bottom {
    padding: 24px 0;
    display: flex; align-items: center; justify-content: space-between;
    flex-wrap: wrap; gap: 12px;
}

.footer-bottom p {
    font-size: 0.8rem;
    color: var(--slate-500);
}

.footer-disclaimer {
    font-size: 0.75rem !important;
    color: var(--slate-600) !important;
    max-width: 480px;
    text-align: right;
    line-height: 1.6;
}

/* ── Responsive ───────────────────────────────────────── */
@media (max-width: 1024px) {
    .hero-inner { gap: 40px; }
    .about-grid,
    .why-grid,
    .faq-layout,
    .contact-grid { gap: 48px; }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
}

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 72px; left: 0; right: 0;
        background: rgba(248,250,252,0.98);
        backdrop-filter: blur(12px);
        flex-direction: column;
        padding: 24px;
        gap: 20px;
        border-bottom: 1px solid var(--slate-200);
        transform: translateY(-120%);
        opacity: 0;
        transition: all var(--transition);
        pointer-events: none;
    }
    .nav-menu.open {
        transform: translateY(0);
        opacity: 1;
        pointer-events: all;
    }
    .nav-toggle { display: flex; }

    .hero-inner {
        grid-template-columns: 1fr;
        text-align: center;
        padding: 40px 0 100px;
    }
    .hero-sub { margin-left: auto; margin-right: auto; }
    .hero-actions { justify-content: center; }
    .hero-badges { justify-content: center; }
    .hero-image { max-width: 400px; margin: 0 auto; }
    .hero-card { left: 50%; transform: translateX(-50%); }

    .about-grid,
    .why-grid,
    .faq-layout,
    .contact-grid { grid-template-columns: 1fr; }

    .about-image-secondary { right: 0; bottom: -24px; }
    .why-image-stack-accent { left: 0; bottom: -24px; }

    .services-grid { grid-template-columns: 1fr; }
    .service-card { padding: 28px; }

    .about-features { grid-template-columns: 1fr; }

    .cta-inner { flex-direction: column; text-align: center; }
    .cta-actions { justify-content: center; }

    .footer-grid { grid-template-columns: 1fr; }
    .footer-bottom { flex-direction: column; text-align: center; }
    .footer-disclaimer { text-align: center; }
}

@media (max-width: 480px) {
    .hero-headline { font-size: 2rem; }
    .hero-actions { flex-direction: column; }
    .hero-actions .btn { width: 100%; justify-content: center; }
    .contact-form-col { padding: 24px; }
}

/* ── Reduced motion ───────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        transition-duration: 0.01ms !important;
    }
    html { scroll-behavior: auto; }
    .hero-scroll { display: none; }
}
