/* Scalyn Tech - Public landing page */

:root {
    --primary: #1597d4;
    --primary-dark: #087db7;
    --primary-light: #dff4ff;
    --navy: #071426;
    --navy-soft: #0d1d33;
    --surface-dark: #12233b;
    --surface-light: #f5f8fc;
    --white: #ffffff;
    --text-dark: #101828;
    --text-light: #eaf3fb;
    --text-muted: #7f93aa;
    --border-dark: rgba(255,255,255,0.10);
    --border-light: #dbe5ef;
    --success: #16a36a;
    --warning: #f4a62a;
    --danger: #dc3545;
    color-scheme: light;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } * { animation-duration: 0.001ms !important; transition-duration: 0.001ms !important; scroll-behavior: auto !important; } }

body {
    margin: 0;
    font-family: 'Inter', 'Manrope', 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
    color: var(--text-dark);
    background: var(--white);
    line-height: 1.6;
    font-size: clamp(15px, 0.95vw + 12px, 17px);
    overflow-x: hidden;
}

a { color: var(--primary-dark); }
img { max-width: 100%; display: block; }
.container { max-width: var(--section-max-width, 1200px); margin: 0 auto; padding: 0 20px; }

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

h1, h2, h3, h4 { line-height: 1.2; margin: 0; font-weight: 700; }
p { margin: 0; }

.btn {
    display: inline-flex; align-items: center; justify-content: center; gap: 8px;
    padding: 14px 28px; border-radius: 12px; font-weight: 600; font-size: 15.5px;
    text-decoration: none; cursor: pointer; border: none; transition: transform .15s ease, box-shadow .15s ease;
    min-height: 48px;
}
.btn-primary { background: linear-gradient(135deg, var(--primary), var(--primary-dark)); color: #fff; box-shadow: 0 12px 28px rgba(21,151,212,0.32); }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 16px 34px rgba(21,151,212,0.4); }
.btn-outline { background: transparent; color: var(--text-light); border: 1.5px solid var(--border-dark); }
.btn-outline:hover { background: rgba(255,255,255,0.08); }
.btn-outline-light { background: transparent; color: var(--text-dark); border: 1.5px solid var(--border-light); }
.btn-outline-light:hover { background: var(--surface-light); }

/* ---------- Logo presentation box ---------- */
.logo-box { display: inline-flex; align-items: center; }
.logo-box--dark { background: var(--white); padding: 10px 16px; border-radius: 14px; box-shadow: 0 8px 20px rgba(0,0,0,0.18); }
.logo-box--light, .logo-box--transparent { background: transparent; }
.logo-img--white { filter: brightness(0) invert(1); }

/* ---------- Header ---------- */
.site-header {
    position: relative;
    z-index: 60;
    padding: 16px 0;
}
.site-header.sticky { position: sticky; top: 0; backdrop-filter: blur(10px); }
.header-inner { display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.header-nav { display: none; align-items: center; gap: 28px; }
@media (min-width: 900px) { .header-nav { display: flex; } }
.header-nav a { color: var(--text-light); text-decoration: none; font-weight: 500; font-size: 14.5px; opacity: .88; }
.header-nav a:hover { opacity: 1; }
.header-actions { display: flex; align-items: center; gap: 12px; }
.header-actions .btn { display: none; }
@media (min-width: 640px) { .header-actions .btn { display: inline-flex; } }

.hamburger {
    display: inline-flex; align-items: center; justify-content: center;
    width: 42px; height: 42px; border-radius: 10px; border: 1.5px solid var(--border-dark);
    background: transparent; color: var(--text-light); cursor: pointer; flex-shrink: 0;
}
@media (min-width: 900px) { .hamburger { display: none; } }

.mobile-nav {
    position: fixed; inset: 0; background: var(--navy); z-index: 70;
    transform: translateX(100%); transition: transform .25s ease;
    display: flex; flex-direction: column; padding: 20px;
}
.mobile-nav.open { transform: translateX(0); }
.mobile-nav-top { display: flex; justify-content: space-between; align-items: center; margin-bottom: 32px; }
.mobile-nav a { color: var(--text-light); text-decoration: none; font-size: 20px; font-weight: 600; padding: 14px 4px; border-bottom: 1px solid var(--border-dark); }
.mobile-nav .btn { margin-top: 20px; }
.mobile-nav-close { background: transparent; border: none; color: var(--text-light); font-size: 26px; cursor: pointer; }

/* ---------- Generic section shell ---------- */
.section { padding: clamp(44px, 9vw, 72px) 0; position: relative; }
.section-inner { max-width: var(--section-max-width, 1200px); margin: 0 auto; padding: 0 20px; }
.section-align-center { text-align: center; }
.section-align-right { text-align: right; }
.eyebrow { display: inline-block; font-size: 12.5px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--primary); margin-bottom: 14px; }
.section-heading { font-size: clamp(26px, 4vw, 42px); margin-bottom: 14px; }
.section-sub { font-size: clamp(15px, 1.4vw, 18px); color: var(--text-muted); max-width: 640px; }
.section-align-center .section-sub { margin-left: auto; margin-right: auto; }

.fade-up { opacity: 0; transform: translateY(24px); transition: opacity .6s ease, transform .6s ease; }
.fade-up.in-view { opacity: 1; transform: none; }

/* ---------- Hero ---------- */
.hero { padding: clamp(64px, 10vw, 120px) 0; color: var(--text-light); }
.hero-content { max-width: 760px; margin: 0 auto; text-align: center; }
.hero-logo { display: flex; justify-content: center; margin-bottom: 22px; }
.hero-headline { font-size: clamp(32px, 5.5vw, 56px); margin-bottom: 20px; letter-spacing: -0.01em; }
.hero-sub { font-size: clamp(16px, 1.6vw, 19px); color: var(--text-muted); margin-bottom: 32px; }
.hero-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; margin-bottom: 36px; }
.hero-meta { display: flex; gap: 24px; justify-content: center; flex-wrap: wrap; font-size: 14px; color: var(--text-muted); }
.hero-meta span { display: inline-flex; align-items: center; gap: 8px; }
.hero-meta i { color: var(--primary); }

