/* =========================================================
   AI Arenduskeskus — Landing Page Styles
   Consolidated from: styles.css, styles-v6.css, styles-v7b.css, styles-v7-extra.css
   Version: v7.8 (FAQ ümberjärjestus + garantii + copy QA)
   ========================================================= */

/* ========== LAYER 1: Base (:root, reset, typography, utilities) ========== */
/* ===== AIA Landing — editorial institutional ===== */

:root {
  --paper: #F7F5F1;
  --paper-2: #EFEBE2;
  --ink: #0F1419;
  --ink-2: #2A2F38;
  --graphite: #5A5E66;
  --rule: #D9D4C7;
  --rule-strong: #A8A39A;
  --blue: #1E5FD9;
  --blue-deep: #143FA3;
  --green: #2E7D4F;
  --amber: #B8821A;
  --red: #B2443B;

  --serif: 'Fraunces', 'Times New Roman', serif;
  --sans: 'Inter', system-ui, -apple-system, sans-serif;
  --mono: 'JetBrains Mono', ui-monospace, Menlo, monospace;

  --max: 1200px;
  --gutter: 32px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }

.container {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

/* ===== Typography ===== */
.eyebrow {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--graphite);
  font-weight: 500;
}
h1, h2, h3, h4 { font-family: var(--serif); font-weight: 400; letter-spacing: -0.01em; line-height: 1.05; }
h1 { font-size: clamp(44px, 6.2vw, 92px); letter-spacing: -0.025em; }
h2 { font-size: clamp(32px, 4vw, 56px); letter-spacing: -0.02em; }
h3 { font-size: clamp(22px, 2.2vw, 30px); }
h4 { font-size: 20px; }
p { text-wrap: pretty; }
.lead { font-size: clamp(18px, 1.4vw, 22px); line-height: 1.5; color: var(--ink-2); }

em, .italic { font-style: italic; }
strong { font-weight: 600; }

/* ===== Top bar ===== */
.topbar {
  position: sticky; top: 0; z-index: 50;
  background: rgba(247, 245, 241, 0.92);
  backdrop-filter: saturate(140%) blur(8px);
  border-bottom: 1px solid var(--rule);
}
.topbar-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 68px;
}
.brand { display: flex; align-items: center; gap: 12px; }
.brand img { width: 36px; height: 36px; object-fit: contain; }
.brand .wordmark {
  font-family: var(--sans); font-weight: 600; font-size: 14px;
  letter-spacing: 0.02em; color: var(--ink);
}
.brand .wordmark small {
  display: block; font-weight: 400; font-size: 11px;
  color: var(--graphite); letter-spacing: 0.06em; text-transform: uppercase;
}
.nav { display: flex; gap: 28px; align-items: center; }
.nav a {
  font-size: 14px; color: var(--ink-2);
  transition: color .2s;
}
.nav a:hover { color: var(--blue); }
.nav .cta-inline {
  padding: 9px 16px;
  border: 1px solid var(--ink);
  border-radius: 2px;
  font-size: 13px;
  transition: all .2s;
}
.nav .cta-inline:hover { background: var(--ink); color: var(--paper); }
@media (max-width: 720px) { .nav { display: none; } .nav .cta-inline { display: inline-block; } .nav a:not(.cta-inline){display:none;} }

/* ===== Hero ===== */
.hero {
  padding: 96px 0 72px;
  border-bottom: 1px solid var(--rule);
  position: relative;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
}
.hero-kicker {
  display: flex; align-items: center; gap: 12px;
  margin-bottom: 28px;
}
.hero-kicker .dot { width: 6px; height: 6px; background: var(--green); border-radius: 50%; }
.hero h1 { max-width: 14ch; }
.hero h1 .accent { color: var(--blue); font-style: italic; }
.hero-sub {
  margin-top: 28px;
  max-width: 56ch;
  font-size: clamp(18px, 1.3vw, 21px);
  color: var(--ink-2);
  line-height: 1.55;
}
.hero-ctas {
  margin-top: 44px;
  display: flex; flex-wrap: wrap; gap: 14px;
  align-items: center;
}
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 15px 22px;
  border-radius: 2px;
  font-size: 15px; font-weight: 500;
  transition: all .18s;
  border: 1px solid transparent;
}
.btn-primary { background: var(--ink); color: var(--paper); }
.btn-primary:hover { background: var(--blue); transform: translateY(-1px); }
.btn-ghost { background: transparent; color: var(--ink); border-color: var(--ink); }
.btn-ghost:hover { background: var(--ink); color: var(--paper); }
.btn .arrow { transition: transform .2s; }
.btn:hover .arrow { transform: translateX(3px); }

.hero-meta {
  margin-top: 64px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid var(--rule);
  padding-top: 28px;
}
.hero-meta .cell {
  padding-right: 24px;
  border-right: 1px solid var(--rule);
}
.hero-meta .cell:last-child { border-right: none; }
.hero-meta .num {
  font-family: var(--serif); font-size: 38px; line-height: 1;
  letter-spacing: -0.02em;
}
.hero-meta .lbl {
  margin-top: 8px; font-size: 12px; color: var(--graphite);
  font-family: var(--mono); text-transform: uppercase; letter-spacing: 0.08em;
}
@media (max-width: 760px) {
  .hero-meta { grid-template-columns: repeat(2, 1fr); row-gap: 28px; }
  .hero-meta .cell:nth-child(2) { border-right: none; }
  .hero { padding: 64px 0 56px; }
}

/* ===== Section header pattern ===== */
.section {
  padding: 112px 0;
  border-bottom: 1px solid var(--rule);
}
.section-head {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 32px;
  margin-bottom: 64px;
  align-items: baseline;
}
.section-head .num-tag {
  font-family: var(--mono); font-size: 12px; color: var(--graphite);
  letter-spacing: 0.1em; text-transform: uppercase;
  padding-top: 12px;
  border-top: 1px solid var(--ink);
  display: inline-block;
  min-width: 140px;
}
.section-head h2 { max-width: 22ch; }
.section-head .sub {
  grid-column: 2;
  margin-top: 20px;
  max-width: 60ch;
  color: var(--ink-2);
  font-size: 18px;
}
@media (max-width: 720px) {
  .section { padding: 72px 0; }
  .section-head { grid-template-columns: 1fr; gap: 16px; margin-bottom: 40px; }
  .section-head .sub { grid-column: 1; }
}

/* ===== Discovery pricing tiers ===== */
.tiers {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
}
.tier {
  padding: 40px 32px 48px;
  border-right: 1px solid var(--rule);
  position: relative;
  transition: background .2s;
}
.tier:last-child { border-right: none; }
.tier:hover { background: var(--paper-2); }
.tier.featured { background: var(--ink); color: var(--paper); }
.tier.featured .tier-price,
.tier.featured .tier-name,
.tier.featured li { color: var(--paper); }
.tier.featured .tier-kicker { color: rgba(247, 245, 241, 0.6); }
.tier.featured .tier-meta { border-top-color: rgba(247, 245, 241, 0.18); color: rgba(247, 245, 241, 0.7); }
.tier-kicker {
  font-family: var(--mono); font-size: 11px;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--graphite);
}
.tier-badge {
  position: absolute; top: 24px; right: 24px;
  font-family: var(--mono); font-size: 10px;
  letter-spacing: 0.15em; text-transform: uppercase;
  padding: 4px 9px; background: var(--blue); color: #fff;
  border-radius: 2px;
}
.tier-name { margin-top: 12px; font-family: var(--serif); font-size: 30px; line-height: 1.1; }
.tier-price { margin-top: 20px; font-family: var(--serif); font-size: 52px; letter-spacing: -0.02em; line-height: 1; }
.tier-price small { font-family: var(--sans); font-size: 14px; color: var(--graphite); letter-spacing: 0; margin-left: 6px; }
.tier-meta {
  margin-top: 16px; padding-top: 16px;
  border-top: 1px dashed var(--rule);
  font-family: var(--mono); font-size: 12px;
  color: var(--graphite); text-transform: uppercase; letter-spacing: 0.08em;
}
.tier ul { list-style: none; margin-top: 28px; }
.tier li {
  padding: 11px 0 11px 22px;
  border-bottom: 1px solid var(--rule);
  position: relative;
  font-size: 14.5px; line-height: 1.5;
}
.tier.featured li { border-color: rgba(247, 245, 241, 0.12); }
.tier li:last-child { border-bottom: none; }
.tier li::before {
  content: "+"; position: absolute; left: 0; top: 10px;
  font-family: var(--mono); color: var(--blue);
  font-size: 14px;
}
@media (max-width: 860px) {
  .tiers { grid-template-columns: 1fr; }
  .tier { border-right: none; border-bottom: 1px solid var(--rule); }
  .tier:last-child { border-bottom: none; }
}

/* ===== Two-gate diagram ===== */
.gate-diagram {
  background: var(--paper-2);
  padding: 56px 40px;
  border: 1px solid var(--rule);
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  position: relative;
}
.gate-row {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 32px;
  padding: 28px 0;
  border-bottom: 1px dashed var(--rule-strong);
  align-items: start;
}
.gate-row:last-child { border-bottom: none; }
.gate-label {
  font-family: var(--mono); font-size: 11px;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--graphite);
}
.gate-label .step {
  display: block; font-family: var(--serif); font-style: italic;
  font-size: 28px; color: var(--ink); margin-top: 4px;
  letter-spacing: -0.01em; text-transform: none;
}
.gate-content h4 {
  font-family: var(--serif); font-size: 22px; margin-bottom: 8px;
}
.gate-content p { color: var(--ink-2); font-size: 15.5px; max-width: 56ch; }
.gate-content .tags {
  margin-top: 14px; display: flex; flex-wrap: wrap; gap: 8px;
}
.gate-content .tag {
  font-family: var(--mono); font-size: 11px; letter-spacing: 0.05em;
  padding: 5px 10px; background: var(--paper);
  border: 1px solid var(--rule-strong); border-radius: 2px;
  color: var(--ink-2);
}
.gate-content .tag.red { border-color: var(--red); color: var(--red); }
.gate-content .tag.green { border-color: var(--green); color: var(--green); }
.gate-content .tag.blue { border-color: var(--blue); color: var(--blue); }

.gate-arrow {
  grid-column: 1 / -1;
  display: flex; justify-content: center; align-items: center;
  padding: 4px 0;
  font-family: var(--mono); font-size: 10px; letter-spacing: 0.2em;
  color: var(--graphite);
}
.gate-arrow .line { flex: 1; height: 1px; background: var(--rule-strong); }
.gate-arrow .label { padding: 0 16px; text-transform: uppercase; }

