/* ─── Design tokens ──────────────────────────────────────────────── */
:root {
  --brand:        #F7339A;
  --brand-08:     rgba(247, 51, 154, 0.08);
  --brand-10:     rgba(247, 51, 154, 0.10);
  --brand-20:     rgba(247, 51, 154, 0.20);
  --green:        #009900;
  --green-08:     rgba(0, 153, 0, 0.08);
  --orange:       #FF9500;
  --orange-08:    rgba(255, 149, 0, 0.08);

  --text-primary:   #111111;
  --text-secondary: #555555;
  --text-tertiary:  #888888;
  --surface:        #FFFFFF;
  --surface-2:      #F7F7F7;
  --border:         rgba(0,0,0,0.07);

  --font-sans: "Inter", system-ui, -apple-system, sans-serif;
  --font-mono: "SF Mono", "Fira Code", monospace;

  --radius-card:   12px;
  --radius-chip:   18px;
  --radius-btn:    28px;
  --radius-modal:  20px;

  --shadow-card:   0 4px 24px rgba(0,0,0,0.07);
  --shadow-sheet:  0 5px 10px rgba(0,0,0,0.10);

  --max-w: 1080px;
  --section-v: 96px;
}

/* ─── Reset ─────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-sans);
  color: var(--text-primary);
  background: var(--surface);
  -webkit-font-smoothing: antialiased;
  line-height: 1.6;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ─── Layout helpers ─────────────────────────────────────────────── */
.container {
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: 24px;
}
.section { padding-block: var(--section-v); }
.section--alt { background: var(--surface-2); }

/* ─── Typography ─────────────────────────────────────────────────── */
.display    { font-size: clamp(40px, 6vw, 64px); font-weight: 700; line-height: 1.1; letter-spacing: -0.03em; }
.title      { font-size: clamp(28px, 4vw, 40px); font-weight: 700; line-height: 1.2; letter-spacing: -0.02em; }
.headline   { font-size: 20px; font-weight: 600; line-height: 1.4; }
.body-lg    { font-size: 18px; line-height: 1.7; }
.body       { font-size: 16px; line-height: 1.7; }
.caption    { font-size: 13px; font-weight: 500; }
.label      { font-size: 15px; font-weight: 600; }

.text-brand   { color: var(--brand); }
.text-muted   { color: var(--text-secondary); }
.text-center  { text-align: center; }

/* ─── Buttons ────────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  height: 56px;
  padding-inline: 32px;
  border-radius: var(--radius-btn);
  font-family: var(--font-sans);
  font-size: 16px;
  font-weight: 600;
  transition: opacity .18s, transform .18s;
}
.btn:hover  { opacity: .88; transform: translateY(-1px); }
.btn:active { transform: translateY(0); }

.btn--primary  { background: var(--brand); color: #fff; }
.btn--ghost    { border: 2px solid var(--brand); color: var(--brand); }
.btn--sm       { height: 44px; padding-inline: 20px; font-size: 14px; border-radius: 22px; }
.btn--store         { height: 48px; padding-inline: 22px; border-radius: 14px; background: #000; color: #fff; font-size: 15px; gap: 10px; }
.btn--store svg     { flex-shrink: 0; }
.btn--store--light  { background: #fff; color: var(--brand); }

/* ─── Cards ──────────────────────────────────────────────────────── */
.card {
  background: var(--brand-08);
  border-radius: var(--radius-card);
  padding: 24px;
}
.card--green  { background: var(--green-08); }
.card--orange { background: var(--orange-08); }
.card--white  { background: var(--surface); box-shadow: var(--shadow-card); }
.card--border { background: var(--surface); border: 1.5px solid var(--border); border-radius: var(--radius-card); padding: 24px; }

/* ─── App Store badge ────────────────────────────────────────────── */
.badge-appstore {
  height: 58px;
  width: auto;
  display: block;
  transition: opacity .18s, transform .18s;
}
.badge-appstore:hover { opacity: .85; transform: translateY(-1px); }

/* ─── Hero brand (replaces nav) ──────────────────────────────────── */
.hero__brand {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 44px;
  margin-bottom: 56px;
}
.hero__brand-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  object-fit: contain;
  background: rgba(255,255,255,0.18);
  flex-shrink: 0;
}
.hero__brand-name {
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: #fff;
  flex: 1;
}
.hero__lang { margin-left: auto; }

