:root {
  --ink: #0f172a;
  --ink-soft: #334155;
  --muted: #64748b;
  --line: #e2e8f0;
  --paper: #ffffff;
  --paper-warm: #f8fafc;
  --hero: #0b1224;
  --hero-2: #152238;
  --accent: #338c8c;
  --accent-deep: #2a7070;
  --accent-soft: #d4f0ef;
  --blue: #3b82f6;
  --app-teal: #338c8c;
  --app-coral: #e56659;
  --app-green: #33a673;
  --app-purple: #8c59bf;
  --app-mint: #8fd9c8;
  --app-sky: #8ec5ff;
  --app-peach: #ffc9a8;
  --app-yellow: #f5e6a8;
  --max: 1120px;
  --radius: 16px;
  --shadow: 0 16px 40px rgba(15, 23, 42, 0.08);
  --font: "IBM Plex Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  font-family: var(--font);
  color: var(--ink);
  background: var(--paper-warm);
  line-height: 1.65;
  overflow-x: hidden;
}

a {
  color: var(--blue);
}

img {
  max-width: 100%;
  height: auto;
}

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

/* Site chrome */

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(12px);
  background: rgba(11, 18, 36, 0.92);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: env(safe-area-inset-top, 0);
}

.site-header.is-scrolled {
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.18);
}

.site-header .page {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 64px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #fff;
  text-decoration: none;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.brand-icon {
  width: 34px;
  height: 34px;
  border-radius: 9px;
  flex-shrink: 0;
  object-fit: cover;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.22);
}

.site-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.site-nav a {
  color: rgba(255, 255, 255, 0.86);
  text-decoration: none;
  padding: 8px 12px;
  border-radius: 10px;
  font-size: 0.92rem;
  font-weight: 500;
}

.site-nav a:hover,
.site-nav a.active {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.08);
  cursor: pointer;
  flex-shrink: 0;
}

.nav-toggle-bar {
  display: block;
  width: 18px;
  height: 2px;
  margin: 0 auto;
  border-radius: 999px;
  background: #fff;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 46px;
  padding: 12px 18px;
  border-radius: 12px;
  font-weight: 600;
  text-decoration: none;
  border: 1px solid transparent;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

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

.btn-primary {
  background: linear-gradient(135deg, var(--app-teal) 0%, #2d7a9a 100%);
  color: #fff;
  box-shadow: 0 10px 24px rgba(51, 140, 140, 0.32);
}

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

.btn-soon {
  cursor: default;
  opacity: 0.95;
  box-shadow: 0 10px 24px rgba(51, 140, 140, 0.22);
}

.btn-soon:hover {
  transform: none;
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.18);
}

.btn-light {
  background: var(--paper);
  color: var(--ink);
  border-color: var(--line);
}

/* Hero (marketing) */

.marketing-hero {
  background:
    radial-gradient(ellipse 70% 55% at 85% 15%, rgba(142, 197, 255, 0.2), transparent 50%),
    radial-gradient(ellipse 60% 50% at 5% 20%, rgba(143, 217, 200, 0.22), transparent 50%),
    radial-gradient(ellipse 50% 40% at 70% 85%, rgba(255, 201, 168, 0.14), transparent 45%),
    linear-gradient(180deg, var(--hero) 0%, var(--hero-2) 100%);
  color: #fff;
  padding: 56px 0 72px;
}

.marketing-hero .grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 40px;
  align-items: center;
}

.eyebrow {
  display: inline-block;
  margin-bottom: 14px;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.marketing-hero h1 {
  margin: 0 0 16px;
  font-size: clamp(2.1rem, 4.8vw, 3.35rem);
  line-height: 1.08;
  letter-spacing: -0.03em;
}

.lead {
  margin: 0 0 24px;
  max-width: 560px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 1.08rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 22px;
}

.hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 20px;
  margin: 0;
  padding: 0;
  list-style: none;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.92rem;
}

.hero-points li::before {
  content: "✓ ";
  color: var(--app-mint);
  font-weight: 700;
}

/* Phone + app preview */

.phone-stage {
  position: relative;
  display: flex;
  justify-content: center;
  padding: 8px 0 12px;
  width: 100%;
  min-height: 320px;
}

