/* Valt Dijital — site stili (v2, sade)
   Krem-beyaz zemin, sıcak siyah yazı, zengin bordo vurgu. Tek yazı tipi: Urbanist. */

:root {
  color-scheme: only light;

  --bg: #faf8f5;
  --bg-2: #f3eee8;
  --card: #ffffff;
  --ink: #16110f;
  --ink-2: #544b45;
  --ink-3: #8b827b;
  --line: #ebe4dc;
  --line-2: #ddd3c8;

  --bordo: #7a1230;
  --bordo-h: #63102a;
  --bordo-9: #2b0612;
  --tint: #f7ecef;

  --r: 20px;
  --r-sm: 12px;
  --sh: 0 1px 2px rgba(22, 17, 15, 0.04), 0 10px 30px -18px rgba(22, 17, 15, 0.18);

  --font: "Urbanist", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  --wrap: 1160px;
  --gut: 20px;
}
@media (min-width: 720px) { :root { --gut: 32px; } }

/* ---------- temel ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font);
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input { font: inherit; color: inherit; }
h1, h2, h3 { margin: 0; font-weight: 700; letter-spacing: -0.03em; line-height: 1.08; text-wrap: balance; }
p { margin: 0; text-wrap: pretty; }
ul, ol { margin: 0; padding: 0; list-style: none; }
::selection { background: var(--bordo); color: #fff; }
:focus-visible { outline: 2px solid var(--bordo); outline-offset: 3px; border-radius: 6px; }

.wrap { width: 100%; max-width: calc(var(--wrap) + var(--gut) * 2); margin-inline: auto; padding-inline: var(--gut); }
.ic { width: 22px; height: 22px; flex: none; }
.ic-sm { width: 17px; height: 17px; flex: none; }
.acc { color: var(--bordo); }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }

/* ---------- butonlar ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 52px;
  padding: 0 26px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-size: 16px;
  font-weight: 700;
  white-space: nowrap;
  cursor: pointer;
  transition: background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}
.btn-primary { background: var(--bordo); color: #fff; }
.btn-primary:hover { background: var(--bordo-h); }
.btn-ghost { background: var(--card); border-color: var(--line-2); }
.btn-ghost:hover { border-color: var(--ink); }
.btn-light { background: #fff; color: var(--bordo-9); }
.btn-light:hover { background: var(--tint); }
.btn-line { border-color: rgba(255, 255, 255, 0.3); color: #fff; }
.btn-line:hover { border-color: #fff; }
.btn-sm { min-height: 44px; padding: 0 18px; font-size: 15px; }
.btn-row { display: flex; flex-wrap: wrap; gap: 12px; }
@media (max-width: 559px) { .btn-row .btn { flex: 1 1 100%; } }

.link { display: inline-flex; align-items: center; gap: 8px; font-weight: 700; color: var(--bordo); }
.link .ic-sm { transition: transform 0.2s ease; }
.link:hover .ic-sm { transform: translateX(3px); }

/* ---------- header ---------- */
.hdr {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(250, 248, 245, 0.92);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s ease;
}
.hdr.is-scrolled, .hdr.is-open { border-bottom-color: var(--line); }
.hdr-in { display: flex; align-items: center; justify-content: space-between; gap: 20px; height: 72px; }
.logo img { height: 32px; width: auto; }
.nav { display: none; gap: 34px; }
.nav a { position: relative; padding: 8px 0; font-size: 15.5px; font-weight: 600; color: var(--ink-2); transition: color 0.2s ease; }
.nav a:hover, .nav a.is-active { color: var(--ink); }
.nav a.is-active::after { content: ""; position: absolute; left: 50%; bottom: -2px; width: 5px; height: 5px; margin-left: -2.5px; border-radius: 9px; background: var(--bordo); }
.hdr-cta { display: none; }
.burger { display: grid; place-items: center; width: 44px; height: 44px; margin-right: -8px; border: 0; background: none; cursor: pointer; }
.burger .ic { width: 26px; height: 26px; }
.burger .i-x { display: none; }
.hdr.is-open .burger .i-m { display: none; }
.hdr.is-open .burger .i-x { display: block; }
.mnav { display: none; padding: 4px var(--gut) 24px; background: var(--bg); }
.hdr.is-open .mnav { display: block; }
.mnav a:not(.btn) { display: block; padding: 15px 0; border-bottom: 1px solid var(--line); font-size: 19px; font-weight: 700; letter-spacing: -0.02em; }
.mnav a.is-active { color: var(--bordo); }
.mnav .btn { width: 100%; margin-top: 18px; }
@media (min-width: 960px) {
  .logo img { height: 36px; }
  .nav { display: flex; }
  .hdr-cta { display: inline-flex; }
  .burger, .hdr.is-open .mnav { display: none; }
}