/* ─── Language switcher ──────────────────────────────────────────── */
.lang-switch {
  display: flex;
  gap: 2px;
  background: rgba(255,255,255,0.18);
  border-radius: 8px;
  padding: 3px;
}
.lang-btn {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
  padding: 4px 10px;
  border-radius: 5px;
  color: rgba(255,255,255,0.65);
  transition: background .15s, color .15s;
}
.lang-btn--active {
  background: rgba(255,255,255,0.28);
  color: #fff;
}

/* ─── Hero ───────────────────────────────────────────────────────── */
.hero {
  background: var(--brand);
  overflow: hidden;
  position: relative;
}
.hero__wrap {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  padding-bottom: 0;
}
.hero__inner {
  flex: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 64px;
}
.hero__content { padding-bottom: 80px; }
.hero__title {
  font-size: clamp(36px, 5vw, 58px);
  font-weight: 400;
  line-height: 1.12;
  letter-spacing: -0.03em;
  color: #fff;
  margin-bottom: 24px;
}
.hero__title strong { font-weight: 700; }
.hero__sub {
  font-size: 18px;
  color: rgba(255,255,255,0.75);
  margin-bottom: 40px;
  line-height: 1.65;
  max-width: 400px;
}

/* Hero CTA — white pill */
.btn--hero {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 64px;
  padding-inline: 40px;
  border-radius: 32px;
  background: #fff;
  color: var(--brand);
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -0.01em;
  transition: opacity .18s, transform .18s;
}
.btn--hero:hover  { opacity: .92; transform: translateY(-2px); }
.btn--hero:active { transform: translateY(0); }

/* Phone frame & visual column */
.hero__visual {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  padding-bottom: 40px;
}
.phone-frame {
  width: 300px;
  border-radius: 44px;
  overflow: hidden;
}

/* ─── Phone frame image ──────────────────────────────────────────── */
.phone-frame img {
  width: 100%;
  display: block;
  pointer-events: none;
  user-select: none;
}

/* ─── Hero duo: main phone + tilted history phone behind ─────────── */
.phone-duo {
  position: relative;
  width: 360px;
  height: 580px;
}
.phone-duo .phone-frame {
  position: absolute;
  right: 0;
  top: 0;
  width: 250px;
  border-radius: 40px;
  z-index: 2;
}
.phone-back {
  position: absolute;
  left: 0;
  bottom: 40px;
  width: 195px;
  border-radius: 30px;
  overflow: hidden;
  transform: rotate(-15deg);
  transform-origin: bottom center;
  opacity: 0.5;
  z-index: 1;
}
.phone-back img {
  width: 100%;
  display: block;
  pointer-events: none;
  user-select: none;
}

/* ─── Hero trust badges ──────────────────────────────────────────── */
.hero__trust {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 24px;
  text-align: left;
}
.hero__trust-item {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 13px;
  color: rgba(255,255,255,0.80);
  line-height: 1.45;
}
.hero__trust-icon {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: rgba(255,255,255,0.20);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  margin-top: 1px;
}
.hero__trust-icon svg { width: 10px; height: 10px; }
.hero__trust-item strong { color: #fff; }

/* ─── Notification assets stack ─────────────────────────────────── */
.notify-stack {
  position: relative;
  width: 360px;
  height: 340px;
}
.notify-stack__item {
  position: absolute;
}
.notify-stack__item img {
  width: 100%;
  display: block;
  pointer-events: none;
  user-select: none;
}
.notify-stack__watch {
  width: 155px;
  top: 75px;
  right: 5px;
  transform: rotate(-2deg);
  z-index: 3;
}
.notify-stack__widget {
  width: 225px;
  bottom: 5px;
  left: 0;
  transform: rotate(-5deg);
  z-index: 1;
}
.notify-stack__di-expanded {
  width: 195px;
  top: 35px;
  left: 10px;
  transform: rotate(4deg);
  z-index: 2;
}
.notify-stack__di-pill {
  width: 185px;
  top: 2px;
  right: 25px;
  transform: rotate(-5deg);
  z-index: 4;
}

/* ─── Hero CTA row: App Store badge + Learn more ─────────────────── */
.hero__cta-row {
  display: flex;
  align-items: center;
  gap: 16px;
}
.btn--hero-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 58px;
  padding-inline: 28px;
  border: 2px solid rgba(255,255,255,0.55);
  border-radius: 10px;
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  white-space: nowrap;
  transition: border-color .18s, background .18s;
}
.btn--hero-outline:hover  { border-color: #fff; background: rgba(255,255,255,0.10); }


/* ─── Section header ─────────────────────────────────────────────── */
.section-header { max-width: 600px; margin-inline: auto; text-align: center; margin-bottom: 56px; }
.section-header .title  { margin-bottom: 16px; }
.section-header .body-lg { color: var(--text-secondary); }
.eyebrow {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--brand);
  margin-bottom: 12px;
}

