/* ============================================================
   Unfyltered Website — styles.css
   Variables, Layout, Components, Responsive
   ============================================================ */

/* ── CSS Variables ────────────────────────────────────────── */
:root {
  /* Primary */
  --primary: #E84393;
  --primary-dark: #C73780;
  --primary-light: #FCE4F0;

  /* Secondary (Charcoal) */
  --secondary: #1A1A2E;
  --secondary-dark: #0F0F1A;
  --secondary-light: #2D2D44;

  /* Accent (Lavender) */
  --accent: #8B7EC8;
  --accent-dark: #6B5CA7;
  --accent-light: #E8E4F4;

  /* Rose */
  --rose: #C04B56;
  --rose-light: #F9E8EA;

  /* Status */
  --success: #00D26A;
  --success-light: #E8F8F0;
  --warning: #FFB800;
  --error: #FF3B30;

  /* Neutrals */
  --white: #FFFFFF;
  --black: #000000;
  --grey-50: #FAFAFA;
  --grey-100: #F5F5F5;
  --grey-200: #EEEEEE;
  --grey-300: #E0E0E0;
  --grey-400: #BDBDBD;
  --grey-500: #9E9E9E;
  --grey-600: #757575;

  /* Backgrounds */
  --background: #F8F9FA;
  --surface: #FFFFFF;

  /* Text */
  --text-primary: #1A1A2E;
  --text-secondary: #6B6B80;
  --text-tertiary: #9E9EB0;

  /* Spacing (8px grid) */
  --space-xs: 4px;
  --space-sm: 8px;
  --space-md: 16px;
  --space-lg: 24px;
  --space-xl: 32px;
  --space-xxl: 48px;
  --space-3xl: 64px;
  --space-4xl: 96px;

  /* Radius */
  --radius-xs: 4px;
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-full: 100px;

  /* Shadows */
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.08);
  --shadow-md: 0 4px 12px rgba(0,0,0,0.08);
  --shadow-lg: 0 8px 24px rgba(0,0,0,0.10);
  --shadow-xl: 0 16px 48px rgba(0,0,0,0.12);

  /* Transitions */
  --transition-fast: 150ms ease;
  --transition-normal: 300ms ease;
  --transition-slow: 500ms ease;

  /* Layout */
  --max-width: 1200px;
  --nav-height: 72px;
}

/* ── Reset & Base ─────────────────────────────────────────── */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-primary);
  background-color: var(--surface);
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
  transition: color var(--transition-fast);
}

ul, ol {
  list-style: none;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  line-height: 1.2;
  color: var(--text-primary);
}

p {
  color: var(--text-secondary);
}

/* ── Utility ──────────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--space-lg);
}

.section {
  padding: var(--space-4xl) 0;
}

.section-eyebrow {
  display: inline-block;
  font-family: 'Poppins', sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.5px;
  padding: 6px 16px;
  border-radius: var(--radius-full);
  margin-bottom: var(--space-md);
}

.section-eyebrow--pink {
  color: var(--primary);
  background: var(--primary-light);
}

.section-eyebrow--lavender {
  color: var(--accent);
  background: var(--accent-light);
}

.section-eyebrow--green {
  color: var(--success);
  background: var(--success-light);
}

.section-title {
  font-size: 40px;
  font-weight: 700;
  margin-bottom: var(--space-md);
}

.section-subtitle {
  font-size: 18px;
  color: var(--text-secondary);
  max-width: 600px;
}

.text-center {
  text-align: center;
}

.mx-auto {
  margin-left: auto;
  margin-right: auto;
}

/* ── Buttons ──────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-sm);
  font-family: 'Poppins', sans-serif;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.3px;
  padding: 14px 32px;
  border-radius: var(--radius-full);
  border: 2px solid transparent;
  cursor: pointer;
  transition: all var(--transition-normal);
  white-space: nowrap;
}

.btn--primary {
  background: var(--secondary);
  color: var(--white);
  border-color: var(--secondary);
}

.btn--primary:hover {
  background: var(--secondary-light);
  border-color: var(--secondary-light);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn--outline {
  background: transparent;
  color: var(--secondary);
  border-color: var(--secondary);
}

.btn--outline:hover {
  background: var(--secondary);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn--white {
  background: var(--white);
  color: var(--secondary);
  border-color: var(--white);
}

.btn--white:hover {
  background: var(--grey-100);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn--sm {
  font-size: 14px;
  padding: 10px 24px;
}

.btn--lg {
  font-size: 17px;
  padding: 16px 40px;
}

/* ── Navigation ───────────────────────────────────────────── */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--nav-height);
  z-index: 1000;
  transition: all var(--transition-normal);
}

