/* ---------------------------------------------------------------------------
   Wabi landing — implements "Wabi Landing Redesign.dc.html" option 1b
   (dark guarantee-led). Desktop art board 1440px, mobile art board 390px.
--------------------------------------------------------------------------- */

:root {
  --pine: #07271B;          /* dark surfaces */
  --ink: #0B241A;           /* headings / body on light */
  --green: #25D366;         /* WhatsApp green — CTAs and proof marks only */
  --green-bright: #4ADE80;  /* CTA hover on dark surfaces */
  --green-deep: #1FC15A;    /* CTA hover on light surfaces */
  --btn-ink: #062E1C;       /* text on green buttons */
  --check-ink: #05301C;     /* text inside small green check dots */
  --accent-strong: #0B6E38; /* green accents on light (darkened from the mock's #0E8A46 for WCAG AA) */
  --chip-mint: #E1F4E7;     /* soft green icon chip background */
  --text-body: #44584E;
  --text-muted: #5A6A60;
  --mist: #B9D6C6;          /* body text on dark */
  --mist-soft: #8FB4A2;     /* micro text on dark */
  --footer-label: #6E9483;
  --footer-legal: #5F836F;
  --paper: #F5F8F5;         /* light card background */
  --mint: #F0FAF3;          /* tinted card background */
  --mint-border: #DCEFE2;
  --line: #ECEFEC;
  --line-soft: #F0F3F0;
  --line-light: #EDF2ED;
  --wabi-col: #F7FCF9;      /* highlighted comparison column */
  --cross: #A8552F;         /* darkened from the mock's #C0714F for WCAG AA */
  --gray-label: #66716A;    /* darkened from the mock's #8A958D for WCAG AA */
  --gray-quiet: #9AA69D;
  --frame: #0E1613;         /* phone mockup body */
  --display: 'Schibsted Grotesk', sans-serif;
  --body: 'Instrument Sans', system-ui, sans-serif;
}

* { box-sizing: border-box; }

@media (prefers-reduced-motion: no-preference) {
  html { scroll-behavior: smooth; }
}

body {
  margin: 0;
  background: #FFFFFF;
  color: var(--ink);
  font-family: var(--body);
  -webkit-font-smoothing: antialiased;
}

/* height:auto keeps width/height attributes as aspect-ratio hints only */
img { max-width: 100%; height: auto; }

h1, h2, h3 { margin: 0; }

p { margin: 0; }

.container {
  max-width: 1440px;
  margin: 0 auto;
  padding-left: 56px;
  padding-right: 56px;
}

.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;
}

.only-mobile { display: none; }

/* Anchor targets clear the sticky header */
section[id] { scroll-margin-top: 84px; }

/* ------------------------------------------------------------------ buttons */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  text-decoration: none;
  font-weight: 700;
  border-radius: 12px;
  cursor: pointer;
  transition: background .15s ease, border-color .15s ease, color .15s ease;
}

.btn-primary {
  background: var(--green);
  color: var(--btn-ink);
}
.btn-primary:hover { background: var(--green-bright); }
.btn-on-light:hover { background: var(--green-deep); }

.btn-outline-light {
  border: 1.5px solid rgba(255, 255, 255, .28);
  color: #FFFFFF;
  font-weight: 600;
}
.btn-outline-light:hover { border-color: #FFFFFF; }

.btn-sm { font-size: 15px; padding: 11px 20px; border-radius: 10px; }
.btn-md { font-size: 16px; padding: 15px 26px; }
.btn-lg { font-size: 17px; padding: 17px 28px; }
.btn-outline-light.btn-lg { font-size: 16px; padding: 15.5px 24px; }

.arrow { font-weight: 600; }

/* ------------------------------------------------------------------- header */

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: var(--pine);
  border-bottom: 1px solid rgba(255, 255, 255, .08);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 18px;
  padding-bottom: 18px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}
.brand img { width: 34px; height: 34px; border-radius: 9px; display: block; }
.brand span {
  font-family: var(--display);
  font-weight: 800;
  font-size: 21px;
  letter-spacing: -.4px;
  color: #FFFFFF;
}

