/* ── Color Variables ─────────────────────────────────────── */
/* THEME: Open Sky — swap these 18 values to change the entire site */
:root {
  /* Backgrounds */
  --cream:        #ffffff;
  --cream-dark:   #eef4fb;
  --cream-mid:    #f5f9fe;

  /* Primary brand blue (was navy) */
  --navy:         #0f1f33;
  --navy-light:   #1a3a6b;
  --navy-mid:     #2a6bb5;

  /* Accent (was orange — now sky blue, gold kept as secondary) */
  --orange:       #2a6bb5;
  --orange-hover: #1d5599;

  /* Sky tones */
  --sky:          #2a6bb5;
  --sky-light:    #eef4fb;

  /* Text */
  --text-dark:    #0f1f33;
  --text-mid:     #4a6a8a;
  --text-light:   #ffffff;

  /* Borders & accents */
  --border:       #d0e2f4;
  --gold:         #c9a84c;
  --success:      #3a9e6a;
}

/* ── Reset & Base ────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  background: var(--cream);
  color: var(--text-dark);
  line-height: 1.6;
  font-size: 16px;
}

img { max-width: 100%; display: block; }
a  { text-decoration: none; color: inherit; }

/* ── Typography ──────────────────────────────────────────── */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400;1,600&family=Inter:wght@400;500;600;700&display=swap');

h1, h2, h3 {
  font-family: 'Playfair Display', Georgia, serif;
  line-height: 1.2;
  color: var(--text-dark);
}

h1 { font-size: clamp(2.4rem, 5vw, 3.8rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.6rem); }

/* ── Utilities ───────────────────────────────────────────── */
.container { max-width: 1100px; margin: 0 auto; padding: 0 24px; }
.text-center { text-align: center; }
.section { padding: 96px 0; }
.section-sm { padding: 64px 0; }

.tag {
  display: inline-block;
  background: var(--sky-light);
  color: var(--sky);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 20px;
  margin-bottom: 16px;
}

.tag-orange {
  background: #fef3eb;
  color: var(--orange);
}

/* ── Buttons ─────────────────────────────────────────────── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--orange);
  color: var(--text-light);
  font-weight: 700;
  font-size: 15px;
  padding: 14px 28px;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s;
  letter-spacing: 0.3px;
}
.btn-primary:hover { background: var(--orange-hover); transform: translateY(-1px); }

.btn-navy {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--navy);
  color: var(--text-light);
  font-weight: 700;
  font-size: 15px;
  padding: 14px 28px;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s;
}
.btn-navy:hover { background: var(--navy-light); transform: translateY(-1px); }

.btn-ghost {
  display: inline-flex;
  align-items: center;
  background: transparent;
  color: white;
  font-weight: 600;
  font-size: 15px;
  padding: 12px 20px;
  border-radius: 50px;
  border: 2px solid rgba(255,255,255,0.35);
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s;
}
.btn-ghost:hover { border-color: white; background: rgba(255,255,255,0.1); }

.btn-ghost-light {
  display: inline-flex;
  align-items: center;
  background: transparent;
  color: var(--text-light);
  font-weight: 600;
  font-size: 15px;
  padding: 12px 24px;
  border-radius: 50px;
  border: 2px solid rgba(255,255,255,0.5);
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s;
}
.btn-ghost-light:hover { border-color: #fff; background: rgba(255,255,255,0.1); }

.btn-large { padding: 18px 40px; font-size: 17px; }

/* ── Navigation ──────────────────────────────────────────── */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--navy);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
  height: 68px;
  display: flex;
  align-items: center;
  gap: 40px;
}

.nav-logo img {
  height: 42px;
  width: auto;
  display: block;
}

.nav-logo {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  font-weight: 700;
  color: white;
  display: flex;
  align-items: center;
  gap: 10px;
  white-space: nowrap;
  text-decoration: none;
}

.nav-logo-icon {
  width: 32px;
  height: 32px;
  background: var(--orange);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  color: white;
  flex-shrink: 0;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  flex: 1;
}

.nav-links a {
  font-size: 15px;
  font-weight: 500;
  color: rgba(255,255,255,0.75);
  padding: 8px 14px;
  border-radius: 8px;
  transition: color 0.2s, background 0.2s;
}
.nav-links a:hover,
.nav-links a.active { color: white; background: rgba(255,255,255,0.1); }

.nav-links .nav-gift { color: var(--orange); }
.nav-links .nav-gift:hover { background: rgba(224,115,40,0.15); color: #f0944a; }

.nav-actions { display: flex; align-items: center; gap: 10px; margin-left: auto; }

.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 8px; }
.hamburger span { display: block; width: 22px; height: 2px; background: white; border-radius: 2px; }