.navbar--transparent {
  background: transparent;
}

.navbar--solid {
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 rgba(0,0,0,0.06);
}

.navbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--space-lg);
}

.navbar__brand {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}

.navbar__logo {
  height: 36px;
  width: auto;
}

.navbar__wordmark {
  font-family: 'Poppins', sans-serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--text-primary);
}

.navbar__links {
  display: flex;
  align-items: center;
  gap: var(--space-xl);
}

.navbar__link {
  font-family: 'Poppins', sans-serif;
  font-size: 15px;
  font-weight: 500;
  color: var(--text-secondary);
  transition: color var(--transition-fast);
  position: relative;
}

.navbar__link:hover,
.navbar__link--active {
  color: var(--text-primary);
}

.navbar__link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary);
  transition: width var(--transition-normal);
  border-radius: 1px;
}

.navbar__link:hover::after {
  width: 100%;
}

.navbar__cta {
  display: flex;
  align-items: center;
}

.navbar__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: var(--space-sm);
  background: none;
  border: none;
  z-index: 1001;
}

.navbar__hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: all var(--transition-normal);
}

.navbar__hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.navbar__hamburger.active span:nth-child(2) {
  opacity: 0;
}

.navbar__hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile menu overlay */
.mobile-menu {
  position: fixed;
  inset: 0;
  background: var(--white);
  z-index: 999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--space-xl);
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition-normal);
}

.mobile-menu.active {
  opacity: 1;
  pointer-events: all;
}

.mobile-menu__link {
  font-family: 'Poppins', sans-serif;
  font-size: 24px;
  font-weight: 600;
  color: var(--text-primary);
  transition: color var(--transition-fast);
}

.mobile-menu__link:hover {
  color: var(--primary);
}

/* ── Hero ─────────────────────────────────────────────────── */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: var(--nav-height);
  background: linear-gradient(180deg, var(--white) 0%, var(--primary-light) 100%);
  overflow: hidden;
}

.hero__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-3xl);
  align-items: center;
}

.hero__content {
  max-width: 560px;
}

.hero__eyebrow {
  display: inline-block;
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: var(--primary);
  background: var(--primary-light);
  padding: 8px 20px;
  border-radius: var(--radius-full);
  margin-bottom: var(--space-lg);
}

.hero__title {
  font-size: 64px;
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: var(--space-lg);
  letter-spacing: -1px;
}

.hero__title span {
  color: var(--primary);
}

.hero__subtitle {
  font-size: 19px;
  line-height: 1.7;
  color: var(--text-secondary);
  margin-bottom: var(--space-xl);
  max-width: 480px;
}

.hero__buttons {
  display: flex;
  gap: var(--space-md);
  margin-bottom: var(--space-xl);
  flex-wrap: wrap;
}

.hero__stores {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  margin-bottom: var(--space-xl);
}

.hero__store-badge {
  height: 44px;
  border-radius: var(--radius-sm);
  transition: transform var(--transition-fast);
}

.hero__store-badge:hover {
  transform: scale(1.05);
}

.hero__trust {
  display: flex;
  gap: var(--space-xl);
  flex-wrap: wrap;
}

.hero__trust-item {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}

.hero__trust-icon {
  width: 20px;
  height: 20px;
  color: var(--primary);
}

.hero__trust-text {
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-secondary);
}

.hero__trust-text strong {
  color: var(--text-primary);
  font-weight: 700;
}

/* Phone Mockup */
.hero__visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.phone-mockup {
  width: 300px;
  height: 600px;
  background: var(--white);
  border-radius: 40px;
  box-shadow: var(--shadow-xl), 0 0 0 1px rgba(0,0,0,0.04);
  overflow: hidden;
  position: relative;
}

.phone-mockup__screen {
  width: 100%;
  height: 100%;
  border-radius: 40px;
  overflow: hidden;
  position: relative;
}

