/* ─── Tokens ─────────────────────────────────────────────── */
:root {
  --bg: #f5f7f6;
  --surface: #ffffff;
  --surface-soft: #eef2f0;
  --ink: #1a2e2a;
  --ink-muted: #5a6e68;
  --line: #dde5e2;
  --accent: #00BFA5;
  --accent-hover: #00a892;
  --accent-2: #f3b23c;
  --shadow-sm: 0 2px 8px rgba(0, 60, 50, 0.06);
  --shadow: 0 12px 36px rgba(0, 60, 50, 0.1);
  --shadow-lg: 0 24px 56px rgba(0, 60, 50, 0.14);
  --radius-lg: 24px;
  --radius-md: 16px;
  --radius-sm: 12px;
  --container: 1140px;
  --ease: cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* ─── Reset ──────────────────────────────────────────────── */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
}

body {
  margin: 0;
  font-family: "Outfit", "Segoe UI", sans-serif;
  font-size: 1rem;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.55;
}

.site-bg {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -1;
  background:
    radial-gradient(ellipse at 12% 8%, rgba(0, 191, 165, 0.08), transparent 50%),
    radial-gradient(ellipse at 88% 18%, rgba(0, 191, 165, 0.05), transparent 40%),
    linear-gradient(180deg, #f8faf9 0%, #f5f7f6 50%, var(--bg) 100%);
}

img {
  max-width: 100%;
  display: block;
}

h1, h2, h3 {
  font-family: "Newsreader", Georgia, serif;
  line-height: 1.12;
  margin: 0 0 0.6rem;
  letter-spacing: -0.01em;
}

h2 {
  font-size: clamp(1.6rem, 4.5vw, 2.6rem);
  line-height: 1.22;
    padding-top: 2.2rem;
    margin-top: 0;
}

h3 {
  font-size: 1.12rem;
  line-height: 1.3;
}

p {
  margin: 0 0 0.85rem;
  color: var(--ink-muted);
}

a {
  color: inherit;
  text-decoration: none;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

/* ─── Layout ─────────────────────────────────────────────── */
.container {
  width: min(var(--container), calc(100% - 2rem));
  margin-inline: auto;
}

.section {
  padding: 2.5rem 0;
    background:
      radial-gradient(ellipse at 12% 8%, rgba(0, 191, 165, 0.06), transparent 50%),
      radial-gradient(ellipse at 88% 18%, rgba(0, 191, 165, 0.04), transparent 40%),
      linear-gradient(180deg, #f8faf9 0%, #f5f7f6 50%, var(--bg) 100%);
}

.section--soft {
  /* background removed for seamless flow */
}

.section-head {
  max-width: 640px;
  margin-bottom: 2.2rem;
}

.section-head--center {
  text-align: center;
  max-width: 640px;
  margin-inline: auto;
}

.section-head__sub {
  font-size: 1.02rem;
  color: var(--ink-muted);
  line-height: 1.6;
  max-width: 52ch;
  margin-inline: auto;
}

/* ─── Eyebrow ────────────────────────────────────────────── */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin: 0 0 0.75rem;
  padding: 0.35rem 0.7rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: #00796B;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  background: rgba(255, 255, 255, 0.6);
}

/* ─── Pill / Tag / Chip ──────────────────────────────────── */
.pill {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.pill--accent {
  background: linear-gradient(135deg, var(--accent), var(--accent-hover));
  color: #f0fff4;
}

.pill--outline {
  background: transparent;
  border: 1px solid var(--line);
  color: var(--ink-muted);
}

.pill--glass {
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #b8e6ca;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

.tag {
  display: inline-block;
  padding: 0.22rem 0.55rem;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 600;
  background: var(--surface-soft);
  color: var(--ink-muted);
  border: 1px solid var(--line);
}

.tag--green {
  background: #e0f7f4;
  color: var(--accent);
  border-color: rgba(0, 191, 165, 0.2);
}

.chip {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  padding: 0.4rem 0.8rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(232, 245, 236, 0.9);
  font-size: 0.82rem;
  font-weight: 500;
}

/* ─── Topbar ─────────────────────────────────────────────── */
.topbar {
  position: sticky;
  top: 0;
  z-index: 30;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  background: rgba(248, 250, 249, 0.92);
  border-bottom: 1px solid rgba(200, 214, 210, 0.28);
  transition: border-color 0.3s var(--ease), background 0.3s var(--ease), box-shadow 0.3s var(--ease);
}

.topbar--scrolled {
  background: rgba(248, 250, 249, 0.97);
  border-bottom-color: rgba(200, 214, 210, 0.45);
  box-shadow: 0 2px 16px rgba(0, 60, 50, 0.06);
}

.topbar__inner {
  min-height: 3.6rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 0;
}

.topbar__nav {
  display: none;
  gap: 1.6rem;
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--ink-muted);
}

.topbar__nav a {
  transition: color 0.2s var(--ease);
}

.topbar__nav a:hover {
  color: var(--accent);
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  text-decoration: none;
  transition: opacity 0.2s;
}

.brand:hover {
  opacity: 0.8;
}

/* Logo icon */
.brand__icon {
  display: block;
  width: 52px;
  height: auto;
  flex-shrink: 0;
  mix-blend-mode: multiply;
  transform: translateY(-3px);
}

/* Brand name text */
.brand__name {
  font-family: "Newsreader", Georgia, serif;
  font-size: 1.12rem;
  font-weight: 600;
  color: var(--ink);
  line-height: 1;
  letter-spacing: -0.01em;
  white-space: nowrap;
}

@media (min-width: 640px) {
  .brand__icon {
    width: 58px;
    height: auto;
  }
  .brand__name {
    font-size: 1.22rem;
  }
}


/* ─── Buttons ────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  min-height: 2.8rem;
  padding: 0.65rem 1.25rem;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  font-family: inherit;
  font-size: 0.95rem;
  font-weight: 600;
  background: linear-gradient(135deg, var(--accent), var(--accent-hover));
  color: #ffffff;
  box-shadow: 0 4px 14px rgba(0, 191, 165, 0.25);
  transition: transform 0.22s var(--ease), box-shadow 0.22s var(--ease), background 0.22s;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(0, 191, 165, 0.35);
}

.btn:active {
  transform: translateY(0);
  box-shadow: 0 4px 14px rgba(0, 191, 165, 0.2);
}

.btn--lg {
  min-height: 3.1rem;
  padding: 0.75rem 1.6rem;
  font-size: 1rem;
  position: relative;
  overflow: hidden;
}

.btn--lg::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 60%;
  height: 100%;
  background: linear-gradient(
    105deg,
    transparent 20%,
    rgba(255, 255, 255, 0.25) 50%,
    transparent 80%
  );
  animation: btn-shimmer 3s ease-in-out infinite;
  pointer-events: none;
}

@keyframes btn-shimmer {
  0%, 100% { left: -100%; }
  40%      { left: 120%; }
  41%, 99% { left: 120%; }
}

.btn--lg:hover {
  transform: scale(1.05) translateY(-2px);
}

.btn--small {
  min-height: 2.2rem;
  padding: 0.45rem 0.9rem;
  font-size: 0.88rem;
}

.btn--ghost {
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--line);
  box-shadow: none;
}

.btn--ghost:hover {
  background: rgba(47, 157, 101, 0.06);
  border-color: var(--accent);
  color: var(--accent);
  box-shadow: none;
}

/* ─── Hero Banner ────────────────────────────────────────── */
.hero-banner {
  position: relative;
  width: 100%;
  height: 220px;
  overflow: hidden;
  margin-top: 3.6rem;
}

.hero-banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 60%;
}

.hero-banner__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(248, 250, 247, 0) 40%,
    var(--bg) 100%
  );
}

