/*
 * landing.css — Homepage — Layout editoriale, non simmetrico
 * Palette: bianco caldo + corallo #E36D62 + blu #0069AA
 */

/* ── BASE ─────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body.page-landing {
    font-family: var(--font-body);
    background: var(--c-bg);
    color: var(--c-text);
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

/* Noise texture globale — fa sembrare tutto meno digitale */
body.page-landing::before {
    content: '';
    position: fixed; inset: 0; z-index: 1000;
    pointer-events: none;
    opacity: 0.025;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
    background-size: 200px 200px;
}

/* Font script utility */
.script {
    font-family: var(--font-script);
    font-style: normal;
}

/* ── SVG ICONS (condivise) ────────────────────────────────── */
.icon { display:inline-block; width:var(--icon-md); height:var(--icon-md); vertical-align:middle; flex-shrink:0; stroke:currentColor; fill:none; }
.icon--xs { width:var(--icon-xs); height:var(--icon-xs); }
.icon--sm { width:var(--icon-sm); height:var(--icon-sm); }
.icon--lg { width:var(--icon-lg); height:var(--icon-lg); }
.icon--xl { width:var(--icon-xl); height:var(--icon-xl); }
.icon-coral { color:var(--c-coral); }
.icon-blue  { color:var(--c-blue); }
.icon-muted { color:var(--c-text-muted); }

/* ── HEADER ───────────────────────────────────────────────── */
.landing-header {
    position: fixed; top: 0; left: 0; right: 0; z-index: 200;
    height: var(--header-h);
    display: flex; align-items: center; justify-content: space-between;
    padding: 0 clamp(var(--sp-4), 5vw, var(--sp-10));
    background: rgba(255,255,255,0.9);
    backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
    border-bottom: 1px solid var(--c-border);
    transition: box-shadow var(--t-mid);
}
.landing-header.scrolled { box-shadow: var(--shadow-sm); }

.header-logo {
    font-family: var(--font-display); font-size: var(--fs-xl); font-weight: 800;
    color: var(--c-coral); text-decoration: none; letter-spacing: 0.01em;
    display: flex; align-items: center; gap: var(--sp-2);
}

.header-nav { display: flex; align-items: center; gap: var(--sp-5); }
.header-nav a {
    font-size: var(--fs-xs); font-weight: 600; letter-spacing: 0.07em; text-transform: uppercase;
    color: var(--c-text-muted); text-decoration: none; transition: color var(--t-fast);
}
.header-nav a:hover { color: var(--c-coral); }

