/* ═══════════════════════════════════════════════════════════════
   Fix My Lovable App — Flat Design, Red Palette
   Reference: white bg, 2-col hero, decorative circles, red CTA
   ═══════════════════════════════════════════════════════════════ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg: #FFFFFF;
  --fg: #111827;
  --primary: #EF4444;
  --primary-hover: #DC2626;
  --primary-light: #FEF2F2;
  --primary-mid: #FECACA;
  --muted: #F9FAFB;
  --border: #E5E7EB;
  --dim: #6B7280;
  --ok: #10B981;
}

html { scroll-behavior: smooth; }
body {
  font-family: 'Outfit', sans-serif;
  background: var(--bg); color: var(--fg);
  font-size: 17px; line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
@media (min-width: 640px) { body { font-size: 18px; } }
::selection { background: var(--primary); color: #fff; }
h1, h2, h3 { font-weight: 700; letter-spacing: -0.025em; line-height: 1.1; color: var(--fg); }
a { color: var(--primary); text-decoration: none; }
*:focus-visible { outline: none; box-shadow: 0 0 0 2px #fff, 0 0 0 4px var(--primary); }
.wrap { max-width: 1080px; margin: 0 auto; padding: 0 1.5rem; }
.section { padding: 5rem 0; position: relative; overflow: hidden; }
.section-muted { background: var(--muted); }

/* ─── Nav ───────────────────────────────────── */
.nav { position: sticky; top: 0; z-index: 50; background: var(--bg); border-bottom: 1px solid var(--border); padding: 0.8rem 0; }
.nav-inner { display: flex; align-items: center; justify-content: space-between; gap: 1rem; }
.logo { font-weight: 700; font-size: 1rem; color: var(--fg); display: flex; align-items: center; gap: 0.5rem; text-decoration: none; flex-shrink: 0; }
.logo img { height: 36px; width: auto; object-fit: contain; }
.nav-links { display: flex; align-items: center; gap: 2rem; list-style: none; }
.nav-links a { color: var(--dim); font-size: 0.88rem; font-weight: 500; transition: color 150ms; }
.nav-links a:hover { color: var(--fg); }
.nav-cta { background: var(--primary); color: #fff; border: none; padding: 0.5rem 1.2rem; border-radius: 6px; font-size: 0.85rem; font-weight: 600; cursor: pointer; text-decoration: none; transition: all 200ms; flex-shrink: 0; }
.nav-cta:hover { background: var(--primary-hover); transform: scale(1.04); color: #fff; }
@media (max-width: 768px) { .nav-links { display: none; } }

/* ─── Hero (2-column, text left, heart right) ─── */
.hero { padding: 4rem 0 3rem; position: relative; overflow: hidden; }
.hero-grid {
  display: grid; grid-template-columns: 1.2fr 0.8fr;
  gap: 2rem; align-items: center;
  position: relative; z-index: 1;
}
@media (max-width: 768px) {
  .hero-grid { grid-template-columns: 1fr; text-align: center; }
  .hero-visual { order: -1; }
  .hero-visual img { max-width: 240px; }
  .cta-row, .trust-row { justify-content: center; }
}
.hero-text {}
.hero-badge {
  display: inline-flex; align-items: center; gap: 0.3rem;
  background: var(--primary-light); color: var(--primary);
  padding: 0.3rem 0.8rem; border-radius: 6px;
  font-size: 0.78rem; font-weight: 600; margin-bottom: 1.25rem;
}
.hero h1 { font-size: clamp(2rem, 4vw, 2.8rem); font-weight: 800; letter-spacing: -0.035em; line-height: 1.12; }
.highlight { color: var(--primary); }
.sub { margin-top: 1.25rem; color: var(--dim); font-size: 1rem; line-height: 1.6; max-width: 460px; }
@media (max-width: 768px) { .sub { margin-left: auto; margin-right: auto; } }
.cta-row { margin-top: 1.75rem; display: flex; gap: 0.75rem; align-items: center; flex-wrap: wrap; }
.btn-primary {
  display: inline-flex; align-items: center; gap: 0.4rem;
  background: var(--primary); color: #fff; border: none;
  padding: 0.8rem 1.6rem; border-radius: 6px;
  font-size: 0.92rem; font-weight: 700; cursor: pointer;
  text-decoration: none; transition: all 200ms; font-family: 'Outfit', sans-serif;
}
.btn-primary:hover { background: var(--primary-hover); transform: scale(1.04); color: #fff; }
.btn-outline {
  display: inline-flex; align-items: center; gap: 0.4rem;
  border: 3px solid var(--fg); color: var(--fg); background: transparent;
  padding: 0.7rem 1.4rem; border-radius: 6px;
  font-size: 0.92rem; font-weight: 600; cursor: pointer;
  text-decoration: none; transition: all 200ms; font-family: 'Outfit', sans-serif;
}
.btn-outline:hover { background: var(--fg); color: #fff; transform: scale(1.04); }
.trust-row { margin-top: 2rem; display: flex; gap: 1.25rem; flex-wrap: wrap; }
.trust-item { display: flex; align-items: center; gap: 0.35rem; font-size: 0.8rem; color: var(--dim); font-weight: 500; }
.trust-item img,
.trust-icon {
  height: 18px !important;
  width: 18px !important;
  max-width: 18px !important;
  max-height: 18px !important;
  object-fit: contain;
  flex-shrink: 0;
}

/* Hero visual — heart in pink circle with floating decorative elements */
.hero-visual {
  display: flex; justify-content: center; align-items: center;
  position: relative;
  min-height: 320px;
}
.hero-visual img {
  width: auto; max-height: 240px; height: auto; max-width: 80%;
  position: relative; z-index: 2;
}
/* Pink circle behind the heart */
.hero-visual::before {
  content: "";
  position: absolute;
  width: 300px; height: 300px;
  border-radius: 50%;
  background: var(--primary-light);
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
}
/* Scattered decorative elements — float animation */
.hero-deco {
  position: absolute; z-index: 3;
  color: var(--primary-mid);
  font-weight: 300;
  line-height: 1;
  pointer-events: none;
}
.hero-deco-1 { top: 4%; right: 6%; font-size: 36px; animation: float-1 4s ease-in-out infinite; }
.hero-deco-2 { top: 2%; left: 18%; font-size: 24px; animation: float-2 5s ease-in-out infinite; }
.hero-deco-3 { bottom: 10%; right: 3%; font-size: 30px; animation: float-3 4.5s ease-in-out infinite; }
.hero-deco-4 { bottom: 5%; left: 8%; font-size: 28px; animation: float-1 5.5s ease-in-out infinite; }
.hero-deco-5 { top: 45%; right: 0%; font-size: 20px; animation: float-2 3.5s ease-in-out infinite; }
.hero-deco-6 { top: 20%; left: 2%; font-size: 40px; opacity: 0.35; animation: float-3 6s ease-in-out infinite; }
.hero-deco-7 { top: 60%; left: 3%; font-size: 18px; animation: float-1 4.2s ease-in-out infinite; }
.hero-deco-8 { top: 12%; right: 20%; font-size: 16px; opacity: 0.5; animation: float-2 3.8s ease-in-out infinite; }

@keyframes float-1 {
  0%, 100% { transform: translate(0, 0) rotate(0deg); }
  25% { transform: translate(4px, -8px) rotate(10deg); }
  50% { transform: translate(-2px, -14px) rotate(-5deg); }
  75% { transform: translate(6px, -6px) rotate(8deg); }
}
@keyframes float-2 {
  0%, 100% { transform: translate(0, 0) rotate(0deg); }
  33% { transform: translate(-6px, -10px) rotate(-12deg); }
  66% { transform: translate(4px, -16px) rotate(8deg); }
}
@keyframes float-3 {
  0%, 100% { transform: translate(0, 0) rotate(0deg); }
  20% { transform: translate(5px, -6px) rotate(6deg); }
  40% { transform: translate(-3px, -12px) rotate(-8deg); }
  60% { transform: translate(7px, -8px) rotate(4deg); }
  80% { transform: translate(-2px, -4px) rotate(-3deg); }
}

@media (max-width: 768px) {
  .hero-visual { min-height: 240px; }
  .hero-visual::before { width: 220px; height: 220px; }
  .hero-visual img { max-height: 180px; }
}
@media (prefers-reduced-motion: reduce) {
  .hero-deco { animation: none !important; }
}

/* Decorative circles (subtle, flat) */
.deco { position: absolute; border-radius: 50%; background: var(--primary-light); pointer-events: none; z-index: 0; }
.deco-1 { width: 350px; height: 350px; top: -100px; right: -80px; opacity: 0.6; }
.deco-2 { width: 200px; height: 200px; bottom: -60px; left: 5%; opacity: 0.4; }
.deco-3 { width: 120px; height: 120px; top: 60%; left: -40px; opacity: 0.3; }

/* ─── Launch banner ───────────────── */
.launch-banner {
  background: var(--fg); color: rgba(255,255,255,0.85);
  padding: 1rem 0; font-size: 0.88rem;
}
.launch-inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 1.5rem; flex-wrap: wrap;
}
.launch-text { flex: 1; min-width: 240px; }
.launch-text strong { color: #fff; }
.launch-discount {
  background: var(--primary); color: #fff;
  padding: 0.15rem 0.5rem; border-radius: 4px;
  font-weight: 700; font-size: 0.85rem;
}
.trustpilot-link {
  flex-shrink: 0;
  background: rgba(255,255,255,0.1); color: #fff;
  padding: 0.5rem 1rem; border-radius: 6px;
  font-size: 0.82rem; font-weight: 600;
  text-decoration: none; transition: all 200ms;
  border: 1px solid rgba(255,255,255,0.15);
}
.trustpilot-link:hover { background: rgba(255,255,255,0.2); transform: scale(1.03); color: #fff; }

/* ─── Section headers ─────────────── */
.sh { text-align: center; max-width: 560px; margin: 0 auto 3rem; }
.sh h2 { font-size: clamp(1.5rem, 3vw, 2rem); margin-bottom: 0.5rem; }
.sh p { color: var(--dim); font-size: 0.95rem; }

/* ─── Card grids ──────────────────── */
.card-grid-4 { display: grid; gap: 1.25rem; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); }
.card-grid-3 { display: grid; gap: 1.25rem; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); }
.card-flat { background: var(--bg); border: none; border-radius: 8px; padding: 1.75rem; transition: all 200ms; }
.card-flat:hover { transform: scale(1.02); }
.card-icon {
  width: 56px; height: 56px; border-radius: 50%;
  background: var(--primary-light);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.25rem;
}
.card-icon img { width: 28px; height: 28px; object-fit: contain; }
.card-flat h3 { font-size: 1rem; font-weight: 700; margin-bottom: 0.4rem; }
.card-flat p { font-size: 0.88rem; color: var(--dim); line-height: 1.55; }

/* ─── Steps ───────────────────────── */
.steps-grid { display: grid; gap: 1.25rem; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); }
.step { text-align: center; padding: 1.25rem 1rem; border-radius: 8px; transition: all 200ms; }
.step:hover { background: var(--muted); transform: scale(1.02); }
.step-num {
  display: inline-flex; align-items: center; justify-content: center;
  width: 52px; height: 52px; border-radius: 50%;
  background: var(--primary-light);
  margin-bottom: 0.9rem;
}
.step-num img { width: 24px; height: 24px; object-fit: contain; }
.step h3 { font-size: 0.92rem; font-weight: 700; margin-bottom: 0.3rem; }
.step p { font-size: 0.82rem; color: var(--dim); }

/* ─── Pricing tiers ───────────────── */
.tier-card { background: var(--bg); border: none; border-radius: 8px; padding: 2rem; position: relative; transition: all 200ms; display: flex; flex-direction: column; }
.tier-card:hover { transform: scale(1.02); }
.tier-card.popular { border: 4px solid var(--primary); transform: scale(1.03); }
.tier-card.popular:hover { transform: scale(1.05); }
.tier-card.popular::before {
  content: "Most popular"; position: absolute; top: -0.7rem; left: 1.5rem;
  background: var(--primary); color: #fff;
  padding: 0.15rem 0.7rem; border-radius: 4px;
  font-size: 0.68rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.05em;
}
.tier-name { font-size: 0.7rem; text-transform: uppercase; letter-spacing: 0.12em; color: var(--dim); font-weight: 600; }
.tier-price { font-size: 2.5rem; font-weight: 800; margin: 0.3rem 0; color: var(--fg); letter-spacing: -0.03em; }
.tier-desc { font-size: 0.88rem; color: var(--dim); margin-bottom: 1.25rem; }
.tier-list { flex: 1; }
.tier-list { list-style: none; padding: 0; }
.tier-list li { padding: 0.35rem 0; font-size: 0.84rem; color: var(--dim); display: flex; align-items: flex-start; gap: 0.5rem; }
.tier-list li::before { content: "✓"; color: var(--ok); font-weight: 800; flex-shrink: 0; }
.tier-btn {
  display: block; width: 100%; margin-top: auto; padding-top: 1.5rem;
  padding: 0.7rem; border-radius: 6px;
  text-align: center; font-weight: 600; font-size: 0.88rem;
  border: 3px solid var(--fg); color: var(--fg);
  background: transparent; cursor: pointer;
  transition: all 200ms; text-decoration: none; font-family: 'Outfit', sans-serif;
}
.tier-btn:hover { background: var(--fg); color: #fff; transform: scale(1.03); }
.tier-card.popular .tier-btn { background: var(--primary); color: #fff; border-color: var(--primary); }
.tier-card.popular .tier-btn:hover { background: var(--primary-hover); border-color: var(--primary-hover); transform: scale(1.05); }

/* ─── Form ────────────────────────── */
.form-card { background: var(--muted); border: none; border-radius: 12px; padding: 2.5rem; max-width: 640px; margin: 0 auto; }
.field { margin-bottom: 1.25rem; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
@media (max-width: 480px) { .field-row { grid-template-columns: 1fr; } }
.field label { display: block; font-size: 0.8rem; font-weight: 600; color: var(--dim); margin-bottom: 0.35rem; text-transform: uppercase; letter-spacing: 0.05em; }
.field input, .field textarea, .field select {
  width: 100%; padding: 0.75rem 0.9rem;
  background: var(--bg); border: 2px solid var(--border);
  border-radius: 6px; color: var(--fg);
  font-size: 0.92rem; font-family: 'Outfit', sans-serif;
}
.field input:focus, .field textarea:focus, .field select:focus { outline: none; border-color: var(--primary); }
.field input::placeholder, .field textarea::placeholder { color: #9CA3AF; }
.field textarea { resize: vertical; min-height: 100px; }
.field select { cursor: pointer; }
.field .hint { font-size: 0.74rem; color: #9CA3AF; margin-top: 0.3rem; }
.submit-btn {
  display: block; width: 100%; padding: 0.85rem;
  background: var(--primary); color: #fff; border: none;
  border-radius: 6px; font-size: 0.95rem; font-weight: 700;
  cursor: pointer; transition: all 200ms; margin-top: 1.5rem; font-family: 'Outfit', sans-serif;
}
.submit-btn:hover { background: var(--primary-hover); transform: scale(1.02); }
.form-note { text-align: center; color: var(--dim); font-size: 0.76rem; margin-top: 1rem; }

/* ─── FAQ ─────────────────────────── */
.faq-list { max-width: 640px; margin: 0 auto; }
.faq-list details { border-bottom: 2px solid var(--border); padding: 1.2rem 0; }
.faq-list summary {
  cursor: pointer; list-style: none;
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  font-weight: 600; color: var(--fg); font-size: 0.98rem; transition: color 200ms;
}
.faq-list summary:hover { color: var(--primary); }
.faq-list summary::after { content: "+"; font-size: 1.4rem; color: var(--dim); font-weight: 300; transition: transform 200ms; }
.faq-list details[open] summary::after { transform: rotate(45deg); color: var(--primary); }
.answer { margin-top: 0.75rem; font-size: 0.9rem; color: var(--dim); line-height: 1.6; }

/* ─── Bottom CTA ──────────────────── */
.tagline-center { text-align: center; font-size: 0.95rem; color: var(--dim); font-weight: 500; margin-bottom: 1.5rem; }
.tagline-center img { height: 18px; width: auto; vertical-align: middle; margin-right: 0.3rem; }
.cta-banner {
  max-width: 800px; margin: 0 auto;
  background: var(--primary); color: #fff;
  border-radius: 16px; padding: 2.5rem 3rem;
  display: flex; align-items: center; gap: 2rem;
}
.cta-banner-heart { flex-shrink: 0; }
.cta-banner-heart img { height: 110px; width: auto; object-fit: contain; }
.cta-banner-copy { flex: 1; }
.cta-banner h2 { color: #fff; font-size: 1.4rem; margin-bottom: 0.4rem; }
.cta-banner p { color: rgba(255,255,255,0.8); font-size: 0.92rem; margin-bottom: 1rem; }
.btn-white {
  display: inline-flex; align-items: center; gap: 0.4rem;
  background: #fff; color: var(--primary); border: none;
  padding: 0.7rem 1.4rem; border-radius: 6px;
  font-size: 0.9rem; font-weight: 700; cursor: pointer;
  text-decoration: none; transition: all 200ms;
}
.btn-white:hover { transform: scale(1.05); color: var(--primary-hover); }
@media (max-width: 640px) {
  .cta-banner { flex-direction: column; text-align: center; padding: 2rem; }
  .cta-banner-heart img { width: 70px; height: 70px; }
}

/* ─── Footer ──────────────────────── */
.footer { background: var(--fg); color: rgba(255,255,255,0.5); padding: 2.5rem 0; text-align: center; font-size: 0.85rem; }
.footer strong { color: #fff; font-weight: 600; }
.footer-legal { margin-top: 1.5rem; padding-top: 1.5rem; border-top: 1px solid rgba(255,255,255,0.1); font-size: 0.78rem; color: rgba(255,255,255,0.35); }
.footer-legal p { margin: 0.2rem 0; }
.footer-legal a { color: rgba(255,255,255,0.5); }
.footer-legal a:hover { color: #fff; }

/* ═══════════════════════════════════════════════════════════════
   MOBILE — full redesign for < 768px
   Touch-first: 48px min targets, stacked layouts, tighter spacing
   ═══════════════════════════════════════════════════════════════ */

/* ─── Tablet (481-768px) ─────────── */
@media (max-width: 768px) {
  .section { padding: 3.5rem 0; }
  .wrap { padding: 0 1.25rem; }
  .sh { margin-bottom: 2rem; }
  .sh h2 { font-size: 1.4rem; }

  /* Steps: 2x2 grid on tablet */
  .steps-grid { grid-template-columns: 1fr 1fr; }
}

/* ─── Phone (< 640px) ────────────── */
@media (max-width: 640px) {

  /* Global */
  body { font-size: 16px; }
  .section { padding: 3rem 0; }
  .wrap { padding: 0 1rem; }
  .sh { margin-bottom: 1.75rem; }
  .sh h2 { font-size: 1.3rem; }
  .sh p { font-size: 0.88rem; }

  /* Nav — compact */
  .nav { padding: 0.6rem 0; }
  .logo { font-size: 0.9rem; gap: 0.4rem; }
  .logo img { height: 28px; }
  .nav-cta { padding: 0.45rem 1rem; font-size: 0.8rem; }

  /* Hero — image on top, text centered below */
  .hero { padding: 2rem 0 1.5rem; }
  .hero-grid { grid-template-columns: 1fr; gap: 1.5rem; text-align: center; }
  .hero-visual { order: -1; min-height: 200px; }
  .hero-visual img { max-height: 160px; }
  .hero-visual::before { width: 200px; height: 200px; }
  .hero h1 { font-size: 1.65rem; line-height: 1.15; }
  .sub { font-size: 0.9rem; margin-left: auto; margin-right: auto; max-width: 100%; }
  .hero-badge { font-size: 0.72rem; padding: 0.25rem 0.65rem; margin-bottom: 1rem; }

  /* Hero CTAs — full width stacked */
  .cta-row { flex-direction: column; gap: 0.6rem; margin-top: 1.5rem; }
  .btn-primary, .btn-outline {
    width: 100%; justify-content: center;
    padding: 0.9rem 1rem; font-size: 0.95rem;
    min-height: 48px;
  }

  /* Trust row — 2x2 grid */
  .trust-row {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 0.6rem; margin-top: 1.5rem;
    justify-items: center;
  }
  .trust-item { font-size: 0.75rem; gap: 0.25rem; }
  .trust-icon { height: 14px; width: 14px; }

  /* Floating decorations — smaller, fewer */
  .hero-deco { font-size: 16px !important; opacity: 0.3 !important; }
  .hero-deco-6, .hero-deco-7, .hero-deco-8 { display: none; }
  .deco-1 { width: 200px; height: 200px; top: -80px; right: -60px; }
  .deco-2 { width: 120px; height: 120px; }
  .deco-3 { display: none; }

  /* Launch banner — stack */
  .launch-banner { padding: 0.9rem 0; font-size: 0.82rem; }
  .launch-inner { flex-direction: column; text-align: center; gap: 0.75rem; }
  .launch-text { min-width: unset; }
  .trustpilot-link { width: 100%; text-align: center; padding: 0.6rem; }

  /* Cards — single column, compact */
  .card-grid-4, .card-grid-3 { grid-template-columns: 1fr; gap: 1rem; }
  .card-flat { padding: 1.25rem; }
  .card-icon { width: 48px; height: 48px; margin-bottom: 1rem; }
  .card-icon img { width: 24px; height: 24px; }
  .card-flat h3 { font-size: 0.95rem; }
  .card-flat p { font-size: 0.85rem; }

  /* Steps — single column, horizontal connector feel */
  .steps-grid { grid-template-columns: 1fr; gap: 0; }
  .step {
    display: grid; grid-template-columns: auto 1fr;
    text-align: left; gap: 0 1rem; align-items: start;
    padding: 1rem 0; border-bottom: 1px solid var(--border);
    border-radius: 0;
  }
  .step:last-child { border-bottom: none; }
  .step:hover { background: transparent; transform: none; }
  .step-num {
    grid-row: 1 / 3; width: 44px; height: 44px; margin-bottom: 0;
  }
  .step-num img { width: 20px; height: 20px; }
  .step h3 { font-size: 0.9rem; margin-bottom: 0.15rem; }
  .step p { font-size: 0.8rem; }

  /* Pricing — single column, no scale tricks */
  .tier-card { padding: 1.5rem; }
  .tier-card.popular { transform: none; border-width: 3px; }
  .tier-card.popular:hover { transform: none; }
  .tier-card:hover { transform: none; }
  .tier-price { font-size: 2rem; }
  .tier-btn {
    min-height: 48px; display: flex; align-items: center; justify-content: center;
    font-size: 0.92rem; margin-top: 1.25rem; padding: 0.8rem;
  }

  /* Form — tight */
  .form-card { padding: 1.25rem; border-radius: 8px; }
  .field-row { grid-template-columns: 1fr; }
  .field label { font-size: 0.75rem; }
  .field input, .field textarea, .field select {
    padding: 0.7rem 0.8rem; font-size: 0.9rem;
    min-height: 44px;
  }
  .submit-btn { min-height: 48px; font-size: 0.92rem; }

  /* FAQ */
  .faq-list summary { font-size: 0.9rem; gap: 0.5rem; }
  .faq-list summary::after { font-size: 1.2rem; }
  .answer { font-size: 0.85rem; }

  /* Bottom CTA — stacked */
  .tagline-center { font-size: 0.85rem; }
  .cta-banner { flex-direction: column; text-align: center; padding: 1.75rem 1.25rem; gap: 1.25rem; border-radius: 12px; }
  .cta-banner-heart img { height: 70px; width: auto; }
  .cta-banner h2 { font-size: 1.2rem; }
  .cta-banner p { font-size: 0.85rem; margin-bottom: 0.75rem; }
  .btn-white { width: 100%; justify-content: center; min-height: 48px; padding: 0.8rem; }

  /* Footer */
  .footer { padding: 2rem 0; font-size: 0.82rem; }
  .footer-legal { margin-top: 1rem; padding-top: 1rem; font-size: 0.72rem; }
}

/* ─── Very small phones (< 380px) ──── */
@media (max-width: 380px) {
  .hero h1 { font-size: 1.4rem; }
  .hero-visual img { max-height: 130px; }
  .hero-visual::before { width: 170px; height: 170px; }
  .trust-row { grid-template-columns: 1fr; justify-items: start; }
  .tier-price { font-size: 1.8rem; }
  .cta-banner { padding: 1.5rem 1rem; }
}
