/* ===== RESET & BASE ===== */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  /* Tier colors */
  --blue: #2563EB;
  --blue-light: #EFF6FF;
  --blue-50: #DBEAFE;

  --burgundy: #921D4C;
  --burgundy-light: #FFF7F9;
  --burgundy-50: #FDE8EF;
  --burgundy-dark: #4B0F27;

  --green: #059669;
  --green-light: #ECFDF5;
  --green-50: #D1FAE5;

  --purple: #7C3AED;
  --purple-light: #F5F3FF;
  --purple-50: #EDE9FE;

  /* Neutrals */
  --gray-50: #F9FAFB;
  --gray-100: #F3F4F6;
  --gray-200: #E5E7EB;
  --gray-300: #D1D5DB;
  --gray-400: #9CA3AF;
  --gray-500: #6B7280;
  --gray-600: #4B5563;
  --gray-700: #374151;
  --gray-800: #1F2937;
  --gray-900: #111827;

  --white: #FFFFFF;

  /* Spacing */
  --section-gap: 64px;
  --card-padding: 24px;
  --page-padding: 16px;

  /* Easing */
  --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);

  /* Fonts */
  --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

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

body {
  font-family: var(--font);
  font-size: 14px;
  line-height: 1.6;
  color: var(--gray-800);
  background: var(--white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a {
  text-decoration: none;
}

ul {
  list-style: none;
}

img, svg {
  display: block;
  max-width: 100%;
}

strong {
  font-weight: 700;
}

/* ===== ANIMATIONS — BASE ===== */
.anim-fade-up,
.anim-fade-bounce {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 500ms var(--ease-out-expo),
              transform 500ms var(--ease-out-expo);
  transition-delay: calc(var(--stagger, 0) * 120ms);
}

.anim-fade-bounce {
  transform: translateY(-10px) scale(0.95);
}

.anim-fade-up.is-visible,
.anim-fade-bounce.is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

@media (prefers-reduced-motion: reduce) {
  .anim-fade-up,
  .anim-fade-bounce {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* ===== SECTION 0: TOP BAR ===== */
.top-bar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: transparent;
  border-bottom: 1px solid transparent;
  transition: background 400ms ease, box-shadow 400ms ease, border-color 400ms ease;
}

.top-bar--scrolled {
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom-color: var(--gray-200);
  box-shadow: 0 1px 8px rgba(0,0,0,0.08);
}

.top-bar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  padding: 12px var(--page-padding);
}

.top-bar__logo {
  display: flex;
  align-items: center;
  gap: 8px;
}

.top-bar__logo-img {
  height: 20px;
  width: auto;
  filter: brightness(0) invert(1);
  transition: filter 400ms ease;
}

.top-bar--scrolled .top-bar__logo-img {
  filter: none;
}

.top-bar__title {
  font-size: 12px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.5);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  display: none;
  transition: color 400ms ease;
}

.top-bar--scrolled .top-bar__title {
  color: var(--gray-500);
}

.top-bar__cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 700;
  color: var(--white);
  padding: 8px 16px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: background 200ms ease, color 400ms ease, border-color 400ms ease;
}

.top-bar__cta:hover {
  background: rgba(255, 255, 255, 0.25);
}

.top-bar--scrolled .top-bar__cta {
  color: var(--white);
  background: var(--burgundy);
  border-color: var(--burgundy);
}

.top-bar--scrolled .top-bar__cta:hover {
  background: #7A1640;
}

.top-bar__cta svg {
  width: 14px;
  height: 14px;
}

@media (min-width: 768px) {
  .top-bar__title {
    display: block;
  }

  .top-bar__inner {
    padding: 14px 32px;
  }
}

/* ===== SECTION 1: HERO ===== */
.hero {
  display: flex;
  flex-direction: column;
  padding: 72px var(--page-padding) 40px;
  background: linear-gradient(175deg, #1C1118 0%, #2A1520 25%, #3D1A2E 50%, #4B1F38 75%, #3A1628 100%);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -10%;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(ellipse, rgba(146, 29, 76, 0.25) 0%, rgba(146, 29, 76, 0.08) 40%, transparent 70%);
  filter: blur(60px);
  pointer-events: none;
  z-index: 0;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: 5%;
  left: 50%;
  transform: translateX(-50%);
  width: 500px;
  height: 300px;
  border-radius: 50%;
  background: radial-gradient(ellipse, rgba(201, 77, 124, 0.1) 0%, transparent 60%);
  filter: blur(50px);
  pointer-events: none;
  z-index: 0;
}

.hero__top {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 480px;
  margin: 0 auto;
  flex-shrink: 0;
  padding-bottom: 32px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero__badge {
  display: inline-block;
  padding: 6px 16px;
  border-radius: 100px;
  background: rgba(146, 29, 76, 0.25);
  border: 1px solid rgba(201, 77, 124, 0.2);
  color: rgba(255, 255, 255, 0.7);
  font-size: 11px;
  font-weight: 600;
  margin-bottom: 16px;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.hero__headline {
  font-size: 22px;
  font-weight: 800;
  line-height: 1.25;
  color: var(--white);
  letter-spacing: -0.02em;
  margin-bottom: 10px;
}

.hero__sub {
  font-size: 13px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 24px;
  max-width: 380px;
}

/* App Store Badges in Hero */
.hero__stores {
  display: flex;
  gap: 12px;
  justify-content: center;
  margin-bottom: 10px;
}

.hero__store-badge {
  display: block;
  height: 44px;
  transition: opacity 200ms ease, transform 200ms ease;
}

.hero__store-badge img {
  height: 44px;
  width: auto;
}

.hero__store-badge:hover {
  opacity: 0.85;
  transform: scale(1.03);
}

.hero__store-note {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.35);
  font-weight: 500;
}

/* Reviews area — slider container */
.hero__reviews {
  position: relative;
  z-index: 2;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding-top: 8px;
  max-width: 480px;
  margin: 0 auto;
  width: 100%;
}

/* Slider */
.hero-slider {
  width: 100%;
  overflow: hidden;
  border-radius: 20px;
}

.hero-slider__track {
  display: flex;
  width: 100%;
  transition: transform 500ms cubic-bezier(0.16, 1, 0.3, 1);
  will-change: transform;
}

/* Individual review card */
.hero-review {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 22px 20px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  width: 100%;
  min-width: 100%;
  flex-shrink: 0;
  box-sizing: border-box;
}

.hero-review__photo {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  border: 2px solid rgba(201, 77, 124, 0.3);
}

.hero-review__body {
  flex: 1;
  min-width: 0;
}

.hero-review__stars-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 6px;
}

.hero-review__stars {
  font-size: 12px;
  color: #E8A849;
  letter-spacing: 1px;
}

.hero-review__text {
  font-size: 13px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.8);
  font-style: italic;
}

.hero-review__meta {
  display: flex;
  align-items: baseline;
  gap: 8px;
  flex-wrap: wrap;
}

.hero-review__name {
  font-size: 12px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.9);
}

.hero-review__role {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.35);
  font-weight: 500;
}

.hero-review__ig {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  border-radius: 6px;
  color: rgba(255, 255, 255, 0.4);
  background: rgba(255, 255, 255, 0.08);
  transition: background 200ms ease, color 200ms ease;
  flex-shrink: 0;
}

.hero-review__ig svg {
  width: 14px;
  height: 14px;
}

.hero-review__ig:hover {
  background: rgba(255, 255, 255, 0.15);
  color: rgba(255, 255, 255, 0.8);
}

/* Slider dots */
.hero-slider__dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 16px;
}

.hero-slider__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: none;
  background: rgba(255, 255, 255, 0.15);
  cursor: pointer;
  padding: 0;
  transition: background 300ms ease, transform 300ms ease;
}

.hero-slider__dot--active {
  background: rgba(201, 77, 124, 0.7);
  transform: scale(1.25);
}

@media (min-width: 768px) {
  .hero {
    padding: 80px 32px 48px;
  }

  .hero__headline {
    font-size: 34px;
  }

  .hero__sub {
    font-size: 15px;
    max-width: 440px;
  }

  .hero__store-badge {
    height: 48px;
  }

  .hero__store-badge img {
    height: 48px;
  }

  .hero__reviews {
    max-width: 560px;
  }

  .hero-review {
    padding: 28px 24px;
  }

  .hero-review__photo {
    width: 56px;
    height: 56px;
  }

  .hero-review__text {
    font-size: 14px;
  }
}

