/* ============================================
   FUSH Website — Design System & Styles
   ============================================ */

/* --- Reset --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body { line-height: 1.6; min-height: 100vh; min-height: 100dvh; overflow-x: hidden; -webkit-font-smoothing: antialiased; }
img, svg { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; -webkit-tap-highlight-color: transparent; }
ul, ol { list-style: none; }
button { cursor: pointer; border: none; background: none; font: inherit; -webkit-tap-highlight-color: transparent; }
input, textarea { font: inherit; border: none; outline: none; font-size: 16px; /* prevents iOS zoom on focus */ }

/* --- Design Tokens --- */
:root {
  --bg-pink: #FCEDF5;
  --bg-white: #FFFFFF;
  --gradient: linear-gradient(135deg, #695EE6 0%, #FF7A7A 100%);
  --gradient-45: linear-gradient(45deg, #695EE6 0%, #FF7A7A 85%);
  --gradient-reverse: linear-gradient(135deg, #FF7A7A 0%, #695EE6 100%);
  --purple: #695EE6;
  --purple-deep: #5F3FBA;
  --purple-light: #8B7FEF;
  --coral: #FF7A7A;
  --coral-light: #FF9E9E;
  --lavender: #9892E0;
  --purple-accent: #C685D6;
  --dark: #3E4352;
  --dark-light: #4A5060;
  --text: #1A1A2E;
  --text-secondary: #555770;
  --text-muted: #8E90A6;
  --white: #FFFFFF;
  --shadow-sm: 0 2px 8px rgba(62, 67, 82, 0.08);
  --shadow-md: 0 4px 20px rgba(62, 67, 82, 0.12);
  --shadow-lg: 0 8px 40px rgba(62, 67, 82, 0.16);
  --shadow-glow: 0 0 30px rgba(105, 94, 230, 0.2);
  --radius-sm: 12px;
  --radius-md: 20px;
  --radius-lg: 28px;
  --radius-xl: 40px;
  --radius-full: 9999px;
  --font-heading: 'Poppins', sans-serif;
  --font-body: 'Poppins', sans-serif;
  --font-button: 'Inter', sans-serif;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  --max-width: 1200px;
  --nav-height: 80px;
}

/* --- Dark Mode --- */
[data-theme="dark"] {
  --bg-pink: #1A1A2E;
  --bg-white: #16213E;
  --text: #E8E8F0;
  --text-secondary: #B0B0C8;
  --text-muted: #7878A0;
  --dark: #2A2A40;
  --dark-light: #35355A;
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.2);
  --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.3);
  --shadow-lg: 0 8px 40px rgba(0, 0, 0, 0.4);
  --shadow-glow: 0 0 30px rgba(105, 94, 230, 0.35);
}

/* --- Typography --- */
body {
  font-family: var(--font-body);
  font-weight: 400;
  color: var(--text);
  background-color: var(--bg-pink);
  font-size: 16px;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.2;
}

h1 { font-size: clamp(2.2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.8rem, 4vw, 2.8rem); }
h3 { font-size: clamp(1.3rem, 3vw, 1.8rem); }
h4 { font-size: clamp(1.1rem, 2vw, 1.3rem); }

.gradient-text {
  background: var(--gradient-45);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-label {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--lavender);
  margin-bottom: 0.75rem;
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--text-secondary);
  max-width: 600px;
  line-height: 1.7;
}

/* --- Layout --- */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 2rem;
}

section {
  padding: 6rem 0;
  position: relative;
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-header .section-subtitle {
  margin: 1rem auto 0;
}

/* --- Scroll Progress Bar --- */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  background: var(--gradient);
  z-index: 10000;
  width: 0%;
  transition: none;
}

/* --- Navbar --- */
.navbar {
  position: fixed;
  top: 3px;
  left: 0;
  right: 0;
  height: var(--nav-height);
  z-index: 1000;
  transition: background var(--transition), box-shadow var(--transition), backdrop-filter var(--transition);
}

.navbar.scrolled {
  background: rgba(252, 237, 245, 0.8);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: var(--shadow-sm);
}

[data-theme="dark"] .navbar.scrolled {
  background: rgba(26, 26, 46, 0.85);
}

.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.nav-logo {
  display: flex;
  align-items: center;
  z-index: 1001;
}

.nav-logo img {
  height: 60px;
  width: auto;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-links a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-secondary);
  transition: color var(--transition);
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gradient);
  border-radius: 2px;
  transition: width var(--transition);
}

.nav-links a:hover { color: var(--text); }
.nav-links a:hover::after { width: 100%; }

.nav-right {
  display: flex;
  align-items: center;
  gap: 1rem;
}

/* Language Toggle */
.lang-toggle {
  display: flex;
  align-items: center;
  background: rgba(62, 67, 82, 0.08);
  border-radius: var(--radius-full);
  padding: 3px;
  font-size: 0.8rem;
  font-weight: 600;
}

.lang-toggle button {
  padding: 6px 12px;
  border-radius: var(--radius-full);
  transition: all var(--transition);
  color: var(--text-muted);
  font-weight: 600;
  font-size: 0.8rem;
}

.lang-toggle button.active {
  background: var(--white);
  color: var(--text);
  box-shadow: var(--shadow-sm);
}

[data-theme="dark"] .lang-toggle {
  background: rgba(255, 255, 255, 0.08);
}
[data-theme="dark"] .lang-toggle button.active {
  background: var(--dark-light);
}

