/* TalentCora - softened, friendlier redesign
   Aesthetic: warm cream base, soft elevation, gentle accents,
   rounded shapes, airy typography. Less industrial. */

:root {
  --bg:           #faf7f1;            /* soft cream */
  --bg-soft:      #f1ece2;            /* tonal warm band */
  --bg-deep:      #e8e1d3;
  --surface:      #ffffff;
  --ink:          #1f2530;            /* softer indigo-ink */
  --ink-2:        #3a4252;
  --muted:        #6a7384;
  --muted-2:      #98a1b3;
  --line:         rgba(31, 37, 48, 0.08);
  --line-strong:  rgba(31, 37, 48, 0.14);

  --accent:       oklch(0.66 0.09 200);   /* gentler teal */
  --accent-ink:   oklch(0.45 0.09 200);
  --accent-soft:  oklch(0.95 0.03 200);
  --warm:         oklch(0.78 0.10 55);    /* soft peach */
  --warm-soft:    oklch(0.96 0.035 55);
  --rose:         oklch(0.86 0.05 25);

  --radius-sm: 14px;
  --radius:    22px;
  --radius-lg: 32px;
  --radius-xl: 40px;

  --shadow-xs: 0 1px 2px rgba(31,37,48,.04);
  --shadow-sm: 0 1px 2px rgba(31,37,48,.04), 0 4px 14px rgba(31,37,48,.05);
  --shadow:    0 2px 6px rgba(31,37,48,.05), 0 18px 40px rgba(31,37,48,.07);
  --shadow-lg: 0 4px 10px rgba(31,37,48,.06), 0 30px 70px rgba(31,37,48,.10);

  --max: 1160px;

  --font-display: "Newsreader", ui-serif, Georgia, "Times New Roman", serif;
  --font-body:    "Inter", ui-sans-serif, system-ui, -apple-system, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
p { margin: 0 0 1em; }
ul { margin: 0; padding: 0; }

.wrap { width: min(var(--max), calc(100vw - 40px)); margin: 0 auto; }

/* ---------- Type ---------- */
h1, h2 {
  font-family: var(--font-display);
  font-weight: 400;
  font-style: normal;
  font-variation-settings: "SOFT" 100, "opsz" 144;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin: 0;
  text-wrap: balance;
}
h3 {
  font-family: var(--font-body);
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--ink);
  margin: 0;
  text-wrap: balance;
}
h1 {
  font-size: clamp(2.6rem, 6vw, 4.6rem);
  line-height: 1.04;
  letter-spacing: -0.025em;
  font-weight: 400;
}
h1 em {
  font-style: italic;
  color: var(--accent-ink);
  font-variation-settings: "SOFT" 100, "opsz" 144;
}
h2 {
  font-size: clamp(1.85rem, 3.5vw, 2.7rem);
  line-height: 1.1;
  letter-spacing: -0.02em;
  font-weight: 400;
}
h3 {
  font-size: 1.12rem;
  line-height: 1.3;
}
.lead {
  font-size: 1.16rem;
  color: var(--muted);
  max-width: 56ch;
  text-wrap: pretty;
  line-height: 1.55;
}
.muted { color: var(--muted); }
.tiny  { font-size: .86rem; }

/* ---------- Eyebrow / pill / chip ---------- */
.eyebrow {
  display: inline-flex; gap: .55rem; align-items: center;
  font-family: var(--font-body);
  font-size: .82rem;
  font-weight: 500;
  color: var(--accent-ink);
  letter-spacing: 0.01em;
}
.eyebrow .dot {
  width: 6px; height: 6px; border-radius: 999px; background: var(--accent);
}
.pill {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 7px 14px; border-radius: 999px;
  border: 1px solid var(--line);
  background: var(--surface);
  font-size: .85rem; color: var(--muted);
}
.chip {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 5px 12px; border-radius: 999px;
  background: var(--accent-soft);
  color: var(--accent-ink);
  font-size: .8rem;
  font-weight: 500;
}
.chip.warm { background: var(--warm-soft); color: oklch(0.45 0.12 55); }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(241, 236, 226, 0.7);
  backdrop-filter: saturate(160%) blur(14px);
  border-bottom: 1px solid var(--line);
}
.nav {
  display: flex; align-items: center; justify-content: space-between;
  gap: 24px; min-height: 88px;
}
.brand img { height: 56px; width: auto; }
.nav-links {
  display: flex; gap: 28px; align-items: center;
  font-size: .95rem;
}
.nav-links a {
  color: var(--muted);
  transition: color .15s ease;
}
.nav-links a:hover { color: var(--ink); }