.gate-marker {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 6px 12px; border-radius: 2px;
  font-family: var(--mono); font-size: 11px; letter-spacing: 0.1em;
  text-transform: uppercase;
  background: var(--ink); color: var(--paper);
  margin-bottom: 10px;
}
.gate-marker.low { background: transparent; color: var(--ink); border: 1px solid var(--ink); }
.gate-marker.high { background: var(--blue); color: #fff; }
.gate-marker .dotm { width: 6px; height: 6px; border-radius: 50%; background: currentColor; }

@media (max-width: 720px) {
  .gate-diagram { padding: 32px 20px; }
  .gate-row { grid-template-columns: 1fr; gap: 12px; padding: 20px 0; }
  .gate-label .step { font-size: 22px; }
}

/* ===== Process strip ===== */
.process {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  border-top: 1px solid var(--ink);
}
.step-card {
  padding: 32px 20px 28px;
  border-right: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  min-height: 220px;
  position: relative;
}
.step-card:last-child { border-right: none; }
.step-card .step-num {
  font-family: var(--mono); font-size: 11px;
  letter-spacing: 0.15em; color: var(--graphite);
}
.step-card h4 {
  font-family: var(--serif); font-size: 22px; margin: 16px 0 10px;
  letter-spacing: -0.01em;
}
.step-card p { font-size: 14px; color: var(--ink-2); line-height: 1.5; }
.step-card .step-dur {
  margin-top: 14px; font-family: var(--mono); font-size: 11px;
  color: var(--blue); letter-spacing: 0.08em; text-transform: uppercase;
}
@media (max-width: 900px) {
  .process { grid-template-columns: repeat(2, 1fr); }
  .step-card:nth-child(2n) { border-right: none; }
}
@media (max-width: 500px) {
  .process { grid-template-columns: 1fr; }
  .step-card { border-right: none; }
}

/* ===== Tase 1 offerings ===== */
.offerings {
  display: grid; grid-template-columns: 1fr 1fr; gap: 0;
  border: 1px solid var(--rule);
}
.offering {
  padding: 48px 40px;
  border-right: 1px solid var(--rule);
}
.offering:last-child { border-right: none; }
.offering .kind {
  font-family: var(--mono); font-size: 11px;
  letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--graphite);
}
.offering h3 { margin-top: 12px; font-family: var(--serif); font-size: 32px; }
.offering .range {
  margin-top: 20px; font-family: var(--serif); font-size: 24px;
  color: var(--blue); font-style: italic;
}
.offering .range span { color: var(--graphite); font-size: 14px; font-style: normal; font-family: var(--mono); letter-spacing: 0.05em; margin-left: 10px; }
.offering p { margin-top: 20px; color: var(--ink-2); font-size: 16px; max-width: 44ch; }
.offering ul { list-style: none; margin-top: 22px; }
.offering li { padding: 8px 0 8px 20px; font-size: 14.5px; color: var(--ink-2); position: relative; }
.offering li::before { content: "—"; position: absolute; left: 0; color: var(--blue); }
.offering .note {
  margin-top: 28px; padding: 14px 16px;
  background: var(--paper-2); border-left: 2px solid var(--blue);
  font-size: 13.5px; color: var(--graphite); font-style: italic;
}
@media (max-width: 820px) {
  .offerings { grid-template-columns: 1fr; }
  .offering { border-right: none; border-bottom: 1px solid var(--rule); }
  .offering:last-child { border-bottom: none; }
}

/* ===== Conversation Intelligence ===== */
.ci-hero {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 56px;
  margin-bottom: 48px;
  align-items: start;
}
.ci-tagline {
  display: flex; flex-wrap: wrap; align-items: center; gap: 14px;
  margin-bottom: 28px;
}
.ci-word {
  font-family: var(--serif); font-style: italic;
  font-size: clamp(26px, 3vw, 40px);
  letter-spacing: -0.015em; line-height: 1;
  color: var(--ink);
}
.ci-word.accent { color: var(--blue); }
.ci-arrow {
  font-family: var(--mono); font-size: 18px;
  color: var(--graphite);
}
.ci-lead {
  font-size: 17px; color: var(--ink-2); line-height: 1.55;
  max-width: 56ch;
}
.ci-stack {
  background: var(--paper);
  border: 1px solid var(--rule);
  padding: 28px 28px 20px;
}
.ci-stack-title {
  font-family: var(--mono); font-size: 11px;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--graphite);
  padding-bottom: 14px;
  border-bottom: 1px solid var(--rule);
}
.ci-stack-row {
  display: flex; justify-content: space-between; align-items: baseline;
  padding: 14px 0;
  border-bottom: 1px dashed var(--rule);
  gap: 16px;
}
.ci-stack-row:last-child { border-bottom: none; }
.ci-k {
  font-family: var(--mono); font-size: 11px;
  text-transform: uppercase; letter-spacing: 0.08em;
  color: var(--blue);
  flex-shrink: 0;
}
.ci-v {
  font-family: var(--serif); font-size: 16px;
  color: var(--ink);
  text-align: right;
}

.ci-pilot {
  background: var(--ink);
  color: var(--paper);
  padding: 56px 48px;
  position: relative;
}
.ci-pilot-badge {
  display: inline-block;
  font-family: var(--mono); font-size: 11px;
  letter-spacing: 0.15em; text-transform: uppercase;
  padding: 6px 12px;
  background: var(--blue); color: #fff;
  border-radius: 2px;
  margin-bottom: 24px;
}
.ci-pilot h3 {
  font-family: var(--serif); font-size: clamp(28px, 3.2vw, 42px);
  letter-spacing: -0.02em; max-width: 22ch;
  margin-bottom: 20px;
}
.ci-pilot > p {
  color: rgba(247, 245, 241, 0.72);
  font-size: 17px; max-width: 64ch; line-height: 1.55;
  margin-bottom: 40px;
}
.ci-bullets {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 0;
  border-top: 1px solid rgba(247, 245, 241, 0.15);
}
.ci-bullet {
  padding: 24px 28px 24px 0;
  border-bottom: 1px solid rgba(247, 245, 241, 0.12);
  border-right: 1px solid rgba(247, 245, 241, 0.12);
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 0 16px;
  align-items: baseline;
}
.ci-bullet:nth-child(2n) { border-right: none; padding-right: 0; padding-left: 28px; }
.ci-bullet:nth-last-child(-n+2) { border-bottom: none; }
.ci-bullet-n {
  font-family: var(--mono); font-size: 11px;
  letter-spacing: 0.12em; color: var(--blue);
  grid-row: 1 / 3;
}
.ci-bullet-t {
  font-family: var(--serif); font-size: 19px;
  color: var(--paper); margin-bottom: 6px;
  line-height: 1.3;
}
.ci-bullet-d {
  font-size: 14px; color: rgba(247, 245, 241, 0.65);
  line-height: 1.5;
}
.ci-meta {
  display: grid; grid-template-columns: repeat(4, 1fr);
  margin-top: 40px;
  border-top: 1px solid rgba(247, 245, 241, 0.2);
  padding-top: 28px;
}
.ci-meta-cell {
  border-right: 1px solid rgba(247, 245, 241, 0.12);
  padding-right: 20px;
}
.ci-meta-cell:last-child { border-right: none; }
.ci-meta-n {
  font-family: var(--serif); font-size: 40px; line-height: 1;
  letter-spacing: -0.02em; color: var(--paper);
}
.ci-meta-l {
  margin-top: 8px; font-family: var(--mono); font-size: 11px;
  color: rgba(247, 245, 241, 0.5);
  text-transform: uppercase; letter-spacing: 0.08em;
}
@media (max-width: 860px) {
  .ci-hero { grid-template-columns: 1fr; gap: 32px; }
  .ci-pilot { padding: 40px 24px; }
  .ci-bullets { grid-template-columns: 1fr; }
  .ci-bullet, .ci-bullet:nth-child(2n) {
    padding: 20px 0; border-right: none;
  }
  .ci-meta { grid-template-columns: repeat(2, 1fr); row-gap: 20px; }
  .ci-meta-cell:nth-child(2) { border-right: none; }
}

/* ===== Company facts grid ===== */
.company-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 64px;
  align-items: start;
}
.company-facts {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-top: 1px solid var(--ink);
  border-left: 1px solid var(--rule);
}
.cfact {
  padding: 18px 20px;
  border-right: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
}
.cfact-k {
  font-family: var(--mono); font-size: 10px; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--graphite);
}
.cfact-v {
  font-family: var(--serif); font-size: 19px; margin-top: 6px;
  line-height: 1.3;
}
.cfact-v span {
  display: block; font-family: var(--mono); font-size: 11px;
  color: var(--graphite); letter-spacing: 0.04em;
  margin-top: 4px;
}
.company-text h3 {
  font-family: var(--serif); font-size: clamp(26px, 2.8vw, 34px);
  margin-bottom: 20px; line-height: 1.15; letter-spacing: -0.01em;
}
.company-text p {
  color: var(--ink-2); margin-bottom: 16px; font-size: 17px;
  max-width: 58ch;
}
@media (max-width: 820px) {
  .company-grid { grid-template-columns: 1fr; gap: 40px; }
}

/* ===== About / Juri ===== */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 64px;
  align-items: start;
}
.about-portrait {
  background: var(--paper-2);
  border: 1px solid var(--rule);
  aspect-ratio: 3/4;
  position: relative;
  overflow: hidden;
}
.about-portrait .placeholder-label {
  position: absolute; inset: 0;
  display: flex; align-items: flex-end; justify-content: flex-start;
  padding: 20px;
  font-family: var(--mono); font-size: 11px; color: var(--graphite);
  letter-spacing: 0.1em; text-transform: uppercase;
}
.about-portrait .stripe {
  position: absolute; inset: 0;
  background: repeating-linear-gradient(
    -45deg,
    transparent 0 14px,
    rgba(15, 20, 25, 0.05) 14px 15px
  );
}
.about-portrait .initials {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--serif); font-size: 140px; color: var(--ink);
  letter-spacing: -0.04em; opacity: 0.95;
}
.about-text h3 {
  font-family: var(--serif); font-size: clamp(28px, 3vw, 38px);
  margin-bottom: 20px; line-height: 1.15;
}
.about-text p { color: var(--ink-2); margin-bottom: 16px; font-size: 17px; }
.about-creds {
  margin-top: 32px;
  display: grid; grid-template-columns: 1fr 1fr; gap: 0;
  border-top: 1px solid var(--rule);
}
.about-creds .cred {
  padding: 18px 0 18px 0;
  border-bottom: 1px solid var(--rule);
  padding-right: 24px;
}
.about-creds .cred:nth-child(odd) { border-right: 1px solid var(--rule); padding-left: 0; }
.about-creds .cred:nth-child(even) { padding-left: 24px; }
.about-creds .cred-lbl {
  font-family: var(--mono); font-size: 10px; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--graphite);
}
.about-creds .cred-val {
  font-family: var(--serif); font-size: 18px; margin-top: 6px;
  line-height: 1.3;
}
@media (max-width: 820px) {
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .about-portrait { max-width: 320px; }
}