@media (min-width: 640px) {
  .hero-banner { height: 300px; }
}

@media (min-width: 900px) {
  .hero-banner { height: 380px; }
}

/* ─── Hero ───────────────────────────────────────────────── */
.hero {
  padding-top: 2.5rem;
  padding-bottom: 2rem;
  position: relative;
  overflow: hidden;
  background: linear-gradient(
    135deg,
    rgba(0, 191, 165, 0.07) 0%,
    rgba(243, 178, 60, 0.04) 55%,
    transparent 100%
  );
}

.hero__grid {
  display: grid;
  gap: 2.5rem;
  position: relative;
  z-index: 1;
}

.hero h1 {
  font-size: clamp(1.9rem, 7vw, 3.4rem);
  letter-spacing: -0.02em;
  max-width: 18ch;
}

.lead {
  font-size: 1.08rem;
  line-height: 1.6;
  max-width: 52ch;
  color: var(--ink-muted);
}

.hero__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero__badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin-bottom: 1rem;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin: 1.4rem 0 1.5rem;
}

.hero__proof {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.2rem;
}

.hero__proof-item {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--ink-muted);
}

/* ─── Hero visual ────────────────────────────────────────── */
.hero__visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero__phone-stack {
  position: relative;
  width: 260px;
  max-width: 100%;
}