.cta-row {
  display: flex; gap: 12px; align-items: center; flex-wrap: wrap;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 8px; min-height: 46px; padding: 0 22px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 500; font-size: .95rem;
  cursor: pointer;
  transition: transform .15s ease, box-shadow .15s ease, background .2s ease, border-color .2s ease;
  font-family: inherit;
}
.btn-primary {
  background: var(--ink);
  color: #fff;
  box-shadow: var(--shadow-sm);
}
.btn-primary:hover {
  background: #000;
  transform: translateY(-1px);
  box-shadow: var(--shadow);
}
.btn-secondary {
  background: var(--surface);
  border-color: var(--line-strong);
  color: var(--ink);
}
.btn-secondary:hover { background: var(--bg-soft); border-color: var(--ink); }
.btn-ghost {
  background: transparent;
  color: var(--ink);
}
.btn-ghost:hover { background: var(--bg-soft); }

#lang-toggle {
  min-height: 36px;
  padding: 0 14px;
  font-size: .85rem;
  border-radius: 999px;
  background: transparent;
  border: 1px solid var(--line-strong);
  color: var(--muted);
  cursor: pointer;
  font-family: inherit;
}
#lang-toggle:hover { background: var(--bg-soft); color: var(--ink); }

/* ---------- Sections ---------- */
section { padding: 72px 0; position: relative; }
.section-head {
  max-width: 740px;
  margin: 0 0 56px;
}
.section-head .eyebrow { margin-bottom: 16px; }
.section-head p {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 1.06rem;
  max-width: 56ch;
}
.section-warm { background: var(--bg-soft); }
.section-cream {
  background: var(--surface);
  border-radius: var(--radius-xl);
  margin: 0 16px;
}

/* ---------- Hero ---------- */
.hero { padding: 64px 0 80px; overflow: hidden; }
.hero .wrap { position: relative; z-index: 1; }
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 64px;
  align-items: center;
}
.hero h1 {
  margin-top: 8px;
  font-size: clamp(3.4rem, 8.4vw, 6.6rem);
  line-height: 1.0;
  letter-spacing: -0.03em;
}
.hero h1 .accent {
  font-style: italic;
  color: var(--accent-ink);
}
.hero p.lead {
  font-size: 1.2rem;
  margin: 26px 0 0;
}
.hero .cta-row { margin-top: 36px; }
.hero-meta {
  margin-top: 56px;
  color: var(--muted);
  font-size: .94rem;
  display: flex; align-items: center; gap: 16px; flex-wrap: wrap;
}
.flag {
  display: inline-flex; align-items: center; gap: 10px;
  font-weight: 500; color: var(--ink);
}
.flag::before {
  content: "";
  display: inline-block;
  width: 28px;
  height: 28px;
  background: url("../images/maple-leaf.svg") no-repeat center / contain;
}

/* Hero preview - soft white card */
.hero-preview {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow-lg);
  position: relative;
}
.preview-head {
  display: flex; align-items: center; justify-content: space-between;
  padding: 4px 4px 20px; border-bottom: 1px solid var(--line);
}
.preview-head .label {
  font-size: .85rem; color: var(--muted); font-weight: 500;
}
.preview-head .status {
  display: inline-flex; align-items: center; gap: 7px;
  font-size: .85rem; color: var(--muted);
}
.preview-head .status::before {
  content: ""; width: 7px; height: 7px; border-radius: 999px; background: oklch(0.7 0.14 145);
  box-shadow: 0 0 0 4px oklch(0.95 0.04 145);
}

