/* ============================================
   PUSAT TECHVENTURE — Redesign Stylesheet
   A modern, accessible, responsive design system
   ============================================ */

/* ---------- 1. Design Tokens ---------- */
:root {
  /* Colors */
  --c-bg:        #F5F2EB;
  --c-bg-alt:    #EDEAE0;
  --c-surface:   #FFFFFF;
  --c-ink:       #0A0A0A;
  --c-ink-soft:  #2A2A2A;
  --c-muted:     #6B6B66;
  --c-line:      #E2DDD0;
  --c-line-soft: #EBE7DC;

  --c-coral:     #FF4D2E;
  --c-coral-d:   #E53D1F;
  --c-sage:      #1F4D3E;
  --c-sage-d:    #163A2E;
  --c-amber:     #C7A24A;
  --c-cream:     #F1ECDE;

  /* Type */
  --ff-display: "Bricolage Grotesque", ui-serif, Georgia, serif;
  --ff-body:    "Plus Jakarta Sans", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  --ff-mono:    "JetBrains Mono", ui-monospace, "SF Mono", Menlo, monospace;

  /* Spacing scale (4/8pt) */
  --s-1: 4px;  --s-2: 8px;  --s-3: 12px; --s-4: 16px;
  --s-5: 20px; --s-6: 24px; --s-7: 32px; --s-8: 40px;
  --s-9: 56px; --s-10: 72px; --s-11: 96px; --s-12: 128px;

  /* Radius */
  --r-1: 6px;  --r-2: 10px; --r-3: 14px; --r-4: 20px;
  --r-5: 28px; --r-pill: 999px;

  /* Shadows */
  --sh-1: 0 1px 2px rgba(10,10,10,.04), 0 1px 3px rgba(10,10,10,.05);
  --sh-2: 0 4px 12px rgba(10,10,10,.06), 0 2px 4px rgba(10,10,10,.04);
  --sh-3: 0 10px 30px rgba(10,10,10,.08), 0 4px 10px rgba(10,10,10,.04);
  --sh-4: 0 24px 60px rgba(10,10,10,.12), 0 8px 20px rgba(10,10,10,.06);
  --sh-coral: 0 10px 30px rgba(255,77,46,.25);

  /* Layout */
  --container: 1280px;
  --gutter: clamp(20px, 4vw, 40px);

  /* Motion */
  --ease-out: cubic-bezier(.2,.7,.2,1);
  --ease-in-out: cubic-bezier(.7,0,.3,1);
  --t-fast: 150ms;
  --t-med:  240ms;
  --t-slow: 400ms;
}

/* ---------- 2. Reset & base ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: 88px;
  background: var(--c-bg);
}
body {
  font-family: var(--ff-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--c-ink);
  background: var(--c-bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
  min-height: 100dvh;
}
img, svg, video { display: block; max-width: 100%; }
input, button, textarea, select { font: inherit; color: inherit; }
button { background: none; border: 0; padding: 0; cursor: pointer; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; padding: 0; }
:focus-visible {
  outline: 2px solid var(--c-coral);
  outline-offset: 3px;
  border-radius: 4px;
}
::selection { background: var(--c-coral); color: #fff; }

/* Body scroll lock when mobile nav drawer is open */
body.nav-open { overflow: hidden; }

/* Utilities */
.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: var(--gutter); }
.visually-hidden {
  position: absolute !important; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0);
  white-space: nowrap; border: 0;
}
.skip-link {
  position: fixed; top: -100px; left: 0; padding: 12px 18px;
  background: var(--c-ink); color: #fff; z-index: 9999;
  border-radius: 0 0 8px 0;
  opacity: 0; pointer-events: none;
  transition: top 180ms var(--ease-out), opacity 180ms var(--ease-out);
}
.skip-link:focus {
  top: 0; opacity: 1; pointer-events: auto;
}

/* ---------- 3. Typography ---------- */
h1, h2, h3, h4 { font-family: var(--ff-display); font-weight: 700; line-height: 1.1; letter-spacing: -0.02em; }
em { font-style: italic; color: var(--c-coral); font-weight: 500; }
p { color: var(--c-ink-soft); }

/* ---------- 4. Buttons ---------- */
.btn {
  --bh: 48px;
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  height: var(--bh);
  padding-inline: 22px;
  font-family: var(--ff-body);
  font-weight: 600;
  font-size: 15px;
  letter-spacing: -0.005em;
  border-radius: var(--r-pill);
  cursor: pointer;
  white-space: nowrap;
  transition: transform var(--t-fast) var(--ease-out),
              background-color var(--t-fast) var(--ease-out),
              box-shadow var(--t-fast) var(--ease-out),
              color var(--t-fast) var(--ease-out);
  user-select: none;
  border: 1.5px solid transparent;
}
.btn:active { transform: scale(0.97); }
.btn--primary {
  background: var(--c-ink); color: var(--c-bg);
  box-shadow: var(--sh-2);
}
.btn--primary:hover { background: #1F1F1F; box-shadow: var(--sh-3); transform: translateY(-1px); }
.btn--primary:active { transform: translateY(0) scale(0.97); }

.btn--ghost {
  background: transparent; color: var(--c-ink);
  border-color: var(--c-line);
}
.btn--ghost:hover { background: var(--c-bg-alt); border-color: var(--c-ink); }

.btn--sm { --bh: 38px; padding-inline: 16px; font-size: 14px; }
.btn--lg { --bh: 56px; padding-inline: 30px; font-size: 16px; }

/* ---------- 5. Top bar ---------- */
.topbar {
  background: var(--c-ink);
  color: var(--c-bg);
  font-size: 13px;
}
.topbar__inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 38px; gap: 16px;
}
.topbar__msg {
  display: flex; align-items: center; gap: 8px;
  color: var(--c-bg); font-weight: 500;
  letter-spacing: 0.01em;
}
.topbar__msg .dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--c-coral);
  box-shadow: 0 0 0 0 rgba(255,77,46,.6);
  animation: pulse 2s infinite;
}
.topbar__actions { display: flex; align-items: center; gap: 10px; }
.topbar__link {
  display: inline-flex; align-items: center; gap: 6px;
  color: var(--c-bg); opacity: 0.85; transition: opacity var(--t-fast);
}
.topbar__link:hover { opacity: 1; }
.topbar__sep { opacity: 0.4; }

