/* =========================================================
   Ιατροσκόπιο — stylesheet
   ========================================================= */

:root {
  --ink:      #101722;
  --ink-2:    #3d4a5c;
  --muted:    #6b7a8d;
  --line:     #e2e7ee;
  --line-2:   #cfd7e2;
  --bg:       #ffffff;
  --bg-soft:  #f5f7fa;
  --bg-tint:  #eef4ff;
  --brand:    #0f62d6;
  --brand-d:  #0a4aa6;
  --teal:     #0e9384;
  --amber:    #b45309;
  --red:      #c0392f;
  --dark:     #0d1420;
  --dark-2:   #151e2d;

  --r-sm: 8px;
  --r:    12px;
  --r-lg: 18px;

  --shadow-sm: 0 1px 2px rgba(16,23,34,.06), 0 1px 3px rgba(16,23,34,.04);
  --shadow:    0 2px 4px rgba(16,23,34,.04), 0 8px 24px rgba(16,23,34,.07);
  --shadow-lg: 0 12px 40px rgba(16,23,34,.14);

  --head-h: 66px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; scroll-padding-top: calc(var(--head-h) + 16px); }

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: "Inter", "Segoe UI", system-ui, -apple-system, "Helvetica Neue", Arial, sans-serif;
  font-size: 17px;
  line-height: 1.62;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5 { line-height: 1.22; margin: 0; letter-spacing: -.015em; }
p { margin: 0 0 1em; }
p:last-child { margin-bottom: 0; }
a { color: var(--brand); text-decoration: none; }
a:hover { text-decoration: underline; }
em { font-style: italic; }
code {
  font-family: "JetBrains Mono", ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: .88em;
  background: var(--bg-soft);
  border: 1px solid var(--line);
  border-radius: 5px;
  padding: 1px 5px;
}

.container { width: min(1140px, 100% - 44px); margin-inline: auto; }
.hidden { display: none !important; }

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

/* ---------------- buttons ---------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font: inherit;
  font-weight: 600;
  font-size: 15px;
  line-height: 1;
  padding: 13px 22px;
  border-radius: 10px;
  border: 1px solid transparent;
  cursor: pointer;
  text-decoration: none;
  transition: background .15s, border-color .15s, color .15s, box-shadow .15s, transform .1s;
}
.btn:hover { text-decoration: none; }
.btn:active { transform: translateY(1px); }

.btn-primary {
  background: var(--brand);
  color: #fff;
  box-shadow: 0 1px 2px rgba(15,98,214,.3), 0 6px 18px rgba(15,98,214,.22);
}
.btn-primary:hover { background: var(--brand-d); }
.btn-primary:disabled { background: var(--line-2); box-shadow: none; cursor: not-allowed; color: #fff; }

.btn-ghost {
  background: #fff;
  color: var(--ink-2);
  border-color: var(--line-2);
}
.btn-ghost:hover { border-color: var(--muted); color: var(--ink); }

.btn-link { color: var(--brand); padding-inline: 4px; }
.btn-link:hover { color: var(--brand-d); }

.btn-sm { padding: 9px 16px; font-size: 14px; border-radius: 8px; }
.btn-lg { padding: 15px 28px; font-size: 16px; }

/* ================= HEADER ================= */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255,255,255,.88);
  backdrop-filter: saturate(180%) blur(12px);
  border-bottom: 1px solid var(--line);
}

.header-inner {
  height: var(--head-h);
  display: flex;
  align-items: center;
  gap: 24px;
}

.brand { display: flex; align-items: center; gap: 10px; color: var(--ink); }
.brand:hover { text-decoration: none; }