.kpis {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 0;
  padding: 24px 0;
  border-bottom: 1px solid var(--line);
}
.kpis > div {
  padding: 0 16px;
  border-right: 1px solid var(--line);
}
.kpis > div:first-child { padding-left: 4px; }
.kpis > div:last-child { padding-right: 4px; border-right: 0; }
.kpi-label {
  font-size: .82rem; color: var(--muted);
}
.kpi-value {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 400;
  letter-spacing: -.02em;
  margin-top: 6px;
  line-height: 1;
}
.kpi-trend {
  font-size: .78rem; color: oklch(0.55 0.12 145);
  margin-top: 6px; font-weight: 500;
}

.funnel {
  display: grid; gap: 16px;
  padding: 24px 4px 18px;
  border-bottom: 1px solid var(--line);
}
.bar { display: grid; gap: 8px; }
.bar-row {
  display: flex; justify-content: space-between;
  font-size: .94rem;
}
.bar-row .name { color: var(--ink); font-weight: 500; }
.bar-row .count {
  color: var(--muted); font-weight: 500;
  font-variant-numeric: tabular-nums;
  font-size: .9rem;
}
.track {
  height: 6px; border-radius: 999px; background: var(--bg-soft);
  overflow: hidden;
}
.fill {
  height: 100%; background: var(--ink); border-radius: 999px;
  opacity: .85;
}
.fill.accent { background: var(--accent); opacity: 1; }

.cora-note {
  display: flex; gap: 14px; align-items: flex-start;
  padding: 22px 4px 4px;
}
.cora-note img {
  width: 44px; height: 44px; border-radius: 999px; object-fit: cover; flex: 0 0 44px;
  box-shadow: 0 0 0 3px var(--surface), 0 0 0 4px var(--line);
}
.cora-note .body { flex: 1; }
.cora-note .name {
  font-weight: 600; font-size: .95rem;
}
.cora-note .role {
  color: var(--muted); font-size: .85rem; margin-left: 6px;
}
.cora-note .text {
  margin: 8px 0 0; color: var(--ink-2); font-size: .96rem;
  background: var(--bg-soft);
  padding: 14px 16px;
  border-radius: 18px 18px 18px 6px;
  line-height: 1.5;
}

/* ---------- Why ---------- */
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.why-item {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 32px 30px 30px;
  position: relative;
  transition: transform .25s ease, box-shadow .25s ease;
  box-shadow: var(--shadow-xs);
}
.why-item:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}

.why-num {
  display: inline-flex;
  align-items: center;
  font-size: .8rem;
  font-weight: 500;
  color: var(--accent-ink);
  margin-bottom: 22px;
  letter-spacing: 0.02em;
}
.why-num::before {
  content: "";
  display: inline-block;
  width: 24px; height: 1px;
  background: var(--accent);
  margin-right: 10px;
}
.why-item:nth-child(2) .why-num { color: oklch(0.45 0.12 55); }
.why-item:nth-child(2) .why-num::before { background: var(--warm); }
.why-item:nth-child(3) .why-num { color: oklch(0.45 0.10 25); }
.why-item:nth-child(3) .why-num::before { background: var(--rose); }

.why-item h3 {
  font-size: 1.3rem;
  margin-bottom: 12px;
  font-family: var(--font-display);
  font-weight: 400;
  letter-spacing: -.01em;
}
.why-item p {
  color: var(--muted);
  font-size: .98rem;
  margin: 0;
}

/* ---------- Features ---------- */
.feature-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 24px;
}
.feature-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 40px;
  position: relative;
  box-shadow: var(--shadow-sm);
}
.feature-card.warm-bg {
  background: var(--bg-soft);
  border-color: transparent;
}
.feature-card.cream-bg {
  background: var(--warm-soft);
  border-color: transparent;
}

.feature-card .eyebrow { margin-bottom: 16px; }
.feature-card h3 {
  font-size: 1.5rem;
  font-family: var(--font-display);
  font-weight: 400;
  margin: 14px 0 14px;
  letter-spacing: -.015em;
}
.feature-card > p {
  color: var(--muted); margin: 0 0 24px;
  font-size: 1.02rem;
}