.phone-glow {
  position: absolute;
  inset: 8% 0 0;
  background: radial-gradient(
    circle at 50% 40%,
    rgba(143, 217, 200, 0.35),
    rgba(142, 197, 255, 0.15) 45%,
    transparent 70%
  );
  filter: blur(18px);
  pointer-events: none;
}

.phone-frame {
  position: relative;
  width: min(100%, 300px);
  border-radius: 36px;
  padding: 11px;
  background: linear-gradient(155deg, #2a3344 0%, #111827 55%, #0b1020 100%);
  box-shadow:
    0 28px 60px rgba(0, 0, 0, 0.45),
    0 0 0 1px rgba(255, 255, 255, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.15);
}

.phone-notch {
  position: absolute;
  top: 16px;
  left: 50%;
  transform: translateX(-50%);
  width: 88px;
  height: 24px;
  border-radius: 999px;
  background: #0b1020;
  z-index: 3;
}

.phone-screen {
  border-radius: 28px;
  overflow: hidden;
  background: var(--paper-warm);
  min-height: 520px;
}

.app-preview {
  padding: 38px 12px 14px;
  background: linear-gradient(180deg, #fff 0%, #f3f6f9 100%);
}

.app-preview-header {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 10px;
}

.app-preview-header img {
  width: 28px;
  height: 28px;
  border-radius: 7px;
  box-shadow: 0 2px 8px rgba(51, 140, 140, 0.25);
}

.app-preview-header div strong {
  display: block;
  font-size: 0.82rem;
  line-height: 1.2;
}

.app-preview-header div span {
  font-size: 0.68rem;
  color: var(--muted);
}

.app-property-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 10px;
  padding: 6px 10px;
  border-radius: 999px;
  background: var(--accent-soft);
  color: var(--accent-deep);
  font-size: 0.72rem;
  font-weight: 600;
}

.app-property-pill::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: var(--app-green);
}

.app-kpis {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 7px;
  margin-bottom: 10px;
}

.app-kpi {
  padding: 9px 10px;
  border-radius: 12px;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: 0 1px 0 rgba(15, 23, 42, 0.03);
}

.app-kpi small {
  display: block;
  font-size: 0.64rem;
  color: var(--muted);
  margin-bottom: 2px;
}

.app-kpi b {
  font-size: 0.92rem;
  color: var(--ink);
}

.app-kpi--clicks {
  border-left: 3px solid var(--blue);
}

.app-kpi--impressions {
  border-left: 3px solid var(--app-coral);
}

.app-kpi--ctr {
  border-left: 3px solid var(--app-green);
}

.app-kpi--position {
  border-left: 3px solid var(--app-purple);
}

.app-chart-card {
  padding: 10px;
  border-radius: 14px;
  background: #fff;
  border: 1px solid var(--line);
  margin-bottom: 10px;
}

.app-chart-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 8px;
  font-size: 0.68rem;
  color: var(--muted);
}

.app-chart-legend {
  display: flex;
  gap: 10px;
}

.app-chart-legend span {
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.app-chart-legend i {
  width: 10px;
  height: 3px;
  border-radius: 999px;
  display: inline-block;
}

.app-chart-legend .leg-clicks i {
  background: var(--blue);
}

.app-chart-legend .leg-impressions i {
  background: var(--app-coral);
}

.app-chart-area {
  height: 88px;
  border-radius: 10px;
  background:
    linear-gradient(180deg, rgba(59, 130, 246, 0.1) 0%, transparent 65%),
    linear-gradient(180deg, rgba(229, 102, 89, 0.08) 0%, transparent 65%),
    #fafbfc;
  position: relative;
  overflow: hidden;
}

.app-chart-area svg {
  position: absolute;
  inset: 8px 6px 6px;
  width: calc(100% - 12px);
  height: calc(100% - 14px);
}

.app-list-card {
  padding: 10px;
  border-radius: 14px;
  background: #fff;
  border: 1px solid var(--line);
  margin-bottom: 8px;
}

.app-list-card h4 {
  margin: 0 0 8px;
  font-size: 0.72rem;
  color: var(--ink-soft);
}

.app-list-row {
  display: flex;
  justify-content: space-between;
  gap: 8px;
  font-size: 0.66rem;
  padding: 5px 0;
  border-top: 1px solid #f1f5f9;
}

.app-list-row:first-of-type {
  border-top: 0;
  padding-top: 0;
}

.app-list-row strong {
  color: var(--ink);
  font-weight: 600;
  max-width: 62%;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.app-list-row em {
  font-style: normal;
  color: var(--app-teal);
  font-weight: 600;
}

.app-cta-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 7px;
}

.app-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  min-height: 34px;
  border-radius: 10px;
  font-size: 0.64rem;
  font-weight: 600;
}