/* Floating detail badges around hero phone */
.hero__float {
  position: absolute;
  display: none;
  align-items: center;
  gap: 0.35rem;
  padding: 0.38rem 0.7rem;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--ink);
  box-shadow: var(--shadow-sm);
  white-space: nowrap;
  z-index: 2;
}

.hero__float--price {
  bottom: 16%;
  left: -28%;
}

.hero__float--stores {
  top: 18%;
  right: -24%;
}

/* ─── Phone frame ────────────────────────────────────────── */
.phone-frame {
  position: relative;
  background: #1a1a2e;
  border-radius: 36px;
  padding: 10px;
  box-shadow:
    0 24px 60px rgba(0, 0, 0, 0.18),
    0 8px 20px rgba(0, 0, 0, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
  overflow: hidden;
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
}

.phone-frame img {
  width: 100%;
  display: block;
  border-radius: 26px;
  background: var(--surface);
}

.phone-frame--hero {
  width: 100%;
}

.phone-frame--lg {
  width: 100%;
}

.phone-frame--sm {
  width: 220px;
}

/* ─── App Showcase (3-phone) ─────────────────────────────── */
.section--showcase {
  /* background removed for seamless flow */
}

.showcase {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2.5rem;
}

.showcase__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  max-width: 280px;
}

.showcase__item .phone-frame {
  width: 240px;
}