/* Dark Mode Toggle */
.theme-toggle {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(62, 67, 82, 0.08);
  transition: all var(--transition);
  font-size: 1.1rem;
}

.theme-toggle:hover {
  background: rgba(62, 67, 82, 0.15);
  transform: rotate(30deg);
}

[data-theme="dark"] .theme-toggle {
  background: rgba(255, 255, 255, 0.08);
}

/* CTA Button */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.7rem 1.6rem;
  background: var(--dark);
  color: var(--white);
  font-family: var(--font-button);
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.03em;
  border-radius: var(--radius-full);
  transition: all var(--transition);
}

.btn-primary:hover {
  transform: translateY(-2px) scale(1.03);
  box-shadow: var(--shadow-md);
}

.btn-gradient {
  background: var(--gradient);
  color: var(--white);
}

.btn-gradient:hover {
  box-shadow: var(--shadow-glow);
}

.btn-outline {
  background: transparent;
  border: 2px solid var(--purple-accent);
  color: var(--text);
}

.btn-outline:hover {
  background: var(--purple);
  color: var(--white);
  border-color: var(--purple);
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 28px;
  z-index: 1001;
}

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

.hamburger.active span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.active span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* Mobile Menu */
.mobile-menu {
  display: none;
}

.mobile-menu.active {
  display: flex;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  height: 100dvh;
  background: var(--bg-pink);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.75rem;
  padding: 2rem;
}

[data-theme="dark"] .mobile-menu.active {
  background: var(--bg-pink);
}

.mobile-menu a {
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--text);
  transition: color var(--transition);
  padding: 0.5rem 1rem;
  min-height: 44px;
  display: flex;
  align-items: center;
}

.mobile-menu a:hover,
.mobile-menu a:active {
  color: var(--purple);
}

.mobile-menu .btn-primary {
  margin-top: 1rem;
  font-size: 1rem;
  padding: 0.9rem 2.5rem;
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: calc(var(--nav-height) + 2rem);
  position: relative;
  overflow: hidden;
}

.hero .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.hero-content { position: relative; z-index: 2; }

.hero-logo {
  height: 230px;
  width: auto;
  margin-bottom: 0.5rem;
}

.hero-content h1 {
  margin-bottom: 1.5rem;
  line-height: 1.15;
}

.hero-content .subtitle {
  font-size: 1.15rem;
  color: var(--text-secondary);
  margin-bottom: 2.5rem;
  max-width: 480px;
  line-height: 1.7;
}

.hero-badges {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.store-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.65rem 1.4rem 0.65rem 1rem;
  background: var(--dark);
  color: var(--white);
  border-radius: var(--radius-sm);
  transition: all var(--transition);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.store-badge:hover {
  transform: translateY(-3px) scale(1.03);
  box-shadow: var(--shadow-lg);
  background: var(--dark-light);
}

.store-badge-icon {
  flex-shrink: 0;
}

.store-badge-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
  text-align: left;
}

.store-badge-text small {
  font-size: 0.65rem;
  font-weight: 400;
  opacity: 0.75;
  letter-spacing: 0.02em;
}

.store-badge-text strong {
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: -0.01em;
}

.hero-visual {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  z-index: 2;
}

.hero-phone {
  max-width: 300px;
  margin: 0 auto;
  position: relative;
  filter: drop-shadow(0 24px 48px rgba(62, 67, 82, 0.25));
}

.hero-phone img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 28px;
}

/* Hero Background Blobs */
.hero-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.4;
  z-index: 0;
}

.hero-blob-1 {
  width: 500px;
  height: 500px;
  background: var(--purple);
  top: -100px;
  right: -100px;
}

.hero-blob-2 {
  width: 400px;
  height: 400px;
  background: var(--coral);
  bottom: -50px;
  left: -100px;
}

.hero-blob-3 {
  width: 300px;
  height: 300px;
  background: var(--purple-accent);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

/* ============================================
   STATS SECTION
   ============================================ */
.stats {
  padding: 3rem 0;
  background: var(--bg-white);
  border-top: 1px solid rgba(152, 146, 224, 0.15);
  border-bottom: 1px solid rgba(152, 146, 224, 0.15);
}

.stats .container {
  display: flex;
  justify-content: center;
  gap: 4rem;
  flex-wrap: wrap;
}

.stat-item {
  text-align: center;
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 900;
  background: var(--gradient-45);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.stat-label {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-top: 0.25rem;
}

/* ============================================
   HOW IT WORKS
   ============================================ */
.how-it-works {
  background: var(--bg-pink);
}

/* Timeline */
.timeline {
  position: relative;
  max-width: 700px;
  margin: 0 auto;
  padding-left: 60px;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 27px;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(to bottom, var(--purple), var(--coral));
  border-radius: 3px;
}

.timeline-item {
  position: relative;
  padding-bottom: 2.5rem;
}

.timeline-item:last-child {
  padding-bottom: 0;
}

.timeline-marker {
  position: absolute;
  left: -60px;
  top: 0;
}

.step-number {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--gradient);
  color: white;
  font-size: 1.2rem;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(105, 94, 230, 0.3);
  transition: transform var(--transition);
  position: relative;
  z-index: 1;
}

.timeline-item:hover .step-number {
  transform: scale(1.15);
}

.timeline-content {
  background: var(--bg-white);
  border-radius: var(--radius-md);
  padding: 1.75rem;
  border: 1px solid rgba(152, 146, 224, 0.1);
  transition: all var(--transition);
}

[data-theme="dark"] .timeline-content {
  background: var(--dark);
}

.timeline-content:hover {
  box-shadow: var(--shadow-md);
  border-color: rgba(105, 94, 230, 0.2);
}

.timeline-content h3 {
  margin-bottom: 0.5rem;
  color: var(--text);
  font-size: 1.15rem;
}

.timeline-content > p {
  color: var(--text-secondary);
  font-size: 0.9rem;
  line-height: 1.65;
  margin-bottom: 1rem;
}

.timeline-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.timeline-tags span {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  padding: 0.3rem 0.75rem;
  background: rgba(105, 94, 230, 0.06);
  border-radius: var(--radius-full);
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--purple);
}

