/* ====== TOKENS (admin "Dimensional Layering" design language) ====== */
:root {
  --accent: #C85A3C;        /* terracotta */
  --accent-2: #E0714D;
  --accent-soft: rgba(200, 90, 60, 0.10);
  --wa-green: #25D366;
  --wa-green-dk: #128C7E;
  --wa-green-darker: #075E54;
  --amber: #E8A23D;

  --bg: #F6F2EB;
  --bg-grad: radial-gradient(1100px 560px at 80% -12%, rgba(200,90,60,0.10), transparent 62%),
             radial-gradient(760px 420px at 12% 4%, rgba(245,180,90,0.10), transparent 70%), #F6F2EB;
  --bg-2: #FAF6EF;
  --surface: #FFFFFF;
  --surface-2: #FAF6EF;
  --surface-3: #F3ECE1;
  --ink: #221C16;
  --ink-2: #6B635A;
  --ink-3: #9C948A;
  --line: rgba(34, 28, 22, 0.08);
  --card: #FFFFFF;

  /* dark surface (footer + dark moments) */
  --dk-bg: #131110;

  --r-sm: 12px;
  --r-md: 16px;
  --r-lg: 24px;
  --r-xl: 30px;

  /* elevation over borders */
  --shadow-sm: 0 1px 2px rgba(34,24,16,0.05), 0 2px 10px rgba(34,24,16,0.06);
  --shadow-md: 0 2px 4px rgba(34,24,16,0.05), 0 12px 32px rgba(34,24,16,0.10);
  --shadow-lg: 0 30px 70px rgba(34,24,16,0.16);

  --font-display: "Bricolage Grotesque", "Inter", system-ui, sans-serif;
  --font-body: "Inter", system-ui, sans-serif;
  --font-mono: "JetBrains Mono", ui-monospace, monospace;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  font-family: var(--font-body);
  background: var(--bg-grad);
  background-attachment: fixed;
  color: var(--ink);
  -webkit-font-smoothing: antialiased;
  font-feature-settings: "ss01", "cv11";
  line-height: 1.6;
}
a { color: inherit; text-decoration: none; }
button, input { font-family: inherit; }
img, svg { max-width: 100%; display: block; }
em { font-style: normal; color: var(--accent); }

/* ====== HEADER ====== */
.hdr {
  position: sticky; top: 0; z-index: 50;
  background: color-mix(in srgb, var(--bg) 88%, transparent);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}