/* ===== SECTION 2: SOCIAL PROOF ===== */
.social-proof {
  padding: 0;
  text-align: center;
  background: var(--white);
}

.social-proof__metrics {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 0;
  padding: 20px var(--page-padding);
}

.social-proof__metric {
  text-align: center;
  flex: 1;
}

.social-proof__number {
  font-size: 22px;
  font-weight: 800;
  color: var(--burgundy);
  letter-spacing: -0.03em;
}

.social-proof__plus {
  font-size: 16px;
  font-weight: 800;
  color: var(--burgundy);
}

.social-proof__star {
  font-size: 16px;
  color: #F59E0B;
  margin-left: 1px;
}

.social-proof__plus {
  font-size: 24px;
  font-weight: 800;
  color: #921D4C;
}

.social-proof__label {
  display: block;
  font-size: 10px;
  font-weight: 500;
  color: var(--gray-500);
  margin-top: 2px;
  line-height: 1.3;
}

.social-proof__divider {
  width: 1px;
  height: 28px;
  background: var(--gray-200);
  flex-shrink: 0;
}

.social-proof__sub {
  font-size: 13px;
  color: var(--white);
  font-weight: 400;
  background: #4B1F38;
  padding: 12px var(--page-padding);
  margin: 0;
  max-width: none;
}

@media (min-width: 768px) {
  .social-proof__metrics {
    padding: 28px 32px;
  }

  .social-proof__metric {
    flex: none;
    padding: 0 32px;
  }

  .social-proof__divider {
    height: 36px;
  }

  .social-proof__number {
    font-size: 32px;
  }

  .social-proof__label {
    font-size: 12px;
  }

  .social-proof__sub {
    font-size: 14px;
    padding: 14px 32px;
  }
}

/* ===== SECTION 3: HOW IT WORKS ===== */
.how-it-works {
  padding: 72px 0 48px;
  background: linear-gradient(180deg, var(--white) 0%, #F8F0F4 30%, #F0E4EB 60%, var(--white) 100%);
  overflow: hidden;
  position: relative;
}

/* Subtle ambient glow */
.how-it-works::before {
  content: '';
  position: absolute;
  top: 20%;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 300px;
  border-radius: 50%;
  background: radial-gradient(ellipse, rgba(146, 29, 76, 0.06) 0%, transparent 70%);
  filter: blur(60px);
  pointer-events: none;
}

.how-it-works__header {
  text-align: center;
  padding: 0 var(--page-padding);
  margin-bottom: 48px;
}

.how-it-works__eyebrow {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--white);
  background: var(--burgundy);
  padding: 8px 20px;
  border-radius: 100px;
  margin-bottom: 20px;
  box-shadow: 0 2px 12px rgba(146, 29, 76, 0.25);
}

.how-it-works__headline {
  font-size: 28px;
  font-weight: 800;
  color: var(--gray-900);
  letter-spacing: -0.03em;
  line-height: 1.15;
  margin-bottom: 12px;
}

.how-it-works__sub {
  font-size: 15px;
  color: var(--gray-500);
  max-width: 360px;
  margin: 0 auto;
}

.how-it-works__steps {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 800px;
  margin: 0 auto 40px;
  padding: 0 var(--page-padding);
  position: relative;
}

/* Connecting line between steps (mobile) */
.how-it-works__steps::before {
  content: '';
  position: absolute;
  left: calc(var(--page-padding) + 32px);
  top: 48px;
  bottom: 48px;
  width: 2px;
  background: linear-gradient(180deg, var(--burgundy) 0%, var(--blue) 50%, var(--green) 100%);
  opacity: 0.15;
  border-radius: 1px;
}

.how-it-works__step {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  padding: 22px 20px;
  background: var(--white);
  border-radius: 20px;
  border: 1px solid transparent;
  box-shadow: 0 2px 12px rgba(0,0,0,0.04), 0 8px 32px rgba(0,0,0,0.03);
  transition: transform 400ms ease, box-shadow 400ms ease;
  position: relative;
  z-index: 1;
}

.how-it-works__step:hover {
  transform: translateY(-3px);
  box-shadow: 0 4px 20px rgba(0,0,0,0.06), 0 16px 48px rgba(0,0,0,0.06);
}

/* Color-coded left border accent */
.how-it-works__step--1 { border-left: 3px solid var(--burgundy); }
.how-it-works__step--2 { border-left: 3px solid var(--blue); }
.how-it-works__step--3 { border-left: 3px solid var(--green); }

.how-it-works__step-icon {
  width: 52px;
  height: 52px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  position: relative;
}

/* Glow behind icon */
.how-it-works__step-icon::after {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 20px;
  opacity: 0.3;
  filter: blur(8px);
  z-index: -1;
}

.how-it-works__step-icon--1 {
  background: linear-gradient(135deg, var(--burgundy-light) 0%, var(--burgundy-50) 100%);
  color: var(--burgundy);
}

.how-it-works__step-icon--1::after {
  background: var(--burgundy-50);
}

.how-it-works__step-icon--2 {
  background: linear-gradient(135deg, var(--blue-light) 0%, var(--blue-50) 100%);
  color: var(--blue);
}

.how-it-works__step-icon--2::after {
  background: var(--blue-50);
}

.how-it-works__step-icon--3 {
  background: linear-gradient(135deg, var(--green-light) 0%, var(--green-50) 100%);
  color: var(--green);
}

.how-it-works__step-icon--3::after {
  background: var(--green-50);
}

.how-it-works__step-icon svg {
  width: 24px;
  height: 24px;
}

.how-it-works__step-number {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 2px 8px;
  border-radius: 4px;
  margin-bottom: 6px;
}

.how-it-works__step--1 .how-it-works__step-number {
  background: var(--burgundy-50);
  color: var(--burgundy);
}

.how-it-works__step--2 .how-it-works__step-number {
  background: var(--blue-50);
  color: var(--blue);
}

.how-it-works__step--3 .how-it-works__step-number {
  background: var(--green-50);
  color: var(--green);
}

.how-it-works__step-title {
  font-size: 17px;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 4px;
  letter-spacing: -0.01em;
  line-height: 1.3;
}

.how-it-works__step-text {
  font-size: 13px;
  color: var(--gray-500);
  line-height: 1.6;
}

.how-it-works__cta {
  text-align: center;
  padding: 0 var(--page-padding);
}

.how-it-works__stores {
  display: flex;
  gap: 12px;
  justify-content: center;
}

.how-it-works__store-badge {
  display: block;
  height: 44px;
  transition: opacity 200ms ease, transform 200ms ease;
}

.how-it-works__store-badge img {
  height: 44px;
  width: auto;
}

.how-it-works__store-badge:hover {
  opacity: 0.85;
  transform: scale(1.03);
}

@media (min-width: 768px) {
  .how-it-works {
    padding: 96px 0 72px;
  }

  .how-it-works__headline {
    font-size: 42px;
  }

  .how-it-works__sub {
    font-size: 17px;
    max-width: 480px;
  }

  .how-it-works__header {
    margin-bottom: 56px;
  }

  .how-it-works__steps {
    flex-direction: row;
    gap: 20px;
    padding: 0 32px;
  }

  /* Horizontal connecting line on desktop */
  .how-it-works__steps::before {
    left: 80px;
    right: 80px;
    top: 48px;
    bottom: auto;
    width: auto;
    height: 2px;
    background: linear-gradient(90deg, var(--burgundy) 0%, var(--blue) 50%, var(--green) 100%);
  }

  .how-it-works__step {
    flex: 1;
    flex-direction: column;
    text-align: center;
    align-items: center;
    padding: 28px 22px;
    border-left: none;
  }

  /* Top border accent on desktop */
  .how-it-works__step--1 { border-top: 3px solid var(--burgundy); border-left: none; }
  .how-it-works__step--2 { border-top: 3px solid var(--blue); border-left: none; }
  .how-it-works__step--3 { border-top: 3px solid var(--green); border-left: none; }

  .how-it-works__step-icon {
    width: 56px;
    height: 56px;
  }

  .how-it-works__step-title {
    font-size: 18px;
  }

  .how-it-works__store-badge {
    height: 48px;
  }

  .how-it-works__store-badge img {
    height: 48px;
  }
}