.btn-nav-login {
    border: 1.5px solid var(--c-coral) !important; color: var(--c-coral) !important;
    border-radius: var(--r-pill); padding: var(--sp-2) var(--sp-5) !important;
    background: transparent !important; font-weight: 700 !important;
    transition: all var(--t-fast) !important;
}
.btn-nav-login:hover { background: var(--c-coral) !important; color: #fff !important; }

.btn-nav-cta {
    background: var(--c-coral) !important; color: #fff !important;
    border-radius: var(--r-pill); padding: var(--sp-2) var(--sp-5) !important;
    border: none !important; font-weight: 700 !important;
    box-shadow: var(--shadow-coral);
    transition: all var(--t-fast) !important;
}
.btn-nav-cta:hover { background: var(--c-coral-dark) !important; transform: translateY(-1px); }

/* ── HERO — LAYOUT A DUE COLONNE ASIMMETRICO ─────────────── */
.hero {
    min-height: 100vh;
    display: grid;
    grid-template-columns: 1fr 420px;
    grid-template-rows: 1fr;
    align-items: center;
    gap: var(--sp-8);
    padding: calc(var(--header-h) + var(--sp-12)) clamp(var(--sp-4), 6vw, var(--sp-12)) var(--sp-12);
    background: var(--c-bg-warm);
    position: relative; overflow: hidden;
}

/* Linea decorativa verticale sfondo */
.hero::before {
    content: '';
    position: absolute; top: 0; bottom: 0;
    left: calc(50% + 60px); width: 1px;
    background: linear-gradient(to bottom, transparent 5%, var(--c-border) 30%, var(--c-border) 70%, transparent 95%);
    opacity: 0.6;
}

.hero-bubbles { position: absolute; inset: 0; pointer-events: none; }
.bubble { position: absolute; border-radius: 50%; background: rgba(227,109,98,0.1); animation: bubble-rise linear infinite; }

/* ── HERO TEXT (colonna sinistra) ─────────────────────────── */
.hero-text { max-width: 560px; }

.hero-edition {
    display: inline-flex; align-items: center; gap: var(--sp-2);
    font-size: var(--fs-xs); font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase;
    color: var(--c-coral); margin-bottom: var(--sp-5);
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(2.6rem, 4.5vw, 4rem);
    font-weight: 800; line-height: 1.12; color: var(--c-text);
    margin-bottom: var(--sp-6); letter-spacing: 0.01em;
}

/* La parola in script è più grande e spostandosi verso destra */
.hero-title .script {
    font-size: 1.15em;
    color: var(--c-coral);
    display: block;
    margin-top: var(--sp-1);
    padding-left: var(--sp-3);
}

.hero-sub {
    font-size: var(--fs-lg); font-weight: 300; color: var(--c-text-muted);
    line-height: 1.75; margin-bottom: var(--sp-8); max-width: 480px;
}

.hero-actions {
    display: flex; gap: var(--sp-4); align-items: center; flex-wrap: wrap;
    margin-bottom: var(--sp-4);
}

.btn-hero-primary {
    display: inline-flex; align-items: center; gap: var(--sp-2);
    background: var(--c-coral); color: #fff;
    border: none; border-radius: var(--r-pill);
    padding: var(--sp-4) var(--sp-8);
    font-family: var(--font-body); font-size: var(--fs-base); font-weight: 700;
    letter-spacing: 0.05em; text-decoration: none; cursor: pointer;
    box-shadow: var(--shadow-coral);
    transition: all var(--t-fast);
}
.btn-hero-primary:hover { background: var(--c-coral-dark); transform: translateY(-2px); box-shadow: 0 8px 28px rgba(227,109,98,0.4); }

.btn-hero-ghost {
    font-size: var(--fs-sm); font-weight: 600; color: var(--c-text-muted);
    text-decoration: none; letter-spacing: 0.03em;
    border-bottom: 1px solid var(--c-border);
    transition: color var(--t-fast), border-color var(--t-fast);
    padding-bottom: 2px;
}
.btn-hero-ghost:hover { color: var(--c-coral); border-color: var(--c-coral); }

.hero-note {
    font-size: var(--fs-xs); color: var(--c-text-faint); letter-spacing: 0.04em;
}

/* ── HERO DECO (colonna destra, fuori griglia standard) ───── */
.hero-deco {
    position: relative; height: 360px;
    display: flex; flex-direction: column; justify-content: center;
    gap: var(--sp-4);
}

.deco-card {
    background: var(--c-bg); border: 1px solid var(--c-border);
    border-radius: var(--r-xl); padding: var(--sp-5) var(--sp-6);
    box-shadow: var(--shadow-sm);
    display: flex; flex-direction: column; gap: var(--sp-1);
    transition: transform var(--t-mid), box-shadow var(--t-mid);
}
.deco-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }

/* Ogni card ha una rotazione leggermente diversa */
.deco-card--1 { transform: rotate(-1.5deg); }
.deco-card--1:hover { transform: rotate(-1.5deg) translateY(-3px); }
.deco-card--2 { transform: rotate(1deg); margin-left: var(--sp-8); }
.deco-card--2:hover { transform: rotate(1deg) translateY(-3px); }
.deco-card--3 {
    transform: rotate(-0.5deg); align-items: center;
    background: rgba(227,109,98,0.04); border-color: rgba(227,109,98,0.2);
}
.deco-card--3:hover { transform: rotate(-0.5deg) translateY(-3px); }

.deco-num {
    font-size: var(--fs-3xl); font-weight: 700;
    color: var(--c-coral); line-height: 1;
}
.deco-label {
    font-size: var(--fs-xs); font-weight: 600; text-transform: uppercase;
    letter-spacing: 0.1em; color: var(--c-text-muted);
}

.deco-line {
    position: absolute; right: -20px; top: 20%; bottom: 20%;
    width: 2px; background: linear-gradient(to bottom, transparent, var(--c-coral) 40%, var(--c-blue) 60%, transparent);
    opacity: 0.3;
}

/* ── WAVE DIVIDERS ────────────────────────────────────────── */
.wave-divider { line-height: 0; margin-bottom: -1px; }
.wave-divider svg { display: block; width: 100%; height: 60px; }
.wave-divider--into-coral { background: var(--c-bg-soft); }
.wave-divider--out-coral  { background: var(--c-bg); }

