/* =====================================================
   HONEYMOONERS LANDING PAGE — STYLES
   ===================================================== */

/* ---------- CSS Variables ---------- */
:root {
  --rose:          #C77D9A;
  --rose-light:    #E8B4CC;
  --rose-dark:     #9B5E78;
  --sage:          #7BA68E;
  --sage-light:    #A3C5B1;
  --sage-dark:     #5B8A70;
  --champagne:     #F2D4BC;
  --champagne-light: #FBF0E4;
  --champagne-dark:  #D4B89A;
  --bg:            #FDF8F5;
  --surface:       #FFFFFF;
  --text-primary:  #2C1B24;
  --text-secondary:#6B5260;
  --text-muted:    #9E8494;
  --border:        #EDE0E8;
  --shadow-sm:     0 2px 8px rgba(199,125,154,0.10);
  --shadow-md:     0 8px 24px rgba(199,125,154,0.14);
  --shadow-lg:     0 16px 48px rgba(199,125,154,0.18);
  --radius-sm:     8px;
  --radius-md:     16px;
  --radius-lg:     24px;
  --radius-xl:     32px;
  --font-body:     'Inter', system-ui, sans-serif;
  --font-script: 'Playfair Display', serif;
  --transition:    0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --max-w:         1200px;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
  overflow-wrap: break-word;
  word-break: break-word;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { border: none; background: none; cursor: pointer; font: inherit; }

/* ---------- Typography Utilities ---------- */
.script {
  font-family: var(--font-script), serif;
  font-weight: 400;
  font-style: italic;
  color: var(--rose);
}

/* ---------- Layout ---------- */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
}
.section { padding: 96px 0; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 28px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1rem;
  transition: all var(--transition);
  cursor: pointer;
  white-space: nowrap;
}
.btn-primary {
  background: linear-gradient(135deg, var(--rose), var(--rose-dark));
  color: #fff;
  box-shadow: 0 4px 16px rgba(199,125,154,0.35);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(199,125,154,0.45);
}
.btn-outline {
  background: transparent;
  color: var(--rose);
  border: 2px solid var(--rose-light);
}
.btn-outline:hover {
  background: var(--rose-light);
  color: var(--rose-dark);
  transform: translateY(-2px);
}
.btn-ghost {
  background: rgba(255,255,255,0.18);
  color: var(--text-primary);
  backdrop-filter: blur(8px);
  border: 1.5px solid rgba(255,255,255,0.35);
}
.btn-ghost:hover { background: rgba(255,255,255,0.32); transform: translateY(-2px); }
.btn-lg { padding: 16px 36px; font-size: 1.05rem; }
.btn-full { width: 100%; justify-content: center; }
.play-icon { font-size: 0.75rem; }

/* ---------- Disabled Store Button ---------- */
.store-btn.disabled {
  background: #d1d1d1;
  color: #888888;
  pointer-events: none;
  user-select: none;
  box-shadow: none;
  transform: none !important;
  cursor: not-allowed;
}

.store-btn.disabled .store-icon-wrap {
  opacity: 0.5;
  filter: grayscale(1);
}

.store-btn.disabled .store-sub,
.store-btn.disabled .store-name {
  color: #6e6b6b;
}

/* ---------- Section Header ---------- */
.section-header { text-align: center; margin-bottom: 64px; }
.section-tag {
  display: inline-block;
  background: linear-gradient(135deg, var(--champagne-light), var(--champagne));
  color: var(--rose-dark);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 50px;
  margin-bottom: 16px;
}
.section-title {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 800;
  color: var(--text-primary);
  line-height: 1.2;
  margin-bottom: 16px;
}
.section-subtitle {
  font-size: 1.05rem;
  color: var(--text-secondary);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.7;
}