/* ===== SHARED ===== */
.section-headline {
  font-size: 24px;
  font-weight: 800;
  color: var(--gray-900);
  letter-spacing: -0.03em;
  text-align: center;
  margin-bottom: 32px;
}

@media (min-width: 768px) {
  .section-headline {
    font-size: 36px;
    margin-bottom: 48px;
  }
}

/* ===== CLOUD SAFETY BANNER ===== */
.cloud-banner {
  padding: var(--section-gap) var(--page-padding);
  background: var(--white);
}

.cloud-banner__items {
  display: flex;
  gap: 24px;
  max-width: 720px;
  margin: 0 auto;
}

.cloud-banner__item {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 10px;
  padding: 28px 20px;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--burgundy-light) 0%, #FFF0F5 100%);
  border: 1px solid rgba(146, 29, 76, 0.08);
}

.cloud-banner__text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.cloud-banner__icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  background: var(--burgundy);
  color: var(--white);
  box-shadow: 0 2px 8px rgba(146, 29, 76, 0.25);
}

.cloud-banner__icon svg {
  width: 24px;
  height: 24px;
}

.cloud-banner__title {
  font-size: 15px;
  font-weight: 700;
  color: var(--gray-900);
  line-height: 1.3;
}

.cloud-banner__desc {
  font-size: 12px;
  color: var(--gray-500);
  line-height: 1.4;
}

@media (max-width: 768px) {
  .cloud-banner {
    padding: 40px var(--page-padding);
  }

  .cloud-banner__items {
    flex-direction: column;
    gap: 10px;
  }

  .cloud-banner__item {
    flex-direction: row;
    align-items: center;
    text-align: left;
    padding: 14px 16px;
    gap: 12px;
  }
}

/* ===== SECTION 3.5: VISIBILITY MODES ===== */
.visibility-modes {
  padding: 56px 0 40px;
  background: linear-gradient(180deg, var(--white) 0%, #F4F0F8 30%, #EDE8F4 55%, #F4F0F8 80%, var(--white) 100%);
  overflow: hidden;
  position: relative;
}

.visibility-modes::before {
  content: '';
  position: absolute;
  top: 25%;
  left: 50%;
  transform: translateX(-50%);
  width: 500px;
  height: 250px;
  border-radius: 50%;
  background: radial-gradient(ellipse, rgba(124, 58, 237, 0.05) 0%, transparent 70%);
  filter: blur(60px);
  pointer-events: none;
}

.visibility-modes__header {
  text-align: center;
  padding: 0 var(--page-padding);
  margin-bottom: 32px;
}

.visibility-modes__eyebrow {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--white);
  background: var(--burgundy);
  padding: 8px 20px;
  border-radius: 100px;
  margin-bottom: 16px;
  box-shadow: 0 2px 12px rgba(146, 29, 76, 0.25);
}

.visibility-modes__headline {
  font-size: 24px;
  font-weight: 800;
  color: var(--gray-900);
  letter-spacing: -0.03em;
  line-height: 1.15;
  margin-bottom: 8px;
}

.visibility-modes__sub {
  font-size: 14px;
  color: var(--gray-500);
  max-width: 360px;
  margin: 0 auto;
  line-height: 1.5;
}

.visibility-modes__cards {
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-width: 880px;
  margin: 0 auto;
  padding: 0 var(--page-padding);
}

.visibility-modes__card {
  padding: 16px 18px;
  background: var(--white);
  border-radius: 16px;
  border: 1px solid transparent;
  box-shadow: 0 2px 10px rgba(0,0,0,0.04), 0 4px 20px rgba(0,0,0,0.02);
  transition: transform 300ms ease, box-shadow 300ms ease;
}

.visibility-modes__card:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(0,0,0,0.06), 0 8px 32px rgba(0,0,0,0.05);
}

/* Color-coded left border — mobile */
.visibility-modes__card--private { border-left: 3px solid var(--gray-500); }
.visibility-modes__card--exclusive { border-left: 3px solid #7C3AED; }
.visibility-modes__card--public { border-left: 3px solid var(--blue); }

/* Top row: icon + title + badge */
.visibility-modes__card-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px;
}

/* Compact icon */
.visibility-modes__card-icon {
  width: 32px;
  height: 32px;
  border-radius: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.visibility-modes__card-icon svg {
  width: 16px;
  height: 16px;
}

.visibility-modes__card-icon--private {
  background: var(--gray-100);
  color: var(--gray-600);
}

.visibility-modes__card-icon--exclusive {
  background: var(--purple-50);
  color: #7C3AED;
}

.visibility-modes__card-icon--public {
  background: var(--blue-50);
  color: var(--blue);
}

.visibility-modes__card-title {
  font-size: 16px;
  font-weight: 700;
  color: var(--gray-900);
  letter-spacing: -0.01em;
  flex-grow: 1;
}

/* One-word badge */
.visibility-modes__card-badge {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 100px;
  flex-shrink: 0;
}

.visibility-modes__card-badge--private {
  background: var(--gray-100);
  color: var(--gray-600);
}

.visibility-modes__card-badge--exclusive {
  background: var(--purple-50);
  color: #7C3AED;
}

.visibility-modes__card-badge--public {
  background: var(--blue-50);
  color: var(--blue);
}

/* Description — full width below the row */
.visibility-modes__card-text {
  font-size: 13px;
  color: var(--gray-500);
  line-height: 1.55;
}

@media (min-width: 768px) {
  .visibility-modes {
    padding: 72px 0 56px;
  }

  .visibility-modes__headline {
    font-size: 36px;
  }

  .visibility-modes__sub {
    font-size: 15px;
    max-width: 440px;
  }

  .visibility-modes__header {
    margin-bottom: 40px;
  }

  .visibility-modes__cards {
    flex-direction: row;
    gap: 16px;
    padding: 0 32px;
  }

  .visibility-modes__card {
    flex: 1;
    padding: 20px;
    border-left: none;
  }

  /* Top border accent on desktop */
  .visibility-modes__card--private { border-top: 3px solid var(--gray-500); border-left: none; }
  .visibility-modes__card--exclusive { border-top: 3px solid #7C3AED; border-left: none; }
  .visibility-modes__card--public { border-top: 3px solid var(--blue); border-left: none; }
}

/* ===== SECTION 4: TRANSFORMATION V2 ===== */
.transform-v2 {
  padding: 72px 0 48px;
  background: linear-gradient(180deg, var(--white) 0%, var(--gray-50) 15%, #F0EDF5 50%, var(--gray-50) 85%, var(--white) 100%);
  overflow: hidden;
}

.transform-v2__header {
  text-align: center;
  padding: 0 var(--page-padding);
  margin-bottom: 48px;
}

.transform-v2__eyebrow {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--white);
  background: var(--burgundy);
  padding: 8px 20px;
  border-radius: 100px;
  margin-bottom: 20px;
  box-shadow: 0 2px 12px rgba(146, 29, 76, 0.25);
}

.transform-v2__headline {
  font-size: 28px;
  font-weight: 800;
  color: var(--gray-900);
  letter-spacing: -0.03em;
  line-height: 1.15;
  margin-bottom: 12px;
}

.transform-v2__sub {
  font-size: 15px;
  color: var(--gray-500);
  max-width: 360px;
  margin: 0 auto;
}

.transform-v2__block {
  padding: 0 var(--page-padding);
  margin-bottom: 24px;
}

.transform-v2__block-inner {
  max-width: 960px;
  margin: 0 auto;
  background: var(--white);
  border-radius: 20px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.04), 0 12px 40px rgba(0,0,0,0.03);
  overflow: hidden;
  transition: transform 400ms ease, box-shadow 400ms ease;
}

.transform-v2__block-inner:hover {
  transform: translateY(-3px);
  box-shadow: 0 4px 20px rgba(0,0,0,0.06), 0 20px 60px rgba(0,0,0,0.06);
}

.transform-v2__split {
  display: grid;
  grid-template-columns: 1fr;
  position: relative;
}

.transform-v2__arrow-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4px 0;
  position: relative;
}