/* ===== Fit / not-fit ===== */
.fit-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 0;
  border: 1px solid var(--rule);
}
.fit-col { padding: 44px 36px; border-right: 1px solid var(--rule); }
.fit-col:last-child { border-right: none; background: var(--paper-2); }
.fit-col h4 {
  font-family: var(--mono); font-size: 11px;
  letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--graphite); margin-bottom: 8px;
}
.fit-col .headline {
  font-family: var(--serif); font-size: 28px; margin-bottom: 28px;
  line-height: 1.15;
}
.fit-col.yes .headline { color: var(--ink); }
.fit-col.no .headline { color: var(--graphite); }
.fit-list { list-style: none; }
.fit-list li {
  padding: 12px 0 12px 30px;
  border-bottom: 1px solid var(--rule);
  font-size: 15px; color: var(--ink-2);
  position: relative;
  line-height: 1.5;
}
.fit-list li:last-child { border-bottom: none; }
.fit-list li::before {
  position: absolute; left: 0; top: 11px;
  font-family: var(--mono); font-size: 14px;
}
.fit-col.yes .fit-list li::before { content: "✓"; color: var(--green); }
.fit-col.no .fit-list li::before { content: "×"; color: var(--red); }
@media (max-width: 720px) {
  .fit-grid { grid-template-columns: 1fr; }
  .fit-col { border-right: none; border-bottom: 1px solid var(--rule); padding: 32px 24px; }
  .fit-col:last-child { border-bottom: none; }
}

/* ===== FAQ ===== */
.faq-list { border-top: 1px solid var(--ink); }
.faq-item { border-bottom: 1px solid var(--rule); }
.faq-q {
  width: 100%; text-align: left;
  padding: 24px 0;
  display: flex; justify-content: space-between; align-items: center;
  gap: 24px;
  font-family: var(--serif); font-size: 22px; line-height: 1.3;
  color: var(--ink);
  transition: color .2s;
}
.faq-q:hover { color: var(--blue); }
.faq-q .plus {
  font-family: var(--mono); font-size: 22px; color: var(--blue);
  transition: transform .25s;
  flex-shrink: 0;
}
.faq-item.open .faq-q .plus { transform: rotate(45deg); }
.faq-a {
  max-height: 0; overflow: hidden;
  transition: max-height .35s ease, padding .25s ease;
  color: var(--ink-2); font-size: 16px;
  max-width: 72ch;
}
.faq-item.open .faq-a {
  max-height: 400px;
  padding: 0 0 28px;
}
.faq-a p + p { margin-top: 10px; }

/* ===== Contact ===== */
.contact {
  background: var(--ink); color: var(--paper);
  padding: 112px 0;
}
.contact .container { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: start; }
.contact h2 { color: var(--paper); }
.contact .lead { color: rgba(247, 245, 241, 0.72); max-width: 44ch; }
.contact .eyebrow { color: rgba(247, 245, 241, 0.5); }
.contact-side h3 {
  font-family: var(--serif); font-size: 22px; margin-bottom: 18px;
  color: var(--paper);
}
.contact-row {
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px 0;
  border-bottom: 1px solid rgba(247, 245, 241, 0.15);
}
.contact-row .k {
  font-family: var(--mono); font-size: 11px;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: rgba(247, 245, 241, 0.5);
}
.contact-row .v {
  font-family: var(--serif); font-size: 18px; color: var(--paper);
}
.contact-row a.v:hover { color: var(--blue); }
.contact .btn-primary { background: var(--blue); color: #fff; }
.contact .btn-primary:hover { background: #fff; color: var(--ink); }
.contact .btn-ghost { border-color: rgba(247, 245, 241, 0.5); color: var(--paper); }
.contact .btn-ghost:hover { background: var(--paper); color: var(--ink); }
.contact .ctas { margin-top: 40px; display: flex; gap: 14px; flex-wrap: wrap; }
@media (max-width: 720px) {
  .contact { padding: 72px 0; }
  .contact .container { grid-template-columns: 1fr; gap: 48px; }
}

/* ===== Footer ===== */
.footer {
  background: var(--ink); color: rgba(247, 245, 241, 0.55);
  padding: 48px 0 28px;
  font-size: 13px;
  border-top: 1px solid rgba(247, 245, 241, 0.1);
}
.footer .footer-top {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 48px;
  align-items: start;
  padding-bottom: 28px;
  border-bottom: 1px solid rgba(247, 245, 241, 0.1);
}
.footer .brand .wordmark { color: rgba(247, 245, 241, 0.85); }
.footer .brand .wordmark small { color: rgba(247, 245, 241, 0.4); }
.footer-legal {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 40px;
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.02em;
  color: rgba(247, 245, 241, 0.75);
}
.footer-legal em { color: rgba(247, 245, 241, 0.45); font-style: italic; }
.footer-legal .fk {
  display: inline-block;
  min-width: 110px;
  color: rgba(247, 245, 241, 0.42);
  text-transform: uppercase;
  font-size: 10px;
  letter-spacing: 0.12em;
  margin-right: 8px;
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 24px;
  gap: 20px;
  flex-wrap: wrap;
}
.footer-links {
  display: flex; align-items: center; gap: 10px;
  font-family: var(--mono); font-size: 12px;
}
.footer-links a { color: rgba(247, 245, 241, 0.75); transition: color .2s; }
.footer-links a:hover { color: var(--paper); }
.footer-links span { color: rgba(247, 245, 241, 0.3); }
@media (max-width: 720px) {
  .footer .footer-top { grid-template-columns: 1fr; gap: 28px; }
  .footer-legal { grid-template-columns: 1fr; gap: 8px; }
}

/* ===== Edit mode variations ===== */
body[data-tone="sharp"] h1, body[data-tone="sharp"] h2, body[data-tone="sharp"] h3 {
  font-family: var(--sans); font-weight: 600; letter-spacing: -0.025em;
}
body[data-tone="sharp"] h1 { font-weight: 700; letter-spacing: -0.035em; }
body[data-tone="sharp"] .hero h1 .accent { font-style: normal; color: var(--blue); }
body[data-tone="sharp"] .offering h3 { font-family: var(--sans); font-weight: 600; }

body[data-tone="bold"] h1, body[data-tone="bold"] h2 {
  font-family: var(--serif); font-weight: 900;
  letter-spacing: -0.04em;
}
body[data-tone="bold"] h1 { font-size: clamp(52px, 8vw, 120px); line-height: 0.95; }
body[data-tone="bold"] .hero { padding-top: 120px; padding-bottom: 96px; }

body[data-accent="amber"] { --blue: #B8821A; --blue-deep: #8C6010; }
body[data-accent="green"] { --blue: #2E7D4F; --blue-deep: #1F5936; }
body[data-accent="slate"] { --blue: #2A2F38; --blue-deep: #0F1419; }

/* ========== LAYER 2: v6 (sections, cards, quiz, timeline, etc.) ========== */
/* ===== AIA v6 — Juri-näoline, Balti, konversioon ===== */

body.v6 { background: var(--paper); color: var(--ink); }

.mono { font-family: var(--mono); font-size: 12px; letter-spacing: 0.1em; text-transform: uppercase; }
.muted { color: var(--graphite); }
.accent { color: var(--blue); }

/* ========== TOPBAR ========== */
.v6-topbar {
  position: sticky; top: 0; z-index: 50;
  background: rgba(247, 245, 241, 0.94);
  backdrop-filter: saturate(140%) blur(10px);
  border-bottom: 1px solid var(--rule);
}
.v6-topbar-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 72px;
}
.v6-brand {
  display: flex;
  align-items: center;
  gap: 14px;
}
.v6-brand img {
  width: 44px;
  height: 44px;
  object-fit: contain;
}
.v6-brand-name {
  font-family: var(--sans);
  font-weight: 600;
  font-size: 15px;
  color: var(--ink);
  letter-spacing: -0.005em;
}
.v6-brand-loc {
  font-size: 10px;
  color: var(--graphite);
  letter-spacing: 0.12em;
  margin-top: 2px;
}

.v6-nav {
  display: flex;
  gap: 28px;
  align-items: center;
}
.v6-nav a {
  font-size: 14px;
  color: var(--ink-2);
  transition: color .15s;
}
.v6-nav a:hover { color: var(--blue); }
.v6-nav-cta {
  padding: 9px 18px;
  background: var(--ink);
  color: var(--paper) !important;
  border-radius: 2px;
  font-weight: 500;
}
.v6-nav-cta:hover { background: var(--blue); }

/* ========== HERO ========== */
.v6-hero {
  padding: 80px 0 72px;
  border-bottom: 1px solid var(--rule);
  position: relative;
  overflow: hidden;
}
.v6-hero::before {
  content: '';
  position: absolute;
  top: -100px; right: -200px; width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(30, 95, 217, 0.045) 0%, transparent 65%);
  pointer-events: none;
}

.v6-hero-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 80px;
  align-items: start;
  margin-bottom: 64px;
}

.v6-hero-eyebrow {
  display: flex; align-items: center; gap: 14px; flex-wrap: wrap;
  margin-bottom: 36px;
}
.v6-hero-eyebrow .v6-dot { color: var(--rule-strong); }
.v6-hero-eyebrow .mono { font-size: 11px; }

.v6-hero-title {
  font-family: var(--serif);
  font-size: clamp(38px, 5vw, 72px);
  line-height: 1.04;
  letter-spacing: -0.025em;
  margin-bottom: 32px;
  font-weight: 400;
}
.v6-hero-title em {
  font-style: italic;
  color: var(--blue);
}

.v6-hero-sub {
  font-size: clamp(16px, 1.2vw, 19px);
  color: var(--ink-2);
  line-height: 1.55;
  max-width: 52ch;
  margin-bottom: 36px;
}

/* ---- Hero meta rida ---- */
.v6-hero-meta {
  font-size: 11px;
  letter-spacing: 0.05em;
  margin-top: 22px;
  padding-top: 22px;
  border-top: 1px solid var(--rule);
  max-width: 560px;
}

/* ---- Aus lubadus (eraldi sektsioon) ---- */
.v6-promise {
  padding: 56px 0;
  border-bottom: 1px solid var(--rule);
  background: var(--paper);
}
.v6-promise-inner {
  max-width: 1040px;
  margin: 0 auto;
  padding: 0 12px;
}
.v6-promise-eyebrow {
  display: block;
  font-size: 11px;
  letter-spacing: 0.12em;
  margin-bottom: 28px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--rule);
}
.v6-promise-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 56px;
  align-items: start;
}
.v6-promise-nots {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.v6-promise-row {
  display: grid;
  grid-template-columns: 20px 1fr;
  gap: 14px;
  font-family: var(--serif);
  font-size: clamp(17px, 1.4vw, 21px);
  line-height: 1.4;
  color: var(--ink-2);
  align-items: baseline;
  padding: 4px 0;
}
.v6-promise-mark {
  color: var(--graphite);
  font-family: var(--mono);
  font-size: 14px;
}
.v6-promise-row strong { font-weight: 500; color: var(--ink); }
.v6-promise-yes {
  padding-left: 36px;
  border-left: 1px solid var(--rule-strong);
}
.v6-promise-yes .mono {
  display: block;
  font-size: 11px;
  letter-spacing: 0.12em;
  margin-bottom: 14px;
}
.v6-promise-yes p {
  font-family: var(--serif);
  font-size: clamp(20px, 1.8vw, 26px);
  line-height: 1.35;
  color: var(--ink);
  margin: 0;
  font-weight: 400;
}
.v6-promise-yes em {
  color: var(--blue);
  font-style: italic;
}

.v6-hero-cta {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  align-items: center;
}

.v6-btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 24px;
  border-radius: 2px;
  font-size: 14px;
  font-weight: 500;
  transition: all .18s;
  border: 1px solid transparent;
  white-space: nowrap;
}
.v6-btn-primary {
  background: var(--ink);
  color: var(--paper);
}
.v6-btn-primary:hover { background: var(--blue); }
.v6-btn-ghost {
  color: var(--ink);
  border-color: var(--ink);
}
.v6-btn-ghost:hover { background: var(--ink); color: var(--paper); }
.v6-btn-xl { padding: 18px 32px; font-size: 15px; }
.v6-btn-full { width: 100%; justify-content: center; }

