/* ═══════════════════════════════════════
   RESET & TOKENS
   ═══════════════════════════════════════ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --primary: #fb4d7d;
  --primary-600: #e8326a;
  --primary-700: #c41f57;
  --primary-50: #FFF0F5;
  --primary-100: #FFE4ED;
  --primary-200: #FFC7D8;
  --primary-glow: rgba(251, 77, 125, 0.28);

  --gradient: linear-gradient(135deg, #fb4d7d 0%, #ff8fb3 100%);
  --gradient-text: linear-gradient(135deg, #fb4d7d 0%, #ff4081 50%, #ff8fb3 100%);
  --gradient-cta: linear-gradient(135deg, #fb4d7d 0%, #e8326a 100%);

  --text-900: #0f172a;
  --text-800: #1e293b;
  --text-700: #334155;
  --text-500: #64748b;
  --text-400: #94a3b8;
  --text-300: #cbd5e1;
  --text-200: #e2e8f0;
  --text-100: #f1f5f9;

  --bg: #ffffff;
  --bg-alt: #fbfafd;
  --bg-card: #ffffff;
  --border: #edeef2;
  --border-strong: #d9dce3;

  --success: #10B981;
  --warning: #F59E0B;
  --danger: #EF4444;

  --shadow-xs: 0 1px 2px rgba(15, 23, 42, 0.04);
  --shadow-sm: 0 1px 2px rgba(15, 23, 42, 0.05), 0 1px 4px rgba(15, 23, 42, 0.04);
  --shadow-md: 0 4px 16px rgba(15, 23, 42, 0.07);
  --shadow-lg: 0 12px 40px rgba(15, 23, 42, 0.10);
  --shadow-xl: 0 28px 80px rgba(15, 23, 42, 0.14);
  --shadow-pink: 0 16px 40px rgba(251, 77, 125, 0.35);

  --radius: 12px;
  --radius-md: 16px;
  --radius-lg: 22px;
  --radius-xl: 30px;

  --nav-h: 68px;
}

html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--text-800);
  background: var(--bg);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-size: 15px;
  letter-spacing: -0.005em;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

.container { max-width: 1180px; margin: 0 auto; padding: 0 20px; }

.gradient-text {
  background: var(--gradient-text);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* ═══════════════════════════════════════
   BUTTONS
   ═══════════════════════════════════════ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 18px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 14px;
  font-family: inherit;
  cursor: pointer;
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid transparent;
  white-space: nowrap;
  text-decoration: none;
  line-height: 1;
}
.btn .material-icons-outlined { font-size: 18px; }

.btn-primary { background: var(--gradient-cta); color: white; box-shadow: 0 8px 24px rgba(251, 77, 125, 0.35); }
.btn-primary:hover { transform: translateY(-1px); box-shadow: 0 12px 32px rgba(251, 77, 125, 0.45); }
.btn-primary:active { transform: translateY(0); }

.btn-outline { background: transparent; color: var(--text-900); border-color: var(--border-strong); }
.btn-outline:hover { border-color: var(--primary); color: var(--primary); }

.btn-ghost { background: transparent; color: var(--text-700); }
.btn-ghost:hover { background: var(--text-100); color: var(--text-900); }

.btn-white { background: white; color: var(--primary); box-shadow: 0 12px 32px rgba(0, 0, 0, 0.15); }
.btn-white:hover { transform: translateY(-1px); }

.btn-lg { padding: 14px 26px; font-size: 15px; }
.btn-block { width: 100%; justify-content: center; }

/* ═══════════════════════════════════════
   ANNOUNCEMENT BAR
   ═══════════════════════════════════════ */
.announce-bar {
  background: linear-gradient(90deg, #1a0a1f 0%, #2d0b2f 50%, #1a0a1f 100%);
  color: white;
  font-size: 13px;
  text-align: center;
  padding: 11px 16px;
  position: relative;
  overflow: hidden;
}
.announce-bar::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(600px 40px at 50% 50%, rgba(251, 77, 125, 0.18), transparent 70%);
  pointer-events: none;
}
.announce-inner {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: center;
}
.announce-dot {
  display: inline-block;
  width: 8px; height: 8px;
  border-radius: 50%;
  background: #10B981;
  box-shadow: 0 0 12px #10B981;
  animation: pulse 2s ease-in-out infinite;
}
.announce-sep { color: rgba(255,255,255,0.3); margin: 0 2px; }

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}