.transform-v2__arrow-line {
  display: none;
}

.transform-v2__arrow-icon {
  width: 32px;
  height: 32px;
  color: var(--burgundy);
  background: var(--burgundy-light);
  border-radius: 50%;
  padding: 6px;
  transform: rotate(90deg);
  flex-shrink: 0;
}

.transform-v2__arrow-divider--blue .transform-v2__arrow-icon {
  color: var(--blue);
  background: var(--blue-light);
}

.transform-v2__arrow-divider--green .transform-v2__arrow-icon {
  color: var(--green);
  background: var(--green-light);
}

.transform-v2__pain {
  padding: 20px 20px 16px;
  position: relative;
  background: linear-gradient(135deg, #FAFAFA 0%, #F5F3F4 100%);
}

.transform-v2__pain-glow {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(239, 68, 68, 0.06) 0%, transparent 70%);
  pointer-events: none;
}

.transform-v2__label-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
}

.transform-v2__label {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  padding: 3px 10px;
  border-radius: 6px;
}

.transform-v2__label--pain {
  background: #FEE2E2;
  color: #991B1B;
}

.transform-v2__label--gain {
  color: var(--white);
}

.transform-v2__label--blue { background: var(--blue); }
.transform-v2__label--burgundy { background: var(--burgundy); }
.transform-v2__label--green { background: var(--green); }

.transform-v2__pain-icon,
.transform-v2__gain-icon {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
}