/* =====================================================
   NAVBAR
   ===================================================== */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 16px 0;
  transition: all var(--transition);
}
.navbar.scrolled {
  background: rgba(253,248,245,0.95);
  backdrop-filter: blur(12px);
  box-shadow: 0 2px 20px rgba(199,125,154,0.12);
  padding: 10px 0;
}
.nav-inner {
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav-right-wrap {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-left: auto;
}

.nav-actions {
  display: flex;
  align-items: center;
  margin-left: 0;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.logo-img {
  width: 44px;
  height: 44px;
  object-fit: contain;
}
.logo-text {
  font-family: var(--font-script), serif;
  font-size: 1.5rem;
  font-style: italic;
  font-weight: 600;
  color: var(--rose);
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  margin-left: auto;
}
.nav-links .btn-primary {
  color: white !important;
  background-color: var(--rose);
}
/* ---------- Language Toggle ---------- */
.lang-toggle {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 6px 14px;
  border-radius: 50px;
  border: 1.5px solid var(--border);
  background: transparent;
  cursor: pointer;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--text-muted);
  transition: all var(--transition);
  flex-shrink: 0;
  letter-spacing: 0.04em;
}
.lang-toggle:hover {
  border-color: var(--rose-light);
}
.lang-sep { color: var(--border); }
.lang-opt { transition: color var(--transition); }
.lang-opt.active { color: var(--rose); }

.nav-links a {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-secondary);
  transition: color var(--transition);
}
.nav-links a:hover { color: var(--rose); }
.nav-actions {
  display: flex;
  align-items: center;
  margin-left: 24px;
}
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  width: 30px;
  height: 30px;
  padding: 4px;
  cursor: pointer;
  z-index: 1001;
}

.hamburger span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: all var(--transition);
  transform-origin: center;
}

.hamburger.active span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
  transform: scale(0);
}

.hamburger.active span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}


/* =====================================================
   HERO
   ===================================================== */
.hero {
  position: relative;
  padding: 160px 0 80px;
  overflow: hidden;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.hero-bg-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(145deg, #FDF0F5 0%, #FBF0E4 40%, #EDF5F0 80%, #FDF8F5 100%);
  z-index: 0;
}
.hero-particles {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
  z-index: 1;
}
.particle {
  position: absolute;
  font-size: 1.4rem;
  opacity: 0.18;
  animation: floatParticle linear infinite;
}
.particle:nth-child(1) { left: 8%; top: 20%; animation-duration: 14s; animation-delay: 0s; }
.particle:nth-child(2) { left: 22%; top: 75%; animation-duration: 18s; animation-delay: 2s; }
.particle:nth-child(3) { left: 55%; top: 10%; animation-duration: 16s; animation-delay: 4s; }
.particle:nth-child(4) { left: 72%; top: 60%; animation-duration: 20s; animation-delay: 1s; }
.particle:nth-child(5) { left: 88%; top: 30%; animation-duration: 13s; animation-delay: 3s; }
.particle:nth-child(6) { left: 40%; top: 85%; animation-duration: 17s; animation-delay: 5s; }

@keyframes floatParticle {
  0%   { transform: translateY(0) rotate(0deg); opacity: 0.18; }
  50%  { opacity: 0.3; }
  100% { transform: translateY(-80px) rotate(20deg); opacity: 0; }
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  position: relative;
  z-index: 2;
}
.hero-content { max-width: 560px; }
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.8);
  backdrop-filter: blur(8px);
  border: 1px solid var(--rose-light);
  color: var(--rose-dark);
  font-size: 0.85rem;
  font-weight: 600;
  padding: 8px 16px;
  border-radius: 50px;
  margin-bottom: 24px;
}
.badge-dot {
  width: 8px; height: 8px;
  background: var(--rose);
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.4); opacity: 0.6; }
}
.hero-title {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 20px;
  color: var(--text-primary);
}
.hero-title .script { font-size: 1.15em; }
.hero-subtitle {
  font-size: 1.1rem;
  color: var(--text-secondary);
  line-height: 1.75;
  margin-bottom: 36px;
}
.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}
.hero-stats {
  display: flex;
  align-items: center;
  gap: 24px;
}
.stat { text-align: center; }
.stat-number {
  display: block;
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--rose-dark);
}
.stat-label {
  font-size: 0.78rem;
  color: var(--text-muted);
  font-weight: 500;
  letter-spacing: 0.04em;
}
.stat-divider {
  width: 1px;
  height: 32px;
  background: var(--border);
}

/* -- Phone mockup -- */
.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}
.phone-glow {
  position: absolute;
  width: 340px; height: 340px;
  background: radial-gradient(circle, rgba(199,125,154,0.25) 0%, transparent 70%);
  border-radius: 50%;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}