.brand-mark {
  width: 36px; height: 36px;
  display: grid; place-items: center;
  border-radius: 10px;
  background: linear-gradient(140deg, var(--brand), #3f8bff);
  color: #fff;
  flex: none;
}

.brand-txt { display: flex; flex-direction: column; line-height: 1.15; }
.brand-txt strong { font-size: 16.5px; letter-spacing: -.02em; }
.brand-txt small { font-size: 11.5px; color: var(--muted); letter-spacing: .01em; }

.site-nav { display: flex; gap: 4px; margin-inline-start: auto; }
.site-nav a {
  color: var(--ink-2);
  font-size: 14.5px;
  font-weight: 500;
  padding: 8px 12px;
  border-radius: 8px;
}
.site-nav a:hover { background: var(--bg-soft); color: var(--ink); text-decoration: none; }

.header-cta { flex: none; }

.nav-toggle {
  display: none;
  margin-inline-start: auto;
  width: 40px; height: 40px;
  border: 1px solid var(--line-2);
  border-radius: 9px;
  background: #fff;
  cursor: pointer;
  padding: 10px 9px;
  flex-direction: column;
  justify-content: space-between;
}
.nav-toggle span { display: block; height: 2px; background: var(--ink); border-radius: 2px; }

.mobile-nav {
  display: none;
  border-top: 1px solid var(--line);
  background: #fff;
  padding: 8px 22px 14px;
}
.mobile-nav a {
  padding: 11px 4px;
  color: var(--ink);
  font-weight: 500;
  border-bottom: 1px solid var(--line);
}
.mobile-nav a:last-child { border-bottom: 0; }

/* ================= HERO ================= */
.hero {
  background:
    linear-gradient(180deg, #f7faff 0%, #ffffff 100%);
  border-bottom: 1px solid var(--line);
  padding: 72px 0 66px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  inset: -40% 45% 40% -10%;
  background: radial-gradient(closest-side, rgba(15,98,214,.09), transparent);
  pointer-events: none;
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 56px;
  align-items: center;
}

.hero-copy, .test-main { min-width: 0; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: var(--brand-d);
  background: var(--bg-tint);
  border: 1px solid #d5e3ff;
  padding: 6px 12px;
  border-radius: 999px;
  margin-bottom: 20px;
}
.pip {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--teal);
  box-shadow: 0 0 0 0 rgba(14,147,132,.5);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%   { box-shadow: 0 0 0 0 rgba(14,147,132,.5); }
  70%  { box-shadow: 0 0 0 8px rgba(14,147,132,0); }
  100% { box-shadow: 0 0 0 0 rgba(14,147,132,0); }
}

.hero h1 {
  font-size: clamp(34px, 5vw, 56px);
  letter-spacing: -.035em;
  margin-bottom: 18px;
}
.hero h1 em {
  font-style: normal;
  color: var(--brand);
  position: relative;
  white-space: nowrap;
}
.hero h1 em::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: .06em;
  height: .14em;
  background: rgba(15,98,214,.18);
  border-radius: 3px;
}

.lead { font-size: 19px; color: var(--ink-2); max-width: 46ch; }

.hero-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  margin: 26px 0 34px;
}

.stats {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 34px;
  margin: 0;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}
.stats div { display: flex; flex-direction: column; }
.stats dt { font-size: 24px; font-weight: 700; letter-spacing: -.03em; }
.stats dd { margin: 0; font-size: 13px; color: var(--muted); }
.stats code { background: none; border: 0; padding: 0; }