/* ─── Testimonials ───────────────────────────────────────────────── */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.testimonial-card {
  background: var(--surface);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-card);
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.testimonial-stars { display: flex; gap: 3px; color: #FFD60A; }
.testimonial-stars svg { width: 16px; height: 16px; fill: currentColor; }
.testimonial-text  { font-size: 15px; line-height: 1.7; color: var(--text-primary); }
.testimonial-author { font-size: 13px; font-weight: 600; color: var(--text-secondary); }

/* ─── Pricing ────────────────────────────────────────────────────── */
.pricing-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  max-width: 720px;
  margin-inline: auto;
}
.pricing-card {
  border-radius: var(--radius-modal);
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.pricing-card--free { border: 1.5px solid var(--border); background: var(--surface); }
.pricing-card--pro  { background: var(--brand); color: #fff; box-shadow: 0 12px 40px rgba(247,51,154,0.35); }

.pricing-badge {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 6px;
  background: var(--brand-20);
  color: var(--brand);
  width: fit-content;
}
.pricing-card--pro .pricing-badge { background: rgba(255,255,255,0.25); color: #fff; }

.pricing-name  { font-size: 22px; font-weight: 700; }
.pricing-price { font-size: 40px; font-weight: 800; letter-spacing: -0.03em; line-height: 1; }
.pricing-price span { font-size: 16px; font-weight: 500; opacity: 0.65; }
.pricing-card--pro .pricing-price { color: #fff; }

.pricing-features { display: flex; flex-direction: column; gap: 12px; list-style: none; }
.pricing-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
}
.pricing-features li::before {
  content: '✓';
  font-weight: 700;
  color: var(--brand);
  flex-shrink: 0;
}
.pricing-card--pro .pricing-features li {
  color: rgba(255,255,255,0.9);
  display: block;
  padding-left: 22px;
  position: relative;
}
.pricing-card--pro .pricing-features li::before {
  color: rgba(255,255,255,0.9);
  position: absolute;
  left: 0;
  top: 2px;
}
.pricing-card--pro .pricing-features li strong {
  display: block;
  color: #fff;
  font-weight: 700;
}

.pricing-card--free .btn--primary { width: 100%; }
.pricing-card--pro  .btn          { width: 100%; background: #fff; color: var(--brand); }


/* ─── FAQ ────────────────────────────────────────────────────────── */
.faq-list { max-width: 700px; margin-inline: auto; display: flex; flex-direction: column; gap: 4px; }
details {
  border: 1.5px solid var(--border);
  border-radius: var(--radius-card);
  overflow: hidden;
  background: var(--surface);
}
details + details { margin-top: 8px; }
summary {
  padding: 20px 24px;
  font-weight: 600;
  font-size: 16px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  list-style: none;
  user-select: none;
}
summary::-webkit-details-marker { display: none; }
summary::after {
  content: '+';
  font-size: 20px;
  font-weight: 300;
  color: var(--brand);
  flex-shrink: 0;
  transition: transform .2s;
}
details[open] summary::after { content: '−'; }
.faq-answer { padding: 0 24px 20px; font-size: 15px; color: var(--text-secondary); line-height: 1.7; }

/* ─── CTA banner ─────────────────────────────────────────────────── */
.cta-banner {
  background: var(--brand);
  border-radius: 24px;
  padding: 64px 48px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 80% at 50% -10%, rgba(255,255,255,0.18) 0%, transparent 70%);
  pointer-events: none;
}
.cta-banner h2 { font-size: clamp(28px, 4vw, 42px); font-weight: 700; color: #fff; letter-spacing: -0.02em; }
.cta-banner p  { font-size: 18px; color: rgba(255,255,255,0.8); max-width: 480px; }
.cta-banner .btn--store { background: #fff; color: #000; }

/* ─── Footer ─────────────────────────────────────────────────────── */
.footer {
  background: #111;
  color: rgba(255,255,255,0.65);
  padding-block: 48px 32px;
}
.footer__top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 32px;
  margin-bottom: 40px;
}
.footer__brand { display: flex; align-items: center; gap: 10px; }
.footer__brand-name { font-size: 18px; font-weight: 700; color: #fff; }
.footer__tagline { font-size: 13px; margin-top: 4px; }
.footer__links { display: flex; gap: 32px; flex-wrap: wrap; }
.footer__link { font-size: 14px; transition: color .18s; }
.footer__link:hover { color: var(--brand); }
.footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 13px;
}

/* ─── Additional design tokens ──────────────────────────────────── */
:root {
  --red:     #FF3B30;
  --red-08:  rgba(255, 59, 48, 0.08);
  --red-18:  rgba(255, 59, 48, 0.18);
}

/* ─── Hero trial note ────────────────────────────────────────────── */
.hero__trial-note {
  font-size: 13px;
  color: rgba(255,255,255,0.6);
  margin-top: 10px;
}

/* ─── Trust section ──────────────────────────────────────────────── */
.trust-section {
  background: var(--surface-2);
  border-bottom: 1px solid var(--border);
  padding-block: 40px;
}
.trust-title {
  text-align: center;
  font-size: 14px;
  font-weight: 700;
  color: var(--text-secondary);
  letter-spacing: 0.04em;
  margin-bottom: 28px;
}
.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.trust-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background: var(--surface);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-card);
  padding: 20px;
}
.trust-item__logo {
  flex-shrink: 0;
  min-width: 52px;
  height: 52px;
  border-radius: 12px;
  background: var(--brand-08);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 800;
  color: var(--brand);
  letter-spacing: -0.02em;
  text-align: center;
  padding-inline: 6px;
}
.trust-item__text {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.55;
}
.trust-item__text strong {
  display: block;
  font-size: 14px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 4px;
}

/* ─── Core Features (4-card grid) ───────────────────────────────── */
.features-main-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.feature-main-card {
  border-radius: var(--radius-card);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.feature-main-card--pink   { background: var(--brand-08); }
.feature-main-card--orange { background: var(--orange-08); }
.feature-main-card--red    { background: var(--red-08); }
.feature-main-card--green  { background: var(--green-08); }

.feature-main-icon { font-size: 32px; }

.feature-main-badge {
  display: inline-flex;
  align-items: center;
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 8px;
  width: fit-content;
}
.feature-main-badge--pink   { color: var(--brand);  background: var(--brand-20); }
.feature-main-badge--orange { color: var(--orange); background: rgba(255,149,0,0.16); }
.feature-main-badge--red    { color: var(--red);    background: var(--red-18); }
.feature-main-badge--green  { color: var(--green);  background: rgba(0,153,0,0.12); }

.feature-main-card h3 { font-size: 19px; font-weight: 700; }
.feature-main-card p  { font-size: 15px; color: var(--text-secondary); line-height: 1.65; }

/* ─── Baby Rhythm section ────────────────────────────────────────── */
.rhythm-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.rhythm-img {
  width: 100%;
  border-radius: 16px;
  box-shadow: var(--shadow-card);
  border: 1.5px solid var(--border);
}
.rhythm-features-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.rhythm-feature-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.5;
}
.rhythm-dot {
  font-size: 20px;
  flex-shrink: 0;
}

/* ─── iOS Integration grid ───────────────────────────────────────── */
.ios-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.ios-card {
  background: var(--surface);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-card);
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: box-shadow .2s, border-color .2s;
}
.ios-card:hover {
  border-color: var(--brand-20);
  box-shadow: 0 8px 32px rgba(247,51,154,0.08);
}
.ios-card__img-wrap {
  background: #111;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.ios-card__img-wrap--widget {
  padding: 16px;
  aspect-ratio: 4/3;
}
.ios-card__img-wrap--island {
  padding: 24px 16px;
  aspect-ratio: 4/3;
}
.ios-card__img-wrap--live {
  padding: 32px 16px;
  aspect-ratio: 4/3;
}
.ios-card__img-wrap img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
}
.ios-card h3 { font-size: 17px; font-weight: 700; }
.ios-card p  { font-size: 14px; color: var(--text-secondary); line-height: 1.6; }