/* ---------- bölümler ---------- */
.sec { padding-block: clamp(64px, 9vw, 120px); }
.sec.alt { background: var(--bg-2); }
.sec.tight { padding-top: 0; }
.head { max-width: 720px; margin: 0 auto clamp(40px, 5vw, 56px); text-align: center; }
.head.left { margin-inline: 0; text-align: left; }
.eyebrow { display: block; font-size: 13px; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; color: var(--bordo); }
.head h2, .h2 { margin-top: 14px; font-size: clamp(32px, 4.4vw, 52px); }
.head p, .lead { margin-top: 18px; font-size: clamp(17px, 1.4vw, 19px); color: var(--ink-2); }
.more { margin-top: 36px; text-align: center; }

/* ---------- ana sayfa hero ---------- */
.hero { padding-block: clamp(48px, 8vw, 104px) clamp(56px, 7vw, 96px); text-align: center; }
.chip { display: inline-flex; align-items: center; gap: 9px; padding: 8px 16px; border-radius: 999px; background: var(--card); border: 1px solid var(--line); font-size: 14px; font-weight: 600; color: var(--ink-2); }
.chip::before { content: ""; width: 7px; height: 7px; border-radius: 9px; background: var(--bordo); }
.hero h1 { max-width: 900px; margin: 0 auto; font-size: clamp(36px, 6.4vw, 78px); letter-spacing: -0.04em; line-height: 1.04; }
.hero .lead { max-width: 640px; margin-inline: auto; }
.hero .btn-row { margin-top: 32px; justify-content: center; }
.partner { margin-top: 36px; display: flex; justify-content: center; }
.partner img { height: 46px; width: auto; }
@media (min-width: 720px) { .partner img { height: 54px; } }

.stats {
  margin-top: clamp(36px, 5vw, 60px);
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  text-align: center;
}
.stats li {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 20px 10px;
  border-radius: 16px;
  background: var(--card);
  border: 1px solid var(--line);
}
.stat-n { display: block; font-size: clamp(30px, 8vw, 46px); font-weight: 700; letter-spacing: -0.04em; line-height: 1; font-variant-numeric: tabular-nums; }
.stat-n small { font-size: 0.46em; letter-spacing: -0.01em; margin-left: 3px; }
.stats span { display: block; margin-top: 10px; font-size: 11.5px; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; color: var(--ink-3); line-height: 1.35; }
@media (min-width: 680px) {
  .stats { gap: 14px; max-width: 840px; margin-inline: auto; }
  .stats li { padding: 26px 16px; }
  .stats span { font-size: 13px; }
}

/* ---------- alt sayfa başlığı ---------- */
.phero { padding-block: clamp(56px, 8vw, 96px) clamp(40px, 5vw, 64px); text-align: center; }
.phero h1 { max-width: 820px; margin: 14px auto 0; font-size: clamp(38px, 5.6vw, 64px); letter-spacing: -0.035em; }
.phero .lead { max-width: 620px; margin-inline: auto; }

/* ---------- küçük kutucuklar ---------- */
.mini {
  display: grid;
  grid-template-columns: 22px 1fr;
  gap: 3px 14px;
  padding: 16px 18px;
  border-radius: 14px;
  background: var(--card);
  border: 1px solid var(--line);
}
.mini > .ic-sm { margin-top: 4px; color: var(--bordo); }
.mini b { font-size: 17px; letter-spacing: -0.015em; line-height: 1.3; }
.mini p { grid-column: 2; font-size: 15.5px; line-height: 1.5; color: var(--ink-2); }
.mini-list { display: grid; gap: 10px; }
.mini-grid { display: grid; gap: 12px; grid-auto-rows: 1fr; }
@media (min-width: 640px) { .mini-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1000px) { .mini-grid.m3 { grid-template-columns: repeat(3, 1fr); } }

