/* platform-live.css — GuestOS marketing site */
/* design-restore 2026-06-23 — Fraunces+Inter, linen #f0ebe3, terracotta #b05a2f */

/* ── Variables ─────────────────────────────────────────── */
:root {
  --ink:          #1c1a17;
  --ink-soft:     #2d2a25;
  --accent:       #b05a2f;
  --accent-soft:  #f5ebe3;
  --bg:           #f0ebe3;
  --bg-2:         #e8e3da;
  --card:         #f7f3ee;
  --muted:        #7a7068;
  --soft:         #a09080;
  --line:         #d9d0c7;
  --radius:       14px;
  --font:         'Inter', system-ui, sans-serif;
  --font-display: 'Fraunces', Georgia, serif;
}

/* ── Reset ──────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--ink);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

/* ── Layout ─────────────────────────────────────────────── */
.wrap { max-width: 1100px; margin: 0 auto; padding: 0 28px; }

/* ── Buttons ────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 12px 22px; border-radius: 10px;
  font-size: 14px; font-weight: 700; line-height: 1;
  text-decoration: none; transition: all .18s ease; white-space: nowrap;
  font-family: var(--font);
}
.btn-primary { background: var(--accent); color: #fff; }
.btn-primary:hover { background: #9a4e29; transform: translateY(-1px); }
.btn-primary:active { transform: translateY(0); }
.btn-ghost { background: transparent; color: var(--ink); border: 1.5px solid currentColor; }
.btn-ghost:hover { background: var(--bg-2); }
.btn-ghost-light { background: transparent; color: #fff; border: 1.5px solid rgba(255,255,255,.4); }
.btn-ghost-light:hover { background: rgba(255,255,255,.1); }

/* ── Flash messages ─────────────────────────────────────── */
.flash { padding: 12px 24px; font-size: 14px; font-weight: 600; text-align: center; }
.flash.success { background: #d1fae5; color: #065f46; }
.flash.error   { background: #fee2e2; color: #991b1b; }

/* ── Nav ────────────────────────────────────────────────── */
.site-nav {
  position: fixed; top: 16px; left: 16px; right: 16px; z-index: 100;
  background: rgba(255,252,248,.97);
  border-radius: 16px;
  box-shadow: 0 2px 24px rgba(28,26,23,.09), 0 0 0 1px rgba(28,26,23,.06);
  transition: box-shadow .25s;
}
.nav-inner {
  display: flex; align-items: center; gap: 24px;
  padding: 18px 28px; max-width: 1100px; margin: 0 auto;
}
.site-logo {
  font-family: var(--font-display);
  font-size: 20px; font-weight: 700; letter-spacing: -.01em;
  color: var(--ink); text-decoration: none;
}
.site-logo .logo-os { color: var(--accent); }
.site-nav-links { display: flex; align-items: center; gap: 28px; margin-left: auto; }
.site-nav-links a {
  font-size: 13.5px; font-weight: 600; color: var(--ink);
  opacity: .75; transition: opacity .15s;
}
.site-nav-links a:hover { opacity: 1; }
.site-nav-cta { display: flex; align-items: center; gap: 12px; }
.site-nav-login {
  font-size: 13.5px; font-weight: 600; color: var(--ink);
  border: 1.5px solid rgba(28,26,23,.25); border-radius: 10px;
  padding: 8px 16px; transition: border-color .15s, background .15s;
  text-decoration: none; display: inline-flex; align-items: center;
}
.site-nav-login:hover { border-color: var(--ink); background: rgba(28,26,23,.04); }
.site-nav.scrolled {
  box-shadow: 0 4px 32px rgba(28,26,23,.13), 0 0 0 1px rgba(28,26,23,.07);
}
@media (max-width: 639px) {
  .site-nav { top: 0; left: 0; right: 0; border-radius: 0; }
}

/* ── Hero ───────────────────────────────────────────────── */
.hero { padding: 96px 0 72px; background: var(--bg); }
.hero-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 60px; align-items: center;
}
.hero-copy h1 {
  font-family: var(--font-display);
  font-size: clamp(36px, 4.5vw, 58px);
  font-weight: 700; line-height: 1.08; letter-spacing: -.02em; margin-bottom: 20px;
}
.hero-copy h1 em { font-style: italic; color: var(--accent); }
.hero-copy .sub {
  font-size: 17px; color: var(--muted); line-height: 1.7;
  max-width: 480px; margin-bottom: 32px;
}
.hero-cta { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 32px; }
.trust-line {
  display: flex; align-items: center; gap: 12px;
  font-size: 13px; color: var(--muted); font-weight: 600;
}
.avatars { display: flex; }
.avatars span {
  width: 32px; height: 32px; border-radius: 50%;
  background: var(--ink); color: #fff; font-size: 11px; font-weight: 700;
  display: grid; place-items: center;
  border: 2px solid #fff; margin-left: -8px;
}
.avatars span:first-child { margin-left: 0; }
.trust-line .stars { color: #f5a623; letter-spacing: 1px; }

/* ── Phone mockup ───────────────────────────────────────── */
.phone-stage {
  position: relative;
  display: flex; align-items: flex-start; justify-content: center;
  padding: 20px 0 60px;
}
.phone {
  width: 276px; height: 560px;
  background: var(--ink); border-radius: 40px;
  border: 6px solid #2d2a25;
  box-shadow: 0 40px 80px -20px rgba(26,40,32,.4);
  overflow: hidden; flex: none;
}
.screen { height: 100%; display: flex; flex-direction: column; background: var(--bg-2); overflow: hidden; }
.ph-top { position: relative; height: 110px; overflow: hidden; flex: none; }
.ph-top .grad { position: absolute; inset: 0; background: linear-gradient(145deg, var(--ink) 0%, #3a2c22 100%); }
.ph-villa { position: absolute; bottom: 14px; left: 14px; }
.ph-villa .k { font-size: 15px; font-weight: 800; color: #fff; letter-spacing: -.01em; }
.ph-villa .n { font-size: 11px; color: rgba(255,255,255,.6); margin-top: 2px; }
.ph-body { flex: 1; overflow-y: auto; padding: 14px 0; }
.ph-pane { display: none; padding: 0 14px; }
.ph-pane.active { display: block; }
.ph-h { font-size: 14px; font-weight: 800; margin-bottom: 4px; color: var(--ink); }
.ph-hsub { font-size: 11.5px; color: var(--muted); margin-bottom: 12px; line-height: 1.4; }
.info-card {
  background: #fff; border-radius: 12px; overflow: hidden;
  margin-bottom: 10px; box-shadow: 0 2px 8px -2px rgba(26,40,32,.1);
}
.info-row {
  display: flex; justify-content: space-between; align-items: center;
  padding: 10px 16px; border-bottom: 1px solid var(--line);
}
.info-row:last-child { border-bottom: none; }
.info-row .lab { font-size: 10px; color: var(--muted); font-weight: 700; text-transform: uppercase; letter-spacing: .06em; }
.info-row .val { font-size: 12px; font-weight: 700; }
.wifi-box {
  background: #fff; border-radius: 12px; padding: 14px 16px;
  margin-bottom: 10px; box-shadow: 0 2px 8px -2px rgba(26,40,32,.1);
}
.wifi-box .lab { font-size: 10px; font-weight: 700; color: var(--muted); text-transform: uppercase; letter-spacing: .06em; margin-bottom: 4px; }
.wifi-box .net { font-size: 16px; font-weight: 800; margin-bottom: 12px; }
.wifi-pass {
  display: flex; align-items: center; justify-content: space-between;
  background: var(--bg-2); border-radius: 8px; padding: 8px 12px;
}
.wifi-pass span { font-size: 13px; font-weight: 700; font-family: monospace; }
.copy-btn { font-size: 11px; font-weight: 700; color: var(--accent); cursor: pointer; padding: 2px 0; }
.house-rule {
  display: flex; align-items: flex-start; gap: 10px;
  padding: 9px 16px; border-bottom: 1px solid var(--line);
}
.house-rule:last-child { border-bottom: none; }
.house-rule .ic { font-size: 15px; flex: none; }
.house-rule b { font-size: 12px; font-weight: 700; display: block; }
.house-rule div:last-child { font-size: 11.5px; line-height: 1.4; color: var(--ink); }
.rec {
  display: flex; align-items: center; gap: 12px;
  padding: 10px 16px; border-bottom: 1px solid var(--line);
}
.rec:last-child { border-bottom: none; }
.rec .pic { width: 36px; height: 36px; border-radius: 8px; background: var(--bg-2); flex: none; }
.rec .tag { font-size: 9.5px; font-weight: 700; color: var(--accent); text-transform: uppercase; letter-spacing: .06em; }
.rec .nm { font-size: 12px; font-weight: 700; }
.rec .meta { font-size: 10.5px; color: var(--muted); }
.check {
  display: flex; align-items: center; gap: 10px;
  padding: 9px 16px; border-bottom: 1px solid var(--line); cursor: pointer;
}
.check:last-child { border-bottom: none; }
.check .box {
  width: 18px; height: 18px; border-radius: 5px;
  border: 1.5px solid var(--line);
  display: grid; place-items: center; font-size: 10px; flex: none;
  transition: all .15s;
}
.check.done .box { background: var(--ink); border-color: var(--ink); color: #fff; }
.check span { font-size: 12px; font-weight: 500; }
.check.done span { text-decoration: line-through; color: var(--muted); }
.ph-nav {
  display: flex; border-top: 1px solid var(--line);
  flex: none; background: #fff;
}
.ph-nav button {
  flex: 1; display: flex; flex-direction: column; align-items: center;
  gap: 2px; padding: 8px 4px;
  font-size: 9.5px; color: var(--muted); font-weight: 700;
  background: none; border: none; cursor: pointer; transition: color .15s;
}
.ph-nav button .gi { font-size: 14px; }
.ph-nav button.active { color: var(--ink); }

/* ── Phone floating badges ──────────────────────────────── */
.qr-badge {
  position: absolute; bottom: 40px; right: 10px;
  background: #fff; border-radius: 14px; padding: 10px 14px;
  display: flex; align-items: center; gap: 12px;
  box-shadow: 0 8px 24px -4px rgba(26,40,32,.2);
}
.qr-badge .qr { width: 48px; height: 48px; border-radius: 8px; overflow: hidden; }
.qr-badge .t1 { font-size: 12px; font-weight: 800; color: var(--ink); }
.qr-badge .t2 { font-size: 10.5px; color: var(--muted); margin-top: 2px; }
.float-badge {
  position: absolute; top: 40px; right: 10px;
  background: #fff; border-radius: 14px; padding: 10px 14px;
  display: flex; align-items: center; gap: 10px;
  box-shadow: 0 8px 24px -4px rgba(26,40,32,.2);
}
.float-badge .pulse {
  width: 10px; height: 10px; border-radius: 50%;
  background: #3a9d6a; flex: none;
  box-shadow: 0 0 0 3px rgba(58,157,106,.25);
  animation: pulseDot 2s ease infinite;
}
.float-badge .t1 { font-size: 12px; font-weight: 800; color: var(--ink); }
.float-badge .t2 { font-size: 10.5px; color: var(--muted); margin-top: 2px; }
@keyframes pulseDot {
  0%, 100% { box-shadow: 0 0 0 3px rgba(58,157,106,.25); }
  50%       { box-shadow: 0 0 0 6px rgba(58,157,106,.1); }
}

/* ── Trust bar ──────────────────────────────────────────── */
.trustbar {
  background: var(--bg-2);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 16px 0;
}
.trustbar-inner { display: flex; align-items: center; gap: 20px; flex-wrap: wrap; }
.trustbar .label { font-size: 12.5px; font-weight: 600; color: var(--muted); }
.trust-pills { display: flex; flex-wrap: wrap; gap: 8px; }
.trust-pill {
  font-size: 12px; font-weight: 700; color: var(--muted);
  background: rgba(255,255,255,.8); border: 1px solid var(--line);
  border-radius: 999px; padding: 4px 12px;
}

/* ── Sections ───────────────────────────────────────────── */
.sec { padding: 80px 0; }
.sec[id] { scroll-margin-top: 90px; }
.band { background: var(--bg-2); }
.sec-head { margin-bottom: 48px; }
.sec-head.center { text-align: center; }
.sec-head h2 {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 700; line-height: 1.1; letter-spacing: -.02em;
}
.eyebrow {
  font-size: 12px; font-weight: 700; color: var(--accent);
  text-transform: uppercase; letter-spacing: .1em; margin-bottom: 10px;
}
h2 { font-family: var(--font-display); font-size: clamp(26px, 3vw, 40px); font-weight: 700; letter-spacing: -.015em; line-height: 1.15; }
h3 { font-family: var(--font-display); font-size: 20px; font-weight: 700; letter-spacing: -.01em; }
p { line-height: 1.65; }

/* ── Platform page hero (pricing, faq, etc.) ────────────── */
.platform-page-hero { padding: 96px 0 48px; }
.platform-page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 50px); font-weight: 700;
  letter-spacing: -.02em; line-height: 1.08; margin-bottom: 14px;
}
.platform-page-hero p { font-size: 17px; color: var(--muted); max-width: 520px; }
.platform-page-hero .eyebrow { margin-bottom: 14px; }

/* ── Problem section ────────────────────────────────────── */
.prob-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start; }
.prob-list { display: flex; flex-direction: column; }
.prob-item {
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 0; border-bottom: 1px solid var(--line);
}
.prob-item:first-child { border-top: 1px solid var(--line); }
.prob-q { font-size: 14.5px; font-weight: 600; }
.prob-time { font-size: 11.5px; color: var(--soft); font-weight: 600; flex: none; margin-left: 16px; }
.prob-card {
  background: var(--accent); border-radius: 20px; padding: 32px 28px; color: #fff;
}
.prob-card .eyebrow { color: rgba(255,255,255,.45); }
.prob-card h3 {
  font-family: var(--font-display);
  font-size: 26px; font-weight: 700; line-height: 1.2;
  letter-spacing: -.01em; margin-bottom: 14px;
}
.prob-card p {
  font-size: 14.5px; color: rgba(255,255,255,.65);
  line-height: 1.65; margin-bottom: 24px;
}
.prob-stat {
  display: flex; gap: 28px;
  padding-top: 20px; border-top: 1px solid rgba(255,255,255,.12);
}
.prob-stat .n { font-size: 30px; font-weight: 800; letter-spacing: -.03em; }
.prob-stat .l { font-size: 12px; color: rgba(255,255,255,.5); font-weight: 600; margin-top: 3px; }

/* ── Steps ──────────────────────────────────────────────── */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.step { display: flex; flex-direction: column; }
.step .num {
  width: 36px; height: 36px; border-radius: 50%;
  background: var(--accent); color: #fff; font-size: 15px; font-weight: 700;
  display: grid; place-items: center; margin-bottom: 14px; flex: none;
}
.step h3 { font-family: var(--font-display); font-size: 17px; font-weight: 700; margin-bottom: 8px; letter-spacing: 0; }
.step > p { font-size: 14px; color: var(--muted); line-height: 1.6; margin-bottom: 16px; }
.step .ill { border-radius: 14px; overflow: hidden; flex: 1; min-height: 130px; }

/* ── Feature bento ──────────────────────────────────────── */
.feat-bento {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.feat {
  background: var(--card); border-radius: 20px;
  overflow: hidden; border: 1px solid var(--line);
  display: flex; flex-direction: column;
}
.feat-wide {
  grid-column: 1 / -1;
  display: grid; grid-template-columns: 1fr 1fr;
}
.feat-wide .img { min-height: 220px; }
.feat-wide .body { padding: 32px 30px; display: flex; flex-direction: column; justify-content: center; }
.feat-sm .img { min-height: 200px; }
.feat-sm .body { padding: 20px 22px; }
.feat .body h3 { font-family: var(--font-display); font-style: italic; font-size: 17px; font-weight: 600; letter-spacing: 0; margin-bottom: 8px; }
.feat .body p { font-size: 13.5px; color: var(--muted); line-height: 1.6; }

/* ── Testimonials ───────────────────────────────────────── */
.tcards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.tcard {
  background: #fff; border-radius: 16px; padding: 24px 22px;
  border: 1px solid var(--line); display: flex; flex-direction: column;
  box-shadow: 0 4px 16px -8px rgba(26,40,32,.1);
}
.tcard .stars { color: #f5a623; font-size: 13px; letter-spacing: 2px; margin-bottom: 14px; }
.tcard blockquote {
  font-size: 14px; line-height: 1.65; color: var(--ink);
  flex: 1; margin: 0 0 18px; font-style: normal;
}
.tcard .who { display: flex; align-items: center; gap: 12px; }
.tcard .av {
  width: 36px; height: 36px; border-radius: 50%;
  background: var(--ink); color: #fff; font-size: 11px; font-weight: 800;
  display: grid; place-items: center; flex: none;
}
.tcard .nm { font-size: 13px; font-weight: 700; }
.tcard .rl { font-size: 11.5px; color: var(--muted); margin-top: 2px; }

/* ── Pricing ────────────────────────────────────────────── */
.price-grid {
  display: grid; grid-template-columns: 1.1fr 0.9fr;
  gap: 28px; max-width: 880px; margin: 0 auto;
}
.pcard {
  background: #fff; border-radius: 20px; padding: 32px 28px;
  border: 1px solid var(--line); display: flex; flex-direction: column;
  gap: 14px; position: relative;
}
.pcard.primary {
  border-color: var(--ink);
  box-shadow: 0 20px 50px -12px rgba(26,40,32,.2);
}
.ptag-pin {
  position: absolute; top: -14px; left: 24px;
  background: var(--ink); color: #fff; font-size: 11px; font-weight: 700;
  padding: 4px 14px; border-radius: 999px; letter-spacing: .03em;
}
.ptitle {
  font-size: 13px; font-weight: 800; text-transform: uppercase;
  letter-spacing: .07em; color: var(--muted); margin-top: 8px;
}
.pcard.primary .ptitle { color: var(--ink); }
.price { font-size: 46px; font-weight: 800; letter-spacing: -.04em; line-height: 1; }
.price small { font-size: 17px; font-weight: 600; opacity: .5; }
.setup { font-size: 13px; color: var(--muted); }
.roi {
  font-size: 13px; font-weight: 700; color: var(--accent);
  padding: 8px 12px; background: var(--accent-soft); border-radius: 8px;
}
.plist { list-style: none; display: flex; flex-direction: column; gap: 9px; flex: 1; }
.plist li { display: flex; align-items: flex-start; gap: 8px; font-size: 13.5px; }
.plist .ck { color: #3a9d6a; font-weight: 700; flex: none; margin-top: 1px; }
.pcard .desc { font-size: 13.5px; color: var(--muted); line-height: 1.65; }
.pnote { text-align: center; font-size: 12.5px; color: var(--muted); margin-top: 20px; }

/* ── Finale CTA ─────────────────────────────────────────── */
.finale {
  background: var(--ink); border-radius: 24px;
  padding: 64px; text-align: center; color: #fff;
}
.finale h2 {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 700; letter-spacing: -.02em; line-height: 1.1; margin-bottom: 14px;
}
.finale h2 em { font-style: italic; color: rgba(255,255,255,.6); }
.finale p {
  font-size: 16px; color: rgba(255,255,255,.6);
  line-height: 1.65; max-width: 460px; margin: 0 auto 32px;
}
.finale-cta { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; }

/* ── Footer ─────────────────────────────────────────────── */
.site-footer { background: var(--ink); color: rgba(255,255,255,.65); padding: 64px 0 32px; }
.foot { display: flex; gap: 60px; margin-bottom: 48px; }
.site-footer .site-logo { color: #fff !important; }

.foot-tagline {
  font-size: 13px; line-height: 1.6; color: rgba(255,255,255,.4);
  max-width: 260px; margin-top: 12px;
}
.foot-cols { display: flex; gap: 40px; margin-left: auto; }
.foot-col { display: flex; flex-direction: column; gap: 10px; min-width: 100px; }
.foot-col h4 {
  font-size: 11px; font-weight: 800; text-transform: uppercase;
  letter-spacing: .1em; color: rgba(255,255,255,.35); margin-bottom: 2px;
}
.foot-col a { font-size: 13.5px; color: rgba(255,255,255,.6); transition: color .15s; }
.foot-col a:hover { color: #fff; }
.foot-bottom {
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 24px; border-top: 1px solid rgba(255,255,255,.1);
  font-size: 12px; color: rgba(255,255,255,.3);
}

/* ── FAQ page ───────────────────────────────────────────── */
.faq-page { padding: 140px 0 80px; max-width: 680px; }
.faq-page h1 {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 46px); font-weight: 700;
  letter-spacing: -.02em; margin-bottom: 12px;
}
.faq-item { padding: 20px 0; border-bottom: 1px solid var(--line); }
.faq-item:first-of-type { border-top: 1px solid var(--line); }
.faq-item h3 { font-size: 16px; font-weight: 700; margin-bottom: 8px; }
.faq-item p { font-size: 14.5px; color: var(--muted); line-height: 1.65; }

/* ── Apply / forms ──────────────────────────────────────── */
.apply-form { max-width: 580px; margin: 0 auto; padding: 140px 0 80px; }
.apply-form h1 {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 46px); font-weight: 700;
  letter-spacing: -.02em; margin-bottom: 10px;
}
.apply-form .sub { font-size: 16px; color: var(--muted); margin-bottom: 36px; }
.form-grid { display: flex; flex-direction: column; gap: 18px; }
.form-section-label {
  font-size: 11px; font-weight: 800; text-transform: uppercase;
  letter-spacing: .1em; color: var(--accent); padding-top: 8px;
}
.field { display: flex; flex-direction: column; gap: 6px; font-size: 13.5px; font-weight: 600; }
.fi {
  padding: 11px 14px; border-radius: 10px;
  border: 1.5px solid var(--line); font-family: inherit; font-size: 14px;
  color: var(--ink); background: #fff; outline: none; transition: border-color .15s;
}
.fi:focus { border-color: var(--ink); }
.fi::placeholder { color: var(--soft); }
select.fi { appearance: none; -webkit-appearance: none; }
textarea.fi { resize: vertical; min-height: 100px; }

/* ── Responsive ─────────────────────────────────────────── */
@media (max-width: 768px) {
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .phone-stage { justify-content: center; }
  .qr-badge, .float-badge { right: 0; }
  .prob-grid { grid-template-columns: 1fr; gap: 32px; }
  .steps { grid-template-columns: 1fr; }
  .feat-bento { grid-template-columns: 1fr; }
  .feat-wide { grid-column: 1; display: flex; flex-direction: column; }
  .feat-wide .img { min-height: 180px; }
  .tcards { grid-template-columns: 1fr; }
  .price-grid { grid-template-columns: 1fr; }
  .foot { flex-direction: column; gap: 32px; }
  .foot-cols { flex-wrap: wrap; gap: 28px; margin-left: 0; }
}

@media (max-width: 640px) {
  .site-nav-links { display: none; }
  .nav-inner { padding: 14px 20px; }
  .hero { padding: 80px 0 48px; }
  .sec { padding: 56px 0; }
  .finale { padding: 40px 24px; border-radius: 18px; }
  .faq-page { padding: 100px 0 56px; }
  .apply-form { padding: 100px 0 56px; }
  .platform-page-hero { padding: 100px 0 36px; }
  .prob-stat { flex-direction: column; gap: 16px; }
  .trustbar-inner { flex-direction: column; align-items: flex-start; gap: 12px; }
}

.ck-tax { color: var(--muted) !important; font-weight: 700; }
/* == Terms & Conditions page ======================================= */
.terms-hero { padding: 96px 0 40px; background: var(--bg); border-bottom: 1px solid #e0d8cf; }
.terms-hero h1 { font-family: var(--font-display); font-size: clamp(2rem,4vw,2.75rem); color: var(--ink); margin: 8px 0 12px; }
.terms-meta { font-size: 0.875rem; color: #6b6560; margin: 0; }
.terms-meta a { color: var(--accent); text-decoration: none; }
.terms-body { padding: 56px 0 80px; }
.terms-wrap { display: grid; grid-template-columns: 220px 1fr; gap: 48px; align-items: start; }
@media (max-width: 768px) { .terms-wrap { grid-template-columns: 1fr; } }
.terms-toc { position: sticky; top: 88px; background: #fff; border-radius: 12px; padding: 24px; border: 1px solid #e0d8cf; }
.terms-toc h4 { font-size: 0.75rem; text-transform: uppercase; letter-spacing: .1em; color: #6b6560; margin: 0 0 12px; }
.terms-toc a { display: block; font-size: 0.875rem; color: var(--ink); text-decoration: none; padding: 5px 0; border-bottom: 1px solid #f0ebe3; line-height: 1.4; }
.terms-toc a:last-child { border-bottom: none; }
.terms-toc a:hover { color: var(--accent); }
.terms-content h2 { font-family: var(--font-display); font-size: 1.35rem; color: var(--ink); margin: 48px 0 12px; padding-top: 8px; border-top: 2px solid var(--accent); display: inline-block; }
.terms-content h2:first-child { margin-top: 0; }
.terms-content h2[id] { scroll-margin-top: 88px; }
.terms-content h3 { font-size: 1rem; font-weight: 600; color: var(--ink); margin: 24px 0 8px; }
.terms-content p { font-size: 0.9375rem; color: #3a3530; line-height: 1.75; margin: 0 0 16px; }
.terms-content ul { margin: 0 0 16px 0; padding-left: 1.4em; }
.terms-content ul li { font-size: 0.9375rem; color: #3a3530; line-height: 1.7; margin-bottom: 6px; }
.terms-content a { color: var(--accent); text-decoration: none; }
.terms-content a:hover { text-decoration: underline; }
.terms-table { width: 100%; border-collapse: collapse; margin: 16px 0 24px; font-size: 0.875rem; overflow-x: auto; display: block; }
.terms-table th { background: var(--ink); color: #fff; padding: 10px 14px; text-align: left; font-weight: 600; }
.terms-table td { padding: 10px 14px; border-bottom: 1px solid #e0d8cf; color: #3a3530; vertical-align: top; }
.terms-table tr:last-child td { border-bottom: none; }
.terms-table tr:nth-child(even) td { background: #faf8f5; }
.foot-bottom a { color: inherit; text-decoration: none; }
.foot-bottom a:hover { color: var(--accent); }