@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(255,77,46,.6); }
  50% { box-shadow: 0 0 0 6px rgba(255,77,46,0); }
}

/* Hide topbar at all mobile/tablet sizes — defensive, ensures no leak at any breakpoint */
@media (max-width: 1024px) {
  .topbar { display: none !important; }
}

/* ---------- 6. Header ---------- */
.header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(245,242,235,0.78);
  backdrop-filter: saturate(150%) blur(14px);
  -webkit-backdrop-filter: saturate(150%) blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color var(--t-med), background var(--t-med);
  margin-top: 0;
}
.header.is-scrolled {
  background: rgba(245,242,235,0.92);
  border-bottom-color: var(--c-line);
}
.header__inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 72px; gap: 24px;
}

/* Brand */
.brand {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--ff-display);
  font-weight: 700;
  font-size: 19px;
  letter-spacing: -0.02em;
  color: var(--c-ink);
}
.brand__mark {
  color: var(--c-ink);
  display: inline-flex;
  transition: transform var(--t-med) var(--ease-out);
}
.brand:hover .brand__mark { transform: rotate(-8deg); }
.brand__accent { color: var(--c-coral); }
.brand--light { color: var(--c-bg); }
.brand--light .brand__mark { color: var(--c-coral); }

/* Nav */
.nav { flex: 1; }
.nav__list {
  display: flex; align-items: center; justify-content: center;
  gap: 4px;
}
/* Mobile drawer is hidden on desktop only (wrapped in min-width so it does
   not conflict with the .nav.nav--drawer rule inside the mobile media query) */
@media (min-width: 961px) {
  .nav--drawer { display: none; }
}
/* Mobile-drawer footer (Daftar Gratis + Masuk) — hidden on desktop, shown only inside the mobile drawer */
.nav__footer { display: none; }
.nav__link {
  position: relative;
  display: inline-flex; align-items: center;
  padding: 10px 14px;
  font-size: 15px; font-weight: 500;
  color: var(--c-ink-soft);
  border-radius: var(--r-pill);
  transition: color var(--t-fast), background var(--t-fast);
}
.nav__link:hover { color: var(--c-ink); background: var(--c-bg-alt); }
.nav__link.is-active { color: var(--c-ink); }
/* Active indicator: desktop uses a small dot below the link. Mobile overrides this
   in its @media block to use an arrow icon instead. */
.nav__link.is-active::after {
  content: ""; position: absolute;
  left: 50%; bottom: 4px;
  transform: translateX(-50%);
  width: 5px; height: 5px; border-radius: 50%;
  background: var(--c-coral);
}

/* Header CTA */
.header__cta { display: flex; align-items: center; gap: 8px; }

/* Mobile toggle */
.nav-toggle {
  display: none;
  width: 40px; height: 40px;
  border-radius: var(--r-2);
  position: relative;
  border: 1px solid var(--c-line);
}
.nav-toggle span {
  position: absolute; left: 10px;
  width: 18px; height: 1.8px;
  background: var(--c-ink);
  border-radius: 2px;
  transition: transform var(--t-med) var(--ease-out), opacity var(--t-fast), top var(--t-med) var(--ease-out);
}
.nav-toggle span:nth-child(1) { top: 13px; }
.nav-toggle span:nth-child(2) { top: 19px; }
.nav-toggle span:nth-child(3) { top: 25px; }
.nav-toggle.is-open span:nth-child(1) { top: 19px; transform: rotate(45deg); }
.nav-toggle.is-open span:nth-child(2) { opacity: 0; }
.nav-toggle.is-open span:nth-child(3) { top: 19px; transform: rotate(-45deg); }

/* ---------- 7. Hero ---------- */
.hero {
  position: relative;
  padding-block: clamp(64px, 9vw, 120px) clamp(48px, 7vw, 96px);
  overflow: hidden;
}
.hero__bg { position: absolute; inset: 0; pointer-events: none; z-index: 0; }
.hero__grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(to right, rgba(10,10,10,.04) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(10,10,10,.04) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 60% at 50% 30%, #000 30%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse 80% 60% at 50% 30%, #000 30%, transparent 75%);
}
.hero__blob {
  position: absolute;
  width: 480px; height: 480px;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.5;
  animation: floaty 14s ease-in-out infinite;
}
.hero__blob--1 {
  background: radial-gradient(circle, #FF4D2E 0%, transparent 70%);
  top: -120px; right: -60px;
}
.hero__blob--2 {
  background: radial-gradient(circle, #C7A24A 0%, transparent 70%);
  bottom: -180px; left: -100px;
  animation-delay: -7s;
}
@keyframes floaty {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50%      { transform: translate(30px, -20px) scale(1.08); }
}

.hero__inner {
  position: relative; z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(0, 1fr);
  gap: 64px;
  align-items: center;
}
.hero__content { max-width: 640px; }

.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--ff-mono);
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--c-muted);
  padding: 6px 12px;
  border: 1px solid var(--c-line);
  border-radius: var(--r-pill);
  background: var(--c-surface);
  margin-bottom: var(--s-5);
}
.eyebrow--light { color: rgba(245,242,235,.7); border-color: rgba(245,242,235,.2); background: rgba(255,255,255,.04); }
.eyebrow__dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--c-coral);
}

.hero__title {
  font-size: clamp(40px, 6.4vw, 76px);
  line-height: 1.02;
  letter-spacing: -0.035em;
  margin-bottom: var(--s-5);
}
.hero__title-accent {
  display: inline-block;
  color: var(--c-coral);
  font-style: italic;
  position: relative;
}
.hero__title-accent::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 0.08em;
  height: 0.18em;
  background: var(--c-coral);
  opacity: 0.18;
  z-index: -1;
  border-radius: 2px;
}
.hero__lede {
  font-size: clamp(16px, 1.4vw, 18px);
  color: var(--c-muted);
  margin-bottom: var(--s-7);
  max-width: 540px;
}