[data-theme="dark"] .timeline-tags span {
  background: rgba(105, 94, 230, 0.15);
}

/* Timeline responsive */
@media (max-width: 480px) {
  .timeline { padding-left: 48px; }
  .timeline::before { left: 21px; }
  .timeline-marker { left: -48px; }
  .step-number { width: 44px; height: 44px; font-size: 1rem; }
  .timeline-content { padding: 1.25rem; }
  .timeline-tags span { font-size: 0.72rem; padding: 0.25rem 0.6rem; }
}

/* ============================================
   FOR CLIENTS / FOR FREELANCERS
   ============================================ */
.split-section {
  background: var(--bg-white);
}

.split-section:nth-child(even) {
  background: var(--bg-pink);
}

.split-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.split-grid.reverse {
  direction: rtl;
}

.split-grid.reverse > * {
  direction: ltr;
}

.split-content h2 {
  margin-bottom: 1rem;
}

.split-content > p {
  color: var(--text-secondary);
  margin-bottom: 2rem;
  line-height: 1.7;
}

/* Category Pills */
.category-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.category-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.6rem 1.2rem;
  background: var(--bg-pink);
  border: 1px solid rgba(152, 146, 224, 0.2);
  border-radius: var(--radius-full);
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text);
  transition: all var(--transition);
}

.category-pill:hover {
  transform: translateY(-2px) scale(1.05);
  background: var(--purple);
  color: white;
  border-color: var(--purple);
  box-shadow: var(--shadow-md);
}

.category-pill .pill-icon {
  font-size: 1.1rem;
}

/* Selling Points */
.selling-points {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin-bottom: 2rem;
}

.selling-point {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.selling-point .check-icon {
  width: 28px;
  height: 28px;
  min-width: 28px;
  border-radius: 50%;
  background: var(--gradient);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  margin-top: 2px;
}

.selling-point p {
  color: var(--text-secondary);
  line-height: 1.6;
}

.selling-point strong {
  color: var(--text);
}

/* Section Images */
.section-image {
  max-width: 420px;
  margin: 0 auto;
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  box-shadow: var(--shadow-lg);
}

.section-image img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform var(--transition-slow);
}

.section-image:hover img {
  transform: scale(1.04);
}

/* Keep illustration-box as fallback */
.illustration-box {
  aspect-ratio: 1;
  max-width: 380px;
  margin: 0 auto;
  border-radius: var(--radius-lg);
  background: var(--gradient);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
  color: white;
  box-shadow: 0 20px 50px rgba(105, 94, 230, 0.25);
  position: relative;
  overflow: hidden;
}

/* Earnings Calculator */
.earnings-calc {
  background: var(--bg-white);
  border-radius: var(--radius-md);
  padding: 2rem;
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(152, 146, 224, 0.15);
}

[data-theme="dark"] .earnings-calc {
  background: var(--dark);
}

.earnings-calc h4 {
  margin-bottom: 1.5rem;
  font-size: 1rem;
}

.calc-slider-wrap {
  margin-bottom: 1.5rem;
}

.calc-slider-wrap label {
  display: flex;
  justify-content: space-between;
  font-size: 0.9rem;
  color: var(--text-secondary);
  margin-bottom: 0.75rem;
}

.calc-slider-wrap label span {
  font-weight: 700;
  color: var(--purple);
}

.calc-slider {
  width: 100%;
  -webkit-appearance: none;
  height: 6px;
  border-radius: 3px;
  background: rgba(152, 146, 224, 0.2);
  outline: none;
}

.calc-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--gradient);
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(105, 94, 230, 0.4);
  transition: transform var(--transition);
}

.calc-slider::-webkit-slider-thumb:hover {
  transform: scale(1.2);
}

.calc-slider::-moz-range-thumb {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--gradient);
  cursor: pointer;
  border: none;
  box-shadow: 0 2px 8px rgba(105, 94, 230, 0.4);
}

.calc-result {
  text-align: center;
  padding: 1.5rem;
  background: var(--bg-pink);
  border-radius: var(--radius-md);
}

[data-theme="dark"] .calc-result {
  background: rgba(105, 94, 230, 0.1);
}