/* adımlar: aralarında ok olan kutucuklar */
.flow-steps { display: grid; gap: 30px; }
.flow-steps .step {
  position: relative;
  padding: 22px 22px 24px;
  border-radius: 16px;
  background: var(--card);
  border: 1px solid var(--line);
}
.flow-steps .step + .step::before {
  content: "";
  position: absolute;
  width: 10px;
  height: 10px;
  border-top: 2px solid var(--line-2);
  border-right: 2px solid var(--line-2);
  left: 50%;
  top: -21px;
  margin-left: -5px;
  transform: rotate(135deg);
}
.num {
  display: inline-grid;
  place-items: center;
  width: 36px;
  height: 36px;
  margin-bottom: 16px;
  border-radius: 99px;
  border: 1px solid var(--line-2);
  color: var(--bordo);
  font-size: 14px;
  font-weight: 700;
  font-variant-numeric: tabular-nums;
}
.flow-steps b { display: block; font-size: 18.5px; letter-spacing: -0.02em; }
.flow-steps p { margin-top: 8px; font-size: 15.5px; color: var(--ink-2); }
@media (min-width: 900px) {
  .flow-steps { grid-template-columns: repeat(4, 1fr); gap: 34px; }
  .flow-steps .step + .step::before { left: -22px; top: 50%; margin: -5px 0 0; transform: rotate(45deg); }
}

/* ---------- zaman çizgisi ---------- */
.timeline li { position: relative; display: grid; grid-template-columns: 54px 1fr; gap: 2px 18px; padding-bottom: 30px; }
.timeline li:last-child { padding-bottom: 0; }
.timeline li::before { content: ""; position: absolute; left: 27px; top: 58px; bottom: 0; width: 1px; background: var(--line-2); }
.timeline li:last-child::before { display: none; }
.t-ic { grid-row: span 2; display: grid; place-items: center; width: 54px; height: 54px; border-radius: 99px; background: var(--bg); border: 1px solid var(--line-2); color: var(--bordo); }
.timeline b { align-self: end; font-size: 19px; letter-spacing: -0.02em; }
.timeline p { font-size: 16px; color: var(--ink-2); }
@media (min-width: 900px) {
  .timeline { display: grid; grid-template-columns: repeat(5, 1fr); }
  .timeline li { display: block; text-align: center; padding: 0 10px; }
  .timeline li::before { left: 0; right: 50%; top: 27px; bottom: auto; width: auto; height: 1px; display: block; }
  .timeline li::after { content: ""; position: absolute; left: 50%; right: 0; top: 27px; height: 1px; background: var(--line-2); }
  .timeline li:last-child::before { display: block; }
  .timeline li:first-child::before, .timeline li:last-child::after { display: none; }
  .t-ic { position: relative; z-index: 1; margin: 0 auto 18px; }
  .timeline p { margin-top: 6px; }
}