.transform-v2__pain-icon { color: #B0A8AE; }

.transform-v2__gain--blue .transform-v2__gain-icon { color: var(--blue); }
.transform-v2__gain--burgundy .transform-v2__gain-icon { color: var(--burgundy); }
.transform-v2__gain--green .transform-v2__gain-icon { color: var(--green); }

.transform-v2__pain-title,
.transform-v2__gain-title {
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 6px;
  line-height: 1.3;
}

.transform-v2__pain-title { color: var(--gray-500); }
.transform-v2__gain-title { color: var(--gray-900); }

.transform-v2__pain-text,
.transform-v2__gain-text {
  font-size: 13px;
  line-height: 1.6;
  margin-bottom: 12px;
}

.transform-v2__pain-text { color: var(--gray-400); }
.transform-v2__gain-text { color: var(--gray-600); }

.transform-v2__pain-stat {
  display: none;
  align-items: baseline;
  gap: 6px;
  flex-wrap: wrap;
  padding-top: 10px;
  border-top: 1px solid rgba(0,0,0,0.06);
}

.transform-v2__gain-stat {
  display: flex;
  align-items: baseline;
  gap: 6px;
  flex-wrap: wrap;
  padding-top: 10px;
  border-top: 1px solid rgba(0,0,0,0.06);
}

.transform-v2__stat-num {
  font-size: 36px;
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1;
}

.transform-v2__stat-suffix {
  font-size: 24px;
  font-weight: 800;
  letter-spacing: -0.03em;
}

.transform-v2__stat-num--pain { color: #D4CECF; }
.transform-v2__stat-suffix--pain { color: #D4CECF; }
.transform-v2__stat-num--blue { color: var(--blue); }
.transform-v2__stat-suffix--blue { color: var(--blue); }
.transform-v2__stat-num--burgundy { color: var(--burgundy); }
.transform-v2__stat-suffix--burgundy { color: var(--burgundy); }
.transform-v2__stat-num--green { color: var(--green); }
.transform-v2__stat-suffix--green { color: var(--green); }

.transform-v2__stat-label {
  font-size: 12px;
  color: var(--gray-400);
  font-weight: 500;
  width: 100%;
}

.transform-v2__gain {
  padding: 20px 20px 16px;
  position: relative;
}

.transform-v2__gain--blue { background: linear-gradient(135deg, var(--blue-light) 0%, #EBF2FF 100%); }
.transform-v2__gain--burgundy { background: linear-gradient(135deg, var(--burgundy-light) 0%, #FFF0F4 100%); }
.transform-v2__gain--green { background: linear-gradient(135deg, var(--green-light) 0%, #E6FFF5 100%); }

.transform-v2__gain-glow {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  pointer-events: none;
}

.transform-v2__gain--blue .transform-v2__gain-glow { background: radial-gradient(circle, rgba(37, 99, 235, 0.08) 0%, transparent 70%); }
.transform-v2__gain--burgundy .transform-v2__gain-glow { background: radial-gradient(circle, rgba(146, 29, 76, 0.08) 0%, transparent 70%); }
.transform-v2__gain--green .transform-v2__gain-glow { background: radial-gradient(circle, rgba(5, 150, 105, 0.08) 0%, transparent 70%); }

/* Unlock strip — simplified for discovery page */
.transform-v2__unlock {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  background: var(--green-50);
  font-size: 13px;
  color: var(--green);
}

.transform-v2__unlock-icon {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.transform-v2__unlock strong {
  font-weight: 700;
}

@media (min-width: 768px) {
  .transform-v2 {
    padding: 96px 0 72px;
  }

  .transform-v2__headline {
    font-size: 42px;
  }

  .transform-v2__sub {
    font-size: 17px;
    max-width: 480px;
  }

  .transform-v2__header {
    margin-bottom: 56px;
  }

  .transform-v2__block {
    padding: 0 32px;
    margin-bottom: 28px;
  }

  .transform-v2__split {
    grid-template-columns: 1fr auto 1fr;
  }

  .transform-v2__pain,
  .transform-v2__gain {
    padding: 24px 28px 20px;
  }

  .transform-v2__arrow-divider {
    flex-direction: column;
    padding: 0;
    align-self: center;
    gap: 8px;
  }

  .transform-v2__arrow-line {
    display: block;
    width: 1px;
    height: 40px;
    background: var(--gray-200);
  }

  .transform-v2__arrow-icon {
    transform: rotate(0deg);
    width: 36px;
    height: 36px;
  }

  .transform-v2__pain-title,
  .transform-v2__gain-title {
    font-size: 20px;
  }

  .transform-v2__stat-num {
    font-size: 44px;
  }

  .transform-v2__stat-suffix {
    font-size: 28px;
  }

  .transform-v2__pain-stat {
    display: flex;
  }
}

/* ===== SECTION 5: LOSS CALCULATOR ===== */
.calculator {
  padding: var(--section-gap) 0;
  background: var(--white);
}

.calculator__header {
  text-align: center;
  padding: 0 var(--page-padding);
  margin-bottom: 32px;
}

.calculator__eyebrow {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--white);
  background: var(--burgundy);
  padding: 8px 20px;
  border-radius: 100px;
  margin-bottom: 20px;
  box-shadow: 0 2px 12px rgba(146, 29, 76, 0.25);
}

.calculator__headline {
  font-size: 28px;
  font-weight: 800;
  color: var(--gray-900);
  letter-spacing: -0.03em;
  line-height: 1.15;
  margin-bottom: 10px;
}

.calculator__sub {
  font-size: 14px;
  color: var(--gray-500);
}

.calculator__body {
  max-width: 560px;
  margin: 0 auto;
  padding: 0 var(--page-padding);
}

.calculator__sliders {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 28px;
}

.calculator__slider-group {
  background: var(--gray-50);
  border-radius: 14px;
  padding: 16px 18px 12px;
}

.calculator__slider-header {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 10px;
}

.calculator__slider-label {
  font-size: 13px;
  font-weight: 600;
  color: var(--gray-700);
}

.calculator__slider-value {
  font-size: 16px;
  font-weight: 800;
  color: var(--burgundy);
  letter-spacing: -0.02em;
}

.calculator__slider-value--red {
  color: #DC2626;
}

.calculator__range {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  height: 6px;
  border-radius: 3px;
  background: var(--gray-200);
  outline: none;
  cursor: pointer;
}

.calculator__range::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--burgundy);
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(146, 29, 76, 0.3);
  border: 3px solid var(--white);
  transition: transform 150ms ease;
}

.calculator__range::-webkit-slider-thumb:active {
  transform: scale(1.15);
}

.calculator__range::-moz-range-thumb {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--burgundy);
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(146, 29, 76, 0.3);
  border: 3px solid var(--white);
}

.calculator__range--red::-webkit-slider-thumb {
  background: #DC2626;
  box-shadow: 0 2px 8px rgba(220, 38, 38, 0.3);
}

.calculator__range--red::-moz-range-thumb {
  background: #DC2626;
  box-shadow: 0 2px 8px rgba(220, 38, 38, 0.3);
}

.calculator__slider-minmax {
  display: flex;
  justify-content: space-between;
  font-size: 10px;
  color: var(--gray-400);
  margin-top: 4px;
}

/* Results */
.calculator__results {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 24px;
}

.calculator__result {
  border-radius: 16px;
  padding: 18px 20px;
}

.calculator__result--loss {
  background: #FEF2F2;
  border: 1px solid #FECACA;
}

.calculator__result--save {
  background: #ECFDF5;
  border: 1px solid #A7F3D0;
}

.calculator__result-badge {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  padding: 3px 10px;
  border-radius: 6px;
  margin-bottom: 12px;
}

.calculator__result-badge--loss {
  background: #FEE2E2;
  color: #991B1B;
}

.calculator__result-badge--save {
  background: var(--green);
  color: var(--white);
}

.calculator__result-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 6px 0;
}

.calculator__result-row--big {
  padding-top: 10px;
  margin-top: 4px;
  border-top: 1px solid rgba(0,0,0,0.06);
}

.calculator__result-label {
  font-size: 12px;
  color: var(--gray-500);
  font-weight: 500;
}

.calculator__result-num {
  font-size: 16px;
  font-weight: 800;
  letter-spacing: -0.02em;
  transition: color 200ms ease;
}

.calculator__result-num--loss {
  color: #DC2626;
}

.calculator__result-num--save {
  color: var(--green);
}

.calculator__result-num--xl {
  font-size: 22px;
}

/* Savings summary card (replaces ROI card) */
.calculator__result--savings {
  border-radius: 12px;
  padding: 14px 18px;
  background: var(--green-50);
  border: 1px solid #A7F3D0;
  margin-bottom: 24px;
  text-align: center;
}

.calculator__savings-label {
  font-size: 12px;
  color: var(--gray-500);
  font-weight: 500;
  margin-bottom: 4px;
}

.calculator__savings-value {
  font-size: 24px;
  font-weight: 800;
  color: var(--green);
  letter-spacing: -0.03em;
}

/* CTA */
.calculator__cta-wrap {
  text-align: center;
}

.calculator__cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 15px;
  font-weight: 700;
  color: var(--white);
  padding: 14px 32px;
  border-radius: 14px;
  background: var(--burgundy);
  box-shadow: 0 4px 16px rgba(146, 29, 76, 0.25);
  transition: background 200ms ease, transform 200ms ease, box-shadow 200ms ease;
}

.calculator__cta:hover {
  background: #7A1640;
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(146, 29, 76, 0.35);
}

@media (min-width: 768px) {
  .calculator {
    padding: 96px 0;
  }

  .calculator__headline {
    font-size: 36px;
  }

  .calculator__body {
    max-width: 640px;
  }

  .calculator__results {
    flex-direction: row;
    gap: 16px;
  }

  .calculator__result {
    flex: 1;
  }

  .calculator__result-num--xl {
    font-size: 20px;
  }
}

/* ===== SECTION 6: APP PREVIEW ===== */
.app-preview {
  padding: var(--section-gap) 0;
  background: linear-gradient(180deg, var(--gray-50) 0%, var(--white) 100%);
  overflow: hidden;
}

.app-preview__header {
  text-align: center;
  padding: 0 var(--page-padding);
  margin-bottom: 36px;
}

.app-preview__eyebrow {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--white);
  background: var(--burgundy);
  padding: 8px 20px;
  border-radius: 100px;
  margin-bottom: 16px;
  box-shadow: 0 2px 12px rgba(146, 29, 76, 0.25);
}

.app-preview__headline {
  font-size: 24px;
  font-weight: 800;
  color: var(--gray-900);
  letter-spacing: -0.03em;
  line-height: 1.2;
}

.app-preview__slider {
  position: relative;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0 var(--page-padding);
}

.app-preview__viewport {
  overflow: hidden;
  flex: 1;
}

.app-preview__track {
  display: flex;
  gap: 16px;
  transition: transform 400ms cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.app-preview__slide {
  flex-shrink: 0;
  width: calc((100% - 16px) / 2);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.app-preview__phone {
  width: 100%;
  border-radius: 8px;
  overflow: hidden;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
}

.app-preview__phone img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.app-preview__caption {
  font-size: 13px;
  font-weight: 600;
  color: var(--gray-700);
  text-align: center;
}

.app-preview__caption-sub {
  font-size: 12px;
  color: var(--gray-400);
  font-weight: 400;
  display: block;
  margin-top: 2px;
}

/* Arrows */
.app-preview__arrow {
  display: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 2px solid var(--gray-200);
  background: var(--white);
  color: var(--gray-600);
  cursor: pointer;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 200ms ease;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.app-preview__arrow:hover {
  border-color: var(--burgundy);
  color: var(--burgundy);
  box-shadow: 0 4px 16px rgba(146, 29, 76, 0.15);
}

/* Dots */
.app-preview__dots {
  display: flex;
  gap: 8px;
  justify-content: center;
  padding: 20px 0 0;
}

.app-preview__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: none;
  background: var(--gray-300);
  cursor: pointer;
  padding: 0;
  transition: all 250ms ease;
}

.app-preview__dot--active {
  background: var(--burgundy);
  transform: scale(1.3);
}

/* CTA after preview */
.app-preview__cta {
  text-align: center;
  padding: 32px var(--page-padding) 0;
}

.app-preview__stores {
  display: flex;
  gap: 12px;
  justify-content: center;
}

.app-preview__store-badge {
  display: block;
  height: 44px;
  transition: opacity 200ms ease, transform 200ms ease;
}

.app-preview__store-badge img {
  height: 44px;
  width: auto;
}

.app-preview__store-badge:hover {
  opacity: 0.85;
  transform: scale(1.03);
}

@media (min-width: 768px) {
  .app-preview {
    padding: 96px 0;
  }

  .app-preview__headline {
    font-size: 36px;
  }

  .app-preview__slider {
    padding: 0 32px;
    gap: 16px;
  }

  .app-preview__arrow {
    display: flex;
  }

  .app-preview__slide {
    width: calc((100% - 48px) / 3);
  }

  .app-preview__track {
    gap: 24px;
  }

  .app-preview__store-badge {
    height: 48px;
  }

  .app-preview__store-badge img {
    height: 48px;
  }
}

@media (min-width: 1024px) {
  .app-preview__slider {
    padding: 0 48px;
  }

  .app-preview__arrow {
    width: 48px;
    height: 48px;
  }

  .app-preview__slide {
    width: calc((100% - 72px) / 4);
  }
}

/* ===== SECTION 7: TESTIMONIAL WALL ===== */
.testimonial-wall {
  padding: 72px 0 48px;
  background: linear-gradient(180deg, var(--white) 0%, #F0F4F8 25%, #E8EDF5 50%, #F0F4F8 75%, var(--white) 100%);
  overflow: hidden;
  position: relative;
}

/* Ambient glow */
.testimonial-wall::before {
  content: '';
  position: absolute;
  top: 30%;
  left: 50%;
  transform: translateX(-50%);
  width: 700px;
  height: 350px;
  border-radius: 50%;
  background: radial-gradient(ellipse, rgba(146, 29, 76, 0.05) 0%, transparent 70%);
  filter: blur(80px);
  pointer-events: none;
}

.testimonial-wall__header {
  text-align: center;
  padding: 0 var(--page-padding);
  margin-bottom: 48px;
}

.testimonial-wall__eyebrow {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--white);
  background: var(--burgundy);
  padding: 8px 20px;
  border-radius: 100px;
  margin-bottom: 20px;
  box-shadow: 0 2px 12px rgba(146, 29, 76, 0.25);
}

.testimonial-wall__headline {
  font-size: 28px;
  font-weight: 800;
  color: var(--gray-900);
  letter-spacing: -0.03em;
  line-height: 1.15;
  margin-bottom: 12px;
}

.testimonial-wall__sub {
  font-size: 15px;
  color: var(--gray-500);
  max-width: 400px;
  margin: 0 auto;
}

.testimonial-wall__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  max-width: 880px;
  margin: 0 auto;
  padding: 0 var(--page-padding);
  position: relative;
}

.testimonial-wall__card {
  padding: 24px 22px 20px;
  background: var(--white);
  border-radius: 20px;
  border: 1px solid transparent;
  box-shadow: 0 2px 12px rgba(0,0,0,0.04), 0 8px 32px rgba(0,0,0,0.03);
  transition: transform 400ms ease, box-shadow 400ms ease;
  position: relative;
  overflow: hidden;
}

.testimonial-wall__card:hover {
  transform: translateY(-3px);
  box-shadow: 0 4px 20px rgba(0,0,0,0.06), 0 16px 48px rgba(0,0,0,0.06);
}

/* Color-coded left border per card */
.testimonial-wall__card--burgundy { border-left: 3px solid var(--burgundy); }
.testimonial-wall__card--blue { border-left: 3px solid var(--blue); }
.testimonial-wall__card--green { border-left: 3px solid var(--green); }
.testimonial-wall__card--purple { border-left: 3px solid #7C3AED; }

/* Large decorative quote mark */
.testimonial-wall__quote-mark {
  font-size: 48px;
  font-weight: 800;
  line-height: 1;
  height: 28px;
  margin-bottom: 4px;
  opacity: 0.15;
}

.testimonial-wall__card--burgundy .testimonial-wall__quote-mark { color: var(--burgundy); }
.testimonial-wall__card--blue .testimonial-wall__quote-mark { color: var(--blue); }
.testimonial-wall__card--green .testimonial-wall__quote-mark { color: var(--green); }
.testimonial-wall__card--purple .testimonial-wall__quote-mark { color: #7C3AED; }

/* Star rating */
.testimonial-wall__stars {
  font-size: 13px;
  letter-spacing: 2px;
  margin-bottom: 10px;
  color: #FBBF24;
}

.testimonial-wall__quote {
  font-size: 14px;
  line-height: 1.7;
  color: var(--gray-700);
  margin-bottom: 16px;
}

.testimonial-wall__author {
  display: flex;
  align-items: center;
  gap: 12px;
}

/* Avatar initials circle */
.testimonial-wall__avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
  flex-shrink: 0;
}

.testimonial-wall__avatar--burgundy {
  background: var(--burgundy-50);
  color: var(--burgundy);
}

.testimonial-wall__avatar--blue {
  background: var(--blue-50);
  color: var(--blue);
}

.testimonial-wall__avatar--green {
  background: var(--green-50);
  color: var(--green);
}

.testimonial-wall__avatar--purple {
  background: #F3E8FF;
  color: #7C3AED;
}

.testimonial-wall__name {
  font-size: 13px;
  font-weight: 700;
  color: var(--gray-800);
  display: block;
}

.testimonial-wall__role {
  font-size: 11px;
  color: var(--gray-400);
  font-weight: 500;
  display: block;
}

@media (min-width: 768px) {
  .testimonial-wall {
    padding: 96px 0 72px;
  }

  .testimonial-wall__headline {
    font-size: 42px;
  }

  .testimonial-wall__sub {
    font-size: 17px;
    max-width: 480px;
  }

  .testimonial-wall__header {
    margin-bottom: 56px;
  }

  .testimonial-wall__grid {
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    padding: 0 32px;
  }

  .testimonial-wall__card {
    padding: 28px 24px 22px;
    border-left: none;
  }

  /* Top border accent on desktop */
  .testimonial-wall__card--burgundy { border-top: 3px solid var(--burgundy); }
  .testimonial-wall__card--blue { border-top: 3px solid var(--blue); }
  .testimonial-wall__card--green { border-top: 3px solid var(--green); }
  .testimonial-wall__card--purple { border-top: 3px solid #7C3AED; }
}

/* ===== SECTION 7: REVIEWS ===== */
.home-reviews {
  padding: var(--section-gap) var(--page-padding);
  background: var(--gray-50);
}

.home-reviews__header {
  text-align: center;
  margin-bottom: 32px;
}

.home-reviews__eyebrow {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--white);
  background: var(--burgundy);
  padding: 8px 20px;
  border-radius: 100px;
  margin-bottom: 16px;
  box-shadow: 0 2px 12px rgba(146, 29, 76, 0.25);
}

.home-reviews__headline {
  font-size: 24px;
  font-weight: 800;
  color: var(--gray-900);
  letter-spacing: -0.03em;
  line-height: 1.15;
}

.home-reviews__list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 560px;
  margin: 0 auto;
}

.home-reviews__card {
  position: relative;
  padding: 22px 20px;
  border-radius: 16px;
  background: var(--white);
  border: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.home-reviews__top {
  display: flex;
  align-items: center;
  gap: 12px;
}

.home-reviews__photo {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  border: 2px solid rgba(201, 77, 124, 0.3);
}

.home-reviews__info {
  flex: 1;
  min-width: 0;
}

.home-reviews__stars {
  font-size: 12px;
  color: #E8A849;
  letter-spacing: 1px;
  margin-bottom: 2px;
}

.home-reviews__meta {
  display: flex;
  align-items: baseline;
  gap: 6px;
  flex-wrap: wrap;
}

.home-reviews__name {
  font-size: 13px;
  font-weight: 700;
  color: var(--gray-900);
}

.home-reviews__role {
  font-size: 11px;
  color: var(--gray-500);
  font-weight: 500;
}

.home-reviews__ig {
  position: absolute;
  top: 18px;
  right: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  opacity: 0.85;
  transition: opacity 200ms ease;
}

.home-reviews__ig-icon {
  width: 20px;
  height: 20px;
}

.home-reviews__ig:hover {
  opacity: 1;
}

.home-reviews__text {
  font-size: 13px;
  line-height: 1.6;
  color: var(--gray-700);
  font-style: italic;
}

/* ===== SECTION 8: FAQ ===== */
.faq {
  padding: var(--section-gap) var(--page-padding);
  background: var(--gray-50);
}

.faq__header {
  text-align: center;
  margin-bottom: 32px;
}

.faq__eyebrow {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--white);
  background: var(--burgundy);
  padding: 8px 20px;
  border-radius: 100px;
  margin-bottom: 16px;
  box-shadow: 0 2px 12px rgba(146, 29, 76, 0.25);
}

.faq__headline {
  font-size: 24px;
  font-weight: 800;
  color: var(--gray-900);
  letter-spacing: -0.03em;
}

.faq__list {
  max-width: 680px;
  margin: 0 auto;
}

.faq__item {
  border-bottom: 1px solid var(--gray-200);
}

.faq__item:last-child {
  border-bottom: none;
}

.faq__question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 18px 0;
  background: none;
  border: none;
  font-family: var(--font);
  font-size: 15px;
  font-weight: 600;
  color: var(--gray-800);
  cursor: pointer;
  text-align: left;
  line-height: 1.4;
  -webkit-tap-highlight-color: transparent;
}

.faq__chevron {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  color: var(--gray-400);
  transition: transform 300ms var(--ease-out-expo);
}

.faq__item--open .faq__chevron {
  transform: rotate(180deg);
}

.faq__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 400ms var(--ease-out-expo), padding 300ms ease;
}

.faq__item--open .faq__answer {
  max-height: 200px;
  padding-bottom: 18px;
}

.faq__answer p {
  font-size: 14px;
  line-height: 1.7;
  color: var(--gray-500);
}

@media (min-width: 768px) {
  .faq {
    padding: 96px 32px;
  }

  .faq__question {
    font-size: 16px;
  }
}

/* ===== SECTION 9: FINAL CTA ===== */
.final-cta {
  padding: 64px var(--page-padding);
  background: linear-gradient(180deg, #921D4C 0%, #6B1538 40%, #4B0F27 75%, #3D1A2E 100%);
  position: relative;
  overflow: hidden;
}

/* Decorative glow blob - top left */
.final-cta::before {
  content: '';
  position: absolute;
  top: -20%;
  left: -10%;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.06) 0%, transparent 70%);
  filter: blur(60px);
  pointer-events: none;
}

/* Decorative glow blob - bottom right */
.final-cta::after {
  content: '';
  position: absolute;
  bottom: -20%;
  right: -10%;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 200, 220, 0.08) 0%, transparent 70%);
  filter: blur(80px);
  pointer-events: none;
}