/* ─── Why Better comparison ──────────────────────────────────────── */
.why-compare {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 24px;
  align-items: center;
  max-width: 800px;
  margin-inline: auto;
  margin-top: 48px;
}
.why-compare__col {
  border-radius: var(--radius-card);
  padding: 28px 24px;
}
.why-compare__col--bad {
  background: rgba(0,0,0,0.03);
  border: 1.5px solid var(--border);
}
.why-compare__col--good {
  background: var(--brand-08);
  border: 1.5px solid var(--brand-20);
}
.why-compare__label {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  margin-bottom: 16px;
}
.why-compare__col--bad  .why-compare__label { color: var(--text-tertiary); }
.why-compare__col--good .why-compare__label { color: var(--brand); }
.why-compare__col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.why-compare__col li {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.5;
  padding-left: 20px;
  position: relative;
}
.why-compare__col--bad li::before {
  content: '✕';
  position: absolute;
  left: 0;
  color: var(--text-tertiary);
  font-size: 12px;
}
.why-compare__col--good li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--brand);
  font-weight: 700;
  font-size: 13px;
}
.why-compare__vs {
  font-size: 16px;
  font-weight: 800;
  color: var(--text-tertiary);
  text-align: center;
}

/* ─── Pricing trial note ─────────────────────────────────────────── */
.pricing-pro-desc {
  font-size: 14px;
  color: rgba(255,255,255,0.75);
  line-height: 1.6;
  margin-top: -8px;
}
.pricing-trial-note {
  font-size: 12px;
  color: rgba(255,255,255,0.55);
  text-align: center;
  margin-top: -8px;
  line-height: 1.5;
}