/* ── STATS ROW ────────────────────────────────────────────── */
.stats-row {
    background: var(--c-bg-soft);
    display: flex; align-items: center; justify-content: center; flex-wrap: wrap;
    gap: var(--sp-6);
    padding: var(--sp-8) clamp(var(--sp-4), 5vw, var(--sp-12));
    border-top: 1px solid var(--c-border);
    border-bottom: 1px solid var(--c-border);
}
.stat-item { text-align: center; }
.stat-num  { display: block; font-size: var(--fs-3xl); font-weight: 700; color: var(--c-coral); line-height: 1; }
.stat-lbl  { display: block; font-size: var(--fs-xs); font-weight: 600; text-transform: uppercase; letter-spacing: 0.1em; color: var(--c-text-muted); margin-top: var(--sp-1); }
.stat-sep  { font-size: var(--fs-2xl); color: var(--c-border); font-weight: 300; user-select: none; }

/* ── COME FUNZIONA — LAYOUT LISTA ─────────────────────────── */
.section-steps {
    padding: var(--sp-16) clamp(var(--sp-4), 7vw, var(--sp-16));
    max-width: 1100px; margin: 0 auto;
    background: var(--c-bg-soft);
}

/* Label editoriale piccola sopra il titolo */
.section-label {
    font-size: var(--fs-xs); font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase;
    color: var(--c-coral); margin-bottom: var(--sp-3);
}
.section-label--light { color: rgba(255,255,255,0.7); }

.section-heading {
    font-family: var(--font-display); font-size: clamp(2rem, 4vw, 3.2rem);
    font-weight: 700; line-height: 1.18; color: var(--c-text);
    margin-bottom: var(--sp-10);
}
.section-heading .script { color: var(--c-coral); font-size: 1.1em; }
.section-heading--light  { color: #fff; }
.section-heading--light .script { color: rgba(255,255,255,0.85); }

.steps-list { display: flex; flex-direction: column; gap: var(--sp-1); }

.step-row {
    display: grid; grid-template-columns: 64px 56px 1fr;
    align-items: start; gap: var(--sp-6);
    padding: var(--sp-6) 0;
    border-bottom: 1px solid var(--c-border);
    transition: background var(--t-fast);
}
.step-row:last-child { border-bottom: none; }
.step-row:hover { background: rgba(227,109,98,0.02); }

.step-n {
    font-family: var(--font-display); font-size: var(--fs-3xl); font-weight: 800;
    color: var(--c-text-faint); line-height: 1; padding-top: 2px;
    letter-spacing: -0.02em;
}

.step-icon-wrap {
    width: 56px; height: 56px;
    display: flex; align-items: center; justify-content: center;
    background: rgba(227,109,98,0.06);
    border: 1px solid rgba(227,109,98,0.15); border-radius: var(--r-lg);
    color: var(--c-coral); flex-shrink: 0;
    transition: background var(--t-fast), border-color var(--t-fast);
}
.step-row:hover .step-icon-wrap { background: rgba(227,109,98,0.1); border-color: rgba(227,109,98,0.3); }

.step-content h3 {
    font-family: var(--font-display); font-size: var(--fs-lg); font-weight: 700;
    color: var(--c-text); margin-bottom: var(--sp-2); line-height: 1.3;
}
.step-content p {
    font-size: var(--fs-sm); font-weight: 300; color: var(--c-text-muted);
    line-height: 1.75; max-width: 520px;
}

/* ── SEZIONE CORAL INVERTITA ──────────────────────────────── */
.section-coral {
    background: var(--c-coral);
    padding: var(--sp-12) 0 var(--sp-16);
    position: relative;
}

.coral-inner {
    max-width: 1100px; margin: 0 auto;
    padding: 0 clamp(var(--sp-4), 7vw, var(--sp-16));
    display: grid; grid-template-columns: 1fr 1.1fr; gap: var(--sp-10); align-items: start;
}

.coral-text {}
.coral-desc {
    font-size: var(--fs-base); font-weight: 300; color: rgba(255,255,255,0.8);
    line-height: 1.75; max-width: 420px;
}

/* Due colonne bonus/malus su fondo coral */
.coral-events {
    display: grid; grid-template-columns: 1fr 1fr; gap: var(--sp-4);
}

.ce-col {
    background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.2);
    border-radius: var(--r-xl); overflow: hidden;
    backdrop-filter: blur(8px);
}