/* ---- Juri-kaart hero's ---- */
.v6-juri-card {
  background: var(--paper);
  border: 1px solid var(--ink);
  padding: 0;
  position: relative;
  box-shadow: 6px 6px 0 var(--rule-strong);
  max-width: 380px;
  justify-self: end;
  width: 100%;
}
.v6-juri-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; height: 3px;
  background: var(--blue);
  z-index: 2;
}
.v6-juri-photo-wrap {
  position: relative;
  border-bottom: 1px solid var(--rule);
}
.v6-juri-photo {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  display: block;
}
.v6-juri-badge {
  position: absolute;
  bottom: 0;
  left: 0;
  background: var(--ink);
  color: var(--paper);
  padding: 8px 14px;
}
.v6-juri-badge .mono { color: var(--paper); font-size: 10px; }

.v6-juri-body {
  padding: 22px 24px 24px;
}
.v6-juri-name {
  font-family: var(--serif);
  font-size: 26px;
  line-height: 1.15;
  letter-spacing: -0.015em;
  color: var(--ink);
  margin-bottom: 4px;
}
.v6-juri-role {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 20px;
}

.v6-juri-creds {
  list-style: none;
  padding: 0;
  margin: 0 0 20px;
  border-top: 1px solid var(--rule);
}
.v6-juri-creds li {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid var(--rule);
  align-items: baseline;
}
.v6-juri-creds .mono {
  font-size: 10px;
  color: var(--graphite);
  letter-spacing: 0.1em;
}
.v6-juri-creds li > span:not(.mono) {
  font-size: 13px;
  color: var(--ink);
  line-height: 1.4;
}

.v6-juri-quote {
  font-family: var(--serif);
  font-style: italic;
  font-size: 15px;
  color: var(--ink-2);
  line-height: 1.4;
  padding-top: 14px;
  border-top: 1px dashed var(--rule);
}
.v6-juri-quote em { color: var(--blue); }

/* ---- Signaalide riba ---- */
.v6-signals {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid var(--ink);
  border-bottom: 1px solid var(--rule);
}
.v6-sig {
  padding: 22px 22px 22px 0;
  border-right: 1px solid var(--rule);
}
.v6-sig:last-child { border-right: none; padding-right: 0; }
.v6-sig:not(:first-child) { padding-left: 22px; }
.v6-sig-n {
  font-family: var(--serif);
  font-size: clamp(26px, 2.4vw, 36px);
  line-height: 1;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin-bottom: 8px;
}
.v6-sig-l {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--graphite);
  line-height: 1.4;
}

/* ========== SECTIONS ========== */
.v6-section {
  padding: 96px 0;
  border-bottom: 1px solid var(--rule);
}
.v6-paper2 { background: var(--paper-2); }
.v6-dark {
  background: var(--ink);
  color: var(--paper);
  border-color: var(--ink);
}

.v6-head {
  max-width: 780px;
  margin-bottom: 56px;
}
.v6-head h2 {
  margin-top: 14px;
  font-family: var(--serif);
  font-size: clamp(30px, 3.4vw, 48px);
  letter-spacing: -0.02em;
  line-height: 1.08;
  font-weight: 400;
}
.v6-head h2 em { color: var(--blue); font-style: italic; }
.v6-head .v6-sub, .v6-head p.v6-sub {
  margin-top: 18px;
  font-size: 17px;
  color: var(--ink-2);
  max-width: 58ch;
  line-height: 1.55;
}
.v6-head-dark h2 { color: var(--paper); }
.v6-head-dark h2 em { color: var(--blue); }
.v6-sub-dark {
  margin-top: 18px;
  color: rgba(247, 245, 241, 0.68);
  max-width: 58ch;
  font-size: 17px;
  line-height: 1.55;
}

/* ========== FIT ========== */
.v6-fit-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border: 1px solid var(--rule-strong);
  background: var(--paper);
}
.v6-fit-for, .v6-fit-not { padding: 36px 40px; }
.v6-fit-for { border-right: 1px solid var(--rule); }
.v6-fit-not { background: var(--paper-2); }
.v6-fit-for-head, .v6-fit-not-head {
  font-size: 12px;
  letter-spacing: 0.1em;
  margin-bottom: 20px;
  display: block;
}
.v6-fit-not-head { color: var(--graphite); }
.v6-fit-list { list-style: none; padding: 0; margin: 0; }
.v6-fit-list li {
  padding: 14px 0;
  border-bottom: 1px dashed var(--rule);
  font-family: var(--serif);
  font-size: 17px;
  line-height: 1.45;
  color: var(--ink);
}
.v6-fit-list li:last-child { border-bottom: none; padding-bottom: 0; }
.v6-fit-list li:first-child { padding-top: 0; }
.v6-fit-list strong { font-weight: 500; color: var(--blue); }
.v6-fit-not .v6-fit-list strong { color: var(--ink); }

.v6-sectors {
  margin-top: 36px;
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
}
.v6-sectors-chips { display: flex; flex-wrap: wrap; gap: 10px; }
.v6-sectors-chips span {
  padding: 7px 14px;
  border: 1px solid var(--rule-strong);
  border-radius: 100px;
  font-size: 13px;
  color: var(--ink-2);
}

/* ========== QUIZ ========== */
.v6-quiz {
  border-top: 1px solid var(--ink);
  max-width: 960px;
}
.v6-q {
  display: grid;
  grid-template-columns: 50px 1fr 180px;
  gap: 24px;
  padding: 22px 0;
  border-bottom: 1px solid var(--rule);
  align-items: center;
}
.v6-q-n { color: var(--graphite); font-size: 11px; }
.v6-q-text {
  font-family: var(--serif);
  font-size: 18px;
  color: var(--ink);
  line-height: 1.4;
}
.v6-q-text strong { color: var(--blue); font-weight: 500; font-style: italic; }
.v6-q-opts { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
.v6-q-opts button {
  padding: 10px 16px;
  border: 1px solid var(--rule-strong);
  background: var(--paper);
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink);
  cursor: pointer;
  border-radius: 2px;
  transition: all .15s;
}
.v6-q-opts button:hover { border-color: var(--ink); }
.v6-q-opts button.active[data-v="1"] {
  background: var(--ink); color: var(--paper); border-color: var(--ink);
}
.v6-q-opts button.active[data-v="0"] {
  background: var(--graphite); color: var(--paper); border-color: var(--graphite);
}

.v6-quiz-result {
  margin-top: 28px;
  padding: 28px 32px;
  border: 1px solid var(--rule-strong);
  background: var(--paper);
  min-height: 80px;
  transition: all .3s;
}
.v6-quiz-result-empty {
  display: flex; justify-content: space-between; align-items: center;
}
.v6-quiz-score {
  font-family: var(--serif);
  font-size: 26px;
  color: var(--ink);
}
.v6-quiz-result.high {
  border-color: var(--ink); background: var(--ink); color: var(--paper);
}
.v6-quiz-result.mid { border-color: var(--blue); border-width: 2px; }
.v6-quiz-result.low { border-color: var(--graphite); background: var(--paper-2); }
.v6-quiz-verdict h3 {
  font-family: var(--serif);
  font-size: 24px;
  letter-spacing: -0.01em;
  margin-bottom: 10px;
  line-height: 1.2;
  font-weight: 400;
}
.v6-quiz-verdict h3 em { font-style: italic; color: var(--blue); }
.v6-quiz-result.high .v6-quiz-verdict h3 em { color: #7FB0FF; }
.v6-quiz-verdict p {
  color: var(--ink-2);
  line-height: 1.55;
  max-width: 62ch;
  margin-bottom: 16px;
  font-size: 15px;
}
.v6-quiz-result.high .v6-quiz-verdict p { color: rgba(247, 245, 241, 0.82); }
.v6-quiz-verdict a {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  margin-top: 8px;
  padding: 11px 22px;
  border: 1px solid currentColor;
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink);
  border-radius: 2px;
  transition: all .15s;
}
.v6-quiz-result.high .v6-quiz-verdict a {
  color: var(--paper); background: var(--blue); border-color: var(--blue);
}
.v6-quiz-result.high .v6-quiz-verdict a:hover {
  background: var(--paper); color: var(--ink); border-color: var(--paper);
}