/* Search */
.search {
  display: flex; align-items: center;
  background: var(--c-surface);
  border: 1px solid var(--c-line);
  border-radius: var(--r-pill);
  padding: 6px 6px 6px 6px;
  box-shadow: var(--sh-2);
  max-width: 600px;
  transition: border-color var(--t-med), box-shadow var(--t-med);
}
.search:focus-within {
  border-color: var(--c-ink);
  box-shadow: var(--sh-3);
}
.search__field {
  display: flex; align-items: center; gap: 10px;
  flex: 1; min-width: 0;
  padding: 10px 18px;
  color: var(--c-ink);
}
.search__icon { color: var(--c-muted); flex-shrink: 0; }
.search__field input {
  flex: 1; min-width: 0; border: 0; outline: 0; background: transparent;
  font-size: 15px;
  color: var(--c-ink);
}
.search__field input::placeholder { color: var(--c-muted); }
.search__divider {
  width: 1px; height: 24px;
  background: var(--c-line);
  flex-shrink: 0;
}
.search__btn {
  --bh: 44px;
  padding-inline: 18px;
  background: var(--c-coral);
  color: #fff;
}
.search__btn:hover { background: var(--c-coral-d); }

/* Hero tags */
.hero__tags {
  display: flex; flex-wrap: wrap; align-items: center; gap: 8px;
  margin-top: var(--s-6);
}
.hero__tags-label {
  font-size: 13px; color: var(--c-muted);
  font-weight: 500; margin-right: 4px;
}
.chip {
  display: inline-flex; align-items: center;
  padding: 7px 14px;
  font-size: 13px; font-weight: 500;
  color: var(--c-ink-soft);
  background: var(--c-surface);
  border: 1px solid var(--c-line);
  border-radius: var(--r-pill);
  transition: all var(--t-fast) var(--ease-out);
}
.chip:hover {
  background: var(--c-ink); color: var(--c-bg);
  border-color: var(--c-ink);
  transform: translateY(-1px);
}

/* Hero visual */
.hero__visual {
  position: relative;
  min-height: 480px;
}
.float-card {
  position: absolute;
  background: var(--c-surface);
  border-radius: var(--r-3);
  padding: 16px;
  box-shadow: var(--sh-3);
  border: 1px solid var(--c-line);
  animation: floaty 6s ease-in-out infinite;
}
.float-card--a {
  top: 8%; left: 0;
  width: 260px;
  z-index: 2;
}
.float-card--b {
  top: 38%; right: 0;
  width: 220px;
  animation-delay: -2s;
  z-index: 3;
}
.float-card--c {
  bottom: 8%; left: 15%;
  width: 240px;
  animation-delay: -4s;
  z-index: 2;
}
.float-card__head { display: flex; align-items: center; gap: 10px; margin-bottom: 10px; }
.float-card__avatar {
  width: 36px; height: 36px; border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  color: #fff; font-weight: 600; font-size: 14px;
}
.float-card__name { font-weight: 600; font-size: 14px; color: var(--c-ink); }
.float-card__sub { font-size: 12px; color: var(--c-muted); }
.float-card__msg {
  font-size: 13px; color: var(--c-ink-soft);
  line-height: 1.5;
  font-style: italic;
}
.float-card__row { display: flex; align-items: center; gap: 12px; }
.float-card__icon {
  width: 36px; height: 36px;
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: 10px;
  background: var(--c-bg-alt);
  color: var(--c-ink);
}
.float-card__icon--up { background: rgba(31,77,62,.12); color: var(--c-sage); }
.float-card__stat {
  font-family: var(--ff-display);
  font-size: 22px; font-weight: 700;
  color: var(--c-ink);
  line-height: 1;
}
.float-card__label { font-size: 12px; color: var(--c-muted); margin-bottom: 10px; font-weight: 500; }
.float-card__avatars { display: flex; }
.float-card__ava {
  width: 30px; height: 30px;
  border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  color: #fff; font-weight: 600; font-size: 12px;
  border: 2px solid var(--c-surface);
  margin-left: -8px;
}
.float-card__ava:first-child { margin-left: 0; }

/* Decorative orbs in hero */
.hero__visual::before,
.hero__visual::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  z-index: 0;
}
.hero__visual::before {
  width: 320px; height: 320px;
  background: linear-gradient(135deg, #FF4D2E, #C7A24A);
  opacity: 0.85;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  filter: blur(2px);
  animation: morph 12s ease-in-out infinite;
}
.hero__visual::after {
  width: 200px; height: 200px;
  background: var(--c-ink);
  top: 15%; right: 10%;
  border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
  animation: morph 8s ease-in-out infinite reverse;
  opacity: 0.95;
}
@keyframes morph {
  0%, 100% { border-radius: 50% 50% 50% 50% / 50% 50% 50% 50%; }
  33% { border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%; }
  66% { border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%; }
}

/* ---------- 8. Stats ---------- */
.stats {
  padding-block: var(--s-9);
  border-block: 1px solid var(--c-line);
  background: var(--c-bg);
}
.stats__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--s-6);
}
.stat {
  position: relative;
  padding-left: var(--s-5);
}
.stat::before {
  content: "";
  position: absolute;
  left: 0; top: 8px; bottom: 8px;
  width: 3px;
  background: var(--c-ink);
  border-radius: 2px;
}
.stat:nth-child(2)::before { background: var(--c-coral); }
.stat:nth-child(3)::before { background: var(--c-sage); }
.stat:nth-child(4)::before { background: var(--c-amber); }
.stat__num {
  display: inline-block;
  font-family: var(--ff-display);
  font-size: clamp(36px, 4.4vw, 56px);
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.03em;
  color: var(--c-ink);
}
.stat__suf {
  display: inline-block;
  margin-left: 4px;
  font-family: var(--ff-display);
  font-size: clamp(20px, 2.4vw, 28px);
  font-weight: 600;
  color: var(--c-coral);
  letter-spacing: -0.02em;
}
.stat__lbl {
  margin-top: 8px;
  font-size: 14px;
  color: var(--c-muted);
  font-weight: 500;
}