.timeline {
  display: grid; gap: 0;
  margin-top: 14px;
}
.timeline-step {
  display: grid; grid-template-columns: 36px 1fr; gap: 18px;
  padding: 18px 0;
  border-top: 1px solid var(--line);
  align-items: start;
}
.timeline-step:first-child { border-top: 0; padding-top: 6px; }
.step-num {
  font-size: .82rem;
  font-weight: 500;
  color: var(--accent-ink);
  background: var(--accent-soft);
  width: 28px; height: 28px;
  border-radius: 999px;
  display: grid; place-items: center;
  font-variant-numeric: tabular-nums;
}
.timeline-step strong { font-weight: 600; color: var(--ink); }
.timeline-step .desc { color: var(--muted); font-size: .96rem; display: block; margin-top: 4px; }

.checklist { display: grid; gap: 14px; margin-top: 12px; }
.check {
  display: grid; grid-template-columns: 22px 1fr; gap: 14px;
  align-items: start;
  font-size: .98rem;
  color: var(--muted);
}
.check::before {
  content: ""; width: 22px; height: 22px; margin-top: 1px;
  border-radius: 999px;
  background: var(--accent) url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='22' height='22' viewBox='0 0 22 22'><path d='M6 11.5l3 3L16 7' stroke='white' stroke-width='2.4' fill='none' stroke-linecap='round' stroke-linejoin='round'/></svg>") center/contain no-repeat;
}
.check b { color: var(--ink); font-weight: 600; }

/* ---------- Capabilities (soft warm band) ---------- */
.capabilities-section {
  background: var(--bg-soft);
}
.cap-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  background: var(--surface);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.cap-card {
  padding: 32px 30px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  transition: background .2s ease;
}
.cap-card:hover {
  background: var(--bg);
}
.cap-card:nth-child(3n) { border-right: 0; }
.cap-card:nth-last-child(-n+3) { border-bottom: 0; }
.cap-card .num {
  font-size: .8rem;
  color: var(--muted-2);
  margin-bottom: 16px;
  letter-spacing: .02em;
}
.cap-card h3 {
  font-size: 1.1rem;
  margin: 0 0 8px;
}
.cap-card p {
  color: var(--muted);
  font-size: .94rem;
  margin: 0;
  line-height: 1.55;
}
.cap-card.featured {
  background: var(--accent-soft);
}
.cap-card.featured h3 { color: var(--accent-ink); }
.cap-card.featured .num { color: var(--accent); }
.cap-card.featured:hover { background: oklch(0.92 0.04 200); }

/* ---------- How it works ---------- */
.how-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 24px;
  align-items: stretch;
}
.how-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-sm);
}
.how-card.feature-quote {
  background: linear-gradient(155deg, oklch(0.30 0.05 230) 0%, oklch(0.22 0.04 240) 100%);
  color: #f3f1ec;
  border-color: transparent;
  box-shadow: var(--shadow-lg);
}
.how-card.feature-quote h3 {
  color: #fff;
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 1.85rem;
  line-height: 1.18;
  margin: 18px 0 16px;
  max-width: 22ch;
  letter-spacing: -.02em;
}
.how-card.feature-quote p { color: rgba(255,255,255,.72); }
.how-card.feature-quote .eyebrow { color: oklch(0.85 0.08 200); }
.how-card.feature-quote .eyebrow .dot { background: oklch(0.78 0.10 200); }
.how-card.feature-quote .list div {
  border-color: rgba(255,255,255,.12);
  color: rgba(255,255,255,.85);
}
.how-card.feature-quote .list div::before { background: oklch(0.78 0.10 200); }
.how-card.feature-quote .btn-primary {
  background: #fff; color: var(--ink); margin-top: 8px;
}
.how-card.feature-quote .btn-primary:hover { background: var(--bg); }

.list { display: grid; gap: 0; margin: 22px 0 26px; }
.list div {
  padding: 14px 0 14px 24px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: .98rem;
  position: relative;
}
.list div:first-child { border-top: 0; }
.list div::before {
  content: "";
  position: absolute;
  left: 0; top: 50%;
  width: 6px; height: 6px;
  border-radius: 999px;
  background: var(--accent);
  transform: translateY(-50%);
}

