/* ============================================================
   SIMPLY FACTURA SPAIN — Design System
   Color tokens derived from logo:
     Navy bg #0c0a2a → Teal #2dd4bf → Blue #6366f1
   ============================================================ */

:root {
    --bg-deepest:  #060518;
    --bg-dark:     #0c0a2a;
    --bg-surface:  #13103a;
    --bg-card:     rgba(19, 16, 58, 0.55);
    --bg-card-hover: rgba(25, 22, 72, 0.7);

    --teal:        #2dd4bf;
    --teal-light:  #5eead4;
    --teal-muted:  rgba(45, 212, 191, 0.15);
    --indigo:      #6366f1;
    --indigo-light:#818cf8;
    --purple:      #a78bfa;

    --text:        #f1f5f9;
    --text-secondary: #94a3b8;
    --text-muted:  #64748b;

    --border:      rgba(148, 163, 184, 0.08);
    --glass-bg:    rgba(15, 12, 46, 0.6);
    --glass-border:rgba(45, 212, 191, 0.1);
    --glass-shine: rgba(255, 255, 255, 0.03);

    --radius-sm:   8px;
    --radius:      16px;
    --radius-lg:   24px;
    --radius-xl:   32px;
    --shadow-glow: 0 0 60px rgba(45, 212, 191, 0.08);
    --transition:  0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ---- Reset ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; scroll-padding-top: 80px; }
body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background: var(--bg-deepest);
    color: var(--text);
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

/* Full-page pattern overlay */
body::before {
    content: '';
    position: fixed;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    background-image:
        radial-gradient(circle, rgba(45, 212, 191, 0.045) 1px, transparent 1px),
        radial-gradient(circle, rgba(99, 102, 241, 0.03) 1px, transparent 1px);
    background-size: 40px 40px, 80px 80px;
    background-position: 0 0, 20px 20px;
}
body::after {
    content: '';
    position: fixed;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    background-image:
        linear-gradient(rgba(45, 212, 191, 0.012) 1px, transparent 1px),
        linear-gradient(90deg, rgba(45, 212, 191, 0.012) 1px, transparent 1px);
    background-size: 200px 200px;
    mask-image: radial-gradient(ellipse 80% 70% at 50% 40%, black 30%, transparent 80%);
    -webkit-mask-image: radial-gradient(ellipse 80% 70% at 50% 40%, black 30%, transparent 80%);
}
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
img { max-width: 100%; height: auto; display: block; }
button { font: inherit; cursor: pointer; border: none; background: none; }

/* ---- Canvas BG ---- */
#bgCanvas {
    position: fixed; inset: 0;
    width: 100%; height: 100%;
    z-index: 0;
    pointer-events: none;
}

/* ---- Container ---- */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    position: relative;
    z-index: 1;
}

/* ---- Glass Card ---- */
.glass-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
}

/* ---- Typography ---- */
h1 { font-size: clamp(2.5rem, 5.5vw, 4.2rem); font-weight: 800; line-height: 1.1; letter-spacing: -0.03em; }
h2 { font-size: clamp(2rem, 4vw, 3rem); font-weight: 700; line-height: 1.15; letter-spacing: -0.025em; }
h3 { font-size: 1.25rem; font-weight: 600; line-height: 1.3; }
h4 { font-size: 1.05rem; font-weight: 600; line-height: 1.4; }