/* ─── CTA bottom buttons ─────────────────────────────────────────── */
.cta-btns {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
}
.cta-btn {
  font-size: 16px;
  height: 56px;
  padding-inline: 28px;
}
.btn--play {
  height: 48px;
  padding-inline: 22px;
  border-radius: 14px;
  background: #fff;
  color: #000;
  font-size: 15px;
  gap: 10px;
}
.btn--play svg { flex-shrink: 0; }
.btn--play--soon {
  opacity: 0.55;
  cursor: default;
  pointer-events: none;
}
.btn__soon-badge {
  font-size: 11px;
  font-weight: 700;
  background: rgba(0,0,0,0.12);
  border-radius: 6px;
  padding: 2px 7px;
  letter-spacing: 0.03em;
}
.cta-banner .btn--store { background: #fff; color: #000; }
.cta-micro {
  font-size: 13px;
  color: rgba(255,255,255,0.55);
  margin-top: -8px;
}

/* ─── Timeline & Baby Rhythm (pink feature section) ─────────────── */
.feature-pink-section {
  background: var(--brand);
  padding-block: var(--section-v);
}
.feature-pink-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}
.feature-pink-visual { display: flex; justify-content: center; }
.feature-phone-wrap {
  width: 280px;
  border-radius: 44px;
  overflow: hidden;
  flex-shrink: 0;
}
.feature-phone-wrap img { width: 100%; display: block; }
.eyebrow--white { color: rgba(255,255,255,0.65); }
.feature-pink-title { color: #fff; margin-bottom: 36px; }
.feature-pink-points { display: flex; flex-direction: column; gap: 28px; }
.feature-pink-point {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.feature-pink-icon {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
  background: rgba(255,255,255,0.15);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
}
.feature-pink-icon svg { width: 22px; height: 22px; }
.feature-pink-point h3 { font-size: 17px; font-weight: 700; color: #fff; margin-bottom: 6px; }
.feature-pink-point p  { font-size: 15px; color: rgba(255,255,255,0.75); line-height: 1.65; }

/* ─── Why Better comparison ──────────────────────────────────────── */
.why-compare {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 24px;
  align-items: center;
  max-width: 800px;
  margin-inline: auto;
  margin-top: 48px;
}
.why-compare__col { border-radius: var(--radius-card); padding: 28px 24px; }
.why-compare__col--bad  { background: rgba(0,0,0,0.03); border: 1.5px solid var(--border); }
.why-compare__col--good { background: var(--brand-08); border: 1.5px solid var(--brand-20); }
.why-compare__label { font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.07em; margin-bottom: 16px; }
.why-compare__col--bad  .why-compare__label { color: var(--text-tertiary); }
.why-compare__col--good .why-compare__label { color: var(--brand); }
.why-compare__col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.why-compare__col li { font-size: 14px; color: var(--text-secondary); line-height: 1.5; padding-left: 20px; position: relative; }
.why-compare__col--bad  li::before { content: '✕'; position: absolute; left: 0; color: var(--text-tertiary); font-size: 12px; }
.why-compare__col--good li::before { content: '✓'; position: absolute; left: 0; color: var(--brand); font-weight: 700; font-size: 13px; }
.why-compare__vs { font-size: 16px; font-weight: 800; color: var(--text-tertiary); text-align: center; }

/* ─── Feature split (light bg, image right) ─────────────────────── */
.feature-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}
.feature-split__points { display: flex; flex-direction: column; gap: 28px; }
.feature-split__point  { display: flex; gap: 16px; align-items: flex-start; }
.feature-split__icon {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
  background: var(--green-08);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--brand);
}
.feature-split__icon svg { width: 22px; height: 22px; }
.feature-split__point h3 { font-size: 17px; font-weight: 700; margin-bottom: 6px; }
.feature-split__point p  { font-size: 15px; color: var(--text-secondary); line-height: 1.65; }
.feature-split__visual   { display: flex; justify-content: center; }
.feature-split--reversed .feature-split__content { order: 2; }
.feature-split--reversed .feature-split__visual  { order: 1; }

.feature-pink-section .feature-split__point h3 { color: #fff; }
.feature-pink-section .feature-split__point p  { color: rgba(255,255,255,0.75); }
.feature-pink-section .feature-split__icon     { background: rgba(255,255,255,0.15); color: #fff; }
.feature-pink-section .title                   { color: #fff; }

/* ─── Problems section ───────────────────────────────────────────── */
.problems-section {
  background: #111;
  padding-block: var(--section-v);
}
.problems-label {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
  text-align: center;
  margin-bottom: 32px;
}
.problems-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
  border-radius: var(--radius-card);
  overflow: hidden;
}
.problem-card {
  background: #1C1C1E;
  padding: 36px 28px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.problem-time {
  font-family: var(--font-mono);
  font-size: 52px;
  font-weight: 700;
  color: var(--brand);
  line-height: 1;
  letter-spacing: -0.03em;
}
.problem-thought {
  font-size: 17px;
  color: rgba(255,255,255,0.88);
  line-height: 1.55;
}
.problem-tag {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: rgba(255,255,255,0.28);
}

/* ─── Responsive ─────────────────────────────────────────────────── */
@media (max-width: 900px) {
  :root { --section-v: 64px; }

  .hero__wrap          { min-height: unset; }
  .hero__brand         { padding-top: 28px; margin-bottom: 36px; }
  .hero__inner         { grid-template-columns: 1fr; text-align: center; padding-bottom: 48px; }
  .hero__content       { padding-bottom: 0; }
  .hero__sub           { max-width: 100%; margin-inline: auto; }
  .hero__visual        { display: flex; justify-content: center; margin-top: 8px; }
  .badge-appstore-link { display: flex; justify-content: center; }
  .hero__cta-row { justify-content: center; flex-wrap: wrap; }
  .phone-frame    { width: 100%; max-width: 280px; }
  .phone-duo      { width: 300px; height: 483px; }
  .phone-duo .phone-frame { width: 208px; }
  .phone-back     { width: 162px; }

  .problems-grid         { grid-template-columns: 1fr; }
  .why-compare           { grid-template-columns: 1fr; }
  .why-compare__vs       { display: none; }
  .feature-pink-inner    { grid-template-columns: 1fr; }
  .feature-pink-visual   { display: flex; justify-content: center; margin-top: 32px; order: 2; }
  .feature-pink-content  { order: 1; }
  .feature-split         { grid-template-columns: 1fr; }
  .feature-split__visual { display: flex; justify-content: center; margin-top: 32px; }
  .feature-split--reversed .feature-split__content { order: unset; }
  .feature-split--reversed .feature-split__visual  { order: unset; }
  .feature-phone-wrap    { width: 100% !important; max-width: 260px; }
  .feature-phone-wrap--lg { max-width: 340px; }
  .notify-stack          { zoom: 0.78; }

  .testimonials-grid { grid-template-columns: 1fr 1fr; }
  .pricing-grid      { grid-template-columns: 1fr; max-width: 400px; }
  .cta-banner        { padding: 48px 32px; }
  .footer__top       { flex-direction: column; }
}

@media (max-width: 600px) {
  :root { --section-v: 48px; }

  /* Hero CTA */
  .btn--hero { width: 100%; }

  .notify-stack { zoom: 0.65; }

  .cta-banner         { padding: 40px 24px; }
  .cta-btns           { flex-direction: column; align-items: center; }
  .testimonials-grid  { grid-template-columns: 1fr; }
  .footer__bottom     { flex-direction: column; text-align: center; }
}