/* ---------- 9. Sections ---------- */
.section { padding-block: clamp(72px, 9vw, 128px); }
.section--alt { background: var(--c-bg-alt); }
.section--dark {
  background: var(--c-ink);
  color: var(--c-bg);
}
.section-head { max-width: 720px; margin-bottom: var(--s-9); }
.section-head--center { text-align: center; margin-inline: auto; }
.section-head--row {
  display: flex; align-items: flex-end; justify-content: space-between;
  gap: var(--s-6); max-width: 100%;
  flex-wrap: wrap;
}
.section-title {
  font-size: clamp(32px, 4vw, 52px);
  letter-spacing: -0.03em;
  margin-bottom: var(--s-4);
  color: var(--c-ink);
}
.section-title--light { color: var(--c-bg); }
.section-lede {
  font-size: clamp(15px, 1.2vw, 17px);
  color: var(--c-muted);
  max-width: 560px;
}
.section-lede--light { color: rgba(245,242,235,.7); }
.section-head--center .section-lede { margin-inline: auto; }
.section-foot {
  display: flex; justify-content: center;
  margin-top: var(--s-9);
}

/* ---------- 10. Categories ---------- */
.cats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--s-4);
}
.cat {
  display: flex; align-items: center; gap: var(--s-4);
  padding: 22px 20px;
  background: var(--c-surface);
  border: 1px solid var(--c-line);
  border-radius: var(--r-3);
  transition: all var(--t-med) var(--ease-out);
  position: relative;
  overflow: hidden;
}
.cat::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, transparent 60%, rgba(255,77,46,.04) 100%);
  opacity: 0;
  transition: opacity var(--t-med);
}
.cat:hover {
  border-color: var(--c-ink);
  transform: translateY(-2px);
  box-shadow: var(--sh-2);
}
.cat:hover::after { opacity: 1; }
.cat__icon {
  width: 48px; height: 48px;
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: 12px;
  flex-shrink: 0;
  background: var(--c-bg-alt);
  color: var(--c-ink);
  transition: transform var(--t-med) var(--ease-out);
}
.cat:hover .cat__icon { transform: scale(1.08) rotate(-4deg); }
.cat__icon svg { width: 22px; height: 22px; }
.cat__icon[data-tone="coral"] { background: rgba(255,77,46,.12); color: var(--c-coral); }
.cat__icon[data-tone="sage"]  { background: rgba(31,77,62,.12); color: var(--c-sage); }
.cat__icon[data-tone="ink"]   { background: rgba(10,10,10,.08); color: var(--c-ink); }
.cat__icon[data-tone="amber"] { background: rgba(199,162,74,.16); color: var(--c-amber); }

.cat__title {
  font-family: var(--ff-display);
  font-size: 17px;
  font-weight: 600;
  letter-spacing: -0.01em;
  margin-bottom: 2px;
}
.cat__sub { font-size: 13px; color: var(--c-muted); }
.cat__arrow {
  margin-left: auto;
  font-size: 18px;
  color: var(--c-muted);
  transition: transform var(--t-med) var(--ease-out), color var(--t-med);
}
.cat:hover .cat__arrow { transform: translateX(4px); color: var(--c-coral); }

/* ---------- 11. Steps ---------- */
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--s-5);
  position: relative;
}
.steps::before {
  content: "";
  position: absolute;
  top: 56px; left: 12%; right: 12%;
  height: 1px;
  background: repeating-linear-gradient(to right, var(--c-ink) 0 6px, transparent 6px 12px);
  opacity: 0.2;
  z-index: 0;
}
.step {
  position: relative;
  background: var(--c-surface);
  border: 1px solid var(--c-line);
  border-radius: var(--r-4);
  padding: var(--s-7);
  z-index: 1;
  transition: all var(--t-med) var(--ease-out);
}
.step:hover { transform: translateY(-4px); box-shadow: var(--sh-3); }
.step__num {
  display: inline-block;
  font-family: var(--ff-mono);
  font-size: 12px;
  font-weight: 500;
  color: var(--c-muted);
  letter-spacing: 0.1em;
  margin-bottom: var(--s-5);
}
.step__icon {
  width: 64px; height: 64px;
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: 16px;
  margin-bottom: var(--s-5);
}
.step__icon svg { width: 30px; height: 30px; }
.step__icon[data-tone="coral"] { background: rgba(255,77,46,.12); color: var(--c-coral); }
.step__icon[data-tone="sage"]  { background: rgba(31,77,62,.12); color: var(--c-sage); }
.step__icon[data-tone="ink"]   { background: rgba(10,10,10,.08); color: var(--c-ink); }
.step__title {
  font-size: 22px;
  margin-bottom: var(--s-3);
}
.step__desc { color: var(--c-muted); font-size: 15px; }

/* ---------- 12. Filter ---------- */
.filter {
  display: inline-flex;
  padding: 4px;
  background: var(--c-bg-alt);
  border: 1px solid var(--c-line);
  border-radius: var(--r-pill);
  gap: 2px;
}
.filter__btn {
  padding: 8px 18px;
  font-size: 14px; font-weight: 500;
  color: var(--c-muted);
  border-radius: var(--r-pill);
  transition: all var(--t-fast) var(--ease-out);
}
.filter__btn:hover { color: var(--c-ink); }
.filter__btn.is-active {
  background: var(--c-ink); color: var(--c-bg);
}