/* ---------- Quote / use cases ---------- */
.use-grid {
  display: grid; grid-template-columns: 1.2fr .8fr; gap: 24px;
}
.quote-card {
  background: var(--warm-soft);
  border-radius: var(--radius-lg);
  padding: 48px;
  position: relative;
}
.quote-card::before {
  content: "“";
  font-family: var(--font-display);
  position: absolute;
  top: 18px; left: 30px;
  font-size: 6rem;
  color: var(--ink);
  opacity: .12;
  line-height: 1;
}
.quote {
  font-family: var(--font-display);
  font-size: 1.55rem;
  line-height: 1.32;
  letter-spacing: -.015em;
  margin: 24px 0 28px;
  color: var(--ink);
  font-weight: 400;
  text-wrap: balance;
  position: relative;
}
.quote-person {
  display: flex; align-items: center; gap: 14px;
  padding-top: 22px; border-top: 1px solid rgba(31,37,48,.10);
}
.quote-person img {
  width: 44px; height: 44px; border-radius: 999px;
}
.quote-person strong { font-weight: 600; }

.use-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-sm);
}

/* ---------- Pricing ---------- */
.pricing-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  align-items: stretch;
}
.price-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 32px 26px;
  display: flex; flex-direction: column;
  box-shadow: var(--shadow-xs);
  transition: transform .2s ease, box-shadow .2s ease;
  position: relative;
}
.price-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}
.price-card.featured {
  background: linear-gradient(160deg, oklch(0.28 0.05 235) 0%, oklch(0.22 0.04 240) 100%);
  color: #f3f1ec;
  border-color: transparent;
  box-shadow: var(--shadow-lg);
}
.price-card.featured .eyebrow,
.price-card.featured .price-amount { color: #fff; }
.price-card.featured .eyebrow { color: oklch(0.85 0.08 200); }
.price-card.featured .eyebrow .dot { background: oklch(0.78 0.10 200); }
.price-card.featured .price-sub,
.price-card.featured > p,
.price-card.featured .list div { color: rgba(255,255,255,.7); }
.price-card.featured .list div { border-color: rgba(255,255,255,.12); }
.price-card.featured .list div::before { background: oklch(0.78 0.10 200); }
.price-card.featured .btn-primary { background: #fff; color: var(--ink); }
.price-card.featured .btn-primary:hover { background: var(--bg); }
.price-card.featured .price-tag {
  position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
  background: var(--warm);
  color: var(--ink);
  font-size: .76rem;
  font-weight: 600;
  letter-spacing: .04em;
  padding: 6px 14px;
  border-radius: 999px;
}

.price-amount {
  font-family: var(--font-display);
  font-size: 2.8rem;
  font-weight: 400;
  letter-spacing: -.025em;
  margin: 22px 0 4px;
  line-height: 1;
}
.price-amount .unit {
  font-size: .92rem; color: var(--muted); font-weight: 500;
  font-family: var(--font-body);
}
.price-card.featured .price-amount .unit { color: rgba(255,255,255,.6); }
.price-sub {
  color: var(--muted);
  font-size: .88rem;
  margin-bottom: 18px;
  text-transform: lowercase;
}
.price-card > p {
  color: var(--muted);
  font-size: .98rem;
}
.price-card .btn { margin-top: auto; }

/* ---------- Demo ---------- */
.demo-card {
  background: linear-gradient(155deg, var(--warm-soft) 0%, var(--accent-soft) 100%);
  border-radius: var(--radius-xl);
  padding: 56px 40px;
  text-align: center;
  max-width: 760px;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow);
}
.demo-card::before {
  content: "";
  position: absolute;
  top: -120px; right: -120px;
  width: 320px; height: 320px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--warm) 0%, transparent 70%);
  opacity: .55;
  pointer-events: none;
}
.demo-card::after {
  content: "";
  position: absolute;
  bottom: -140px; left: -100px;
  width: 320px; height: 320px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--accent) 0%, transparent 70%);
  opacity: .35;
  pointer-events: none;
}
.demo-card > * { position: relative; z-index: 1; }
.demo-card .eyebrow { justify-content: center; }
.demo-card h3 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(1.8rem, 3.4vw, 2.5rem);
  line-height: 1.15;
  margin: 16px 0 16px;
  letter-spacing: -.025em;
  color: var(--ink);
  text-wrap: balance;
}
.demo-card > p { color: var(--ink-2); margin-bottom: 28px; max-width: 50ch; margin-left: auto; margin-right: auto; }
.demo-meta {
  display: grid; gap: 8px;
  margin: 0 auto 32px;
  color: var(--muted);
  font-size: .96rem;
}