.phone-mockup__notch {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 120px;
  height: 28px;
  background: var(--white);
  border-radius: 0 0 20px 20px;
  z-index: 2;
}

.phone-mockup__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.phone-mockup__card {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: var(--space-lg);
  background: linear-gradient(transparent, rgba(0,0,0,0.7));
  color: var(--white);
  border-radius: 0 0 40px 40px;
}

.phone-mockup__name {
  font-family: 'Poppins', sans-serif;
  font-size: 24px;
  font-weight: 700;
  margin-bottom: var(--space-xs);
}

.phone-mockup__detail {
  font-size: 14px;
  opacity: 0.9;
  margin-bottom: var(--space-md);
}

.phone-mockup__chips {
  display: flex;
  gap: var(--space-sm);
  flex-wrap: wrap;
}

.phone-mockup__chip {
  font-size: 12px;
  font-weight: 500;
  padding: 4px 12px;
  border-radius: var(--radius-full);
  background: rgba(255,255,255,0.2);
  backdrop-filter: blur(4px);
}

/* ── Social Proof Bar ─────────────────────────────────────── */
.social-proof {
  background: var(--secondary);
  padding: var(--space-xxl) 0;
}

.social-proof__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-xl);
  text-align: center;
}

.social-proof__item {
  color: var(--white);
}

.social-proof__number {
  font-family: 'Poppins', sans-serif;
  font-size: 42px;
  font-weight: 700;
  margin-bottom: var(--space-xs);
}

.social-proof__label {
  font-size: 15px;
  color: rgba(255,255,255,0.7);
}

/* ── Features Bento Grid ─────────────────────────────────── */
.features {
  background: var(--white);
}

.features__header {
  text-align: center;
  margin-bottom: var(--space-3xl);
}

.features__bento {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto auto;
  gap: var(--space-lg);
}

.bento-card {
  border-radius: var(--radius-xl);
  padding: 32px;
  position: relative;
  overflow: hidden;
  transition: transform var(--transition-normal), box-shadow var(--transition-normal);
}

.bento-card:hover {
  transform: scale(1.02);
  box-shadow: var(--shadow-lg);
}

.bento-card--large {
  grid-row: 1 / 3;
}

.bento-card--full {
  grid-column: 1 / -1;
}

.bento-card--pink {
  background: linear-gradient(135deg, #FCE4F0, #fff);
}

.bento-card--lavender {
  background: linear-gradient(135deg, #E8E4F4, #fff);
}

.bento-card--rose {
  background: linear-gradient(135deg, #F9E8EA, #fff);
}

.bento-card--green {
  background: linear-gradient(135deg, #E8F8F0, #fff);
}

.bento-card__icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  margin-bottom: var(--space-lg);
}

.bento-card__icon--pink {
  background: rgba(232, 67, 147, 0.15);
  color: var(--primary);
}

.bento-card__icon--lavender {
  background: rgba(139, 126, 200, 0.15);
  color: var(--accent);
}

.bento-card__icon--rose {
  background: rgba(192, 75, 86, 0.15);
  color: var(--rose);
}

.bento-card__icon--green {
  background: rgba(0, 210, 106, 0.15);
  color: var(--success);
}

.bento-card__title {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: var(--space-sm);
}

.bento-card__desc {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.7;
  max-width: 480px;
}

/* ── How It Works ─────────────────────────────────────────── */
.how-it-works {
  background: var(--grey-50);
}

.how-it-works__header {
  text-align: center;
  margin-bottom: var(--space-3xl);
}

.how-it-works__steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-xl);
  position: relative;
}

/* Connecting line */
.how-it-works__steps::before {
  content: '';
  position: absolute;
  top: 80px;
  left: calc(16.67% + 40px);
  right: calc(16.67% + 40px);
  height: 2px;
  background: var(--grey-300);
  z-index: 0;
}

.step {
  text-align: center;
  position: relative;
  z-index: 1;
}

.step__image {
  width: 160px;
  height: 160px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto var(--space-lg);
  border: 4px solid var(--white);
  box-shadow: var(--shadow-md);
}

.step__number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--primary);
  color: var(--white);
  font-family: 'Poppins', sans-serif;
  font-size: 16px;
  font-weight: 700;
  margin-bottom: var(--space-md);
}