.ce-header {
    padding: var(--sp-4) var(--sp-5);
    border-bottom: 1px solid rgba(255,255,255,0.15);
    display: flex; align-items: center; gap: var(--sp-2);
    font-weight: 700; font-size: var(--fs-sm); letter-spacing: 0.08em; text-transform: uppercase;
    color: rgba(255,255,255,0.9);
    background: rgba(255,255,255,0.07);
}
.ce-col--malus .ce-header { background: rgba(0,0,0,0.07); }

.ce-list {
    list-style: none; padding: var(--sp-2) 0;
}
.ce-list li {
    display: flex; justify-content: space-between; align-items: center;
    padding: var(--sp-3) var(--sp-5);
    border-bottom: 1px solid rgba(255,255,255,0.08);
    font-size: var(--fs-sm);
}
.ce-list li:last-child { border-bottom: none; }
.ce-list li span  { color: rgba(255,255,255,0.75); }
.ce-list li strong {
    font-weight: 800; font-size: var(--fs-base);
    background: rgba(255,255,255,0.15); color: #fff;
    padding: 2px var(--sp-3); border-radius: var(--r-pill);
    white-space: nowrap;
}

/* ── CTA FINALE ───────────────────────────────────────────── */
.section-cta {
    max-width: 1100px; margin: 0 auto;
    padding: var(--sp-16) clamp(var(--sp-4), 7vw, var(--sp-16));
    display: grid; grid-template-columns: 1fr 380px; gap: var(--sp-12); align-items: center;
}

.cta-title {
    font-family: var(--font-display); font-size: clamp(2rem, 3.5vw, 3rem);
    font-weight: 700; color: var(--c-text); line-height: 1.2; margin-bottom: var(--sp-4);
}
.cta-title .script { color: var(--c-coral); font-size: 1.15em; }

.cta-sub {
    font-size: var(--fs-base); font-weight: 300; color: var(--c-text-muted);
    line-height: 1.7; margin-bottom: var(--sp-8);
}

.cta-actions { display: flex; gap: var(--sp-4); }

/* Card citazione editoriale */
.cta-deco-card {
    background: var(--c-bg-warm); border: 1px solid var(--c-border);
    border-radius: var(--r-xl); padding: var(--sp-8);
    transform: rotate(1.5deg);
    box-shadow: var(--shadow-md);
    position: relative;
}
.cta-deco-card::before {
    content: '"';
    position: absolute; top: var(--sp-4); left: var(--sp-5);
    font-family: var(--font-display); font-size: 4rem; line-height: 1;
    color: var(--c-coral); opacity: 0.2;
}

.cta-quote {
    font-size: var(--fs-xl); line-height: 1.45;
    color: var(--c-text); margin-bottom: var(--sp-4);
}
.cta-quote-attr {
    font-size: var(--fs-xs); font-weight: 600; letter-spacing: 0.08em;
    text-transform: uppercase; color: var(--c-text-muted);
}

/* ── FOOTER ───────────────────────────────────────────────── */
.landing-footer {
    background: var(--c-text); padding: var(--sp-8) clamp(var(--sp-4), 5vw, var(--sp-10));
    border-top: 3px solid var(--c-coral);
}
.footer-top {
    display: flex; justify-content: space-between; align-items: center;
    margin-bottom: var(--sp-5); flex-wrap: wrap; gap: var(--sp-4);
}
.footer-brand {
    font-family: var(--font-display); font-size: var(--fs-xl); font-weight: 800; color: #fff;
    display: flex; align-items: center; gap: var(--sp-2);
}
.footer-links { display: flex; gap: var(--sp-5); flex-wrap: wrap; }
.footer-links a {
    font-size: var(--fs-xs); color: rgba(255,255,255,0.45); text-decoration: none;
    letter-spacing: 0.05em; transition: color var(--t-fast);
}
.footer-links a:hover { color: var(--c-coral-light); }
.footer-copy { font-size: var(--fs-xs); color: rgba(255,255,255,0.25); line-height: 1.6; }

/* ── MODAL AUTH ───────────────────────────────────────────── */
.auth-modal {
    display: none; position: fixed; inset: 0; z-index: 500;
    background: rgba(26,23,20,0.55); backdrop-filter: blur(6px);
    align-items: center; justify-content: center;
}
.auth-modal.open { display: flex; }

.auth-box {
    background: var(--c-bg); border: 1px solid var(--c-border);
    border-radius: var(--r-xl); padding: var(--sp-8);
    width: 480px; max-width: 95vw; max-height: 90vh; overflow-y: auto;
    position: relative; box-shadow: var(--shadow-lg);
}
.auth-box::before {
    content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
    background: var(--grad-coral); border-radius: var(--r-xl) var(--r-xl) 0 0;
}