/* ---------- 13. Cards grid ---------- */
.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--s-5);
}
.card {
  background: var(--c-surface);
  border: 1px solid var(--c-line);
  border-radius: var(--r-4);
  overflow: hidden;
  transition: all var(--t-med) var(--ease-out);
  display: flex; flex-direction: column;
}
.card:hover {
  transform: translateY(-4px);
  border-color: var(--c-ink);
  box-shadow: var(--sh-3);
}
.card.is-hidden { display: none; }
.card__media {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--c-bg-alt);
}
.card__media img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 600ms var(--ease-out);
}
.card:hover .card__media img { transform: scale(1.06); }
.card__badge {
  position: absolute;
  top: 14px; left: 14px;
  padding: 6px 12px;
  font-size: 12px; font-weight: 600;
  color: var(--c-bg);
  background: rgba(10,10,10,.8);
  backdrop-filter: blur(8px);
  border-radius: var(--r-pill);
  letter-spacing: 0.02em;
}
.card__fav {
  position: absolute;
  top: 14px; right: 14px;
  width: 36px; height: 36px;
  display: inline-flex; align-items: center; justify-content: center;
  background: rgba(255,255,255,.9);
  backdrop-filter: blur(8px);
  border-radius: 50%;
  color: var(--c-ink);
  transition: all var(--t-fast) var(--ease-out);
}
.card__fav:hover { background: var(--c-coral); color: #fff; transform: scale(1.1); }
.card__fav.is-fav { background: var(--c-coral); color: #fff; }
.card__body { padding: var(--s-5) var(--s-5) var(--s-5); display: flex; flex-direction: column; flex: 1; }
.card__row {
  display: flex; align-items: center; justify-content: space-between;
  gap: var(--s-3);
  margin-bottom: 8px;
}
.card__title {
  font-size: 20px;
  letter-spacing: -0.015em;
}
.card__rating {
  display: inline-flex; align-items: center; gap: 4px;
  font-size: 13px; font-weight: 600;
  color: var(--c-ink);
}
.card__rating svg { color: var(--c-amber); }
.card__desc {
  font-size: 14px;
  color: var(--c-muted);
  margin-bottom: var(--s-5);
  line-height: 1.55;
  flex: 1;
}
.card__foot {
  display: flex; align-items: center; justify-content: space-between;
  padding-top: var(--s-4);
  border-top: 1px solid var(--c-line-soft);
  margin-top: auto;
}
.card__price { font-size: 13px; color: var(--c-muted); }
.card__price strong {
  display: block;
  font-family: var(--ff-display);
  font-size: 18px;
  font-weight: 700;
  color: var(--c-ink);
  letter-spacing: -0.01em;
  margin-top: 2px;
}
.card__cta {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 14px; font-weight: 600;
  color: var(--c-coral);
  transition: gap var(--t-med) var(--ease-out);
}
.card__cta:hover { gap: 10px; }

/* ---------- 14. Testimonials ---------- */
.t-wrap {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: var(--s-4);
}
.t-viewport {
  overflow: hidden;
  border-radius: var(--r-4);
  padding: 8px;
  margin: -8px;
}
.t-track {
  display: flex;
  gap: var(--s-4);
  transition: transform 500ms var(--ease-in-out);
}
.t-card {
  flex: 0 0 calc((100% - var(--s-4) * 2) / 3);
  background: var(--c-bg);
  color: var(--c-ink);
  border-radius: var(--r-4);
  padding: var(--s-7);
  display: flex; flex-direction: column; gap: var(--s-5);
  border: 1px solid transparent;
  transition: border-color var(--t-med);
}
.t-card:hover { border-color: var(--c-coral); }
.t-card blockquote {
  font-family: var(--ff-display);
  font-size: 19px;
  line-height: 1.45;
  letter-spacing: -0.01em;
  flex: 1;
  position: relative;
}
.t-card blockquote::before {
  content: "“";
  position: absolute;
  top: -22px; left: -8px;
  font-size: 64px;
  color: var(--c-coral);
  opacity: 0.3;
  font-family: var(--ff-display);
  line-height: 1;
}
.t-card figcaption { display: flex; align-items: center; gap: 12px; }
.t-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  color: #fff; font-weight: 700;
}
.t-name { font-weight: 600; font-size: 15px; }
.t-meta { font-size: 13px; color: var(--c-muted); }

.t-nav {
  width: 48px; height: 48px;
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: 50%;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.12);
  color: var(--c-bg);
  transition: all var(--t-fast) var(--ease-out);
}
.t-nav:hover { background: var(--c-coral); border-color: var(--c-coral); transform: scale(1.05); }
.t-nav:disabled { opacity: 0.35; cursor: not-allowed; }
.t-nav:disabled:hover { background: rgba(255,255,255,.08); border-color: rgba(255,255,255,.12); transform: none; }

.t-dots {
  display: flex; justify-content: center; gap: 6px;
  margin-top: var(--s-6);
}
.t-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: rgba(245,242,235,.25);
  transition: all var(--t-fast) var(--ease-out);
  cursor: pointer;
  border: 0;
  padding: 0;
}
.t-dot.is-active { background: var(--c-coral); width: 24px; border-radius: 4px; }

/* ---------- 15. Blog ---------- */
.posts {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: var(--s-5);
}
.post {
  background: var(--c-surface);
  border: 1px solid var(--c-line);
  border-radius: var(--r-4);
  overflow: hidden;
  transition: all var(--t-med) var(--ease-out);
  display: flex; flex-direction: column;
}
.post:hover { transform: translateY(-4px); box-shadow: var(--sh-3); }
.post__media {
  position: relative;
  aspect-ratio: 16/10;
  overflow: hidden;
  display: block;
}
.post__media img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 600ms var(--ease-out);
}
.post:hover .post__media img { transform: scale(1.05); }
.post__tag {
  position: absolute;
  top: 14px; left: 14px;
  padding: 5px 12px;
  font-size: 11px; font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--c-bg);
  background: var(--c-ink);
  border-radius: var(--r-pill);
}
.post__tag--alt { background: var(--c-coral); }
.post__body { padding: var(--s-5); display: flex; flex-direction: column; flex: 1; }
.post__meta {
  font-size: 12px; color: var(--c-muted);
  font-family: var(--ff-mono);
  margin-bottom: 8px;
}
.post__title {
  font-size: 20px;
  letter-spacing: -0.015em;
  margin-bottom: var(--s-3);
}
.post__title a { transition: color var(--t-fast); }
.post__title a:hover { color: var(--c-coral); }
.post__desc { font-size: 14px; color: var(--c-muted); line-height: 1.55; flex: 1; }
.post--feature {
  grid-row: span 2;
}
.post--feature .post__media { aspect-ratio: 4/3; }
.post--feature .post__title { font-size: 26px; }
.post--feature .post__desc { font-size: 15px; }