/* ---------- kartlar ---------- */
.grid { display: grid; gap: 16px; }
@media (min-width: 640px) { .grid.g3 { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 980px) { .grid.g3 { grid-template-columns: repeat(3, 1fr); } }
.card { padding: 28px 26px; border-radius: var(--r); background: var(--card); border: 1px solid var(--line); }
.card-ic { display: grid; place-items: center; width: 46px; height: 46px; margin-bottom: 20px; border-radius: 14px; background: var(--tint); color: var(--bordo); }
.card h3 { font-size: 20px; letter-spacing: -0.02em; line-height: 1.25; }
.card p { margin-top: 8px; font-size: 16px; color: var(--ink-2); }

/* ---------- mesajlaşma kartı ---------- */
.dm-split { display: grid; gap: 40px; align-items: start; }
@media (min-width: 980px) { .dm-split { grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr); gap: 72px; } }
.card.dm { max-width: 420px; margin-top: 36px; display: flex; flex-direction: column; padding: 20px 20px 22px; border-radius: var(--r); background: var(--card); border: 1px solid var(--line); box-shadow: var(--sh); }
.dm-head { display: flex; align-items: center; gap: 10px; padding-bottom: 14px; border-bottom: 1px solid var(--line); font-size: 15px; font-weight: 700; }
.dm-av { width: 32px; height: 32px; border-radius: 99px; background: linear-gradient(140deg, var(--tint), var(--bg-2)); border: 1px solid var(--line); }
.dm-body { display: grid; gap: 8px; padding-top: 16px; }
.bub { max-width: 88%; padding: 10px 14px; border-radius: 16px; font-size: 15px; line-height: 1.4; }
.bub.in { background: var(--bg-2); border-bottom-left-radius: 5px; }
.bub.out { justify-self: end; background: var(--bordo); color: #fff; border-bottom-right-radius: 5px; }
.dm-seen { justify-self: end; font-size: 13px; font-weight: 600; color: var(--ink-3); }
.dm-gone { margin-top: 8px; text-align: center; font-size: 14px; font-weight: 600; color: var(--ink-3); }

/* ---------- garanti + grafik ---------- */
.split { display: grid; gap: 40px; align-items: center; }
@media (min-width: 980px) { .split { grid-template-columns: 1fr 1.05fr; gap: 72px; } }
.split .h2 { margin-top: 14px; }
.checks { margin-top: 26px; display: grid; gap: 12px; }
.checks li { display: flex; gap: 12px; font-size: 16.5px; font-weight: 600; }
.checks .ic-sm { margin-top: 4px; color: var(--bordo); }
.note { margin-top: 16px; font-size: 14.5px; color: var(--ink-3); }
.split .btn-row { margin-top: 30px; }

.chart-card { padding: 24px 22px 20px; border-radius: var(--r); background: var(--card); border: 1px solid var(--line); box-shadow: var(--sh); }
.chart-top { display: flex; justify-content: space-between; align-items: flex-start; gap: 12px; }
.chart-top small { display: block; font-size: 13px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--ink-3); }
.chart-top b { display: block; margin-top: 4px; font-size: 22px; letter-spacing: -0.02em; }
.badge { flex: none; padding: 6px 12px; border-radius: 999px; background: var(--tint); color: var(--bordo); font-size: 14px; font-weight: 700; }
.chart { margin-top: 18px; }
.chart svg { width: 100%; height: auto; }
.chart-x { display: flex; justify-content: space-between; margin-top: 8px; font-size: 13px; font-weight: 600; color: var(--ink-3); font-variant-numeric: tabular-nums; }
.legend { margin-top: 18px; padding-top: 16px; border-top: 1px solid var(--line); display: flex; flex-wrap: wrap; gap: 10px 20px; font-size: 14px; font-weight: 600; color: var(--ink-2); }
.legend span { display: inline-flex; align-items: center; gap: 8px; }
.legend i { display: inline-block; width: 16px; }
.lg-band { height: 11px; border-radius: 3px; background: var(--bg-2); border: 1px solid var(--line-2); }
.lg-line { height: 3px; border-radius: 3px; background: var(--bordo); }
.lg-dash { height: 0; border-top: 2px dashed var(--ink-3); }