/* ========== DELIVERABLES (dark) ========== */
.v6-deliverables {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  border-top: 1px solid rgba(247, 245, 241, 0.18);
}
.v6-del {
  padding: 32px 32px 32px 0;
  border-bottom: 1px solid rgba(247, 245, 241, 0.12);
  border-right: 1px solid rgba(247, 245, 241, 0.12);
}
.v6-del:nth-child(2n) { border-right: none; padding-right: 0; padding-left: 32px; }
.v6-del:nth-last-child(-n+2) { border-bottom: none; }
.v6-del-n { font-size: 11px; letter-spacing: 0.12em; color: var(--blue); margin-bottom: 14px; }
.v6-del h3 {
  font-family: var(--serif);
  font-size: 24px;
  color: var(--paper);
  margin-bottom: 10px;
  letter-spacing: -0.01em;
  line-height: 1.2;
  font-weight: 400;
}
.v6-del p { color: rgba(247, 245, 241, 0.72); line-height: 1.55; font-size: 15px; }
.v6-del em { color: #7FB0FF; font-style: italic; }

.v6-del-stmt {
  margin-top: 48px;
  padding: 28px 32px;
  border: 1px solid rgba(247, 245, 241, 0.2);
  border-left: 3px solid var(--blue);
  background: rgba(247, 245, 241, 0.03);
}
.v6-del-stmt .mono { display: block; margin-bottom: 10px; }
.v6-del-stmt p {
  font-family: var(--serif);
  font-size: clamp(19px, 1.6vw, 24px);
  line-height: 1.4;
  color: var(--paper);
  max-width: 62ch;
  font-weight: 400;
}
.v6-del-stmt em { color: #7FB0FF; font-style: italic; }

/* ========== NÄIDIS-VÄLJAVÕTE ========== */
.v6-sample {
  border: 1px solid var(--ink);
  background: var(--paper);
  padding: 38px 44px;
  box-shadow: 6px 6px 0 var(--rule-strong);
  max-width: 940px;
}
.v6-sample-head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--rule);
  margin-bottom: 22px;
}
.v6-sample-badge {
  font-size: 10px;
  letter-spacing: 0.12em;
  color: var(--paper);
  background: var(--ink);
  padding: 4px 10px;
}
.v6-sample-meta { font-size: 10px; }
.v6-sample-title {
  font-family: var(--serif);
  font-size: 26px;
  letter-spacing: -0.015em;
  margin-bottom: 22px;
  line-height: 1.2;
  font-weight: 400;
}
.v6-sample-box {
  padding: 18px 22px;
  background: var(--paper-2);
  border-left: 3px solid var(--blue);
  margin-bottom: 28px;
}
.v6-sample-box .mono { display: block; margin-bottom: 10px; }
.v6-sample-box p {
  font-family: var(--serif);
  font-size: 16px;
  line-height: 1.5;
  color: var(--ink);
}
.v6-sample-box em { color: var(--blue); font-style: italic; }

.v6-sample-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  margin-bottom: 28px;
}
.v6-sample-cell {
  padding: 18px 18px 18px 0;
  border-right: 1px solid var(--rule);
}
.v6-sample-cell:last-child { border-right: none; padding-right: 0; }
.v6-sample-cell:not(:first-child) { padding-left: 18px; }
.v6-sample-cell .mono { display: block; margin-bottom: 6px; font-size: 10px; }
.v6-sample-n {
  font-family: var(--serif);
  font-size: 22px;
  letter-spacing: -0.02em;
  color: var(--ink);
  line-height: 1.1;
  margin-bottom: 5px;
}
.v6-sample-note { font-size: 11px; color: var(--graphite); line-height: 1.4; }

.v6-sample-tbl { margin-bottom: 22px; border: 1px solid var(--rule); }
.v6-sample-tbl-head {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr 1.2fr;
  padding: 10px 14px;
  background: var(--paper-2);
  border-bottom: 1px solid var(--rule);
  font-size: 10px;
  letter-spacing: 0.1em;
  color: var(--graphite);
}
.v6-sample-tbl-row {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr 1.2fr;
  padding: 13px 14px;
  border-bottom: 1px solid var(--rule);
  font-size: 14px;
  color: var(--ink);
  align-items: center;
}
.v6-sample-tbl-row:last-child { border-bottom: none; }
.v6-sample-tbl-row span:first-child { font-family: var(--serif); font-size: 16px; }
.v6-high { color: var(--ink); font-weight: 500; }
.v6-low { color: var(--graphite); }
.v6-yes { color: var(--green); font-family: var(--mono); font-size: 12px; letter-spacing: 0.05em; }
.v6-no { color: var(--red); font-family: var(--mono); font-size: 12px; letter-spacing: 0.05em; }

.v6-sample-foot {
  padding-top: 18px;
  border-top: 1px dashed var(--rule);
  font-size: 10px;
  line-height: 1.5;
}
.v6-sample-disclaim { margin-top: 18px; font-size: 10px; }

/* ========== HIND / UKSED ========== */
.v6-main-door {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 0;
  border: 1px solid var(--ink);
  background: var(--paper);
  position: relative;
  margin-bottom: 32px;
  box-shadow: 6px 6px 0 var(--rule-strong);
}
.v6-main-door::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; height: 3px;
  background: var(--blue);
}
.v6-main-door-left {
  padding: 44px 40px;
  border-right: 1px solid var(--rule);
  background: var(--paper-2);
}
.v6-main-door-right {
  padding: 44px 40px;
  display: flex;
  flex-direction: column;
}
.v6-main-door-kind {
  font-size: 11px;
  letter-spacing: 0.12em;
  color: var(--blue);
  margin-bottom: 20px;
  display: block;
}
.v6-main-door h3 {
  font-family: var(--serif);
  font-size: clamp(32px, 3.2vw, 44px);
  letter-spacing: -0.02em;
  margin-bottom: 22px;
  line-height: 1.05;
  font-weight: 400;
}
.v6-main-door-price { margin-bottom: 18px; }
.v6-main-door-price-n {
  display: block;
  font-family: var(--serif);
  font-size: 40px;
  color: var(--blue);
  letter-spacing: -0.02em;
  line-height: 1;
  margin-bottom: 6px;
}
.v6-main-door-price-m {
  display: block;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  color: var(--graphite);
  text-transform: uppercase;
}
.v6-main-door-desc {
  color: var(--ink-2);
  font-size: 15px;
  line-height: 1.55;
  max-width: 42ch;
}
.v6-main-door-list {
  list-style: none;
  padding: 0;
  margin: 0 0 28px;
  border-top: 1px solid var(--rule);
}
.v6-main-door-list li {
  padding: 12px 0 12px 26px;
  border-bottom: 1px solid var(--rule);
  font-size: 15px;
  color: var(--ink-2);
  position: relative;
  line-height: 1.45;
}
.v6-main-door-list li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--blue);
  font-family: var(--mono);
  top: 12px;
}
.v6-main-door-list strong { color: var(--ink); font-weight: 500; }

.v6-side-doors {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border: 1px solid var(--rule-strong);
  background: var(--paper);
  margin-bottom: 32px;
}
.v6-side-door {
  padding: 28px 32px;
  border-right: 1px solid var(--rule);
}
.v6-side-door:last-child { border-right: none; }
.v6-side-door-kind {
  font-size: 11px;
  letter-spacing: 0.12em;
  margin-bottom: 14px;
  display: block;
}
.v6-side-door h4 {
  font-family: var(--serif);
  font-size: 22px;
  letter-spacing: -0.01em;
  margin-bottom: 10px;
  font-weight: 400;
}
.v6-side-door-price {
  font-family: var(--mono);
  font-size: 12px;
  color: var(--blue);
  letter-spacing: 0.05em;
  margin-bottom: 14px;
}
.v6-side-door p {
  color: var(--ink-2);
  font-size: 14px;
  line-height: 1.55;
}
.v6-side-door strong { color: var(--ink); font-weight: 500; }

/* ---- aus hind ---- */
.v6-pricing-honest {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  border: 1px solid var(--rule-strong);
  background: var(--paper);
  margin-bottom: 24px;
}
.v6-ph-col {
  padding: 26px 32px;
  border-right: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
}
.v6-ph-col:nth-child(2n) { border-right: none; }
.v6-ph-col:nth-last-child(-n+2) { border-bottom: none; }
.v6-ph-col .mono { display: block; margin-bottom: 10px; font-size: 11px; }
.v6-ph-col p {
  font-family: var(--serif);
  font-size: 16px;
  color: var(--ink);
  line-height: 1.5;
}
.v6-ph-col p strong { color: var(--blue); font-weight: 500; }
.v6-ph-col p em { color: var(--blue); font-style: italic; }

.v6-ph-box {
  padding: 18px 28px;
  background: var(--ink);
  color: var(--paper);
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 24px;
  align-items: baseline;
  font-size: 13px;
  line-height: 1.5;
}
.v6-ph-box .mono { color: #7FB0FF; flex-shrink: 0; }

/* ========== JURI FULL ========== */
.v6-juri-full {
  display: grid;
  grid-template-columns: 360px 1fr;
  gap: 56px;
  align-items: start;
  margin-bottom: 56px;
}
.v6-juri-full-photo {
  position: relative;
  border: 1px solid var(--ink);
  background: var(--paper);
  box-shadow: 8px 8px 0 var(--rule-strong);
}
.v6-juri-full-photo::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; height: 3px;
  background: var(--blue);
  z-index: 2;
}
.v6-juri-full-photo img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  display: block;
}
.v6-juri-full-name {
  font-family: var(--serif);
  font-size: clamp(32px, 3vw, 42px);
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin-bottom: 6px;
}
.v6-juri-full-role {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 28px;
}
.v6-juri-full-bio {
  font-family: var(--serif);
  font-size: 18px;
  line-height: 1.5;
  color: var(--ink-2);
  max-width: 62ch;
  margin-bottom: 20px;
}
.v6-juri-full-bio em { color: var(--blue); font-style: italic; }
.v6-juri-full-bio:last-of-type { margin-bottom: 36px; }

.v6-juri-full-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  border: 1px solid var(--rule-strong);
}
.v6-jcard {
  padding: 20px 24px;
  border-right: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  background: var(--paper);
}
.v6-jcard:nth-child(2n) { border-right: none; }
.v6-jcard:nth-last-child(-n+2) { border-bottom: none; }
.v6-jcard .mono { display: block; margin-bottom: 8px; font-size: 10px; }
.v6-jcard-main {
  font-family: var(--serif);
  font-size: 20px;
  color: var(--ink);
  line-height: 1.2;
  margin-bottom: 6px;
}
.v6-jcard-sub { font-size: 12px; color: var(--graphite); line-height: 1.4; }