.final-cta__inner {
  text-align: center;
  max-width: 560px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.final-cta__eyebrow {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--white);
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.15);
  padding: 8px 20px;
  border-radius: 100px;
  margin-bottom: 24px;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.final-cta__headline {
  font-size: 26px;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.03em;
  line-height: 1.2;
  margin-bottom: 14px;
}

.final-cta__sub {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.6;
  margin-bottom: 32px;
  max-width: 440px;
  margin-left: auto;
  margin-right: auto;
}

/* Trust stats row */
.final-cta__stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  margin-bottom: 32px;
}

.final-cta__stat {
  text-align: center;
  flex: 1;
}

.final-cta__stat-num {
  display: block;
  font-size: 20px;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.03em;
}

.final-cta__stat-plus {
  font-size: 16px;
  font-weight: 800;
  color: rgba(255, 255, 255, 0.7);
}

.final-cta__stat-label {
  display: block;
  font-size: 10px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.45);
  margin-top: 2px;
  line-height: 1.3;
}

.final-cta__stat-divider {
  width: 1px;
  height: 28px;
  background: rgba(255, 255, 255, 0.15);
  flex-shrink: 0;
}

/* Store badges */
.final-cta__stores {
  display: flex;
  gap: 12px;
  justify-content: center;
  margin-bottom: 24px;
  animation: finalCtaBadgeGlow 3s ease-in-out infinite;
}