.step__title {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: var(--space-sm);
}

.step__desc {
  font-size: 15px;
  color: var(--text-secondary);
  max-width: 280px;
  margin: 0 auto;
  line-height: 1.6;
}

/* ── Couple Banner ────────────────────────────────────────── */
.couple-banner {
  position: relative;
  width: 100%;
  height: 400px;
  overflow: hidden;
}

.couple-banner__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.couple-banner__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(26, 26, 46, 0.7) 0%, rgba(26, 26, 46, 0.3) 50%, transparent 100%);
  z-index: 1;
}

.couple-banner__content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--space-lg);
}

.couple-banner__quote {
  font-family: 'Poppins', sans-serif;
  font-size: 28px;
  font-weight: 600;
  color: var(--white);
  line-height: 1.4;
  max-width: 520px;
  margin-bottom: var(--space-lg);
  font-style: italic;
}

.couple-banner__attribution {
  font-family: 'Poppins', sans-serif;
  font-size: 16px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.8);
}

/* ── App Showcase ─────────────────────────────────────────── */
.showcase {
  background: var(--white);
}

.showcase__block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-3xl);
  align-items: center;
  margin-bottom: var(--space-4xl);
}

.showcase__block:last-child {
  margin-bottom: 0;
}

.showcase__block--reverse {
  direction: rtl;
}

.showcase__block--reverse > * {
  direction: ltr;
}

.showcase__content {
  max-width: 480px;
}

.showcase__title {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: var(--space-md);
}

.showcase__desc {
  font-size: 16px;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: var(--space-lg);
}

.showcase__bullets {
  margin-bottom: var(--space-xl);
}

.showcase__bullet {
  display: flex;
  align-items: flex-start;
  gap: var(--space-md);
  margin-bottom: var(--space-md);
}

.showcase__bullet-icon {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  margin-top: 2px;
}

.showcase__bullet-icon--pink {
  background: var(--primary-light);
  color: var(--primary);
}

.showcase__bullet-icon--lavender {
  background: var(--accent-light);
  color: var(--accent);
}

.showcase__bullet-icon--green {
  background: var(--success-light);
  color: var(--success);
}

.showcase__bullet-text {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.5;
}

.showcase__visual {
  display: flex;
  justify-content: center;
}

.showcase__phone {
  width: 280px;
  height: 560px;
  background: var(--white);
  border-radius: 36px;
  box-shadow: var(--shadow-xl);
  overflow: hidden;
  position: relative;
}

.showcase__phone-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ── Safety & Trust ───────────────────────────────────────── */
.safety {
  background: var(--secondary);
  color: var(--white);
}

.safety__header {
  text-align: center;
  margin-bottom: var(--space-3xl);
}

.safety__header .section-title {
  color: var(--white);
}

.safety__header .section-subtitle {
  color: rgba(255,255,255,0.7);
}

.safety__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-lg);
}

.safety-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: all var(--transition-normal);
}

.safety-card:hover {
  background: rgba(255,255,255,0.08);
  transform: translateY(-4px);
}

.safety-card__icon {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-md);
  background: rgba(255,255,255,0.10);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  margin-bottom: var(--space-md);
}

.safety-card__title {
  font-size: 20px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: var(--space-sm);
}

.safety-card__desc {
  font-size: 15px;
  color: rgba(255,255,255,0.7);
  line-height: 1.6;
}

/* ── Testimonials ─────────────────────────────────────────── */
.testimonials {
  background: var(--white);
  overflow: hidden;
}

.testimonials__header {
  text-align: center;
  margin-bottom: var(--space-3xl);
}

.testimonials__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-lg);
}

.testimonial-card {
  background: var(--white);
  border: 1px solid var(--grey-200);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  position: relative;
  transition: all var(--transition-normal);
}

.testimonial-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.testimonial-card__quote-icon {
  font-size: 48px;
  color: var(--primary-light);
  font-family: Georgia, serif;
  line-height: 1;
  margin-bottom: var(--space-sm);
}

.testimonial-card__text {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: var(--space-lg);
  font-style: italic;
}

.testimonial-card__stars {
  color: var(--warning);
  font-size: 16px;
  margin-bottom: var(--space-md);
  letter-spacing: 2px;
}