.countdown { display: flex; align-items: center; justify-content: center; gap: 10px; margin-top: 32px; flex-wrap: wrap; }
.countdown-item {
    display: flex; flex-direction: column; align-items: center; justify-content: center;
    width: 72px; min-height: 72px; padding: 10px 4px; border-radius: 14px;
    background: rgba(255,255,255,0.05); border: 1px solid var(--border-dark);
}
.countdown-value { font-size: clamp(22px, 4vw, 30px); font-weight: 800; color: var(--text-light); line-height: 1.1; font-variant-numeric: tabular-nums; }
.countdown-label { font-size: 10.5px; font-weight: 600; letter-spacing: .05em; text-transform: uppercase; color: var(--text-muted); margin-top: 4px; }
.countdown-sep { font-size: 22px; font-weight: 700; color: var(--border-dark); }
.countdown-live { margin-top: 20px; font-size: 15px; font-weight: 700; color: var(--primary); }
.countdown--offer { margin: 4px 0 24px; }
.countdown--offer .countdown-item { width: 64px; min-height: 64px; }
@media (max-width: 480px) {
    .countdown { gap: 6px; }
    .countdown-item { width: 62px; min-height: 62px; }
    .countdown-sep { font-size: 18px; }
}

/* ---------- Benefits (animated carousel) ---------- */
.section-divider { display: flex; align-items: center; justify-content: center; margin: 18px 0 8px; }
.section-align-center .section-divider,
.section-inner:not(.section-align-right) .section-divider { justify-content: center; }
.section-divider::before, .section-divider::after {
    content: ""; height: 1px; width: 90px; background: linear-gradient(90deg, transparent, var(--primary), transparent);
}
.section-divider-dot {
    width: 8px; height: 8px; border-radius: 50%; background: var(--primary); margin: 0 10px; flex-shrink: 0;
    box-shadow: 0 0 0 0 rgba(21,151,212,0.55); animation: dividerPulse 2.4s ease-out infinite;
}
@keyframes dividerPulse {
    0% { box-shadow: 0 0 0 0 rgba(21,151,212,0.55); }
    70% { box-shadow: 0 0 0 10px rgba(21,151,212,0); }
    100% { box-shadow: 0 0 0 0 rgba(21,151,212,0); }
}