.final-cta__store-badge {
  display: block;
  height: 48px;
  transition: opacity 200ms ease, transform 200ms ease;
}

.final-cta__store-badge img {
  height: 48px;
  width: auto;
}

.final-cta__store-badge:hover {
  opacity: 0.9;
  transform: translateY(-2px) scale(1.03);
}

/* Reassurance line */
.final-cta__reassurance {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.4);
  font-weight: 500;
  letter-spacing: 0.02em;
}

/* Glow animation for store badges area */
@keyframes finalCtaBadgeGlow {
  0%, 100% {
    filter: drop-shadow(0 0 0px transparent);
  }
  50% {
    filter: drop-shadow(0 4px 20px rgba(255, 255, 255, 0.12));
  }
}

@media (min-width: 768px) {
  .final-cta {
    padding: 96px 32px;
    background: linear-gradient(175deg, #921D4C 0%, #6B1538 40%, #4B0F27 75%, #3D1A2E 100%);
  }

  .final-cta__eyebrow {
    font-size: 12px;
    padding: 10px 24px;
    margin-bottom: 28px;
  }

  .final-cta__headline {
    font-size: 40px;
  }

  .final-cta__sub {
    font-size: 16px;
    margin-bottom: 40px;
  }

  .final-cta__stat-num {
    font-size: 28px;
  }

  .final-cta__stat-label {
    font-size: 12px;
  }

  .final-cta__stat-divider {
    height: 36px;
  }

  .final-cta__stats {
    margin-bottom: 40px;
  }

  .final-cta__store-badge {
    height: 52px;
  }

  .final-cta__store-badge img {
    height: 52px;
  }

  .final-cta__reassurance {
    font-size: 13px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .final-cta__stores {
    animation: none;
  }
}

/* ===== REUSABLE FOOTER ===== */
.footer {
  background: linear-gradient(175deg, #3D1A2E 0%, #2A1520 60%, #1C1118 100%);
  padding: 48px var(--page-padding) 24px;
}

.footer__inner {
  max-width: 960px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.footer__top {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 20px;
}

.footer__brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.footer__logo-img {
  height: 24px;
  width: auto;
  filter: brightness(0) invert(1);
}

.footer__tagline {
  font-size: 13px;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.45);
  max-width: 320px;
}

.footer__stores {
  display: flex;
  gap: 10px;
}

.footer__store-badge {
  display: block;
  height: 40px;
  transition: opacity 200ms ease, transform 200ms ease;
}

.footer__store-badge img {
  height: 40px;
  width: auto;
}

.footer__store-badge:hover {
  opacity: 0.85;
  transform: scale(1.03);
}

.footer__nav {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer__nav-title {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 10px;
}

.footer__nav-col {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer__nav-col a {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.4);
  transition: color 200ms ease;
  line-height: 1.4;
}

.footer__nav-col a:hover {
  color: rgba(255, 255, 255, 0.8);
}

.footer__social {
  display: flex;
  justify-content: center;
  gap: 16px;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer__social-link {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.5);
  transition: background 200ms ease, color 200ms ease;
}

.footer__social-link svg {
  width: 18px;
  height: 18px;
}

.footer__social-link:hover {
  background: rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.9);
}

.footer__bottom {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  text-align: center;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer__copy {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.3);
  line-height: 1.4;
}

.footer__trust {
  display: flex;
  gap: 16px;
  font-size: 11px;
  color: rgba(255, 255, 255, 0.35);
}

@media (min-width: 768px) {
  .footer {
    padding: 56px 32px 28px;
  }

  .footer__top {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
    align-items: flex-start;
  }

  .footer__brand {
    align-items: flex-start;
  }

  .footer__nav {
    gap: 40px;
  }

  .footer__bottom {
    flex-direction: row;
    justify-content: space-between;
  }
}

/* ===== EXIT-INTENT BOTTOM SHEET ===== */
.exit-sheet {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 200;
  transform: translateY(100%);
  transition: transform 400ms cubic-bezier(0.16, 1, 0.3, 1);
  pointer-events: none;
}

.exit-sheet--visible {
  transform: translateY(0);
  pointer-events: auto;
}

.exit-sheet__inner {
  background: var(--white);
  border-radius: 20px 20px 0 0;
  padding: 20px 20px 56px;
  box-shadow: 0 -4px 32px rgba(0, 0, 0, 0.12);
  display: flex;
  align-items: center;
  gap: 14px;
  max-width: 560px;
  margin: 0 auto;
  position: relative;
}

.exit-sheet__close {
  position: absolute;
  top: 10px;
  right: 14px;
  background: none;
  border: none;
  color: var(--gray-400);
  cursor: pointer;
  padding: 4px;
  -webkit-tap-highlight-color: transparent;
}

.exit-sheet__text {
  flex: 1;
  font-size: 13px;
  line-height: 1.4;
  color: var(--gray-600);
}

.exit-sheet__text strong {
  color: var(--gray-900);
}

.exit-sheet__wa {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 20px;
  border-radius: 12px;
  background: #25D366;
  color: var(--white);
  font-size: 13px;
  font-weight: 700;
  white-space: nowrap;
  flex-shrink: 0;
  transition: background 200ms ease, transform 200ms ease;
  box-shadow: 0 2px 12px rgba(37, 211, 102, 0.3);
}

.exit-sheet__wa:hover {
  background: #1EBE5A;
  transform: translateY(-1px);
}

.exit-sheet__wa-icon {
  width: 20px;
  height: 20px;
}

@media (min-width: 768px) {
  .exit-sheet__inner {
    padding: 20px 20px 24px;
  }
}

/* ===== PLANS SECTION ===== */
.plans {
  padding: var(--section-gap) var(--page-padding);
  max-width: 1200px;
  margin: 0 auto;
}

.plans__header {
  text-align: center;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.plans__badge {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--white);
  background: var(--burgundy);
  padding: 8px 20px;
  border-radius: 100px;
  margin-bottom: 16px;
  box-shadow: 0 2px 12px rgba(146, 29, 76, 0.25);
}

.plans__sub {
  font-size: 14px;
  color: var(--gray-500);
  margin-top: 12px;
}

/* Plans Overview Grid */
.plans-overview {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.plans-ov__card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 16px 12px;
  border-radius: 14px;
  background: var(--white);
  border: 1.5px solid var(--gray-200);
  transition: border-color 200ms ease, transform 200ms ease, box-shadow 200ms ease;
  position: relative;
  cursor: pointer;
}

.plans-ov__card:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(0,0,0,0.06);
}

.plans-ov__card--blue:hover { border-color: var(--blue); }
.plans-ov__card--burgundy:hover { border-color: var(--burgundy); }
.plans-ov__card--green:hover { border-color: var(--green); }
.plans-ov__card--purple:hover { border-color: var(--purple); }

/* Popular card */
.plans-ov__card--popular {
  border-color: var(--burgundy);
  box-shadow: 0 2px 12px rgba(146, 29, 76, 0.1);
}

.plans-ov__popular {
  position: absolute;
  top: -9px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--white);
  background: var(--burgundy);
  padding: 2px 10px;
  border-radius: 4px;
  white-space: nowrap;
}

.plans-ov__badge {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.08em;
  padding: 2px 8px;
  border-radius: 4px;
  margin-bottom: 6px;
  color: var(--white);
}

.plans-ov__badge--blue { background: var(--blue); }
.plans-ov__badge--burgundy { background: var(--burgundy); }
.plans-ov__badge--green { background: var(--green); }
.plans-ov__badge--purple { background: var(--purple); }

.plans-ov__name {
  font-size: 15px;
  font-weight: 800;
  color: var(--gray-900);
  letter-spacing: -0.02em;
  margin-bottom: 2px;
}

.plans-ov__tagline {
  font-size: 11px;
  color: var(--gray-500);
  line-height: 1.3;
  margin-bottom: 8px;
}

.plans-ov__price {
  font-size: 11px;
  color: var(--gray-500);
  margin-bottom: 4px;
}

.plans-ov__amount {
  font-size: 24px;
  font-weight: 800;
  letter-spacing: -0.03em;
}

.plans-ov__amount--blue { color: var(--blue); }
.plans-ov__amount--burgundy { color: var(--burgundy); }
.plans-ov__amount--green { color: var(--green); }
.plans-ov__amount--purple { color: var(--purple); }

.plans-ov__daily {
  font-size: 10px;
  font-weight: 600;
  color: var(--gray-400);
  background: var(--gray-50);
  padding: 2px 8px;
  border-radius: 4px;
}

@media (min-width: 768px) {
  .plans-overview {
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
    margin-bottom: 48px;
  }

  .plans-ov__card {
    padding: 20px 16px;
  }

  .plans-ov__amount {
    font-size: 28px;
  }
}

/* Plan Card Base */
.plan-card {
  background: var(--white);
  border-radius: 20px;
  padding: 0;
  margin-bottom: 24px;
  border: 1px solid var(--gray-200);
  overflow: hidden;
  transition: transform 300ms ease, box-shadow 300ms ease;
}

.plan-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.08);
}

