/* ============================================================
   viisa.fi — Kirkas (bright / Nordic friendly)
   Inspired by mediani.fi & iDiD: light, azure, photographic
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Schibsted+Grotesk:wght@500;600;700;800&family=Mulish:wght@400;500;600;700&display=swap');

:root {
  /* palette — bright & azure */
  --white:     #FFFFFF;
  --bg:        #FFFFFF;
  --bg-soft:   #F4F8FC;
  --bg-blue:   #E9F3FB;
  --navy:      #0F2A43;
  --navy-2:    #143654;
  --ink:       #2C435A;
  --muted:     #6A839B;
  --line:      #E2EAF1;
  --line-2:    #D3E0EC;

  --blue:      #2E90D9;
  --blue-deep: #1C72B8;
  --blue-ink:  #135A95;
  --blue-soft: #E6F2FB;
  --blue-tint: #F2F8FD;
  --sky:       #5BB4ED;

  --green:     #2BA84A;
  --green-soft:#E5F5EA;

  /* type */
  --display: 'Schibsted Grotesk', sans-serif;
  --body:    'Mulish', sans-serif;

  --maxw: 1200px;
  --pad: clamp(20px, 5vw, 80px);
  --r:   16px;
  --shadow:    0 18px 44px rgba(15,42,67,0.10);
  --shadow-lg: 0 30px 70px rgba(15,42,67,0.16);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--body);
  background: var(--bg);
  color: var(--ink);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