.testimonial-card__author {
  display: flex;
  align-items: center;
  gap: var(--space-md);
}

.testimonial-card__avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
}

.testimonial-card__name {
  font-family: 'Poppins', sans-serif;
  font-size: 15px;
  font-weight: 600;
  color: var(--text-primary);
}

.testimonial-card__location {
  font-size: 13px;
  color: var(--text-tertiary);
}

/* ── Subscription Plans ───────────────────────────────────── */
.plans {
  background: linear-gradient(180deg, var(--white) 0%, var(--primary-light) 100%);
}

.plans__header {
  text-align: center;
  margin-bottom: var(--space-3xl);
}

.plans__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-lg);
  align-items: start;
}

.plan-card {
  background: var(--white);
  border: 1px solid var(--grey-200);
  border-radius: var(--radius-xl);
  padding: var(--space-xl);
  position: relative;
  transition: all var(--transition-normal);
}

.plan-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.plan-card--featured {
  border: 2px solid var(--primary);
  transform: scale(1.04);
  box-shadow: var(--shadow-lg);
  z-index: 1;
}

.plan-card--featured:hover {
  transform: scale(1.04) translateY(-4px);
  box-shadow: var(--shadow-xl);
}

.plan-card__badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--primary);
  color: var(--white);
  font-family: 'Poppins', sans-serif;
  font-size: 12px;
  font-weight: 600;
  padding: 4px 16px;
  border-radius: var(--radius-full);
  white-space: nowrap;
}

.plan-card__name {
  font-family: 'Poppins', sans-serif;
  font-size: 24px;
  font-weight: 700;
  margin-bottom: var(--space-xs);
}

.plan-card__tagline {
  font-size: 14px;
  color: var(--text-secondary);
  margin-bottom: var(--space-lg);
}

.plan-card__price {
  margin-bottom: var(--space-lg);
}

.plan-card__amount {
  font-family: 'Poppins', sans-serif;
  font-size: 36px;
  font-weight: 700;
  color: var(--text-primary);
}

.plan-card__period {
  font-size: 15px;
  color: var(--text-secondary);
}

.plan-card__features {
  margin-bottom: var(--space-xl);
}

.plan-card__feature {
  display: flex;
  align-items: flex-start;
  gap: var(--space-sm);
  margin-bottom: var(--space-sm);
  font-size: 14px;
  color: var(--text-secondary);
}

.plan-card__feature-check {
  flex-shrink: 0;
  color: var(--success);
  font-size: 16px;
  margin-top: 1px;
}

.plan-card__cta {
  width: 100%;
}

/* ── Download CTA ─────────────────────────────────────────── */
.download-cta {
  position: relative;
  padding: var(--space-4xl) 0;
  background: var(--secondary);
  overflow: hidden;
}

.download-cta__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.download-cta__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.25;
}

.download-cta__content {
  position: relative;
  z-index: 1;
  text-align: center;
  color: var(--white);
}

.download-cta__title {
  font-size: 48px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: var(--space-md);
}

.download-cta__subtitle {
  font-size: 18px;
  color: rgba(255,255,255,0.8);
  max-width: 500px;
  margin: 0 auto var(--space-xl);
}

.download-cta__stores {
  display: flex;
  justify-content: center;
  gap: var(--space-md);
}

.download-cta__badge {
  height: 52px;
  border-radius: var(--radius-sm);
  transition: transform var(--transition-fast);
}

.download-cta__badge:hover {
  transform: scale(1.05);
}

/* ── Footer ───────────────────────────────────────────────── */
.footer {
  background: var(--secondary);
  color: rgba(255,255,255,0.8);
  padding: var(--space-3xl) 0 var(--space-lg);
}

.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: var(--space-xl);
  margin-bottom: var(--space-xxl);
}

.footer__brand-desc {
  font-size: 14px;
  color: rgba(255,255,255,0.6);
  line-height: 1.7;
  margin-bottom: var(--space-lg);
  max-width: 300px;
}

.footer__social {
  display: flex;
  gap: var(--space-md);
}

.footer__social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.7);
  font-size: 18px;
  transition: all var(--transition-fast);
}

.footer__social-link:hover {
  background: var(--primary);
  color: var(--white);
}