.calc-result .amount {
  font-size: 2.5rem;
  font-weight: 900;
  background: var(--gradient-45);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.calc-result .label {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-top: 0.25rem;
}

/* ============================================
   FEATURES GRID
   ============================================ */
.features {
  background: var(--bg-pink);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.feature-card {
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: var(--radius-md);
  padding: 2.5rem;
  border: 1px solid rgba(152, 146, 224, 0.12);
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}

[data-theme="dark"] .feature-card {
  background: rgba(22, 33, 62, 0.6);
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gradient);
  opacity: 0;
  transition: opacity var(--transition);
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.feature-card:hover::before {
  opacity: 1;
}

.feature-icon {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-sm);
  background: var(--gradient);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: white;
  margin-bottom: 1.5rem;
  transition: transform var(--transition);
}

.feature-card:hover .feature-icon {
  transform: scale(1.1) rotate(-5deg);
}

.feature-card h3 {
  margin-bottom: 0.75rem;
}

.feature-card p {
  color: var(--text-secondary);
  line-height: 1.6;
  font-size: 0.95rem;
}

/* ============================================
   TESTIMONIALS
   ============================================ */
.testimonials {
  background: var(--bg-white);
  overflow: hidden;
}

.testimonial-track-wrapper {
  position: relative;
  overflow: hidden;
  margin: 0 -2rem;
  padding: 1rem 0;
}

.testimonial-track-wrapper::before,
.testimonial-track-wrapper::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 100px;
  z-index: 2;
  pointer-events: none;
}

.testimonial-track-wrapper::before {
  left: 0;
  background: linear-gradient(to right, var(--bg-white), transparent);
}

.testimonial-track-wrapper::after {
  right: 0;
  background: linear-gradient(to left, var(--bg-white), transparent);
}

.testimonial-track {
  display: flex;
  gap: 1.5rem;
  width: max-content;
}

.testimonial-card {
  width: 340px;
  flex-shrink: 0;
  background: var(--bg-pink);
  border-radius: var(--radius-md);
  padding: 2rem;
  transition: all var(--transition);
}

[data-theme="dark"] .testimonial-card {
  background: var(--dark);
}

.testimonial-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.testimonial-stars {
  color: #FFB800;
  font-size: 1rem;
  margin-bottom: 1rem;
  letter-spacing: 2px;
}

.testimonial-text {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 1.5rem;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.testimonial-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--gradient);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 700;
  font-size: 1rem;
}

.testimonial-name {
  font-weight: 600;
  font-size: 0.9rem;
}

.testimonial-role {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* ============================================
   PRICING
   ============================================ */
.pricing {
  background: var(--bg-pink);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  align-items: start;
}

.pricing-card {
  background: var(--bg-white);
  border-radius: var(--radius-md);
  padding: 2.5rem 2rem;
  text-align: center;
  border: 2px solid rgba(152, 146, 224, 0.1);
  transition: all var(--transition);
  position: relative;
}

.pricing-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.pricing-card.featured {
  border-color: var(--purple);
  box-shadow: var(--shadow-glow);
  transform: scale(1.05);
}

.pricing-card.featured:hover {
  transform: scale(1.05) translateY(-5px);
}

.pricing-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gradient);
  color: white;
  padding: 0.35rem 1.2rem;
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 700;
  white-space: nowrap;
}

.pricing-card h3 {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.pricing-price {
  font-size: 2.5rem;
  font-weight: 900;
  margin: 1rem 0;
}

.pricing-price .currency {
  font-size: 1.2rem;
  vertical-align: super;
}

.pricing-price .period {
  font-size: 0.9rem;
  font-weight: 400;
  color: var(--text-muted);
}

.pricing-features {
  margin: 2rem 0;
  text-align: left;
}

.pricing-features li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.5rem 0;
  font-size: 0.9rem;
  color: var(--text-secondary);
}

.pricing-features li .feat-check {
  color: var(--purple);
  font-weight: 700;
  min-width: 20px;
}

.pricing-card .btn-primary {
  width: 100%;
  justify-content: center;
  padding: 0.9rem 1.6rem;
}

/* ============================================
   DOWNLOAD CTA
   ============================================ */
.download-cta {
  background: var(--gradient);
  color: white;
  text-align: center;
  padding: 5rem 0;
  position: relative;
  overflow: hidden;
}

.download-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}

.download-cta h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 1rem;
  position: relative;
  color: white;
}

.download-cta .subtitle {
  font-size: 1.1rem;
  opacity: 0.9;
  margin-bottom: 2.5rem;
  position: relative;
}

.download-cta .hero-badges {
  justify-content: center;
  position: relative;
}

.download-cta .store-badge,
.download-cta .store-badge.store-badge-light {
  background: rgba(255,255,255,0.12);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.2);
  color: white;
}

.download-cta .store-badge:hover {
  background: rgba(255,255,255,0.22);
  border-color: rgba(255,255,255,0.35);
}

/* Wave divider */
.wave-divider {
  position: absolute;
  top: -1px;
  left: 0;
  width: 100%;
  overflow: hidden;
  line-height: 0;
}