.phone-mockup {
  position: relative;
  animation: floatPhone 6s ease-in-out infinite;
}
@keyframes floatPhone {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-16px); }
}
.phone-frame {
  width: 280px;
  background: #1C1719;
  border-radius: 44px;
  padding: 12px;
  box-shadow:
    0 0 0 2px #3A2B32,
    0 32px 64px rgba(0,0,0,0.35),
    inset 0 1px 0 rgba(255,255,255,0.06);
}
.phone-notch {
  width: 90px;
  height: 26px;
  background: #1C1719;
  border-radius: 0 0 16px 16px;
  margin: 0 auto 8px;
}
.phone-screen {
  background: #251F22;
  border-radius: 32px;
  overflow: hidden;
  min-height: 480px;
  padding: 0 0 16px;
}
.app-header-bar {
  background: linear-gradient(135deg, var(--rose-light), var(--champagne));
  padding: 16px 16px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-radius: 0 0 20px 20px;
}
.app-title-script {
  font-family: var(--font-script);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--rose-dark);
}
.app-settings-icon { font-size: 1rem; color: var(--rose-dark); opacity: 0.7; }
.app-countdown-widget {
  margin: 16px 12px;
  background: rgba(199,125,154,0.12);
  border: 1px solid rgba(199,125,154,0.2);
  border-radius: 16px;
  padding: 14px 12px;
}
.countdown-label {
  font-size: 0.65rem;
  color: var(--rose-light);
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-align: center;
  margin-bottom: 10px;
}
.countdown-row {
  display: flex;
  justify-content: space-around;
  gap: 4px;
}
.cdown-unit { text-align: center; }
.cdown-num {
  display: block;
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--rose-light);
  line-height: 1;
}
.cdown-sub {
  font-size: 0.55rem;
  color: var(--text-muted);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.app-quick-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin: 0 12px 12px;
}
.quick-item {
  border-radius: 12px;
  padding: 12px 8px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  cursor: pointer;
  transition: transform 0.2s;
}
.quick-item.rose { background: rgba(199,125,154,0.14); }
.quick-item.sage { background: rgba(123,166,142,0.14); }
.quick-item.champagne { background: rgba(242,212,188,0.2); }
.quick-emoji { font-size: 1.2rem; }
.quick-label { font-size: 0.6rem; color: var(--text-muted); font-weight: 600; }
.app-progress-bar {
  margin: 0 12px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.app-progress-label { font-size: 0.6rem; color: var(--text-muted); white-space: nowrap; }
.progress-track {
  flex: 1;
  height: 6px;
  background: rgba(255,255,255,0.08);
  border-radius: 10px;
  overflow: hidden;
}
.progress-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--rose), var(--champagne-dark));
  border-radius: 10px;
  animation: progressAnim 2s ease-out 1s both;
}
@keyframes progressAnim {
  from { width: 0 !important; }
}
.app-progress-pct { font-size: 0.6rem; color: var(--rose-light); font-weight: 700; }

/* Floating cards */
.float-card {
  position: absolute;
  background: white;
  border-radius: 12px;
  padding: 10px 14px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--text-primary);
  box-shadow: 0 8px 24px rgba(0,0,0,0.12);
  white-space: nowrap;
  animation: floatPhone 6s ease-in-out infinite;
}
.float-card-1 { bottom: 20%; right: -20px; animation-delay: 1s; }
.float-card-2 { top: 25%; left: -30px; animation-delay: 2.5s; }

/* Hero wave */
.hero-wave {
  position: absolute;
  bottom: -2px; left: 0; right: 0;
  z-index: 2;
  line-height: 0;
}
.hero-wave svg { width: 100%; height: auto; display: block; }

/* Fade-in animations */
.fade-in-up {
  animation: fadeInUp 0.8s ease-out 0.2s both;
}
.fade-in-right {
  animation: fadeInRight 0.9s ease-out 0.4s both;
}
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeInRight {
  from { opacity: 0; transform: translateX(30px); }
  to { opacity: 1; transform: translateX(0); }
}

/* =====================================================
   TRUST BAR
   ===================================================== */
.trust-bar {
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 20px 0;
}
.trust-inner {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
  justify-content: center;
}
.trust-label {
  font-size: 0.82rem;
  color: var(--text-muted);
  font-weight: 500;
  white-space: nowrap;
}
.trust-logos {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
}
.trust-city {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-secondary);
}
.trust-dot { color: var(--rose-light); }

/* =====================================================
   FEATURES
   ===================================================== */
