/* ==========================================================================
   Voucher MIMIT Cloud & Cybersecurity — Landing CyberQuantum × Bandi Europa
   Design system + layout. Nessuna dipendenza esterna (no CDN, no Google Fonts)
   per non introdurre trasferimenti verso terzi lato GDPR.
   ========================================================================== */

/* ---------- Tokens ---------- */
:root {
  --navy-900: #05122b;
  --navy-850: #071a3a;
  --navy-800: #0a1f44;
  --navy-700: #0e2c5e;
  --navy-600: #143a7a;
  --blue-600: #1b4b9e;
  --blue-500: #2563c9;
  --blue-400: #3b82f6;
  --blue-300: #6ea8fb;
  --cyan-400: #22d3ee;
  --cyan-300: #67e3f5;
  --green-600: #237a3e;
  --green-500: #2e9b4f;

  --ink: #0a1f44;
  --ink-2: #24406e;
  --ink-muted: #566d94;
  --ink-faint: #8397b5;

  --bg: #ffffff;
  --bg-soft: #f2f7ff;
  --bg-softer: #f8fbff;
  --line: #dbe6f7;
  --line-soft: #ebf2fc;

  --white: #ffffff;

  --radius-sm: 8px;
  --radius: 14px;
  --radius-lg: 22px;
  --radius-xl: 30px;

  --shadow-sm: 0 1px 2px rgba(10, 31, 68, .06), 0 2px 8px rgba(10, 31, 68, .05);
  --shadow: 0 4px 12px rgba(10, 31, 68, .07), 0 14px 40px rgba(10, 31, 68, .08);
  --shadow-lg: 0 10px 30px rgba(10, 31, 68, .10), 0 30px 80px rgba(10, 31, 68, .14);
  --shadow-glow: 0 0 0 1px rgba(34, 211, 238, .25), 0 12px 50px rgba(34, 211, 238, .18);

  --font: -apple-system, BlinkMacSystemFont, "Segoe UI Variable Display", "Segoe UI",
          Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif;
  --font-num: "Segoe UI Variable Display", "Segoe UI", -apple-system, BlinkMacSystemFont,
              Roboto, Arial, sans-serif;

  --container: 1180px;
  --gutter: clamp(20px, 5vw, 40px);
  --header-h: 74px;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
}
body {
  margin: 0;
  font-family: var(--font);
  font-size: 17px;
  line-height: 1.65;
  color: var(--ink-2);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
img, svg, video { max-width: 100%; height: auto; display: block; }
a { color: var(--blue-600); text-decoration-thickness: 1px; text-underline-offset: 3px; }
h1, h2, h3, h4 { color: var(--ink); line-height: 1.15; margin: 0 0 .5em; font-weight: 700; letter-spacing: -.02em; }
h1 { font-size: clamp(2.1rem, 5.2vw, 3.6rem); letter-spacing: -.033em; }
h2 { font-size: clamp(1.7rem, 3.6vw, 2.6rem); letter-spacing: -.028em; }
h3 { font-size: clamp(1.15rem, 2vw, 1.4rem); }
p { margin: 0 0 1.1em; }
ul { margin: 0 0 1.1em; padding-left: 1.2em; }
li { margin-bottom: .4em; }
strong, b { font-weight: 700; color: var(--ink); }
:focus-visible { outline: 3px solid var(--blue-400); outline-offset: 3px; border-radius: 4px; }

/* ---------- Layout ---------- */
.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: var(--gutter); }
.section { padding-block: clamp(56px, 8vw, 104px); position: relative; }
.section--tight { padding-block: clamp(40px, 5vw, 64px); }
.section--soft { background: var(--bg-soft); }
.section--dark { background: var(--navy-800); color: #c9d9f2; }
.section--dark h2, .section--dark h3, .section--dark h4 { color: #fff; }
.section--dark strong { color: #fff; }

.eyebrow {
  display: inline-flex; align-items: center; gap: .5em;
  font-size: .78rem; font-weight: 700; letter-spacing: .13em; text-transform: uppercase;
  color: var(--blue-500); margin-bottom: .9em;
}
.eyebrow::before { content: ""; width: 26px; height: 2px; background: currentColor; border-radius: 2px; }
.section--dark .eyebrow { color: var(--cyan-300); }

.section-head { max-width: 760px; margin-bottom: clamp(32px, 5vw, 56px); }
.section-head--center { margin-inline: auto; text-align: center; }
.section-head--center .eyebrow { justify-content: center; }
.lede { font-size: clamp(1.02rem, 1.7vw, 1.18rem); color: var(--ink-muted); margin-bottom: 0; }
.section--dark .lede { color: #a9c0e4; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .6em;
  padding: 15px 28px; border-radius: 999px; border: 2px solid transparent;
  font-size: 1rem; font-weight: 700; letter-spacing: -.01em; line-height: 1.2;
  cursor: pointer; text-decoration: none; text-align: center;
  transition: transform .18s ease, box-shadow .18s ease, background-color .18s ease, border-color .18s ease, color .18s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }
.btn--primary {
  background: linear-gradient(135deg, var(--blue-500), var(--blue-600));
  color: #fff; box-shadow: 0 6px 20px rgba(37, 99, 201, .35);
}
.btn--primary:hover { box-shadow: 0 12px 32px rgba(37, 99, 201, .45); }
.btn--accent {
  background: linear-gradient(135deg, var(--cyan-400), #12b5d6);
  color: var(--navy-900); box-shadow: 0 6px 22px rgba(34, 211, 238, .35);
}
.btn--accent:hover { box-shadow: 0 12px 34px rgba(34, 211, 238, .45); }
.btn--ghost { background: transparent; border-color: rgba(255,255,255,.35); color: #fff; }
.btn--ghost:hover { border-color: #fff; background: rgba(255,255,255,.08); }
.btn--outline { background: #fff; border-color: var(--line); color: var(--ink); box-shadow: var(--shadow-sm); }
.btn--outline:hover { border-color: var(--blue-400); color: var(--blue-600); }
.btn--sm { padding: 11px 20px; font-size: .92rem; }
.btn--block { width: 100%; }
.btn[disabled] { opacity: .6; cursor: not-allowed; transform: none; }

.btn-row { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; }

/* ---------- Header ---------- */
.header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(5, 18, 43, .88);
  backdrop-filter: saturate(150%) blur(14px);
  -webkit-backdrop-filter: saturate(150%) blur(14px);
  border-bottom: 1px solid rgba(255, 255, 255, .09);
}
.header__inner { display: flex; align-items: center; gap: 20px; min-height: var(--header-h); }
.brand { display: flex; align-items: center; gap: 12px; text-decoration: none; flex-shrink: 0; }
.brand__logo { color: #fff; width: 40px; height: 40px; flex-shrink: 0; }
.brand__text { display: flex; flex-direction: column; line-height: 1.05; }
.brand__name { font-size: 1.02rem; font-weight: 700; color: #fff; letter-spacing: .01em; }
.brand__tag { font-size: .62rem; font-weight: 600; letter-spacing: .17em; text-transform: uppercase; color: var(--cyan-300); }

.header__partner {
  display: flex; align-items: center; gap: 8px; margin-left: 6px; padding-left: 18px;
  border-left: 1px solid rgba(255,255,255,.16);
  font-size: .74rem; color: #93aed6; line-height: 1.25;
}
.header__partner b { color: #fff; font-weight: 700; display: block; font-size: .84rem; }

.header__nav { display: flex; align-items: center; gap: 26px; margin-left: auto; }
.header__nav a { color: #c3d4ef; text-decoration: none; font-size: .93rem; font-weight: 600; transition: color .15s; }
.header__nav a:hover { color: #fff; }
.header__cta { margin-left: 4px; }

@media (max-width: 1080px) { .header__partner { display: none; } }
@media (max-width: 920px) { .header__nav a { display: none; } .header__nav { gap: 10px; } }

/* ---------- Hero ---------- */
.hero {
  position: relative; overflow: hidden; color: #dae7fa;
  background:
    radial-gradient(1100px 620px at 82% 12%, rgba(37, 99, 201, .48), transparent 62%),
    radial-gradient(760px 520px at 10% 92%, rgba(34, 211, 238, .18), transparent 60%),
    linear-gradient(160deg, var(--navy-900) 0%, var(--navy-800) 46%, var(--navy-700) 100%);
  padding-block: clamp(52px, 7vw, 92px) clamp(56px, 7vw, 96px);
}
.hero::after {
  content: ""; position: absolute; inset: 0; pointer-events: none; opacity: .3;
  background-image:
    linear-gradient(rgba(110, 168, 251, .09) 1px, transparent 1px),
    linear-gradient(90deg, rgba(110, 168, 251, .09) 1px, transparent 1px);
  background-size: 62px 62px;
  mask-image: radial-gradient(80% 70% at 50% 30%, #000 30%, transparent 78%);
  -webkit-mask-image: radial-gradient(80% 70% at 50% 30%, #000 30%, transparent 78%);
}
.hero > .container { position: relative; z-index: 1; }
.hero__grid { display: grid; grid-template-columns: minmax(0, 1.06fr) minmax(0, .94fr); gap: clamp(30px, 5vw, 62px); align-items: center; }
@media (max-width: 940px) { .hero__grid { grid-template-columns: 1fr; } .hero__media { order: -1; max-width: 460px; margin-inline: auto; } }

.hero__badges { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 22px; }
.pill {
  display: inline-flex; align-items: center; gap: 7px;
  padding: 7px 15px; border-radius: 999px;
  background: rgba(255, 255, 255, .08); border: 1px solid rgba(255, 255, 255, .17);
  font-size: .79rem; font-weight: 600; color: #dbe8fb; letter-spacing: .005em;
}
.pill svg { width: 14px; height: 14px; color: var(--cyan-300); flex-shrink: 0; }
.pill--accent { background: rgba(34, 211, 238, .13); border-color: rgba(34, 211, 238, .38); color: #b9f1fb; }

.hero h1 { color: #fff; margin-bottom: .35em; }
.hero h1 .hl {
  background: linear-gradient(115deg, var(--cyan-300), var(--blue-300));
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.hero__amount { display: block; font-size: clamp(1.5rem, 3.4vw, 2.3rem); font-weight: 700; color: #fff; margin-top: .18em; letter-spacing: -.025em; }
.hero__sub { font-size: clamp(1.02rem, 1.9vw, 1.16rem); color: #b3c9ea; max-width: 56ch; margin-bottom: 1.5em; }
.hero .btn-row { margin-bottom: 20px; }
.hero__note { font-size: .86rem; color: #8fa9cf; display: flex; align-items: center; gap: 8px; margin: 0; }
.hero__note svg { width: 15px; height: 15px; color: var(--cyan-300); flex-shrink: 0; }

.hero__media { position: relative; }
.hero__media img {
  width: 100%; border-radius: var(--radius-lg);
  box-shadow: 0 24px 70px rgba(0, 0, 0, .5), 0 0 0 1px rgba(255, 255, 255, .1);
}

/* ---------- Countdown ---------- */
.countdown {
  margin-top: 26px; padding: 18px 22px; border-radius: var(--radius);
  background: rgba(255, 255, 255, .06); border: 1px solid rgba(255, 255, 255, .14);
  display: flex; flex-wrap: wrap; align-items: center; gap: 16px 24px;
}
.countdown__label { font-size: .8rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; color: var(--cyan-300); margin: 0; }
.countdown__label span { display: block; font-size: .74rem; font-weight: 600; letter-spacing: .02em; text-transform: none; color: #9db6dc; margin-top: 3px; }
.countdown__clock { display: flex; gap: 10px; margin-left: auto; }
.countdown__unit { text-align: center; min-width: 58px; padding: 8px 6px; border-radius: 10px; background: rgba(5, 18, 43, .5); border: 1px solid rgba(255, 255, 255, .1); }
.countdown__num { display: block; font-family: var(--font-num); font-size: 1.42rem; font-weight: 700; color: #fff; line-height: 1.1; font-variant-numeric: tabular-nums; }
.countdown__cap { font-size: .62rem; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; color: #8ea8d0; }
@media (max-width: 520px) { .countdown__clock { margin-left: 0; width: 100%; } .countdown__unit { flex: 1; min-width: 0; } }

/* ---------- Stat bar ---------- */
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: var(--line); border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow); }
@media (max-width: 860px) { .stats { grid-template-columns: repeat(2, 1fr); } }
.stat { background: #fff; padding: clamp(20px, 3vw, 30px) clamp(16px, 2.4vw, 26px); text-align: center; }
.stat__num { font-family: var(--font-num); font-size: clamp(1.7rem, 3.6vw, 2.35rem); font-weight: 700; color: var(--blue-600); letter-spacing: -.03em; line-height: 1.1; display: block; }
.stat__label { font-size: .87rem; color: var(--ink-muted); margin: 6px 0 0; line-height: 1.4; }
.stats__foot { font-size: .8rem; color: var(--ink-faint); text-align: center; margin: 14px 0 0; }

/* ---------- Cards ---------- */
.grid { display: grid; gap: clamp(16px, 2.4vw, 26px); }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--2 { grid-template-columns: repeat(2, 1fr); }
@media (max-width: 900px) { .grid--3 { grid-template-columns: 1fr; } .grid--2 { grid-template-columns: 1fr; } }

.card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: clamp(24px, 3vw, 32px); box-shadow: var(--shadow-sm);
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.card:hover { transform: translateY(-3px); box-shadow: var(--shadow); border-color: #c5d8f3; }
.card h3 { margin-bottom: .4em; }
.card p:last-child { margin-bottom: 0; }
.card__icon {
  width: 52px; height: 52px; border-radius: 14px; display: grid; place-items: center; margin-bottom: 18px;
  background: linear-gradient(135deg, rgba(37, 99, 201, .12), rgba(34, 211, 238, .14));
  color: var(--blue-600); border: 1px solid rgba(37, 99, 201, .16);
}
.card__icon svg { width: 26px; height: 26px; }

.card--dark { background: rgba(255,255,255,.05); border-color: rgba(255,255,255,.13); box-shadow: none; }
.card--dark:hover { border-color: rgba(34, 211, 238, .4); box-shadow: var(--shadow-glow); }
.card--dark .card__icon { background: rgba(34, 211, 238, .12); border-color: rgba(34, 211, 238, .28); color: var(--cyan-300); }
.card--num { position: relative; padding-top: 34px; }
.card__num {
  position: absolute; top: -18px; left: clamp(24px, 3vw, 32px);
  width: 38px; height: 38px; border-radius: 11px; display: grid; place-items: center;
  background: linear-gradient(135deg, var(--blue-500), var(--blue-600)); color: #fff;
  font-family: var(--font-num); font-weight: 700; font-size: 1.05rem;
  box-shadow: 0 6px 16px rgba(37, 99, 201, .34);
}

/* ---------- Split (image + text) ---------- */
.split { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: clamp(28px, 5vw, 64px); align-items: center; }
@media (max-width: 900px) { .split { grid-template-columns: 1fr; } .split__media { max-width: 440px; margin-inline: auto; } }
.split--rev .split__media { order: 2; }
@media (max-width: 900px) { .split--rev .split__media { order: -1; } }
.split__media img { width: 100%; border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); }
.section--dark .split__media img { box-shadow: 0 20px 60px rgba(0,0,0,.5), 0 0 0 1px rgba(255,255,255,.09); }

/* ---------- Checklist ---------- */
.checklist { list-style: none; padding: 0; margin: 0 0 1.4em; }
.checklist li { display: flex; gap: 12px; align-items: flex-start; margin-bottom: 13px; }
.checklist svg { width: 21px; height: 21px; flex-shrink: 0; margin-top: 2px; color: var(--blue-500); }
.section--dark .checklist svg { color: var(--cyan-300); }

/* ---------- Timeline ---------- */
.timeline { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(16px, 2.5vw, 26px); position: relative; }
@media (max-width: 860px) { .timeline { grid-template-columns: 1fr; } }
.tl {
  position: relative; padding: 28px 24px; border-radius: var(--radius-lg);
  background: #fff; border: 1px solid var(--line); box-shadow: var(--shadow-sm);
}
.tl--now { border-color: var(--blue-400); box-shadow: 0 0 0 3px rgba(59, 130, 246, .13), var(--shadow); }
.tl__dot { width: 13px; height: 13px; border-radius: 50%; background: var(--line); border: 3px solid #fff; box-shadow: 0 0 0 2px var(--line); margin-bottom: 16px; }
.tl--now .tl__dot { background: var(--blue-500); box-shadow: 0 0 0 2px var(--blue-500), 0 0 0 7px rgba(37, 99, 201, .16); }
.tl__date { font-family: var(--font-num); font-size: 1.28rem; font-weight: 700; color: var(--ink); letter-spacing: -.02em; display: block; margin-bottom: 3px; }
.tl__time { font-size: .8rem; color: var(--ink-faint); font-weight: 600; }
.tl h3 { font-size: 1.03rem; margin: 12px 0 .35em; }
.tl p { font-size: .93rem; color: var(--ink-muted); margin: 0; }
.tl__tag {
  display: inline-block; margin-top: 14px; padding: 4px 11px; border-radius: 999px;
  font-size: .72rem; font-weight: 700; letter-spacing: .04em; text-transform: uppercase;
  background: rgba(37, 99, 201, .1); color: var(--blue-600);
}
.tl--now .tl__tag { background: var(--blue-500); color: #fff; }

/* ---------- Steps ---------- */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(18px, 2.6vw, 30px); }
@media (max-width: 860px) { .steps { grid-template-columns: 1fr; } }
.step { text-align: left; }
.step__n {
  width: 46px; height: 46px; border-radius: 50%; display: grid; place-items: center; margin-bottom: 16px;
  font-family: var(--font-num); font-size: 1.16rem; font-weight: 700; color: #fff;
  background: linear-gradient(135deg, var(--cyan-400), var(--blue-500));
  box-shadow: 0 6px 20px rgba(34, 211, 238, .3);
}
.step h3 { font-size: 1.08rem; margin-bottom: .35em; }
.step p { font-size: .96rem; margin: 0; }
.section--dark .step p { color: #a9c0e4; }

.freebar {
  margin-top: clamp(28px, 4vw, 44px); padding: 22px 28px; border-radius: var(--radius-lg);
  background: linear-gradient(120deg, rgba(34, 211, 238, .14), rgba(37, 99, 201, .14));
  border: 1px solid rgba(34, 211, 238, .3);
  display: flex; flex-wrap: wrap; align-items: center; gap: 14px 22px;
}
.freebar__txt { margin: 0; font-size: 1.06rem; font-weight: 600; color: #fff; }
.freebar__txt b { color: var(--cyan-300); }
.freebar .btn { margin-left: auto; }
@media (max-width: 700px) { .freebar .btn { margin-left: 0; width: 100%; } }

/* ---------- Gallery ---------- */
.gallery { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
@media (max-width: 1000px) { .gallery { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .gallery { grid-template-columns: 1fr; max-width: 380px; margin-inline: auto; } }
.gallery figure { margin: 0; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); background: #fff; border: 1px solid var(--line); }
.gallery img { width: 100%; aspect-ratio: 4 / 5; object-fit: cover; transition: transform .35s ease; }
.gallery figure:hover img { transform: scale(1.035); }

/* ---------- Form ---------- */
.formwrap { display: grid; grid-template-columns: minmax(0, .82fr) minmax(0, 1.18fr); gap: clamp(28px, 4vw, 56px); align-items: start; }
@media (max-width: 940px) { .formwrap { grid-template-columns: 1fr; } }

.formcard {
  background: #fff; border-radius: var(--radius-xl); padding: clamp(26px, 3.6vw, 42px);
  box-shadow: var(--shadow-lg); border: 1px solid var(--line);
}
.field { margin-bottom: 17px; }
.field label { display: block; font-size: .87rem; font-weight: 700; color: var(--ink); margin-bottom: 7px; letter-spacing: -.005em; }
.field .req { color: #d94141; margin-left: 2px; }
.field input, .field select, .field textarea {
  width: 100%; padding: 13px 15px; font: inherit; font-size: .98rem; color: var(--ink);
  background: var(--bg-softer); border: 1.5px solid var(--line); border-radius: var(--radius-sm);
  transition: border-color .16s, box-shadow .16s, background-color .16s;
}
.field textarea { min-height: 118px; resize: vertical; }
.field select {
  appearance: none; cursor: pointer; padding-right: 42px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23566d94' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 14px center; background-size: 17px;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; background: #fff; border-color: var(--blue-400); box-shadow: 0 0 0 4px rgba(59, 130, 246, .14);
}
.field input::placeholder, .field textarea::placeholder { color: var(--ink-faint); }
.field--err input, .field--err select, .field--err textarea { border-color: #e05252; background: #fff6f6; }
.field__err { display: none; font-size: .81rem; color: #c73434; margin: 6px 0 0; font-weight: 600; }
.field--err .field__err { display: block; }
.field__hint { font-size: .8rem; color: var(--ink-faint); margin: 6px 0 0; }

.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 17px; }
@media (max-width: 620px) { .field-row { grid-template-columns: 1fr; gap: 0; } }

.hp { position: absolute !important; left: -9999px !important; width: 1px; height: 1px; overflow: hidden; }

.consent { margin-bottom: 15px; }
.check { display: flex; gap: 11px; align-items: flex-start; cursor: pointer; }
.check input[type="checkbox"] {
  width: 20px; height: 20px; flex-shrink: 0; margin: 2px 0 0; accent-color: var(--blue-500); cursor: pointer;
}
.check span { font-size: .855rem; line-height: 1.55; color: var(--ink-muted); }
.check a { font-weight: 600; }
.consent--err .check span { color: #c73434; }

.formcard__submit { margin-top: 22px; }
.formcard__legal { font-size: .78rem; color: var(--ink-faint); margin: 14px 0 0; line-height: 1.55; }

.formstatus { display: none; padding: 15px 18px; border-radius: var(--radius-sm); font-size: .92rem; font-weight: 600; margin-top: 18px; }
.formstatus--ok { display: block; background: #eafaf0; color: #17603a; border: 1.5px solid #a8e2c1; }
.formstatus--ko { display: block; background: #fdeeee; color: #a32424; border: 1.5px solid #f2b8b8; }

.formsuccess { text-align: center; padding: clamp(20px, 4vw, 40px) 0; }
.formsuccess__icon {
  width: 74px; height: 74px; border-radius: 50%; display: grid; place-items: center; margin: 0 auto 22px;
  background: linear-gradient(135deg, #34d399, #10b981); color: #fff;
  box-shadow: 0 10px 34px rgba(16, 185, 129, .35);
}
.formsuccess__icon svg { width: 38px; height: 38px; }
.formsuccess h3 { font-size: 1.5rem; }

.formaside .card { margin-bottom: 18px; }
.formaside__contact { list-style: none; padding: 0; margin: 0; }
.formaside__contact li { display: flex; gap: 13px; align-items: flex-start; margin-bottom: 16px; }
.formaside__contact svg { width: 20px; height: 20px; color: var(--blue-500); flex-shrink: 0; margin-top: 3px; }
.formaside__contact a { text-decoration: none; font-weight: 600; color: var(--ink); }
.formaside__contact a:hover { color: var(--blue-600); text-decoration: underline; }
.formaside__contact small { display: block; font-size: .78rem; color: var(--ink-faint); font-weight: 500; }

/* ---------- FAQ ---------- */
.faq { max-width: 840px; margin-inline: auto; }
.faq details {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  margin-bottom: 12px; overflow: hidden; transition: border-color .18s, box-shadow .18s;
}
.faq details[open] { border-color: #c5d8f3; box-shadow: var(--shadow-sm); }
.faq summary {
  cursor: pointer; padding: 19px 54px 19px 22px; font-weight: 700; color: var(--ink);
  font-size: 1.01rem; list-style: none; position: relative; line-height: 1.45;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: ""; position: absolute; right: 22px; top: 50%; width: 11px; height: 11px;
  border-right: 2.5px solid var(--blue-500); border-bottom: 2.5px solid var(--blue-500);
  transform: translateY(-70%) rotate(45deg); transition: transform .22s ease;
}
.faq details[open] summary::after { transform: translateY(-25%) rotate(225deg); }
.faq summary:hover { color: var(--blue-600); }
.faq__body { padding: 0 22px 20px; color: var(--ink-muted); font-size: .96rem; }
.faq__body p:last-child { margin-bottom: 0; }

/* ---------- Partner strip ---------- */
.partners { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: clamp(20px, 4vw, 52px); }
.partner { display: flex; align-items: center; gap: 13px; }
.partner__logo { width: 46px; height: 46px; color: var(--blue-600); flex-shrink: 0; }
.partner__meta { line-height: 1.3; }
.partner__meta b { display: block; font-size: 1.02rem; color: var(--ink); }
.partner__meta span { font-size: .82rem; color: var(--ink-muted); }
.partner__x { font-size: 1.5rem; color: var(--ink-faint); font-weight: 300; }
@media (max-width: 620px) { .partner__x { display: none; } }

/* ---------- Footer ---------- */
.footer { background: var(--navy-900); color: #93aed6; padding-block: clamp(46px, 6vw, 68px) 30px; font-size: .92rem; }
.footer h4 { color: #fff; font-size: .82rem; letter-spacing: .12em; text-transform: uppercase; margin-bottom: 16px; font-weight: 700; }
.footer__grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.2fr; gap: clamp(26px, 4vw, 46px); }
@media (max-width: 940px) { .footer__grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .footer__grid { grid-template-columns: 1fr; } }
.footer a { color: #93aed6; text-decoration: none; transition: color .15s; }
.footer a:hover { color: #fff; text-decoration: underline; }
.footer ul { list-style: none; padding: 0; margin: 0; }
.footer li { margin-bottom: 9px; }
.footer__brand { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; }
.footer__brand svg { width: 42px; height: 42px; color: #fff; }
.footer__legal { font-size: .84rem; line-height: 1.7; color: #7b95bf; }
.footer__legal b { color: #c3d4ef; font-weight: 600; }
.footer__social { display: flex; gap: 11px; margin-top: 16px; }
.footer__social a {
  width: 44px; height: 44px; border-radius: 11px; display: grid; place-items: center;
  background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.12); color: #c3d4ef;
  transition: background-color .16s, color .16s, border-color .16s;
}
.footer__social a:hover { background: var(--blue-500); color: #fff; border-color: var(--blue-500); }
.footer__social svg { width: 18px; height: 18px; }
.footer__bottom {
  margin-top: clamp(32px, 4vw, 48px); padding-top: 24px; border-top: 1px solid rgba(255,255,255,.1);
  display: flex; flex-wrap: wrap; gap: 12px 26px; align-items: center; font-size: .84rem; color: #7b95bf;
}
.footer__bottom nav { display: flex; flex-wrap: wrap; gap: 20px; margin-left: auto; }

.disclaimer {
  margin-top: 22px; padding: 16px 20px; border-radius: var(--radius-sm);
  background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.09);
  font-size: .8rem; line-height: 1.6; color: #85a0ca;
}

/* ---------- Sticky mobile CTA ---------- */
.mobilecta {
  position: fixed; left: 12px; right: 12px; bottom: 12px; z-index: 90; display: none;
  gap: 10px;
}
.mobilecta .btn { flex: 1; box-shadow: 0 8px 30px rgba(5, 18, 43, .4); }
.mobilecta .btn--outline { flex: 0 0 auto; padding-inline: 18px; }
@media (max-width: 760px) { .mobilecta { display: flex; } body { padding-bottom: 78px; } }

/* ---------- Legal pages ---------- */
.legal { max-width: 820px; margin-inline: auto; }
.legal h2 { font-size: clamp(1.3rem, 2.4vw, 1.65rem); margin-top: 2em; padding-top: .6em; border-top: 1px solid var(--line); }
.legal h2:first-of-type { margin-top: 1em; border-top: none; padding-top: 0; }
.legal h3 { font-size: 1.08rem; margin-top: 1.6em; }
.legal table { width: 100%; border-collapse: collapse; margin: 1.2em 0; font-size: .92rem; }
.legal th, .legal td { text-align: left; padding: 11px 13px; border: 1px solid var(--line); vertical-align: top; }
.legal th { background: var(--bg-soft); font-weight: 700; color: var(--ink); }
.legal__meta { font-size: .87rem; color: var(--ink-faint); }
.tablewrap { overflow-x: auto; -webkit-overflow-scrolling: touch; }

.callout {
  padding: 18px 22px; border-radius: var(--radius); background: var(--bg-soft);
  border: 1px solid var(--line); border-left: 4px solid var(--blue-500); margin: 1.4em 0;
}
.callout p:last-child { margin-bottom: 0; }

/* ---------- Utils ---------- */
.center { text-align: center; }
.mt-0 { margin-top: 0; }
.mb-0 { margin-bottom: 0; }
.nowrap { white-space: nowrap; }
.visually-hidden {
  position: absolute !important; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}
.skip {
  position: absolute; left: -9999px; top: 0; z-index: 200;
  background: #fff; color: var(--ink); padding: 12px 20px; border-radius: 0 0 var(--radius-sm) 0; font-weight: 700;
}
.skip:focus { left: 0; }

/* ---------- Reveal on scroll ---------- */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .6s ease, transform .6s ease; }
.reveal.is-in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; } }