.hdr-inner {
  max-width: 1180px; margin: 0 auto;
  padding: 14px 28px;
  display: flex; align-items: center; gap: 18px;
}
.logo { display: flex; align-items: center; gap: 11px; }
.logo-mark {
  width: 34px; height: 34px; border-radius: 10px; flex-shrink: 0;
  display: grid; place-items: center;
  background: linear-gradient(135deg, #E0714D, #B5651D);
  box-shadow: var(--shadow-sm);
}
.logo-mark-sm { width: 24px; height: 24px; border-radius: 7px; background: linear-gradient(135deg, #E0714D, #B5651D); }
.logo-word { font-family: var(--font-display); font-weight: 700; font-size: 17px; letter-spacing: -0.01em; }
.hdr-nav { display: flex; gap: 8px; margin-left: auto; align-items: center; }
.hdr-nav .lnk { padding: 9px 14px; border-radius: 999px; font-size: 14px; font-weight: 500; color: var(--ink-2); transition: background-color .18s, color .18s; }
.hdr-nav .lnk:hover { background: var(--surface-2); color: var(--ink); }

/* ── Mobile burger menu (static pages: about/privacy/terms/paia) ── */
.nav-toggle { position: absolute; width: 1px; height: 1px; margin: -1px; padding: 0; border: 0; overflow: hidden; clip: rect(0 0 0 0); }
.nav-burger { display: none; }
.mobile-menu { display: none; }
@media (max-width: 860px) {
  .nav-burger {
    display: flex; flex-direction: column; gap: 5px;
    width: 42px; height: 42px; margin-left: auto;
    align-items: center; justify-content: center;
    border: 1px solid var(--line); border-radius: 11px;
    background: var(--surface); cursor: pointer; -webkit-tap-highlight-color: transparent;
  }
  .nav-burger span { width: 20px; height: 2px; background: var(--ink); border-radius: 2px; transition: transform 0.2s, opacity 0.2s; }
  .nav-toggle:focus-visible ~ .nav-burger { outline: 2px solid var(--accent); outline-offset: 2px; }
  .nav-toggle:checked ~ .nav-burger span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .nav-toggle:checked ~ .nav-burger span:nth-child(2) { opacity: 0; }
  .nav-toggle:checked ~ .nav-burger span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
  .nav-toggle:checked ~ .mobile-menu { display: flex; }
  .mobile-menu {
    position: absolute; top: 100%; right: 14px; margin-top: 8px;
    flex-direction: column; gap: 2px; min-width: 190px; z-index: 60;
    background: var(--surface); border: 1px solid var(--line);
    border-radius: 14px; padding: 8px; box-shadow: var(--shadow-md);
  }
  .mobile-menu a { padding: 12px 14px; border-radius: 9px; font-size: 15px; font-weight: 500; color: var(--ink); }
  .mobile-menu a:hover { background: var(--surface-2); }
  .mobile-menu .mobile-cta { background: var(--wa-green); color: #fff; text-align: center; margin-top: 4px; }
  .mobile-menu .mobile-cta:hover { background: var(--wa-green); filter: brightness(0.97); }
}

/* ── Language switcher (home: JS dropdown; about: CSS-only <details>) ── */
.lang-switcher { position: relative; margin-left: auto; }
.lang, .lang-switcher .lang { position: relative; }
.lang-btn, .lang > summary {
  display: inline-flex; align-items: center; gap: 7px;
  background: var(--surface); border: none;
  padding: 9px 14px; border-radius: 999px;
  font-size: 14px; font-weight: 500; color: var(--ink-2);
  cursor: pointer; box-shadow: var(--shadow-sm);
  transition: background-color .18s, color .18s;
}
.lang > summary { list-style: none; }
.lang > summary::-webkit-details-marker { display: none; }
.lang-btn:hover, .lang > summary:hover { background: var(--surface-2); color: var(--ink); }
.lang-caret, .lang .caret { font-size: 10px; color: var(--ink-3); transition: transform .18s; }
.lang[open] .caret { transform: rotate(180deg); }
.lang-menu {
  position: absolute; top: calc(100% + 8px); right: 0;
  background: var(--surface); border-radius: var(--r-md);
  padding: 7px; min-width: 184px;
  box-shadow: var(--shadow-md);
  z-index: 60;
  display: flex; flex-direction: column; gap: 1px;
  max-height: 70vh; overflow-y: auto;
}
.lang-item {
  text-align: left; background: transparent; border: 0;
  padding: 10px 12px; border-radius: 9px;
  font-size: 14px; cursor: pointer; color: var(--ink); white-space: nowrap;
}
.lang-item:hover { background: var(--surface-2); }
.lang-item.active { background: var(--accent-soft); color: var(--accent); font-weight: 600; }

/* ====== BUTTONS ====== */
.btn {
  display: inline-flex; align-items: center; gap: 9px;
  font-weight: 600; border-radius: 999px;
  border: 1px solid transparent;
  cursor: pointer; transition: transform .15s ease, box-shadow .18s ease, background .18s ease, filter .18s ease;
  white-space: nowrap; font-family: inherit;
}
.btn-sm { padding: 9px 16px; font-size: 13.5px; }
.btn-lg { padding: 14px 24px; font-size: 15.5px; }
.btn-xl { padding: 16px 30px; font-size: 17px; }
.btn-primary {
  background: var(--wa-green); color: #fff;
  box-shadow: 0 8px 20px rgba(37, 211, 102, 0.30);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 12px 26px rgba(37, 211, 102, 0.40); filter: brightness(1.03); }
.btn-ghost { background: var(--surface); color: var(--ink); box-shadow: var(--shadow-sm); }
.btn-ghost:hover { background: var(--surface-2); box-shadow: var(--shadow-md); }
.btn-white {
  background: #fff; color: var(--accent);
  box-shadow: 0 14px 34px rgba(0,0,0,0.16);
}
.btn-white:hover { transform: translateY(-2px); box-shadow: 0 18px 42px rgba(0,0,0,0.22); }

/* ====== HERO ====== */
.hero { position: relative; overflow: hidden; padding: clamp(40px,6vw,80px) 28px clamp(48px,7vw,84px); }
.hero-glow {
  position: absolute; inset: -80px -10% auto -10%;
  height: 460px; pointer-events: none; z-index: 0;
  background: radial-gradient(56% 80% at 72% 26%, rgba(200,90,60,0.10), transparent 70%);
  filter: blur(18px);
}
.hero-inner {
  position: relative; z-index: 1;
  max-width: 1180px; margin: 0 auto;
  display: grid; gap: clamp(36px,5vw,72px);
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
}
.kicker {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 7px 15px; border-radius: 999px;
  background: var(--accent-soft); color: var(--accent);
  font-size: 12.5px; font-weight: 600; letter-spacing: 0.04em; text-transform: uppercase;
}
.kicker-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--accent); }
.h1 {
  font-family: var(--font-display); font-weight: 700;
  font-size: clamp(38px, 5.6vw, 64px); line-height: 1.02;
  letter-spacing: -0.025em; margin: 22px 0; color: var(--ink); text-wrap: balance;
}
.lede { font-size: clamp(17px,1.7vw,20px); line-height: 1.65; color: var(--ink-2); max-width: 32ch; text-wrap: pretty; }
.hero-ctas { display: flex; gap: 12px; margin-top: 32px; flex-wrap: wrap; align-items: center; }
.hero-foot { display: flex; align-items: center; gap: 18px; margin-top: 26px; font-size: 13.5px; color: var(--ink-2); flex-wrap: wrap; }
.hero-chip { display: inline-flex; align-items: center; gap: 7px; }
.hero-chip svg { color: var(--wa-green-dk); }
.hero-visual { position: relative; display: grid; place-items: center; }

/* hero WhatsApp chat phone (namespaced .hp-* so it never collides with .cm-*) */
.hero-phone {
  width: 300px; height: 600px;
  background: #1d1d1f; border-radius: 38px; padding: 7px;
  box-shadow: var(--shadow-lg); position: relative;
}
.hero-phone::before {
  content: ""; position: absolute; top: 16px; left: 50%; transform: translateX(-50%);
  width: 12px; height: 12px; border-radius: 50%; background: #000; z-index: 5;
}
.hp-screen { width: 100%; height: 100%; border-radius: 31px; overflow: hidden; display: flex; flex-direction: column; background: #E5DDD4; }
.hp-status { background: var(--wa-green-dk); color: rgba(255,255,255,0.9); height: 30px; display: flex; align-items: center; justify-content: space-between; padding: 0 18px; font-size: 11px; font-weight: 600; }
.hp-sig { display: inline-flex; align-items: center; gap: 5px; }
.hp-top { background: var(--wa-green-dk); color: #fff; padding: 6px 14px 11px; display: flex; align-items: center; gap: 11px; }
.hp-av { width: 36px; height: 36px; border-radius: 50%; background: rgba(255,255,255,0.2); display: grid; place-items: center; flex-shrink: 0; }
.hp-top b { font-size: 14.5px; font-weight: 600; display: block; line-height: 1.2; }
.hp-top span { font-size: 11.5px; color: rgba(255,255,255,0.8); }
.hp-thread { flex: 1; padding: 14px 11px; display: flex; flex-direction: column; gap: 9px; overflow: hidden;
  background-image: radial-gradient(circle at 20% 25%, rgba(0,0,0,0.022) 1px, transparent 1px), radial-gradient(circle at 75% 70%, rgba(0,0,0,0.022) 1px, transparent 1px);
  background-size: 24px 24px; }
.hp-bub { max-width: 82%; padding: 8px 11px 6px; border-radius: 11px; font-size: 12.5px; line-height: 1.4; box-shadow: 0 1px 1px rgba(0,0,0,0.08); position: relative; color: #111; }
.hp-bub.in { background: #fff; align-self: flex-start; border-top-left-radius: 3px; }
.hp-bub.out { background: #DCF8C6; align-self: flex-end; border-top-right-radius: 3px; }
.hp-bub.doc { align-self: flex-end; background: #DCF8C6; padding: 9px; }
.hp-time { font-size: 9.5px; color: #8a8d91; float: right; margin: 4px 0 -2px 8px; }
.hp-doc { display: flex; align-items: center; gap: 9px; background: rgba(255,255,255,0.6); border-radius: 8px; padding: 9px 10px; }
.hp-doc-ic { width: 30px; height: 30px; border-radius: 7px; background: var(--accent-soft); color: var(--accent); display: grid; place-items: center; flex-shrink: 0; }
.hp-doc b { font-size: 11.5px; font-weight: 600; display: block; }
.hp-doc > span > span { font-size: 10px; color: #6a6a6a; }

/* ====== CV PREVIEW (sample CV doc — kept verbatim from the prior design) ====== */
.cv-doc {
  width: 392px; aspect-ratio: 1 / 1.414;
  background: white; border-radius: 4px;
  padding: 18px 22px 14px; font-size: 8px; color: #2A2521;
  box-shadow: var(--shadow-lg); border: 1px solid var(--line);
  display: flex; flex-direction: column; overflow: hidden; font-feature-settings: "ss01";
}
.cv-head { padding-bottom: 8px; border-bottom: 1px solid #E8E0D4; }
.cv-name { font-family: var(--font-display); font-size: 16px; margin: 0; letter-spacing: 0.06em; font-weight: 700; color: #1F1B17; }
.cv-role { font-size: 8px; text-transform: uppercase; letter-spacing: 0.22em; font-weight: 600; margin-top: 2px; color: var(--accent); }
.cv-contact { font-size: 7.5px; color: #4A4541; margin-top: 6px; }
.cv-dot { margin: 0 4px; color: #8A847E; }
.cv-meta-row { display: grid; grid-template-columns: 1fr 1fr; gap: 3px 12px; margin-top: 6px; font-size: 7px; color: #4A4541; }
.cv-meta-row strong { color: #2A2521; font-weight: 600; }
.cv-section { padding: 7px 0 6px; border-bottom: 1px solid #F0EBE2; }
.cv-section:last-of-type { border-bottom: none; }
.cv-h { font-family: var(--font-display); font-size: 9px; font-weight: 700; letter-spacing: 0.22em; margin-bottom: 5px; }
.cv-p { margin: 0; line-height: 1.45; font-size: 7.5px; color: #2A2521; }
.cv-job { display: grid; grid-template-columns: 78px 1fr; gap: 10px; margin-bottom: 6px; }
.cv-job-meta { font-size: 7px; color: #4A4541; line-height: 1.4; }
.cv-current { display: inline-block; color: white; font-size: 6.5px; font-weight: 700; padding: 2px 6px; border-radius: 3px; letter-spacing: 0.1em; margin-bottom: 2px; background: var(--accent); }
.cv-loc { color: #8A847E; }
.cv-job-title { font-size: 8.5px; font-weight: 700; color: #1F1B17; }
.cv-job-co { font-size: 7.5px; color: #4A4541; margin-bottom: 3px; }
.cv-bullets { list-style: none; margin: 0; padding: 0; }
.cv-bullets li { font-size: 7px; line-height: 1.45; color: #2A2521; padding-left: 8px; position: relative; margin-bottom: 1px; }
.cv-bullets li::before { content: "–"; position: absolute; left: 0; color: #8A847E; }
.cv-edu { display: grid; grid-template-columns: 60px 1fr; gap: 10px; margin-bottom: 4px; font-size: 7px; }
.cv-edu-label { color: #8A847E; font-style: italic; }
.cv-edu-title { font-weight: 700; color: #1F1B17; font-size: 7.5px; }
.cv-edu-sub { color: #4A4541; font-size: 7px; }
.cv-check { color: #3DBE66; font-weight: 600; font-size: 7px; margin-left: 4px; }
.cv-skills { display: flex; flex-wrap: wrap; gap: 0; font-size: 7px; color: #2A2521; }
.cv-skills span { padding: 1px 8px; border-right: 1px solid #E8E0D4; }
.cv-skills span:last-child { border-right: none; }
.cv-skills span:first-child { padding-left: 0; }
.cv-langs { display: flex; gap: 14px; flex-wrap: wrap; font-size: 7.5px; }
.cv-langs strong { color: #1F1B17; }
.cv-lang-level { color: #4A4541; margin-left: 4px; }
.cv-foot { margin-top: auto; padding-top: 6px; border-top: 1px solid #F0EBE2; font-size: 6.5px; color: #8A847E; display: flex; justify-content: space-between; font-family: var(--font-mono); }

/* ====== SECTIONS ====== */
.section { padding: clamp(56px,8vw,96px) 28px; }
.section-inner { max-width: 1180px; margin: 0 auto; }
.section-head { text-align: center; margin-bottom: 48px; }
.eyebrow { display: inline-block; font-size: 12px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.12em; color: var(--accent); margin-bottom: 14px; }
.h2 { font-family: var(--font-display); font-size: clamp(28px, 4vw, 46px); font-weight: 700; letter-spacing: -0.02em; line-height: 1.12; margin: 0; text-wrap: balance; }
.lede2 { font-size: 17px; color: var(--ink-2); line-height: 1.75; max-width: 42ch; margin-top: 18px; }

/* HOW — steps */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.step {
  background: var(--surface); border-radius: var(--r-lg);
  padding: 28px 26px; box-shadow: var(--shadow-sm);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.step:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.step-top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 16px; }
.step-ic { width: 52px; height: 52px; border-radius: 15px; background: var(--accent-soft); color: var(--accent); display: grid; place-items: center; }
.step-ic svg { width: 24px; height: 24px; }
.step-num { font-family: var(--font-display); font-size: 30px; font-weight: 700; color: var(--surface-3); line-height: 1; }
.step-t { font-family: var(--font-display); font-size: 20px; margin: 0 0 8px; font-weight: 700; letter-spacing: -0.01em; }
.step-d { color: var(--ink-2); margin: 0; line-height: 1.6; font-size: 14.5px; }

/* HOW TO SEND — reuses .steps/.step; tinted band to separate from neighbours */
.send-guide { background: var(--surface-2); }
.send-lede { font-size: 17px; color: var(--ink-2); line-height: 1.7; max-width: 54ch; margin: 16px auto 0; }

/* SAMPLE */
.sample-grid { display: grid; grid-template-columns: 0.92fr 1.08fr; gap: clamp(32px,5vw,64px); align-items: center; }
.ticks { list-style: none; padding: 0; margin: 24px 0 0; display: grid; gap: 12px; }
.ticks li { display: flex; align-items: center; gap: 12px; font-size: 15px; font-weight: 500; color: var(--ink); }
.tick { width: 26px; height: 26px; border-radius: 8px; background: rgba(37,211,102,0.12); color: var(--wa-green-dk); display: grid; place-items: center; font-size: 13px; font-weight: 700; flex-shrink: 0; }
.sample-card { background: var(--surface); border-radius: var(--r-xl); padding: 14px; box-shadow: var(--shadow-md); }
.sample-tab { display: inline-flex; align-items: center; gap: 8px; background: var(--surface-2); padding: 8px 14px; border-radius: 10px 10px 0 0; font-family: var(--font-mono); font-size: 12px; color: var(--ink-2); margin: 2px 0 0 6px; }
.sample-frame { background: var(--surface-3); border-radius: var(--r-md); padding: 26px; display: grid; place-items: center; }
.sample-frame .cv-doc { width: 100%; max-width: 460px; padding: 26px 30px 20px; font-size: 10.5px; }
.sample-frame .cv-name { font-size: 21px; }
.sample-frame .cv-role { font-size: 9.5px; }
.sample-frame .cv-contact { font-size: 9.5px; }
.sample-frame .cv-meta-row { font-size: 8.5px; }
.sample-frame .cv-h { font-size: 11.5px; }
.sample-frame .cv-p { font-size: 9.5px; }
.sample-frame .cv-job { grid-template-columns: 100px 1fr; }
.sample-frame .cv-job-meta { font-size: 8.5px; }
.sample-frame .cv-current { font-size: 8px; }
.sample-frame .cv-job-title { font-size: 10.5px; }
.sample-frame .cv-job-co { font-size: 9.5px; }
.sample-frame .cv-bullets li { font-size: 9px; }
.sample-frame .cv-edu { grid-template-columns: 74px 1fr; font-size: 9px; }
.sample-frame .cv-edu-title { font-size: 9.5px; }
.sample-frame .cv-skills { font-size: 9px; }
.sample-frame .cv-langs { font-size: 9.5px; }
.sample-frame .cv-foot { font-size: 8.5px; }

/* TESTIMONIALS — static grid */
.testimonials { background: var(--accent-soft); }
.rating-badge { display: inline-flex; align-items: center; gap: 12px; margin-top: 16px; }
.rating-badge-text { font-size: 15px; color: var(--ink-2); }
.rating-badge-text strong { color: var(--ink); font-weight: 600; }
.rating-stars { position: relative; display: inline-block; line-height: 0; }
.rating-stars-bg, .rating-stars-fg { display: inline-flex; gap: 3px; }
.rating-stars-bg { color: #E5D8CC; }
.rating-stars-fg { position: absolute; inset: 0; color: var(--amber); overflow: hidden; white-space: nowrap; }
.tgrid { display: grid; grid-template-columns: repeat(auto-fit, minmax(290px, 1fr)); gap: 18px; }
.tcard {
  background: var(--surface); border-radius: var(--r-lg);
  padding: 26px; box-shadow: var(--shadow-sm);
  display: flex; flex-direction: column; gap: 14px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.tcard:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.tcard-stars { display: flex; gap: 3px; color: var(--amber); }
.tcard-quote { font-family: var(--font-body); font-size: 17px; font-weight: 500; line-height: 1.55; color: var(--ink); margin: 0; flex: 1; }
.tcard-attr { display: flex; align-items: center; gap: 11px; padding-top: 15px; border-top: 1px solid var(--line); font-size: 13.5px; color: var(--ink-2); }
.tcard-av { width: 34px; height: 34px; border-radius: 50%; display: grid; place-items: center; font-weight: 700; font-size: 13.5px; color: #fff; flex-shrink: 0; }
.tcard-name { font-weight: 600; color: var(--ink); }

/* PURPOSE — light, centered */
.purpose .section-inner { max-width: 720px; text-align: center; }
.purpose .h2 { margin-bottom: 22px; }
.purpose-p { font-size: 18px; line-height: 1.8; color: var(--ink-2); margin: 0 auto; max-width: 600px; }
.purpose-link {
  display: inline-flex; align-items: center; gap: 8px; margin-top: 28px;
  color: var(--accent); font-size: 15.5px; font-weight: 600;
}
.purpose-link span { transition: transform 0.2s; }
.purpose-link:hover span { transform: translateX(4px); }

/* CTA BLOCK */
.cta-block { padding: clamp(56px,8vw,96px) 28px; }
.cta-card {
  position: relative; overflow: hidden;
  border-radius: var(--r-xl);
  max-width: 1180px; margin: 0 auto;
  padding: clamp(56px,8vw,92px) 28px;
  text-align: center; color: #fff;
  background: linear-gradient(140deg, #C85A3C 0%, #A8472E 92%);
  box-shadow: 0 30px 70px rgba(168,71,46,0.28);
}
.cta-bg { position: absolute; inset: 0; opacity: 0.6; }
.cta-inner { position: relative; max-width: 620px; margin: 0 auto; }
.cta-h { font-family: var(--font-display); font-size: clamp(30px, 4.6vw, 50px); font-weight: 700; letter-spacing: -0.02em; line-height: 1.12; margin: 0 0 16px; text-wrap: balance; }
.cta-p { font-size: 18px; opacity: 0.9; margin: 0 0 32px; line-height: 1.6; }
.cta-foot { margin-top: 22px; font-size: 13.5px; opacity: 0.78; }

/* FOOTER */
.ftr { background: var(--dk-bg); color: #C9C2BB; padding: 48px 28px; }
.ftr-inner { max-width: 1180px; margin: 0 auto; display: grid; gap: 22px; grid-template-columns: 1fr 2fr 1fr; align-items: center; }
.ftr-brand { display: flex; align-items: center; gap: 10px; color: #F0EAE3; font-weight: 500; font-size: 14px; }
.ftr-links { display: flex; gap: 22px; justify-content: center; flex-wrap: wrap; font-size: 14px; }
.ftr-links a { color: #C9C2BB; transition: color .15s; }
.ftr-links a:hover { color: #fff; }
.ftr-meta { font-size: 12.5px; color: #8A8480; text-align: right; }

/* ====== RESPONSIVE ====== */
@media (max-width: 980px) {
  .hero-inner { grid-template-columns: 1fr; text-align: center; }
  .lede { max-width: 56ch; margin-left: auto; margin-right: auto; }
  .hero-ctas, .hero-foot { justify-content: center; }
  .kicker { margin-left: auto; margin-right: auto; }
  .hero-visual { margin-top: 8px; }
  .sample-grid { grid-template-columns: 1fr; gap: 36px; }
  .sample-card { max-width: 520px; margin: 0 auto; width: 100%; }
  .ftr-inner { grid-template-columns: 1fr; text-align: center; }
  .ftr-links { justify-content: center; }
  .ftr-meta { text-align: center; }
}
@media (max-width: 860px) {
  .hdr-inner { padding: 12px 16px; gap: 10px; }
  .lang-btn, .lang > summary { padding: 8px 12px; font-size: 13px; }
  .lang-btn span:not(.lang-caret), .lang > summary > span:not(.caret) { max-width: 84px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
  .btn-sm { padding: 9px 15px; }
  .section { padding: 56px 18px; }
  .h1 { font-size: clamp(32px,8vw,42px); }
  .steps { grid-template-columns: 1fr; }
  .hero-ctas { width: 100%; }
  .hero-ctas .btn { flex: 1; justify-content: center; }
}
@media (max-width: 560px) {
  .hdr-inner { padding: 12px 14px; }
  .hero { padding: 28px 16px 44px; }
  .lang-btn span:not(.lang-caret), .lang > summary > span:not(.caret) { display: none; }
  .lang-btn, .lang > summary { padding: 9px 11px; }
  .hero-phone { width: 270px; height: 540px; }
  .cta-card { padding: 48px 20px; }
}
/* ── Landing header on mobile ──
   The home keeps a language switcher + WhatsApp CTA in the header. Below 860px
   the inline CTA moves into the burger menu so the bar isn't crowded; the
   lang-switcher carries the right-alignment and the burger sits beside it. */
@media (max-width: 860px) {
  .hdr .lang-switcher { margin-left: auto; }
  .hdr-burger { margin-left: 8px; }
  .hdr-cta { display: none; }
}

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