.link-arrow {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 14px; font-weight: 600;
  color: var(--c-ink);
  transition: gap var(--t-med) var(--ease-out), color var(--t-fast);
}
.link-arrow:hover { gap: 10px; color: var(--c-coral); }
.link-arrow--sm { font-size: 13px; }

/* ---------- 16. CTA ---------- */
.cta {
  position: relative;
  background: var(--c-coral);
  color: #fff;
  padding-block: clamp(64px, 8vw, 96px);
  overflow: hidden;
}
.cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 20%, rgba(255,255,255,.18), transparent 40%),
    radial-gradient(circle at 80% 80%, rgba(10,10,10,.25), transparent 50%);
  pointer-events: none;
}
.cta__inner {
  position: relative;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  align-items: center;
  gap: var(--s-8);
}
.cta__copy { max-width: 600px; }
.cta__title {
  font-size: clamp(32px, 4vw, 48px);
  letter-spacing: -0.03em;
  margin: var(--s-5) 0;
  color: #fff;
}
.cta__lede { color: rgba(255,255,255,.85); font-size: 16px; }
.cta em {
  color: var(--c-ink);
  position: relative;
  display: inline-block;
  font-weight: 600;
}
.cta em::after {
  content: "";
  position: absolute;
  left: -2px; right: -2px;
  bottom: 0.08em;
  height: 0.22em;
  background: var(--c-ink);
  opacity: 0.12;
  z-index: -1;
  border-radius: 2px;
}
.cta .eyebrow {
  color: rgba(255,255,255,.85);
  background: rgba(0,0,0,.15);
  border-color: rgba(255,255,255,.2);
}
.cta__form {
  display: flex; gap: 8px;
  background: #fff;
  padding: 8px;
  border-radius: var(--r-pill);
  box-shadow: var(--sh-3);
  position: relative;
}
.cta__form input {
  flex: 1; min-width: 0;
  padding: 12px 20px;
  border: 0; outline: 0;
  background: transparent;
  font-size: 15px;
  color: var(--c-ink);
}
.cta__form input::placeholder { color: var(--c-muted); }
.cta__form .btn--primary {
  background: var(--c-ink);
  color: var(--c-bg);
}
.cta__form .btn--primary:hover { background: #1F1F1F; }
.cta__ok {
  position: absolute;
  bottom: -36px; left: 0;
  font-size: 14px;
  color: rgba(255,255,255,.95);
  font-weight: 500;
}

/* ---------- 16b. FAQ ---------- */
.faq {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.4fr);
  gap: var(--s-9);
  align-items: start;
}
.faq__head { position: sticky; top: 96px; }
.faq__list {
  display: flex; flex-direction: column;
  gap: var(--s-3);
}
.faq__item {
  background: var(--c-surface);
  border: 1px solid var(--c-line);
  border-radius: var(--r-3);
  overflow: hidden;
  transition: border-color var(--t-med), box-shadow var(--t-med);
}
.faq__item[open] {
  border-color: var(--c-ink);
  box-shadow: var(--sh-2);
}
.faq__item summary {
  list-style: none;
  cursor: pointer;
  display: flex; align-items: center; justify-content: space-between;
  gap: var(--s-3);
  padding: 22px 24px;
  font-family: var(--ff-display);
  font-size: 17px;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--c-ink);
  user-select: none;
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary:hover { color: var(--c-coral); }
.faq__icon {
  width: 32px; height: 32px;
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: 50%;
  background: var(--c-bg-alt);
  color: var(--c-ink);
  flex-shrink: 0;
  transition: transform var(--t-med) var(--ease-out), background var(--t-med);
}
.faq__item[open] .faq__icon {
  transform: rotate(45deg);
  background: var(--c-coral);
  color: #fff;
}
.faq__body {
  padding: 0 24px 22px;
  color: var(--c-ink-soft);
  font-size: 15px;
  line-height: 1.65;
  max-width: 60ch;
}

/* ---------- 17. Footer ---------- */
.footer {
  background: var(--c-ink);
  color: var(--c-bg);
  padding-block: var(--s-10) var(--s-6);
}
.footer__grid {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 1fr);
  gap: var(--s-8);
  padding-bottom: var(--s-9);
  border-bottom: 1px solid rgba(245,242,235,.12);
}
.footer__col h4 {
  font-family: var(--ff-body);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--c-bg);
  margin-bottom: var(--s-5);
}
.footer__col ul li { margin-bottom: 12px; }
.footer__col ul a {
  font-size: 14px;
  color: rgba(245,242,235,.6);
  transition: color var(--t-fast);
}
.footer__col ul a:hover { color: var(--c-coral); }
.footer__about {
  margin-top: var(--s-4);
  font-size: 14px;
  color: rgba(245,242,235,.6);
  line-height: 1.6;
  max-width: 320px;
}
.footer__social {
  display: flex; gap: 8px;
  margin-top: var(--s-5);
}
.footer__social a {
  width: 38px; height: 38px;
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: 50%;
  background: rgba(245,242,235,.06);
  color: var(--c-bg);
  transition: all var(--t-fast) var(--ease-out);
}
.footer__social a:hover { background: var(--c-coral); transform: translateY(-2px); }

.footer__bottom {
  display: flex; justify-content: space-between; align-items: center;
  padding-top: var(--s-5);
  flex-wrap: wrap; gap: 12px;
}
.footer__bottom p {
  font-size: 13px;
  color: rgba(245,242,235,.5);
}
.footer__credit-link {
  color: rgba(245,242,235,.85);
  text-decoration: underline;
  text-decoration-color: rgba(255,77,46,.5);
  text-underline-offset: 3px;
  transition: color var(--t-fast);
}
.footer__credit-link:hover { color: var(--c-coral); }
.footer__mono { font-family: var(--ff-mono); }

/* ---------- 18. Back to top ---------- */
.to-top {
  position: fixed;
  right: 20px; bottom: 20px;
  width: 44px; height: 44px;
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--c-ink); color: var(--c-bg);
  border-radius: 50%;
  box-shadow: var(--sh-3);
  opacity: 0; visibility: hidden;
  transform: translateY(8px);
  transition: all var(--t-med) var(--ease-out);
  z-index: 90;
}
.to-top.is-visible { opacity: 1; visibility: visible; transform: translateY(0); }
.to-top:hover { background: var(--c-coral); transform: translateY(-2px); }