.features { background: var(--bg); }
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.feature-card {
  background: var(--surface);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  border: 1px solid var(--border);
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}
.feature-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--rose-light), var(--champagne));
  opacity: 0;
  transition: opacity var(--transition);
}
.feature-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--rose-light);
}
.feature-card:hover::before { opacity: 1; }
.feature-icon-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 12px;
  overflow: hidden;
}
.feature-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--text-primary);
}
.feature-card p {
  font-size: 0.93rem;
  color: var(--text-secondary);
  line-height: 1.65;
}

/* =====================================================
   HOW IT WORKS
   ===================================================== */
.how-it-works {
  position: relative;
  background: var(--surface);
}
.hiw-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, var(--bg) 0%, var(--surface) 30%, var(--surface) 70%, var(--bg) 100%);
}
.how-it-works .container { position: relative; z-index: 1; }
.steps-wrapper {
  display: flex;
  align-items: flex-start;
  gap: 0;
  justify-content: center;
}
.step {
  flex: 1;
  max-width: 300px;
  text-align: center;
  padding: 0 24px;
}
.step-num {
  font-size: 3.5rem;
  font-weight: 800;
  color: var(--rose-light);
  opacity: 0.35;
  line-height: 1;
  margin-bottom: 20px;
  font-variant-numeric: tabular-nums;
}
.step-icon {
  font-size: 2rem;
  margin-bottom: 16px;
  display: block;
}
.step-body h3 {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--text-primary);
}
.step-body p {
  font-size: 0.93rem;
  color: var(--text-secondary);
  line-height: 1.65;
}
.step-arrow {
  font-size: 1.8rem;
  color: var(--rose-light);
  padding-top: 60px;
  flex-shrink: 0;
  opacity: 0.5;
}

/* =====================================================
   APP PREVIEW
   ===================================================== */
.app-preview { background: var(--bg); }
.preview-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