.text-gradient {
    background: linear-gradient(135deg, var(--teal), var(--indigo-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 16px;
    border-radius: 100px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--teal);
    background: var(--teal-muted);
    border: 1px solid rgba(45, 212, 191, 0.2);
    margin-bottom: 16px;
}

.section { padding: 120px 0; position: relative; }
.section-head { text-align: center; max-width: 640px; margin: 0 auto 64px; }
.section-head p { color: var(--text-secondary); margin-top: 16px; font-size: 1.1rem; }

/* ---- Buttons ---- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-weight: 600;
    font-size: 0.95rem;
    border-radius: var(--radius-sm);
    padding: 12px 28px;
    transition: var(--transition);
    white-space: nowrap;
    position: relative;
    overflow: hidden;
}
.btn-lg { padding: 16px 36px; font-size: 1rem; border-radius: 12px; }
.btn-block { width: 100%; }

.btn-primary {
    background: linear-gradient(135deg, var(--teal), var(--indigo));
    color: #fff;
    border: none;
    box-shadow: 0 4px 24px rgba(45, 212, 191, 0.25);
}
.btn-primary:hover {
    box-shadow: 0 8px 40px rgba(45, 212, 191, 0.35);
    transform: translateY(-2px);
}
.btn-ghost {
    color: var(--text);
    border: 1px solid var(--border);
    background: transparent;
}
.btn-ghost:hover { border-color: var(--teal); color: var(--teal); }
.btn-outline {
    color: var(--teal);
    border: 1.5px solid rgba(45, 212, 191, 0.3);
    background: transparent;
}
.btn-outline:hover {
    background: var(--teal-muted);
    border-color: var(--teal);
}

/* ---- Navbar ---- */
.navbar {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    padding: 16px 0;
    transition: var(--transition);
}
.navbar.scrolled {
    background: rgba(6, 5, 24, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
    padding: 10px 0;
}
.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    z-index: 1001;
}
.logo-img {
    width: 40px; height: 40px;
    border-radius: 10px;
    object-fit: cover;
}
.logo-text {
    font-size: 1.15rem;
    font-weight: 700;
    letter-spacing: -0.02em;
}
.logo-accent { color: var(--teal); }

.nav-menu {
    display: flex;
    align-items: center;
    gap: 8px;
}
.nav-link {
    padding: 8px 16px;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-secondary);
    border-radius: var(--radius-sm);
    transition: var(--transition);
}
.nav-link:hover, .nav-link.active { color: var(--text); }
.nav-link.active { background: rgba(255, 255, 255, 0.05); }

.nav-cta-btn { display: none; }

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    z-index: 1001;
    padding: 8px;
}
.hamburger span {
    width: 24px; height: 2px;
    background: var(--text);
    border-radius: 4px;
    transition: var(--transition);
}
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ---- Hero ---- */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 120px 0 80px;
    position: relative;
}
.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 18px;
    border-radius: 100px;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--teal);
    background: var(--teal-muted);
    border: 1px solid rgba(45, 212, 191, 0.15);
    margin-bottom: 24px;
}
.hero-sub {
    font-size: 1.15rem;
    color: var(--text-secondary);
    margin-top: 20px;
    max-width: 520px;
    line-height: 1.7;
}
.hero-actions {
    display: flex;
    gap: 16px;
    margin-top: 36px;
    flex-wrap: wrap;
}
.hero-metrics {
    display: flex;
    align-items: center;
    gap: 28px;
    margin-top: 52px;
    padding-top: 32px;
    border-top: 1px solid var(--border);
}
.metric-value {
    display: block;
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--teal);
}
.metric-label {
    display: block;
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-top: 2px;
}
.metric-divider {
    width: 1px;
    height: 40px;
    background: var(--border);
}

/* Hero Visual */
.hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
}
.hero-card {
    padding: 32px;
    width: 100%;
    max-width: 380px;
    position: relative;
    z-index: 2;
}
.hero-card::before {
    content: '';
    position: absolute;
    inset: -1px;
    border-radius: var(--radius);
    padding: 1px;
    background: linear-gradient(135deg, rgba(45, 212, 191, 0.3), rgba(99, 102, 241, 0.3));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
}
.hc-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 24px;
    font-weight: 600;
    font-size: 0.95rem;
}
.hc-dot {
    width: 10px; height: 10px;
    border-radius: 50%;
}
.hc-dot.green { background: var(--teal); box-shadow: 0 0 12px rgba(45, 212, 191, 0.5); }
.hc-list { display: flex; flex-direction: column; gap: 18px; }
.hc-list li {
    display: flex;
    align-items: flex-start;
    gap: 14px;
}
.hc-list li i {
    color: var(--teal);
    font-size: 1.1rem;
    margin-top: 2px;
    flex-shrink: 0;
}
.hc-list li strong { display: block; font-size: 0.95rem; }
.hc-list li span { font-size: 0.82rem; color: var(--text-muted); }

.floating-badge {
    position: absolute;
    padding: 10px 18px;
    font-size: 0.82rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
    animation: float 6s ease-in-out infinite;
    z-index: 3;
}
.floating-badge i { color: var(--teal); }
.fb-1 { top: -10px; right: -20px; animation-delay: -1s; }
.fb-2 { bottom: 20px; left: -30px; animation-delay: -3.5s; }

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

