:root {
  --bg: #ffffff;
  --bg-soft: #f4f6f8;
  --bg-panel: #eef1f4;
  --bg-wash: #f7f5f3;
  --text: #14181f;
  --muted: #5a6573;
  --line: rgba(20, 24, 31, 0.1);
  --line-strong: rgba(20, 24, 31, 0.16);
  --primary: #e4572e;
  --primary-hover: #c94622;
  --ink: #14181f;
  --blue: #3b82c4;
  --blue-soft: #e8f1f8;
  --accent: #e4572e;
  --accent-soft: #fdf0eb;
  --accent-band: #eef1f4;
  --max: 1160px;
  --font-display: "Fraunces", "Georgia", serif;
  --font-body: "Sora", "Segoe UI", sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100%;
  color: var(--text);
  font-family: var(--font-body);
  background:
    radial-gradient(1200px 480px at 12% -10%, rgba(228, 87, 46, 0.06), transparent 55%),
    radial-gradient(900px 420px at 88% 0%, rgba(59, 130, 196, 0.05), transparent 50%),
    var(--bg);
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

.site-chrome {
  position: sticky;
  top: 0;
  z-index: 50;
}

.announce {
  display: none;
}

.announce-inner {
  width: min(var(--max), calc(100% - 32px));
  margin: 0 auto;
  min-height: 42px;
  padding: 10px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 6px;
  flex-wrap: wrap;
}

.announce-text {
  margin: 0;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.4;
  color: rgba(255, 255, 255, 0.95);
}

.announce-cta {
  display: inline;
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  text-decoration: underline;
  text-underline-offset: 3px;
  white-space: nowrap;
}

.announce-cta:hover {
  color: #fff;
  opacity: 0.88;
}

@media (max-width: 720px) {
  .announce-inner {
    min-height: 0;
    padding: 11px 0;
  }

  .announce-text,
  .announce-cta {
    font-size: 13px;
  }
}

.site-header {
  backdrop-filter: blur(16px);
  background: rgba(255, 255, 255, 0.86);
  border-bottom: 1px solid transparent;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.site-header.is-scrolled {
  border-bottom-color: var(--line);
  box-shadow: 0 8px 24px rgba(20, 24, 31, 0.04);
}

.nav-inner {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.2rem;
  letter-spacing: -0.03em;
  color: var(--text);
}

.brand img {
  width: 158px;
  height: auto;
  object-fit: contain;
}

.brand span {
  display: none;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2px;
}

.nav-links a {
  font-size: 14px;
  font-weight: 500;
  color: var(--muted);
  padding: 8px 12px;
  border-radius: 8px;
  transition: color 0.2s ease, background 0.2s ease;
}

.nav-links a:hover,
.nav-links a[aria-current="page"] {
  color: var(--text);
  background: rgba(20, 24, 31, 0.04);
}

.nav-links .nav-login {
  color: var(--text);
  margin-left: 8px;
}

.nav-links .nav-cta {
  color: #fff;
  background: var(--accent);
  border: 1.5px solid var(--accent);
  padding: 9px 16px;
  margin-left: 4px;
  font-weight: 600;
}

.nav-links .nav-cta:hover {
  color: #fff;
  background: var(--primary-hover);
  border-color: var(--primary-hover);
}

/* ===== HERO: LiveChat-inspired 2-column, brand-first ===== */
.hero {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
  padding: 40px 0 56px;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 48px;
  align-items: center;
  min-height: auto;
}

.hero-copy {
  animation: riseIn 0.7s ease both;
}

.hero-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}

.hero-brand img {
  width: 42px;
  height: 42px;
  object-fit: contain;
}

.hero-brand-text {
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 3vw, 2.15rem);
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  margin: 0 0 16px;
  padding: 7px 12px;
  border-radius: 999px;
  background: var(--bg-soft);
  color: var(--muted);
  font-size: 13px;
  font-weight: 600;
}

.hero h1 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 4.8vw, 3.75rem);
  line-height: 1.04;
  letter-spacing: -0.045em;
  font-weight: 700;
  max-width: 13ch;
}

.hero-lead {
  margin: 18px 0 0;
  max-width: 40ch;
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.6;
}

.hero-points {
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
}

.hero-points li {
  position: relative;
  padding-left: 22px;
  color: var(--text);
  font-size: 0.98rem;
  font-weight: 500;
  line-height: 1.45;
}

.hero-points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.45em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--blue);
}

.hero-actions {
  margin-top: 28px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  animation: riseIn 0.8s ease 0.05s both;
}

.hero-note {
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.45;
}

.promise {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--bg-soft);
}

.promise-inner {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
  padding: 36px 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
}

.promise-inner h3 {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.15rem;
  letter-spacing: -0.02em;
}

.promise-inner p {
  margin: 8px 0 0;
  color: var(--muted);
  line-height: 1.5;
  font-size: 0.98rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border-radius: 10px;
  font-weight: 600;
  font-size: 15px;
  border: 1.5px solid transparent;
  transition: transform 0.18s ease, background 0.18s ease, color 0.18s ease, border-color 0.18s ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-primary {
  color: #fff;
  background: var(--accent);
}

.btn-primary:hover {
  background: var(--primary-hover);
}

.btn-ghost {
  color: var(--text);
  background: #fff;
  border-color: var(--line-strong);
}

.btn-ghost:hover {
  background: var(--bg-soft);
}

.btn-blue {
  color: #fff;
  background: var(--ink);
}

.btn-blue:hover {
  background: #000;
}

.hero-visual {
  animation: fadeSlide 0.9s ease 0.08s both;
}

.hero-panel {
  background: var(--bg-panel);
  border-radius: 28px;
  padding: 28px 24px 0;
  overflow: hidden;
}

.hero-panel img {
  width: 100%;
  height: auto;
  border-radius: 16px 16px 0 0;
  box-shadow: 0 18px 40px rgba(18, 20, 26, 0.12);
}

/* Accent band */
.band {
  background: var(--accent-band);
  padding: 72px 0 0;
  text-align: center;
  overflow: hidden;
}

.band-inner {
  width: min(760px, calc(100% - 40px));
  margin: 0 auto;
}

.band h2 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 3.4vw, 2.7rem);
  letter-spacing: -0.04em;
  line-height: 1.12;
}

.band p {
  margin: 16px auto 0;
  max-width: 44ch;
  color: #3d3f45;
  font-size: 1.05rem;
  line-height: 1.55;
}

.band .btn {
  margin-top: 28px;
}

.band-shot {
  width: min(980px, calc(100% - 40px));
  margin: 48px auto 0;
}

.band-shot img {
  width: 100%;
  height: auto;
  border-radius: 18px 18px 0 0;
  box-shadow: 0 24px 50px rgba(18, 20, 26, 0.16);
}

/* Loop / resources */
.section {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
  padding: 72px 0;
}

.section-center {
  text-align: center;
}

.section-center .section-head,
.section-head.section-center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.section-head {
  max-width: 38rem;
  margin-bottom: 40px;
}

.section-kicker {
  margin: 0 0 10px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
}

.section-head h2,
.page-title {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.85rem, 3.2vw, 2.6rem);
  letter-spacing: -0.035em;
  line-height: 1.12;
}

.section-head p {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.55;
}

.loop-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
}

.loop-card {
  display: flex;
  flex-direction: column;
  min-height: 100%;
}

.loop-media {
  aspect-ratio: 16 / 10;
  border-radius: 18px;
  background: var(--bg-soft);
  overflow: hidden;
  border: 1px solid var(--line);
}

.loop-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}

.loop-media--banner {
  background: #fff;
}

.loop-media--banner img {
  object-fit: contain;
  object-position: center;
}

.loop-card h3 {
  margin: 22px 0 0;
  font-family: var(--font-display);
  font-size: 1.35rem;
  letter-spacing: -0.025em;
}

.loop-card p {
  margin: 10px 0 0;
  color: var(--muted);
  line-height: 1.55;
  flex: 1;
}

.loop-card .more {
  margin-top: 16px;
  font-weight: 700;
  color: var(--blue);
}