/* Preview phones */
.preview-phones {
  position: relative;
  height: 500px;
  display: flex;
  justify-content: center;
}
.preview-phone { position: absolute; }
.preview-phone-back {
  left: 0;
  top: 40px;
  transform: rotate(-5deg);
  z-index: 1;
}
.preview-phone-front {
  right: 0;
  top: 0;
  transform: rotate(3deg);
  z-index: 2;
  animation: floatPhone 7s ease-in-out infinite;
}
.small-phone {
  width: 200px;
  background: #1C1719;
  border-radius: 32px;
  padding: 10px;
  box-shadow: 0 0 0 2px #3A2B32, 0 20px 40px rgba(0,0,0,0.3);
}
.medium-phone {
  width: 220px;
  background: #1C1719;
  border-radius: 36px;
  padding: 10px;
  box-shadow: 0 0 0 2px #3A2B32, 0 24px 48px rgba(0,0,0,0.35);
}
.small-phone .phone-screen,
.medium-phone .phone-screen {
  background: #251F22;
  border-radius: 24px;
  overflow: hidden;
  min-height: 360px;
  padding: 16px 12px;
}
.mini-heading {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--rose-light);
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.guest-row {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 7px 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.guest-avatar {
  width: 24px; height: 24px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.65rem;
  font-weight: 700;
  color: var(--rose-dark);
  flex-shrink: 0;
}
.guest-name { font-size: 0.67rem; color: var(--text-muted); flex: 1; }
.rsvp {
  font-size: 0.65rem;
  font-weight: 700;
  width: 18px; height: 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.rsvp-yes { background: rgba(105,169,122,0.2); color: #69A97A; }
.rsvp-pending { background: rgba(222,168,76,0.2); color: #DEA84C; }
.mini-footer-stat {
  font-size: 0.62rem;
  color: var(--text-muted);
  margin-top: 10px;
  text-align: center;
  padding: 6px;
  background: rgba(255,255,255,0.04);
  border-radius: 8px;
}
.budget-total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 14px;
  font-size: 0.68rem;
  color: var(--text-muted);
}
.budget-amount { font-size: 1rem; font-weight: 800; color: var(--sage-light); }
.budget-bars { display: flex; flex-direction: column; gap: 10px; }
.bbar-row { display: flex; align-items: center; gap: 6px; }
.bbar-row > span:first-child { font-size: 0.6rem; color: var(--text-muted); width: 44px; flex-shrink: 0; }
.bbar-row > span:last-child { font-size: 0.6rem; color: var(--text-muted); width: 28px; text-align: right; }
.bbar-track {
  flex: 1;
  height: 5px;
  background: rgba(255,255,255,0.08);
  border-radius: 4px;
  overflow: hidden;
}
.bbar-fill { height: 100%; border-radius: 4px; }

/* Preview text */
.preview-text {}
.preview-text .section-title { text-align: left; }
.preview-text .section-tag { display: inline-block; }
.preview-text p {
  color: var(--text-secondary);
  line-height: 1.75;
  margin: 16px 0 28px;
}
.preview-features { display: flex; flex-direction: column; gap: 12px; margin-bottom: 36px; }
.preview-features li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.95rem;
  color: var(--text-secondary);
  font-weight: 500;
}
.pf-icon { font-size: 1.1rem; width: 28px; text-align: center; }

/* =====================================================
   TESTIMONIALS
   ===================================================== */
.testimonials { background: var(--surface); }
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.testimonial-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  transition: all var(--transition);
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.testimonial-featured {
  background: linear-gradient(135deg, #FDF0F5, #FBF8F5);
  border-color: var(--rose-light);
  box-shadow: var(--shadow-md);
}
.testimonial-featured-badge {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--rose-dark);
  background: var(--champagne-light);
  border-radius: 50px;
  padding: 4px 12px;
  display: inline-block;
  width: fit-content;
}
.stars { color: #F5A623; font-size: 1rem; letter-spacing: 2px; }
.testimonial-card blockquote {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.7;
  font-style: italic;
  flex: 1;
}
.testimonial-card blockquote::before { content: '"'; }
.testimonial-card blockquote::after { content: '"'; }
.author-row { display: flex; align-items: center; gap: 12px; }
.author-avatar-circle {
  width: 44px; height: 44px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem;
  font-weight: 700;
  color: white;
  flex-shrink: 0;
}
.author-name { font-size: 0.9rem; font-weight: 700; color: var(--text-primary); }
.author-detail { font-size: 0.78rem; color: var(--text-muted); margin-top: 2px; }

/* =====================================================
   PRICING
   ===================================================== */
.pricing { background: var(--bg); }
.pricing-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  max-width: 800px;
  margin: 0 auto;
}
.pricing-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 40px 36px;
  position: relative;
  transition: all var(--transition);
}
.pricing-card:hover { box-shadow: var(--shadow-md); }
.pricing-featured {
  background: linear-gradient(145deg, #FDF0F5, #FDF8F5);
  border: 2px solid var(--rose-light);
  box-shadow: var(--shadow-lg);
  transform: scale(1.02);
}
.pc-badge {
  position: absolute;
  top: -14px; left: 50%; transform: translateX(-50%);
  background: linear-gradient(135deg, var(--rose), var(--rose-dark));
  color: white;
  font-size: 0.78rem;
  font-weight: 700;
  padding: 6px 20px;
  border-radius: 50px;
  white-space: nowrap;
}
.pc-header { margin-bottom: 28px; }
.pc-header h3 {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 6px;
}
.pc-desc { font-size: 0.85rem; color: var(--text-muted); margin-bottom: 20px; }
.pc-price { display: flex; align-items: baseline; gap: 4px; }
.pc-amount { font-size: 2.4rem; font-weight: 800; color: var(--text-primary); }
.pc-period { font-size: 0.9rem; color: var(--text-muted); }
.pc-features {
  display: flex;
  flex-direction: column;
  gap: 11px;
  margin-bottom: 32px;
}
.pc-features li {
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 10px;
}
.pc-features li.included { color: var(--text-secondary); }
.pc-features li.included::before { content: '✓'; color: var(--sage); font-weight: 700; }
.pc-features li.excluded { color: var(--text-muted); opacity: 0.5; }
.pc-features li.excluded::before { content: '✗'; color: var(--text-muted); }
.pc-note {
  text-align: center;
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-top: 12px;
}

/* =====================================================
   FAQ
   ===================================================== */
.faq { background: var(--surface); }
.faq-inner { max-width: 720px; margin: 0 auto; }
.faq-list { display: flex; flex-direction: column; gap: 12px; }
.faq-item {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: box-shadow var(--transition);
}
.faq-item:hover { box-shadow: var(--shadow-sm); }
.faq-q {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 20px 24px;
  text-align: left;
  font-size: 0.97rem;
  font-weight: 600;
  color: var(--text-primary);
  transition: color var(--transition);
}
.faq-q:hover { color: var(--rose); }
.faq-q[aria-expanded="true"] { color: var(--rose); }
.faq-chevron {
  font-size: 1.3rem;
  font-weight: 300;
  color: var(--rose);
  flex-shrink: 0;
  transition: transform var(--transition);
  line-height: 1;
}
.faq-q[aria-expanded="true"] .faq-chevron { transform: rotate(45deg); }
.faq-a {
  padding: 0 24px;
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.4s ease, padding 0.3s ease;
}
.faq-a:not([hidden]) {
  max-height: 200px;
  padding: 0 24px 20px;
}
.faq-a p {
  font-size: 0.92rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* =====================================================
   DOWNLOAD CTA
   ===================================================== */
.download {
  position: relative;
  padding: 100px 0;
  overflow: hidden;
  text-align: center;
}
.download-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(145deg, #F5E8F0 0%, #FBF0E4 40%, #EAF2EE 80%, #F5E8F0 100%);
}
.download-inner { position: relative; z-index: 1; }
.dl-logo-img {
  width: 80px; height: 80px;
  object-fit: contain;
  margin: 0 auto 28px;
  filter: drop-shadow(0 8px 24px rgba(199,125,154,0.3));
  animation: floatPhone 6s ease-in-out infinite;
}
.download-title {
  font-size: clamp(2rem, 4.5vw, 3rem);
  font-weight: 800;
  line-height: 1.15;
  color: var(--text-primary);
  margin-bottom: 16px;
}
.download-subtitle {
  font-size: 1.05rem;
  color: var(--text-secondary);
  margin-bottom: 40px;
}
.store-buttons {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}
.store-btn {
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--text-primary);
  color: white;
  border-radius: var(--radius-md);
  padding: 14px 24px;
  min-width: 180px;
  transition: all var(--transition);
  box-shadow: 0 4px 16px rgba(44,27,36,0.2);
}
.store-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(44,27,36,0.28);
}
.store-icon-wrap {
  flex-shrink: 0;
  opacity: 0.9;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.store-icon-wrap img.feature-emoji {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.store-text-wrap { display: flex; flex-direction: column; }
.store-sub { font-size: 0.68rem; opacity: 0.75; letter-spacing: 0.03em; }
.store-name { font-size: 1rem; font-weight: 700; line-height: 1.2; }
.download-note { font-size: 0.82rem; color: var(--text-muted); }

/* =====================================================
   FOOTER
   ===================================================== */
.footer {
  background: var(--text-primary);
  color: rgba(255,255,255,0.75);
  padding: 72px 0 32px;
}
.footer-top {
  display: grid;
  grid-template-columns: 280px minmax(0, 1fr);
  gap: 64px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  margin-bottom: 32px;
}
.footer-logo .logo-text { color: var(--rose-light); }
.footer-tagline {
  font-size: 0.9rem;
  line-height: 1.6;
  margin-top: 16px;
  color: rgba(255,255,255,0.55);
}
.social-links { display: flex; gap: 12px; margin-top: 24px; }
.social-link {
  width: 38px; height: 38px;
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.55);
  transition: all var(--transition);
}
.social-link:hover {
  background: rgba(199,125,154,0.2);
  border-color: var(--rose);
  color: var(--rose-light);
}
.footer-links-grid {
  display: grid;
  grid-template-columns: 1fr 1.25fr 1fr;
  gap: 40px;
  align-items: start;
}
.footer-col {
  min-width: 0;
}
.footer-col h4 {
  white-space: nowrap;
}
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col li a {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.5);
  transition: color var(--transition);
}
.footer-col li a:hover { color: var(--rose-light); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom p { font-size: 0.82rem; color: rgba(255,255,255,0.4); }
.footer-script {
  font-family: var(--font-script), serif;
  font-size: 1.1rem !important;
  color: var(--rose-light) !important;
  opacity: 0.7;
}
.footer-email-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-email-row {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
  flex-wrap: nowrap;
}

.footer-email-label {
  min-width: 0;
  white-space: nowrap;
}

.footer-email-line {
  display: flex;
  color: rgba(255,255,255,0.4);
  align-items: center;
  gap: 6px;
  flex-wrap: nowrap;
}

.footer-email {
  white-space: nowrap;
}

.copy-email-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  padding: 3px;
  flex-shrink: 0;
  color: rgba(255, 255, 255, 0.5);
  border-radius: 5px;
  transition: all var(--transition);
}

.copy-email-btn:hover {
  color: var(--rose-light);
  background: rgba(199, 125, 154, 0.15);
}

.copy-email-btn.copied {
  color: var(--sage-light);
}
.store-link img {
  filter: grayscale(100%);
}

.social-link.disabled {
  pointer-events: none;
  cursor: default;
}

/* =====================================================
   SCROLL REVEAL ANIMATION
   ===================================================== */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal:nth-child(2) { transition-delay: 0.1s; }
.reveal:nth-child(3) { transition-delay: 0.2s; }
.reveal:nth-child(4) { transition-delay: 0.1s; }
.reveal:nth-child(5) { transition-delay: 0.2s; }
.reveal:nth-child(6) { transition-delay: 0.3s; }

/* =====================================================
   RESPONSIVE
   ===================================================== */
@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; gap: 56px; text-align: center; }
  .hero-content { max-width: 100%; }
  .hero-actions { justify-content: center; }
  .hero-stats { justify-content: center; }
  .hero-visual { display: none; }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .preview-inner { grid-template-columns: 1fr; gap: 56px; }
  .preview-phones { display: none; }
  .preview-text .section-title { text-align: center; }
  .preview-text .section-tag { display: block; text-align: center; }
  .preview-text { text-align: center; }
  .preview-text .btn { margin: 0 auto; display: inline-flex; }
  .footer-top {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .footer-links-grid {
    grid-template-columns: 1fr 1.25fr 1fr;
    gap: 28px;
  }
}