.v6-creds {
  border-top: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
  margin-bottom: 48px;
}
.v6-cred-row {
  display: grid;
  grid-template-columns: 200px 1fr;
  padding: 16px 0;
  border-bottom: 1px dashed var(--rule);
  gap: 28px;
  align-items: baseline;
}
.v6-cred-row:last-child { border-bottom: none; }
.v6-cred-row .mono { color: var(--blue); font-size: 11px; }
.v6-cred-row > span:not(.mono) {
  font-family: var(--serif);
  font-size: 16px;
  color: var(--ink);
  line-height: 1.4;
}

.v6-quote {
  padding: 40px 48px;
  background: var(--ink);
  color: var(--paper);
  font-family: var(--serif);
  font-size: clamp(22px, 2.4vw, 32px);
  line-height: 1.3;
  letter-spacing: -0.015em;
  max-width: 32ch;
  font-weight: 400;
}
.v6-quote em { color: #7FB0FF; font-style: italic; }

/* ========== FAQ ========== */
.v6-faq { border-top: 1px solid var(--ink); }
.v6-faq details { border-bottom: 1px solid var(--rule); }
.v6-faq summary {
  padding: 22px 0;
  font-family: var(--serif);
  font-size: 21px;
  color: var(--ink);
  cursor: pointer;
  list-style: none;
  position: relative;
  padding-right: 40px;
  letter-spacing: -0.01em;
  line-height: 1.3;
  transition: color .2s;
}
.v6-faq summary::-webkit-details-marker { display: none; }
.v6-faq summary:hover { color: var(--blue); }
.v6-faq summary::after {
  content: '+';
  position: absolute;
  right: 0;
  top: 22px;
  font-family: var(--mono);
  font-size: 22px;
  color: var(--blue);
  transition: transform .25s;
}
.v6-faq details[open] summary::after { transform: rotate(45deg); }
.v6-faq details p {
  padding: 0 0 24px;
  color: var(--ink-2);
  font-size: 16px;
  line-height: 1.6;
  max-width: 72ch;
}
.v6-faq details p em { color: var(--blue); font-style: italic; }
.v6-faq details p strong { color: var(--ink); font-weight: 500; }

/* ========== CTA ========== */
.v6-cta {
  background: var(--ink);
  color: var(--paper);
  padding: 96px 0;
  border-bottom: 1px solid var(--ink);
}
.v6-cta-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 72px;
  align-items: start;
}
.v6-cta .mono.accent { color: #7FB0FF; }
.v6-cta-title {
  margin-top: 18px;
  font-family: var(--serif);
  font-size: clamp(36px, 4.4vw, 64px);
  line-height: 1.05;
  letter-spacing: -0.025em;
  color: var(--paper);
  margin-bottom: 28px;
  font-weight: 400;
}
.v6-cta-sub {
  color: rgba(247, 245, 241, 0.72);
  font-size: 17px;
  max-width: 56ch;
  line-height: 1.55;
  margin-bottom: 40px;
}
.v6-cta-sub em { color: #7FB0FF; font-style: italic; }

.v6-cta-prep {
  padding: 24px 28px;
  border: 1px solid rgba(247, 245, 241, 0.2);
  background: rgba(247, 245, 241, 0.03);
  max-width: 540px;
}
.v6-cta-prep .mono { display: block; margin-bottom: 12px; }
.v6-cta-prep ul { list-style: none; padding: 0; margin: 0; }
.v6-cta-prep li {
  padding: 8px 0 8px 24px;
  border-bottom: 1px dashed rgba(247, 245, 241, 0.12);
  color: rgba(247, 245, 241, 0.85);
  font-size: 15px;
  line-height: 1.5;
  position: relative;
}
.v6-cta-prep li:last-child { border-bottom: none; padding-bottom: 0; }
.v6-cta-prep li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: #7FB0FF;
  font-family: var(--mono);
  top: 8px;
}

.v6-cta-right { justify-self: end; width: 100%; max-width: 420px; }
.v6-cta-card {
  background: var(--paper);
  color: var(--ink);
  padding: 32px 32px 28px;
  border: 1px solid var(--paper);
  position: relative;
  box-shadow: 8px 8px 0 rgba(127, 176, 255, 0.22);
}
.v6-cta-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; height: 3px;
  background: var(--blue);
}
.v6-cta-card-photo {
  width: 96px;
  height: 96px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid var(--ink);
  margin-bottom: 18px;
}
.v6-cta-card-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.v6-cta-card-name {
  font-family: var(--serif);
  font-size: 26px;
  letter-spacing: -0.015em;
  line-height: 1.1;
  margin-bottom: 4px;
}
.v6-cta-card-role {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 24px;
}
.v6-cta-rows {
  border-top: 1px solid var(--rule);
  margin-bottom: 22px;
}
.v6-cta-row {
  display: grid;
  grid-template-columns: 80px 1fr;
  padding: 11px 0;
  border-bottom: 1px dashed var(--rule);
  align-items: baseline;
  gap: 16px;
}
.v6-cta-row .mono {
  font-size: 10px;
  color: var(--graphite);
}
.v6-cta-row a {
  color: var(--ink);
  font-size: 14px;
  font-weight: 500;
  word-break: break-all;
}
.v6-cta-row a:hover { color: var(--blue); }
.v6-cta-row > span:not(.mono) {
  font-size: 14px;
  color: var(--ink);
}
.v6-cta-note {
  margin-top: 14px;
  text-align: center;
  font-size: 10px;
  color: var(--graphite);
  letter-spacing: 0.1em;
}

/* ========== FOOTER ========== */
.v6-footer {
  padding: 40px 0;
  background: var(--paper-2);
  border-top: 1px solid var(--rule);
}
.v6-footer-inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1.2fr;
  gap: 32px;
  align-items: center;
}
.v6-footer-brand {
  display: flex;
  gap: 14px;
  align-items: center;
}
.v6-footer-brand img {
  width: 40px;
  height: 40px;
  object-fit: contain;
}
.v6-footer-name {
  font-family: var(--sans);
  font-weight: 600;
  font-size: 14px;
  margin-bottom: 2px;
}
.v6-footer-mid { text-align: center; }
.v6-footer-mid .mono { display: block; font-size: 10px; margin-bottom: 4px; }
.v6-footer-mid > div:last-child {
  font-family: var(--serif);
  font-size: 16px;
  color: var(--ink);
}
.v6-footer-legal {
  text-align: right;
  display: flex;
  flex-direction: column;
  gap: 6px;
  align-items: flex-end;
}
.v6-footer-legal a { font-size: 13px; color: var(--ink-2); }
.v6-footer-legal a:hover { color: var(--blue); }
.v6-footer-year { margin-top: 4px; font-size: 10px; }

/* ========== RESPONSIVE ========== */
@media (max-width: 1000px) {
  .v6-hero-grid { grid-template-columns: 1fr; gap: 48px; }
  .v6-juri-card { justify-self: start; max-width: 440px; }
  .v6-juri-full { grid-template-columns: 260px 1fr; gap: 36px; }
  .v6-cta-grid { grid-template-columns: 1fr; gap: 48px; }
  .v6-cta-right { justify-self: start; max-width: 480px; }
}

@media (max-width: 720px) {
  .v6-topbar-inner { height: 60px; }
  .v6-brand img { width: 36px; height: 36px; }
  .v6-brand-name { font-size: 13px; }
  .v6-brand-loc { font-size: 9px; }
  .v6-nav { gap: 14px; }
  .v6-nav a:not(.v6-nav-cta) { display: none; }

  .v6-hero { padding: 56px 0 56px; }
  .v6-section { padding: 64px 0; }
  .v6-cta { padding: 64px 0; }

  .v6-hero-grid { gap: 36px; }
  .v6-juri-card { box-shadow: 4px 4px 0 var(--rule-strong); max-width: 100%; }
  .v6-juri-full { grid-template-columns: 1fr; gap: 28px; }
  .v6-juri-full-photo { max-width: 280px; }
  .v6-juri-full-cards { grid-template-columns: 1fr; }
  .v6-jcard { border-right: none !important; }
  .v6-jcard:last-child { border-bottom: none; }

  .v6-signals { grid-template-columns: repeat(2, 1fr); }
  .v6-sig { padding-left: 0 !important; padding-right: 18px; border-bottom: 1px solid var(--rule); }
  .v6-sig:nth-child(2n) { border-right: none; padding-right: 0; padding-left: 18px !important; }
  .v6-sig:nth-last-child(-n+2) { border-bottom: none; }

  .v6-fit-grid { grid-template-columns: 1fr; }
  .v6-fit-for { border-right: none; border-bottom: 1px solid var(--rule); }
  .v6-fit-for, .v6-fit-not { padding: 28px; }

  .v6-q { grid-template-columns: 36px 1fr; gap: 10px 14px; }
  .v6-q-opts { grid-column: 1 / -1; }
  .v6-q-text { font-size: 16px; }

  .v6-deliverables { grid-template-columns: 1fr; }
  .v6-del, .v6-del:nth-child(2n) { padding: 24px 0; border-right: none; }

  .v6-sample { padding: 24px 20px; }
  .v6-sample-head { flex-direction: column; gap: 6px; align-items: flex-start; }
  .v6-sample-grid { grid-template-columns: repeat(2, 1fr); }
  .v6-sample-cell {
    padding: 14px 12px !important;
    border-right: 1px solid var(--rule);
    border-bottom: 1px solid var(--rule);
  }
  .v6-sample-cell:nth-child(2n) { border-right: none; padding-right: 0 !important; }
  .v6-sample-cell:nth-last-child(-n+2) { border-bottom: none; }
  .v6-sample-tbl-head { display: none; }
  .v6-sample-tbl-row { grid-template-columns: 1fr; gap: 4px; padding: 14px 14px; }

  .v6-main-door { grid-template-columns: 1fr; }
  .v6-main-door-left, .v6-main-door-right { padding: 28px 24px; border-right: none; }
  .v6-main-door-left { border-bottom: 1px solid var(--rule); }

  .v6-side-doors { grid-template-columns: 1fr; }
  .v6-side-door { border-right: none; border-bottom: 1px solid var(--rule); }
  .v6-side-door:last-child { border-bottom: none; }

  .v6-pricing-honest { grid-template-columns: 1fr; }
  .v6-ph-col { border-right: none !important; padding: 22px 24px; }
  .v6-ph-col:last-child { border-bottom: none; }
  .v6-ph-box { grid-template-columns: 1fr; gap: 8px; }

  .v6-cred-row { grid-template-columns: 1fr; gap: 4px; }

  .v6-quote { padding: 28px 24px; max-width: 100%; }

  .v6-cta-grid { gap: 36px; }
  .v6-cta-right { max-width: 100%; }
  .v6-cta-card { padding: 24px; }

  .v6-footer-inner { grid-template-columns: 1fr; gap: 24px; text-align: left; }
  .v6-footer-mid { text-align: left; }
  .v6-footer-legal { text-align: left; align-items: flex-start; }

  .v6-promise { padding: 40px 0; }
  .v6-promise-grid { grid-template-columns: 1fr; gap: 32px; }
  .v6-promise-yes { padding-left: 0; padding-top: 24px; border-left: none; border-top: 1px solid var(--rule-strong); }
  .v6-promise-row { font-size: 17px; }
}