.loop-card:hover .more {
  text-decoration: underline;
}

/* Product / fitur page */
.page-intro {
  padding-top: 48px;
  padding-bottom: 0;
}

.section-head--wide {
  max-width: 44rem;
}

.fitur-hero {
  position: relative;
  overflow: hidden;
  padding: 56px 0 0;
}

.fitur-hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(70% 80% at 88% 12%, rgba(37, 99, 235, 0.12), transparent 55%),
    radial-gradient(55% 70% at 8% 90%, rgba(255, 229, 102, 0.35), transparent 60%),
    linear-gradient(180deg, #f7f8fb 0%, #ffffff 72%);
  pointer-events: none;
}

.fitur-hero-inner {
  position: relative;
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: 40px;
  align-items: center;
}

.fitur-hero-copy h1 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  letter-spacing: -0.04em;
  line-height: 1.08;
  max-width: 16ch;
}

.fitur-hero-lead {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.6;
  max-width: 42ch;
}

.fitur-hero-copy .hero-actions {
  margin-top: 28px;
}

.fitur-hero-frame {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 28px;
  padding: 18px;
  box-shadow: 0 24px 50px rgba(18, 20, 26, 0.08);
  animation: fadeSlide 0.85s ease both;
}

.fitur-hero-frame img {
  width: 100%;
  height: auto;
  border-radius: 16px;
}

.fitur-highlights {
  position: relative;
  width: min(var(--max), calc(100% - 40px));
  margin: 48px auto 0;
  padding: 0 0 8px;
  list-style: none;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  border-top: 1px solid var(--line);
}

.fitur-highlights li {
  padding: 22px 20px 22px 0;
  border-right: 1px solid var(--line);
}

.fitur-highlights li:last-child {
  border-right: 0;
  padding-right: 0;
}

.fitur-highlights strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.05rem;
  letter-spacing: -0.02em;
}

.fitur-highlights span {
  display: block;
  margin-top: 6px;
  color: var(--muted);
  font-size: 0.94rem;
  line-height: 1.45;
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  border-top: 1px solid var(--line);
}

.steps--rich {
  border: 1px solid var(--line);
  border-radius: 22px;
  overflow: hidden;
  background:
    linear-gradient(180deg, #fbfbfc 0%, #ffffff 100%);
}

.steps--rich .step {
  padding: 32px 28px;
  border-right: 1px solid var(--line);
  background: transparent;
}

.steps--rich .step:last-child {
  border-right: 0;
  padding-right: 28px;
}

.steps--rich .step-num {
  width: 42px;
  height: 42px;
  margin-bottom: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: var(--blue-soft);
  color: var(--blue);
  letter-spacing: 0.04em;
}

.step {
  padding: 28px 24px 8px 0;
  border-right: 1px solid var(--line);
}

.step:last-child {
  border-right: 0;
  padding-right: 0;
}

.step-num {
  display: block;
  margin-bottom: 14px;
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--blue);
}

.step h3 {
  margin: 0 0 10px;
  font-family: var(--font-display);
  font-size: 1.2rem;
  letter-spacing: -0.02em;
}

.step p {
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
  font-size: 0.98rem;
  max-width: 28ch;
}

.fitur-band {
  background: var(--accent-band);
  padding: 56px 0;
  text-align: center;
}

.fitur-band-inner {
  width: min(720px, calc(100% - 40px));
  margin: 0 auto;
}

.fitur-band h2 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 3vw, 2.35rem);
  letter-spacing: -0.035em;
  line-height: 1.15;
}

.fitur-band p {
  margin: 14px auto 0;
  max-width: 46ch;
  color: #3d3f45;
  font-size: 1.05rem;
  line-height: 1.55;
}

.product-rail {
  padding-bottom: 24px;
}

.product-rail-head {
  padding-bottom: 24px;
}

.product-block {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 48px;
  align-items: center;
  padding: 28px 0;
}

.product-block--soft {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto 28px;
  padding: 40px;
  border-radius: 28px;
  border: 1px solid var(--line);
  background:
    radial-gradient(90% 120% at 100% 0%, rgba(37, 99, 235, 0.06), transparent 50%),
    #f7f8fb;
}

.product-block--soft:nth-child(odd) {
  background:
    radial-gradient(90% 120% at 0% 0%, rgba(255, 229, 102, 0.28), transparent 52%),
    #f7f8fb;
}

.product-block + .product-block {
  border-top: 1px solid var(--line);
  margin-top: 28px;
  padding-top: 56px;
}

.product-block--soft + .product-block--soft {
  border-top: 0;
  margin-top: 0;
  padding-top: 40px;
}

.product-block.is-flip {
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
}

.product-block.is-flip .product-copy {
  order: 2;
}

.product-block.is-flip .product-media {
  order: 1;
}

.product-label {
  margin: 0 0 10px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--blue);
}

.product-copy h3 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.45rem, 2.4vw, 1.9rem);
  letter-spacing: -0.03em;
  line-height: 1.15;
}

.product-copy p {
  margin: 14px 0 0;
  color: var(--muted);
  line-height: 1.6;
  max-width: 36ch;
}

.product-points {
  margin: 20px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
}

.product-points li {
  position: relative;
  padding-left: 22px;
  color: var(--text);
  font-size: 0.96rem;
  font-weight: 600;
  line-height: 1.45;
}

.product-points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.45em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--blue);
  box-shadow: 0 0 0 4px var(--blue-soft);
}

.shot {
  border-radius: 16px;
  border: 1px solid var(--line);
  overflow: hidden;
  background: #0e1218;
  box-shadow: 0 18px 40px rgba(18, 20, 26, 0.1);
}

.shot--lift {
  box-shadow: 0 22px 48px rgba(18, 20, 26, 0.14);
}

.shot img {
  width: 100%;
  height: auto;
  display: block;
}

.phones-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 240px));
  justify-content: center;
  gap: 24px;
}

.phone-shot {
  border-radius: 24px;
  border: 1px solid var(--line);
  overflow: hidden;
  background: #0e1218;
  box-shadow: 0 18px 40px rgba(18, 20, 26, 0.12);
}

.phone-shot img {
  width: 100%;
  height: auto;
  display: block;
}

.cta-band {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto 88px;
  padding: 48px;
  border-radius: 24px;
  background: var(--bg-soft);
  border: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.cta-band h2 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 2.6vw, 2rem);
  letter-spacing: -0.03em;
  max-width: 16ch;
}

.cta-band p {
  margin: 10px 0 0;
  color: var(--muted);
  max-width: 36ch;
  line-height: 1.5;
}

.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

/* Footer */
.site-footer {
  border-top: 1px solid var(--line);
  background: #fafbfc;
}

.footer-inner {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
  padding: 48px 0 28px;
  display: grid;
  grid-template-columns: 1.2fr repeat(3, minmax(0, 1fr));
  gap: 32px;
}

.footer-inner--wide {
  grid-template-columns: 1.35fr repeat(4, minmax(0, 1fr));
  gap: 28px 24px;
  padding-top: 56px;
}

.footer-brand p {
  margin: 14px 0 0;
  color: var(--muted);
  max-width: 28ch;
  font-size: 0.95rem;
  line-height: 1.5;
}

.footer-inner--wide .footer-brand p {
  max-width: 34ch;
}

.footer-col h4 {
  margin: 0 0 14px;
  font-family: var(--font-display);
  font-size: 14px;
  letter-spacing: -0.01em;
}

.footer-col a {
  display: block;
  color: var(--muted);
  font-size: 14px;
  font-weight: 500;
  margin-top: 10px;
}

.footer-col a:hover {
  color: var(--text);
}

.footer-bar {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
  padding: 22px 0;
  border-top: 1px solid var(--line);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.footer-bar p {
  margin: 0;
  font-weight: 600;
}

.footer-copy {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
  padding: 0 0 32px;
  color: #7a8290;
  font-size: 13px;
}

/* Inner pages */
.page-shell {
  width: min(820px, calc(100% - 40px));
  margin: 0 auto;
  padding: 56px 0 88px;
}

.page-shell h1 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.8rem);
  letter-spacing: -0.04em;
  line-height: 1.1;
}