/* ═══════════════════════════════════════
   NAVBAR
   ═══════════════════════════════════════ */
.navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: saturate(180%) blur(16px);
  -webkit-backdrop-filter: saturate(180%) blur(16px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s, box-shadow 0.2s;
  height: var(--nav-h);
}
.navbar.scrolled { border-bottom-color: var(--border); box-shadow: var(--shadow-xs); }

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  height: 100%;
}

.logo { display: flex; align-items: center; gap: 10px; text-decoration: none; }
.logo-img { width: 36px; height: 36px; border-radius: 10px; box-shadow: 0 4px 12px rgba(251, 77, 125, 0.3); }
.logo-text { font-size: 17px; font-weight: 800; color: var(--text-900); letter-spacing: -0.02em; }

.nav-links { display: flex; gap: 6px; }
.nav-links a {
  padding: 9px 14px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-700);
  transition: all 0.15s;
}
.nav-links a:hover { background: var(--text-100); color: var(--text-900); }

.nav-actions { display: flex; gap: 8px; align-items: center; }

.mobile-menu-btn {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.mobile-menu-btn span {
  width: 22px; height: 2px;
  background: var(--text-900);
  border-radius: 2px;
  transition: all 0.25s;
}
.mobile-menu-btn.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.mobile-menu-btn.open span:nth-child(2) { opacity: 0; }
.mobile-menu-btn.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ═══════════════════════════════════════
   HERO
   ═══════════════════════════════════════ */
.hero {
  position: relative;
  overflow: hidden;
  padding: 80px 0 100px;
  background: linear-gradient(180deg, var(--bg) 0%, var(--bg-alt) 100%);
}
.hero-bg { position: absolute; inset: 0; z-index: 0; overflow: hidden; pointer-events: none; }
.blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.55;
}
.blob-1 { width: 460px; height: 460px; background: var(--primary); top: -140px; right: -120px; }
.blob-2 { width: 360px; height: 360px; background: #7c9cff; bottom: -100px; left: -100px; opacity: 0.3; }
.hero-grid {
  position: absolute; inset: 0;
  background-image: linear-gradient(var(--border) 1px, transparent 1px), linear-gradient(90deg, var(--border) 1px, transparent 1px);
  background-size: 40px 40px;
  mask-image: radial-gradient(ellipse at center, black 0%, transparent 60%);
  -webkit-mask-image: radial-gradient(ellipse at center, black 0%, transparent 60%);
  opacity: 0.4;
}

.hero-container {
  position: relative;
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 60px;
  align-items: center;
  z-index: 1;
}
.hero-content h1 {
  font-size: clamp(36px, 5vw, 54px);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: var(--text-900);
  margin-bottom: 20px;
}
.hero-subtitle {
  font-size: 18px;
  color: var(--text-500);
  line-height: 1.6;
  margin-bottom: 32px;
  max-width: 540px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  background: linear-gradient(135deg, rgba(251, 77, 125, 0.1) 0%, rgba(251, 77, 125, 0.03) 100%);
  border: 1px solid rgba(251, 77, 125, 0.2);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  color: var(--primary-700);
  margin-bottom: 20px;
}
.hero-badge-dot {
  width: 6px; height: 6px;
  background: var(--primary);
  border-radius: 50%;
  box-shadow: 0 0 10px var(--primary);
  animation: pulse 2s ease-in-out infinite;
}

.hero-form {
  display: flex;
  gap: 8px;
  background: white;
  padding: 6px;
  border-radius: 999px;
  box-shadow: var(--shadow-lg);
  max-width: 520px;
  margin-bottom: 12px;
  border: 1px solid var(--border);
}
.hero-form input {
  flex: 1;
  padding: 12px 18px;
  border: none;
  background: transparent;
  font-size: 14px;
  font-family: inherit;
  color: var(--text-900);
  outline: none;
  min-width: 0;
}
.hero-form input::placeholder { color: var(--text-400); }
.hero-form .btn { flex-shrink: 0; }

.hero-form-hint {
  display: flex; align-items: center; gap: 6px;
  font-size: 13px;
  color: var(--text-500);
  margin-bottom: 28px;
}
.hero-form-hint .material-icons-outlined {
  font-size: 16px;
  color: var(--success);
}

.hero-social-proof {
  display: flex; align-items: center; gap: 12px;
  font-size: 14px;
  color: var(--text-500);
  padding-top: 24px;
  border-top: 1px dashed var(--border);
}
.stars {
  color: #f59e0b;
  font-size: 16px;
  letter-spacing: 2px;
}

.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
}