/* ---------- referanslar ---------- */
.refs { display: grid; gap: 16px; max-width: 720px; margin-inline: auto; }
@media (min-width: 640px) { .refs { grid-template-columns: repeat(2, 1fr); } }
.refs.r3, .refs.r4 { max-width: none; }
@media (min-width: 980px) { .refs.r3 { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1040px) { .refs.r4 { grid-template-columns: repeat(4, 1fr); } }
.ref { overflow: hidden; border-radius: var(--r); background: var(--card); border: 1px solid var(--line); }
.ref img { width: 100%; height: auto; aspect-ratio: 4 / 3; object-fit: cover; }
.ref div { padding: 16px 20px 18px; }
.ref b { display: block; font-size: 18px; letter-spacing: -0.02em; }
.ref span { display: inline-flex; align-items: center; gap: 6px; margin-top: 2px; font-size: 15px; font-weight: 600; color: var(--ink-3); }
.ref-cta { display: flex; flex-direction: column; justify-content: space-between; gap: 24px; padding: 28px 26px; border-radius: var(--r); background: var(--bg-2); border: 1px solid var(--line); }
.ref-cta h3 { font-size: 24px; }
.ref-cta p { margin-top: 10px; color: var(--ink-2); font-size: 16px; }
.ref-cta .btn { align-self: flex-start; }

/* ---------- kapanış bandı ---------- */
.band { padding-block: clamp(64px, 9vw, 104px); background: var(--bordo-9); color: #fff; text-align: center; }
.band h2 { font-size: clamp(32px, 4.6vw, 56px); }
.band p { max-width: 560px; margin: 16px auto 0; font-size: 18px; color: rgba(255, 255, 255, 0.76); }
.band .btn-row { margin-top: 32px; justify-content: center; }

/* ---------- hizmetler: katmanlar ---------- */
/* Beş katman: numaralar bir omurgaya dizili, kapsam maddeleri hizalı ızgarada */
.layers { max-width: 1000px; margin-inline: auto; }
.layer {
  position: relative; display: grid; gap: 12px;
  padding: 26px 0 26px 62px; border-top: 1px solid var(--line);
}
.layer:first-child { border-top: 0; }
.layer::before {            /* rozetin altından bir sonraki rozete inen çizgi */
  content: ""; position: absolute; left: 19px; top: 66px; bottom: -26px;
  width: 1px; background: var(--line-2);
}
.layer:last-child::before { content: none; }   /* son rozetin altında çizgi yok */
.layer-n {
  position: absolute; left: 0; top: 26px;
  display: grid; place-items: center; width: 40px; height: 40px;
  border-radius: 12px; background: var(--tint); color: var(--bordo);
  font-size: 14px; font-weight: 800; font-variant-numeric: tabular-nums;
}
.layer h3 { font-size: clamp(20px, 2.2vw, 26px); }
.layer p { margin-top: 6px; color: var(--ink-2); font-size: 16.5px; }
.tags { display: grid; gap: 7px 18px; }
@media (min-width: 560px) { .tags { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
.tags li {
  position: relative; padding-left: 16px;
  font-size: 15px; font-weight: 600; color: var(--ink-2);
}
.tags li::before {          /* madde işareti: küçük bordo nokta */
  content: ""; position: absolute; left: 0; top: 9px;
  width: 6px; height: 6px; border-radius: 50%; background: var(--bordo);
}
@media (min-width: 900px) {
  .layer { grid-template-columns: 1.15fr 1fr; gap: 40px; align-items: start; padding: 34px 0 34px 78px; }
  .layer-n { top: 34px; width: 46px; height: 46px; border-radius: 14px; font-size: 15px; }
  .layer::before { left: 22px; top: 80px; bottom: -34px; }
  .tags { padding-top: 4px; }
}

/* ---------- karşılaştırma tablosu ---------- */
.tbl-wrap { max-width: 900px; margin-inline: auto; overflow-x: auto; border-radius: var(--r); background: var(--card); border: 1px solid var(--line); }
.tbl { width: 100%; min-width: 520px; border-collapse: collapse; font-size: 16px; }
.tbl th, .tbl td { padding: 18px 20px; text-align: center; border-top: 1px solid var(--line); }
.tbl thead th { border-top: 0; font-size: 13px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--ink-3); }
.tbl th:first-child, .tbl td:first-child { text-align: left; font-weight: 600; }
.tbl .us { background: var(--tint); }
.tbl thead .us { color: var(--bordo); }
.tbl .yes { color: var(--bordo); }
.tbl .yes .ic-sm { margin: 0 auto; }
.tbl .no { color: var(--ink-3); font-size: 15px; font-weight: 600; }

/* ---------- hesaplayıcı ---------- */
.calc { max-width: 980px; margin-inline: auto; display: grid; overflow: hidden; border-radius: var(--r); background: var(--card); border: 1px solid var(--line); box-shadow: var(--sh); }
@media (min-width: 860px) { .calc { grid-template-columns: 1fr 1fr; } }
.calc-in { padding: 30px 24px; display: grid; gap: 32px; align-content: center; }
.range label { display: flex; justify-content: space-between; gap: 12px; font-size: 16px; font-weight: 700; }
.range output { color: var(--bordo); font-variant-numeric: tabular-nums; white-space: nowrap; }
.range input { width: 100%; height: 28px; margin: 12px 0 2px; accent-color: var(--bordo); }
.range small { display: flex; justify-content: space-between; font-size: 13px; font-weight: 600; color: var(--ink-3); }
.calc-out { padding: 30px 24px; background: var(--bordo-9); color: #fff; display: grid; gap: 22px; align-content: center; }
.calc-out small { display: block; font-size: 13px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(255, 255, 255, 0.62); }
.calc-out b { display: block; margin-top: 6px; font-size: clamp(34px, 4.4vw, 46px); letter-spacing: -0.035em; line-height: 1; font-variant-numeric: tabular-nums; }
.calc-out .row + .row { padding-top: 22px; border-top: 1px solid rgba(255, 255, 255, 0.14); }
.calc-out p { font-size: 14px; color: rgba(255, 255, 255, 0.62); }
@media (min-width: 860px) { .calc-in, .calc-out { padding: 40px; } }

/* ---------- iletişim ---------- */
.contact { display: grid; gap: 16px; max-width: 980px; margin-inline: auto; }
@media (min-width: 860px) { .contact { grid-template-columns: 1.25fr 1fr; } }
.c-main { display: flex; flex-direction: column; justify-content: space-between; gap: 28px; padding: 34px 28px; border-radius: var(--r); background: var(--bordo-9); color: #fff; }
.c-main small { font-size: 13px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(255, 255, 255, 0.62); }
.c-main b { display: block; margin-top: 8px; font-size: clamp(28px, 3.4vw, 38px); letter-spacing: -0.03em; }
.c-main p { margin-top: 10px; color: rgba(255, 255, 255, 0.76); }
.c-main .btn { align-self: flex-start; }
@media (max-width: 559px) { .c-main .btn { align-self: stretch; } }
.c-side { display: grid; gap: 16px; }
.c-item { display: flex; align-items: center; gap: 16px; padding: 22px 24px; border-radius: var(--r); background: var(--card); border: 1px solid var(--line); transition: border-color 0.2s ease; }
a.c-item:hover { border-color: var(--ink); }
.c-item .card-ic { margin: 0; }
.c-item small { display: block; font-size: 13px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--ink-3); }
.c-item b { display: block; font-size: 18px; letter-spacing: -0.01em; overflow-wrap: anywhere; }

/* ---------- sss ---------- */
.faq { max-width: 820px; margin-inline: auto; border-top: 1px solid var(--line-2); }
.faq details { border-bottom: 1px solid var(--line-2); }
.faq summary { display: flex; justify-content: space-between; align-items: center; gap: 20px; padding: 22px 0; cursor: pointer; list-style: none; font-size: clamp(18px, 1.7vw, 20px); font-weight: 700; letter-spacing: -0.015em; line-height: 1.35; }
.faq summary::-webkit-details-marker { display: none; }
.plus { position: relative; flex: none; width: 32px; height: 32px; border-radius: 99px; border: 1px solid var(--line-2); transition: transform 0.25s ease, background-color 0.2s ease; }
.plus::before, .plus::after { content: ""; position: absolute; left: 50%; top: 50%; width: 12px; height: 2px; margin: -1px 0 0 -6px; border-radius: 2px; background: var(--ink); }
.plus::after { transform: rotate(90deg); }
.faq details[open] .plus { transform: rotate(45deg); background: var(--ink); border-color: var(--ink); }
.faq details[open] .plus::before, .faq details[open] .plus::after { background: #fff; }
.faq details p { padding: 0 44px 24px 0; color: var(--ink-2); font-size: 16.5px; }

/* ---------- blog ---------- */
.posts { display: grid; gap: 16px; }
@media (min-width: 680px) { .posts { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1000px) { .posts { grid-template-columns: repeat(3, 1fr); } }
.post-card { display: flex; flex-direction: column; overflow: hidden; border-radius: var(--r); background: var(--card); border: 1px solid var(--line); transition: border-color 0.2s ease; }
.post-cover { width: 100%; height: auto; aspect-ratio: 16 / 9; object-fit: cover; }
.post-body { display: flex; flex-direction: column; flex: 1; padding: 22px 24px 24px; }
.post-card:hover { border-color: var(--ink); }
.post-card h2, .post-card h3 { margin-top: 10px; flex: 1; font-size: 21px; letter-spacing: -0.02em; line-height: 1.24; }

.post-meta { display: flex; justify-content: space-between; align-items: center; gap: 12px; margin-top: 22px; padding-top: 16px; border-top: 1px solid var(--line); font-size: 14px; font-weight: 600; color: var(--ink-3); }

.article { max-width: 760px; margin-inline: auto; }
.article-cover { width: 100%; height: auto; aspect-ratio: 16 / 9; object-fit: cover; border-radius: var(--r); margin-bottom: 28px; }
.crumbs { display: flex; flex-wrap: wrap; justify-content: center; gap: 8px; font-size: 14px; font-weight: 600; color: var(--ink-3); }
.crumbs a:hover { color: var(--ink); }
.article-head { padding-block: clamp(48px, 7vw, 80px) 36px; text-align: center; }
.article-head .eyebrow { margin-top: 22px; }
.article-head h1 { margin-top: 12px; font-size: clamp(34px, 4.8vw, 54px); letter-spacing: -0.035em; }
.article-head .post-meta { justify-content: center; border: 0; margin-top: 16px; padding: 0; }
.summary { padding: 24px 26px; border-radius: var(--r); background: var(--tint); }
.summary b { display: block; font-size: 13px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--bordo); }
.summary p { margin-top: 8px; font-size: 17px; font-weight: 600; }
.prose { margin-top: 36px; font-size: 18px; line-height: 1.75; color: #2e2622; }
.prose h2 { margin: 44px 0 14px; font-size: clamp(24px, 2.6vw, 30px); color: var(--ink); }
.prose p { margin: 0 0 18px; }
.prose ul, .prose ol { margin: 0 0 20px; padding-left: 22px; }
.prose ul { list-style: disc; }
.prose ol { list-style: decimal; }
.prose li { margin-bottom: 8px; padding-left: 4px; }
.prose li::marker { color: var(--bordo); font-weight: 700; }
.prose strong { color: var(--ink); }
.prose a { color: var(--bordo); font-weight: 700; text-decoration: underline; text-underline-offset: 3px; }
.post-cta { margin-top: 48px; padding: 30px 28px; border-radius: var(--r); background: var(--bordo-9); color: #fff; }
.post-cta h2 { font-size: clamp(24px, 2.8vw, 30px); }
.post-cta p { margin-top: 10px; color: rgba(255, 255, 255, 0.76); }
.post-cta .btn { margin-top: 22px; }
@media (max-width: 559px) { .post-cta .btn { width: 100%; } }

/* ---------- footer ---------- */
.ftr { background: var(--bordo-9); color: rgba(255, 255, 255, 0.72); }
.band + .ftr { border-top: 1px solid rgba(255, 255, 255, 0.1); }
.ftr-in { display: grid; gap: 36px; padding-block: 56px 36px; }
@media (min-width: 760px) { .ftr-in { grid-template-columns: 1.5fr 1fr 1fr; } }
.ftr img { height: 34px; width: auto; }
.ftr-brand p { margin-top: 16px; max-width: 320px; font-size: 15.5px; }
.ftr h4 { margin: 0; font-size: 13px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: rgba(255, 255, 255, 0.5); }
.ftr ul { margin-top: 14px; display: grid; gap: 10px; }
.ftr ul a { display: inline-flex; align-items: center; gap: 9px; font-weight: 600; color: #fff; }
.ftr ul a:hover { color: #f0c4cf; }
.ftr-bot { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 8px 20px; padding-block: 20px 30px; border-top: 1px solid rgba(255, 255, 255, 0.1); font-size: 14px; color: rgba(255, 255, 255, 0.5); }

/* ---------- whatsapp ---------- */
.wa-float { position: fixed; right: 16px; bottom: 16px; z-index: 40; display: grid; place-items: center; width: 58px; height: 58px; border-radius: 99px; background: #25d366; color: #fff; box-shadow: 0 12px 28px -10px rgba(18, 140, 70, 0.6); transition: transform 0.2s ease; }
.wa-float:hover { transform: scale(1.06); }
.wa-float .ic { width: 30px; height: 30px; }
.wa-g { color: #1fae55; }

/* ---------- 404 ---------- */
.nf { min-height: 64vh; display: grid; place-items: center; text-align: center; padding-block: 80px; }
.nf b { display: block; font-size: clamp(96px, 16vw, 180px); line-height: 0.9; letter-spacing: -0.06em; color: var(--bordo); }
.nf h1 { margin-top: 18px; font-size: clamp(28px, 3.6vw, 40px); }
.nf p { margin-top: 12px; color: var(--ink-2); }
.nf .btn { margin-top: 26px; }

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