.page-shell .lead {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.55;
  max-width: 42ch;
}

.content-block {
  margin-top: 36px;
}

.content-block h2 {
  margin: 28px 0 10px;
  font-family: var(--font-display);
  font-size: 1.25rem;
  letter-spacing: -0.02em;
}

.content-block p,
.content-block li {
  color: var(--muted);
  line-height: 1.6;
}

.content-block a {
  color: var(--blue);
  font-weight: 600;
}

.content-block ul {
  margin: 0;
  padding-left: 1.15rem;
}

.content-block li + li {
  margin-top: 8px;
}

.faq-item + .faq-item {
  margin-top: 22px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
}

.faq-item h2 {
  margin: 0 0 8px;
  font-size: 1.1rem;
}

.page-actions {
  margin-top: 36px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

/* Help / bantuan page */
.help-hero {
  position: relative;
  overflow: hidden;
  padding: 56px 0 48px;
}

.help-hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(70% 80% at 12% 18%, rgba(255, 229, 102, 0.42), transparent 55%),
    radial-gradient(60% 70% at 92% 78%, rgba(37, 99, 235, 0.1), transparent 58%),
    linear-gradient(180deg, #f7f8fb 0%, #ffffff 74%);
  pointer-events: none;
}

.help-hero-inner {
  position: relative;
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: 40px;
  align-items: center;
}

.help-hero-copy h1 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  letter-spacing: -0.04em;
  line-height: 1.08;
  max-width: 15ch;
}

.help-hero-lead {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.6;
  max-width: 42ch;
}

.help-hero-copy .hero-actions {
  margin-top: 28px;
}

.help-hero-frame {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 28px;
  padding: 18px;
  box-shadow: 0 24px 50px rgba(18, 20, 26, 0.08);
  animation: fadeSlide 0.85s ease both;
}

.help-hero-frame img {
  width: 100%;
  height: auto;
  border-radius: 16px;
}

.help-topic-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.help-topic {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 22px 20px;
  border-radius: 18px;
  border: 1px solid var(--line);
  background:
    linear-gradient(180deg, #ffffff 0%, #f7f8fb 100%);
  transition: transform 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease;
}

.help-topic:hover {
  transform: translateY(-2px);
  border-color: rgba(37, 99, 235, 0.28);
  box-shadow: 0 14px 28px rgba(18, 20, 26, 0.06);
}

.help-topic-num {
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--blue);
}

.help-topic strong {
  font-family: var(--font-display);
  font-size: 1.08rem;
  letter-spacing: -0.02em;
}

.help-topic span:last-child {
  color: var(--muted);
  font-size: 0.94rem;
  line-height: 1.45;
}

.steps a {
  color: var(--blue);
  font-weight: 600;
}

.help-install {
  padding: 24px 0 56px;
}

.help-install-inner {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 40px;
  align-items: center;
  padding: 40px;
  border-radius: 28px;
  border: 1px solid var(--line);
  background:
    radial-gradient(90% 120% at 0% 0%, rgba(255, 229, 102, 0.3), transparent 52%),
    #f7f8fb;
}

.help-install-copy h2 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.55rem, 2.6vw, 2.1rem);
  letter-spacing: -0.03em;
  line-height: 1.15;
}

.help-install-copy > p {
  margin: 14px 0 0;
  color: var(--muted);
  line-height: 1.6;
  max-width: 40ch;
}

.help-install-copy .hero-actions {
  margin-top: 28px;
}

.help-faq {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.help-faq-item {
  padding: 26px 24px;
  border-radius: 20px;
  border: 1px solid var(--line);
  background: #fff;
}

.help-faq-item h3 {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.15rem;
  letter-spacing: -0.02em;
  line-height: 1.25;
}

.help-faq-item p:not(.product-label) {
  margin: 12px 0 0;
  color: var(--muted);
  line-height: 1.6;
}

.help-faq-item a {
  color: var(--blue);
  font-weight: 600;
}

.help-legal {
  padding: 24px 0 56px;
}

.help-legal-inner {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 36px 40px;
  border-radius: 24px;
  background: var(--accent-band);
}

.help-legal-inner h2 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 2.4vw, 1.85rem);
  letter-spacing: -0.03em;
}

.help-legal-inner p:not(.section-kicker) {
  margin: 10px 0 0;
  color: #3d3f45;
  line-height: 1.55;
  max-width: 42ch;
}

.help-legal-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 0 0 auto;
}

.help-legal-links a {
  font-weight: 700;
  color: var(--text);
  white-space: nowrap;
}

.help-legal-links a:hover {
  color: var(--blue);
}

/* Typing test page */
.typing-hero {
  position: relative;
  overflow: hidden;
  padding: 56px 0 48px;
}

.typing-hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(70% 80% at 90% 10%, rgba(37, 99, 235, 0.12), transparent 55%),
    radial-gradient(55% 70% at 8% 85%, rgba(255, 229, 102, 0.38), transparent 58%),
    linear-gradient(180deg, #f7f8fb 0%, #ffffff 74%);
  pointer-events: none;
}

.typing-hero-inner {
  position: relative;
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: 40px;
  align-items: center;
}

.typing-hero-copy h1 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  letter-spacing: -0.04em;
  line-height: 1.08;
  max-width: 16ch;
}

.typing-hero-lead {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.6;
  max-width: 42ch;
}

.typing-hero-copy .hero-actions {
  margin-top: 28px;
}

.typing-hero-frame {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 28px;
  padding: 18px;
  box-shadow: 0 24px 50px rgba(18, 20, 26, 0.08);
  animation: fadeSlide 0.85s ease both;
}

.typing-hero-frame img {
  width: 100%;
  height: auto;
  border-radius: 16px;
}

.typing-test-section {
  padding-top: 24px;
}

.typing-board {
  width: min(860px, 100%);
  margin: 0 auto;
  padding: 28px;
  border-radius: 28px;
  border: 1px solid var(--line);
  background:
    radial-gradient(100% 140% at 100% 0%, rgba(37, 99, 235, 0.06), transparent 50%),
    #f7f8fb;
}

.typing-stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin-bottom: 20px;
}

.typing-stat {
  padding: 14px 12px;
  border-radius: 16px;
  background: #fff;
  border: 1px solid var(--line);
  text-align: center;
}

.typing-stat-label {
  display: block;
  margin-bottom: 6px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
}

.typing-stat strong {
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 2.5vw, 1.75rem);
  letter-spacing: -0.03em;
}

.typing-prompt {
  min-height: 120px;
  padding: 20px 22px;
  border-radius: 18px;
  background: #fff;
  border: 1px solid var(--line);
  font-size: 1.08rem;
  line-height: 1.7;
  color: var(--muted);
  margin-bottom: 14px;
  word-break: break-word;
}

.typing-ok {
  color: var(--text);
}

.typing-bad {
  color: #dc2626;
  background: rgba(220, 38, 38, 0.1);
  border-radius: 3px;
}

.typing-remaining {
  color: #8b93a1;
}

.typing-input {
  width: 100%;
  min-height: 140px;
  resize: vertical;
  padding: 18px 20px;
  border-radius: 18px;
  border: 1.5px solid var(--line-strong);
  background: #fff;
  color: var(--text);
  font-family: var(--font-body);
  font-size: 1.05rem;
  line-height: 1.65;
  outline: none;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.typing-input:focus {
  border-color: rgba(37, 99, 235, 0.55);
  box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.12);
}

.typing-board.is-finished .typing-input {
  background: #f3f4f6;
}