.app-cta--pdf {
  background: linear-gradient(135deg, var(--app-teal), #2d7a9a);
  color: #fff;
}

.app-cta--widget {
  background: linear-gradient(135deg, var(--app-mint), var(--app-sky));
  color: #0f3d45;
}

.phone-widget-float {
  position: absolute;
  right: -8px;
  bottom: 72px;
  width: 118px;
  padding: 10px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid var(--line);
  box-shadow: 0 12px 28px rgba(15, 23, 42, 0.18);
  backdrop-filter: blur(8px);
}

.phone-widget-float small {
  display: block;
  font-size: 0.58rem;
  color: var(--muted);
}

.phone-widget-float strong {
  display: block;
  font-size: 1rem;
  color: var(--ink);
  margin: 2px 0;
}

.phone-widget-float span {
  font-size: 0.62rem;
  color: var(--app-green);
  font-weight: 600;
}

/* Sections */

.section {
  padding: 72px 0;
}

.section.alt {
  background: var(--paper);
  border-block: 1px solid var(--line);
}

.section-head {
  max-width: 720px;
  margin-bottom: 36px;
}

.section-head h2 {
  margin: 0 0 10px;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  letter-spacing: -0.02em;
}

.section-head p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 1.05rem;
}

.trust-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 14px;
}

.trust-item {
  padding: 16px 18px;
  border-radius: var(--radius);
  background: var(--paper);
  border: 1px solid var(--line);
}

.trust-item strong {
  display: block;
  margin-bottom: 4px;
}

.trust-item span {
  color: var(--muted);
  font-size: 0.92rem;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 18px;
}

.feature-card {
  padding: 22px;
  border-radius: var(--radius);
  background: var(--paper);
  border: 1px solid var(--line);
  border-left: 4px solid var(--accent);
  box-shadow: 0 1px 0 rgba(15, 23, 42, 0.03);
}

.feature-card h3 {
  margin: 0 0 8px;
  font-size: 1.05rem;
}

.feature-card p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.96rem;
}

.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 18px;
  counter-reset: step;
}

.step {
  padding: 20px;
  border-radius: var(--radius);
  background: var(--paper-warm);
  border: 1px solid var(--line);
}

.step::before {
  counter-increment: step;
  content: counter(step);
  display: inline-grid;
  place-items: center;
  width: 32px;
  height: 32px;
  margin-bottom: 12px;
  border-radius: 999px;
  background: var(--accent-soft);
  color: var(--accent-deep);
  font-weight: 700;
  font-size: 0.9rem;
}

.step h3 {
  margin: 0 0 8px;
  font-size: 1rem;
}

.step p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.94rem;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 18px;
  align-items: stretch;
}

.price-card {
  padding: 24px;
  border-radius: calc(var(--radius) + 2px);
  background: var(--paper);
  border: 1px solid var(--line);
}

.price-card.featured {
  border-color: var(--accent);
  box-shadow: 0 0 0 1px rgba(13, 148, 136, 0.2), var(--shadow);
}

.price-card h3 {
  margin: 0 0 6px;
}

.price-amount {
  margin: 8px 0 4px;
  font-size: 2.4rem;
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1;
  color: var(--ink);
}

.price-card.featured .price-amount {
  color: var(--accent-deep);
}

.price-currency {
  font-size: 1.2rem;
  font-weight: 600;
  vertical-align: super;
  margin-right: 2px;
}

.price-period {
  margin: 0 0 12px;
  font-size: 0.9rem;
  color: var(--muted);
}

.price-free-label {
  margin: 8px 0 12px;
  font-size: 2rem;
  font-weight: 700;
  color: var(--ink);
}