/* Scroll Hint */
.scroll-hint {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: var(--text-muted);
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}
.scroll-line {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, var(--teal), transparent);
    animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
    0%, 100% { opacity: 0.4; transform: scaleY(0.6); }
    50% { opacity: 1; transform: scaleY(1); }
}

/* ---- Features ---- */
.features {
    background: linear-gradient(180deg, transparent, rgba(45, 212, 191, 0.02) 50%, transparent);
}

/* ---- Section dividers (alternating subtle tint) ---- */
.benefits {
    background: linear-gradient(180deg, transparent, rgba(99, 102, 241, 0.02) 50%, transparent);
}
.pricing {
    background: linear-gradient(180deg, transparent, rgba(45, 212, 191, 0.02) 50%, transparent);
}
.contact {
    background: linear-gradient(180deg, transparent, rgba(99, 102, 241, 0.015) 50%, transparent);
}
.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.feat-card {
    padding: 36px 28px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}
.feat-card::after {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 3px;
    background: linear-gradient(90deg, var(--teal), var(--indigo));
    opacity: 0;
    transition: var(--transition);
}
.feat-card:hover {
    transform: translateY(-4px);
    background: var(--bg-card-hover);
    box-shadow: var(--shadow-glow);
}
.feat-card:hover::after { opacity: 1; }
.feat-icon {
    width: 52px; height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    background: var(--teal-muted);
    color: var(--teal);
    font-size: 1.2rem;
    margin-bottom: 20px;
}
.feat-card h3 { margin-bottom: 12px; }
.feat-card p { color: var(--text-secondary); font-size: 0.92rem; line-height: 1.7; }

/* ---- Benefits ---- */
.benefits-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 80px;
    align-items: start;
}
.benefits-intro {
    color: var(--text-secondary);
    font-size: 1.05rem;
    margin: 16px 0 40px;
    line-height: 1.7;
}
.benefits-list { display: flex; flex-direction: column; gap: 28px; }
.ben-item {
    display: flex;
    gap: 18px;
    align-items: flex-start;
}
.ben-icon {
    width: 44px; height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    background: var(--teal-muted);
    color: var(--teal);
    font-size: 1rem;
    flex-shrink: 0;
}
.ben-item h4 { margin-bottom: 4px; }
.ben-item p { color: var(--text-secondary); font-size: 0.9rem; }

/* Benefits Visual */
.benefits-visual {
    position: sticky;
    top: 120px;
}
.bv-card {
    padding: 40px 32px;
    position: relative;
    overflow: hidden;
}
.bv-card::before {
    content: '';
    position: absolute;
    inset: -1px;
    border-radius: var(--radius);
    padding: 1px;
    background: linear-gradient(180deg, rgba(45, 212, 191, 0.25), transparent 60%);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
}
.bv-glow {
    position: absolute;
    bottom: -60px; right: -60px;
    width: 200px; height: 200px;
    background: radial-gradient(circle, rgba(45, 212, 191, 0.12), transparent 70%);
    pointer-events: none;
}
.bv-badges { display: flex; gap: 10px; margin-bottom: 24px; }
.bv-badge {
    padding: 6px 14px;
    border-radius: 100px;
    font-size: 0.78rem;
    font-weight: 600;
    background: var(--teal-muted);
    color: var(--teal);
    display: flex;
    align-items: center;
    gap: 6px;
}
.bv-card h4 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 24px;
}
.bv-checks { display: flex; flex-direction: column; gap: 16px; }
.bv-checks li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.95rem;
    font-weight: 500;
}
.bv-checks li i { color: var(--teal); font-size: 1rem; }