.typing-toolbar {
  margin-top: 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.typing-hint {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.45;
}

.typing-toolbar-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.typing-toolbar-actions .btn {
  min-height: 44px;
  padding: 0 16px;
  font-size: 14px;
}

.typing-result {
  margin-top: 20px;
  padding: 20px 22px;
  border-radius: 18px;
  background: var(--accent-band);
}

.typing-result h3 {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.2rem;
  letter-spacing: -0.02em;
}

.typing-result p {
  margin: 8px 0 0;
  color: #3d3f45;
  line-height: 1.55;
}

.typing-best {
  font-weight: 700;
  color: var(--text) !important;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.footer-links-simple {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
}

.footer-links-simple a {
  color: var(--muted);
  font-weight: 600;
  font-size: 14px;
}

.footer-links-simple a:hover {
  color: var(--text);
}

@keyframes riseIn {
  from {
    opacity: 0;
    transform: translateY(14px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeSlide {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 960px) {
  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
    padding-top: 28px;
    gap: 32px;
  }

  .hero h1 {
    max-width: none;
  }

  .promise-inner {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .loop-grid {
    grid-template-columns: 1fr;
  }

  .product-block,
  .product-block.is-flip {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .product-block.is-flip .product-copy,
  .product-block.is-flip .product-media {
    order: initial;
  }

  .product-block--soft {
    padding: 24px;
  }

  .fitur-hero-inner {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .fitur-hero-copy h1 {
    max-width: none;
  }

  .help-hero-inner,
  .help-install-inner,
  .typing-hero-inner {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .help-hero-copy h1,
  .typing-hero-copy h1 {
    max-width: none;
  }

  .typing-stats {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .typing-board {
    padding: 20px;
  }

  .help-install-inner {
    padding: 24px;
  }

  .help-topic-grid {
    grid-template-columns: 1fr 1fr;
  }

  .help-faq {
    grid-template-columns: 1fr;
  }

  .help-legal-inner {
    flex-direction: column;
    align-items: flex-start;
    padding: 28px 24px;
  }

  .fitur-highlights {
    grid-template-columns: 1fr 1fr;
  }

  .fitur-highlights li {
    border-right: 0;
    border-bottom: 1px solid var(--line);
    padding: 18px 12px 18px 0;
  }

  .fitur-highlights li:nth-child(odd) {
    padding-right: 16px;
  }

  .fitur-highlights li:nth-last-child(-n + 2) {
    border-bottom: 0;
  }

  .steps {
    grid-template-columns: 1fr;
  }

  .steps--rich .step,
  .step {
    border-right: 0;
    border-bottom: 1px solid var(--line);
    padding: 24px;
  }

  .steps--rich .step:last-child,
  .step:last-child {
    border-bottom: 0;
  }

  .cta-band {
    flex-direction: column;
    align-items: flex-start;
    padding: 32px 24px;
  }

  .footer-inner {
    grid-template-columns: 1fr 1fr;
  }

  .footer-inner--wide {
    grid-template-columns: 1fr 1fr;
  }

  .phones-row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
  }
}

@media (max-width: 720px) {
  .footer-inner {
    grid-template-columns: 1fr;
  }

  .footer-inner--wide {
    grid-template-columns: 1fr;
  }

  .band {
    padding-top: 64px;
  }
}

/* ——— Checkout / Harga ——— */
.checkout-hero {
  padding: 56px 0 12px;
  background:
    radial-gradient(circle at 12% 0%, rgba(37, 99, 235, 0.08), transparent 42%),
    linear-gradient(180deg, #f7f8fa 0%, #ffffff 70%);
}

.checkout-hero-inner {
  width: min(var(--max), calc(100% - 32px));
  margin: 0 auto;
  max-width: 720px;
}

.checkout-hero h1 {
  margin: 10px 0 12px;
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.75rem);
  line-height: 1.12;
  letter-spacing: -0.03em;
}

.checkout-layout {
  width: min(var(--max), calc(100% - 32px));
  margin: 0 auto;
  padding: 28px 0 72px;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.9fr);
  gap: 24px;
  align-items: start;
}

.checkout-plan,
.checkout-summary {
  border: 1px solid var(--line);
  background: #fff;
  border-radius: 20px;
  padding: 28px;
}

.checkout-plan-badge {
  display: inline-flex;
  margin: 0 0 10px;
  padding: 4px 10px;
  border-radius: 999px;
  background: var(--blue-soft);
  color: var(--blue);
  font-size: 12px;
  font-weight: 700;
}

.checkout-plan h2,
.checkout-summary h2 {
  margin: 0 0 8px;
  font-family: var(--font-display);
  font-size: 1.45rem;
  letter-spacing: -0.02em;
}

.checkout-plan-desc {
  margin: 0 0 18px;
  color: var(--muted);
  line-height: 1.55;
}

.checkout-price {
  display: flex;
  align-items: baseline;
  gap: 6px;
  margin-bottom: 20px;
}

.checkout-price-currency,
.checkout-price-period {
  color: var(--muted);
  font-weight: 600;
}

.checkout-price-value {
  font-family: var(--font-display);
  font-size: 2.6rem;
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1;
}

.checkout-plan-points {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
}

.checkout-plan-points li {
  position: relative;
  padding-left: 22px;
  color: var(--text);
  line-height: 1.45;
}

.checkout-plan-points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.45em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #ff6a00;
}

.checkout-summary-list {
  margin: 0 0 18px;
  display: grid;
  gap: 12px;
}

.checkout-summary-list > div {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--line);
}

.checkout-summary-list dt {
  color: var(--muted);
  font-size: 14px;
}

.checkout-summary-list dd {
  margin: 0;
  text-align: right;
  font-weight: 600;
}

.checkout-summary-total dt,
.checkout-summary-total dd {
  color: var(--text);
  font-size: 1.05rem;
  font-weight: 700;
}

.checkout-steps {
  margin: 0 0 20px;
  padding-left: 18px;
  color: var(--muted);
  line-height: 1.55;
  font-size: 14px;
}

.checkout-actions {
  display: grid;
  gap: 10px;
}

.checkout-note {
  margin: 14px 0 0;
  font-size: 13px;
  line-height: 1.5;
  color: var(--muted);
}

@media (max-width: 860px) {
  .checkout-layout {
    grid-template-columns: 1fr;
  }
}

/* ===== Home redesign (Batch 1) ===== */
.home-hero {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
  padding: 48px 0 0;
  display: grid;
  gap: 40px;
  justify-items: center;
  text-align: center;
}

.home-hero-copy {
  max-width: 52rem;
  margin: 0 auto;
  animation: riseIn 0.7s ease both;
}

.home-brand {
  margin: 0 0 14px;
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.6rem);
  font-weight: 650;
  letter-spacing: -0.03em;
  line-height: 1;
  color: var(--text);
}

.home-hero-copy h1 {
  margin: 0 auto;
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 4vw, 3rem);
  font-weight: 600;
  letter-spacing: -0.035em;
  line-height: 1.2;
  color: var(--text);
  max-width: min(920px, 100%);
}

.hero-rotate {
  display: inline;
  color: var(--accent);
  transition: opacity 0.28s ease, transform 0.28s ease;
  will-change: opacity, transform;
}

.hero-rotate.is-out {
  opacity: 0;
  transform: translateY(0.25em);
}

.hero-rotate.is-in {
  opacity: 1;
  transform: translateY(0);
}

.home-lead {
  margin: 18px auto 0;
  max-width: 46ch;
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.55;
}

.home-actions {
  margin-top: 26px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}

.hero-feature-rail {
  list-style: none;
  margin: 28px auto 0;
  padding: 0;
  display: flex;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: center;
  gap: 6px 18px;
  max-width: 980px;
  overflow-x: auto;
  pointer-events: none;
  user-select: none;
  -webkit-overflow-scrolling: touch;
}

.hero-feature-rail li {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 2px;
  color: #5b6472;
  font-size: 13px;
  font-weight: 500;
  white-space: nowrap;
  letter-spacing: -0.01em;
}

.hero-feature-ico {
  width: 20px;
  height: 20px;
  display: grid;
  place-items: center;
  color: #5b6472;
  flex-shrink: 0;
}

@media (max-width: 720px) {
  .hero-feature-rail {
    justify-content: flex-start;
    padding: 0 8px;
    gap: 6px 14px;
  }

  .hero-feature-rail li {
    font-size: 12px;
  }
}

.home-hero-visual {
  margin: 0 calc(50% - 50vw);
  width: 100vw;
  background: linear-gradient(180deg, transparent 0%, var(--bg-soft) 28%, var(--bg-soft) 100%);
  padding: 8px 0 0;
  animation: fadeSlide 0.9s ease 0.06s both;
}

.home-hero-visual-inner {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
}

.home-hero-visual img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 16px 16px 0 0;
  box-shadow: 0 20px 48px rgba(20, 24, 31, 0.1);
}

.home-product {
  background: var(--bg-soft);
  padding: 72px 0;
}

.home-product-inner {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 40px;
  align-items: center;
}

.home-product-copy h2 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 2.8vw, 2.15rem);
  letter-spacing: -0.03em;
  line-height: 1.15;
}