.showcase__item .phone-frame:hover {
  transform: translateY(-6px);
  box-shadow:
    0 32px 70px rgba(0, 0, 0, 0.22),
    0 12px 28px rgba(0, 0, 0, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.showcase__label {
  text-align: center;
  max-width: 240px;
}

.showcase__label h3 {
  margin-bottom: 0.25rem;
}

.showcase__label p {
  font-size: 0.9rem;
  margin-bottom: 0;
}

.showcase__tag {
  display: inline-block;
  margin-bottom: 0.4rem;
  padding: 0.2rem 0.55rem;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 700;
  background: #e0f7f4;
  color: var(--accent);
}

/* ─── Trust stats & badges ───────────────────────────────── */

.trust-stats {
  display: grid;
  gap: 0.85rem;
  margin-bottom: 2rem;
}

.stat {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 1.35rem 1.25rem;
  text-align: center;
  box-shadow: var(--shadow-sm);
}

.stat__value {
  font-family: "Newsreader", Georgia, serif;
  font-size: 2rem;
  font-weight: 600;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 0.35rem;
}

.stat p {
  margin: 0;
  font-size: 0.9rem;
}

.trust-badges {
  display: grid;
  gap: 0.85rem;
}

.trust-badge {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 1rem;
}

.trust-badge svg {
  flex-shrink: 0;
  margin-top: 0.1rem;
}

.trust-badge strong {
  display: block;
  font-size: 0.95rem;
  margin-bottom: 0.15rem;
}

.trust-badge p {
  margin: 0;
  font-size: 0.88rem;
}

/* ─── Receipt / Social Proof ─────────────────────────────── */
.section--receipt {
  padding: 2.5rem 0;
}

/* ─── Savings stats (big numbers) ───────────────────────── */
.savings-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}

.savings-stat {
  text-align: center;
}

.savings-stat__num {
  display: block;
  font-family: "Newsreader", Georgia, serif;
  font-size: 2.2rem;
  font-weight: 600;
  color: var(--ink);
  line-height: 1.1;
}

.savings-stat__num--accent {
  color: var(--accent);
}

.savings-stat__num--big {
  font-size: 2.8rem;
  color: var(--accent);
}

.savings-stat__label {
  display: block;
  font-size: 0.75rem;
  color: var(--ink-muted);
  font-weight: 500;
  margin-top: 0.2rem;
  letter-spacing: 0.02em;
}

.savings-stat__arrow,
.savings-stat__sep {
  font-size: 1.6rem;
  color: var(--ink-muted);
  opacity: 0.3;
  font-weight: 300;
  line-height: 1;
  padding-bottom: 1.4rem;
}

.savings-stat--highlight {
  background: linear-gradient(135deg, rgba(0, 191, 165, 0.1), rgba(0, 191, 165, 0.04));
  border: 1.5px solid rgba(0, 191, 165, 0.2);
  border-radius: var(--radius-md);
  padding: 0.9rem 1.5rem;
}

@media (max-width: 639px) {
  .savings-stats { gap: 0.75rem; margin-bottom: 1.5rem; }
  .savings-stat__num { font-size: 1.6rem; }
  .savings-stat__num--big { font-size: 2rem; }
  .savings-stat__arrow, .savings-stat__sep { font-size: 1.1rem; padding-bottom: 1.2rem; }
  .savings-stat--highlight { padding: 0.65rem 1rem; }
}

/* ─── Savings card ───────────────────────────────────────── */
.savings-card {
  max-width: 500px;
  margin: 0 auto;
  background: var(--surface);
  border-radius: var(--radius-lg);
  border: 1.5px solid var(--line);
  overflow: hidden;
  box-shadow: 0 8px 40px rgba(0,60,50,0.08);
}

.savings-card__lines {
  padding: 1.75rem 1.75rem 0;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}

.savings-card__line {
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
  font-size: 0.9rem;
}

.savings-card__day {
  font-weight: 700;
  font-size: 0.75rem;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  width: 2.4rem;
  flex-shrink: 0;
}

.savings-card__dish {
  color: var(--ink);
  font-weight: 500;
  white-space: nowrap;
}

.savings-card__dots {
  flex: 1;
  border-bottom: 1.5px dotted var(--line);
  min-width: 0.5rem;
  margin-bottom: 0.2em;
}

.savings-card__price {
  white-space: nowrap;
  font-weight: 600;
  color: var(--ink-muted);
  font-variant-numeric: tabular-nums;
}

.savings-card__footer {
  margin-top: 1.25rem;
  border-top: 1.5px solid var(--line);
  padding: 1.25rem 1.75rem 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.savings-card__totals {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.savings-card__total-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  font-size: 0.92rem;
  color: var(--ink-muted);
}

.savings-card__old-price {
  text-decoration: line-through;
  opacity: 0.55;
  font-variant-numeric: tabular-nums;
}

.savings-card__total-row--highlight {
  color: var(--ink);
  font-weight: 700;
  font-size: 1rem;
}

.savings-card__new-price {
  color: var(--accent);
  font-size: 1.1rem;
  font-weight: 800;
  font-variant-numeric: tabular-nums;
}

.savings-card__result {
  text-align: center;
  background: linear-gradient(135deg, rgba(0,191,165,0.1), rgba(0,191,165,0.04));
  border: 1.5px solid rgba(0,191,165,0.2);
  border-radius: calc(var(--radius-lg) - 4px);
  padding: 1.25rem 1rem;
}

.savings-card__result-label {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: var(--accent);
  margin-bottom: 0.2rem;
}

.savings-card__result-amount {
  font-family: "Newsreader", Georgia, serif;
  font-size: 2.6rem;
  font-weight: 600;
  color: var(--accent);
  line-height: 1.1;
}

.savings-card__result-amount span {
  font-size: 1rem;
  font-weight: 500;
  opacity: 0.65;
}

.savings-card__result-yearly {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  margin-top: 0.45rem;
  font-size: 0.85rem;
  color: var(--ink-muted);
}

.savings-card__result-yearly svg {
  color: var(--accent);
  flex-shrink: 0;
}

.savings-card__result-yearly strong {
  color: var(--accent);
}

.savings-card__footnote {
  font-size: 0.72rem;
  color: var(--ink-muted);
  text-align: center;
  padding: 0.9rem 1.75rem 1.25rem;
  opacity: 0.6;
  margin: 0;
}

/* ─── FAQ ────────────────────────────────────────────────── */
.faq-wrap {
  max-width: 750px;
}

.faq-list {
  display: grid;
  gap: 0.6rem;
}

.faq-item {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  transition: border-color 0.2s;
}

.faq-item:hover {
  border-color: rgba(0, 191, 165, 0.3);
}

.faq-item[open] {
  border-color: rgba(0, 191, 165, 0.35);
}

.faq-item summary {
  cursor: pointer;
  list-style: none;
  font-weight: 600;
  font-size: 0.98rem;
  padding: 0.95rem 1.1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.75rem;
  transition: color 0.2s;
  user-select: none;
}

.faq-item summary:hover {
  color: var(--accent);
}

.faq-item summary::-webkit-details-marker { display: none; }

.faq-item summary::after {
  content: "+";
  font-size: 1.2rem;
  font-weight: 400;
  color: var(--ink-muted);
  flex-shrink: 0;
  width: 1.5rem;
  height: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--surface-soft);
  transition: transform 0.3s var(--ease), background 0.2s, color 0.2s;
}

.faq-item[open] summary::after {
  content: "\2212";
  transform: rotate(180deg);
  background: #e0f7f4;
  color: var(--accent);
}

.faq-item__body {
  padding: 0 1.1rem 1rem;
}

.faq-item__body p {
  margin: 0;
  font-size: 0.94rem;
  line-height: 1.6;
}

/* ─── CTA / Waitlist ─────────────────────────────────────── */
.section--cta {
  padding: 2.5rem 0;
}

/* ─── Pricing ─────────────────────────────────────────────── */
.section--pricing {
  padding: 2.5rem 0 3rem;
}

.pricing-card {
  max-width: 500px;
  margin: 0 auto;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 12px 50px rgba(0,60,50,0.1), 0 2px 8px rgba(0,60,50,0.06);
  border: 1.5px solid rgba(0,191,165,0.18);
}

.pricing-card__head {
  background: linear-gradient(135deg, rgba(0,191,165,0.13) 0%, rgba(243,178,60,0.07) 100%);
  border-bottom: 1.5px solid rgba(0,191,165,0.15);
  padding: 2rem 2rem 1.75rem;
  text-align: center;
}

.pricing-card__trial-badge {
  display: inline-block;
  padding: 0.3rem 0.85rem;
  background: rgba(0, 191, 165, 0.12);
  color: var(--accent);
  border: 1px solid rgba(0, 191, 165, 0.22);
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 1.1rem;
}

.pricing-card__price-display {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 0.65rem;
}

.pricing-card__price-col {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.15rem;
}

.pricing-card__price-free {
  font-family: "Newsreader", Georgia, serif;
  font-size: 2.8rem;
  font-weight: 600;
  color: var(--accent);
  line-height: 1;
}

.pricing-card__price-arrow {
  font-size: 1.4rem;
  color: var(--ink-muted);
  opacity: 0.35;
  line-height: 1;
  padding-bottom: 1.4rem;
}

.pricing-card__price-after {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--ink);
  line-height: 1;
}