.nav-links { display: flex; gap: 34px; }
.nav-links a {
  text-decoration: none;
  color: var(--mist);
  font-size: 15px;
  font-weight: 500;
}
.nav-links a:hover { color: #FFFFFF; }

.header-actions { display: flex; align-items: center; gap: 12px; }

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 3.5px;
  padding: 4px 0;
  background: none;
  border: 0;
  cursor: pointer;
}
.menu-toggle span {
  width: 17px;
  height: 2px;
  background: #FFFFFF;
  border-radius: 2px;
}

/* --------------------------------------------------------------------- hero */

.hero {
  position: relative;
  overflow: hidden;
  background: var(--pine);
  text-align: center;
}

.hero-glow {
  position: absolute;
  top: -180px;
  left: 50%;
  margin-left: -360px;
  width: 720px;
  height: 560px;
  background: radial-gradient(closest-side, rgba(37, 211, 102, .18), rgba(37, 211, 102, 0));
}

.hero-inner {
  position: relative;
  padding-top: 80px;
}

.badge-pill {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  border: 1px solid rgba(37, 211, 102, .5);
  background: rgba(37, 211, 102, .08);
  border-radius: 999px;
  padding: 8px 16px;
}
.badge-check {
  width: 18px;
  height: 18px;
  border-radius: 999px;
  background: var(--green);
  color: var(--check-ink);
  font-weight: 800;
  font-size: 10px;
  display: grid;
  place-items: center;
}
.badge-text {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.3px;
  text-transform: uppercase;
  color: #7FE0A8;
}

.hero h1 {
  font-family: var(--display);
  font-weight: 800;
  font-size: clamp(32px, 2.67vw + 21.6px, 60px);
  line-height: 1.06;
  letter-spacing: -2.2px;
  color: #FFFFFF;
  max-width: 880px;
  margin: 26px auto 0;
}
.hero h1 .accent { color: var(--green); }

.hero-sub {
  font-size: 18.5px;
  line-height: 1.62;
  color: var(--mist);
  max-width: 660px;
  margin: 20px auto 0;
}

.hero-ctas {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 14px;
  margin-top: 32px;
}

.hero-micro {
  font-size: 13.5px;
  color: var(--mist-soft);
  margin-top: 16px;
}

.hero-stats {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px 36px;
  margin-top: 34px;
  font-size: 14.5px;
  color: var(--mist-soft);
}
.hero-stats strong { color: #FFFFFF; font-weight: 700; }

/* phone mockups */

.phone-frame {
  background: var(--frame);
  border-radius: 48px;
  padding: 12px;
  box-shadow: 0 60px 110px -30px rgba(0, 0, 0, .6);
}
.phone-frame img { display: block; width: 100%; border-radius: 36px; }

.hero-phone {
  position: relative;
  width: 340px;
  margin: 52px auto -110px;
}

.float-card {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 11px;
  background: #FFFFFF;
  border-radius: 13px;
  padding: 13px 16px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, .35);
  text-align: left;
}
.float-card-left { top: 120px; left: -186px; }
.float-card-right { top: 250px; right: -196px; }