/* ---------- 19. Reveal animations ---------- */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 700ms var(--ease-out), transform 700ms var(--ease-out);
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  .reveal { opacity: 1; transform: none; }
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1100px) {
  .nav__list { gap: 0; }
  .nav__link { padding: 8px 10px; font-size: 14px; }
  .hero__visual { min-height: 380px; }
  .float-card--a { width: 220px; }
  .float-card--b { width: 200px; }
  .float-card--c { width: 200px; }
  .faq { grid-template-columns: 1fr; gap: var(--s-7); }
  .faq__head { position: static; }
}

@media (max-width: 960px) {
  :root {
    --header-mobile-height: 64px;
    --header-mobile-offset: calc(var(--header-mobile-height) + env(safe-area-inset-top, 0px));
  }

  .topbar { display: none; }
  .header__inner { height: var(--header-mobile-height); }

  /* Hide the inline desktop nav on mobile — the drawer (outside the header) takes over */
  .nav--desktop { display: none; }

  /* On mobile, make the header absorb the safe-area inset so no extra strip
     appears above it on notched / translucent mobile browsers.
     IMPORTANT: no `transform` here — that would create a containing block
     for the fixed nav drawer and break its viewport-relative positioning. */
  .header {
    position: sticky;
    top: 0;
    z-index: 100;
    padding-top: env(safe-area-inset-top, 0px);
    background: var(--c-bg);
    border-bottom: 1px solid var(--c-line);
    will-change: transform;
  }
  .header.is-scrolled {
    background: var(--c-bg);
    border-bottom-color: var(--c-line);
    box-shadow: 0 2px 8px rgba(10,10,10,.04);
  }

  /* Nav drawer: positioned relative to the viewport (not the header).
     Sits directly below the visible mobile header and stretches to the bottom. */
  .nav.nav--drawer {
    display: flex; flex-direction: column;
    position: fixed;
    top: var(--header-mobile-offset); left: 0; right: 0; bottom: 0;
    min-height: 60vh;
    background: var(--c-bg);
    border-top: 1px solid var(--c-line);
    padding: var(--s-5) var(--gutter) var(--s-6);
    transform: translateY(-110%);
    transition: transform var(--t-med) var(--ease-out);
    box-shadow: var(--sh-3);
    max-height: calc(100dvh - var(--header-mobile-offset));
    max-height: calc(100vh - var(--header-mobile-offset));
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior: contain;
    z-index: 99;
    visibility: hidden;
  }
  .nav.nav--drawer.is-open {
    transform: translateY(0);
    visibility: visible;
  }
  .nav.nav--drawer .nav__list {
    display: flex;
    flex-direction: column; align-items: stretch; gap: 4px;
    visibility: visible;
  }
  .nav__link {
    display: flex; align-items: center; justify-content: space-between;
    padding: 14px 18px;
    font-size: 16px;
    font-weight: 500;
    border-radius: var(--r-2);
  }
  /* Mobile active state: use arrow + background, no dot indicator */
  .nav__link.is-active::after {
    content: "→";
    position: static; transform: none;
    width: auto; height: auto;
    background: transparent; border-radius: 0;
    font-size: 16px; color: var(--c-coral);
  }
  .nav__link.is-active { background: var(--c-bg-alt); }
  /* Override desktop hover-after too so arrow shows in mobile drawer */
  .nav__link::after {
    content: "→";
    font-size: 16px;
    color: var(--c-muted);
    transition: transform var(--t-fast) var(--ease-out), color var(--t-fast);
  }
  .nav__link:hover::after { transform: translateX(4px); color: var(--c-coral); }

  .nav-toggle { display: inline-flex; align-items: center; justify-content: center; }

  /* On mobile, hide all inline header CTA buttons — they live inside the drawer footer instead */
  .header__cta .btn { display: none; }

  /* Nav footer: holds Masuk + Daftar Gratis inside the mobile drawer, pinned to the bottom */
  .nav__footer {
    display: flex; flex-direction: column; gap: var(--s-3);
    margin-top: auto;
    padding-top: var(--s-5);
    border-top: 1px solid var(--c-line);
  }
  .nav__footer .btn {
    width: 100%;
    height: 52px;
    font-size: 16px;
  }
  .nav__cta-ghost {
    background: transparent;
    color: var(--c-ink);
    border: 1px solid var(--c-line);
  }
  .nav__cta-ghost:hover { background: var(--c-bg-alt); }

  .hero__inner {
    grid-template-columns: 1fr;
    gap: var(--s-9);
  }
  .hero__visual { min-height: 360px; max-width: 480px; margin: 0 auto; width: 100%; }

  .stats__grid { grid-template-columns: repeat(2, 1fr); gap: var(--s-6); }
  .cats { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: 1fr; }
  .steps::before { display: none; }
  .cards { grid-template-columns: repeat(2, 1fr); }
  .t-card { flex: 0 0 calc((100% - var(--s-4)) / 2); }
  .posts { grid-template-columns: 1fr 1fr; }
  .post--feature { grid-row: auto; grid-column: 1 / -1; }
  .post--feature .post__media { aspect-ratio: 16/9; }
  .cta__inner { grid-template-columns: 1fr; gap: var(--s-6); }
  .footer__grid { grid-template-columns: 1fr 1fr; gap: var(--s-7); }
}

