/* BukuLaundry — gaya ala Stripe */
:root {
  --ink: #0a2540;
  --body: #425466;
  --muted: #697386;
  --line: #e3e8ee;
  --alt: #f6f9fc;
  --accent: #635bff;
  --cyan: #00d4ff;
  --pos: #09825d;
  --neg: #cd3d64;
  --radius: 12px;
  --shadow-card: 0 50px 100px -20px rgba(50, 50, 93, .25), 0 30px 60px -30px rgba(0, 0, 0, .3);
  --shadow-sm: 0 2px 5px -1px rgba(50, 50, 93, .25), 0 1px 3px -1px rgba(0, 0, 0, .3);
  --gutter: clamp(16px, 5vw, 40px);
  --font: 'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
  color-scheme: light;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0; font-family: var(--font); font-size: 17px; line-height: 1.6;
  color: var(--body); background: #fff; -webkit-font-smoothing: antialiased;
  font-feature-settings: 'ss01', 'cv11';
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
h1, h2, h3 { margin: 0; color: var(--ink); }
p { margin: 0; }
:focus-visible { outline: 2px solid var(--accent); outline-offset: 3px; border-radius: 6px; }

.wrap { width: 100%; max-width: 1180px; margin: 0 auto; padding-inline: var(--gutter); }
.skip { position: absolute; left: -999px; top: 8px; background: var(--ink); color: #fff; padding: 8px 12px; border-radius: 8px; z-index: 100; }
.skip:focus { left: 8px; }

/* ---------- arrow (hover ala Stripe) ---------- */
.arrow { display: inline-block; width: 10px; height: 10px; margin-left: 6px; }
.arrow svg { width: 10px; height: 10px; overflow: visible; fill: none; stroke: currentColor; stroke-width: 2; }
.arrow-line { opacity: 0; transition: opacity .15s; }
.arrow-head { transition: transform .15s; }
a:hover .arrow-line, button:hover .arrow-line { opacity: 1; }
a:hover .arrow-head, button:hover .arrow-head { transform: translateX(3px); }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  height: 40px; padding: 0 16px; border-radius: 999px; border: 0;
  font: 600 15px/1 var(--font); white-space: nowrap; cursor: pointer;
  transition: background .15s, color .15s, box-shadow .15s;
}
.btn-lg { height: 46px; padding: 0 20px; font-size: 16px; }
.btn-block { width: 100%; }
.btn-primary { background: var(--accent); color: #fff; }
.btn-primary:hover { background: var(--ink); }
.btn-secondary { background: var(--alt); color: var(--ink); box-shadow: inset 0 0 0 1px var(--line); }
.btn-secondary:hover { background: #fff; box-shadow: inset 0 0 0 1px #c1c9d2; }
.btn-ghost { background: transparent; color: var(--ink); padding-inline: 12px; }
.btn-ghost:hover { color: var(--accent); }

/* ---------- nav ---------- */
.nav { position: sticky; top: 0; z-index: 50; background: rgba(255, 255, 255, .85); backdrop-filter: saturate(180%) blur(12px); transition: box-shadow .2s; }
.nav.scrolled { box-shadow: 0 1px 0 var(--line); }
.nav-inner { display: flex; align-items: center; gap: 32px; height: 68px; }
.logo { display: inline-flex; align-items: center; gap: 9px; font-weight: 700; font-size: 19px; letter-spacing: -0.02em; color: var(--ink); }
.logo img { border-radius: 7px; }
.logo-sm { font-size: 16px; }
.nav-links { display: flex; gap: 28px; }
.nav-links a { font-weight: 500; font-size: 15px; color: var(--ink); }
.nav-links a:hover { color: var(--muted); }
.nav-actions { margin-left: auto; }
.nav-login { display: inline-flex; align-items: center; height: 36px; padding: 0 14px; border-radius: 999px; font-weight: 600; font-size: 15px; background: var(--alt); color: var(--ink); }
.nav-login:hover { background: #e9eef4; }

/* ---------- hero ---------- */
.hero { position: relative; overflow: hidden; padding-block: clamp(36px, 7vw, 88px) clamp(80px, 12vw, 150px); }
.hero-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(24px, 4vw, 56px); align-items: center; }
.announce {
  display: inline-flex; align-items: center; gap: 10px; margin-bottom: 26px;
  padding: 5px 14px 5px 5px; border-radius: 999px; background: var(--alt);
  font-size: 14px; font-weight: 500; color: var(--ink);
}
.announce b { background: var(--accent); color: #fff; font-size: 12px; font-weight: 600; padding: 3px 9px; border-radius: 999px; }
.announce:hover { background: #e9eef4; }
.hero h1 { font-size: clamp(42px, 5.8vw, 72px); line-height: 1.03; font-weight: 700; letter-spacing: -0.045em; }
.lede { margin-top: 24px; font-size: clamp(18px, 1.8vw, 20px); line-height: 1.55; max-width: 32em; }
.hero-cta { display: flex; flex-wrap: wrap; align-items: center; gap: 12px; margin-top: 32px; }
.fineprint { margin-top: 18px; font-size: 14px; color: var(--muted); }

/* signature: pita gradien miring */
.hero-visual { position: relative; min-height: 560px; display: grid; place-items: center; }
.hero-visual::before {
  content: ''; position: absolute; z-index: 0;
  top: -12%; bottom: -24%; left: -8%; right: calc(-50vw + 50%);
  transform: skewY(-12deg); transform-origin: 0 50%;
  border-radius: 28px 0 0 28px;
  background:
    radial-gradient(38% 55% at 18% 62%, #ffcb57 0%, rgba(255, 203, 87, 0) 70%),
    radial-gradient(42% 60% at 46% 30%, #ff5e9a 0%, rgba(255, 94, 154, 0) 70%),
    radial-gradient(50% 70% at 74% 66%, #635bff 0%, rgba(99, 91, 255, 0) 72%),
    radial-gradient(40% 55% at 92% 22%, #00d4ff 0%, rgba(0, 212, 255, 0) 70%),
    linear-gradient(120deg, #a960ee, #7a73ff);
  background-size: 140% 140%;
  animation: drift 18s ease-in-out infinite alternate;
}
@keyframes drift {
  0% { background-position: 0% 50%; }
  100% { background-position: 100% 30%; }
}

.phone {
  position: relative; z-index: 2; width: 270px; aspect-ratio: 9 / 18.5;
  background: #0a2540; border-radius: 42px; padding: 11px;
  box-shadow: var(--shadow-card), inset 0 0 0 2px #1d3a5c;
  transform: translateX(34px) rotate(2deg);
}
.phone-screen { height: 100%; background: #f6f9fc; border-radius: 32px; overflow: hidden; font-size: 11px; color: #0a2540; }
.ph-head { display: flex; justify-content: space-between; align-items: center; gap: 8px; padding: 26px 14px 10px; background: #fff; border-bottom: 1px solid var(--line); font-size: 12px; }
.ph-head b { flex: 1; font-weight: 600; }
.ph-body { padding: 14px 12px; display: flex; flex-direction: column; gap: 6px; }
.ph-badges { display: flex; gap: 4px; }
.bd { font-size: 9.5px; font-weight: 500; padding: 1px 6px; border-radius: 4px; }
.bd-ready { background: #fcedb9; color: #a82c00; }
.bd-unpaid { background: #ffe7f2; color: #b3093c; }
.ph-amount { font-size: 26px; font-weight: 600; letter-spacing: -0.03em; line-height: 1.1; margin-top: 2px; }
.ph-name { font-size: 13px; color: var(--body); margin-bottom: 6px; }
.ph-btn { background: var(--accent); color: #fff; text-align: center; font-weight: 600; font-size: 11.5px; padding: 10px; border-radius: 7px; }
.ph-btn2 { display: grid; grid-template-columns: 1fr 1fr; gap: 5px; }
.ph-btn2 span { background: #fff; box-shadow: 0 0 0 1px var(--line); text-align: center; padding: 8px 4px; border-radius: 7px; font-weight: 600; font-size: 10px; }
.ph-label { font-size: 10px; font-weight: 600; color: var(--muted); margin: 8px 2px 0; }
.ph-list { background: #fff; border-radius: 9px; box-shadow: 0 0 0 1px rgba(10, 37, 64, .06); }
.ph-list > div { display: flex; justify-content: space-between; align-items: center; gap: 6px; padding: 8px 10px; font-size: 10.5px; }
.ph-list > div + div { border-top: 1px solid #eef2f6; }
.ph-list small { display: block; color: var(--muted); font-size: 9px; }
.ph-list .strong { font-weight: 600; }

.card-float { position: absolute; z-index: 3; background: #fff; border-radius: 10px; box-shadow: var(--shadow-card); }
.stat-card { left: 0; bottom: 64px; width: 232px; padding: 16px; transform: translateX(-12px); }
.stat-card small { display: block; font-size: 12px; color: var(--muted); font-weight: 500; }
.stat-card > b { display: block; font-size: 30px; font-weight: 600; letter-spacing: -0.03em; color: var(--ink); line-height: 1.2; }
.stat-card > b span { font-size: 15px; color: var(--muted); font-weight: 500; }
.meter { height: 5px; background: #eef2f6; border-radius: 5px; margin: 10px 0 12px; overflow: hidden; }
.meter i { display: block; height: 100%; background: var(--accent); border-radius: 5px; }
.stat-row { display: flex; justify-content: space-between; align-items: baseline; gap: 6px; font-size: 12px; }
.stat-row b { color: var(--ink); font-weight: 600; }
.stat-row em { font-style: normal; color: var(--pos); font-weight: 600; }

@media (prefers-reduced-motion: no-preference) {
  .phone { animation: in-phone .9s cubic-bezier(.2, .8, .2, 1) both .1s; }
  .stat-card { animation: in-card .9s cubic-bezier(.2, .8, .2, 1) both .35s; }
  @keyframes in-phone { from { opacity: 0; transform: translate(34px, 40px) rotate(2deg); } }
  @keyframes in-card { from { opacity: 0; transform: translate(-12px, 30px); } }
}
@media (prefers-reduced-motion: reduce) {
  .hero-visual::before { animation: none; }
  html { scroll-behavior: auto; }
}

/* ---------- sections ---------- */
.section { padding-block: clamp(72px, 10vw, 128px); position: relative; }
.section-alt { background: var(--alt); }
.section-head { max-width: 680px; }
.section-head.center { margin-inline: auto; text-align: center; }
.eyebrow { font-size: 16px; font-weight: 600; color: var(--accent); margin-bottom: 12px; }
.section-title { font-size: clamp(32px, 4.2vw, 48px); line-height: 1.1; font-weight: 700; letter-spacing: -0.035em; }
.section-lede { margin-top: 18px; font-size: 18px; }

.features { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(24px, 3vw, 40px); margin-top: clamp(40px, 6vw, 64px); }
.feature h3 { font-size: 18px; font-weight: 600; letter-spacing: -0.01em; margin-top: 22px; }
.feature p { margin-top: 6px; font-size: 16px; }
.demo { height: 210px; border-radius: var(--radius); background: var(--alt); padding: 18px; display: flex; flex-direction: column; justify-content: center; gap: 12px; overflow: hidden; box-shadow: inset 0 0 0 1px rgba(10, 37, 64, .04); }
.chips { display: flex; flex-wrap: wrap; gap: 6px; }
.chip { font-size: 12.5px; font-weight: 500; padding: 5px 10px; border-radius: 999px; background: #fff; color: var(--body); box-shadow: 0 0 0 1px var(--line); }
.chip.on { background: #f0efff; color: var(--accent); box-shadow: 0 0 0 1.5px var(--accent); }
.entry-row { display: flex; justify-content: space-between; align-items: center; background: #fff; border-radius: 10px; padding: 10px 12px; font-weight: 500; font-size: 14.5px; color: var(--ink); box-shadow: var(--shadow-sm); }
.entry-row small { display: block; font-size: 12px; color: var(--muted); font-weight: 400; }
.kg-box { font-weight: 600; font-variant-numeric: tabular-nums; border-radius: 8px; box-shadow: 0 0 0 1px var(--line); padding: 6px 10px; }
.kg-box small { display: inline; color: var(--muted); font-weight: 400; }
.entry-total { display: flex; justify-content: space-between; align-items: baseline; padding: 0 4px; font-size: 13px; color: var(--muted); }
.entry-total b { color: var(--ink); font-size: 20px; font-weight: 600; letter-spacing: -0.02em; }

.demo-wa { background: #efe7dd; }
.bubble { position: relative; align-self: flex-start; max-width: 94%; background: #d9fdd3; border-radius: 3px 12px 12px 12px; padding: 10px 12px 20px; font-size: 14px; line-height: 1.4; color: #111b21; box-shadow: 0 1px 1px rgba(0, 0, 0, .12); }
.bubble > b:first-child { display: block; color: #1f7a54; font-size: 12.5px; margin-bottom: 2px; }
.bubble-time { position: absolute; right: 10px; bottom: 4px; font-size: 11px; color: #667781; }

.kg-head { display: flex; justify-content: space-between; align-items: baseline; font-size: 13px; color: var(--muted); }
.kg-head b { color: var(--ink); font-size: 18px; font-weight: 600; letter-spacing: -0.02em; }
.bars { display: flex; align-items: flex-end; gap: 6px; height: 96px; }
.bars i { flex: 1; height: var(--h); background: var(--accent); border-radius: 3px 3px 0 0; }
.bars i:nth-child(11) { background: var(--ink); }
.kg-foot { display: flex; justify-content: space-between; font-size: 11.5px; color: #a3acb9; border-top: 1px solid var(--line); padding-top: 6px; }

/* dark slanted */
.section-dark {
  background: var(--ink); color: #adbdcc;
  clip-path: polygon(0 clamp(40px, 7vw, 110px), 100% 0, 100% calc(100% - clamp(40px, 7vw, 110px)), 0 100%);
  padding-block: clamp(120px, 16vw, 210px);
}
.section-dark .section-title, .section-dark h3 { color: #fff; }
.eyebrow-cyan { color: var(--cyan); }
.grid-4 { list-style: none; margin: clamp(40px, 6vw, 64px) 0 0; padding: 0; display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px; }
.grid-4 li { border-left: 1px solid rgba(255, 255, 255, .12); padding-left: 18px; }
.grid-4 h3 { font-size: 16px; font-weight: 600; margin: 16px 0 6px; }
.grid-4 p { font-size: 15px; line-height: 1.55; }
.ico { display: grid; place-items: center; width: 36px; height: 36px; border-radius: 9px; background: rgba(0, 212, 255, .12); color: var(--cyan); }
.ico svg { width: 20px; height: 20px; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }

/* ---------- pricing ---------- */
.billing { display: inline-flex; margin-top: 28px; padding: 4px; border-radius: 999px; background: #fff; box-shadow: 0 0 0 1px var(--line); }
.billing button { border: 0; background: none; cursor: pointer; font: 600 14px/1 var(--font); color: var(--body); padding: 10px 16px; border-radius: 999px; }
.billing button[aria-checked="true"] { background: var(--ink); color: #fff; }
.save { font-weight: 500; color: var(--pos); margin-left: 4px; }
.billing button[aria-checked="true"] .save { color: #7ce8b8; }

.plans { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; max-width: 880px; margin: 48px auto 0; align-items: start; }
.plan { background: #fff; border-radius: 16px; padding: clamp(24px, 3vw, 36px); box-shadow: var(--shadow-sm); display: flex; flex-direction: column; }
.plan-pro { box-shadow: 0 0 0 2px var(--accent), var(--shadow-card); }
.plan h3 { font-size: 22px; font-weight: 700; letter-spacing: -0.02em; display: flex; align-items: center; flex-wrap: wrap; gap: 10px; }
.tag { font-size: 12px; font-weight: 600; letter-spacing: 0; background: #f0efff; color: var(--accent); padding: 4px 9px; border-radius: 999px; }
.plan-for { margin-top: 6px; font-size: 15.5px; }
.price { display: flex; align-items: baseline; flex-wrap: wrap; gap: 8px; margin: 22px 0 22px; }
.price b { font-size: 46px; font-weight: 700; letter-spacing: -0.04em; color: var(--ink); line-height: 1; font-variant-numeric: tabular-nums; }
.price small { font-size: 14.5px; color: var(--muted); }
.checks { list-style: none; margin: 28px 0 0; padding: 0; display: flex; flex-direction: column; gap: 12px; font-size: 15.5px; }
.checks li { position: relative; padding-left: 28px; }
.checks li::before { content: ''; position: absolute; left: 0; top: 4px; width: 18px; height: 18px; border-radius: 50%; background: #f0efff url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='m6 12.5 4 4L18 8' fill='none' stroke='%23635bff' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center / 12px no-repeat; }
.checks b { color: var(--ink); font-weight: 600; }
.pricing-note { text-align: center; margin-top: 28px; font-size: 14px; color: var(--muted); }

/* ---------- faq ---------- */
.faq-grid { display: grid; grid-template-columns: .85fr 1.15fr; gap: clamp(32px, 6vw, 80px); align-items: start; }
.faq details { border-bottom: 1px solid var(--line); }
.faq summary { list-style: none; cursor: pointer; display: flex; justify-content: space-between; align-items: center; gap: 16px; padding: 20px 0; font-size: 17px; font-weight: 600; color: var(--ink); }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: ''; flex: none; width: 10px; height: 10px; border-right: 2px solid var(--accent); border-bottom: 2px solid var(--accent); transform: rotate(45deg) translateY(-3px); transition: transform .2s; }
.faq details[open] summary::after { transform: rotate(225deg) translate(-2px, -2px); }
.faq details p { padding-bottom: 22px; max-width: 38em; }

/* ---------- closing & footer ---------- */
.closing { background: var(--alt); padding-block: clamp(64px, 9vw, 104px); }
.closing-inner { display: flex; justify-content: space-between; align-items: center; gap: 24px; flex-wrap: wrap; }
.closing h2 { font-size: clamp(30px, 3.8vw, 42px); font-weight: 700; letter-spacing: -0.035em; line-height: 1.1; }
.closing p { margin-top: 10px; font-size: 18px; }
.closing .hero-cta { margin-top: 0; }
.footer { padding-block: 32px; font-size: 14px; color: var(--muted); }
.footer-inner { display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap; }
.footer nav { display: flex; gap: 22px; }
.footer nav a:hover { color: var(--ink); }

/* ---------- daftar ---------- */
/* overflow-x: clip (bukan overflow: hidden) — hidden di body ikut mematikan scroll halaman */
.auth-page { background: var(--alt); min-height: 100dvh; position: relative; overflow-x: clip; }
.auth-page::before {
  content: ''; position: absolute; left: 0; right: 0; top: -380px; height: 640px;
  transform: skewY(-10deg); transform-origin: 0 0;
  background:
    radial-gradient(40% 80% at 15% 70%, #ffcb57 0%, rgba(255, 203, 87, 0) 70%),
    radial-gradient(40% 90% at 45% 60%, #ff5e9a 0%, rgba(255, 94, 154, 0) 70%),
    radial-gradient(45% 90% at 75% 60%, #635bff 0%, rgba(99, 91, 255, 0) 72%),
    radial-gradient(35% 80% at 95% 40%, #00d4ff 0%, rgba(0, 212, 255, 0) 70%),
    linear-gradient(120deg, #a960ee, #7a73ff);
}
.auth-page .nav { background: transparent; backdrop-filter: none; position: relative; }
.auth-page .logo { color: #fff; }
.auth-page .logo img { box-shadow: 0 0 0 2px rgba(255, 255, 255, .6); }
.auth-page .nav-login { background: rgba(255, 255, 255, .22); color: #fff; }
.auth-page .nav-login:hover { background: rgba(255, 255, 255, .34); }
.auth { position: relative; z-index: 1; display: grid; grid-template-columns: .9fr 1.1fr; gap: clamp(28px, 5vw, 72px); align-items: start; padding-block: clamp(40px, 7vw, 88px) 64px; }
.auth-intro { padding-top: clamp(96px, 12vw, 150px); }
.auth-intro h2 { font-size: clamp(26px, 3vw, 34px); font-weight: 700; letter-spacing: -0.03em; line-height: 1.15; max-width: 14em; }
.steps { list-style: none; margin: 28px 0 0; padding: 0; display: flex; flex-direction: column; gap: 22px; max-width: 26em; }
.steps li { display: grid; grid-template-columns: 28px 1fr; gap: 12px; font-size: 15.5px; }
.steps li::before { content: ''; width: 22px; height: 22px; margin-top: 2px; border-radius: 50%; background: #f0efff url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='m6 12.5 4 4L18 8' fill='none' stroke='%23635bff' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center / 14px no-repeat; }
.steps b { display: block; color: var(--ink); font-weight: 600; }

.auth-card { background: #fff; border-radius: 16px; box-shadow: var(--shadow-card); padding: clamp(28px, 4vw, 48px); width: 100%; max-width: 540px; justify-self: end; }
.auth-card h1 { font-size: clamp(26px, 3vw, 32px); font-weight: 700; letter-spacing: -0.03em; line-height: 1.15; }
.auth-card .sub { margin-top: 8px; }
.form { display: flex; flex-direction: column; gap: 18px; margin-top: 28px; }
.field { display: flex; flex-direction: column; gap: 6px; min-width: 0; }
.field label { font-size: 14px; font-weight: 600; color: var(--ink); }
.field input {
  width: 100%; min-width: 0; height: 44px; padding: 0 12px; border-radius: 8px; border: 0; background: #fff;
  box-shadow: 0 0 0 1px var(--line), 0 1px 1px rgba(0, 0, 0, .04);
  font: 16px var(--font); color: var(--ink); outline: none; transition: box-shadow .15s;
}
.field input::placeholder { color: #a3acb9; }
.field input:focus { box-shadow: 0 0 0 1px var(--accent), 0 0 0 4px rgba(99, 91, 255, .18); }
.field input[aria-invalid="true"] { box-shadow: 0 0 0 1px var(--neg), 0 0 0 4px rgba(205, 61, 100, .15); }
.help { font-size: 13px; color: var(--muted); }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-error { background: #ffe7f2; color: #b3093c; padding: 11px 14px; border-radius: 8px; font-size: 14.5px; }
.form-legal { font-size: 13px; color: var(--muted); text-align: center; }
.form-legal a { color: var(--accent); }
.switch { margin-top: 22px; padding-top: 22px; border-top: 1px solid var(--line); text-align: center; font-size: 15px; }
.switch a { color: var(--accent); font-weight: 600; }
.plan-note { margin-top: 18px; padding: 11px 14px; border-radius: 8px; background: #f0efff; color: #3d35c7; font-size: 14.5px; }
.mail-mark { width: 52px; height: 52px; border-radius: 14px; background: #f0efff; color: var(--accent); display: grid; place-items: center; margin-bottom: 20px; }
.mail-mark svg { width: 26px; height: 26px; }

/* ---------- responsive ---------- */
@media (max-width: 960px) {
  .nav-links { display: none; }
  .hero-grid { grid-template-columns: 1fr; }
  .hero-visual { min-height: 520px; margin-top: 24px; }
  .hero-visual::before { left: calc(-1 * var(--gutter)); right: calc(-1 * var(--gutter)); border-radius: 0; top: 4%; bottom: -10%; }
  .phone { transform: translateX(40px) rotate(2deg); }
  .stat-card { left: 4px; bottom: 40px; }
  .features { grid-template-columns: 1fr; max-width: 520px; }
  .grid-4 { grid-template-columns: 1fr 1fr; gap: 36px 24px; }
  .plans { grid-template-columns: 1fr; max-width: 520px; }
  .faq-grid { grid-template-columns: 1fr; }
  .auth { grid-template-columns: 1fr; }
  .auth-card { justify-self: stretch; max-width: none; }
  .auth-intro { padding-top: 8px; order: 2; }
  .auth-page .logo, .auth-page .nav-login { color: #fff; }
}
@media (max-width: 560px) {
  body { font-size: 16px; }
  .phone { width: 238px; transform: translateX(28px) rotate(2deg); }
  .stat-card { width: 196px; padding: 13px; }
  .stat-card > b { font-size: 25px; }
  .hero-cta .btn-primary { flex: 1; }
  .grid-4 { grid-template-columns: 1fr; }
  .field-row { grid-template-columns: 1fr; }
  .closing-inner .hero-cta { width: 100%; }
  @media (prefers-reduced-motion: no-preference) {
    @keyframes in-phone { from { opacity: 0; transform: translate(28px, 40px) rotate(2deg); } }
  }
}