::selection { background: var(--blue); color: #fff; }
img { max-width: 100%; display: block; }

.wrap { max-width: var(--maxw); margin: 0 auto; padding-inline: var(--pad); }

h1, h2, h3, h4 { font-family: var(--display); font-weight: 700; line-height: 1.08; letter-spacing: -0.02em; color: var(--navy); }

.eyebrow {
  display: inline-flex; align-items: center; gap: 9px;
  font-family: var(--display); font-weight: 700; font-size: 0.82rem;
  letter-spacing: 0.04em; text-transform: uppercase; color: var(--blue-ink);
  background: var(--blue-soft); padding: 7px 14px; border-radius: 100px;
}
.eyebrow.plain { background: none; padding: 0; color: var(--blue-deep); }
.eyebrow.on-dark { background: rgba(255,255,255,0.12); color: #fff; }

.lead { font-size: clamp(1.05rem, 1.5vw, 1.25rem); color: var(--ink); max-width: 56ch; }

/* ---------- buttons ---------- */
.btn {
  font-family: var(--display); font-weight: 600; font-size: 1rem;
  padding: 14px 26px; border-radius: 100px; border: 1.5px solid transparent;
  cursor: pointer; display: inline-flex; align-items: center; gap: 9px;
  text-decoration: none; white-space: nowrap;
  transition: transform .16s ease, background .16s, color .16s, box-shadow .16s, border-color .16s;
}
.btn-primary { background: var(--blue); color: #fff; box-shadow: 0 10px 24px rgba(46,144,217,0.30); }
.btn-primary:hover { background: var(--blue-deep); transform: translateY(-2px); box-shadow: 0 16px 32px rgba(46,144,217,0.36); }
.btn-ghost { background: #fff; color: var(--navy); border-color: var(--line-2); }
.btn-ghost:hover { border-color: var(--blue); color: var(--blue-deep); }
.btn-ghost.on-dark { background: transparent; color: #fff; border-color: rgba(255,255,255,0.32); }
.btn-ghost.on-dark:hover { background: #fff; color: var(--navy); border-color: #fff; }
.btn .arr { transition: transform .18s; }
.btn:hover .arr { transform: translateX(3px); }
.link-arrow { font-family: var(--display); font-weight: 600; color: var(--blue-deep); text-decoration: none; display: inline-flex; align-items: center; gap: 7px; }
.link-arrow .arr { transition: transform .18s; }
.link-arrow:hover .arr { transform: translateX(3px); }

/* ============================================================
   NAV
   ============================================================ */
.nav { position: sticky; top: 0; z-index: 60; background: rgba(255,255,255,0.86); backdrop-filter: blur(12px); border-bottom: 1px solid var(--line); }
.nav-inner { display: flex; align-items: center; justify-content: space-between; height: 74px; }
.brand { display: flex; align-items: center; gap: 10px; text-decoration: none; }
.brand .mark { width: 32px; height: 32px; border-radius: 9px; background: var(--blue); position: relative; flex: none; box-shadow: 0 5px 12px rgba(46,144,217,0.34); }
.brand .mark::after { content: ""; position: absolute; inset: 0; margin: auto; width: 0; height: 0; border-style: solid; border-width: 6px 0 6px 9px; border-color: transparent transparent transparent #fff; }
.brand .word { font-family: var(--display); font-weight: 800; font-size: 1.5rem; letter-spacing: -0.03em; color: var(--navy); }
.nav-links { display: flex; align-items: center; gap: 30px; }
.nav-links a { color: var(--ink); text-decoration: none; font-weight: 600; font-size: 0.95rem; transition: color .15s; }
.nav-links a:hover { color: var(--blue-deep); }
.nav-cta { display: flex; align-items: center; gap: 12px; }
.nav-toggle { display: none; }

/* ============================================================
   HERO — light
   ============================================================ */
.hero { background: linear-gradient(180deg, var(--bg-blue) 0%, var(--bg-soft) 70%, #fff 100%); position: relative; overflow: hidden; }
.hero-inner { display: grid; grid-template-columns: 1.02fr 1fr; gap: clamp(32px, 5vw, 64px); align-items: center; padding-block: clamp(48px, 7vw, 92px); position: relative; z-index: 2; }
.hero h1 { font-size: clamp(2.5rem, 5.2vw, 4.6rem); font-weight: 800; letter-spacing: -0.035em; }
.hero h1 .hl { color: var(--blue-deep); }
.hero-sub { margin-top: 22px; font-size: clamp(1.08rem, 1.5vw, 1.28rem); color: var(--ink); max-width: 46ch; }
.hero-actions { margin-top: 30px; display: flex; gap: 13px; flex-wrap: wrap; }
.hero-trust { margin-top: 34px; display: flex; gap: 14px 26px; flex-wrap: wrap; }
.hero-trust .t { display: flex; align-items: center; gap: 9px; font-weight: 600; font-size: 0.92rem; color: var(--navy-2); }
.hero-trust .t svg { width: 20px; height: 20px; color: var(--green); flex: none; }

/* device / screen mockup */
.screen-stage { position: relative; display: flex; flex-direction: column; align-items: center; gap: 16px; }
.device { width: 100%; max-width: 480px; aspect-ratio: 16/10; background: #0c1a26; border-radius: 18px; padding: 13px; border: 1px solid rgba(15,42,67,0.12); box-shadow: var(--shadow-lg); position: relative; }
.device::after { content: ""; position: absolute; left: 50%; bottom: -16px; transform: translateX(-50%); width: 64%; height: 16px; background: radial-gradient(ellipse at center, rgba(15,42,67,0.22), transparent 70%); }
.bezel-cam { position: absolute; top: 6px; left: 50%; transform: translateX(-50%); width: 5px; height: 5px; border-radius: 50%; background: rgba(255,255,255,0.22); }
.screen { position: relative; width: 100%; height: 100%; border-radius: 8px; overflow: hidden; background: #0d1118; }
.slide { position: absolute; inset: 0; opacity: 0; transition: opacity .7s ease; display: flex; flex-direction: column; padding: 26px; }
.slide.active { opacity: 1; }
.sl-menu { background: linear-gradient(150deg,#13518f,#2E90D9); color: #fff; }
.sl-menu .tag { font-weight: 700; font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase; opacity: 0.82; }
.sl-menu h3 { color: #fff; font-size: clamp(20px,3.6vw,30px); margin-top: 6px; }
.sl-menu ul { list-style: none; margin-top: auto; display: flex; flex-direction: column; gap: 9px; }
.sl-menu li { display: flex; justify-content: space-between; font-weight: 600; font-size: clamp(12px,2.4vw,16px); border-bottom: 1px solid rgba(255,255,255,0.22); padding-bottom: 7px; }
.sl-promo { background: linear-gradient(145deg,#1C72B8,#0F2A43); color: #fff; justify-content: center; }
.sl-promo .tag { font-weight: 700; font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--sky); }
.sl-promo h3 { color: #fff; font-size: clamp(26px,5vw,44px); line-height: 1.0; margin-top: 8px; }
.sl-promo p { margin-top: 12px; font-weight: 600; opacity: 0.9; font-size: clamp(12px,2.6vw,16px); }
.sl-info { background: #0d1f30; color: #fff; justify-content: space-between; }
.sl-info .top { display: flex; justify-content: space-between; align-items: flex-start; }
.sl-info .clock { font-family: var(--display); font-weight: 800; font-size: clamp(30px,7vw,56px); letter-spacing: -0.02em; }
.sl-info .date { font-weight: 600; font-size: 12px; color: #8FB6D6; letter-spacing: 0.08em; text-transform: uppercase; }
.sl-info .wx { text-align: right; }
.sl-info .wx b { font-family: var(--display); font-size: clamp(22px,5vw,36px); }
.sl-info .wx span { display: block; font-size: 11px; color: #8FB6D6; }
.sl-info .ticker { margin: auto -26px -26px; background: var(--blue); padding: 11px 26px; font-weight: 700; font-size: clamp(12px,2.4vw,15px); white-space: nowrap; overflow: hidden; }
.sl-info .ticker .run { display: inline-block; animation: ticker 13s linear infinite; }
@keyframes ticker { from { transform: translateX(0); } to { transform: translateX(-50%); } }
.screen-foot { display: flex; align-items: center; gap: 13px; }
.live { display: inline-flex; align-items: center; gap: 7px; font-family: var(--display); font-weight: 700; font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted); }
.live .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--green); box-shadow: 0 0 0 0 rgba(43,168,74,0.5); animation: pulse 1.9s infinite; }
@keyframes pulse { 0%{box-shadow:0 0 0 0 rgba(43,168,74,0.5);} 70%{box-shadow:0 0 0 9px rgba(43,168,74,0);} 100%{box-shadow:0 0 0 0 rgba(43,168,74,0);} }
.dots { display: flex; gap: 7px; }
.dots button { width: 8px; height: 8px; border-radius: 50%; border: none; background: var(--line-2); cursor: pointer; padding: 0; transition: background .2s, width .2s; }
.dots button.on { background: var(--blue); width: 22px; border-radius: 4px; }

/* ============================================================
   TRUST BAR (calm, replaces marquee)
   ============================================================ */
.trustbar { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: #fff; }
.trustbar .wrap { display: flex; align-items: center; justify-content: space-between; gap: 20px; flex-wrap: wrap; padding-block: 22px; }
.trustbar .lbl { font-weight: 700; color: var(--muted); font-size: 0.86rem; }
.trustbar .items { display: flex; align-items: center; gap: 14px 30px; flex-wrap: wrap; }
.trustbar .ti { display: flex; align-items: center; gap: 9px; font-family: var(--display); font-weight: 600; color: var(--navy-2); font-size: 0.96rem; }
.trustbar .ti svg { width: 19px; height: 19px; color: var(--blue); flex: none; }

/* ============================================================
   SECTION shells
   ============================================================ */
.sec { padding-block: clamp(58px, 8vw, 112px); }
.sec.soft { background: var(--bg-soft); }
.sec.blue { background: var(--bg-blue); }
.sec-head { max-width: 680px; }
.sec-head h2 { font-size: clamp(1.9rem, 3.8vw, 3.1rem); margin-top: 16px; }
.sec-head p { margin-top: 16px; }
.sec-head.center { margin-inline: auto; text-align: center; }
.sec-head.center .lead { margin-inline: auto; }

/* ---------- use-case cards (mediani style, photographic) ---------- */
.usecards { margin-top: 52px; display: grid; grid-template-columns: repeat(3,1fr); gap: 26px; }
.ucard { background: #fff; border: 1px solid var(--line); border-radius: var(--r); overflow: hidden; box-shadow: var(--shadow); display: flex; flex-direction: column; transition: transform .2s, box-shadow .2s; }
.ucard:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.ucard image-slot { width: 100%; height: 200px; display: block; }
.ucard .ubody { padding: 24px 24px 26px; display: flex; flex-direction: column; gap: 10px; flex: 1; }
.ucard .utag { font-family: var(--display); font-weight: 700; font-size: 0.74rem; letter-spacing: 0.06em; text-transform: uppercase; color: var(--blue-deep); }
.ucard h3 { font-size: 1.32rem; }
.ucard p { color: var(--muted); font-size: 0.97rem; }
.ucard .link-arrow { margin-top: auto; padding-top: 6px; }

/* ---------- benefit grid (iDiD style grouped) ---------- */
.benefits { margin-top: 52px; display: grid; grid-template-columns: repeat(2,1fr); gap: 22px; }
.benefit { background: #fff; border: 1px solid var(--line); border-radius: var(--r); padding: 30px 28px; display: flex; gap: 18px; align-items: flex-start; transition: border-color .2s, box-shadow .2s; }
.benefit:hover { border-color: var(--line-2); box-shadow: var(--shadow); }
.benefit .ic { flex: none; width: 52px; height: 52px; border-radius: 13px; background: var(--blue-soft); color: var(--blue-deep); display: grid; place-items: center; }
.benefit .ic svg { width: 25px; height: 25px; }
.benefit h3 { font-size: 1.2rem; }
.benefit p { color: var(--muted); font-size: 0.96rem; margin-top: 6px; }

/* ---------- split (any screen) ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(34px,5vw,76px); align-items: center; }
.split.rev .split-media { order: -1; }
.bullets { margin-top: 28px; display: flex; flex-direction: column; gap: 16px; }
.bullets li { list-style: none; display: flex; gap: 13px; align-items: flex-start; }
.bullets .ck { flex: none; width: 26px; height: 26px; border-radius: 50%; background: var(--green-soft); color: var(--green); display: grid; place-items: center; margin-top: 2px; }
.bullets .ck svg { width: 14px; height: 14px; }
.bullets b { font-family: var(--display); font-weight: 700; color: var(--navy); }
.bullets span { color: var(--muted); display: block; font-size: 0.96rem; }

.screen-wall { display: grid; grid-template-columns: repeat(2,1fr); gap: 15px; }
.mini { border-radius: 13px; aspect-ratio: 16/10; padding: 8px; background: #0c1a26; box-shadow: var(--shadow); position: relative; overflow: hidden; }
.mini.portrait { aspect-ratio: 10/16; }
.mini .scr { width: 100%; height: 100%; border-radius: 6px; display: flex; flex-direction: column; justify-content: center; padding: 16px; color: #fff; overflow: hidden; }
.mini .lbl { position: absolute; bottom: 8px; left: 8px; font-family: var(--display); font-weight: 600; font-size: 10px; letter-spacing: 0.08em; text-transform: uppercase; background: rgba(12,26,38,0.6); color: #fff; padding: 4px 9px; border-radius: 6px; backdrop-filter: blur(4px); }
.scr-a { background: linear-gradient(140deg,#2E90D9,#13518f); }
.scr-b { background: linear-gradient(140deg,#1C72B8,#0F2A43); }
.scr-c { background: #0d1f30; }
.scr-d { background: linear-gradient(140deg,#2BA84A,#157a32); }
.mini .scr .t { font-family: var(--display); font-weight: 700; font-size: 10px; letter-spacing: 0.1em; text-transform: uppercase; opacity: 0.82; }
.mini .scr h4 { color: #fff; font-size: clamp(15px,2.4vw,21px); margin-top: 4px; }

/* ---------- formats ---------- */
.fmt-grid { margin-top: 50px; display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; }
.fmt { background: #fff; border: 1px solid var(--line); border-radius: var(--r); padding: 30px 28px; display: flex; flex-direction: column; gap: 14px; box-shadow: var(--shadow); transition: transform .2s; }
.fmt:hover { transform: translateY(-4px); }
.fmt .badge { font-family: var(--display); font-weight: 800; font-size: 0.9rem; letter-spacing: 0.04em; width: fit-content; padding: 8px 14px; border-radius: 10px; background: var(--blue-soft); color: var(--blue-deep); }
.fmt h3 { font-size: 1.3rem; }
.fmt p { color: var(--muted); font-size: 0.96rem; }

/* ---------- dashboard mock ---------- */
.dash { margin-top: 12px; border-radius: var(--r); overflow: hidden; border: 1px solid var(--line); background: #fff; box-shadow: var(--shadow-lg); }
.dash-bar { display: flex; align-items: center; gap: 8px; padding: 13px 18px; background: var(--bg-soft); border-bottom: 1px solid var(--line); }
.dash-bar .tl { display: flex; gap: 7px; }
.dash-bar .tl i { width: 11px; height: 11px; border-radius: 50%; background: var(--line-2); }
.dash-bar .url { margin-left: 12px; font-weight: 600; font-size: 0.82rem; color: var(--muted); background: #fff; padding: 5px 14px; border-radius: 7px; border: 1px solid var(--line); }
.dash-body { display: grid; grid-template-columns: 210px 1fr; min-height: 360px; }
.dash-side { border-right: 1px solid var(--line); padding: 18px 14px; display: flex; flex-direction: column; gap: 4px; }
.dash-side .si { display: flex; align-items: center; gap: 11px; padding: 10px 13px; border-radius: 10px; font-size: 0.92rem; font-weight: 600; color: var(--ink); }
.dash-side .si.on { background: var(--blue-soft); color: var(--blue-deep); }
.dash-side .si .d { width: 8px; height: 8px; border-radius: 50%; background: currentColor; opacity: 0.55; }
.dash-main { padding: 22px 24px; }
.dash-main .dh { display: flex; justify-content: space-between; align-items: center; margin-bottom: 18px; }
.dash-main .dh h4 { font-size: 1.15rem; }
.dash-main .dh .pill { font-family: var(--display); font-weight: 700; font-size: 0.74rem; letter-spacing: 0.05em; text-transform: uppercase; color: var(--green); background: var(--green-soft); padding: 6px 12px; border-radius: 100px; }
.scr-list { display: flex; flex-direction: column; gap: 10px; }
.scr-row { display: grid; grid-template-columns: 1fr auto auto; gap: 14px; align-items: center; padding: 14px 16px; border: 1px solid var(--line); border-radius: 12px; }
.scr-row .nm { display: flex; align-items: center; gap: 12px; font-family: var(--display); font-weight: 700; color: var(--navy); }
.scr-row .thumb { width: 44px; height: 28px; border-radius: 5px; flex: none; }
.scr-row .loc { font-size: 0.86rem; color: var(--muted); }
.scr-row .st { display: inline-flex; align-items: center; gap: 7px; font-family: var(--display); font-weight: 700; font-size: 0.72rem; letter-spacing: 0.04em; text-transform: uppercase; color: var(--green); }
.scr-row .st .d { width: 7px; height: 7px; border-radius: 50%; background: var(--green); }

/* ---------- pricing ---------- */
.price-wrap { display: grid; grid-template-columns: 1.05fr 1fr; gap: clamp(34px,5vw,64px); align-items: center; margin-top: 50px; }
.price-card { background: var(--navy); color: #fff; border-radius: 22px; padding: clamp(34px,4vw,48px); position: relative; overflow: hidden; box-shadow: var(--shadow-lg); }
.price-card::after { content: ""; position: absolute; width: 280px; height: 280px; right: -90px; top: -90px; background: radial-gradient(circle, rgba(46,144,217,0.45), transparent 70%); }
.price-card .eyebrow { position: relative; z-index: 2; }
.price-card .amount { position: relative; z-index: 2; margin-top: 20px; display: flex; align-items: baseline; gap: 10px; flex-wrap: wrap; }
.price-card .amount .big { font-family: var(--display); font-weight: 800; font-size: clamp(2.2rem,4vw,3.2rem); letter-spacing: -0.03em; color: #fff; }
.price-card .amount .per { color: #9FC4E2; font-size: 1rem; }
.price-card .plist { position: relative; z-index: 2; margin-top: 24px; display: flex; flex-direction: column; gap: 12px; }
.price-card .plist li { list-style: none; display: flex; gap: 11px; align-items: center; font-size: 0.98rem; color: #EAF3FB; }
.price-card .plist .ck { flex: none; color: var(--sky); }
.price-card .btn { margin-top: 30px; position: relative; z-index: 2; width: 100%; justify-content: center; }
.price-aside h2 { font-size: clamp(1.7rem,3.2vw,2.7rem); }
.price-aside p { margin-top: 16px; }
.price-aside .note { margin-top: 22px; font-weight: 600; font-size: 0.92rem; color: var(--muted); padding-left: 16px; border-left: 3px solid var(--blue); }

/* ---------- FAQ ---------- */
.faq { margin-top: 46px; display: grid; gap: 14px; max-width: 860px; }
.qa { background: #fff; border: 1px solid var(--line); border-radius: 14px; overflow: hidden; }
.qa summary { list-style: none; cursor: pointer; padding: 22px 26px; display: flex; justify-content: space-between; align-items: center; gap: 16px; font-family: var(--display); font-weight: 700; color: var(--navy); font-size: 1.06rem; }
.qa summary::-webkit-details-marker { display: none; }
.qa summary .pm { flex: none; width: 26px; height: 26px; border-radius: 50%; background: var(--blue-soft); color: var(--blue-deep); display: grid; place-items: center; font-size: 1.1rem; transition: transform .2s; }
.qa[open] summary .pm { transform: rotate(45deg); }
.qa .qa-body { padding: 0 26px 24px; color: var(--muted); }

/* ============================================================
   CONTACT FORM (lomake)
   ============================================================ */
.contact { background: var(--navy); color: #fff; }
.contact-grid { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: clamp(38px,5vw,80px); align-items: start; }
.contact-grid h2 { color: #fff; font-size: clamp(1.9rem,3.6vw,3rem); }
.contact-info p { color: #B7CFE3; margin-top: 16px; max-width: 40ch; }
.contact-info .ways { margin-top: 32px; display: flex; flex-direction: column; gap: 18px; }
.contact-info .ways a, .contact-info .ways div { display: flex; align-items: center; gap: 14px; color: #fff; text-decoration: none; }
.contact-info .ways .ic { width: 44px; height: 44px; border-radius: 12px; background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.14); display: grid; place-items: center; flex: none; }
.contact-info .ways .ic svg { width: 19px; height: 19px; }
.contact-info .ways small { display: block; color: #8FB0CC; font-size: 0.76rem; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; }
.contact-info .ways b { font-family: var(--display); font-weight: 700; font-size: 1.05rem; }

.form-card { background: #fff; color: var(--ink); border-radius: 20px; padding: clamp(26px,3vw,40px); box-shadow: var(--shadow-lg); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field { display: flex; flex-direction: column; gap: 7px; margin-bottom: 16px; }
.field label { font-family: var(--display); font-weight: 700; font-size: 0.9rem; color: var(--navy); }
.field label .req { color: var(--blue); }
.field input, .field select, .field textarea {
  font-family: var(--body); font-size: 1rem; color: var(--ink);
  background: var(--bg-soft); border: 1.5px solid var(--line); border-radius: 11px; padding: 13px 15px; width: 100%;
  transition: border-color .15s, box-shadow .15s, background .15s;
}
.field textarea { resize: vertical; min-height: 108px; }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--blue); background: #fff; box-shadow: 0 0 0 3px var(--blue-soft); }
.field.err input, .field.err select, .field.err textarea { border-color: #E0564B; background: #fff; }
.field .msg { font-size: 0.8rem; color: #E0564B; display: none; }
.field.err .msg { display: block; }
.consent { display: flex; gap: 11px; align-items: flex-start; margin-bottom: 20px; font-size: 0.86rem; color: var(--muted); }
.consent input { width: 18px; height: 18px; margin-top: 2px; accent-color: var(--blue); flex: none; }
.consent a { color: var(--blue-deep); }
.form-card .btn-primary { width: 100%; justify-content: center; font-size: 1.05rem; padding: 16px; }
.form-foot { text-align: center; margin-top: 14px; font-size: 0.8rem; color: var(--muted); }
.form-success { display: none; flex-direction: column; align-items: center; text-align: center; padding: clamp(38px,5vw,68px) 30px; gap: 15px; }
.form-success.show { display: flex; }
.form-success .big-ck { width: 70px; height: 70px; border-radius: 50%; background: var(--green); color: #fff; display: grid; place-items: center; }
.form-success .big-ck svg { width: 34px; height: 34px; }
.form-success h3 { font-size: 1.5rem; }
.form-success p { color: var(--muted); max-width: 34ch; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer { background: #fff; border-top: 1px solid var(--line); padding-block: 54px 28px; }
.foot-top { display: flex; justify-content: space-between; gap: 40px; flex-wrap: wrap; padding-bottom: 38px; border-bottom: 1px solid var(--line); }
.foot-brand { max-width: 300px; }
.foot-brand p { margin-top: 15px; font-size: 0.93rem; color: var(--muted); }
.foot-badges { margin-top: 20px; display: flex; gap: 12px; align-items: center; }
.foot-badges .badge-fi { display: inline-flex; align-items: center; gap: 8px; font-family: var(--display); font-weight: 700; font-size: 0.82rem; color: var(--navy); border: 1px solid var(--line-2); border-radius: 100px; padding: 7px 14px; }
.foot-badges .badge-fi svg { width: 20px; height: auto; border-radius: 2px; }
.foot-cols { display: flex; gap: 60px; flex-wrap: wrap; }
.foot-col h5 { font-family: var(--display); font-size: 0.78rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--navy); margin-bottom: 15px; }
.foot-col a { display: block; color: var(--muted); text-decoration: none; font-size: 0.94rem; margin-bottom: 10px; transition: color .15s; }
.foot-col a:hover { color: var(--blue-deep); }
.foot-bot { display: flex; justify-content: space-between; gap: 18px; flex-wrap: wrap; padding-top: 24px; font-size: 0.84rem; color: var(--muted); }

/* reveal */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s cubic-bezier(.2,.6,.2,1), transform .7s cubic-bezier(.2,.6,.2,1); }
.reveal.in { opacity: 1; transform: none; }

/* responsive */
@media (max-width: 980px) {
  .hero-inner { grid-template-columns: 1fr; }
  .screen-stage { order: -1; max-width: 480px; }
  .usecards { grid-template-columns: 1fr; }
  .benefits { grid-template-columns: 1fr; }
  .split { grid-template-columns: 1fr; }
  .split.rev .split-media { order: 0; }
  .fmt-grid { grid-template-columns: 1fr; }
  .price-wrap { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .dash-body { grid-template-columns: 1fr; }
  .dash-side { flex-direction: row; flex-wrap: wrap; border-right: none; border-bottom: 1px solid var(--line); }
}
@media (max-width: 700px) {
  .nav-links { display: none; }
  .nav-cta .btn-ghost { display: none; }
  .form-row { grid-template-columns: 1fr; }
  .foot-top { flex-direction: column; }
  .trustbar .wrap { justify-content: flex-start; }
}