@media (max-width: 640px) {
  html { scroll-padding-top: 64px; }
  .container { padding-inline: 18px; }

  .hero { padding-top: var(--s-7); padding-bottom: var(--s-6); }
  .hero__title {
    font-size: clamp(32px, 9vw, 42px);
    line-height: 1.05;
  }
  .hero__lede { font-size: 15px; }
  .hero__tags { gap: 6px; }
  .chip { padding: 6px 12px; font-size: 12px; }

  .search {
    flex-direction: column; align-items: stretch;
    padding: 8px;
    border-radius: var(--r-3);
  }
  .search__divider { display: none; }
  .search__field { padding: 10px 14px; }
  .search__btn { width: 100%; }
  .search__btn span { display: inline; }

  /* Hero visual: stack nicely on mobile */
  .hero__visual {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    min-height: auto;
  }
  .hero__visual::before, .hero__visual::after { display: none; }
  .float-card { position: relative; inset: auto; width: 100%; max-width: 100%; margin: 0; animation: none; }
  .float-card--a { grid-column: 1 / -1; }
  .float-card__msg { font-size: 12px; }
  .float-card__name { font-size: 13px; }
  .float-card__stat { font-size: 18px; }

  .stats__grid { grid-template-columns: 1fr 1fr; gap: var(--s-5); }
  .stat { padding-left: var(--s-3); }
  .stat__num { font-size: clamp(28px, 7vw, 36px); }
  .stat__suf { font-size: 16px; }

  .cats { grid-template-columns: 1fr; }
  .cards { grid-template-columns: 1fr; }

  /* Testimonial: prev/next inside viewport */
  .t-wrap {
    grid-template-columns: 1fr;
    padding-inline: 36px;
    position: relative;
  }
  .t-viewport { padding: 0; margin: 0; }
  .t-card { flex: 0 0 100%; padding: var(--s-6); }
  .t-card blockquote { font-size: 16px; }
  .t-card blockquote::before { font-size: 48px; top: -16px; }
  .t-nav {
    position: absolute; top: 50%; transform: translateY(-50%);
    z-index: 3;
    width: 40px; height: 40px;
  }
  .t-nav--prev { left: 0; }
  .t-nav--next { right: 0; }
  .t-nav svg { width: 16px; height: 16px; }

  .posts { grid-template-columns: 1fr; }
  .post__title { font-size: 18px; }
  .post--feature .post__title { font-size: 22px; }

  .section-head--row { flex-direction: column; align-items: flex-start; }
  .filter { width: 100%; overflow-x: auto; -webkit-overflow-scrolling: touch; }
  .filter__btn { white-space: nowrap; padding: 8px 14px; font-size: 13px; }

  .cta__title { font-size: clamp(26px, 7vw, 36px); }
  .cta__form { flex-direction: column; border-radius: var(--r-3); padding: 10px; }
  .cta__form input { padding: 14px 16px; font-size: 16px; }
  .cta__form .btn--primary { width: 100%; }
  .cta__ok { position: static; margin-top: 12px; }

  .footer__grid { grid-template-columns: 1fr; gap: var(--s-6); }
  .footer__bottom { flex-direction: column; align-items: flex-start; }
  .footer__bottom p { font-size: 12px; }

  .faq { gap: var(--s-6); }
  .faq__item summary { padding: 18px 20px; font-size: 15px; }
  .faq__body { padding: 0 20px 18px; font-size: 14px; }
  .faq__icon { width: 28px; height: 28px; }
  .faq__icon svg { width: 16px; height: 16px; }

  .to-top { right: 14px; bottom: 14px; width: 40px; height: 40px; }
}

@media (max-width: 480px) {
  .container { padding-inline: 16px; }

  .header__inner { gap: 12px; }
  .brand { font-size: 17px; gap: 8px; }
  .brand__mark svg { width: 24px; height: 24px; }
  .header__cta .btn--sm { padding-inline: 12px; font-size: 13px; }

  .hero__title {
    font-size: clamp(28px, 8.5vw, 36px);
    letter-spacing: -0.025em;
  }
  .hero__title-accent::after { height: 0.14em; bottom: 0.06em; }
  .hero__lede { font-size: 14px; }

  .search__field { padding: 8px 12px; }
  .search__field input { font-size: 14px; }
  .search__btn { --bh: 42px; font-size: 14px; }

  .eyebrow { font-size: 11px; padding: 5px 10px; }
  .section-title { font-size: clamp(26px, 7.5vw, 34px); }
  .section-lede { font-size: 14px; }

  .stats__grid { grid-template-columns: 1fr; gap: var(--s-4); }
  .stat { padding-left: var(--s-3); }
  .stat__num { font-size: 32px; }
  .stat__suf { font-size: 16px; }
  .stat__lbl { font-size: 13px; }

  .hero__visual { grid-template-columns: 1fr; }
  .float-card { padding: 12px; }
  .float-card__avatar { width: 30px; height: 30px; font-size: 12px; }
  .float-card__icon { width: 30px; height: 30px; }
  .float-card__stat { font-size: 18px; }

  .cat { padding: 16px; gap: 12px; }
  .cat__icon { width: 40px; height: 40px; }
  .cat__icon svg { width: 20px; height: 20px; }
  .cat__title { font-size: 16px; }
  .cat__sub { font-size: 12px; }
  .cat__arrow { font-size: 16px; }

  .step { padding: var(--s-5); }
  .step__icon { width: 52px; height: 52px; margin-bottom: var(--s-4); }
  .step__icon svg { width: 24px; height: 24px; }
  .step__title { font-size: 19px; }
  .step__desc { font-size: 14px; }

  .card__body { padding: var(--s-4); }
  .card__title { font-size: 17px; }
  .card__desc { font-size: 13px; }
  .card__price strong { font-size: 16px; }

  .t-wrap { padding-inline: 32px; }
  .t-card { padding: var(--s-5); }
  .t-card blockquote { font-size: 15px; }

  .post__body { padding: var(--s-4); }
  .post__title { font-size: 17px; }
  .post--feature .post__title { font-size: 20px; }
  .post--feature .post__desc { font-size: 14px; }

  .cta { padding-block: var(--s-8); }
  .cta__title { font-size: 26px; line-height: 1.15; }
  .cta__lede { font-size: 14px; }
  .cta__form { padding: 8px; }

  .footer { padding-block: var(--s-8) var(--s-5); }
  .footer__col h4 { font-size: 12px; }
  .footer__col ul a { font-size: 13px; }
}

@media (max-width: 360px) {
  .hero__title { font-size: 30px; }
  .section-title { font-size: 26px; }
  .btn--primary.btn--sm { padding-inline: 10px; }
}