.home-product-copy p {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 1.02rem;
  line-height: 1.55;
  max-width: 36ch;
}

.home-product-media {
  animation: fadeSlide 0.85s ease both;
}

.home-product-media img {
  width: 100%;
  height: auto;
  border-radius: 14px;
  border: 1px solid var(--line);
  box-shadow: 0 16px 40px rgba(20, 24, 31, 0.08);
}

.home-points {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
  padding: 72px 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 32px;
  border-bottom: 1px solid var(--line);
}

.home-points h3 {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.2rem;
  letter-spacing: -0.02em;
}

.home-points p {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 0.98rem;
  line-height: 1.5;
}

.home-cta {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
  padding: 64px 0 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.home-cta h2 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 2.6vw, 2rem);
  letter-spacing: -0.03em;
}

.home-cta p {
  margin: 8px 0 0;
  color: var(--muted);
  max-width: 42ch;
  line-height: 1.5;
}

.home-cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

/* ===== Pricing page ===== */
.price-hero {
  padding: 48px 0 8px;
  text-align: center;
}

.price-hero-inner {
  width: min(640px, calc(100% - 40px));
  margin: 0 auto;
}

.price-hero .home-brand {
  margin-bottom: 10px;
  font-size: clamp(1.6rem, 3vw, 2rem);
}

.price-hero h1 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.85rem, 3.4vw, 2.5rem);
  letter-spacing: -0.03em;
  font-weight: 600;
  line-height: 1.15;
}

.price-hero .home-lead {
  margin: 14px auto 0;
  max-width: 46ch;
}

.price-grid {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
  padding: 28px 0 48px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  align-items: stretch;
}

.price-card {
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #fff;
  padding: 22px 18px 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  text-align: left;
  position: relative;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.price-card:hover {
  border-color: rgba(228, 87, 46, 0.35);
  box-shadow: 0 10px 28px rgba(20, 24, 31, 0.05);
}

.price-card.is-popular {
  border-color: rgba(228, 87, 46, 0.45);
  background: linear-gradient(180deg, #fffaf8 0%, #fff 42%);
}

.price-badge {
  position: absolute;
  top: -10px;
  right: 14px;
  background: var(--accent);
  color: #fff;
  font-size: 11px;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 6px;
  letter-spacing: 0.02em;
}

.price-card h2 {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 600;
}

.price-desc {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  min-height: 34px;
  line-height: 1.4;
}

.price-was {
  font-size: 13px;
  color: var(--muted);
  text-decoration: line-through;
  font-weight: 500;
}

.price-amount {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 650;
  letter-spacing: -0.02em;
  line-height: 1.1;
}

.price-promo-tag {
  display: inline-block;
  width: fit-content;
  font-size: 11px;
  font-weight: 600;
  color: var(--accent);
  background: var(--accent-soft);
  padding: 3px 8px;
  border-radius: 6px;
}

.price-eff {
  color: var(--muted);
  font-size: 12px;
  font-weight: 500;
}

.price-card ul {
  margin: 4px 0 8px;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 7px;
  flex: 1;
}

.price-card li {
  position: relative;
  padding-left: 16px;
  font-size: 13px;
  line-height: 1.4;
  color: var(--text);
}

.price-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.45em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
}

.price-card .btn {
  width: 100%;
  min-height: 44px;
  margin-top: 4px;
  justify-content: center;
}

.price-note {
  width: min(640px, calc(100% - 40px));
  margin: 0 auto 64px;
  text-align: center;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
}

.price-note a {
  color: var(--blue);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.footer-bar {
  display: none;
}

.site-footer .footer-brand p {
  max-width: 32ch;
}

@media (max-width: 980px) {
  .home-product-inner {
    grid-template-columns: 1fr;
  }

  .home-points {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 48px 0;
  }

  .price-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 560px) {
  .price-grid {
    grid-template-columns: 1fr;
  }

  .home-hero {
    padding-top: 24px;
  }
}

/* ===== Live reach map (canvas cinematic) ===== */
.live-reach {
  padding: 36px 0 64px;
  background: transparent;
}

.live-reach-inner {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
}

.live-reach-intro {
  max-width: 42rem;
  margin: 0 auto 32px;
  text-align: center;
}

.live-reach-kicker {
  margin: 0 0 12px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
}

.live-reach-intro h2 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.55rem, 3vw, 2.2rem);
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 1.2;
  color: var(--text);
}

.live-reach-intro p {
  margin: 14px auto 0;
  max-width: 48ch;
  color: var(--muted);
  font-size: 1.02rem;
  line-height: 1.55;
}

.live-reach-meta {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
  margin: 0 auto 6px;
  width: min(980px, 100%);
  flex-wrap: wrap;
}

.live-reach-meta span:first-child {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}

.live-reach-meta span:last-child {
  font-size: 13px;
  font-weight: 500;
  color: #2f6b4f;
}

.live-reach-stage {
  position: relative;
  width: min(980px, 100%);
  margin: 0 auto;
  border: 0;
  background: transparent;
  overflow: visible;
}

.live-reach-stage canvas {
  display: block;
  width: 100%;
  height: auto;
}

.live-pins {
  list-style: none;
  margin: 0;
  padding: 0;
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 2;
}

.live-pin {
  position: absolute;
  left: var(--x);
  top: var(--y);
  transform: translate(-50%, -50%);
  display: flex;
  align-items: center;
  gap: 8px;
}

.live-pin-dot {
  position: relative;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #2f6b4f;
  box-shadow: 0 0 0 0 rgba(47, 107, 79, 0.45);
  animation: livePulse 2.2s ease-out var(--d, 0s) infinite;
  flex-shrink: 0;
}

.live-pin-dot::after {
  content: "";
  position: absolute;
  inset: -5px;
  border-radius: 50%;
  border: 1.5px solid rgba(47, 107, 79, 0.35);
  animation: liveRing 2.2s ease-out var(--d, 0s) infinite;
}

.live-pin-label {
  padding: 5px 9px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(20, 24, 31, 0.08);
  color: var(--text);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.01em;
  box-shadow: 0 8px 20px rgba(20, 24, 31, 0.08);
  white-space: nowrap;
}

.live-pin.is-focus .live-pin-dot {
  background: var(--accent);
  box-shadow: 0 0 0 0 rgba(228, 87, 46, 0.45);
}

.live-pin.is-focus .live-pin-dot::after {
  border-color: rgba(228, 87, 46, 0.35);
}

.live-pin.is-focus .live-pin-label {
  border-color: rgba(228, 87, 46, 0.3);
  color: var(--accent);
}

.live-reach-foot {
  margin-top: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  text-align: center;
}

.live-reach-foot p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  font-weight: 500;
}

.live-reach-pulse {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #2f6b4f;
  flex-shrink: 0;
  animation: livePulse 2s ease-out infinite;
}

@keyframes livePulse {
  0% {
    box-shadow: 0 0 0 0 rgba(47, 107, 79, 0.5);
    transform: scale(1);
  }
  70% {
    box-shadow: 0 0 0 12px rgba(47, 107, 79, 0);
    transform: scale(1.05);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(47, 107, 79, 0);
    transform: scale(1);
  }
}