.wave-divider svg {
  display: block;
  width: calc(100% + 1.3px);
  height: 60px;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: var(--dark);
  color: rgba(255, 255, 255, 0.7);
  padding: 4rem 0 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-brand .nav-logo {
  margin-bottom: 1rem;
}

.footer-brand .nav-logo img {
  height: 64px;
  filter: brightness(0) invert(1);
}

.footer-brand p {
  font-size: 0.9rem;
  line-height: 1.7;
  max-width: 280px;
}

.footer h4 {
  color: white;
  font-size: 0.9rem;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.footer-links a {
  display: block;
  padding: 0.4rem 0;
  font-size: 0.9rem;
  transition: color var(--transition);
}

.footer-links a:hover {
  color: white;
}

/* Newsletter */
.newsletter-form {
  display: flex;
  gap: 0.5rem;
}

.newsletter-form input {
  flex: 1;
  padding: 0.75rem 1.2rem;
  border-radius: var(--radius-full);
  background: rgba(255, 255, 255, 0.08);
  color: white;
  font-size: 0.9rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all var(--transition);
}

.newsletter-form input::placeholder {
  color: rgba(255, 255, 255, 0.4);
}

.newsletter-form input:focus {
  border-color: var(--purple);
  background: rgba(255, 255, 255, 0.12);
}

.newsletter-form button {
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius-full);
  background: var(--gradient);
  color: white;
  font-weight: 700;
  font-size: 0.85rem;
  transition: all var(--transition);
}

.newsletter-form button:hover {
  transform: scale(1.05);
  box-shadow: var(--shadow-glow);
}

/* Social Icons */
.social-icons {
  display: flex;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.social-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.7);
  transition: all var(--transition);
}

.social-icon svg {
  width: 20px;
  height: 20px;
}

.social-icon:hover {
  transform: scale(1.15);
  background: var(--purple);
  color: white;
}

/* Footer Bottom */
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.85rem;
}

.footer-bottom-links {
  display: flex;
  gap: 2rem;
}

.footer-bottom-links a:hover {
  color: white;
}

/* ============================================
   BACK TO TOP
   ============================================ */
.back-to-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--gradient);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  box-shadow: var(--shadow-md);
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all var(--transition);
  z-index: 100;
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top:hover {
  transform: translateY(-3px) scale(1.1);
  box-shadow: var(--shadow-glow);
}

/* ============================================
   COOKIE BANNER
   ============================================ */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--dark);
  color: rgba(255, 255, 255, 0.85);
  padding: 1.25rem 2rem;
  padding-bottom: calc(1.25rem + env(safe-area-inset-bottom));
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
  transform: translateY(100%);
  transition: transform var(--transition-slow);
}

.cookie-banner.visible {
  transform: translateY(0);
}

.cookie-banner p {
  font-size: 0.9rem;
  max-width: 600px;
}

.cookie-banner p a {
  color: var(--purple-accent);
  text-decoration: underline;
}

.cookie-btns {
  display: flex;
  gap: 0.75rem;
}

.cookie-btns button {
  padding: 0.6rem 1.4rem;
  border-radius: var(--radius-full);
  font-weight: 700;
  font-size: 0.85rem;
  transition: all var(--transition);
}

.cookie-accept {
  background: var(--gradient);
  color: white;
}

.cookie-accept:hover {
  transform: scale(1.05);
}

.cookie-more {
  background: rgba(255, 255, 255, 0.1);
  color: white;
}

.cookie-more:hover {
  background: rgba(255, 255, 255, 0.2);
}

/* ============================================
   FAQ PAGE
   ============================================ */
.page-hero {
  padding: calc(var(--nav-height) + 4rem) 0 4rem;
  text-align: center;
  background: var(--bg-pink);
}

.faq-search {
  max-width: 500px;
  margin: 2rem auto 0;
  position: relative;
}

.faq-search input {
  width: 100%;
  padding: 1rem 1.5rem 1rem 3rem;
  border-radius: var(--radius-full);
  background: var(--bg-white);
  border: 2px solid rgba(152, 146, 224, 0.2);
  font-size: 1rem;
  color: var(--text);
  transition: all var(--transition);
}

.faq-search input:focus {
  border-color: var(--purple);
  box-shadow: var(--shadow-glow);
}

.faq-search .search-icon {
  position: absolute;
  left: 1.2rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-muted);
}

.faq-categories {
  display: flex;
  justify-content: center;
  gap: 0.75rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}

.faq-cat-btn {
  padding: 0.5rem 1.2rem;
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-secondary);
  background: var(--bg-white);
  border: 1px solid rgba(152, 146, 224, 0.15);
  transition: all var(--transition);
}

.faq-cat-btn.active,
.faq-cat-btn:hover {
  background: var(--purple);
  color: white;
  border-color: var(--purple);
}

.faq-list {
  max-width: 750px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid rgba(152, 146, 224, 0.15);
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 1.5rem 0;
  text-align: left;
  font-weight: 600;
  font-size: 1rem;
  color: var(--text);
  transition: color var(--transition);
}

.faq-question:hover {
  color: var(--purple);
}

.faq-chevron {
  transition: transform var(--transition);
  font-size: 1.2rem;
  color: var(--text-muted);
  min-width: 24px;
  text-align: center;
}