.float-icon {
  flex: none;
  width: 26px;
  height: 26px;
  border-radius: 999px;
  font-weight: 800;
  font-size: 14px;
  display: grid;
  place-items: center;
}
.float-icon-solid { background: var(--green); color: #04331D; } /* mock uses #04331D here, #05301C elsewhere */
.float-icon-soft { background: var(--chip-mint); color: var(--accent-strong); font-size: 13px; }
.float-icon-xs { width: 22px; height: 22px; font-size: 11px; }

.float-copy { display: block; }
.float-title { display: block; font-size: 14px; font-weight: 700; color: var(--ink); }
.float-note { display: block; font-size: 12px; color: #66796E; margin-top: 1px; }

/* ------------------------------------------------------- comparison section */

.why { padding: 200px 0 96px; }

.why h2,
.how h2,
.faq h2 {
  font-family: var(--display);
  font-weight: 800;
  font-size: clamp(26px, 1.33vw + 20.8px, 40px);
  letter-spacing: -1.4px;
  line-height: 1.12;
}
.why h2 { max-width: 700px; }

.section-sub {
  font-size: 17.5px;
  line-height: 1.62;
  color: var(--text-body);
  max-width: 640px;
  margin-top: 16px;
}

.compare {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  border: 1px solid var(--line);
  border-radius: 18px;
  overflow: hidden;
  margin-top: 44px;
}

.compare th, .compare td { text-align: start; }

.compare thead th {
  background: var(--paper);
  border-bottom: 1px solid var(--line);
  padding: 18px 28px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--gray-label);
}
.compare thead .compare-wabi,
.compare thead .compare-other {
  text-align: center;
  padding: 18px 20px;
  border-left: 1px solid var(--line);
}
.compare thead .compare-wabi { background: var(--mint); }
.compare thead .compare-other {
  font-size: 13.5px;
  font-weight: 600;
  letter-spacing: normal;
  text-transform: none;
}

.compare .compare-what { width: 56%; }
.compare .compare-wabi, .compare .compare-other { width: 22%; }

.wabi-pill {
  background: var(--green);
  color: var(--check-ink);
  font-size: 12.5px;
  font-weight: 800;
  letter-spacing: normal;
  text-transform: none;
  border-radius: 999px;
  padding: 5px 14px;
}

.compare tbody td {
  padding: 17px 28px;
  font-size: 15.5px;
  color: #31463B;
  border-bottom: 1px solid var(--line-soft);
}
.compare tbody tr:last-child td { border-bottom: 0; }
.compare tbody .cell-yes,
.compare tbody .cell-no,
.compare tbody .cell-varies {
  text-align: center;
  padding: 17px 20px;
  border-left: 1px solid var(--line-soft);
}
.compare tbody .cell-yes { background: var(--wabi-col); color: var(--accent-strong); font-weight: 800; }
.compare tbody .cell-no { color: var(--cross); font-weight: 700; }
.compare tbody .cell-varies { color: var(--gray-label); font-size: 13.5px; font-weight: 600; }

/* ----------------------------------------------------------- features bento */

.features { padding-bottom: 96px; }

.bento {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 20px;
}

.bento-card {
  background: var(--paper);
  border-radius: 18px;
  padding: 32px;
}

.bento-card h3 { font-size: 20px; font-weight: 700; font-family: var(--body); }
.bento-card p {
  font-size: 15.5px;
  line-height: 1.6;
  color: var(--text-muted);
  margin-top: 10px;
}

.bento-tall {
  grid-row: 1 / span 2;
  padding-bottom: 0;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
.bento-tall p { max-width: 420px; }

.bento-phone {
  width: 280px;
  margin: 28px auto 0;
  background: var(--frame);
  border-radius: 38px 38px 0 0;
  padding: 10px 10px 0;
  box-shadow: 0 -20px 60px -30px rgba(7, 39, 27, .4);
}
.bento-phone img {
  display: block;
  width: 100%;
  border-radius: 29px 29px 0 0;
  max-height: 330px;
  object-fit: cover;
  object-position: top;
}

.feature-icon {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: var(--chip-mint);
  color: var(--accent-strong);
  font-weight: 800;
  font-size: 18px;
  display: grid;
  place-items: center;
}
.feature-icon-sm { font-size: 15px; }
.feature-icon + h3 { margin-top: 16px; }

/* ------------------------------------------------------------- how it works */

.how { padding-bottom: 96px; }

.how-inner {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 64px;
  align-items: center;
}

.steps {
  list-style: none;
  margin: 36px 0 0;
  padding: 0;
}

.step { display: flex; gap: 18px; }

.step-rail {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.step-num {
  flex: none;
  width: 34px;
  height: 34px;
  border-radius: 999px;
  border: 1.5px solid #CBE9D6;
  background: var(--mint);
  color: var(--accent-strong);
  font-weight: 700;
  font-size: 15px;
  display: grid;
  place-items: center;
}
.step-num.step-done {
  border: 0;
  background: var(--green);
  color: var(--check-ink);
  font-weight: 800;
  font-size: 14px;
}

.step-line {
  width: 1.5px;
  flex: 1;
  background: #DCEAE0;
  margin: 6px 0;
}

.step-body { padding-bottom: 26px; }
.step:last-child .step-body { padding-bottom: 0; }
.step-body h3 { font-size: 17.5px; font-weight: 700; font-family: var(--body); }
.step-body p {
  font-size: 15px;
  line-height: 1.55;
  color: var(--text-muted);
  margin-top: 5px;
}

.how-visual {
  position: relative;
  justify-self: center;
}

.how-glow {
  position: absolute;
  top: -30px;
  right: -40px;
  bottom: -30px;
  left: -40px;
  background: radial-gradient(closest-side, #E3F6EA, rgba(227, 246, 234, 0));
}

.phone-frame-md {
  position: relative;
  width: 300px;
  border-radius: 44px;
  padding: 11px;
  box-shadow: 0 44px 84px -30px rgba(7, 39, 27, .45);
}
.phone-frame-md img { border-radius: 33px; }

.float-card-compat {
  bottom: 64px;
  left: -72px;
  gap: 9px;
  border-radius: 12px;
  padding: 11px 15px;
  box-shadow: 0 14px 34px rgba(7, 39, 27, .16);
}
.float-card-compat .float-title { font-size: 13px; }

/* --------------------------------------------------------- guarantee strip */

.guarantee { padding-bottom: 96px; }

.guarantee-strip {
  background: var(--mint);
  border: 1px solid var(--mint-border);
  border-radius: 20px;
  padding: 36px 40px;
  display: flex;
  align-items: center;
  gap: 40px;
}

.guarantee-copy { flex: 1; }

.guarantee-copy h2 {
  font-family: var(--display);
  font-weight: 800;
  font-size: 24px;
  letter-spacing: -.6px;
}
.guarantee-copy p {
  font-size: 15px;
  line-height: 1.6;
  color: var(--text-muted);
  margin-top: 8px;
}

.guarantee-strip .btn { flex: none; }

/* ---------------------------------------------------------------------- faq */

.faq { padding-bottom: 96px; }

.faq h2 { font-size: clamp(26px, 1.33vw + 20.8px, 38px); letter-spacing: -1.2px; }

.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 36px;
}

.faq-card {
  background: var(--paper);
  border-radius: 16px;
  padding: 26px;
}
.faq-card h3 { font-size: 16.5px; font-weight: 700; font-family: var(--body); }
.faq-card p {
  font-size: 15px;
  line-height: 1.6;
  color: var(--text-muted);
  margin-top: 8px;
}

/* ----------------------------------------------------------- download band */

.download { padding-bottom: 96px; }

.download-card {
  position: relative;
  overflow: hidden;
  background: var(--pine);
  border-radius: 24px;
  padding: 64px;
  text-align: center;
}

.download-glow {
  position: absolute;
  top: -140px;
  left: 50%;
  margin-left: -260px;
  width: 520px;
  height: 400px;
  background: radial-gradient(closest-side, rgba(37, 211, 102, .16), rgba(37, 211, 102, 0));
}

.download-inner { position: relative; }

.download-card h2 {
  font-family: var(--display);
  font-weight: 800;
  font-size: clamp(23px, 1.81vw + 15.9px, 42px);
  letter-spacing: -1.4px;
  line-height: 1.1;
  color: #FFFFFF;
}
.download-inner p {
  font-size: 17px;
  line-height: 1.6;
  color: var(--mist);
  margin-top: 14px;
}

.download-cta {
  display: flex;
  justify-content: center;
  margin-top: 28px;
}
.download-cta .btn-lg { padding: 17px 30px; }

.store-badges {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  margin-top: 24px;
}

.store-badges a { display: block; line-height: 0; }

/* Official store badges. The Google Play PNG carries built-in transparent
   padding (42px on a 250px-tall canvas) — the negative margin trims it so
   both badges show at the same visible height (56px). */
.badge-appstore { display: block; height: 56px; width: auto; }
.badge-play { display: block; height: 84px; width: auto; margin: -14px; }

/* ------------------------------------------------------------------ footers */

.footer-desktop {
  background: var(--pine);
  padding: 44px 0 48px;
}

.footer-main {
  display: flex;
  justify-content: space-between;
  gap: 48px;
}

.footer-brand { max-width: 280px; }
.footer-brand .brand img { width: 30px; height: 30px; border-radius: 8px; }
.footer-brand .brand span { font-size: 19px; }
.footer-brand p {
  font-size: 13.5px;
  line-height: 1.6;
  color: var(--mist-soft);
  margin-top: 14px;
}

.footer-cols { display: flex; gap: 72px; }

.footer-label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.1px;
  text-transform: uppercase;
  color: var(--footer-label);
}

.footer-col a {
  display: block;
  text-decoration: none;
  font-size: 14px;
  color: var(--mist);
  margin-top: 10px;
}
.footer-col .footer-label + a { margin-top: 12px; }
.footer-col a:hover { color: #FFFFFF; }

.footer-legal {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 32px;
  border-top: 1px solid rgba(255, 255, 255, .1);
  margin-top: 36px;
  padding-top: 24px;
  font-size: 12.5px;
  color: var(--footer-label);
}

.footer-disclaimer {
  font-size: 12px;
  color: var(--footer-label);
  max-width: 560px;
  text-align: end;
  line-height: 1.5;
}

.footer-mobile {
  display: none;
  border-top: 1px solid var(--line-light);
  padding: 22px 0 28px;
}

.footer-mobile-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}
.footer-mobile-links a {
  text-decoration: none;
  font-size: 13px;
  color: var(--text-body);
}
.footer-mobile-links a:hover { color: var(--ink); }

.footer-mobile p {
  font-size: 11px;
  line-height: 1.5;
  color: var(--text-muted);
  margin-top: 14px;
}

/* ------------------------------------------------------- language selector */

.lang-select {
  appearance: none;
  -webkit-appearance: none;
  background: transparent;
  border: 1.5px solid rgba(255, 255, 255, .28);
  color: var(--mist);
  font-family: var(--body);
  font-size: 13.5px;
  font-weight: 600;
  border-radius: 9px;
  padding: 8px 26px 8px 10px;
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6'%3E%3Cpath d='M1 1l4 4 4-4' fill='none' stroke='%23B9D6C6' stroke-width='1.5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 9px center;
}
.lang-select:hover { border-color: rgba(255, 255, 255, .55); color: #FFFFFF; }
.lang-select option { background: var(--pine); color: #FFFFFF; }
[dir="rtl"] .lang-select {
  padding: 8px 10px 8px 26px;
  background-position: left 9px center;
}

/* ------------------------------------------------------------ inner pages */

.page-hero {
  background: var(--pine);
  padding: 56px 0 60px;
}
.page-hero h1 {
  font-family: var(--display);
  font-weight: 800;
  font-size: clamp(30px, 1.9vw + 22.6px, 50px);
  letter-spacing: -1.6px;
  line-height: 1.08;
  color: #FFFFFF;
  max-width: 820px;
}
.page-hero p {
  font-size: 17px;
  line-height: 1.6;
  color: var(--mist);
  max-width: 640px;
  margin-top: 14px;
}

.page-body { padding: 64px 0 96px; }

.prose { max-width: 820px; }
.prose h2 {
  font-family: var(--display);
  font-weight: 800;
  font-size: 28px;
  letter-spacing: -.8px;
  line-height: 1.15;
  margin-top: 48px;
}
.prose h3 {
  font-size: 19px;
  font-weight: 700;
  margin-top: 32px;
}
.prose h2:first-child, .prose h3:first-child { margin-top: 0; }
.prose p {
  font-size: 15.5px;
  line-height: 1.7;
  color: var(--text-body);
  margin-top: 14px;
}
.prose ul, .prose ol {
  margin: 14px 0 0;
  padding-inline-start: 24px;
  color: var(--text-body);
}
.prose li {
  font-size: 15.5px;
  line-height: 1.7;
  margin-top: 8px;
}
.prose a { color: var(--accent-strong); }
.prose a:hover { color: var(--pine); }
.prose .prose-note {
  font-size: 13.5px;
  color: var(--text-muted);
  background: var(--paper);
  border-radius: 12px;
  padding: 14px 18px;
  margin-top: 24px;
}

/* FAQ accordion */
.faq-accordion { max-width: 820px; }
.faq-accordion h2 {
  font-family: var(--display);
  font-weight: 800;
  font-size: 28px;
  letter-spacing: -.8px;
  margin-top: 48px;
}
.faq-accordion h2:first-child { margin-top: 0; }
.faq-accordion details {
  border-bottom: 1px solid var(--line);
  padding: 0;
}
.faq-accordion h2 + details { margin-top: 20px; border-top: 1px solid var(--line); }
.faq-accordion summary {
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 0;
  font-size: 16.5px;
  font-weight: 700;
  color: var(--ink);
}
.faq-accordion summary::-webkit-details-marker { display: none; }
.faq-accordion summary::after {
  content: "+";
  flex: none;
  font-weight: 600;
  font-size: 20px;
  color: var(--accent-strong);
  line-height: 1;
}
.faq-accordion details[open] summary::after { content: "–"; }
.faq-accordion details > div { padding: 0 0 20px; }
.faq-accordion details p {
  font-size: 15px;
  line-height: 1.7;
  color: var(--text-body);
  margin-top: 10px;
}
.faq-accordion details p:first-child { margin-top: 0; }
.faq-accordion details ul, .faq-accordion details ol {
  margin: 10px 0 0;
  padding-inline-start: 24px;
  color: var(--text-body);
}
.faq-accordion details li { font-size: 15px; line-height: 1.7; margin-top: 6px; }
.faq-accordion a { color: var(--accent-strong); }

/* --------------------------------------------------------- RTL and Arabic */

html[lang="ar"] {
  --display: 'Noto Sans Arabic', 'Schibsted Grotesk', sans-serif;
  --body: 'Noto Sans Arabic', 'Instrument Sans', system-ui, sans-serif;
}
html[lang="ar"] * { letter-spacing: normal !important; }

/* ------------------------------------------------------------- breakpoints */

/* Hide the hero floating cards before they collide with the viewport edge */
@media (max-width: 1120px) {
  .float-card-left, .float-card-right { display: none; }
}

/* Collapse the nav to the hamburger before the full link row gets cramped */
@media (max-width: 780px) {
  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    gap: 0;
    background: var(--pine);
    border-bottom: 1px solid rgba(255, 255, 255, .08);
    padding: 8px 56px 16px;
  }
  .nav-links.open { display: flex; }
  .nav-links a { padding: 12px 0; font-size: 16px; }

  .menu-toggle { display: flex; }
}

@media (max-width: 900px) {
  .bento { grid-template-columns: 1fr; grid-template-rows: none; }
  .bento-tall { grid-row: auto; }

  .how-inner { grid-template-columns: 1fr; gap: 0; }
  .how-visual { display: none; }

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

  .footer-main { flex-direction: column; }
  .footer-cols { flex-wrap: wrap; gap: 40px; }
}

@media (max-width: 700px) {
  .container { padding-left: 20px; padding-right: 20px; }

  .only-desktop { display: none; }
  .only-mobile { display: inline; }

  section[id] { scroll-margin-top: 72px; }

  /* header */
  .header-inner { padding-top: 14px; padding-bottom: 14px; }
  .container.header-inner { padding-left: 18px; padding-right: 18px; }
  .brand img { width: 28px; height: 28px; border-radius: 8px; }
  .brand span { font-size: 18px; }

  .nav-links { padding: 8px 18px 16px; }

  .btn-sm { font-size: 13.5px; padding: 9px 14px; border-radius: 9px; }

  /* hero */
  .hero-glow {
    top: -120px;
    margin-left: -200px;
    width: 400px;
    height: 340px;
  }
  .hero-inner { padding-top: 36px; }

  .badge-pill { gap: 8px; padding: 6px 12px; }
  .badge-check { width: 15px; height: 15px; font-size: 8.5px; }
  .badge-text { font-size: 10px; letter-spacing: 1.1px; }

  .hero h1 { line-height: 1.1; letter-spacing: -1.2px; margin-top: 16px; }
  .hero-sub { font-size: 15px; margin-top: 12px; }

  .hero-ctas { flex-direction: column; gap: 10px; margin-top: 20px; }
  .hero-ctas .btn { width: 100%; }
  .hero-ctas .btn-primary.btn-lg { font-size: 16.5px; padding: 16px 0; }
  .hero-ctas .btn-outline-light.btn-lg { font-size: 15px; padding: 14px 0; }

  .hero-micro { font-size: 12.5px; margin-top: 10px; }

  .hero-stats { gap: 8px 18px; margin-top: 18px; font-size: 12.5px; }
  .stat-setup { display: none; }

  .hero-phone { width: 230px; margin: 28px auto -70px; }
  .phone-frame { border-radius: 36px; padding: 9px; box-shadow: 0 40px 80px -26px rgba(0, 0, 0, .6); }
  .phone-frame img { border-radius: 28px; }

  /* comparison */
  .why { padding: 110px 0 40px; }
  .why h2 { letter-spacing: -.8px; line-height: 1.15; }
  .section-sub { display: none; } /* the 390px board goes straight from the H2 to the table */

  .compare { border-radius: 14px; margin-top: 18px; }
  .compare thead th { padding: 12px 16px; font-size: 10.5px; letter-spacing: .8px; }
  .compare thead .compare-wabi, .compare thead .compare-other { padding: 10px 4px; }
  .compare thead .compare-other { font-size: 10.5px; }
  .compare .compare-what { width: auto; }
  .compare .compare-wabi, .compare .compare-other { width: 56px; }
  .wabi-pill { font-size: 10px; padding: 3px 8px; }
  .compare tbody td { padding: 13px 16px; font-size: 13.5px; }
  .compare tbody .cell-yes, .compare tbody .cell-no, .compare tbody .cell-varies { padding: 13px 4px; }
  .compare tbody .cell-yes { font-size: 13px; }
  .compare tbody .cell-no { font-size: 12px; }
  .compare tbody .cell-varies { font-size: 11px; }

  /* features */
  .features { padding-bottom: 40px; }
  .bento-card { padding: 24px 20px; }
  .bento-card h3 { font-size: 17px; }
  .bento-card p { font-size: 14px; }
  .bento-tall { padding-bottom: 0; }
  .bento-phone { width: 230px; }

  /* how it works */
  .how { padding-bottom: 32px; }
  .how h2 { letter-spacing: -.8px; line-height: 1.15; }
  .steps { margin-top: 20px; }
  .step { gap: 13px; }
  .step-num { width: 28px; height: 28px; font-size: 13px; }
  .step-num.step-done { font-size: 12px; }
  .step-line { display: none; } /* the 390px board draws no connector rails */
  .step-body { padding-bottom: 16px; }
  .step-body h3 { font-size: 15px; }
  .step-body p { font-size: 13.5px; margin-top: 3px; }

  /* guarantee */
  .guarantee { padding-bottom: 28px; }
  .guarantee-strip {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    border-radius: 16px;
    padding: 22px;
  }
  .guarantee-copy h2 { font-size: 18px; letter-spacing: -.4px; }
  .guarantee-copy p { font-size: 13.5px; margin-top: 6px; }
  .guarantee-strip .btn { margin-top: 16px; font-size: 15px; padding: 14px 0; border-radius: 11px; }

  /* faq */
  .faq { padding-bottom: 28px; }
  .faq-grid { margin-top: 18px; }
  .faq-card { padding: 20px; }
  .faq-card h3 { font-size: 15px; }
  .faq-card p { font-size: 13.5px; }

  /* download */
  .download { padding-bottom: 36px; }
  .download-card { border-radius: 18px; padding: 28px 22px; }
  .download-card h2 { letter-spacing: -.7px; line-height: 1.15; }
  .download-glow { display: none; } /* the 390px board's card is flat, no radial glow */
  .download-inner p { font-size: 14px; margin-top: 10px; }
  .download-cta { margin-top: 18px; }
  .download-cta .btn { width: 100%; font-size: 15.5px; padding: 15px 0; border-radius: 11px; }
  .store-badges { gap: 10px; margin-top: 14px; }
  .badge-appstore { height: 44px; }
  .badge-play { height: 66px; margin: -11px; }

  /* footers */
  .footer-desktop { display: none; }
  .footer-mobile { display: block; }
}