@media (max-width: 768px) {
  .section { padding: 72px 0; }
  .nav-links { display: none; }
  .nav-actions { margin-left: 0; }
  .nav-actions .btn { display: none; }
  .hamburger { display: flex; }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 0; left: 0; right: 0;
    background: var(--surface);
    padding: 80px 24px 32px;
    gap: 24px;
    box-shadow: var(--shadow-lg);
    z-index: 999;
    animation: slideDown 0.3s ease;
  }
  .nav-links.open li a {
    font-size: 1.1rem;
    color: var(--text-primary);
  }
  @keyframes slideDown {
    from { transform: translateY(-20px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
  }

  .features-grid { grid-template-columns: 1fr; gap: 20px; }
  .steps-wrapper {
    flex-direction: column;
    align-items: center;
    gap: 16px;
  }
  .step-arrow {
    transform: rotate(90deg);
    padding: 0;
    font-size: 1.4rem;
  }
  .testimonials-grid { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; max-width: 400px; }
  .pricing-featured { transform: none; }
  .footer-links-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 36px 24px;
  }

  .footer-email {
    font-size: 0.82rem;
  }
  .footer-bottom { flex-direction: column; text-align: center; }
  .hero { padding: 120px 0 80px; min-height: auto; }
  .hero-title { font-size: clamp(1.8rem, 8vw, 2.4rem); }
}