@keyframes liveRing {
  0% {
    transform: scale(0.7);
    opacity: 0.8;
  }
  100% {
    transform: scale(2.2);
    opacity: 0;
  }
}

@media (max-width: 720px) {
  .live-pin-label {
    font-size: 11px;
    padding: 4px 7px;
  }

  .live-pin:nth-child(2) .live-pin-label,
  .live-pin:nth-child(4) .live-pin-label,
  .live-pin:nth-child(7) .live-pin-label,
  .live-pin:nth-child(9) .live-pin-label {
    display: none;
  }

  .live-reach-foot p {
    font-size: 13px;
    max-width: 34ch;
  }
}

/* ===== Problem split (fragmented tools) ===== */
.problem-split {
  padding: 40px 0 72px;
  background:
    radial-gradient(900px 420px at 12% 20%, rgba(47, 107, 79, 0.06), transparent 60%),
    radial-gradient(800px 380px at 90% 70%, rgba(228, 87, 46, 0.07), transparent 55%),
    #fbfaf8;
}

.problem-split-inner {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 40px;
  align-items: center;
}

.problem-kicker {
  margin: 0 0 12px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #2f6b4f;
}

.problem-copy h2 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 3.2vw, 2.4rem);
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 1.15;
  color: var(--text);
}

.problem-copy p {
  margin: 16px 0 0;
  max-width: 38ch;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.55;
}

.problem-visual {
  position: relative;
  min-height: 360px;
}

.problem-lines {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.6s ease;
}

.problem-visual.is-inview .problem-lines {
  opacity: 1;
}

.problem-spokes path {
  stroke-dasharray: 6 7;
  stroke-dashoffset: 0;
}

.problem-visual.is-inview .problem-spokes path {
  animation: problemDash 1.35s linear infinite;
}

.problem-visual.is-inview .problem-spokes path:nth-child(2) {
  animation-delay: 0.15s;
}
.problem-visual.is-inview .problem-spokes path:nth-child(3) {
  animation-delay: 0.3s;
}
.problem-visual.is-inview .problem-spokes path:nth-child(4) {
  animation-delay: 0.45s;
}
.problem-visual.is-inview .problem-spokes path:nth-child(5) {
  animation-delay: 0.6s;
}

.problem-node--hub {
  transform-box: fill-box;
  transform-origin: center;
}

.problem-visual.is-inview .problem-node--hub {
  animation: problemHubPulse 2.4s ease-in-out infinite;
}

.problem-card {
  position: absolute;
  left: var(--x);
  top: var(--y);
  width: min(210px, 48%);
  opacity: 0;
  transform: translate3d(0, 18px, 0) scale(0.96);
  transition:
    opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: var(--enter, 0s);
  z-index: 1;
}

.problem-visual.is-inview .problem-card {
  opacity: 1;
  transform: translate3d(0, 0, 0) scale(1);
}

.problem-card.is-center {
  width: min(230px, 54%);
  z-index: 2;
}

.problem-card-face {
  position: relative;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  border-radius: 18px;
  background: #fff;
  border: 1px solid rgba(20, 24, 31, 0.06);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.8) inset,
    0 14px 34px rgba(20, 24, 31, 0.08);
  transform: rotate(var(--r));
  will-change: transform, box-shadow;
}

.problem-visual.is-inview .problem-card-face {
  animation: problemFloat 5.8s ease-in-out var(--d) infinite;
}

.problem-visual.is-inview .problem-card.is-center .problem-card-face {
  animation-name: problemFloatCenter;
  animation-duration: 6.4s;
}

.problem-card-text {
  min-width: 0;
}

.problem-card-text strong {
  display: block;
  font-size: 14px;
  font-weight: 650;
  color: var(--text);
  letter-spacing: -0.01em;
  line-height: 1.25;
}

.problem-card-text span {
  display: block;
  margin-top: 3px;
  font-size: 12px;
  color: var(--muted);
  font-weight: 500;
  line-height: 1.3;
}

.problem-ico {
  position: relative;
  width: 40px;
  height: 40px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  color: #fff;
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.22) inset,
    0 6px 14px rgba(20, 24, 31, 0.12);
}

.problem-ico svg {
  display: block;
}

.problem-ico i {
  position: absolute;
  top: -7px;
  right: -7px;
  min-width: 18px;
  height: 18px;
  padding: 0 5px;
  border-radius: 999px;
  background: #e4572e;
  color: #fff;
  font-style: normal;
  font-size: 10px;
  font-weight: 700;
  display: grid;
  place-items: center;
  line-height: 1;
  box-shadow: 0 0 0 2px #fff;
  transform-origin: center;
}

.problem-visual.is-inview .problem-ico i {
  animation: problemBadge 2.6s ease-in-out infinite;
}