/* ---- Pricing ---- */
.pricing-banner {
    text-align: center;
    padding: 14px 24px;
    margin-bottom: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 0.9rem;
    color: var(--text-secondary);
    background: rgba(99, 102, 241, 0.08);
    border-color: rgba(99, 102, 241, 0.15);
}
.pricing-banner i { color: var(--indigo-light); }
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    align-items: start;
}
.price-card {
    padding: 40px 32px;
    position: relative;
    transition: var(--transition);
}
.price-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-glow);
}
.price-card.featured {
    border-color: rgba(45, 212, 191, 0.3);
    background: linear-gradient(180deg, rgba(45, 212, 191, 0.06), var(--glass-bg));
}
.price-card.featured::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--teal), var(--indigo));
    border-radius: var(--radius) var(--radius) 0 0;
}
.popular-tag {
    position: absolute;
    top: 16px; right: 16px;
    padding: 4px 14px;
    border-radius: 100px;
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    background: linear-gradient(135deg, var(--teal), var(--indigo));
    color: #fff;
}
.price-head { margin-bottom: 28px; }
.price-head h3 { font-size: 1.3rem; margin-bottom: 12px; }
.price-tag {
    display: flex;
    align-items: baseline;
    gap: 2px;
}
.currency { font-size: 1.5rem; font-weight: 600; color: var(--text-secondary); }
.amount { font-size: 3.5rem; font-weight: 800; letter-spacing: -0.04em; line-height: 1; }
.custom-price { font-size: 2.5rem; }
.period { font-size: 1rem; color: var(--text-muted); margin-left: 4px; }
.price-desc { color: var(--text-muted); font-size: 0.88rem; margin-top: 8px; }

.price-features {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-bottom: 32px;
    padding-bottom: 32px;
    border-bottom: 1px solid var(--border);
}
.price-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    color: var(--text-secondary);
}
.price-features li i { color: var(--teal); font-size: 0.8rem; }

/* ---- CTA Band ---- */
.cta-band { padding: 80px 0; }
.cta-inner {
    padding: 72px 48px;
    text-align: center;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(45, 212, 191, 0.08), rgba(99, 102, 241, 0.08));
    border-color: rgba(45, 212, 191, 0.15);
}
.cta-inner::before {
    content: '';
    position: absolute;
    top: -50%; left: -50%;
    width: 200%; height: 200%;
    background: radial-gradient(circle at 30% 50%, rgba(45, 212, 191, 0.06), transparent 50%),
                radial-gradient(circle at 70% 50%, rgba(99, 102, 241, 0.06), transparent 50%);
    pointer-events: none;
}
.cta-inner h2 { margin-bottom: 16px; }
.cta-inner p { color: var(--text-secondary); font-size: 1.1rem; max-width: 560px; margin: 0 auto 36px; }
.cta-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ---- Contact ---- */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: start;
}
.contact-info h2 { margin: 12px 0 20px; }
.contact-info > p { color: var(--text-secondary); font-size: 1rem; line-height: 1.7; margin-bottom: 36px; }
.contact-cards { display: flex; flex-direction: column; gap: 14px; margin-bottom: 28px; }
.c-card {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 18px 20px;
}
.c-card i {
    color: var(--teal);
    font-size: 1.1rem;
    width: 40px; height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    background: var(--teal-muted);
    flex-shrink: 0;
}
.c-card strong { display: block; font-size: 0.85rem; color: var(--text-muted); font-weight: 500; margin-bottom: 2px; }
.c-card span { font-size: 0.95rem; }

.trust-pills { display: flex; gap: 16px; flex-wrap: wrap; }
.trust-pills span {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.85rem;
    color: var(--teal);
    font-weight: 500;
}

/* Contact Form */
.contact-form-wrap {
    padding: 40px 36px;
    position: relative;
}
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}
.form-group {
    margin-bottom: 18px;
}
.form-group label {
    display: block;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text-secondary);
    margin-bottom: 8px;
}
.form-group input,
.form-group textarea {
    width: 100%;
    padding: 14px 18px;
    border-radius: var(--radius-sm);
    border: 1px solid var(--border);
    background: rgba(6, 5, 24, 0.5);
    color: var(--text);
    font-family: inherit;
    font-size: 0.95rem;
    transition: var(--transition);
    outline: none;
}
.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--teal);
    box-shadow: 0 0 0 3px rgba(45, 212, 191, 0.1);
}
.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-muted);
}
.form-group textarea { resize: vertical; min-height: 120px; }

.form-success {
    text-align: center;
    padding: 60px 20px;
}
.form-success i { font-size: 3rem; color: var(--teal); margin-bottom: 16px; }
.form-success h3 { margin-bottom: 8px; }
.form-success p { color: var(--text-secondary); }