.benefits-carousel { position: relative; margin-top: 44px; }
.benefits-track {
    display: flex; gap: 22px; overflow-x: auto; scroll-snap-type: x mandatory; scroll-behavior: smooth;
    padding: 6px 2px 22px; margin: 0 -2px; -webkit-overflow-scrolling: touch;
}
.benefits-track::-webkit-scrollbar { height: 6px; }
.benefits-track::-webkit-scrollbar-thumb { background: var(--border-dark); border-radius: 6px; }
.benefits-track:focus-visible { outline: 2px solid var(--primary); outline-offset: 4px; }

.benefit-card {
    scroll-snap-align: start; flex: 0 0 auto; width: min(300px, 78vw);
    background: var(--surface-dark); border: 1px solid var(--border-dark); border-radius: 20px; overflow: hidden;
    box-shadow: 0 1px 2px rgba(0,0,0,0.2); transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
}
.benefit-card:hover { transform: translateY(-8px); box-shadow: 0 24px 48px rgba(0,0,0,0.4); border-color: rgba(21,151,212,0.4); }

.benefit-media { position: relative; aspect-ratio: 4 / 3; overflow: hidden; background: var(--navy-soft); }
.benefit-media img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .5s ease; }
.benefit-card:hover .benefit-media img { transform: scale(1.08); }
.benefit-number {
    position: absolute; top: 14px; left: 14px; padding: 5px 12px; border-radius: 999px; font-size: 12.5px; font-weight: 700;
    letter-spacing: .04em; color: var(--text-light); background: rgba(7,20,38,0.65); backdrop-filter: blur(4px);
    border: 1px solid rgba(255,255,255,0.15);
}
.benefit-icon {
    position: absolute; left: 20px; bottom: -22px; width: 46px; height: 46px; border-radius: 50%;
    display: flex; align-items: center; justify-content: center; font-size: 20px;
    background: var(--surface-dark); border: 1px solid var(--border-dark); box-shadow: 0 8px 20px rgba(0,0,0,0.35);
    color: var(--primary); transition: transform .3s ease;
}
.benefit-card:hover .benefit-icon { transform: scale(1.1) rotate(-6deg); }
.benefit-icon--danger { color: #ff6b5e; }

.benefit-body { padding: 34px 22px 26px; }
.benefit-title { font-size: 18px; margin-bottom: 8px; color: var(--text-light); }
.benefit-desc { color: var(--text-muted); font-size: 14.5px; }
.benefit-underline { display: block; width: 34px; height: 3px; border-radius: 3px; margin-top: 18px; background: var(--primary); transition: width .3s ease; }
.benefit-underline--danger { background: #ff6b5e; }
.benefit-card:hover .benefit-underline { width: 60px; }

.carousel-arrow {
    position: absolute; top: 42%; transform: translateY(-50%); width: 44px; height: 44px; border-radius: 50%;
    background: var(--surface-dark); border: 1px solid var(--border-dark); color: var(--text-light);
    display: flex; align-items: center; justify-content: center; font-size: 18px; cursor: pointer; z-index: 2;
    box-shadow: 0 8px 20px rgba(0,0,0,0.3); transition: background .2s ease, transform .2s ease;
}
.carousel-arrow:hover { background: var(--primary); transform: translateY(-50%) scale(1.08); }
.carousel-arrow--prev { left: -8px; }
.carousel-arrow--next { right: -8px; }
@media (max-width: 720px) { .carousel-arrow { display: none; } }

.carousel-dots { display: flex; justify-content: center; gap: 8px; margin-top: 6px; }
.carousel-dots button {
    width: 8px; height: 8px; border-radius: 50%; border: none; padding: 0; background: var(--border-dark); cursor: pointer;
    transition: background .25s ease, width .25s ease;
}
.carousel-dots button.active { background: var(--primary); width: 22px; border-radius: 4px; }

/* ---------- Audience ---------- */
.audience-tags { display: flex; flex-wrap: wrap; justify-content: center; gap: 12px; margin-top: 36px; }
.audience-tag {
    padding: 12px 22px; border-radius: 999px; background: var(--surface-light); border: 1px solid var(--border-light);
    font-weight: 600; font-size: 14.5px; color: var(--text-dark);
}

/* ---------- Host ---------- */
.host-deco-line { display: inline-block; width: 70px; height: 1px; background: linear-gradient(90deg, transparent, var(--primary), transparent); vertical-align: middle; }
.host-deco-line--short { width: 40px; }
.host-heading-serif { font-family: 'Playfair Display', Georgia, serif; font-size: clamp(30px, 4.5vw, 46px); }

.host-photo-ring {
    width: 220px; height: 220px; border-radius: 50%; border: 1.5px solid rgba(21,151,212,0.45);
    display: flex; align-items: center; justify-content: center; margin: 0 auto 20px;
    box-shadow: 0 0 50px rgba(21,151,212,0.18); position: relative; z-index: 1;
    transition: transform .4s ease, z-index 0s;
}
.host-photo { width: 182px; height: 182px; object-fit: cover; flex-shrink: 0; background: var(--surface-light); }
.host-photo.circle { border-radius: 50%; border: 3px solid var(--primary); }
.host-photo-ring:hover { transform: scale(2); z-index: 5; }

.host-name-serif { font-family: 'Playfair Display', Georgia, serif; font-size: 26px; font-weight: 700; color: var(--text-light); margin-bottom: 10px; }
.host-title-wrap { display: flex; align-items: center; justify-content: center; gap: 12px; margin-bottom: 30px; }
.host-title { color: var(--primary); font-weight: 600; font-size: 16px; white-space: normal; }

.host-badges {
    display: inline-flex; flex-wrap: wrap; justify-content: center; border: 1px solid var(--border-dark); border-radius: 999px;
    padding: 6px 6px; background: rgba(255,255,255,0.02); margin-bottom: 34px;
}
.host-badge { display: flex; align-items: center; gap: 9px; padding: 10px 20px; position: relative; }
.host-badge:not(:last-child)::after { content: ""; position: absolute; right: 0; top: 22%; bottom: 22%; width: 1px; background: var(--border-dark); }
.host-badge-icon {
    width: 26px; height: 26px; border-radius: 50%; border: 1.5px solid var(--primary); color: var(--primary);
    display: inline-flex; align-items: center; justify-content: center; font-size: 12.5px; flex-shrink: 0;
}
.host-badge-label { font-size: 12px; font-weight: 700; letter-spacing: .03em; text-transform: uppercase; color: var(--text-light); white-space: nowrap; }

.host-quote-card {
    position: relative; max-width: 780px; margin: 0 auto; background: rgba(255,255,255,0.02); border: 1px solid var(--border-dark);
    border-radius: 20px; padding: clamp(28px, 4vw, 40px) clamp(24px, 5vw, 46px) 30px;
}
.host-quote-mark { position: absolute; top: 10px; left: 22px; font-family: 'Playfair Display', Georgia, serif; font-size: 48px; line-height: 1; color: var(--primary); opacity: .9; }
.host-quote-text { font-size: 16px; line-height: 1.75; color: var(--text-light); text-align: center; }
.host-quote-underline { display: block; width: 60px; height: 3px; border-radius: 3px; background: var(--primary); margin: 20px auto 0; }

@media (max-width: 560px) {
    .host-deco-line { width: 34px; }
    .host-photo-ring { width: 170px; height: 170px; }
    .host-photo { width: 138px; height: 138px; }
    .host-badges { border-radius: 24px; }
    .host-badge { padding: 8px 14px; }
    .host-badge:not(:last-child)::after { display: none; }
}

/* ---------- Testimonials ---------- */
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-top: 44px; }
@media (max-width: 980px) { .testimonials-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 680px) { .testimonials-grid { grid-template-columns: 1fr; } }
.testimonial-card { background: var(--white); border: 1px solid var(--border-light); border-radius: 18px; padding: 26px; }
.testimonial-quote { color: var(--text-dark); font-size: 15px; margin-bottom: 20px; }
.testimonial-quote::before { content: "\201C"; color: var(--primary); font-size: 30px; font-weight: 700; display: block; line-height: 1; margin-bottom: 4px; }
.testimonial-person { display: flex; align-items: center; gap: 12px; }
.testimonial-avatar { width: 42px; height: 42px; border-radius: 50%; object-fit: cover; background: var(--primary-light); }
.testimonial-name { font-weight: 700; font-size: 14px; }
.testimonial-position { color: var(--text-muted); font-size: 12.5px; }

/* ---------- Offer ---------- */
.offer-card {
    max-width: 720px; margin: 40px auto 0; padding: clamp(22px, 5vw, 36px); border-radius: 20px; text-align: center;
    background: linear-gradient(135deg, rgba(21,151,212,0.12), rgba(8,125,183,0.06));
    border: 1px solid rgba(21,151,212,0.25);
}
.offer-label { display: inline-block; background: var(--primary); color: #fff; font-size: 12px; font-weight: 700; letter-spacing: .05em; padding: 6px 14px; border-radius: 999px; margin-bottom: 16px; }
.offer-title { font-size: clamp(20px, 3vw, 30px); margin-bottom: 10px; }
.offer-desc { color: var(--text-muted); margin-bottom: 20px; }
.offer-pricing { display: flex; flex-wrap: wrap; align-items: baseline; justify-content: center; gap: 6px 10px; margin-bottom: 8px; }
.offer-original { text-decoration: line-through; color: var(--text-muted); font-size: clamp(14px, 3vw, 18px); }
.offer-discounted { font-size: clamp(26px, 6vw, 38px); font-weight: 800; color: var(--primary-dark); }
.offer-valid { font-size: 13px; color: var(--text-muted); margin-bottom: 22px; }

/* ---------- Subscription / Registration forms ---------- */
.form-card { max-width: 560px; margin: 40px auto 0; background: var(--white); border-radius: 20px; padding: clamp(24px, 4vw, 40px); box-shadow: 0 30px 60px rgba(7,20,38,0.12); border: 1px solid var(--border-light); }
.form-intro { color: var(--text-muted); margin-bottom: 24px; text-align: center; font-size: 14.5px; }
.form-field { margin-bottom: 18px; text-align: left; }
.form-field label { display: block; font-weight: 600; font-size: 13.5px; margin-bottom: 6px; }
.form-field label .field-optional { font-weight: 400; color: var(--text-muted); text-transform: none; letter-spacing: 0; }
.form-helper-text { text-align: center; font-size: 12.5px; color: var(--text-muted); margin-top: 16px; }
.form-field input[type="text"], .form-field input[type="email"], .form-field input[type="tel"], .form-field select, .form-field textarea {
    width: 100%; padding: 13px 15px; border-radius: 10px; border: 1.5px solid var(--border-light); font-size: 16px; font-family: inherit;
}
.form-field input:focus, .form-field select:focus, .form-field textarea:focus { outline: none; border-color: var(--primary); box-shadow: 0 0 0 3px rgba(21,151,212,0.15); }
.form-field textarea { resize: vertical; min-height: 90px; }
.form-check { display: flex; align-items: flex-start; gap: 10px; font-size: 13.5px; color: var(--text-muted); margin-bottom: 20px; text-align: left; }
.form-check input { margin-top: 3px; flex-shrink: 0; width: 16px; height: 16px; }
.form-error { color: var(--danger); font-size: 12.5px; margin-top: 6px; }
.form-success { background: #e8f8f1; border: 1px solid #b9e8d3; border-radius: 14px; padding: 30px 22px; text-align: center; }
.form-success-icon {
    width: 52px; height: 52px; line-height: 52px; border-radius: 50%; background: #16a36a; color: #fff;
    font-size: 24px; font-weight: 700; margin: 0 auto 16px;
}
.form-success-heading { font-size: 19px; font-weight: 700; color: #0d7a4f; margin-bottom: 8px; }
.form-success-message { font-size: 14.5px; color: #0d7a4f; opacity: .9; margin: 0 auto; max-width: 380px; }
.form-submit-error { background: #fdecee; color: #a5182a; border: 1px solid #f6c4cb; border-radius: 10px; padding: 14px 16px; font-size: 13.5px; margin-bottom: 18px; }
.form-closed-notice { background: #f5f8fc; color: var(--text-muted); border: 1px solid #dbe5ef; border-radius: 10px; padding: 18px 16px; font-size: 14px; text-align: center; }
.honeypot-field { position: absolute; left: -9999px; opacity: 0; height: 0; width: 0; overflow: hidden; }
.btn-loading { opacity: .7; pointer-events: none; }

/* ---------- Subscribe (newsletter) card ---------- */
.subscribe-card {
    background: #eef1f6; border: 1px solid var(--border-light); border-radius: 24px;
    padding: clamp(28px, 4vw, 44px); box-shadow: 0 20px 50px rgba(0,0,0,0.18);
}
.subscribe-top { display: flex; align-items: center; gap: 30px; flex-wrap: wrap; margin-bottom: 30px; }
.subscribe-icon-wrap { position: relative; width: 130px; height: 110px; flex-shrink: 0; }
.subscribe-icon-circle {
    position: absolute; left: 10px; top: 0; width: 110px; height: 110px; border-radius: 50%;
    background: var(--primary-light); color: var(--primary); display: flex; align-items: center; justify-content: center;
    font-size: 40px;
}
.subscribe-icon-bell {
    position: absolute; left: 92px; top: -6px; width: 38px; height: 38px; border-radius: 50%;
    background: var(--primary); color: #fff; display: flex; align-items: center; justify-content: center;
    font-size: 16px; box-shadow: 0 6px 14px rgba(21,151,212,0.4);
}
.subscribe-dot { position: absolute; width: 8px; height: 8px; border-radius: 50%; background: var(--primary); opacity: .5; }
.subscribe-dot--1 { left: 0; top: 18px; }
.subscribe-dot--2 { left: 118px; top: 66px; }
.subscribe-plus { position: absolute; left: 4px; top: 74px; color: var(--primary); font-weight: 800; font-size: 20px; opacity: .6; }
.subscribe-copy { flex: 1; min-width: 240px; }
.subscribe-heading { font-size: clamp(24px, 3.2vw, 34px); color: var(--text-dark); margin-bottom: 10px; }
.subscribe-sub { font-size: 15px; color: var(--text-muted); max-width: 460px; }

.subscribe-form-row { display: flex; gap: 14px; flex-wrap: wrap; }
.subscribe-input-wrap {
    flex: 1 1 200px; display: flex; align-items: center; gap: 10px; border: 1.5px solid var(--border-light);
    border-radius: 12px; padding: 0 16px; background: #f8f9fb;
}
.subscribe-input-wrap i { color: var(--text-muted); font-size: 16px; flex-shrink: 0; }
.subscribe-input-wrap input {
    flex: 1; min-width: 0; border: none; outline: none; padding: 16px 0; font-size: 16px; font-family: inherit; background: transparent; color: var(--text-dark);
}
.subscribe-input-wrap:focus-within { border-color: var(--primary); box-shadow: 0 0 0 3px rgba(21,151,212,0.15); }
.subscribe-submit { flex: 0 0 auto; white-space: nowrap; }

.subscribe-privacy {
    display: flex; align-items: center; justify-content: center; gap: 8px; margin-top: 24px;
    font-size: 13.5px; color: var(--text-muted); text-align: center;
}
.subscribe-privacy i { color: var(--primary); font-size: 15px; }
.subscribe-privacy a { color: var(--primary); text-decoration: none; font-weight: 600; }
.subscribe-privacy a:hover { text-decoration: underline; }

@media (max-width: 640px) {
    .subscribe-top { flex-direction: column; text-align: center; }
    .subscribe-copy { text-align: center; }
    .subscribe-sub { margin: 0 auto; }
    .subscribe-form-row { flex-direction: column; }
    /* flex-basis applies to height once the row above becomes a column -
       without this override the 200px basis meant for width blows up into
       200px-tall input boxes. */
    .subscribe-input-wrap { flex: 1 1 auto; width: 100%; }
    .subscribe-submit { width: 100%; }
}

/* ---------- FAQ ---------- */
.faq-list { max-width: 780px; margin: 40px auto 0; }
.faq-item { border: 1px solid var(--border-light); border-radius: 14px; margin-bottom: 12px; overflow: hidden; }
.faq-question {
    width: 100%; text-align: left; background: var(--white); border: none; padding: 18px 22px; font-weight: 600; font-size: 15.5px;
    display: flex; justify-content: space-between; align-items: center; gap: 12px; cursor: pointer; color: var(--text-dark);
}
.faq-question i { transition: transform .2s ease; color: var(--text-muted); flex-shrink: 0; }
.faq-question[aria-expanded="true"] i { transform: rotate(180deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height .25s ease; }
.faq-answer-inner { padding: 0 22px 18px; color: var(--text-muted); font-size: 14.5px; }

/* ---------- Footer ---------- */
.site-footer { padding: 36px 0; color: var(--text-light); }
/* The floating WhatsApp button is fixed to the bottom-right corner, so on
   narrow screens it permanently sits on top of this footer's centered text
   once scrolled all the way down. Reserve clear space below it so the
   copyright line stays visible above the button's footprint. */
@media (max-width: 700px) { .site-footer { padding-bottom: 96px; } }
.footer-simple { text-align: center; font-size: 13px; color: var(--text-muted); display: flex; flex-direction: column; gap: 4px; }
.footer-powered-by { font-size: 11.5px; opacity: .75; }

/* ---------- Dark section modifier (cards/forms designed for light bg, adapted for dark) ---------- */
.section--dark .section-heading { color: var(--text-light); }
.section--dark .section-sub { color: var(--text-muted); }
.section--dark .benefit-card { background: var(--surface-dark); border-color: var(--border-dark); }
.section--dark .benefit-title { color: var(--text-light); }
.section--dark .audience-tag { background: var(--surface-dark); border-color: var(--border-dark); color: var(--text-light); }
.section--dark .testimonial-card { background: var(--surface-dark); border-color: var(--border-dark); }
.section--dark .testimonial-quote { color: var(--text-light); }
.section--dark .testimonial-name { color: var(--text-light); }
.section--dark .testimonial-avatar { background: var(--navy-soft); color: var(--text-light) !important; }
.section--dark .form-card { background: var(--surface-dark); border-color: var(--border-dark); box-shadow: 0 30px 60px rgba(0,0,0,0.4); }
.section--dark .form-field label { color: var(--text-light); }
.section--dark .form-field input, .section--dark .form-field select, .section--dark .form-field textarea {
    background: var(--navy-soft); border-color: var(--border-dark); color: var(--text-light);
}
.section--dark .form-field input::placeholder, .section--dark .form-field textarea::placeholder { color: var(--text-muted); }
.section--dark .form-helper-text { color: var(--text-muted); }
.section--dark .faq-item { border-color: var(--border-dark); }
.section--dark .faq-question { background: var(--surface-dark); color: var(--text-light); }
.section--dark .faq-question i { color: var(--text-muted); }
.section--dark .faq-answer-inner { color: var(--text-muted); }

/* ---------- Cookie notice ---------- */
.cookie-notice {
    position: fixed; left: 20px; right: 20px; bottom: 20px; max-width: 480px; margin: 0 auto;
    background: var(--navy); color: var(--text-light); border-radius: 16px; padding: 20px 22px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.3); z-index: 90; display: none;
}
.cookie-notice.show { display: block; }
.cookie-notice p { font-size: 13.5px; color: var(--text-muted); margin-bottom: 14px; }
.cookie-notice .btn { padding: 10px 18px; font-size: 13.5px; min-height: auto; }

/* ---------- WhatsApp floating widget ---------- */
.whatsapp-widget { position: fixed; right: 20px; bottom: 20px; z-index: 95; display: flex; flex-direction: column; align-items: flex-end; gap: 14px; transition: bottom .2s ease; }
/* Below ~700px the cookie notice spans near-full-width (left:20;right:20 with
   only a 480px cap), overlapping the bottom-right WhatsApp button - lift the
   button above the banner while it's showing. Wider viewports naturally clear
   it already since the banner becomes a centered, narrower box. */
@media (max-width: 700px) {
    body.has-cookie-notice .whatsapp-widget { bottom: 168px; }
}
.whatsapp-fab {
    width: 58px; height: 58px; border-radius: 50%; background: #25d366; color: #fff; border: none; cursor: pointer;
    display: inline-flex; align-items: center; justify-content: center; font-size: 28px;
    box-shadow: 0 10px 26px rgba(0,0,0,0.3); transition: transform .15s ease;
}
.whatsapp-fab:hover { transform: scale(1.06); }
.whatsapp-popup {
    width: min(320px, calc(100vw - 40px)); background: var(--white); border-radius: 16px; box-shadow: 0 20px 50px rgba(0,0,0,0.3);
    padding: 18px; opacity: 0; transform: translateY(12px) scale(.97); pointer-events: none; transition: opacity .18s ease, transform .18s ease;
}
.whatsapp-popup.open { opacity: 1; transform: none; pointer-events: auto; }
.whatsapp-popup-head { display: flex; align-items: center; gap: 10px; margin-bottom: 12px; }
.whatsapp-popup-icon { width: 40px; height: 40px; border-radius: 50%; background: #25d366; color: #fff; display: inline-flex; align-items: center; justify-content: center; font-size: 20px; flex-shrink: 0; }
.whatsapp-popup-titles { flex: 1; min-width: 0; }
.whatsapp-popup-title { font-weight: 700; font-size: 14.5px; color: var(--text-dark); }
.whatsapp-popup-status { font-size: 12px; color: var(--text-muted); }
.whatsapp-popup-close { background: transparent; border: none; font-size: 20px; line-height: 1; color: var(--text-muted); cursor: pointer; padding: 2px 4px; flex-shrink: 0; }
.whatsapp-popup-msg { font-size: 13.5px; color: var(--text-dark); margin-bottom: 14px; }
.whatsapp-start-btn { width: 100%; background: linear-gradient(135deg, #25d366, #1da851); box-shadow: 0 10px 22px rgba(37,211,102,0.35); }
.whatsapp-actions { display: flex; flex-direction: column; gap: 8px; }
.whatsapp-action-item {
    display: flex; align-items: center; gap: 12px; padding: 10px 12px; border-radius: 12px;
    background: var(--bg-body); text-decoration: none; transition: background .15s ease;
}
.whatsapp-action-item:hover { background: #eaf7f0; }
.whatsapp-action-icon {
    width: 38px; height: 38px; border-radius: 50%; background: linear-gradient(135deg, #25d366, #1da851); color: #fff;
    display: inline-flex; align-items: center; justify-content: center; font-size: 17px; flex-shrink: 0;
}
.whatsapp-action-text { flex: 1; min-width: 0; }
.whatsapp-action-title { display: block; font-weight: 700; font-size: 13.5px; color: var(--text-dark); }
.whatsapp-action-sub { display: block; font-size: 11.5px; color: var(--text-muted); margin-top: 1px; }
.whatsapp-action-arrow { font-size: 13px; color: var(--text-muted); flex-shrink: 0; }
@media (max-width: 480px) { .whatsapp-widget { right: 14px; bottom: 14px; } .whatsapp-fab { width: 52px; height: 52px; font-size: 25px; } }

/* ---------- Utility ---------- */
.mt-0 { margin-top: 0; }
.visually-hidden { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; }