/* ========== LAYER 3: v7 (hero full-bleed, brand mark, signals strip) ========== */
/* ===== AIA v7 — täisääreni hero, bränd kui signaal, üks kompositsioon ===== */

/* ---------- Topbar: minimaalseks ---------- */
.v7-topbar {
  background: rgba(247, 245, 241, 0.0);
  backdrop-filter: none;
  border-bottom: none;
  position: absolute;
  width: 100%;
}
.v7-topbar .v6-nav a { color: rgba(255,255,255,0.88); }
.v7-topbar .v6-nav a:hover { color: #fff; }
.v7-topbar .v6-nav-cta {
  background: rgba(255,255,255,0.12);
  color: #fff !important;
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.2);
}
.v7-topbar .v6-nav-cta:hover { background: rgba(255,255,255,0.22); }
.v7-brand-tiny img {
  filter: none;
  opacity: 1;
  border-radius: 8px;
  background: #fff;
  padding: 3px;
}
.v7-brand-tiny .v6-brand-name { color: #fff; }
.v7-brand-tiny .v6-brand-loc { color: rgba(255,255,255,0.6); }

/* ---------- HERO: full-bleed, ühte kompositsiooni ---------- */
.v7-hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 140px 48px 100px;
  color: #fff;
  overflow: hidden;
  isolation: isolate;
  background: #0F1419;
}

/* Portree — paigaldatud paremale, ise-piiratud */
.v7-hero-bg {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 58%;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
}
.v7-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 25%;
  filter: grayscale(0.55) contrast(1.02) brightness(0.72);
  display: block;
}
/* Vinjett pildile — sulatab vasakusse tumedasse */
.v7-hero-bg-vignette {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg,
      #0F1419 0%,
      rgba(15, 20, 25, 0.92) 18%,
      rgba(15, 20, 25, 0.55) 38%,
      rgba(15, 20, 25, 0.25) 58%,
      rgba(15, 20, 25, 0.15) 100%),
    linear-gradient(180deg,
      rgba(15, 20, 25, 0.35) 0%,
      rgba(15, 20, 25, 0.0) 30%,
      rgba(15, 20, 25, 0.0) 70%,
      rgba(15, 20, 25, 0.6) 100%);
  pointer-events: none;
}
/* Peenike tera */
.v7-hero-bg-grain {
  position: absolute;
  inset: 0;
  opacity: 0.2;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='160' height='160'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0  0 0 0 0 0  0 0 0 0 0  0 0 0 0.55 0'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
  pointer-events: none;
}

.v7-hero-inner {
  max-width: 1280px;
  width: 100%;
  margin: 0 auto;
  padding: 0;
  position: relative;
  z-index: 1;
}
.v7-hero-inner > * { max-width: 50%; }
@media (max-width: 1100px) {
  .v7-hero-inner > * { max-width: 60%; }
}
@media (max-width: 900px) {
  .v7-hero-bg { width: 100%; opacity: 0.55; }
  .v7-hero-inner > * { max-width: 100%; }
}

/* Eyebrow */
.v7-hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 56px;
  opacity: 0.78;
}
.v7-hero-eyebrow .mono {
  font-size: 11px;
  color: rgba(255,255,255,0.85);
  letter-spacing: 0.14em;
}
.v7-eyebrow-dot {
  width: 4px; height: 4px; border-radius: 50%;
  background: rgba(255,255,255,0.45);
}

/* BRÄND kui hero-tasemel signaal */
.v7-brand-mark {
  display: flex;
  align-items: baseline;
  gap: 18px;
  margin-bottom: 48px;
  opacity: 0.95;
}
.v7-brand-line {
  font-family: var(--mono);
  font-weight: 500;
  font-size: 13px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.88);
  padding-top: 4px;
}
.v7-brand-serif {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(18px, 1.6vw, 22px);
  letter-spacing: 0.02em;
  text-transform: none;
  color: #fff;
  font-style: italic;
}

/* Pealkiri — üks idee, suur skaala */
.v7-hero-title {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(64px, 8.5vw, 140px);
  line-height: 0.92;
  letter-spacing: -0.035em;
  margin: 0 0 36px;
  color: #fff;
  max-width: 14ch;
}
.v7-hero-title em {
  font-style: italic;
  font-weight: 400;
  color: #E8D9B4;
}

/* Sub — kitsas, kalme veerg */
.v7-hero-sub {
  max-width: 48ch;
  font-size: clamp(18px, 1.35vw, 22px);
  line-height: 1.45;
  color: rgba(255,255,255,0.82);
  margin-bottom: 44px;
  text-wrap: pretty;
}

/* CTA */
.v7-hero-cta {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  align-items: center;
}
.v7-btn {
  display: inline-block;
  padding: 16px 28px;
  font-family: var(--sans);
  font-size: 15px;
  font-weight: 500;
  letter-spacing: -0.005em;
  border-radius: 2px;
  transition: all 0.18s ease;
  border: 1px solid transparent;
}
.v7-btn-primary {
  background: #fff;
  color: var(--ink) !important;
}
.v7-btn-primary:hover {
  background: #E8D9B4;
  transform: translateY(-1px);
}
.v7-btn-ghost {
  background: transparent;
  color: #fff !important;
  border-color: rgba(255,255,255,0.35);
}
.v7-btn-ghost:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.6);
}

/* Hero jalamiks — peen meta-riba */
.v7-hero-foot {
  position: absolute;
  left: 48px;
  right: 48px;
  bottom: 32px;
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 24px;
  flex-wrap: wrap;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.18);
}
.v7-hero-foot-left,
.v7-hero-foot-right {
  font-size: 11px;
  letter-spacing: 0.12em;
  color: rgba(255,255,255,0.7);
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  align-items: baseline;
}
.v7-hero-foot-right { gap: 10px; }
.v7-sep { opacity: 0.35; }
.v7-hero-foot-muted { opacity: 0.55; }

/* ---------- Signaal-riba (hero järel, paberil) ---------- */
.v7-signals-strip {
  background: var(--paper);
  border-bottom: 1px solid var(--rule);
  padding: 40px 0;
}
.v7-signals-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  align-items: baseline;
}
.v7-sig {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding-left: 20px;
  border-left: 1px solid var(--rule);
}
.v7-sig-n {
  font-family: var(--serif);
  font-size: clamp(28px, 2.8vw, 40px);
  font-weight: 300;
  letter-spacing: -0.02em;
  line-height: 1;
  color: var(--ink);
}
.v7-sig-l {
  font-size: 11px;
  letter-spacing: 0.12em;
}

/* ---------- Vana v6-hero peida, kui v7 aktiivne ---------- */
body.v7 .v6-hero { display: none; }

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
  .v7-hero { padding: 100px 24px 100px; }
  .v7-hero-title { font-size: clamp(64px, 16vw, 120px); }
  .v7-brand-mark { flex-direction: column; gap: 6px; align-items: flex-start; margin-bottom: 32px; }
  .v7-hero-eyebrow { margin-bottom: 32px; flex-wrap: wrap; }
  .v7-hero-foot { position: static; margin-top: 48px; left: auto; right: auto; bottom: auto; padding-left: 0; padding-right: 0; }
  .v7-signals-inner { grid-template-columns: 1fr 1fr; gap: 24px; }
  .v7-hero-bg img { object-position: 70% 20%; }
}
@media (max-width: 560px) {
  .v7-topbar .v6-nav { display: none; }
  .v7-hero { padding: 80px 20px 60px; }
  .v7-hero-title { font-size: clamp(48px, 14vw, 80px); }
  .v7-hero-sub { font-size: 16px; }
}

/* ---------- Timeline (Kuidas Discovery toimub) ---------- */
.v6-timeline {
  margin-top: 56px;
  display: flex;
  flex-direction: column;
  gap: 0;
  border-top: 1px solid rgba(0,0,0,0.08);
}
.v6-tl-row {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 48px;
  padding: 32px 0;
  border-bottom: 1px solid rgba(0,0,0,0.08);
  align-items: start;
}
.v6-tl-day {
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #8a7b61;
  padding-top: 4px;
}
.v6-tl-title {
  font-family: 'Fraunces', serif;
  font-size: 26px;
  font-weight: 400;
  line-height: 1.2;
  margin-bottom: 10px;
  letter-spacing: -0.01em;
}
.v6-tl-desc {
  font-size: 17px;
  line-height: 1.55;
  color: #3c3527;
  max-width: 680px;
}
@media (max-width: 720px) {
  .v6-tl-row { grid-template-columns: 1fr; gap: 10px; }
  .v6-tl-title { font-size: 22px; }
  .v6-tl-desc { font-size: 16px; }
}