.faq-item.open .faq-chevron {
  transform: rotate(180deg);
  color: var(--purple);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-item.open .faq-answer {
  max-height: 500px;
}

.faq-answer p {
  padding: 0 0 1.5rem;
  color: var(--text-secondary);
  line-height: 1.7;
  font-size: 0.95rem;
}

/* Contact section */
.contact-section {
  text-align: center;
  padding: 4rem 2rem;
  background: var(--bg-white);
  border-radius: var(--radius-lg);
  max-width: 600px;
  margin: 4rem auto 0;
}

.contact-section h3 {
  margin-bottom: 1rem;
}

.contact-section p {
  color: var(--text-secondary);
  margin-bottom: 1.5rem;
  line-height: 1.7;
}

.contact-email {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.8rem 2rem;
  background: var(--gradient);
  color: white;
  border-radius: var(--radius-full);
  font-weight: 700;
  transition: all var(--transition);
}

.contact-email:hover {
  transform: scale(1.05);
  box-shadow: var(--shadow-glow);
}

/* ============================================
   LEGAL PAGES (Privacy, Terms)
   ============================================ */
.legal-content {
  max-width: 800px;
  margin: 0 auto;
  padding-bottom: 4rem;
}

.legal-content h2 {
  margin-top: 3rem;
  margin-bottom: 1rem;
  font-size: 1.3rem;
}

.legal-content h3 {
  margin-top: 2rem;
  margin-bottom: 0.75rem;
  font-size: 1.1rem;
}

.legal-content p {
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 1rem;
}

.legal-content ul {
  margin: 1rem 0;
  padding-left: 1.5rem;
}

.legal-content ul li {
  color: var(--text-secondary);
  line-height: 1.8;
  position: relative;
  padding-left: 1rem;
}

.legal-content ul li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: var(--purple);
}

.legal-content strong {
  color: var(--text);
}

/* ============================================
   CONTACT PAGE
   ============================================ */

/* Contact Cards Grid */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 4rem;
}

.contact-card {
  background: var(--bg-white);
  border-radius: var(--radius-md);
  padding: 2rem;
  text-align: center;
  border: 1px solid rgba(152, 146, 224, 0.1);
  transition: all var(--transition);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.contact-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: var(--purple);
}

.contact-card-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--gradient);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 0.5rem;
}

.contact-card h3 {
  font-size: 1.1rem;
}

.contact-card p {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.5;
}

.contact-card-value {
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--purple);
  margin-top: 0.25rem;
}

.contact-card-badge {
  display: inline-block;
  padding: 0.3rem 0.9rem;
  background: rgba(105, 94, 230, 0.08);
  color: var(--purple);
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 600;
  margin-top: 0.5rem;
}

/* Contact Form */
.contact-form-section {
  max-width: 680px;
  margin: 0 auto 4rem;
  background: var(--bg-white);
  border-radius: var(--radius-lg);
  padding: 3rem;
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(152, 146, 224, 0.1);
}

[data-theme="dark"] .contact-form-section {
  background: var(--dark);
}

.contact-form-header {
  text-align: center;
  margin-bottom: 2rem;
}

.contact-form-header p {
  color: var(--text-secondary);
  margin-top: 0.5rem;
}

.contact-form .form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.contact-form .form-group {
  margin-bottom: 1.25rem;
}

.contact-form label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 0.5rem;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 0.85rem 1.2rem;
  border-radius: var(--radius-sm);
  background: var(--bg-pink);
  border: 2px solid transparent;
  font-size: 0.95rem;
  color: var(--text);
  transition: all var(--transition);
}

[data-theme="dark"] .contact-form input,
[data-theme="dark"] .contact-form select,
[data-theme="dark"] .contact-form textarea {
  background: rgba(255, 255, 255, 0.05);
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--purple);
  box-shadow: 0 0 0 3px rgba(105, 94, 230, 0.1);
  outline: none;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: var(--text-muted);
}

.contact-form select {
  cursor: pointer;
  -webkit-appearance: none;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%239892E0' stroke-width='2' fill='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1.2rem center;
  padding-right: 3rem;
}

.contact-form textarea {
  resize: vertical;
  min-height: 120px;
}

.contact-submit {
  width: 100%;
  justify-content: center;
  padding: 1rem;
  font-size: 1rem;
  margin-top: 0.5rem;
}

/* Success State */
.contact-success {
  text-align: center;
  padding: 2rem 0;
}

.contact-success-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: #22c55e;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  margin: 0 auto 1rem;
}

.contact-success h3 {
  margin-bottom: 0.5rem;
  color: var(--text);
}

.contact-success p {
  color: var(--text-secondary);
  line-height: 1.6;
}

/* Team Section */
.contact-team {
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
  padding: 3rem 2rem;
  background: var(--bg-white);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(152, 146, 224, 0.1);
}

[data-theme="dark"] .contact-team {
  background: var(--dark);
}

.contact-team h3 {
  margin-bottom: 1rem;
}

.contact-team > p {
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 2rem;
}

.contact-team-info {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.team-info-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  color: var(--text-secondary);
}

.team-info-icon {
  font-size: 1.2rem;
}

/* Contact responsive */
@media (max-width: 768px) {
  .contact-grid { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto 3rem; }
  .contact-form-section { padding: 2rem 1.5rem; }
  .contact-form .form-row { grid-template-columns: 1fr; }
  .contact-team-info { flex-direction: column; align-items: center; gap: 1rem; }
}

/* ============================================
   CONFIRMED PAGE
   ============================================ */
.confirmed-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 2rem;
}

.confirmed-card {
  background: var(--bg-white);
  border-radius: var(--radius-lg);
  padding: 3rem;
  max-width: 480px;
  box-shadow: var(--shadow-lg);
}

.confirmed-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--gradient);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  margin: 0 auto 1.5rem;
}

.confirmed-card h1 {
  font-size: 1.8rem;
  margin-bottom: 0.75rem;
}

.confirmed-card p {
  color: var(--text-secondary);
  margin-bottom: 2rem;
  line-height: 1.6;
}