.auth-close {
    position: absolute; top: var(--sp-4); right: var(--sp-4);
    width: 32px; height: 32px; border-radius: 50%;
    background: var(--c-bg-soft); border: 1px solid var(--c-border);
    color: var(--c-text-muted); font-size: var(--fs-lg); cursor: pointer;
    display: flex; align-items: center; justify-content: center;
    transition: all var(--t-fast);
}
.auth-close:hover { background: var(--c-bg-warm); color: var(--c-text); }

.auth-tabs {
    display: flex; margin-bottom: var(--sp-6);
    border-bottom: 2px solid var(--c-border);
}
.auth-tab {
    flex: 1; padding: var(--sp-3) 0;
    font-family: var(--font-body); font-size: var(--fs-sm); font-weight: 700;
    letter-spacing: 0.06em; text-transform: uppercase;
    background: none; border: none; border-bottom: 2px solid transparent;
    color: var(--c-text-muted); cursor: pointer; margin-bottom: -2px;
    transition: all var(--t-fast);
}
.auth-tab.active { color: var(--c-coral); border-bottom-color: var(--c-coral); }
.auth-tab:hover  { color: var(--c-coral); }

.auth-form { display: none; }
.auth-form.active { display: block; }

.auth-title { font-family: var(--font-display); font-size: var(--fs-2xl); font-weight: 700; color: var(--c-text); margin-bottom: var(--sp-1); }
.auth-subtitle { font-size: var(--fs-sm); color: var(--c-text-muted); margin-bottom: var(--sp-5); }

.auth-alert { padding: var(--sp-3) var(--sp-4); border-radius: var(--r-md); margin-bottom: var(--sp-4); font-size: var(--fs-sm); font-weight: 500; display: none; }
.auth-alert.visible { display: block; }
.auth-alert.error   { background: var(--c-danger-bg); border: 1px solid rgba(192,57,43,0.2); color: var(--c-danger); }
.auth-alert.success { background: var(--c-success-bg); border: 1px solid rgba(26,122,74,0.2); color: var(--c-success); }

.field { margin-bottom: var(--sp-4); }
.field label {
    display: block; font-size: var(--fs-xs); font-weight: 700;
    letter-spacing: 0.08em; text-transform: uppercase; color: var(--c-text-mid); margin-bottom: var(--sp-2);
}
.field input[type="text"],
.field input[type="email"],
.field input[type="password"] {
    width: 100%; background: var(--c-bg); border: 1.5px solid var(--c-border);
    border-radius: var(--r-md); color: var(--c-text); padding: var(--sp-3) var(--sp-4);
    font-size: var(--fs-base); font-family: var(--font-body); outline: none;
    transition: border-color var(--t-fast), box-shadow var(--t-fast);
}
.field input:focus { border-color: var(--c-coral); box-shadow: 0 0 0 3px rgba(227,109,98,0.1); }
.field input.error { border-color: var(--c-danger); }
.field-error { font-size: var(--fs-xs); color: var(--c-danger); margin-top: var(--sp-1); display: none; }
.field-error.visible { display: block; }