.phone-mockup {
  position: relative;
  width: 300px;
  height: 600px;
  filter: drop-shadow(0 40px 60px rgba(15, 23, 42, 0.2));
}
.phone-frame {
  width: 100%; height: 100%;
  background: #1e1e2a;
  border-radius: 44px;
  padding: 10px;
  box-shadow: inset 0 0 0 2px rgba(255,255,255,0.05);
}
.phone-screen {
  background: white;
  height: 100%;
  border-radius: 36px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.mock-topbar {
  display: flex; justify-content: center;
  padding: 14px 0 8px;
  font-size: 14px;
  font-weight: 600;
  color: var(--text-900);
}
.mock-app { flex: 1; padding: 12px 20px 24px; background: var(--bg-alt); }
.mock-greeting {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 20px;
}
.mock-hi { font-size: 18px; font-weight: 800; color: var(--text-900); }
.mock-date { font-size: 12px; color: var(--text-500); margin-top: 2px; }
.mock-avatar {
  width: 36px; height: 36px; border-radius: 50%;
  background: var(--gradient);
  color: white;
  display: flex; align-items: center; justify-content: center;
  font-weight: 700;
  font-size: 14px;
  box-shadow: var(--shadow-pink);
}

.mock-stat-row { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-bottom: 20px; }
.mock-stat {
  background: white;
  border-radius: 14px;
  padding: 12px;
  box-shadow: var(--shadow-xs);
  border: 1px solid var(--border);
}
.mock-stat-n { display: block; font-size: 20px; font-weight: 800; color: var(--text-900); }
.mock-stat-l { font-size: 11px; color: var(--text-500); }

.mock-section-title {
  font-size: 12px;
  font-weight: 600;
  color: var(--text-500);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 10px;
}
.mock-list { display: flex; flex-direction: column; gap: 8px; }
.mock-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  background: white;
  border-radius: 12px;
  border: 1px solid var(--border);
}
.mock-time-badge {
  padding: 6px 9px;
  background: var(--primary-50);
  color: var(--primary-700);
  border-radius: 8px;
  font-size: 11px;
  font-weight: 700;
  flex-shrink: 0;
}
.mock-item-body { min-width: 0; flex: 1; }
.mock-item-name { font-size: 13px; font-weight: 600; color: var(--text-900); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.mock-item-sub { font-size: 11px; color: var(--text-500); margin-top: 1px; }

.floating-card {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  background: white;
  border-radius: 14px;
  box-shadow: var(--shadow-xl);
  border: 1px solid var(--border);
  animation: float 6s ease-in-out infinite;
  z-index: 2;
}
.floating-card-1 { top: 8%; left: -40px; animation-delay: 0s; }
.floating-card-2 { bottom: 18%; right: -30px; animation-delay: -3s; }
.fc-dot { width: 10px; height: 10px; border-radius: 50%; }
.fc-icon { font-size: 18px; }
.fc-title { font-size: 12px; font-weight: 700; color: var(--text-900); }
.fc-sub { font-size: 11px; color: var(--text-500); }

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

/* ═══════════════════════════════════════
   STATS STRIP
   ═══════════════════════════════════════ */
.stats {
  padding: 40px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: white;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  text-align: center;
}
.stat-item .stat-num {
  font-size: 34px;
  font-weight: 800;
  background: var(--gradient-text);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  letter-spacing: -0.02em;
  line-height: 1;
  margin-bottom: 6px;
}
.stat-sep { font-size: 22px; opacity: 0.6; margin: 0 2px; }
.stat-label { font-size: 13px; color: var(--text-500); }

/* ═══════════════════════════════════════
   SECTION HEADER
   ═══════════════════════════════════════ */
.section-header { text-align: center; margin-bottom: 52px; max-width: 620px; margin-left: auto; margin-right: auto; }
.section-badge {
  display: inline-block;
  padding: 5px 12px;
  background: var(--primary-50);
  color: var(--primary-700);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 14px;
}
.section-header h2 {
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 800;
  color: var(--text-900);
  letter-spacing: -0.025em;
  line-height: 1.15;
  margin-bottom: 12px;
}
.section-header p { color: var(--text-500); font-size: 16px; }

/* ═══════════════════════════════════════
   FEATURES
   ═══════════════════════════════════════ */
.features { padding: 100px 0; }
.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.feature-card {
  padding: 28px 22px;
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  transition: all 0.25s;
  position: relative;
  overflow: hidden;
}
.feature-card::after {
  content: '';
  position: absolute;
  top: -60px;
  right: -60px;
  width: 160px;
  height: 160px;
  background: radial-gradient(circle, var(--c, var(--primary)) 0%, transparent 70%);
  opacity: 0.05;
  transition: opacity 0.25s;
}
.feature-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: transparent; }
.feature-card:hover::after { opacity: 0.12; }
.feature-icon {
  width: 44px; height: 44px;
  border-radius: 12px;
  background: color-mix(in srgb, var(--c, var(--primary)) 12%, transparent);
  color: var(--c, var(--primary));
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 16px;
}
.feature-icon .material-icons-outlined { font-size: 22px; }
.feature-card h3 { font-size: 16px; font-weight: 700; margin-bottom: 6px; color: var(--text-900); }
.feature-card p { font-size: 13.5px; color: var(--text-500); line-height: 1.6; }