.footer__heading {
  font-family: 'Poppins', sans-serif;
  font-size: 15px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: var(--space-lg);
}

.footer__link {
  display: block;
  font-size: 14px;
  color: rgba(255,255,255,0.6);
  margin-bottom: var(--space-sm);
  transition: color var(--transition-fast);
}

.footer__link:hover {
  color: var(--primary);
}

.footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: var(--space-lg);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--space-md);
}

.footer__copy {
  font-size: 13px;
  color: rgba(255,255,255,0.4);
}

.footer__domains {
  font-size: 13px;
  color: rgba(255,255,255,0.4);
}

.footer__domains a {
  color: rgba(255,255,255,0.6);
  transition: color var(--transition-fast);
}

.footer__domains a:hover {
  color: var(--primary);
}

/* ── Responsive ───────────────────────────────────────────── */

/* Tablet */
@media (max-width: 1024px) {
  .hero__title {
    font-size: 48px;
  }

  .section-title {
    font-size: 32px;
  }

  .features__bento {
    gap: var(--space-md);
  }

  .showcase__block {
    gap: var(--space-xl);
  }

  .showcase__title {
    font-size: 28px;
  }

  .plans__grid {
    gap: var(--space-md);
  }

  .footer__grid {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-xl);
  }
}

/* Mobile */
@media (max-width: 768px) {
  :root {
    --nav-height: 64px;
  }

  .container {
    padding: 0 var(--space-md);
  }

  .section {
    padding: var(--space-3xl) 0;
  }

  .navbar__links,
  .navbar__cta {
    display: none;
  }

  .navbar__hamburger {
    display: flex;
  }

  /* Hero */
  .hero {
    min-height: auto;
    padding-top: calc(var(--nav-height) + var(--space-xl));
    padding-bottom: var(--space-3xl);
  }

  .hero__inner {
    grid-template-columns: 1fr;
    gap: var(--space-xl);
  }

  .hero__title {
    font-size: 40px;
  }

  .hero__subtitle {
    font-size: 16px;
  }

  .hero__visual {
    order: -1;
  }

  .phone-mockup {
    width: 240px;
    height: 480px;
    border-radius: 32px;
  }

  .phone-mockup__screen {
    border-radius: 32px;
  }

  .phone-mockup__card {
    border-radius: 0 0 32px 32px;
  }

  .hero__buttons {
    flex-direction: column;
  }

  .hero__buttons .btn {
    width: 100%;
    text-align: center;
  }

  .hero__trust {
    flex-direction: column;
    gap: var(--space-md);
  }

  /* Social Proof */
  .social-proof__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-lg);
  }

  .social-proof__number {
    font-size: 32px;
  }

  /* Features */
  .features__bento {
    grid-template-columns: 1fr;
  }

  .bento-card--large {
    grid-row: auto;
  }

  .bento-card--full {
    grid-column: auto;
  }

  /* Couple Banner */
  .couple-banner {
    height: 300px;
  }

  .couple-banner__quote {
    font-size: 20px;
    max-width: 360px;
  }

  /* How It Works */
  .how-it-works__steps {
    grid-template-columns: 1fr;
    gap: var(--space-xxl);
  }

  .how-it-works__steps::before {
    display: none;
  }

  /* Showcase */
  .showcase__block,
  .showcase__block--reverse {
    grid-template-columns: 1fr;
    direction: ltr;
  }

  .showcase__visual {
    order: -1;
  }

  .showcase__phone {
    width: 220px;
    height: 440px;
    border-radius: 28px;
  }

  .showcase__title {
    font-size: 28px;
  }

  /* Safety */
  .safety__grid {
    grid-template-columns: 1fr;
  }

  /* Testimonials */
  .testimonials__grid {
    grid-template-columns: 1fr;
  }

  /* Plans */
  .plans__grid {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
  }

  .plan-card--featured {
    transform: none;
  }

  .plan-card--featured:hover {
    transform: translateY(-4px);
  }

  /* Download CTA */
  .download-cta__title {
    font-size: 32px;
  }

  .download-cta__stores {
    flex-direction: column;
    align-items: center;
  }

  /* Footer */
  .footer__grid {
    grid-template-columns: 1fr;
    gap: var(--space-xl);
  }

  .footer__bottom {
    flex-direction: column;
    text-align: center;
  }
}