/* ── Hero Section ────────────────────────────────────────── */
.hero {
  background: var(--cream);
  padding: 80px 0 60px;
  overflow: hidden;
}

.hero-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.hero-content { max-width: 520px; }

.hero-eyebrow {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.hero-eyebrow::before {
  content: '';
  display: block;
  width: 28px;
  height: 2px;
  background: var(--orange);
}

.hero h1 {
  margin-bottom: 20px;
}

.hero h1 em {
  font-style: italic;
  color: var(--navy);
}

.hero-sub {
  font-size: 18px;
  color: var(--text-mid);
  line-height: 1.7;
  margin-bottom: 36px;
  max-width: 440px;
}

.hero-cta { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; margin-bottom: 44px; }

.hero-social-proof {
  display: flex;
  align-items: center;
  gap: 16px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
}

.hero-stars { display: flex; gap: 3px; }
.hero-stars span { color: var(--gold); font-size: 16px; }

.hero-proof-text { font-size: 13px; color: var(--text-mid); line-height: 1.4; }
.hero-proof-text strong { color: var(--text-dark); }

/* ── Hero Splash Image ───────────────────────────────────── */
.hero-visual { display: flex; justify-content: center; align-items: center; position: relative; }

.splash-wrap {
  position: relative;
  width: 300px;
  flex-shrink: 0;
}

.splash-img {
  width: 100%;
  border-radius: 24px;
  box-shadow: 0 40px 80px rgba(13,35,71,0.35), 0 0 0 1px rgba(255,255,255,0.08);
  display: block;
}

/* floating badges */
.phone-badge {
  position: absolute;
  top: 32px;
  right: -44px;
  background: white;
  border-radius: 14px;
  padding: 12px 16px;
  box-shadow: 0 8px 24px rgba(13,35,71,0.15);
  font-size: 12px;
  font-weight: 600;
  color: var(--text-dark);
  display: flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
}

.phone-badge-2 {
  position: absolute;
  bottom: 48px;
  left: -54px;
  background: var(--navy);
  color: white;
  border-radius: 14px;
  padding: 12px 16px;
  box-shadow: 0 8px 24px rgba(13,35,71,0.25);
  font-size: 12px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
}

/* ── Features Grid ───────────────────────────────────────── */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.feature-card {
  background: white;
  border-radius: 20px;
  padding: 36px 28px;
  border: 1px solid var(--border);
  transition: box-shadow 0.2s, transform 0.2s;
}
.feature-card:hover { box-shadow: 0 12px 40px rgba(13,35,71,0.1); transform: translateY(-3px); }

.feature-icon {
  width: 56px; height: 56px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin-bottom: 20px;
}
.icon-navy  { background: rgba(13,35,71,0.08); }
.icon-orange { background: #fef3eb; }
.icon-sky   { background: var(--sky-light); }
.icon-green { background: #eaf7f0; }

.feature-card h3 { margin-bottom: 10px; font-size: 1.15rem; }
.feature-card p  { color: var(--text-mid); font-size: 14px; line-height: 1.7; }

/* ── Navy Band ───────────────────────────────────────────── */
.band-navy {
  background: var(--navy);
  color: white;
}

.band-navy h2 { color: white; }
.band-navy p  { color: rgba(255,255,255,0.75); }

/* ── How It Works ────────────────────────────────────────── */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  position: relative;
}

.steps-grid::before {
  content: '';
  position: absolute;
  top: 36px;
  left: calc(16.66% + 20px);
  right: calc(16.66% + 20px);
  height: 2px;
  background: rgba(255,255,255,0.15);
}

.step { text-align: center; }

.step-num {
  width: 72px; height: 72px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  border: 2px solid rgba(255,255,255,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Playfair Display', serif;
  font-size: 24px;
  font-weight: 700;
  color: white;
  margin: 0 auto 20px;
  position: relative;
  z-index: 1;
}
.step-num.active {
  background: var(--orange);
  border-color: var(--orange);
}

.step h3 { color: white; font-size: 1.1rem; margin-bottom: 10px; }
.step p   { color: rgba(255,255,255,0.65); font-size: 14px; line-height: 1.7; }

/* ── Testimonials ────────────────────────────────────────── */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.testimonial-card {
  background: white;
  border-radius: 20px;
  padding: 28px;
  border: 1px solid var(--border);
}

.testimonial-stars { display: flex; gap: 3px; margin-bottom: 16px; }
.testimonial-stars span { color: var(--gold); font-size: 14px; }

.testimonial-card p {
  color: var(--text-mid);
  font-size: 14px;
  line-height: 1.8;
  margin-bottom: 20px;
  font-style: italic;
}

.testimonial-author { display: flex; align-items: center; gap: 12px; }
.testimonial-avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  overflow: hidden;
  background: var(--cream-dark);
  flex-shrink: 0;
}
.testimonial-avatar img { width: 100%; height: 100%; object-fit: cover; }
.testimonial-name { font-weight: 700; font-size: 14px; margin-bottom: 2px; }
.testimonial-role { font-size: 12px; color: var(--text-mid); }

/* ── Gift Teaser / Gift Page ─────────────────────────────── */
.gift-teaser {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
  border-radius: 28px;
  padding: 64px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  overflow: hidden;
  position: relative;
}

.gift-teaser::before {
  content: '';
  position: absolute;
  top: -60px; right: -60px;
  width: 240px; height: 240px;
  background: radial-gradient(circle, rgba(224,115,40,0.2), transparent 70%);
}

.gift-teaser h2 { color: white; margin-bottom: 14px; }
.gift-teaser p  { color: rgba(255,255,255,0.75); margin-bottom: 28px; line-height: 1.7; }

.gift-card-visual {
  background: linear-gradient(135deg, #1e4a8a, #0d2347);
  border-radius: 20px;
  padding: 28px;
  box-shadow: 0 24px 48px rgba(0,0,0,0.3);
  border: 1px solid rgba(255,255,255,0.1);
  position: relative;
  overflow: hidden;
}

.gift-card-visual::before {
  content: '';
  position: absolute;
  top: -30px; right: -30px;
  width: 160px; height: 160px;
  background: radial-gradient(circle, rgba(74,144,217,0.3), transparent 60%);
}

.gift-card-logo {
  font-family: 'Playfair Display', serif;
  color: white;
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 24px;
  opacity: 0.9;
}

.gift-card-plan {
  font-size: 28px;
  font-weight: 800;
  color: var(--orange);
  margin-bottom: 6px;
  font-family: 'Playfair Display', serif;
}

.gift-card-duration { color: rgba(255,255,255,0.6); font-size: 13px; margin-bottom: 28px; }

.gift-card-msg {
  background: rgba(255,255,255,0.07);
  border-radius: 10px;
  padding: 14px;
  font-size: 13px;
  color: rgba(255,255,255,0.8);
  font-style: italic;
  line-height: 1.6;
  border-left: 3px solid var(--orange);
}

/* ── Gift Page Specific ──────────────────────────────────── */
.gift-hero {
  background: linear-gradient(160deg, var(--navy) 0%, #1a3a6b 100%);
  padding: 100px 0 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.gift-hero::before {
  content: '';
  position: absolute;
  top: -100px; left: 50%;
  transform: translateX(-50%);
  width: 600px; height: 400px;
  background: radial-gradient(ellipse, rgba(224,115,40,0.2), transparent 70%);
}

.gift-hero h1 { color: white; margin-bottom: 18px; position: relative; }
.gift-hero p  { color: rgba(255,255,255,0.75); font-size: 18px; max-width: 520px; margin: 0 auto 36px; line-height: 1.7; position: relative; }

.gift-options-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 40px;
}

.gift-option-card {
  background: white;
  border-radius: 20px;
  padding: 32px 24px;
  border: 2px solid var(--border);
  text-align: center;
  cursor: pointer;
  transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s;
  position: relative;
}
.gift-option-card:hover,
.gift-option-card.selected {
  border-color: var(--orange);
  box-shadow: 0 8px 32px rgba(224,115,40,0.15);
  transform: translateY(-2px);
}

.gift-option-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--orange);
  color: white;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  padding: 4px 14px;
  border-radius: 20px;
  white-space: nowrap;
}

.gift-option-duration {
  font-family: 'Playfair Display', serif;
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 4px;
}

.gift-option-label { color: var(--text-mid); font-size: 14px; margin-bottom: 20px; }
.gift-option-price { font-size: 1.6rem; font-weight: 800; color: var(--orange); margin-bottom: 6px; }
.gift-option-per   { font-size: 12px; color: var(--text-mid); }

.gift-form-section { background: white; border-radius: 24px; padding: 48px; border: 1px solid var(--border); }

.form-group { margin-bottom: 20px; }
.form-group label { display: block; font-weight: 600; font-size: 14px; margin-bottom: 8px; color: var(--text-dark); }
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 14px 16px;
  border: 1.5px solid var(--border);
  border-radius: 12px;
  font-size: 15px;
  font-family: inherit;
  color: var(--text-dark);
  background: var(--cream);
  outline: none;
  transition: border-color 0.2s;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus { border-color: var(--navy); background: white; }
.form-group textarea { resize: vertical; min-height: 100px; line-height: 1.6; }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

.gift-plans-select {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 8px;
}

.gift-plan-btn {
  padding: 12px;
  border-radius: 10px;
  border: 2px solid var(--border);
  background: var(--cream);
  cursor: pointer;
  text-align: center;
  transition: all 0.2s;
}
.gift-plan-btn:hover,
.gift-plan-btn.active { border-color: var(--navy); background: white; }
.gift-plan-btn .plan-name { font-weight: 700; font-size: 14px; color: var(--navy); }
.gift-plan-btn .plan-price { font-size: 12px; color: var(--text-mid); margin-top: 2px; }

.gift-delivery-options {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 8px;
}

.delivery-opt {
  padding: 16px;
  border-radius: 12px;
  border: 2px solid var(--border);
  background: var(--cream);
  cursor: pointer;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  transition: all 0.2s;
}
.delivery-opt:hover,
.delivery-opt.active { border-color: var(--navy); background: white; }
.delivery-opt-icon { font-size: 22px; }
.delivery-opt-label { font-weight: 700; font-size: 14px; margin-bottom: 2px; }
.delivery-opt-desc  { font-size: 12px; color: var(--text-mid); }

.gift-perfect-for { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.perfect-item {
  background: white;
  border-radius: 16px;
  padding: 24px 16px;
  text-align: center;
  border: 1px solid var(--border);
}
.perfect-icon { font-size: 32px; margin-bottom: 10px; }
.perfect-label { font-weight: 600; font-size: 14px; color: var(--text-dark); }

/* ── Pricing Page ────────────────────────────────────────── */
.pricing-hero {
  background: var(--cream);
  padding: 80px 0 60px;
  text-align: center;
}

.pricing-toggle {
  display: inline-flex;
  background: white;
  border: 1px solid var(--border);
  border-radius: 50px;
  padding: 4px;
  margin: 28px auto 0;
  gap: 0;
}

.toggle-btn {
  padding: 10px 24px;
  border-radius: 50px;
  border: none;
  background: transparent;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  color: var(--text-mid);
  transition: all 0.2s;
}
.toggle-btn.active {
  background: var(--navy);
  color: white;
}

.save-badge {
  display: inline-block;
  background: #eaf7f0;
  color: var(--success);
  font-size: 12px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 20px;
  margin-left: 8px;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  align-items: start;
}

.pricing-card {
  background: white;
  border-radius: 20px;
  padding: 28px 24px;
  border: 1px solid var(--border);
  transition: box-shadow 0.2s;
}
.pricing-card:hover { box-shadow: 0 12px 40px rgba(13,35,71,0.1); }

.pricing-card.featured {
  background: var(--navy);
  border-color: var(--navy);
  position: relative;
}

.pricing-card .plan-name { font-size: 13px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; color: var(--text-mid); margin-bottom: 12px; }
.pricing-card.featured .plan-name { color: rgba(255,255,255,0.6); }

.pricing-card .plan-price { font-family: 'Playfair Display', serif; font-size: 2.4rem; font-weight: 700; color: var(--text-dark); line-height: 1; }
.pricing-card.featured .plan-price { color: white; }
.pricing-card .plan-price span { font-size: 14px; font-weight: 400; color: var(--text-mid); }
.pricing-card.featured .plan-price span { color: rgba(255,255,255,0.6); }

.pricing-card .plan-desc { font-size: 13px; color: var(--text-mid); margin: 10px 0 24px; line-height: 1.5; }
.pricing-card.featured .plan-desc { color: rgba(255,255,255,0.65); }

.pricing-divider { height: 1px; background: var(--border); margin-bottom: 24px; }
.pricing-card.featured .pricing-divider { background: rgba(255,255,255,0.1); }

.pricing-features { list-style: none; display: flex; flex-direction: column; gap: 10px; margin-bottom: 28px; }
.pricing-features li { display: flex; align-items: flex-start; gap: 10px; font-size: 13px; color: var(--text-mid); }
.pricing-card.featured .pricing-features li { color: rgba(255,255,255,0.75); }
.pricing-features li::before { content: '✓'; color: var(--success); font-weight: 700; flex-shrink: 0; margin-top: 1px; }
.pricing-card.featured .pricing-features li::before { color: var(--orange); }

.plan-badge {
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--orange);
  color: white;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  padding: 5px 16px;
  border-radius: 20px;
  white-space: nowrap;
}

/* ── Features Page ───────────────────────────────────────── */
.features-hero {
  background: linear-gradient(160deg, var(--cream) 60%, var(--cream-dark) 100%);
  padding: 80px 0 60px;
  text-align: center;
}

.features-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  padding: 80px 0;
}
.features-row:nth-child(even) { direction: rtl; }
.features-row:nth-child(even) > * { direction: ltr; }

.feature-text h2 { margin-bottom: 16px; }
.feature-text p  { color: var(--text-mid); line-height: 1.8; margin-bottom: 20px; }

.feature-bullets { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.feature-bullets li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 15px;
  color: var(--text-mid);
}
.bullet-dot {
  width: 22px; height: 22px;
  background: var(--sky-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  color: var(--sky);
  flex-shrink: 0;
  margin-top: 2px;
}

.feature-visual {
  background: var(--cream-dark);
  border-radius: 24px;
  padding: 32px;
  min-height: 320px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.feature-visual-navy { background: var(--navy); }

.feature-img {
  width: 100%;
  height: 280px;
  border-radius: 16px;
  object-fit: cover;
}

/* ── Footer ──────────────────────────────────────────────── */
.footer {
  background: var(--navy);
  color: white;
  padding: 64px 0 32px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  margin-bottom: 32px;
}

.footer-brand p { color: rgba(255,255,255,0.6); font-size: 14px; line-height: 1.7; margin: 14px 0 24px; max-width: 280px; }
.footer-logo { font-family: 'Playfair Display', serif; font-size: 20px; font-weight: 700; display: flex; align-items: center; gap: 10px; }
.footer-logo-icon { width: 32px; height: 32px; background: var(--orange); border-radius: 8px; display: flex; align-items: center; justify-content: center; font-size: 16px; }

.footer-col h4 { font-size: 13px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; color: rgba(255,255,255,0.4); margin-bottom: 18px; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col ul li a { color: rgba(255,255,255,0.7); font-size: 14px; transition: color 0.2s; }
.footer-col ul li a:hover { color: white; }

.footer-bottom { display: flex; justify-content: space-between; align-items: center; font-size: 13px; color: rgba(255,255,255,0.4); flex-wrap: wrap; gap: 12px; }
.footer-bottom a { color: rgba(255,255,255,0.4); }
.footer-bottom a:hover { color: rgba(255,255,255,0.7); }

.app-badges { display: flex; gap: 12px; }
.app-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 10px;
  padding: 8px 14px;
  font-size: 13px;
  color: white;
  transition: background 0.2s;
}
.app-badge:hover { background: rgba(255,255,255,0.14); }
.app-badge-icon { font-size: 18px; }

/* ── CTA Band ────────────────────────────────────────────── */
.cta-band {
  background: var(--orange);
  padding: 80px 0;
  text-align: center;
}
.cta-band h2 { color: white; margin-bottom: 12px; }
.cta-band p  { color: rgba(255,255,255,0.85); font-size: 17px; margin-bottom: 36px; }

/* ── Stats Row ───────────────────────────────────────────── */
.stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 20px;
  overflow: hidden;
}
.stat-item {
  background: white;
  padding: 32px 24px;
  text-align: center;
}
.stat-value { font-family: 'Playfair Display', serif; font-size: 2.4rem; font-weight: 700; color: var(--navy); margin-bottom: 4px; }
.stat-label { font-size: 13px; color: var(--text-mid); }

/* ── Mobile ──────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .pricing-grid { grid-template-columns: repeat(2, 1fr); }
  .gift-perfect-for { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-visual { display: none; }
  .features-grid { grid-template-columns: 1fr; }
  .steps-grid { grid-template-columns: 1fr; }
  .steps-grid::before { display: none; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .gift-teaser { grid-template-columns: 1fr; padding: 40px 28px; }
  .pricing-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .features-row { grid-template-columns: 1fr; gap: 32px; }
  .features-row:nth-child(even) { direction: ltr; }
  .gift-options-grid { grid-template-columns: 1fr; }
  .gift-perfect-for { grid-template-columns: repeat(2, 1fr); }
  .form-row { grid-template-columns: 1fr; }
  .gift-plans-select { grid-template-columns: 1fr; }
  .gift-delivery-options { grid-template-columns: 1fr; }
  .stats-row { grid-template-columns: repeat(2, 1fr); }
  .nav-links { display: none; }
  .hamburger { display: flex; }
}

@media (max-width: 480px) {
  .section { padding: 60px 0; }
  .footer-grid { grid-template-columns: 1fr; }
  .gift-perfect-for { grid-template-columns: repeat(2, 1fr); }
  .stats-row { grid-template-columns: 1fr 1fr; }
}