/* ═══════════════════════════════════════
   HOW IT WORKS
   ═══════════════════════════════════════ */
.how-it-works { padding: 100px 0; background: var(--bg-alt); }
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 960px;
  margin: 0 auto;
}
.step {
  text-align: center;
  padding: 40px 26px;
  background: white;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  position: relative;
  border: 1px solid var(--border);
}
.step-number {
  width: 48px; height: 48px;
  background: var(--gradient);
  color: white;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-weight: 800;
  font-size: 18px;
  margin: 0 auto 16px;
  box-shadow: var(--shadow-pink);
}
.step h3 { font-size: 17px; font-weight: 700; color: var(--text-900); margin-bottom: 8px; }
.step p { font-size: 13.5px; color: var(--text-500); }

/* ═══════════════════════════════════════
   SHOWCASE (editorial style)
   ═══════════════════════════════════════ */
.showcase {
  padding: 110px 0 90px;
  background: #FFFFFF;
  position: relative;
  overflow: hidden;
}
.showcase-decor {
  position: absolute;
  pointer-events: none;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.55;
}
.showcase-decor-1 {
  width: 320px; height: 320px;
  background: var(--primary);
  top: 8%; right: -80px;
  opacity: 0.18;
}
.showcase-decor-2 {
  width: 260px; height: 260px;
  background: #7c9cff;
  bottom: 14%; left: -80px;
  opacity: 0.14;
}

.showcase-title {
  text-transform: uppercase;
  letter-spacing: -0.04em;
  font-weight: 900;
  font-size: clamp(34px, 5vw, 56px);
}

.showcase-block {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 60px;
  align-items: center;
  margin-bottom: 100px;
  position: relative;
}
.showcase-block:last-child { margin-bottom: 0; }
.showcase-block-img-text { grid-template-columns: 1.1fr 1fr; }

.showcase-eyebrow {
  display: inline-block;
  padding: 5px 12px;
  background: var(--primary-50);
  color: var(--primary-700);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 18px;
}
.showcase-headline {
  font-size: clamp(30px, 4.4vw, 52px);
  font-weight: 900;
  line-height: 0.98;
  letter-spacing: -0.035em;
  text-transform: uppercase;
  color: var(--text-900);
  margin-bottom: 18px;
}
.showcase-headline em {
  font-style: italic;
  font-weight: 400;
  font-family: 'Georgia', 'Times New Roman', serif;
  text-transform: none;
  letter-spacing: -0.01em;
  color: var(--text-700);
}
.showcase-text p {
  font-size: 16px;
  line-height: 1.65;
  color: var(--text-700);
  max-width: 460px;
  margin-bottom: 26px;
}
.showcase-text .btn { margin-top: 4px; }

/* Phones group */
.showcase-phones-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  position: relative;
}
.showcase-phone {
  border-radius: 22px;
  overflow: hidden;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  filter: drop-shadow(0 20px 40px rgba(15, 23, 42, 0.15));
}
.showcase-phone img {
  width: 100%;
  height: auto;
  display: block;
}
.showcase-phone-tilt-left {
  transform: rotate(-3deg);
  transform-origin: center bottom;
}
.showcase-phone-tilt-right {
  transform: rotate(3deg);
  transform-origin: center bottom;
}
.showcase-phone-tilt-left:hover,
.showcase-phone-tilt-right:hover {
  transform: rotate(0);
}