.price-card .tag {
  display: inline-block;
  margin-bottom: 12px;
  padding: 4px 10px;
  border-radius: 999px;
  background: var(--accent-soft);
  color: var(--accent-deep);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.price-card ul {
  margin: 16px 0 0;
  padding-left: 18px;
  color: var(--ink-soft);
}

.faq-list {
  display: grid;
  gap: 12px;
}

.faq-item {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  overflow: hidden;
}

.faq-item summary {
  cursor: pointer;
  padding: 16px 18px;
  font-weight: 600;
  list-style: none;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

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

.faq-item .faq-body {
  padding: 0 18px 16px;
  color: var(--ink-soft);
}

.cta-band {
  padding: 48px 0;
  background: linear-gradient(135deg, var(--hero) 0%, #123047 100%);
  color: #fff;
  text-align: center;
}

.cta-band h2 {
  margin: 0 0 10px;
  font-size: clamp(1.5rem, 3vw, 2rem);
}

.cta-band p {
  margin: 0 auto 20px;
  max-width: 560px;
  color: rgba(255, 255, 255, 0.84);
}

/* Legal pages */

.hero {
  color: #fff;
  padding: 48px 0 24px;
  background: linear-gradient(180deg, var(--hero) 0%, var(--hero-2) 100%);
}

.hero h1 {
  margin: 0 0 12px;
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  line-height: 1.15;
}

.hero p {
  margin: 0;
  max-width: 760px;
  color: rgba(255, 255, 255, 0.84);
}

.topnav {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 20px;
}

.topnav a {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 8px 14px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: #fff;
  text-decoration: none;
  background: rgba(255, 255, 255, 0.06);
  font-size: 0.92rem;
}

.topnav a.active,
.topnav a:hover {
  background: rgba(255, 255, 255, 0.14);
}

.content-shell {
  padding: 0 0 48px;
}

.panel {
  margin-top: 18px;
  padding: 28px;
  border-radius: var(--radius);
  background: var(--paper);
  box-shadow: var(--shadow);
  border: 1px solid var(--line);
}

.panel h2 {
  margin-top: 0;
  margin-bottom: 14px;
  font-size: 1.5rem;
}

.panel h3 {
  margin: 28px 0 10px;
  font-size: 1.08rem;
}

.meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 18px;
  color: var(--muted);
  font-size: 0.94rem;
}

.callout {
  margin: 18px 0;
  padding: 16px 18px;
  border: 1px solid var(--line);
  border-left: 4px solid var(--accent);
  border-radius: 12px;
  background: #f0fdfa;
}

.muted {
  color: var(--muted);
}

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
}

.card {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--paper-warm);
}

.footer {
  padding: 28px 0 calc(40px + env(safe-area-inset-bottom, 0));
  background: var(--hero);
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.94rem;
}

.footer .page {
  display: flex;
  flex-wrap: wrap;
  gap: 16px 24px;
  justify-content: space-between;
  align-items: flex-start;
}