.pwd-strength { display: flex; gap: 4px; margin-top: var(--sp-2); }
.pwd-bar { flex: 1; height: 4px; border-radius: var(--r-pill); background: var(--c-border); transition: background var(--t-mid); }
.pwd-bar.weak   { background: var(--c-danger); }
.pwd-bar.medium { background: #f39c12; }
.pwd-bar.strong { background: var(--c-success); }
.pwd-label { font-size: var(--fs-xs); color: var(--c-text-muted); margin-top: var(--sp-1); }

.check-required { border: 1.5px solid rgba(227,109,98,0.2); border-radius: var(--r-md); padding: var(--sp-4); background: rgba(227,109,98,0.03); margin-bottom: var(--sp-4); }
.check-field { display: flex; align-items: flex-start; gap: var(--sp-3); margin-bottom: var(--sp-3); }
.check-field:last-child { margin-bottom: 0; }
.check-field input[type="checkbox"] { width: 18px; height: 18px; min-width: 18px; accent-color: var(--c-coral); margin-top: 2px; cursor: pointer; }
.check-label { font-size: var(--fs-xs); color: var(--c-text-muted); line-height: 1.6; cursor: pointer; }
.check-label a { color: var(--c-coral); text-decoration: none; }
.check-label a:hover { text-decoration: underline; }
.check-label strong { color: var(--c-text-mid); }
.field-highlight { animation: shake 0.4s ease; }
@keyframes shake { 0%, 100% { transform: translateX(0); } 25% { transform: translateX(-6px); } 75% { transform: translateX(6px); } }

.btn-auth {
    display: flex; align-items: center; justify-content: center; width: 100%;
    background: var(--c-coral); color: #fff; border: none; border-radius: var(--r-pill);
    padding: var(--sp-4); font-family: var(--font-body); font-size: var(--fs-sm); font-weight: 700;
    letter-spacing: 0.08em; text-transform: uppercase; cursor: pointer;
    box-shadow: var(--shadow-coral); transition: all var(--t-fast); margin-top: var(--sp-2);
}
.btn-auth:hover:not(:disabled) { background: var(--c-coral-dark); transform: translateY(-1px); }
.btn-auth:disabled { background: var(--c-border); color: var(--c-text-faint); box-shadow: none; cursor: not-allowed; }

/* ── COOKIE BANNER ────────────────────────────────────────── */
.cookie-banner {
    position: fixed; bottom: 0; left: 0; right: 0; z-index: 9000;
    background: var(--c-bg); border-top: 1px solid var(--c-border);
    box-shadow: 0 -4px 24px rgba(0,0,0,0.1);
}
.cookie-inner { max-width: 1200px; margin: 0 auto; padding: var(--sp-5) var(--sp-8); display: flex; align-items: center; gap: var(--sp-6); flex-wrap: wrap; }
.cookie-content { flex: 1; min-width: 260px; }
.cookie-title { font-weight: 700; color: var(--c-text); margin-bottom: var(--sp-2); }
.cookie-text  { font-size: var(--fs-sm); color: var(--c-text-muted); line-height: 1.6; }
.cookie-link  { color: var(--c-coral); text-decoration: none; }
.cookie-link:hover { text-decoration: underline; }
.cookie-details { margin-top: var(--sp-3); }
.cookie-details summary { font-size: var(--fs-xs); font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; color: var(--c-coral); cursor: pointer; list-style: none; }
.cookie-details summary::before { content: '+ '; }
.cookie-details[open] summary::before { content: '− '; }
.cookie-options { margin-top: var(--sp-3); display: flex; flex-direction: column; gap: var(--sp-2); }
.cookie-option { display: flex; align-items: flex-start; gap: var(--sp-2); cursor: pointer; }
.cookie-option input { accent-color: var(--c-coral); margin-top: 2px; }
.cookie-option-text { font-size: var(--fs-xs); color: var(--c-text-muted); line-height: 1.5; }
.cookie-actions { display: flex; gap: var(--sp-3); align-items: center; flex-shrink: 0; flex-wrap: wrap; }
.cookie-btn { padding: var(--sp-2) var(--sp-5); border-radius: var(--r-pill); font-family: var(--font-body); font-size: var(--fs-xs); font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; cursor: pointer; white-space: nowrap; transition: all var(--t-fast); }
.cookie-btn-outline { background: transparent; color: var(--c-text-muted); border: 1.5px solid var(--c-border); }
.cookie-btn-outline:hover { border-color: var(--c-coral); color: var(--c-coral); }
.cookie-btn-primary { background: var(--c-coral); color: #fff; border: none; box-shadow: var(--shadow-coral); }
.cookie-btn-primary:hover { background: var(--c-coral-dark); }

/* ── RESPONSIVE ───────────────────────────────────────────── */
@media (max-width: 900px) {
    .hero { grid-template-columns: 1fr; min-height: auto; }
    .hero::before { display: none; }
    .hero-deco { display: none; }
    .coral-inner { grid-template-columns: 1fr; }
    .section-cta { grid-template-columns: 1fr; }
    .cta-deco { display: none; }
    .step-row { grid-template-columns: 48px 1fr; }
    .step-icon-wrap { display: none; }
}

@media (max-width: 768px) {
    .header-nav a:not(.btn-nav-login):not(.btn-nav-cta) { display: none; }
    .coral-events { grid-template-columns: 1fr; }
    .landing-footer .footer-top { flex-direction: column; }
    .cookie-inner { flex-direction: column; }
    .cookie-actions { width: 100%; }
    .cookie-btn { flex: 1; text-align: center; }
    .stats-row { gap: var(--sp-4); }
    .stat-sep { display: none; }
}