/* Tablet single */
.showcase-tablet {
  border-radius: 22px;
  overflow: hidden;
  filter: drop-shadow(0 20px 40px rgba(15, 23, 42, 0.15));
}
.showcase-tablet img {
  width: 100%;
  height: auto;
  display: block;
}

/* ═══════════════════════════════════════
   PRICING
   ═══════════════════════════════════════ */
.pricing { padding: 100px 0; }
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  max-width: 880px;
  margin: 0 auto;
}
.pricing-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  position: relative;
  transition: all 0.25s;
}
.pricing-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-2px); }
.pricing-card.featured {
  background: linear-gradient(160deg, #0b0b17 0%, #1a0c22 60%, #2a0d2c 100%);
  color: white;
  border-color: transparent;
  box-shadow: var(--shadow-xl);
}
.pricing-card.featured::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--radius-lg);
  padding: 1.5px;
  background: linear-gradient(135deg, rgba(251,77,125,0.5), rgba(124,156,255,0.3));
  -webkit-mask: linear-gradient(#fff, #fff) content-box, linear-gradient(#fff, #fff);
  mask: linear-gradient(#fff, #fff) content-box, linear-gradient(#fff, #fff);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}
.pricing-popular {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  padding: 6px 14px;
  background: var(--gradient-cta);
  color: white;
  font-size: 12px;
  font-weight: 700;
  border-radius: 999px;
  box-shadow: var(--shadow-pink);
}
.pricing-tag {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-500);
  margin-bottom: 8px;
}
.pricing-card.featured .pricing-tag { color: #d0a7ff; }
.pricing-price { display: flex; align-items: baseline; gap: 4px; margin-bottom: 6px; }
.pricing-price .price { font-size: 40px; font-weight: 800; color: var(--text-900); letter-spacing: -0.02em; }
.pricing-card.featured .pricing-price .price {
  background: linear-gradient(135deg, #fff 0%, #ffb8cc 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.pricing-price .period { font-size: 14px; color: var(--text-500); }
.pricing-card.featured .pricing-price .period { color: rgba(255,255,255,0.6); }
.pricing-desc { font-size: 13px; color: var(--text-500); margin-bottom: 22px; min-height: 20px; }
.pricing-card.featured .pricing-desc { color: rgba(255,255,255,0.7); }

.pricing-features { list-style: none; margin: 0 0 26px; padding: 0; }
.pricing-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 0;
  font-size: 14px;
  color: var(--text-700);
  border-bottom: 1px solid var(--border);
}
.pricing-features li:last-child { border-bottom: none; }
.pricing-card.featured .pricing-features li { border-color: rgba(255,255,255,0.08); color: rgba(255,255,255,0.88); }
.pricing-features li .material-icons-outlined { font-size: 18px; color: var(--success); flex-shrink: 0; }
.pricing-features li.locked { color: var(--text-400); }
.pricing-features li.locked .material-icons-outlined { color: var(--text-300); }
.pricing-footer {
  text-align: center;
  margin-top: 28px;
  font-size: 13px;
  color: var(--text-500);
}

/* ═══════════════════════════════════════
   TESTIMONIALS
   ═══════════════════════════════════════ */
.testimonials { padding: 100px 0; background: var(--bg-alt); }
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.testimonial-card {
  padding: 28px;
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  transition: transform 0.2s;
}
.testimonial-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.testimonial-stars { color: #f59e0b; font-size: 14px; letter-spacing: 2px; margin-bottom: 14px; }
.testimonial-card p { font-size: 14.5px; color: var(--text-700); line-height: 1.7; margin-bottom: 20px; }
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.author-avatar {
  width: 42px; height: 42px;
  border-radius: 50%;
  color: white;
  font-weight: 700;
  display: flex; align-items: center; justify-content: center;
}
.testimonial-author strong { display: block; font-size: 14px; color: var(--text-900); }
.testimonial-author small { font-size: 12px; color: var(--text-500); }

/* ═══════════════════════════════════════
   FAQ
   ═══════════════════════════════════════ */
.faq { padding: 100px 0; }
.faq-list { max-width: 740px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }
.faq-item {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 0;
  transition: border-color 0.2s;
  overflow: hidden;
}
.faq-item:hover { border-color: var(--border-strong); }
.faq-item[open] { border-color: var(--primary); box-shadow: 0 8px 24px rgba(251, 77, 125, 0.08); }
.faq-item summary {
  cursor: pointer;
  padding: 18px 22px;
  font-size: 15px;
  font-weight: 600;
  color: var(--text-900);
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  font-size: 22px;
  font-weight: 400;
  color: var(--text-400);
  transition: transform 0.2s;
  flex-shrink: 0;
}
.faq-item[open] summary::after { transform: rotate(45deg); color: var(--primary); }
.faq-item p { padding: 0 22px 20px; font-size: 14px; color: var(--text-500); line-height: 1.7; }

/* ═══════════════════════════════════════
   CTA
   ═══════════════════════════════════════ */
.cta {
  padding: 100px 0;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #0b0b17 0%, #2a0d2c 100%);
  color: white;
}
.cta-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(600px 400px at 20% 30%, rgba(251, 77, 125, 0.28), transparent 60%),
    radial-gradient(500px 300px at 80% 70%, rgba(124, 156, 255, 0.18), transparent 60%);
  pointer-events: none;
}
.cta-content { position: relative; text-align: center; max-width: 640px; margin: 0 auto; }
.cta-content h2 {
  font-size: clamp(30px, 4.5vw, 46px);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.025em;
  margin-bottom: 16px;
}
.cta-content p { font-size: 17px; color: rgba(255,255,255,0.75); margin-bottom: 32px; }

/* ═══════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════ */
.footer { padding: 70px 0 30px; background: var(--bg-alt); border-top: 1px solid var(--border); }
.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 2fr;
  gap: 60px;
  margin-bottom: 50px;
}
.footer-brand p { color: var(--text-500); font-size: 14px; margin-top: 14px; max-width: 260px; }
.footer-links { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.footer-col h4 { font-size: 13px; font-weight: 700; color: var(--text-900); margin-bottom: 14px; text-transform: uppercase; letter-spacing: 0.05em; }
.footer-col a { display: block; padding: 6px 0; font-size: 14px; color: var(--text-500); transition: color 0.15s; }
.footer-col a:hover { color: var(--primary); }
.footer-bottom { border-top: 1px solid var(--border); padding-top: 22px; font-size: 13px; color: var(--text-400); }

/* ═══════════════════════════════════════
   MODAL
   ═══════════════════════════════════════ */
.modal-backdrop {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(15, 23, 42, 0.6);
  backdrop-filter: blur(6px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  animation: fadeIn 0.2s ease;
}
.modal-backdrop[hidden] { display: none; }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }

.modal {
  background: white;
  border-radius: var(--radius-lg);
  width: 100%;
  max-width: 460px;
  padding: 36px 32px;
  box-shadow: var(--shadow-xl);
  position: relative;
  max-height: 90vh;
  overflow-y: auto;
  animation: slideUp 0.25s cubic-bezier(0.2, 0.9, 0.3, 1.2);
}
@keyframes slideUp { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }

.modal-close {
  position: absolute; top: 14px; right: 14px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 6px;
  color: var(--text-500);
  border-radius: 8px;
  transition: all 0.15s;
  display: flex;
}
.modal-close:hover { background: var(--text-100); color: var(--text-900); }

.modal-header { text-align: center; margin-bottom: 24px; }
.modal-logo { width: 54px; height: 54px; border-radius: 14px; margin: 0 auto 14px; box-shadow: var(--shadow-pink); }
.modal-header h3 { font-size: 22px; font-weight: 800; color: var(--text-900); margin-bottom: 6px; letter-spacing: -0.01em; }
.modal-header p { font-size: 13px; color: var(--text-500); }

.auth-tabs {
  display: flex;
  gap: 4px;
  padding: 4px;
  background: var(--text-100);
  border-radius: 10px;
  margin-bottom: 18px;
}
.auth-tab {
  flex: 1;
  padding: 9px 12px;
  background: transparent;
  border: none;
  border-radius: 7px;
  font-size: 13px;
  font-weight: 600;
  font-family: inherit;
  color: var(--text-500);
  cursor: pointer;
  transition: all 0.18s;
}
.auth-tab:hover { color: var(--text-800); }
.auth-tab.active { background: white; color: var(--text-900); box-shadow: var(--shadow-xs); }

.signup-form { display: flex; flex-direction: column; gap: 14px; }
.signup-form[hidden], .signup-success[hidden] { display: none !important; }
.signup-form label { display: flex; flex-direction: column; gap: 6px; }
.signup-form label > span { font-size: 13px; font-weight: 600; color: var(--text-700); }
.signup-form label > span small { font-weight: 400; color: var(--text-400); margin-left: 4px; }
.signup-form input {
  padding: 12px 14px;
  border: 1px solid var(--border-strong);
  border-radius: 10px;
  font-size: 14px;
  font-family: inherit;
  color: var(--text-900);
  outline: none;
  transition: all 0.15s;
  background: var(--bg);
}
.signup-form input:focus { border-color: var(--primary); box-shadow: 0 0 0 4px var(--primary-glow); }
.signup-form .btn { margin-top: 6px; }
.form-error {
  font-size: 13px;
  color: var(--danger);
  min-height: 18px;
  text-align: center;
  padding-top: 4px;
}
.form-hint {
  font-size: 12px;
  color: var(--text-400);
  text-align: center;
  margin-top: 6px;
  line-height: 1.5;
}
.form-hint a { color: var(--primary); text-decoration: underline; }
.form-alt { text-align: center; font-size: 13px; color: var(--text-500); margin-top: 10px; }
.form-alt a { color: var(--primary); font-weight: 600; }

.signup-success { text-align: center; padding: 30px 0; }
.success-icon {
  width: 72px; height: 72px;
  border-radius: 50%;
  background: linear-gradient(135deg, #10B981, #34d399);
  color: white;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 18px;
  box-shadow: 0 12px 32px rgba(16, 185, 129, 0.4);
}
.success-icon .material-icons-outlined { font-size: 36px; }
.signup-success h3 { font-size: 22px; font-weight: 800; color: var(--text-900); margin-bottom: 8px; }
.signup-success p { color: var(--text-500); font-size: 14px; }

/* ═══════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════ */
@media (max-width: 960px) {
  .hero-container { grid-template-columns: 1fr; gap: 50px; }
  .hero-visual { margin-top: 20px; }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 24px; }
  .steps { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; gap: 40px; }
  .showcase-tablets { grid-template-columns: 1fr; }
  .showcase-block,
  .showcase-block-img-text { grid-template-columns: 1fr; gap: 40px; margin-bottom: 70px; }
  .showcase-block-img-text .showcase-tablet { order: 2; }
  .showcase-block-img-text .showcase-text { order: 1; }
}

@media (max-width: 720px) {
  .hero { padding: 60px 0 80px; }
  .nav-links, .nav-actions .btn-ghost { display: none; }
  .mobile-menu-btn { display: flex; }
  .nav-container { gap: 10px; }
  .nav-actions .btn-primary { padding: 8px 14px; font-size: 13px; }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: var(--nav-h);
    left: 0; right: 0;
    background: white;
    padding: 20px;
    border-bottom: 1px solid var(--border);
    box-shadow: var(--shadow-md);
    gap: 4px;
  }
  .nav-links.open a { padding: 12px 14px; }
  .hero-form { flex-direction: column; border-radius: 14px; padding: 10px; }
  .hero-form input { padding: 14px; }
  .hero-form .btn { width: 100%; }
  .phone-mockup { width: 260px; height: 520px; }
  .floating-card { display: none; }
  .pricing-grid { grid-template-columns: 1fr; }
  .footer-links { grid-template-columns: repeat(2, 1fr); }
  .announce-bar { font-size: 12px; padding: 8px 12px; }
  .announce-inner { gap: 6px; }
}

@media (max-width: 480px) {
  .features-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr; }
  .modal { padding: 28px 22px; }
  .logo-text { display: none; }
  .nav-actions .btn-primary { padding: 8px 12px; font-size: 12.5px; }
}

/* App Store download badge (hero) */
.hero-download {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 22px;
  flex-wrap: wrap;
}
.hero-download-label {
  font-size: 13px;
  color: var(--neutral-500, #737373);
  font-weight: 500;
}
.store-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #000;
  color: #fff;
  padding: 9px 16px;
  border-radius: 12px;
  text-decoration: none;
  transition: transform .15s ease, box-shadow .15s ease;
}
.store-badge:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(0, 0, 0, .22);
}
.store-badge svg {
  width: 24px;
  height: 28px;
  fill: #fff;
  flex-shrink: 0;
}
.store-badge-text {
  display: flex;
  flex-direction: column;
  line-height: 1.05;
  text-align: left;
}
.store-badge-text small { font-size: 11px; opacity: .92; }
.store-badge-text strong { font-size: 18px; font-weight: 600; letter-spacing: .2px; }