.plan-card__header {
  padding: var(--card-padding) var(--card-padding) 0;
}

.plan-card__badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 12px;
}

.plan-card__tier-badge {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  padding: 4px 12px;
  border-radius: 100px;
  color: var(--white);
}

.plan-card__tier-badge--blue { background: var(--blue); }
.plan-card__tier-badge--burgundy { background: var(--burgundy); }
.plan-card__tier-badge--green { background: var(--green); }
.plan-card__tier-badge--purple { background: var(--purple); }

.plan-card__secondary-badge {
  font-size: 11px;
  font-weight: 500;
  padding: 4px 12px;
  border-radius: 100px;
  background: var(--gray-100);
  color: var(--gray-500);
}

.plan-card__secondary-badge--required {
  background: #FEF3C7;
  color: #92400E;
}

.plan-card__name {
  font-size: 22px;
  font-weight: 800;
  color: var(--gray-900);
  letter-spacing: -0.02em;
  margin-bottom: 4px;
}

.plan-card__tagline {
  font-size: 14px;
  color: var(--gray-500);
  margin-bottom: 16px;
  line-height: 1.5;
}

.plan-card__price {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-bottom: 4px;
}

.plan-card__amount {
  font-size: 48px;
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1;
}

.plan-card__amount--large {
  font-size: 56px;
}

.plan-card__amount--blue { color: var(--blue); }
.plan-card__amount--burgundy { color: var(--burgundy); }
.plan-card__amount--green { color: var(--green); }
.plan-card__amount--purple { color: var(--purple); }

.plan-card__price-meta {
  display: flex;
  flex-direction: column;
}

.plan-card__currency {
  font-size: 14px;
  font-weight: 600;
  color: var(--gray-500);
}

.plan-card__daily {
  font-size: 11px;
  font-weight: 600;
  padding: 2px 8px;
  border-radius: 6px;
  display: inline-block;
  margin-top: 2px;
}

.plan-card__daily--blue {
  background: var(--blue-light);
  color: var(--blue);
}

.plan-card__daily--green {
  background: var(--green-light);
  color: var(--green);
}

/* Plan Features */
.plan-card__features {
  padding: 20px var(--card-padding);
}

.plan-card__feature {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 7px 0;
  font-size: 13px;
  line-height: 1.5;
  color: var(--gray-700);
}

.plan-card__feature--included {
  font-weight: 600;
  padding-bottom: 10px;
  margin-bottom: 4px;
  border-bottom: 1px solid var(--gray-100);
}

.plan-card__check {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  margin-top: 1px;
}

.plan-card__feature--blue .plan-card__check { color: var(--blue); }
.plan-card__feature--burgundy .plan-card__check { color: var(--burgundy); }
.plan-card__feature--green .plan-card__check { color: var(--green); }
.plan-card__feature--purple .plan-card__check { color: var(--purple); }

.plan-card__check--star {
  width: 16px;
  height: 16px;
}

.plan-card__feature--star {
  font-weight: 500;
}

/* Plan Callout Box */
.plan-card__callout {
  margin: 0 var(--card-padding) 20px;
  padding: 16px;
  border-radius: 12px;
  font-size: 13px;
  line-height: 1.6;
}

.plan-card__callout--blue {
  background: var(--blue-50);
  color: #1E40AF;
}

.plan-card__callout--burgundy {
  background: var(--burgundy-50);
  color: #7C1841;
}

.plan-card__callout--green {
  background: var(--green-50);
  color: #065F46;
}

.plan-card__callout--purple {
  background: var(--purple-50);
  color: #5B21B6;
}

/* Plan CTA Button */
.plan-card__cta {
  display: block;
  text-align: center;
  padding: 16px;
  font-size: 15px;
  font-weight: 700;
  color: var(--white);
  margin: 0 var(--card-padding) var(--card-padding);
  border-radius: 14px;
  transition: transform 200ms ease, box-shadow 200ms ease, opacity 200ms ease;
}

.plan-card__cta:hover {
  transform: translateY(-1px);
  opacity: 0.92;
}

.plan-card__cta--blue { background: var(--blue); box-shadow: 0 4px 16px rgba(37, 99, 235, 0.25); }
.plan-card__cta--burgundy { background: var(--burgundy); box-shadow: 0 4px 16px rgba(146, 29, 76, 0.25); }
.plan-card__cta--green { background: var(--green); box-shadow: 0 4px 16px rgba(5, 150, 105, 0.25); }
.plan-card__cta--purple { background: var(--purple); box-shadow: 0 4px 16px rgba(124, 58, 237, 0.25); }

/* Popular Plan — Special Styling */
.plan-card--popular {
  position: relative;
  border: 2px solid var(--burgundy);
  box-shadow: 0 8px 32px rgba(146, 29, 76, 0.12);
}

.plan-card--popular:hover {
  box-shadow: 0 16px 48px rgba(146, 29, 76, 0.18);
}

.plan-card__popular-ribbon {
  position: absolute;
  top: -1px;
  left: 50%;
  transform: translateX(-50%);
  padding: 6px 24px;
  background: var(--burgundy);
  color: var(--white);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  border-radius: 0 0 12px 12px;
}

.plan-card--popular .plan-card__header {
  padding-top: 40px;
}

@media (min-width: 768px) {
  .plans {
    max-width: 1200px;
    padding: 96px 32px;
  }

  .plans__header {
    max-width: 900px;
  }

  .plans-overview {
    max-width: 900px;
  }
}

@media (min-width: 1024px) {
  .plans__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    width: 100%;
  }

  .plans__grid .plan-card {
    margin-bottom: 0;
  }
}