.problem-ico--green {
  background: linear-gradient(160deg, #4aaf7d 0%, #2f8a5c 100%);
}
.problem-ico--blue {
  background: linear-gradient(160deg, #5d8ee0 0%, #3d6fc2 100%);
}
.problem-ico--coral {
  background: linear-gradient(160deg, #ef6a42 0%, #d44720 100%);
}
.problem-ico--violet {
  background: linear-gradient(160deg, #8a7ae3 0%, #6556c4 100%);
}
.problem-ico--amber {
  background: linear-gradient(160deg, #e3b04d 0%, #c48e2c 100%);
}
.problem-ico--plum {
  background: linear-gradient(160deg, #9a6fcb 0%, #7548a8 100%);
}

.problem-dot {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #e8b84a;
  margin: 0;
  box-shadow: 0 0 0 0 rgba(232, 184, 74, 0.45);
}

.problem-visual.is-inview .problem-dot {
  animation: problemDot 2.2s ease-in-out infinite;
}

@keyframes problemFloat {
  0%,
  100% {
    transform: rotate(var(--r)) translate3d(0, 0, 0);
    box-shadow:
      0 1px 0 rgba(255, 255, 255, 0.8) inset,
      0 14px 34px rgba(20, 24, 31, 0.08);
  }
  50% {
    transform: rotate(var(--r)) translate3d(0, -10px, 0);
    box-shadow:
      0 1px 0 rgba(255, 255, 255, 0.85) inset,
      0 22px 44px rgba(20, 24, 31, 0.13);
  }
}

@keyframes problemDash {
  to {
    stroke-dashoffset: -13;
  }
}

@keyframes problemFloatCenter {
  0%,
  100% {
    transform: rotate(var(--r)) translate3d(0, 0, 0);
    box-shadow:
      0 1px 0 rgba(255, 255, 255, 0.85) inset,
      0 18px 42px rgba(20, 24, 31, 0.12);
  }
  50% {
    transform: rotate(var(--r)) translate3d(0, -8px, 0);
    box-shadow:
      0 1px 0 rgba(255, 255, 255, 0.9) inset,
      0 26px 48px rgba(20, 24, 31, 0.16);
  }
}

@keyframes problemHubPulse {
  0%,
  100% {
    transform: scale(1);
    opacity: 0.45;
  }
  50% {
    transform: scale(1.45);
    opacity: 0.8;
  }
}

@keyframes problemBadge {
  0%,
  100% {
    transform: scale(1);
  }
  45% {
    transform: scale(1.08);
  }
  60% {
    transform: scale(0.96);
  }
}

@keyframes problemDot {
  0%,
  100% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(232, 184, 74, 0.4);
  }
  50% {
    transform: scale(1.15);
    box-shadow: 0 0 0 6px rgba(232, 184, 74, 0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .problem-card,
  .problem-lines {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }

  .problem-card-face,
  .problem-spokes path,
  .problem-node--hub,
  .problem-ico i,
  .problem-dot {
    animation: none !important;
  }

  .problem-card-face {
    transform: rotate(var(--r));
  }
}

@media (max-width: 900px) {
  .problem-split-inner {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .problem-visual {
    min-height: 320px;
    max-width: 480px;
    margin: 0 auto;
  }
}

@media (max-width: 560px) {
  .problem-card {
    width: min(180px, 46%);
  }

  .problem-card-face {
    padding: 12px;
    gap: 10px;
  }

  .problem-card-text strong {
    font-size: 13px;
  }

  .problem-ico {
    width: 34px;
    height: 34px;
    border-radius: 10px;
  }

  .problem-ico svg {
    width: 16px;
    height: 16px;
  }
}

/* ===== Audience carousel ===== */
.audience {
  padding: 56px 0 72px;
  background: #fff;
}

.audience-intro {
  width: min(720px, calc(100% - 40px));
  margin: 0 auto 36px;
  text-align: center;
}

.audience-intro h2 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.25rem);
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 1.18;
}

.audience-intro p {
  margin: 14px auto 0;
  max-width: 46ch;
  color: var(--muted);
  font-size: 1.02rem;
  line-height: 1.55;
}

.audience-carousel {
  width: 100%;
}

.audience-viewport {
  position: relative;
  width: 100%;
  overflow: hidden;
  padding: 8px 0 20px;
}

.audience-track {
  position: relative;
  height: clamp(240px, 42vw, 420px);
}

.audience-slide {
  position: absolute;
  top: 0;
  left: 50%;
  width: min(760px, 72vw);
  height: 100%;
  border-radius: 18px;
  overflow: hidden;
  transform: translateX(-50%) scale(0.86);
  opacity: 0;
  filter: saturate(0.75) brightness(0.92);
  transition: transform 0.55s ease, opacity 0.45s ease, filter 0.45s ease;
  pointer-events: none;
  box-shadow: 0 18px 40px rgba(20, 24, 31, 0.12);
}

.audience-slide.is-active {
  z-index: 3;
  opacity: 1;
  transform: translateX(-50%) scale(1);
  filter: none;
  pointer-events: auto;
}

.audience-slide.is-prev {
  z-index: 2;
  opacity: 0.55;
  transform: translateX(calc(-50% - min(520px, 48vw))) scale(0.88);
}

.audience-slide.is-next {
  z-index: 2;
  opacity: 0.55;
  transform: translateX(calc(-50% + min(520px, 48vw))) scale(0.88);
}

.audience-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.audience-label {
  position: absolute;
  left: 16px;
  bottom: 16px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(20, 24, 31, 0.72);
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.audience-nav {
  position: absolute;
  top: 50%;
  z-index: 5;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 50%;
  background: #fff;
  color: var(--text);
  display: grid;
  place-items: center;
  cursor: pointer;
  box-shadow: 0 10px 24px rgba(20, 24, 31, 0.12);
  transform: translateY(-50%);
}

.audience-nav:hover {
  background: #f7f7f8;
}

.audience-nav--prev {
  left: max(12px, calc(50% - min(420px, 40vw) - 28px));
}

.audience-nav--next {
  right: max(12px, calc(50% - min(420px, 40vw) - 28px));
}

.audience-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 8px;
}

.audience-dot {
  width: 8px;
  height: 8px;
  border: 0;
  border-radius: 50%;
  background: #d4d8de;
  cursor: pointer;
  padding: 0;
}

.audience-dot.is-active {
  background: var(--accent);
}

.audience-note {
  margin: 18px auto 0;
  text-align: center;
  color: var(--muted);
  font-size: 14px;
  max-width: 42ch;
}

@media (max-width: 720px) {
  .audience-slide {
    width: min(88vw, 420px);
  }

  .audience-slide.is-prev {
    transform: translateX(calc(-50% - 62vw)) scale(0.9);
  }

  .audience-slide.is-next {
    transform: translateX(calc(-50% + 62vw)) scale(0.9);
  }

  .audience-nav--prev {
    left: 10px;
  }

  .audience-nav--next {
    right: 10px;
  }
}

/* ===== FAQ ===== */
.faq {
  padding: 64px 0 72px;
  background:
    radial-gradient(900px 400px at 8% 0%, rgba(47, 107, 79, 0.05), transparent 55%),
    radial-gradient(800px 360px at 92% 100%, rgba(228, 87, 46, 0.05), transparent 50%),
    #fbfaf8;
}

.faq-inner {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(220px, 0.85fr) minmax(0, 1.35fr);
  gap: 48px;
  align-items: start;
}

.faq-side h2 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.55rem, 2.8vw, 2.1rem);
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 1.2;
}

.faq-cat-label {
  margin: 28px 0 10px;
  font-size: 11px;
  font-weight: 650;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}

.faq-cats {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 2px;
}

.faq-cats button {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  border: 0;
  background: transparent;
  padding: 10px 12px;
  border-radius: 10px;
  color: var(--text);
  font: inherit;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  text-align: left;
  position: relative;
}

.faq-cats button span:last-child {
  color: var(--muted);
  font-size: 13px;
}

.faq-cats button.is-active {
  background: rgba(228, 87, 46, 0.08);
  font-weight: 600;
}

.faq-cats button.is-active::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  bottom: 10px;
  width: 3px;
  border-radius: 2px;
  background: var(--accent);
}

.faq-help {
  margin: 28px 0 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.5;
}

.faq-help a {
  display: inline-block;
  margin-top: 4px;
  color: var(--accent);
  font-weight: 600;
  text-decoration: none;
}

.faq-help a:hover {
  text-decoration: underline;
  text-underline-offset: 3px;
}

.faq-list {
  border-top: 1px solid var(--line);
}

.faq-item {
  border-bottom: 1px solid var(--line);
}

.faq-item[hidden] {
  display: none;
}

.faq-q {
  width: 100%;
  display: grid;
  grid-template-columns: 40px 1fr 28px;
  gap: 12px;
  align-items: center;
  border: 0;
  background: transparent;
  padding: 18px 4px;
  cursor: pointer;
  text-align: left;
  font: inherit;
  color: var(--text);
}

.faq-num {
  color: #9aa3af;
  font-size: 13px;
  font-weight: 600;
}

.faq-q-text {
  font-size: 1.02rem;
  font-weight: 650;
  letter-spacing: -0.015em;
  line-height: 1.35;
}

.faq-toggle {
  width: 22px;
  height: 22px;
  position: relative;
  justify-self: end;
}

.faq-toggle::before,
.faq-toggle::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  background: #8b93a0;
  transform: translate(-50%, -50%);
}

.faq-toggle::before {
  width: 14px;
  height: 1.5px;
}

.faq-toggle::after {
  width: 1.5px;
  height: 14px;
}

.faq-item.is-open .faq-q-text,
.faq-item.is-open .faq-num {
  color: var(--accent);
}

.faq-item.is-open .faq-toggle::before,
.faq-item.is-open .faq-toggle::after {
  background: var(--accent);
}

.faq-item.is-open .faq-toggle::after {
  display: none;
}

.faq-a {
  display: none;
  padding: 0 44px 18px 52px;
}

.faq-item.is-open .faq-a {
  display: block;
}

.faq-a p {
  margin: 0;
  color: var(--muted);
  font-size: 0.98rem;
  line-height: 1.55;
  max-width: 56ch;
}

@media (max-width: 860px) {
  .faq-inner {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .faq-cats {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

/* ===== Mobile nav toggle ===== */
.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  margin: 0;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fff;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  flex-shrink: 0;
  transition: background 0.2s ease, border-color 0.2s ease;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  border-radius: 2px;
  background: var(--text);
  transition: transform 0.25s ease, opacity 0.2s ease;
  transform-origin: center;
}

.nav-toggle:hover {
  background: var(--bg-soft);
}

.site-header.nav-open .nav-toggle span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.site-header.nav-open .nav-toggle span:nth-child(2) {
  opacity: 0;
}

.site-header.nav-open .nav-toggle span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ===== Phone polish ===== */
@media (max-width: 720px) {
  body.nav-open {
    overflow: hidden;
  }

  .nav-inner {
    width: min(100%, calc(100% - 28px));
    min-height: 60px;
    gap: 12px;
  }

  .brand img {
    width: 124px;
  }

  .nav-toggle {
    display: inline-flex;
    margin-left: auto;
    z-index: 60;
  }

  .nav-links {
    position: fixed;
    inset: 0 0 auto 0;
    top: 0;
    padding: 76px 20px 24px;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(18px);
    border-bottom: 1px solid var(--line);
    box-shadow: 0 24px 48px rgba(20, 24, 31, 0.1);
    transform: translateY(-110%);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.25s ease;
    z-index: 55;
  }

  .site-header.nav-open .nav-links {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .nav-links a {
    display: flex;
    align-items: center;
    min-height: 48px;
    padding: 12px 14px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 12px;
    color: var(--text);
  }

  .nav-links .nav-login {
    margin-left: 0;
    margin-top: 8px;
    border: 1px solid var(--line);
    justify-content: center;
  }

  .nav-links .nav-cta {
    margin-left: 0;
    margin-top: 4px;
    justify-content: center;
    padding: 12px 16px;
  }

  .home-hero {
    width: min(100%, calc(100% - 28px));
    padding: 28px 0 0;
    gap: 28px;
  }

  .home-hero-copy h1 {
    font-size: clamp(1.55rem, 7.2vw, 2rem);
    line-height: 1.22;
  }

  .home-lead {
    margin-top: 14px;
    font-size: 0.98rem;
    max-width: 34ch;
  }

  .home-actions {
    margin-top: 22px;
    width: 100%;
    flex-direction: column;
  }

  .home-actions .btn {
    width: 100%;
    justify-content: center;
  }

  .hero-feature-rail {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px 10px;
    overflow: visible;
    padding: 0;
    max-width: 100%;
    margin-top: 22px;
  }

  .hero-feature-rail li {
    justify-content: flex-start;
    white-space: normal;
    font-size: 12px;
    padding: 8px 10px;
    border-radius: 12px;
    background: rgba(20, 24, 31, 0.03);
    border: 1px solid rgba(20, 24, 31, 0.05);
  }

  .home-hero-visual-inner {
    width: min(100%, calc(100% - 28px));
  }

  .home-hero-visual img {
    border-radius: 14px 14px 0 0;
    box-shadow: 0 14px 32px rgba(20, 24, 31, 0.1);
  }

  .live-reach,
  .problem-split,
  .audience,
  .faq {
    padding-left: 0;
    padding-right: 0;
  }

  .live-reach {
    padding-top: 28px;
    padding-bottom: 48px;
  }

  .live-reach-inner,
  .problem-split-inner,
  .faq-inner,
  .home-product-inner,
  .home-cta,
  .cta-band,
  .checkout-hero-inner,
  .checkout-layout,
  .fitur-hero-inner,
  .help-hero-inner,
  .typing-hero-inner {
    width: min(100%, calc(100% - 28px));
  }

  .live-reach-intro {
    margin-bottom: 22px;
    text-align: left;
  }

  .live-reach-intro p {
    margin-left: 0;
  }

  .live-reach-meta {
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
  }

  .problem-split {
    padding-top: 28px;
    padding-bottom: 52px;
  }

  .problem-split-inner {
    gap: 22px;
  }

  .problem-copy p {
    max-width: none;
    font-size: 0.98rem;
  }

  .problem-visual {
    min-height: 0;
    display: grid;
    gap: 10px;
  }

  .problem-lines {
    display: none;
  }

  .problem-card {
    position: relative;
    left: auto !important;
    top: auto !important;
    width: 100%;
    opacity: 1;
    transform: none;
    transition: none;
  }

  .problem-card.is-center {
    width: 100%;
  }

  .problem-card-face {
    transform: none !important;
    animation: none !important;
    padding: 12px 14px;
    border-radius: 14px;
    box-shadow: 0 8px 22px rgba(20, 24, 31, 0.06);
  }

  .problem-visual.is-inview .problem-card {
    opacity: 1;
    transform: none;
  }

  .problem-visual.is-inview .problem-card-face,
  .problem-visual.is-inview .problem-card.is-center .problem-card-face,
  .problem-visual.is-inview .problem-ico i,
  .problem-visual.is-inview .problem-dot {
    animation: none !important;
  }

  .audience {
    padding: 40px 0 52px;
  }

  .audience-intro {
    width: min(100%, calc(100% - 28px));
    margin-bottom: 24px;
    text-align: left;
  }

  .audience-note {
    text-align: left;
    margin-left: auto;
    margin-right: auto;
    width: min(100%, calc(100% - 28px));
  }

  .faq {
    padding: 44px 0 56px;
  }

  .faq-cats {
    display: flex;
    gap: 8px;
    overflow-x: auto;
    padding-bottom: 4px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }

  .faq-cats::-webkit-scrollbar {
    display: none;
  }

  .faq-cats button {
    width: auto;
    flex: 0 0 auto;
    white-space: nowrap;
    min-height: 42px;
    padding: 10px 14px;
    border: 1px solid var(--line);
    background: #fff;
    border-radius: 999px;
  }

  .faq-cats button.is-active {
    background: rgba(228, 87, 46, 0.1);
    border-color: rgba(228, 87, 46, 0.28);
  }

  .faq-cats button.is-active::before {
    display: none;
  }

  .faq-cats button span:last-child {
    display: none;
  }

  .home-cta {
    flex-direction: column;
    align-items: stretch;
    padding: 40px 0 64px;
    gap: 18px;
  }

  .home-cta-actions {
    flex-direction: column;
  }

  .home-cta-actions .btn,
  .cta-actions .btn,
  .hero-actions .btn {
    width: 100%;
    justify-content: center;
  }

  .cta-band {
    margin-bottom: 56px;
    padding: 24px 20px;
    border-radius: 18px;
  }

  .cta-actions {
    width: 100%;
    flex-direction: column;
  }

  .price-grid {
    width: min(100%, calc(100% - 28px));
    gap: 14px;
  }

  .price-card {
    padding: 20px;
    border-radius: 16px;
  }

  .checkout-hero {
    padding: 36px 0 8px;
  }

  .checkout-layout {
    padding: 20px 0 56px;
    gap: 16px;
  }

  .checkout-plan,
  .checkout-summary {
    padding: 20px;
    border-radius: 16px;
  }

  .site-footer {
    padding-bottom: max(24px, env(safe-area-inset-bottom));
  }

  .footer-inner,
  .footer-inner--wide {
    width: min(100%, calc(100% - 28px));
    padding-top: 40px;
    gap: 28px;
  }

  .footer-col h4 {
    margin-bottom: 10px;
  }

  .footer-copy {
    width: min(100%, calc(100% - 28px));
    padding: 20px 0 8px;
    font-size: 12px;
  }

  .help-topic-grid {
    grid-template-columns: 1fr;
  }

  .fitur-highlights {
    grid-template-columns: 1fr;
  }

  .fitur-highlights li,
  .fitur-highlights li:nth-child(odd),
  .fitur-highlights li:nth-last-child(-n + 2) {
    border-bottom: 1px solid var(--line);
    padding: 16px 0;
  }

  .fitur-highlights li:last-child {
    border-bottom: 0;
  }

  .typing-stats {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }

  .btn {
    min-height: 46px;
  }
}

@media (max-width: 480px) {
  .nav-inner {
    width: min(100%, calc(100% - 20px));
  }

  .brand img {
    width: 112px;
  }

  .home-hero,
  .home-hero-visual-inner,
  .live-reach-inner,
  .problem-split-inner,
  .faq-inner,
  .home-cta,
  .audience-intro,
  .footer-inner,
  .footer-inner--wide,
  .footer-copy,
  .checkout-hero-inner,
  .checkout-layout,
  .price-grid {
    width: min(100%, calc(100% - 20px));
  }

  .hero-feature-rail {
    grid-template-columns: 1fr;
  }

  .problem-card-text strong {
    font-size: 13px;
  }

  .problem-ico {
    width: 36px;
    height: 36px;
  }

  .live-pin-label {
    display: none;
  }

  .audience-slide {
    width: min(92vw, 420px);
  }
}

@supports (padding: max(0px)) {
  .site-header .nav-inner {
    padding-left: env(safe-area-inset-left);
    padding-right: env(safe-area-inset-right);
  }
}