/* ---------- FAQ ---------- */
.faq-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 20px;
}
.faq-col {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 8px 32px;
  box-shadow: var(--shadow-xs);
}
.faq details {
  border-bottom: 1px solid var(--line);
  padding: 22px 0;
}
.faq details:last-child { border-bottom: 0; }
.faq summary {
  list-style: none; cursor: pointer;
  font-weight: 500;
  font-size: 1.04rem;
  display: flex; justify-content: space-between; align-items: center;
  gap: 16px;
  color: var(--ink);
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "";
  width: 20px; height: 20px;
  background: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 20 20'><path d='M10 5v10M5 10h10' stroke='%231f2530' stroke-width='1.5' stroke-linecap='round'/></svg>") center/contain no-repeat;
  flex: 0 0 20px;
  transition: transform .25s ease;
  opacity: .65;
}
.faq details[open] summary::after {
  background: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 20 20'><path d='M5 10h10' stroke='%231f2530' stroke-width='1.5' stroke-linecap='round'/></svg>") center/contain no-repeat;
  opacity: 1;
}
.faq details p { margin: 12px 0 0; color: var(--muted); font-size: .98rem; max-width: 60ch; line-height: 1.6; }

/* ---------- Final CTA ---------- */
.final-cta {
  margin: 64px 0 40px;
  padding: 52px 56px;
  background: linear-gradient(140deg, var(--bg-soft) 0%, var(--warm-soft) 100%);
  border-radius: var(--radius-xl);
  display: grid; grid-template-columns: 1.1fr .9fr; gap: 48px;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.final-cta::before {
  content: "";
  position: absolute;
  top: -150px; right: -100px;
  width: 360px; height: 360px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--accent) 0%, transparent 65%);
  opacity: .25;
  pointer-events: none;
}
.final-cta > * { position: relative; }
.final-cta h2 { max-width: 14ch; }
.final-cta p { color: var(--muted); margin: 0 0 24px; max-width: 46ch; font-size: 1.05rem; }

/* ---------- Footer ---------- */
.footer {
  padding: 40px 0 56px;
  color: var(--muted);
  font-size: .92rem;
}
.footer-top {
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px; flex-wrap: wrap;
  margin-bottom: 24px;
}
.footer-top img { height: 28px; }
.footer-line {
  display: flex; justify-content: space-between; gap: 16px;
  flex-wrap: wrap;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  font-size: .88rem;
}

/* ---------- Responsive ---------- */
@media (max-width: 1180px) {
  .pricing-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 980px) {
  .hero-grid,
  .feature-grid,
  .how-grid,
  .use-grid,
  .pricing-grid,
  .faq-grid,
  .final-cta {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .why-grid, .cap-grid { grid-template-columns: 1fr 1fr; }
  .cap-card { border-right: 1px solid var(--line) !important; }
  .cap-card:nth-child(2n) { border-right: 0 !important; }
  section { padding: 56px 0; }
  .final-cta { padding: 36px; margin: 48px 0 28px; }
}
@media (max-width: 720px) {
  .nav-links { display: none; }
  .nav { min-height: 72px; }
  .brand img { height: 44px; }
  .hero { padding: 40px 0 56px; }
  body { font-size: 16px; }
  .feature-card, .how-card, .price-card, .quote-card, .use-card { padding: 28px; }
  .demo-card { padding: 48px 24px; }
  .why-grid, .cap-grid { grid-template-columns: 1fr; }
  .cap-card { border-right: 0 !important; }
  .cap-card:not(:last-child) { border-bottom: 1px solid var(--line); }
  .kpis { grid-template-columns: 1fr 1fr 1fr; }
  .kpis > div { padding: 0 8px; }
  .kpi-value { font-size: 1.5rem; }
  .cta-row .btn { flex: 1; }
}