@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .hero-actions { flex-direction: column; align-items: center; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .hero-stats { gap: 16px; }
  .footer-links-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer-email {
    font-size: 0.88rem;
  }
  .store-buttons { flex-direction: column; align-items: center; }
  .store-btn { width: 100%; max-width: 240px; }
  .section-title { font-size: 1.6rem; }
}

/* =====================================================
   COOKIE BANNER
   ===================================================== */
.cookie-banner {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 2000;
  background: var(--surface);
  border-top: 1px solid var(--border);
  box-shadow: 0 -4px 24px rgba(199,125,154,0.12);
  padding: 20px 0;
  transform: translateY(100%);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.cookie-banner.visible { transform: translateY(0); }
.cookie-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}
.cookie-text {
  flex: 1;
  min-width: 260px;
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.6;
}
.cookie-policy-link {
  color: var(--rose);
  font-weight: 600;
  text-decoration: underline;
  margin-left: 6px;
  white-space: nowrap;
}
.cookie-policy-link:hover { color: var(--rose-dark); }
.cookie-actions {
  display: flex;
  gap: 12px;
  flex-shrink: 0;
}
.cookie-btn { padding: 10px 22px; font-size: 0.9rem; }

@media (max-width: 600px) {
  .cookie-inner { flex-direction: column; align-items: stretch; }
  .cookie-actions { flex-direction: column; }
  .cookie-btn { width: 100%; justify-content: center; }
  .footer-email-row {
    flex-direction: column;
    align-items: flex-start;
  }
  .footer-email-label {
    min-width: 0;
  }
}