.pricing-card__price-period {
  font-size: 0.73rem;
  color: var(--ink-muted);
  font-weight: 500;
}

.pricing-card__sub {
  font-size: 0.82rem;
  color: var(--ink-muted);
  margin: 0;
  line-height: 1.6;
}

.pricing-card__body {
  background: var(--surface);
  padding: 1.75rem 2rem 2rem;
}

.pricing-features {
  list-style: none;
  padding: 0;
  margin: 0 0 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.pricing-features__item {
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
  font-size: 0.95rem;
  color: var(--ink);
  line-height: 1.45;
}

.pricing-features__check {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background-color: var(--accent);
  margin-top: 0.12em;
}

.pricing-features__check::after {
  content: '';
  display: block;
  width: 10px;
  height: 7px;
  border-left: 2.5px solid #fff;
  border-bottom: 2.5px solid #fff;
  transform: rotate(-45deg) translateY(-1px);
  border-radius: 0 0 0 1px;
}

.pricing-card__cta {
  width: 100%;
  justify-content: center;
  font-size: 1.05rem;
  padding: 1rem 1.5rem;
  margin-bottom: 0.9rem;
}

.pricing-card__legal {
  text-align: center;
  font-size: 0.78rem;
  color: var(--ink-muted);
  margin: 0;
  line-height: 1.6;
}

.pricing-card__legal strong {
  color: var(--ink);
}

.pricing-card__legal a {
  color: var(--accent);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.cta-card {
  background:
    linear-gradient(140deg, rgba(0, 191, 165, 0.08), rgba(0, 191, 165, 0.04)),
    var(--surface);
  border: 1px solid rgba(0, 191, 165, 0.15);
  border-radius: var(--radius-lg);
  padding: 2.2rem 1.5rem;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.cta-card__inner {
  display: grid;
  gap: 2rem;
  align-items: center;
}

.cta-card__text {
  text-align: center;
}

.cta-card__text h2 {
  max-width: 20ch;
  margin-inline: auto;
}

.cta-card__text > p {
  max-width: 48ch;
  margin-inline: auto;
}

.cta-card__text .btn {
  margin-top: 1rem;
}

.cta-card__cancel {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--accent);
  margin-top: 0.6rem;
  margin-bottom: 0;
}

.cta-card__note {
  font-size: 0.82rem;
  color: var(--ink-muted);
  margin-top: 0.75rem;
  margin-bottom: 0;
}

.cta-card__phone {
  display: flex;
  justify-content: center;
}

.waitlist-form {
  max-width: 440px;
  margin: 1.3rem auto 0;
}

.waitlist-form__row {
  display: flex;
  gap: 0.5rem;
}

.waitlist-form__input {
  flex: 1;
  min-height: 3.1rem;
  padding: 0 1rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-family: inherit;
  font-size: 0.95rem;
  background: var(--surface);
  color: var(--ink);
  outline: none;
  transition: border-color 0.2s;
}

.waitlist-form__input:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(0, 191, 165, 0.12);
}

.waitlist-form__input::placeholder { color: #8fa59e; }

.waitlist-form__note {
  font-size: 0.78rem;
  color: var(--ink-muted);
  margin-top: 0.6rem;
  margin-bottom: 0;
}

.waitlist-form__error {
  font-size: 0.82rem;
  color: #c0392b;
  margin-top: 0.5rem;
  margin-bottom: 0;
  font-weight: 500;
}

.waitlist-form button:disabled {
  opacity: 0.55;
  cursor: wait;
}

.waitlist-success {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  padding: 1rem 0 0;
}

.waitlist-success__icon {
  width: 2.4rem;
  height: 2.4rem;
  border-radius: 50%;
  background: #e7f5ec;
  color: var(--accent);
  font-weight: 700;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.waitlist-success p {
  font-weight: 600;
  color: var(--ink);
  margin: 0;
}

/* ─── Subpage layout ─────────────────────────────────────── */
.page-section {
  padding-top: 6rem;
}

.page-content {
  max-width: 720px;
}

.prose h3 {
  font-size: 1.1rem;
  font-weight: 600;
  margin: 1.8rem 0 0.5rem;
  color: var(--ink);
}

.prose p {
  line-height: 1.7;
}

.prose ul {
  margin: 0 0 1rem;
  padding-left: 1.4rem;
  color: var(--ink-muted);
  line-height: 1.7;
}

.prose ul li {
  margin-bottom: 0.3rem;
}

.prose a {
  color: var(--accent);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.prose a:hover {
  color: var(--accent-hover);
}

/* ─── Contact cards ──────────────────────────────────────── */
.contact-cards {
  display: grid;
  gap: 1.5rem;
}

.contact-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  text-align: center;
}

.contact-card__icon {
  margin-bottom: 0.75rem;
}

.contact-card h3 {
  font-size: 1.05rem;
  font-weight: 600;
  margin-bottom: 0.4rem;
}

.contact-card p {
  font-size: 0.92rem;
  margin-bottom: 1rem;
}

@media (min-width: 640px) {
  .contact-cards {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* ─── Mini CTA (subpages) ────────────────────────────────── */
.mini-cta {
  border-top: 1px solid var(--line);
  background: var(--surface-soft);
}

.mini-cta__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.75rem 1.2rem;
  padding: 1.6rem 0;
  text-align: center;
}



/* ─── Hvorfor Madplan ────────────────────────────────────── */
.section--why {
  padding: 4rem 0;
}

.why-grid {
  display: grid;
  gap: 2rem;
  align-items: center;
}

.why-grid__image {
  border-radius: 16px;
  overflow: hidden;
}

.why-grid__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  aspect-ratio: 4 / 3;
  border-radius: 16px;
}

.why-grid__text {
  max-width: 540px;
}

.why-grid__text .eyebrow {
  margin-bottom: 0.75rem;
}

.why-grid__text h2 {
  font-family: 'Newsreader', serif;
  margin-bottom: 1rem;
}

.why-grid__text p {
  font-family: 'Newsreader', serif;
  font-size: 1.08rem;
  line-height: 1.75;
  color: var(--ink-muted);
  margin-bottom: 0.75rem;
}

.why-grid__text p:last-child {
  margin-bottom: 0;
  color: var(--ink);
  font-weight: 500;
  font-style: italic;
}

.why-grid__text strong {
  color: var(--ink);
  font-weight: 600;
}

@media (min-width: 640px) {
  .why-grid {
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
  }

  .why-grid__image img {
    aspect-ratio: 3 / 4;
    max-height: 420px;
  }
}

@media (min-width: 900px) {
  .why-grid {
    gap: 4rem;
  }
}

.mini-cta p {
  margin: 0;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--ink);
}

/* ─── Footer ─────────────────────────────────────────────── */
.footer {
  padding: 0;
  background: #eef2f0;
  border-top: 1px solid var(--line);
}

.footer__inner {
  display: grid;
  gap: 1.5rem;
  padding: 2.2rem 0 1.2rem;
}

.footer__brand p {
  font-size: 0.88rem;
  margin-top: 0.35rem;
  margin-bottom: 0;
}

.footer__col {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.footer__col strong {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--ink-muted);
  margin-bottom: 0.15rem;
}

.footer__col a {
  font-size: 0.92rem;
  color: #3d5c56;
  transition: color 0.2s;
}

.footer__col a:hover { color: var(--accent); }

.footer__bottom {
  border-top: 1px solid var(--line);
  padding: 1rem 0 1.2rem;
}

.footer__bottom small {
  color: var(--ink-muted);
  font-size: 0.8rem;
}

/* ─── Sticky mobile CTA ──────────────────────────────────── */
.sticky-cta {
  display: none;
}

@media (max-width: 639px) {
  .sticky-cta {
    display: block;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 50;
    padding: 0.65rem 1rem;
    padding-bottom: calc(0.65rem + env(safe-area-inset-bottom, 0px));
    background: rgba(245, 247, 246, 0.92);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-top: 1px solid var(--line);
    box-shadow: 0 -4px 20px rgba(0, 60, 50, 0.1);
    transform: translateY(100%);
    opacity: 0;
    transition: transform 0.35s var(--ease), opacity 0.35s var(--ease);
    pointer-events: none;
  }

  .sticky-cta--visible {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
    animation: stickyGlow 2.5s ease-in-out infinite;
  }

  @keyframes stickyGlow {
    0%, 100% { box-shadow: 0 -4px 20px rgba(0, 60, 50, 0.1); }
    50%      { box-shadow: 0 -4px 28px rgba(0, 191, 165, 0.25), 0 -2px 12px rgba(0, 191, 165, 0.1); }
  }

  .sticky-cta__btn {
    width: 100%;
  }
}

/* ─── Reveal animation (IntersectionObserver) ────────────── */
.hidden {
  opacity: 0;
  transform: translateY(22px);
}

.reveal-visible {
  animation: reveal-up 0.6s var(--ease) forwards;
}

.reveal-visible[data-delay="1"] { animation-delay: 0.1s; }
.reveal-visible[data-delay="2"] { animation-delay: 0.18s; }
.reveal-visible[data-delay="3"] { animation-delay: 0.26s; }
.reveal-visible[data-delay="4"] { animation-delay: 0.34s; }

@keyframes reveal-up {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ─── Trust Bar ──────────────────────────────────────────── */

.section--trust {
  padding: 1.5rem 0 2.5rem;
  background: var(--bg);
}

.trust__logos {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 3rem;
  flex-wrap: wrap;
}

.trust__logo {
  flex-shrink: 0;
  width: 100px;
  height: 40px;
  object-fit: contain;
  filter: grayscale(100%);
  opacity: 0.6;
  transition: filter 0.4s var(--ease), opacity 0.4s var(--ease), transform 0.3s var(--ease);
}

.trust__logo:hover {
  filter: grayscale(0);
  opacity: 1;
  transform: scale(1.08);
}

/* ─── Tablet (>= 640px) ─────────────────────────────────── */
@media (min-width: 640px) {
  .trust-stats { grid-template-columns: repeat(2, 1fr); }
  .trust-badges { grid-template-columns: repeat(3, 1fr); }

  .showcase {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
  }

  .hero__phone-stack {
    width: 300px;
  }

  .phone-frame--sm {
    width: 240px;
  }

  .footer__inner {
    grid-template-columns: 1.5fr 1fr 1fr;
  }
}

/* ─── Desktop (>= 900px) ────────────────────────────────── */
@media (min-width: 900px) {
  .section {
    padding: 3.5rem 0;
  }

  .hero {
    padding-top: 3.5rem;
    padding-bottom: 3rem;
  }

  .hero__grid {
    grid-template-columns: 1.1fr 0.9fr;
    align-items: center;
    gap: 3rem;
  }

  .topbar__nav {
    display: flex;
  }

  .topbar__inner {
    min-height: 4rem;
  }

  .hero__phone-stack {
    width: 320px;
  }

  .hero__float {
    display: inline-flex;
  }

  .section-head {
    margin-bottom: 2.5rem;
  }

  .trust-stats { grid-template-columns: repeat(4, 1fr); }

  /* Showcase: 4 phones side by side */
  .showcase {
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
    gap: 2rem;
  }

  .showcase__item .phone-frame {
    width: 230px;
  }

  /* CTA: text + phone side by side */
  .cta-card {
    padding: 3rem 2.5rem;
  }

  .cta-card__inner {
    grid-template-columns: 1.3fr 0.7fr;
    gap: 2.5rem;
  }

  .cta-card__text {
    text-align: left;
  }

  .cta-card__text h2 {
    margin-inline: 0;
  }

  .cta-card__text > p {
    margin-inline: 0;
  }

  .waitlist-form {
    margin-inline: 0;
  }

}

/* ─── Mobile (max 639px) ─────────────────────────────────── */
@media (max-width: 639px) {

  /* --- Container: lidt mere luft i siderne --- */
  .container {
    width: min(var(--container), calc(100% - 2.5rem));
  }

  /* --- Sections --- */
  .section { padding: 2rem 0; }
  .section--receipt { padding: 1.75rem 0; }
  .section--cta { padding: 1.75rem 0; }
  .section--why { padding: 2rem 0; }
  .section--pricing { padding: 2rem 0 2.5rem; }
  .section--trust { padding: 1.25rem 0 2rem; }
  .section-head { margin-bottom: 1.25rem; }

  /* --- Global typografi --- */
  h2 { font-size: clamp(1.35rem, 5.5vw, 1.8rem); }
  h3 { font-size: 1rem; }
  .lead { font-size: 1rem; }

  /* --- Hero --- */
  .hero { padding-top: 5rem; padding-bottom: 2rem; }
  .hero h1 { font-size: clamp(1.55rem, 7vw, 2.2rem); }
  .hero__visual {
    display: flex;
    justify-content: center;
    margin-top: 1rem;
  }
  .hero__visual .hero__phone-stack { width: 130px; }
  .hero__proof { gap: 0.4rem 0.7rem; }
  .hero__proof-item { font-size: 0.85rem; }
  .hero__actions {
    flex-direction: column;
    align-items: stretch;
    gap: 0.65rem;
  }
  .hero__actions .btn {
    text-align: center;
    justify-content: center;
    width: 100%;
  }
  .btn--lg { font-size: 0.95rem; padding: 0.8rem 1.4rem; }

  /* --- Trust logos --- */
  .trust__logos { gap: 1rem; flex-wrap: wrap; justify-content: center; }
  .trust__logo { width: 64px; height: 24px; }

  /* --- Why-grid: billede skjules på mobil --- */
  .why-grid { gap: 1rem; }
  .why-grid__image { display: none; }
  .why-grid__text h2 { font-size: 1.3rem; }
  .why-grid__text p { font-size: 0.88rem; line-height: 1.6; margin-bottom: 0.5rem; }

  /* --- Showcase --- */
  .showcase { gap: 1.5rem; }
  .showcase__item { max-width: 100%; width: 100%; align-items: center; }
  .showcase__item .phone-frame { width: min(58%, 190px); }
  .showcase__label { max-width: 100%; padding: 0 0.5rem; }
  .showcase__label h3 { font-size: 0.95rem; }
  .showcase__label p { font-size: 0.83rem; }

  /* --- Savings card --- */
  .savings-card { font-size: 0.85rem; }
  .savings-card__lines { padding: 1rem 1rem 0; gap: 0.4rem; }
  .savings-card__line { font-size: 0.8rem; gap: 0.3rem; }
  .savings-card__dish { white-space: normal; }
  .savings-card__footer { padding: 0.85rem 1rem 0; gap: 0.75rem; }
  .savings-card__total-row { font-size: 0.83rem; }
  .savings-card__total-row--highlight { font-size: 0.9rem; }
  .savings-card__result { padding: 0.9rem 0.75rem; }
  .savings-card__result-label { font-size: 0.7rem; }
  .savings-card__result-amount { font-size: 1.75rem; }
  .savings-card__result-yearly { font-size: 0.78rem; }
  .savings-card__footnote { padding: 0.6rem 1rem 0.85rem; font-size: 0.7rem; }

  /* --- Pricing card --- */
  .pricing-card__head { padding: 1.1rem 1rem 1rem; }
  .pricing-card__price-free { font-size: 2rem; }
  .pricing-card__price-after { font-size: 1.15rem; }
  .pricing-card__sub { font-size: 0.75rem; }
  .pricing-card__body { padding: 1.1rem 1rem 1.35rem; }
  .pricing-features { gap: 0.5rem; margin-bottom: 1.25rem; }
  .pricing-features__item { font-size: 0.82rem; gap: 0.5rem; }
  .pricing-features__check { width: 17px; height: 17px; }
  .pricing-card__cta { font-size: 0.9rem; padding: 0.8rem 1rem; margin-bottom: 0.65rem; }
  .pricing-card__legal { font-size: 0.72rem; }

  /* --- Footer --- */
  .footer__col strong { font-size: 0.85rem; }
  .footer__col a {
    font-size: 0.92rem;
    min-height: 2.75rem;
    display: flex;
    align-items: center;
  }
  .footer__bottom small { font-size: 0.82rem; }

  /* --- FAQ --- */
  .faq-item summary { padding: 1rem 1.1rem; font-size: 0.95rem; }

  /* --- CTA card --- */
  .cta-card { padding: 1.75rem 1.1rem; }
}

/* ─── Reduced motion ─────────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .hidden { opacity: 1; transform: none; }
  .reveal-visible { animation: none; opacity: 1; transform: none; }
  .btn, .step-node__circle, .feat, .faq-item, .phone-frame { transition: none; }
}