.footer a {
  color: #99f6e4;
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

code {
  padding: 2px 6px;
  border-radius: 6px;
  background: var(--accent-soft);
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 0.9em;
}

hr {
  border: 0;
  border-top: 1px solid var(--line);
  margin: 28px 0;
}

/* Tablet: stack hero, keep desktop header */
@media (max-width: 900px) {
  .marketing-hero .grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .marketing-hero {
    padding: 44px 0 56px;
  }

  .phone-stage {
    margin-top: 4px;
  }

  .lead {
    max-width: none;
  }
}

/* Mobile */
@media (max-width: 768px) {
  .page {
    width: min(calc(100% - 24px), var(--max));
  }

  .site-header .page {
    flex-wrap: wrap;
    align-items: center;
    gap: 6px;
    padding-block: 6px;
    min-height: 0;
  }

  .site-header.is-nav-open {
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.22);
  }

  .brand {
    flex: 1;
    min-width: 0;
    gap: 8px;
  }

  .brand-icon {
    width: 28px;
    height: 28px;
    border-radius: 7px;
  }

  .brand span {
    font-size: 0.88rem;
    line-height: 1.2;
  }

  .nav-toggle {
    display: inline-flex;
    width: 36px;
    height: 36px;
    gap: 4px;
    border-radius: 10px;
  }

  .nav-toggle-bar {
    width: 15px;
  }

  .nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
  }

  .nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
  }

  .site-nav {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    width: 100%;
    order: 3;
    gap: 2px;
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    pointer-events: none;
    padding: 0;
    margin: 0;
    border-top: 0 solid rgba(255, 255, 255, 0.1);
    transition:
      max-height 0.28s ease,
      opacity 0.2s ease,
      padding 0.28s ease,
      border-width 0.1s ease;
  }

  .site-nav.is-open {
    max-height: 320px;
    opacity: 1;
    pointer-events: auto;
    padding: 6px 0 8px;
    border-top-width: 1px;
  }

  .site-nav a {
    min-height: 40px;
    padding: 10px 12px;
    font-size: 0.94rem;
    border-radius: 8px;
  }

  .marketing-hero {
    padding: 32px 0 48px;
  }

  .marketing-hero h1 {
    font-size: clamp(1.75rem, 8vw, 2.35rem);
  }

  .lead {
    font-size: 1rem;
    margin-bottom: 20px;
  }

  .eyebrow {
    font-size: 0.75rem;
    margin-bottom: 12px;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
  }

  .hero-actions .btn {
    width: 100%;
    min-height: 48px;
  }

  .hero-points {
    flex-direction: column;
    gap: 10px;
    font-size: 0.9rem;
  }

  .phone-stage {
    display: flex;
    padding: 0 4px 8px;
    overflow: visible;
    min-height: 0;
  }

  .phone-frame {
    width: min(100%, 272px);
    margin: 0 auto;
  }

  .phone-screen {
    min-height: 480px;
  }

  .phone-widget-float {
    right: 2px;
    bottom: 56px;
    width: 100px;
    padding: 8px;
  }

  .app-chart-head {
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
  }

  .section {
    padding: 48px 0;
  }

  .section-head {
    margin-bottom: 28px;
  }

  .section-head h2 {
    font-size: clamp(1.45rem, 5.5vw, 1.85rem);
  }

  .section-head p {
    font-size: 0.98rem;
  }

  .trust-row,
  .feature-grid,
  .steps,
  .pricing-grid {
    grid-template-columns: 1fr;
  }

  .feature-card,
  .step,
  .trust-item,
  .price-card {
    padding: 18px;
  }

  .price-amount {
    font-size: 2.1rem;
  }

  .price-free-label {
    font-size: 1.85rem;
  }

  .faq-item summary {
    padding: 14px 16px;
    font-size: 0.95rem;
    line-height: 1.4;
  }

  .faq-item .faq-body {
    padding: 0 16px 14px;
    font-size: 0.95rem;
  }

  .footer .page {
    flex-direction: column;
    gap: 20px;
  }

  .footer-nav {
    flex-direction: column;
    gap: 10px;
  }

  .footer-nav a {
    min-height: 44px;
    display: inline-flex;
    align-items: center;
  }

  .hero {
    padding: 36px 0 20px;
  }

  .hero h1 {
    font-size: clamp(1.55rem, 6vw, 2rem);
  }

  .panel {
    padding: 20px;
    margin-top: 14px;
  }

  .panel h2 {
    font-size: 1.3rem;
  }

  .meta {
    flex-direction: column;
    gap: 6px;
  }
}

@media (max-width: 380px) {
  .brand span {
    font-size: 0.82rem;
  }

  .brand-icon {
    width: 26px;
    height: 26px;
  }

  .phone-frame {
    width: 100%;
    max-width: 260px;
  }

  .phone-widget-float {
    display: none;
  }

  .app-list-row strong {
    max-width: 55%;
  }
}

/* Desktop: unchanged horizontal header + nav */
@media (min-width: 769px) {
  .nav-toggle {
    display: none !important;
  }

  .site-nav {
    display: flex !important;
    flex-direction: row;
    width: auto;
    order: unset;
    max-height: none !important;
    opacity: 1 !important;
    overflow: visible !important;
    pointer-events: auto !important;
    padding: 0;
    border-top: none;
  }

  .site-header.is-nav-open {
    box-shadow: none;
  }
}