/* hero demo card */
.hero-demo { perspective: 1200px; }
.demo-card {
  background: var(--dark);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  border: 1px solid #22304a;
  transform: rotate(-.6deg);
}
.demo-head {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 12px 16px;
  background: var(--dark-2);
  border-bottom: 1px solid #22304a;
}
.tl-dot { width: 10px; height: 10px; border-radius: 50%; }
.tl-dot.red { background: #ff5f57; }
.tl-dot.amber { background: #febc2e; }
.tl-dot.green { background: #28c840; }
.demo-title { margin-inline-start: 8px; color: #8ea3c0; font-size: 12.5px; font-weight: 600; }

.demo-body { padding: 18px; }
.demo-think {
  color: #8ea3c0;
  font-size: 14.5px;
  margin: 0 0 8px;
  padding-inline-start: 16px;
  position: relative;
}
.demo-think::before {
  content: "";
  position: absolute; left: 0; top: .62em;
  width: 6px; height: 6px; border-radius: 50%;
  background: #3b6fd4;
}
.demo-live { color: #cfe0f7; }
.demo-caret {
  display: inline-block;
  width: 7px; height: 1em;
  background: #cfe0f7;
  vertical-align: -2px;
  margin-inline-start: 4px;
  animation: blink 1.05s steps(1) infinite;
}
@keyframes blink { 50% { opacity: 0; } }

.demo-verdict {
  margin-top: 16px;
  background: #1c1418;
  border: 1px solid #4a2626;
  border-radius: var(--r);
  padding: 14px 16px;
  display: grid;
  gap: 6px;
}
.demo-tag {
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: .12em;
  color: #ff9c8f;
}
.demo-verdict strong { color: #ffe9e5; font-size: 17px; }
.demo-conf { font-size: 12px; color: #93a4bd; }

/* ================= TRUST BAR ================= */
.trustbar { border-bottom: 1px solid var(--line); background: var(--bg-soft); }
.trust-inner {
  display: flex;
  align-items: center;
  gap: 12px 28px;
  flex-wrap: wrap;
  padding: 16px 0;
}
.trust-label { font-size: 12.5px; font-weight: 600; letter-spacing: .06em; text-transform: uppercase; color: var(--muted); }
.trustbar ul {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 28px;
  list-style: none;
  margin: 0; padding: 0;
}
.trustbar li {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 17px;
  color: #98a5b5;
  opacity: .85;
}

/* ================= BANDS ================= */
.band { padding: 80px 0; border-bottom: 1px solid var(--line); }
.band-alt { background: var(--bg-soft); }
.band-dark { background: var(--dark); color: #d7e0ec; border-bottom: 0; }

.band-head { max-width: 640px; margin-bottom: 42px; }
.kicker {
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--brand);
  margin-bottom: 10px;
}
.kicker.light { color: #6ea8ff; }
.band-head h2 { font-size: clamp(26px, 3.6vw, 36px); letter-spacing: -.03em; margin-bottom: 12px; }
.band-dark .band-head h2 { color: #fff; }
.band-sub { font-size: 17.5px; color: var(--ink-2); margin: 0; }
.band-dark .band-sub { color: #9fb0c6; }

.band-note {
  margin-top: 28px;
  font-size: 15px;
  color: var(--muted);
  border-inline-start: 3px solid var(--line-2);
  padding-inline-start: 16px;
  max-width: 760px;
}

/* cards */
.card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-sm);
}

.cards-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.step { padding: 26px 24px; position: relative; transition: box-shadow .2s, transform .2s; }
.step:hover { box-shadow: var(--shadow); transform: translateY(-2px); }
.step-n {
  display: inline-grid;
  place-items: center;
  width: 38px; height: 38px;
  border-radius: 10px;
  background: var(--bg-tint);
  color: var(--brand-d);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .02em;
  margin-bottom: 16px;
}
.step h3 { font-size: 18.5px; margin-bottom: 8px; }
.step p { color: var(--ink-2); font-size: 15.5px; margin: 0; }

/* ================= TEST ================= */
.test-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 28px;
  align-items: start;
}

.form-card { padding: 26px 26px 28px; }

.form-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 14px;
}
.form-head h3 { font-size: 17px; }
.progress-chip {
  font-size: 13px;
  font-weight: 700;
  color: var(--brand-d);
  background: var(--bg-tint);
  border: 1px solid #d5e3ff;
  border-radius: 999px;
  padding: 4px 12px;
  font-variant-numeric: tabular-nums;
}

.progress-track {
  height: 5px;
  background: var(--line);
  border-radius: 999px;
  overflow: hidden;
  margin-bottom: 10px;
}

.form-hint {
  font-size: 13.5px;
  color: var(--muted);
  margin: 0 0 18px;
}
.progress-bar {
  height: 100%;
  width: 0;
  background: linear-gradient(90deg, var(--brand), #4d97ff);
  border-radius: 999px;
  transition: width .32s cubic-bezier(.4,0,.2,1);
}

.questions { list-style: none; margin: 0 0 24px; padding: 0; }
.q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
  padding: 16px 2px;
  border-bottom: 1px solid var(--line);
}
.q:first-child { padding-top: 0; }
.q-label { font-size: 16.5px; font-weight: 500; display: flex; gap: 10px; }
.q-num { color: var(--line-2); font-weight: 700; font-variant-numeric: tabular-nums; }
.q.answered .q-num { color: var(--brand); }

.opts { display: flex; gap: 8px; flex: none; }
.opt { position: relative; cursor: pointer; user-select: none; }
.opt input { position: absolute; opacity: 0; width: 0; height: 0; }
.opt span {
  display: inline-block;
  min-width: 68px;
  text-align: center;
  padding: 9px 16px;
  border-radius: 9px;
  border: 1px solid var(--line-2);
  background: #fff;
  color: var(--ink-2);
  font-weight: 600;
  font-size: 14.5px;
  transition: all .14s ease;
}
.opt:hover span { border-color: var(--muted); }
.opt.yes input:checked + span {
  background: #eaf1ff; border-color: var(--brand); color: var(--brand-d);
  box-shadow: inset 0 0 0 1px var(--brand);
}
.opt.no input:checked + span {
  background: #f1f4f8; border-color: var(--ink-2); color: var(--ink);
  box-shadow: inset 0 0 0 1px var(--ink-2);
}
.opt input:focus-visible + span { outline: 2px solid var(--brand); outline-offset: 2px; }

.actions { display: flex; gap: 12px; align-items: center; flex-wrap: wrap; }
.formError { color: var(--red); font-size: 14.5px; margin: 14px 0 0; }

/* aside */
.test-aside { display: grid; gap: 16px; position: sticky; top: calc(var(--head-h) + 20px); }
.aside-card { padding: 20px; }
.aside-card h4 { font-size: 14px; letter-spacing: .01em; margin-bottom: 8px; }
.aside-card p { font-size: 14.5px; color: var(--ink-2); margin: 0; }
.aside-warn { background: #fffaf2; border-color: #f2e0c2; }
.aside-warn h4 { color: var(--amber); }

/* ================= CHAT ================= */
.chat {
  margin-top: 22px;
  background: var(--dark);
  border: 1px solid #22304a;
  border-radius: var(--r-lg);
  box-shadow: var(--shadow);
  overflow: hidden;
}
.chat-head {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 13px 18px;
  background: var(--dark-2);
  border-bottom: 1px solid #22304a;
  font-size: 13px;
  font-weight: 600;
  color: #8ea3c0;
}
.dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: #28c840;
  animation: pulse2 1.7s infinite;
}
@keyframes pulse2 {
  0%   { box-shadow: 0 0 0 0 rgba(40,200,64,.5); }
  70%  { box-shadow: 0 0 0 8px rgba(40,200,64,0); }
  100% { box-shadow: 0 0 0 0 rgba(40,200,64,0); }
}

.chat-body { padding: 20px 22px 24px; }

.think {
  display: flex;
  align-items: baseline;
  gap: 10px;
  color: #a7b8ce;
  font-size: 15.5px;
  padding: 5px 0;
  animation: fade .3s ease both;
}
.think::before { content: ""; width: 6px; height: 6px; border-radius: 50%; background: #3b6fd4; flex: none; transform: translateY(-2px); }
.think.done { opacity: .5; }

@keyframes fade { from { opacity: 0; transform: translateY(5px); } to { opacity: 1; transform: none; } }

.spinner {
  display: inline-block;
  width: 12px; height: 12px;
  border: 2px solid #2c3b56;
  border-top-color: #5b9bff;
  border-radius: 50%;
  animation: spin .7s linear infinite;
  margin-inline-start: 4px;
}
@keyframes spin { to { transform: rotate(360deg); } }

.caret {
  display: inline-block;
  width: 7px; height: 1em;
  background: #cfe0f7;
  vertical-align: -2px;
  margin-inline-start: 3px;
  animation: blink 1.05s steps(1) infinite;
}

/* verdict */
.verdict {
  margin-top: 20px;
  padding: 22px;
  border-radius: var(--r);
  border: 1px solid;
  animation: fade .35s ease both;
}
.verdict.bad  { background: #1c1418; border-color: #4a2626; }
.verdict.good { background: #0f1c19; border-color: #1f4a3d; }

.verdict-tag {
  display: inline-block;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: .12em;
  margin-bottom: 8px;
}
.verdict.bad .verdict-tag { color: #ff9c8f; }
.verdict.good .verdict-tag { color: #5fdcb4; }

.verdict h3 { font-size: clamp(20px, 3vw, 26px); margin-bottom: 8px; letter-spacing: -.02em; }
.verdict.bad h3  { color: #ffe9e5; }
.verdict.good h3 { color: #d9fff2; }

.confidence {
  font-size: 12.5px;
  color: #8ea3c0;
  margin-bottom: 14px;
  font-variant-numeric: tabular-nums;
}
.verdict > p { color: #b8c7da; font-size: 15.5px; }

.notes { margin: 16px 0 0; padding: 0; list-style: none; display: grid; gap: 10px; }
.notes li {
  background: rgba(255,255,255,.035);
  border: 1px solid #263349;
  border-inline-start: 3px solid #3b6fd4;
  border-radius: 10px;
  padding: 13px 15px;
  font-size: 15px;
  color: #b8c7da;
}
.notes li strong { color: #e8eff8; }

.ps {
  margin-top: 16px;
  padding-top: 14px;
  border-top: 1px dashed #2c3b56;
  font-size: 14px;
  color: #8ea3c0;
}

/* ================= FAQ ================= */
.faq { display: grid; gap: 12px; max-width: 860px; }
.faq details {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}
.faq details[open] { border-color: var(--line-2); box-shadow: var(--shadow); }
.faq summary {
  cursor: pointer;
  list-style: none;
  padding: 18px 54px 18px 22px;
  font-size: 17px;
  font-weight: 600;
  position: relative;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+";
  position: absolute;
  inset-inline-end: 22px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 22px;
  font-weight: 400;
  color: var(--muted);
  line-height: 1;
}
.faq details[open] summary::after { content: "–"; }
.faq summary:hover { background: var(--bg-soft); }
.faq-body { padding: 0 22px 20px; color: var(--ink-2); font-size: 16px; }

/* ================= SERIOUS ================= */
.serious {
  counter-reset: s;
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px 40px;
  max-width: 980px;
}
.serious li {
  counter-increment: s;
  padding-inline-start: 50px;
  position: relative;
}
.serious li::before {
  content: counter(s);
  position: absolute;
  inset-inline-start: 0;
  top: 0;
  width: 34px; height: 34px;
  display: grid; place-items: center;
  border-radius: 50%;
  border: 1px solid #2c3b56;
  background: rgba(255,255,255,.04);
  color: #6ea8ff;
  font-size: 14px;
  font-weight: 700;
}
.serious h3 { font-size: 17.5px; color: #fff; margin-bottom: 6px; }
.serious p { font-size: 15.5px; color: #9fb0c6; margin: 0; }

/* ================= ΕΛΕΥΘΕΡΗ ΕΠΙΛΟΓΗ ================= */
.freedom {
  background: #fffaf2;
  border-bottom: 1px solid var(--line);
  padding: 72px 0;
}

.freedom-box {
  max-width: 860px;
  margin-inline: auto;
  background: #fff;
  border: 2px solid #e8c88a;
  border-radius: var(--r-lg);
  box-shadow: 0 2px 4px rgba(180,83,9,.05), 0 14px 40px rgba(180,83,9,.09);
  padding: 44px 46px;
  position: relative;
}
.freedom-box::before {
  content: "";
  position: absolute;
  inset-inline: -2px;
  top: -2px;
  height: 5px;
  border-radius: var(--r-lg) var(--r-lg) 0 0;
  background: linear-gradient(90deg, #d97706, #f0b357);
}

.freedom-kicker {
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 14px;
}

.freedom-box h2 {
  font-size: clamp(26px, 3.6vw, 38px);
  letter-spacing: -.03em;
  margin-bottom: 18px;
  text-wrap: balance;
}

.freedom-lead { font-size: 18.5px; color: var(--ink-2); }
.freedom-box > p { color: var(--ink-2); font-size: 16.5px; }

.freedom-list {
  list-style: none;
  margin: 22px 0;
  padding: 0;
  display: grid;
  gap: 14px;
}
.freedom-list li {
  background: #fffaf2;
  border: 1px solid #f2e0c2;
  border-radius: var(--r);
  padding: 16px 18px;
  font-size: 16px;
  color: var(--ink-2);
}
.freedom-list strong { color: var(--ink); }

.freedom-end {
  margin-top: 24px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
  font-size: 16.5px;
}
.freedom-end strong { color: var(--ink); }

/* ================= FOOTER ================= */
.site-footer { background: #0a101a; color: #8ea3c0; }

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 36px;
  padding: 56px 0 42px;
}

.footer-brand { display: grid; gap: 14px; align-content: start; }
.footer-brand p { font-size: 14.5px; line-height: 1.6; }
.footer-brand strong { color: #fff; font-size: 16px; }

.footer-col h5 {
  font-size: 12.5px;
  letter-spacing: .09em;
  text-transform: uppercase;
  color: #62748c;
  margin-bottom: 14px;
}
.footer-col { display: grid; gap: 9px; align-content: start; }
.footer-col a { color: #b8c7da; font-size: 14.5px; }
.footer-col a:hover { color: #fff; }
.footer-col .muted { font-size: 14px; color: #8ea3c0; margin: 0; }
.footer-col .muted strong { color: #cfdae7; }
.footer-col code { background: rgba(255,255,255,.06); border-color: #22304a; color: #9fc0ef; }

.footer-bottom { border-top: 1px solid #1a2534; }
.footer-bottom-inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 24px;
  padding: 22px 0 30px;
  flex-wrap: wrap;
}
.disclaimer { font-size: 13px; line-height: 1.6; max-width: 720px; color: #7d8ea5; margin: 0; }
.disclaimer strong { color: #b8c7da; }
.copy { font-size: 12.5px; color: #55657c; margin: 0; white-space: nowrap; }

/* ================= RESPONSIVE ================= */
@media (max-width: 1000px) {
  .hero-grid { grid-template-columns: 1fr; gap: 42px; }
  .hero-demo { max-width: 520px; }
  .test-grid { grid-template-columns: 1fr; }
  .test-aside { position: static; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}

@media (max-width: 860px) {
  .site-nav, .header-cta { display: none; }
  .nav-toggle { display: flex; }
  .mobile-nav:not([hidden]) { display: grid; }
  .cards-3 { grid-template-columns: 1fr; }
  .serious { grid-template-columns: 1fr; }
}

@media (max-width: 620px) {
  body { font-size: 16px; }
  .container { width: min(100% - 32px, 1140px); }
  .hero { padding: 48px 0 44px; }
  .band { padding: 56px 0; }
  .freedom { padding: 48px 0; }
  .freedom-box { padding: 28px 22px; }
  .q { align-items: stretch; }
  .opts { width: 100%; }
  .opt { flex: 1; }
  .opt span { width: 100%; }
  .actions .btn { width: 100%; }
  .footer-grid { grid-template-columns: 1fr; }
  .copy { white-space: normal; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { animation: none !important; transition: none !important; }
}