.confirmed-card .btn-primary {
  width: 100%;
  justify-content: center;
  padding: 1rem;
  font-size: 1rem;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  .pricing-grid { grid-template-columns: 1fr; max-width: 420px; margin: 0 auto; }
  .pricing-card.featured { transform: none; }
  .pricing-card.featured:hover { transform: translateY(-5px); }
  .features-grid { grid-template-columns: 1fr 1fr; }
}

/* Carousel dots — hidden on desktop */
.carousel-dots { display: none; }

/* ---- Mobile (768px) ---- */
@media (max-width: 768px) {
  :root { --nav-height: 60px; }
  section { padding: clamp(2rem, 6vw, 3rem) 0; }

  /* Fix horizontal overflow */
  html, body { overflow-x: hidden; }
  .hero { overflow: hidden; }

  /* Nav */
  .nav-links { display: none !important; }
  .nav-cta { display: none !important; }
  .hamburger { display: flex !important; }
  .mobile-menu.active { display: flex; }
  .nav-logo img { height: 38px; }

  /* HERO: Logo centered → headline → CTA → phone below */
  .hero { min-height: auto; padding-top: calc(var(--nav-height) + 1rem); padding-bottom: 1.5rem; }
  .hero .container { grid-template-columns: 1fr; text-align: center; gap: 0.5rem; }
  .hero-content { order: 0; }
  .hero-visual { order: 1; }
  .hero-logo { height: 120px; margin: 0 auto 0.25rem; display: block; }
  .hero-content h1 { font-size: clamp(1.4rem, 5vw, 1.75rem); line-height: 1.2; margin-bottom: 0.6rem; }
  .hero-content .subtitle { margin: 0 auto 1.25rem; font-size: 0.9rem; max-width: 330px; line-height: 1.55; }
  .hero-badges { justify-content: center; flex-direction: row; gap: 0.6rem; }
  .store-badge { padding: 0.5rem 1rem; }
  .store-badge-text strong { font-size: 0.88rem; }
  .store-badge-text small { font-size: 0.58rem; }
  .store-badge-icon { width: 22px !important; height: 22px !important; }
  .hero-phone { max-width: 180px; margin: -0.25rem auto 0; }

  /* Blobs — hidden or tiny to prevent overflow */
  .hero-blob-1 { width: 150px; height: 150px; top: -40px; right: -40px; opacity: 0.15; }
  .hero-blob-2 { width: 120px; height: 120px; bottom: -20px; left: -30px; opacity: 0.15; }
  .hero-blob-3 { display: none; }

  /* Stats */
  .stats { padding: 1.5rem 0; }
  .stats .container { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
  .stat-number { font-size: 1.5rem; }
  .stat-label { font-size: 0.75rem; }

  /* Timeline */
  .timeline { padding-left: 48px; }
  .timeline::before { left: 20px; }
  .timeline-marker { left: -48px; }
  .step-number { width: 42px; height: 42px; font-size: 0.95rem; }
  .timeline-content { padding: 1rem; }
  .timeline-content h3 { font-size: 0.95rem; }
  .timeline-content > p { font-size: 0.82rem; line-height: 1.5; margin-bottom: 0.5rem; }
  .timeline-tags { gap: 0.3rem; }
  .timeline-tags span { font-size: 0.68rem; padding: 0.2rem 0.5rem; }
  .timeline-item { padding-bottom: 1.25rem; }

  /* Split sections */
  .split-grid { grid-template-columns: 1fr; gap: 1.5rem; }
  .split-grid.reverse { direction: ltr; }
  .split-grid > div { width: 100%; overflow: hidden; }
  .split-content h2 { font-size: 1.35rem; }
  .split-content > p { font-size: 0.88rem; }
  .section-image { max-width: 240px; margin: 0 auto; }

  /* Category pills — wrap nicely on mobile */
  .category-pills {
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: center;
    padding: 0.5rem 0;
  }
  .category-pill { padding: 0.4rem 0.85rem; font-size: 0.8rem; }

  /* Selling points */
  .selling-points { gap: 0.75rem; }
  .selling-point p { font-size: 0.85rem; }
  .selling-point .check-icon { width: 24px; height: 24px; min-width: 24px; font-size: 0.7rem; }

  /* Earnings calc */
  .earnings-calc { padding: 1.25rem; }
  .earnings-calc h4 { font-size: 0.9rem; margin-bottom: 1rem; }
  .calc-result .amount { font-size: 1.8rem; }

  /* Features — horizontal swipe carousel edge-to-edge */
  .features-grid {
    grid-template-columns: none;
    display: flex;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    gap: 0.75rem;
    scroll-snap-type: x mandatory;
    margin-left: -2rem;
    margin-right: -2rem;
    padding: 0.5rem 2rem;
  }
  .features-grid::-webkit-scrollbar { display: none; }

  /* Carousel dots — only visible on mobile */
  .carousel-dots {
    display: flex;
    justify-content: center;
    gap: 6px;
    margin-top: 1rem;
  }
  .carousel-dots .dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--purple-accent);
    opacity: 0.25;
    transition: all var(--transition);
  }
  .carousel-dots .dot.active {
    opacity: 1;
    width: 20px;
    border-radius: 4px;
    background: var(--purple);
  }
  .feature-card {
    min-width: 75vw;
    max-width: 75vw;
    flex-shrink: 0;
    scroll-snap-align: center;
    padding: 1.5rem;
  }
  .feature-icon { width: 44px; height: 44px; font-size: 1.1rem; margin-bottom: 1rem; }
  .feature-card h3 { font-size: 1rem; margin-bottom: 0.5rem; }
  .feature-card p { font-size: 0.85rem; line-height: 1.5; }

  /* Section headers */
  .section-header { margin-bottom: 1.5rem; }
  .section-subtitle { font-size: 0.9rem; }
  .section-label { font-size: 0.7rem; letter-spacing: 0.15em; }

  /* Testimonials — wider cards on mobile */
  .testimonial-card { width: calc(80vw); max-width: 320px; padding: 1.25rem; }
  .testimonial-text { font-size: 0.85rem; margin-bottom: 1rem; line-height: 1.6; }

  /* Pricing — horizontal swipe carousel with peek + equal height */
  .pricing-grid {
    grid-template-columns: none;
    display: flex;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    gap: 0.75rem;
    scroll-snap-type: x mandatory;
    max-width: none;
    padding: 1.25rem 2rem 0.5rem;
    margin-left: -2rem;
    margin-right: -2rem;
    align-items: stretch;
  }
  .pricing-grid::-webkit-scrollbar { display: none; }
  .pricing-card {
    min-width: 75vw;
    max-width: 75vw;
    flex-shrink: 0;
    scroll-snap-align: center;
    padding: 1.75rem 1.5rem;
    display: flex;
    flex-direction: column;
  }
  .pricing-card .pricing-features { flex: 1; }
  .pricing-card .btn-primary { width: 100%; justify-content: center; margin-top: auto; }
  .pricing-card.featured { transform: none; border-width: 2px; }
  .pricing-card.featured:hover { transform: none; }
  .pricing-badge { top: -12px; font-size: 0.7rem; padding: 0.3rem 1rem; }
  .pricing-price { font-size: 2rem; margin: 0.75rem 0; }
  .pricing-features { margin: 1rem 0; }
  .pricing-features li { padding: 0.35rem 0; font-size: 0.85rem; }

  /* Download CTA */
  .download-cta { padding: 2.5rem 0; }
  .download-cta h2 { font-size: 1.3rem; }
  .download-cta .subtitle { font-size: 0.9rem; margin-bottom: 1.5rem; }
  .download-cta .hero-badges { flex-direction: row; justify-content: center; gap: 0.6rem; }

  /* Footer */
  .footer { padding: 2.5rem 0 1.5rem; }
  .footer-grid { grid-template-columns: 1fr; gap: 1.5rem; text-align: center; }
  .footer-brand { display: flex; flex-direction: column; align-items: center; }
  .footer-brand p { text-align: center; font-size: 0.85rem; }
  .footer-brand .nav-logo img { height: 44px; }
  .social-icons { justify-content: center; }
  .footer h4 { margin-bottom: 0.75rem; font-size: 0.8rem; }
  .footer-links { display: flex; flex-wrap: wrap; justify-content: center; gap: 0.2rem 1.25rem; }
  .footer-links a { padding: 0.3rem 0; font-size: 0.85rem; min-height: 44px; display: flex; align-items: center; }
  .newsletter-form { max-width: 100%; margin: 0 auto; flex-direction: column; gap: 0.5rem; }
  .newsletter-form input { width: 100%; }
  .newsletter-form button { width: 100%; }
  .newsletter-form input, .newsletter-form button { min-height: 48px; }
  .footer-bottom { flex-direction: column; gap: 0.5rem; text-align: center; font-size: 0.8rem; }

  /* Cookie */
  .cookie-banner { flex-direction: column; text-align: center; gap: 0.75rem; padding: 1rem; }
  .cookie-banner p { font-size: 0.82rem; }
  .cookie-btns button { min-height: 44px; }

  /* Sub-pages */
  .page-hero { padding-top: calc(var(--nav-height) + 1.5rem); padding-bottom: 1.5rem; }
  .page-hero h1 { font-size: 1.4rem; }
  .faq-question { font-size: 0.88rem; padding: 1rem 0; min-height: 48px; }
  .faq-answer p { font-size: 0.85rem; }
  .legal-content h2 { font-size: 1.1rem; margin-top: 1.5rem; }
  .legal-content p { font-size: 0.88rem; }
  .back-to-top { width: 44px; height: 44px; font-size: 1.1rem; bottom: 1rem; right: 1rem; }
}

/* ---- Small phones (390px) ---- */
@media (max-width: 390px) {
  .container { padding: 0 1rem; }
  .hero-logo { height: 64px; }
  .hero-content h1 { font-size: 1.35rem; }
  .hero-content .subtitle { font-size: 0.85rem; max-width: 300px; }
  .hero-phone { max-width: 150px; }
  .hero-badges { flex-direction: column; align-items: stretch; }
  .nav-logo img { height: 32px; }
  .stat-number { font-size: 1.3rem; }
  .features-grid, .pricing-grid { margin-left: -1rem; margin-right: -1rem; padding-left: 1rem; padding-right: 1rem; }
  .feature-card { min-width: 82vw; max-width: 82vw; }
  .pricing-card { min-width: 82vw; max-width: 82vw; }
  .testimonial-card { width: 82vw; }
  .timeline { padding-left: 40px; }
  .timeline::before { left: 17px; }
  .timeline-marker { left: -40px; }
  .step-number { width: 36px; height: 36px; font-size: 0.8rem; }
}