/* ---- Footer ---- */
.footer {
    padding: 64px 0 0;
    border-top: 1px solid var(--border);
    position: relative;
    z-index: 1;
}
.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 48px;
    padding-bottom: 48px;
}
.footer-brand p {
    color: var(--text-muted);
    margin-top: 16px;
    font-size: 0.92rem;
    max-width: 300px;
}
.footer-col h4 {
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--text-muted);
    margin-bottom: 20px;
}
.footer-col li + li { margin-top: 12px; }
.footer-col a {
    font-size: 0.92rem;
    color: var(--text-secondary);
    transition: var(--transition);
}
.footer-col a:hover { color: var(--teal); }
.footer-bottom {
    padding: 24px 0;
    border-top: 1px solid var(--border);
    text-align: center;
    font-size: 0.82rem;
    color: var(--text-muted);
}

/* ---- Scroll-to-top ---- */
.scroll-top {
    position: fixed;
    bottom: 32px; right: 32px;
    width: 48px; height: 48px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    color: var(--teal);
    font-size: 1rem;
    opacity: 0;
    transform: translateY(16px);
    transition: var(--transition);
    z-index: 100;
    pointer-events: none;
}
.scroll-top.visible {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}
.scroll-top:hover {
    background: var(--teal-muted);
    transform: translateY(-2px);
}

/* ---- Animations (scroll reveal) ---- */
.reveal {
    opacity: 0;
    transform: translateY(32px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

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

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (min-width: 769px) {
    .nav-cta-btn { display: inline-flex; }
}

@media (max-width: 1024px) {
    .hero-grid { gap: 48px; }
    .features-grid { grid-template-columns: repeat(2, 1fr); }
    .pricing-grid { grid-template-columns: repeat(2, 1fr); }
    .pricing-grid .price-card:last-child { grid-column: span 2; max-width: 440px; justify-self: center; }
    .benefits-grid { gap: 48px; }
}

@media (max-width: 768px) {
    .section { padding: 80px 0; }

    .hamburger { display: flex; }
    .nav-menu {
        position: fixed;
        inset: 0;
        background: var(--bg-deepest);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 8px;
        opacity: 0;
        pointer-events: none;
        transition: var(--transition);
        z-index: 999;
    }
    .nav-menu.open {
        opacity: 1;
        pointer-events: auto;
    }
    .nav-menu .nav-link { font-size: 1.3rem; padding: 14px 24px; }

    .hero { min-height: auto; padding: 120px 0 60px; }
    .hero-grid { grid-template-columns: 1fr; gap: 48px; }
    .hero-visual { order: 2; }
    .hero-card { max-width: 100%; }
    .floating-badge { display: none; }
    .hero-metrics { flex-wrap: wrap; gap: 20px; }
    .metric-divider { display: none; }

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

    .benefits-grid { grid-template-columns: 1fr; }
    .benefits-visual { position: static; }

    .pricing-grid { grid-template-columns: 1fr; }
    .pricing-grid .price-card:last-child { grid-column: span 1; max-width: none; }

    .contact-grid { grid-template-columns: 1fr; }
    .contact-form-wrap { padding: 28px 20px; }
    .form-row { grid-template-columns: 1fr; }

    .cta-inner { padding: 48px 24px; }

    .footer-grid { grid-template-columns: 1fr; gap: 32px; }
}

@media (max-width: 480px) {
    .container { padding: 0 16px; }
    h1 { font-size: 2.2rem; }
    h2 { font-size: 1.75rem; }
    .btn-lg { padding: 14px 28px; }
}

/* ── FAQ ─────────────────────────────────────────────── */
.faq-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
    max-width: 820px;
    margin: 0 auto;
}
.faq-item {
    padding: 0;
    overflow: hidden;
    border-radius: 16px;
}
.faq-item summary {
    list-style: none;
    cursor: pointer;
    padding: 22px 28px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    user-select: none;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary h3 {
    font-size: 1rem;
    font-weight: 600;
    margin: 0;
    color: var(--text-primary);
}
.faq-item summary::after {
    content: '+';
    font-size: 1.4rem;
    font-weight: 300;
    color: var(--accent);
    flex-shrink: 0;
    transition: transform 0.25s ease;
}
.faq-item[open] summary::after {
    transform: rotate(45deg);
}
.faq-item p {
    padding: 0 28px 22px;
    margin: 0;
    color: var(--text-secondary);
    line-height: 1.7;
    font-size: 0.95rem;
}