/* ---------- Andmekaitse data-grid ---------- */
.v6-data-grid {
  margin-top: 48px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(0,0,0,0.08);
  border: 1px solid rgba(0,0,0,0.08);
}
.v6-data-card {
  background: #f7f5f1;
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.v6-data-card h4 {
  font-family: 'Fraunces', serif;
  font-size: 28px;
  font-weight: 400;
  line-height: 1.15;
  letter-spacing: -0.01em;
  margin: 0 0 4px;
}
.v6-data-card p {
  font-size: 15.5px;
  line-height: 1.55;
  color: #3c3527;
  margin: 0;
}
@media (max-width: 900px) {
  .v6-data-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .v6-data-grid { grid-template-columns: 1fr; }
  .v6-data-card { padding: 24px 20px; }
  .v6-data-card h4 { font-size: 24px; }
}

/* ---------- Juri akadeemiline taust (collapsible) ---------- */
.v6-juri-details {
  margin-top: 40px;
  border-top: 1px solid rgba(0,0,0,0.1);
  padding-top: 24px;
}
.v6-juri-details summary {
  cursor: pointer;
  list-style: none;
  padding: 12px 0;
  display: flex;
  align-items: baseline;
  gap: 16px;
  flex-wrap: wrap;
  transition: opacity 0.2s;
}
.v6-juri-details summary::-webkit-details-marker { display: none; }
.v6-juri-details summary:hover { opacity: 0.7; }
.v6-juri-details[open] summary { margin-bottom: 24px; }
.v6-juri-details-hint {
  font-size: 13px;
}
.v6-juri-details-body {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px 40px;
  padding: 8px 0 0;
}
.v6-acad-group .mono.accent {
  font-size: 12px;
  margin-bottom: 12px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(0,0,0,0.08);
}
.v6-acad-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 9px;
}
.v6-acad-list li {
  font-size: 14.5px;
  line-height: 1.4;
  color: #3c3527;
}
.v6-acad-list .mono.muted {
  font-size: 11px;
  color: #8a7b61;
  margin-right: 4px;
}
.v6-grade {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  background: #d6a85a;
  color: #1a1a1a;
  padding: 1px 6px;
  border-radius: 3px;
  font-weight: 500;
  letter-spacing: 0.02em;
}
.v6-acad-foot {
  grid-column: 1 / -1;
  font-size: 12.5px;
  padding-top: 16px;
  border-top: 1px solid rgba(0,0,0,0.08);
  line-height: 1.5;
}
@media (max-width: 900px) {
  .v6-juri-details-body { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px) {
  .v6-juri-details-body { grid-template-columns: 1fr; gap: 24px; }
}

/* ========== LAYER 4: v7-extra (Neli otsust, Mudelivalik, Promise head) ========== */
/* ===== v7 täiendused: Neli otsust + Mudelivalik + Promise heading ===== */

/* ---------- Promise heading ---------- */
.v6-promise-head {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 28px;
  line-height: 1.15;
  letter-spacing: -0.01em;
  font-weight: 400;
  color: #2a2317;
  margin-bottom: 20px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(0,0,0,0.1);
}
@media (max-width: 760px) {
  .v6-promise-head { font-size: 22px; }
}

/* ---------- NELI OTSUST ---------- */
.v7-decisions {
  background: #f2ede3;
  border-top: 1px solid rgba(0,0,0,0.08);
  border-bottom: 1px solid rgba(0,0,0,0.08);
}
.v7-dec-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 48px;
}
.v7-dec-card {
  background: #faf7f0;
  border: 1px solid rgba(0,0,0,0.1);
  padding: 28px 24px 32px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  position: relative;
}
.v7-dec-card-none {
  background: #2a2317;
  color: #f2ede3;
  border-color: #2a2317;
}
.v7-dec-card-none .mono.muted {
  color: rgba(242, 237, 227, 0.6);
}
.v7-dec-card-none p {
  color: rgba(242, 237, 227, 0.92);
}
.v7-dec-card-none em {
  color: #d6a85a;
  font-style: normal;
}
.v7-dec-num {
  font-size: 11px;
  letter-spacing: 0.12em;
  color: #8a7b61;
}
.v7-dec-card-none .v7-dec-num {
  color: #d6a85a;
}
.v7-dec-title {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 26px;
  line-height: 1.15;
  letter-spacing: -0.01em;
  font-weight: 400;
}
.v7-dec-when {
  font-size: 10.5px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-top: 4px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(0,0,0,0.08);
}
.v7-dec-card-none .v7-dec-when {
  border-bottom-color: rgba(242, 237, 227, 0.15);
}
.v7-dec-card p {
  font-size: 14.5px;
  line-height: 1.5;
  color: #3c3527;
  margin: 0;
}
.v7-dec-foot {
  margin-top: 40px;
  padding: 24px 28px;
  border-left: 3px solid #d6a85a;
  background: rgba(255,255,255,0.5);
  display: flex;
  gap: 24px;
  align-items: flex-start;
}
.v7-dec-foot .mono.accent {
  flex-shrink: 0;
  font-size: 12px;
  padding-top: 2px;
}
.v7-dec-foot p {
  margin: 0;
  font-size: 15px;
  line-height: 1.55;
  color: #3c3527;
}
@media (max-width: 1000px) {
  .v7-dec-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
  .v7-dec-grid { grid-template-columns: 1fr; }
  .v7-dec-foot { flex-direction: column; gap: 10px; padding: 20px; }
}

/* ---------- MUDELIVALIK ---------- */
.v7-models {
  background: #faf7f0;
}
.v7-models-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  margin-top: 48px;
}
.v7-model-card {
  border: 1px solid rgba(0,0,0,0.12);
  background: #fffdf9;
  padding: 22px 20px 24px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.v7-model-card .mono.accent {
  font-size: 11px;
  letter-spacing: 0.12em;
}
.v7-model-title {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 20px;
  line-height: 1.2;
  letter-spacing: -0.01em;
  font-weight: 400;
  margin-top: 2px;
}
.v7-model-card .mono.muted {
  font-size: 11px;
  color: #8a7b61;
  margin-bottom: 8px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(0,0,0,0.08);
}
.v7-model-card p {
  margin: 0;
  font-size: 13.5px;
  line-height: 1.5;
  color: #3c3527;
}
.v7-model-card-none {
  background: #f2ede3;
  border-style: dashed;
}
.v7-models-foot {
  margin-top: 40px;
  padding: 24px 28px;
  border: 1px solid rgba(0,0,0,0.1);
  background: #f2ede3;
  display: flex;
  gap: 24px;
  align-items: flex-start;
}
.v7-models-foot .mono.accent {
  flex-shrink: 0;
  font-size: 12px;
  padding-top: 2px;
  min-width: 140px;
}
.v7-models-foot p {
  margin: 0;
  font-size: 14.5px;
  line-height: 1.55;
  color: #3c3527;
}
@media (max-width: 1100px) {
  .v7-models-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 760px) {
  .v7-models-grid { grid-template-columns: 1fr 1fr; }
  .v7-models-foot { flex-direction: column; gap: 10px; padding: 20px; }
}
@media (max-width: 480px) {
  .v7-models-grid { grid-template-columns: 1fr; }
}


/* ========== LAYER 5: Mobile hero readability fix (v7.3) ========== */
/* Hero taustapilt läheb mobiilil 55% läbipaistvuseks — lisab kindlam
   tumenenud kate teksti loetavuse tagamiseks igas pildivaates. */
@media (max-width: 900px) {
  .v7-hero-bg-vignette {
    background:
      linear-gradient(180deg,
        rgba(15, 20, 25, 0.78) 0%,
        rgba(15, 20, 25, 0.55) 45%,
        rgba(15, 20, 25, 0.68) 100%);
  }
}
@media (max-width: 560px) {
  .v7-hero-bg-vignette {
    background:
      linear-gradient(180deg,
        rgba(15, 20, 25, 0.82) 0%,
        rgba(15, 20, 25, 0.62) 50%,
        rgba(15, 20, 25, 0.75) 100%);
  }
}

/* ========== LAYER 6: v7.4 additions (AI audit compare, probleemikaardid) ========== */

/* ---------- AI auditi võrdlustabel ---------- */
.v7-compare {
  background: var(--paper);
}
.v7-compare-tbl {
  margin-top: 40px;
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
}
.v7-compare-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  padding: 22px 0;
  border-bottom: 1px solid rgba(0,0,0,0.06);
  font-size: 16px;
  line-height: 1.5;
  color: var(--ink-2);
}
.v7-compare-row:last-child { border-bottom: none; }
.v7-compare-head {
  padding: 18px 0 16px;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--graphite);
  border-bottom: 2px solid var(--ink);
}
.v7-compare-head .mono.accent {
  color: var(--ink);
  font-weight: 500;
}
.v7-compare-row > span:last-child {
  font-weight: 500;
  color: var(--ink);
}
.v7-compare-foot {
  margin-top: 32px;
  font-size: 13px;
  line-height: 1.55;
  padding: 18px 20px;
  border-left: 3px solid var(--rule);
  background: var(--paper-2);
  max-width: 820px;
}
@media (max-width: 720px) {
  .v7-compare-row {
    grid-template-columns: 1fr;
    gap: 8px;
    padding: 20px 0;
  }
  .v7-compare-row > span:first-child::before {
    content: "Tavaline: ";
    font-family: var(--mono);
    font-size: 11px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--graphite);
    display: block;
    margin-bottom: 4px;
  }
  .v7-compare-row > span:last-child::before {
    content: "Discovery: ";
    font-family: var(--mono);
    font-size: 11px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--ink);
    display: block;
    margin-bottom: 4px;
  }
  .v7-compare-head { display: none; }
}

/* ---------- Probleemikaardid ---------- */
.v7-problems {
  margin-top: 48px;
  padding-top: 32px;
  border-top: 1px solid var(--rule);
}
.v7-problems-head {
  margin-bottom: 24px;
}
.v7-problems-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.v7-problem-card {
  background: var(--paper-2);
  border: 1px solid rgba(0,0,0,0.08);
  padding: 22px 20px 24px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.v7-problem-card .mono.accent {
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.v7-problem-title {
  font-family: var(--serif);
  font-size: 19px;
  line-height: 1.2;
  letter-spacing: -0.01em;
  font-weight: 400;
  margin-top: 2px;
  color: var(--ink);
}
.v7-problem-who {
  font-size: 11px;
  color: var(--graphite);
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(0,0,0,0.08);
  margin-bottom: 2px;
}
.v7-problem-card p {
  margin: 0;
  font-size: 14px;
  line-height: 1.5;
  color: var(--ink-2);
  font-style: italic;
}
@media (max-width: 1000px) {
  .v7-problems-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px) {
  .v7-problems-grid { grid-template-columns: 1fr; }
}

/* ---------- CTA card logo (v7.6 — replaces portrait for less personality-show) ---------- */
.v6-cta-card-logo {
  width: 64px;
  height: 64px;
  margin-bottom: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.v6-cta-card-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* ---------- Timeline-note (v7.7: kalendriaeg vs töömaht selgitus) ---------- */
.v6-timeline-note {
  margin-top: 20px;
  font-size: 12.5px;
  line-height: 1.55;
  color: var(--graphite);
  max-width: 720px;
  padding-left: 16px;
  border-left: 2px solid var(--rule);
}

/* ---------- Quiz a11y: visible focus ring ---------- */
.v6-q-opts button:focus-visible {
  outline: 2px solid var(--blue);
  outline-offset: 2px;
}

/* ---------- FAQ numbered guarantee list (v7.8) ---------- */
.v6-faq-list {
  margin: 12px 0 12px 0;
  padding-left: 20px;
}
.v6-faq-list li {
  margin-bottom: 8px;
  line-height: 1.55;
}
