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

:root {
  --primary: #4F46E5;
  --primary-dark: #4338CA;
  --primary-light: #818CF8;
  --primary-bg: #EEF2FF;
  --accent: #0EA5E9;
  --success: #10B981;
  --warning: #F59E0B;
  --danger: #EF4444;
  --gray-50: #F9FAFB;
  --gray-100: #F3F4F6;
  --gray-200: #E5E7EB;
  --gray-300: #D1D5DB;
  --gray-400: #9CA3AF;
  --gray-500: #6B7280;
  --gray-600: #4B5563;
  --gray-700: #374151;
  --gray-800: #1F2937;
  --gray-900: #111827;
  --white: #FFFFFF;
  --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --radius: 12px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --shadow-sm: 0 1px 2px rgba(0,0,0,0.05);
  --shadow: 0 4px 6px -1px rgba(0,0,0,0.07), 0 2px 4px -1px rgba(0,0,0,0.04);
  --shadow-md: 0 10px 15px -3px rgba(0,0,0,0.08), 0 4px 6px -2px rgba(0,0,0,0.04);
  --shadow-lg: 0 20px 25px -5px rgba(0,0,0,0.08), 0 10px 10px -5px rgba(0,0,0,0.03);
  --shadow-xl: 0 25px 50px -12px rgba(0,0,0,0.15);
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

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

a {
  text-decoration: none;
  color: inherit;
}

ul { list-style: none; }
img { max-width: 100%; height: auto; display: block; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ===== GRADIENT TEXT ===== */
.gradient-text {
  background: linear-gradient(135deg, var(--primary), var(--accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 28px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 15px;
  transition: all var(--transition);
  white-space: nowrap;
}

.btn svg { width: 18px; height: 18px; }

.btn-primary {
  background: var(--primary);
  color: var(--white);
  box-shadow: 0 4px 14px rgba(79, 70, 229, 0.35);
}
.btn-primary:hover {
  background: var(--primary-dark);
  box-shadow: 0 6px 20px rgba(79, 70, 229, 0.45);
  transform: translateY(-2px);
}

.btn-ghost {
  color: var(--gray-600);
  background: transparent;
}
.btn-ghost:hover {
  color: var(--primary);
  background: var(--primary-bg);
}

.btn-outline {
  border: 2px solid var(--gray-200);
  color: var(--gray-700);
  background: var(--white);
}
.btn-outline:hover {
  border-color: var(--primary);
  color: var(--primary);
}

.btn-block { width: 100%; }
.btn-lg { padding: 16px 36px; font-size: 16px; }

/* ===== NAVIGATION ===== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(0,0,0,0.06);
  transition: all var(--transition);
}

.navbar.scrolled {
  box-shadow: var(--shadow);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  font-size: 20px;
  color: var(--gray-900);
}

.logo-icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  overflow: hidden;
}

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

.logo-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 10px;
}

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

.nav-link {
  font-size: 14px;
  font-weight: 500;
  color: var(--gray-600);
  transition: color var(--transition);
  position: relative;
}

.nav-link:hover { color: var(--primary); }

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

.nav-link:hover::after { width: 100%; }

.nav-btn {
  padding: 10px 24px;
  background: var(--primary);
  color: var(--white) !important;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  transition: all var(--transition);
}

.nav-btn:hover {
  background: var(--primary-dark);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(79, 70, 229, 0.3);
}

.nav-toggle {
  display: none;
  padding: 8px;
  color: var(--gray-700);
}

.nav-toggle svg { width: 24px; height: 24px; }

/* ===== HERO ===== */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-top: 72px;
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, var(--white) 0%, var(--gray-50) 100%);
}

.hero-bg-shapes {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.shape {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.4;
}

.shape-1 {
  width: 600px;
  height: 600px;
  background: rgba(79, 70, 229, 0.12);
  top: -200px;
  right: -100px;
}

.shape-2 {
  width: 400px;
  height: 400px;
  background: rgba(14, 165, 233, 0.1);
  bottom: -100px;
  left: -100px;
}

.shape-3 {
  width: 300px;
  height: 300px;
  background: rgba(139, 92, 246, 0.08);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.hero-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 60px;
  position: relative;
  z-index: 1;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: var(--primary-bg);
  color: var(--primary);
  border-radius: 50px;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 24px;
}

.hero-badge svg { width: 16px; height: 16px; }

.hero-title {
  font-size: 56px;
  font-weight: 900;
  line-height: 1.1;
  color: var(--gray-900);
  letter-spacing: -0.02em;
  margin-bottom: 20px;
}

.hero-subtitle {
  font-size: 18px;
  color: var(--gray-500);
  line-height: 1.7;
  max-width: 520px;
  margin-bottom: 36px;
}

.hero-cta {
  display: flex;
  gap: 16px;
  margin-bottom: 48px;
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 32px;
}

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

.hero-stat-value {
  display: block;
  font-size: 28px;
  font-weight: 800;
  color: var(--gray-900);
}

.hero-stat-label {
  font-size: 13px;
  color: var(--gray-400);
  font-weight: 500;
}

.hero-stat-divider {
  width: 1px;
  height: 40px;
  background: var(--gray-200);
}

/* Phone Mockup */
.hero-phone {
  display: flex;
  justify-content: center;
  position: relative;
}

.phone-mockup {
  position: relative;
}

.phone-frame {
  width: 280px;
  height: 580px;
  background: var(--gray-900);
  border-radius: 40px;
  padding: 12px;
  box-shadow: var(--shadow-xl), 0 0 0 1px rgba(0,0,0,0.1);
  position: relative;
}

.phone-frame::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 120px;
  height: 28px;
  background: var(--gray-900);
  border-radius: 0 0 16px 16px;
  z-index: 2;
}

.phone-screen {
  width: 100%;
  height: 100%;
  background: var(--white);
  border-radius: 30px;
  overflow: hidden;
  position: relative;
}

.phone-screenshot {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.phone-placeholder {
  display: none;
  width: 100%;
  height: 100%;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  background: linear-gradient(135deg, var(--primary-bg), #F0F9FF);
  color: var(--gray-400);
}

.phone-placeholder svg { width: 48px; height: 48px; }
.phone-placeholder span { font-weight: 500; font-size: 14px; }

.hero-scroll-indicator {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  color: var(--gray-300);
  animation: bounce 2s infinite;
}

.hero-scroll-indicator svg { width: 24px; height: 24px; }

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
  40% { transform: translateX(-50%) translateY(-8px); }
  60% { transform: translateX(-50%) translateY(-4px); }
}

/* ===== SOCIAL PROOF BAR ===== */
.social-proof {
  padding: 32px 0;
  background: var(--white);
  border-bottom: 1px solid var(--gray-100);
}

.social-proof-content {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 48px;
  flex-wrap: wrap;
}

.proof-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--gray-500);
  font-size: 14px;
  font-weight: 500;
}

.proof-item svg {
  width: 20px;
  height: 20px;
  color: var(--primary);
}

/* ===== SECTION HEADERS ===== */
.section-header {
  text-align: center;
  max-width: 620px;
  margin: 0 auto 64px;
}

.section-badge {
  display: inline-block;
  padding: 6px 16px;
  background: var(--primary-bg);
  color: var(--primary);
  border-radius: 50px;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 16px;
}

.section-title {
  font-size: 40px;
  font-weight: 800;
  line-height: 1.15;
  color: var(--gray-900);
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}

.section-subtitle {
  font-size: 17px;
  color: var(--gray-500);
  line-height: 1.6;
}

/* ===== FEATURES ===== */
.features {
  padding: 120px 0;
  background: var(--gray-50);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 48px;
}

.feature-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px;
  transition: all var(--transition);
  border: 1px solid var(--gray-100);
}

.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}

.feature-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--icon-bg);
  color: var(--icon-color);
  margin-bottom: 20px;
}

.feature-icon svg { width: 24px; height: 24px; }

.feature-card h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 8px;
}

.feature-card p {
  font-size: 14px;
  color: var(--gray-500);
  line-height: 1.6;
}

/* Bonus Features */
.bonus-features {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 16px;
}

.bonus-feature {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 50px;
  font-size: 13px;
  font-weight: 600;
  color: var(--gray-600);
  transition: all var(--transition);
}

.bonus-feature:hover {
  border-color: var(--primary);
  color: var(--primary);
  background: var(--primary-bg);
}

.bonus-feature svg { width: 16px; height: 16px; }

/* ===== TEMPLATES ===== */
.templates {
  padding: 120px 0;
  background: var(--white);
}

.templates-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.template-card {
  text-align: center;
  cursor: default;
}

.template-preview {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 20px;
  margin-bottom: 12px;
  transition: all var(--transition);
  aspect-ratio: 3/4;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.template-card:hover .template-preview {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.tpl-header {
  height: 24px;
  background: var(--gray-200);
  border-radius: 4px;
}
.tpl-header.blue { background: #3B82F6; }
.tpl-header.green { background: #10B981; }
.tpl-header.gray { background: #6B7280; }
.tpl-header.classic { background: #1F2937; }
.tpl-header.modern { background: linear-gradient(135deg, #8B5CF6, #EC4899); }
.tpl-header.sunset { background: linear-gradient(135deg, #F97316, #EF4444); }
.tpl-header.royal { background: linear-gradient(135deg, #7C3AED, #4338CA); }
.tpl-header.fancy { background: linear-gradient(135deg, #F59E0B, #1E3A5F); }

.tpl-line {
  height: 8px;
  background: var(--gray-100);
  border-radius: 4px;
}
.tpl-line.short { width: 60%; }

.tpl-table {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-top: 8px;
}

.tpl-row {
  height: 12px;
  background: var(--gray-50);
  border-radius: 3px;
}

.tpl-total {
  height: 16px;
  background: var(--gray-200);
  border-radius: 4px;
  margin-top: auto;
}
.tpl-total.blue { background: #DBEAFE; }
.tpl-total.green { background: #D1FAE5; }
.tpl-total.gray { background: #E5E7EB; }
.tpl-total.classic { background: #E5E7EB; }
.tpl-total.modern { background: linear-gradient(135deg, #EDE9FE, #FCE7F3); }
.tpl-total.sunset { background: linear-gradient(135deg, #FFEDD5, #FEE2E2); }
.tpl-total.royal { background: linear-gradient(135deg, #EDE9FE, #E0E7FF); }
.tpl-total.fancy { background: linear-gradient(135deg, #FEF3C7, #1E3A5F20); }

.template-name {
  display: block;
  font-weight: 700;
  font-size: 15px;
  color: var(--gray-900);
  margin-bottom: 2px;
}

.template-desc {
  display: block;
  font-size: 13px;
  color: var(--gray-400);
}

/* ===== HOW IT WORKS ===== */
.how-it-works {
  padding: 120px 0;
  background: var(--gray-50);
}

.steps {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 0;
  max-width: 900px;
  margin: 0 auto;
}

.step {
  flex: 1;
  text-align: center;
  padding: 0 24px;
}

.step-number {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: var(--white);
  font-weight: 800;
  font-size: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  box-shadow: 0 4px 14px rgba(79, 70, 229, 0.3);
}

.step-content h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 8px;
}

.step-content p {
  font-size: 14px;
  color: var(--gray-500);
  line-height: 1.6;
}

.step-connector {
  width: 80px;
  height: 2px;
  background: var(--gray-200);
  margin-top: 28px;
  flex-shrink: 0;
}

/* ===== SCREENSHOTS ===== */
.screenshots {
  padding: 120px 0;
  background: var(--white);
}

.screenshots-carousel {
  position: relative;
  overflow: hidden;
}

.screenshots-track {
  display: flex;
  gap: 24px;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  padding: 20px 0;
}

.screenshot-item {
  flex: 0 0 200px;
  text-align: center;
}

.screenshot-phone {
  width: 200px;
  height: 420px;
  background: var(--gray-900);
  border-radius: 28px;
  padding: 8px;
  margin: 0 auto 12px;
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}

.screenshot-phone img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 22px;
}

.screenshot-placeholder {
  display: none;
  width: 100%;
  height: 100%;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: linear-gradient(135deg, var(--primary-bg), #F0F9FF);
  border-radius: 22px;
  color: var(--gray-400);
}

.screenshot-placeholder svg { width: 32px; height: 32px; }
.screenshot-placeholder span { font-weight: 500; font-size: 12px; }

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

.screenshots-nav {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 32px;
}

.screenshots-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--white);
  border: 1px solid var(--gray-200);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray-600);
  transition: all var(--transition);
}

.screenshots-btn:hover {
  background: var(--primary);
  color: var(--white);
  border-color: var(--primary);
}

.screenshots-btn svg { width: 20px; height: 20px; }

/* ===== PRICING ===== */
.pricing {
  padding: 120px 0;
  background: var(--gray-50);
}

.pricing-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  max-width: 800px;
  margin: 0 auto 48px;
  align-items: start;
}

.pricing-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 40px;
  border: 1px solid var(--gray-200);
  position: relative;
  transition: all var(--transition);
}

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

.pricing-card-featured {
  border: 2px solid var(--primary);
  box-shadow: var(--shadow-lg);
}

.pricing-card-featured:hover {
  box-shadow: var(--shadow-xl);
}

.pricing-popular-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: white;
  padding: 6px 20px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
}

.pricing-popular-badge svg { width: 14px; height: 14px; }

.pricing-card-header {
  text-align: center;
  margin-bottom: 32px;
}

.pricing-card-header h3 {
  font-size: 20px;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 16px;
}

.pricing-price {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 4px;
}

.price-amount {
  font-size: 52px;
  font-weight: 900;
  color: var(--gray-900);
  line-height: 1;
}

.pricing-card-featured .price-amount {
  background: linear-gradient(135deg, var(--primary), var(--accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.price-period {
  font-size: 16px;
  color: var(--gray-400);
  font-weight: 500;
}

.pricing-desc {
  font-size: 14px;
  color: var(--gray-400);
  margin-top: 8px;
}

.pricing-features {
  margin-bottom: 32px;
}

.pricing-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 0;
  font-size: 14px;
  color: var(--gray-600);
  border-bottom: 1px solid var(--gray-50);
}

.pricing-features li:last-child { border-bottom: none; }

.pricing-features li svg {
  width: 18px;
  height: 18px;
  color: var(--success);
  flex-shrink: 0;
}

.pricing-features li strong {
  color: var(--gray-900);
}

.pricing-guarantee {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  max-width: 600px;
  margin: 0 auto;
  padding: 24px;
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--gray-200);
}

.pricing-guarantee svg {
  width: 28px;
  height: 28px;
  color: var(--success);
  flex-shrink: 0;
  margin-top: 2px;
}

.pricing-guarantee strong {
  display: block;
  font-size: 15px;
  color: var(--gray-900);
  margin-bottom: 4px;
}

.pricing-guarantee p {
  font-size: 13px;
  color: var(--gray-500);
  line-height: 1.5;
}

/* ===== LANGUAGES & CURRENCIES ===== */
.languages-section {
  padding: 120px 0;
  background: var(--white);
}

.global-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}

.global-card {
  background: var(--gray-50);
  border-radius: var(--radius-xl);
  padding: 40px;
  text-align: center;
  border: 1px solid var(--gray-100);
}

.global-card-icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background: var(--primary-bg);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.global-card-icon svg { width: 24px; height: 24px; }

.global-card h3 {
  font-size: 22px;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 20px;
}

.language-tags, .currency-tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
}

.lang-tag, .currency-tag {
  padding: 6px 14px;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 50px;
  font-size: 13px;
  font-weight: 500;
  color: var(--gray-600);
}

.currency-tag.more {
  background: var(--primary-bg);
  border-color: var(--primary-bg);
  color: var(--primary);
  font-weight: 600;
}

/* ===== PRIVACY ===== */
.privacy-section {
  padding: 120px 0;
  background: var(--gray-50);
}

.privacy-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.privacy-text h2 {
  font-size: 36px;
  font-weight: 800;
  line-height: 1.15;
  color: var(--gray-900);
  margin: 16px 0;
}

.privacy-text > p {
  font-size: 16px;
  color: var(--gray-500);
  line-height: 1.7;
  margin-bottom: 32px;
}

.privacy-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.privacy-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  font-weight: 500;
  color: var(--gray-700);
}

.privacy-list li svg {
  width: 20px;
  height: 20px;
  color: var(--primary);
  flex-shrink: 0;
}

.privacy-graphic {
  display: flex;
  justify-content: center;
  align-items: center;
}

.privacy-shield {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary-bg), #F0F9FF);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  box-shadow: 0 0 0 30px rgba(79, 70, 229, 0.04), 0 0 0 60px rgba(79, 70, 229, 0.02);
}

.privacy-shield svg { width: 80px; height: 80px; }

/* ===== FAQ ===== */
.faq {
  padding: 120px 0;
  background: var(--white);
}

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

.faq-item {
  border-bottom: 1px solid var(--gray-100);
}

.faq-item:last-child { border-bottom: none; }

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

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

.faq-question svg {
  width: 20px;
  height: 20px;
  color: var(--gray-400);
  transition: transform var(--transition);
  flex-shrink: 0;
  margin-left: 16px;
}

.faq-item.active .faq-question svg {
  transform: rotate(180deg);
  color: var(--primary);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
  max-height: 300px;
}

.faq-answer p {
  font-size: 15px;
  color: var(--gray-500);
  line-height: 1.7;
  padding-bottom: 20px;
  padding-right: 40px;
}

.faq-answer a {
  color: var(--primary);
  font-weight: 500;
  text-decoration: underline;
}

/* ===== CTA / DOWNLOAD ===== */
.cta {
  padding: 120px 0;
  background: linear-gradient(135deg, var(--gray-900), #1E1B4B);
  position: relative;
  overflow: hidden;
}

.cta::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(79, 70, 229, 0.3) 0%, transparent 70%);
  pointer-events: none;
}

.cta::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(14, 165, 233, 0.2) 0%, transparent 70%);
  pointer-events: none;
}

.cta-content {
  text-align: center;
  position: relative;
  z-index: 1;
}

.cta-content h2 {
  font-size: 44px;
  font-weight: 800;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 20px;
}

.cta-content p {
  font-size: 17px;
  color: rgba(255,255,255,0.6);
  max-width: 520px;
  margin: 0 auto 40px;
  line-height: 1.7;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.store-btn {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 28px;
  background: var(--white);
  color: var(--gray-900);
  border-radius: 14px;
  transition: all var(--transition);
}

.store-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.3);
}

.store-btn svg { flex-shrink: 0; }

.store-btn small {
  display: block;
  font-size: 11px;
  color: var(--gray-500);
  font-weight: 500;
  line-height: 1;
}

.store-btn strong {
  display: block;
  font-size: 17px;
  font-weight: 700;
  line-height: 1.2;
}

/* ===== FOOTER ===== */
.footer {
  padding: 64px 0 32px;
  background: var(--gray-900);
  color: rgba(255,255,255,0.7);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  font-size: 20px;
  color: var(--white);
  margin-bottom: 16px;
}

.footer-brand > p {
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 20px;
}

.footer-contact a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--primary-light);
  font-size: 14px;
  font-weight: 500;
  transition: color var(--transition);
}

.footer-contact a:hover { color: var(--white); }
.footer-contact svg { width: 16px; height: 16px; }

.footer-links-group h4 {
  color: var(--white);
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.footer-links-group li { margin-bottom: 10px; }

.footer-links-group a {
  font-size: 14px;
  color: rgba(255,255,255,0.5);
  transition: color var(--transition);
}

.footer-links-group a:hover { color: var(--white); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.1);
}

.footer-bottom p {
  font-size: 13px;
  color: rgba(255,255,255,0.4);
}

.footer-bottom-links {
  display: flex;
  gap: 24px;
}

.footer-bottom-links a {
  font-size: 13px;
  color: rgba(255,255,255,0.4);
  transition: color var(--transition);
}

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

/* ===== ANIMATIONS ===== */
[data-animate] {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

[data-animate="fade-left"] {
  transform: translateX(30px);
}

[data-animate].visible {
  opacity: 1;
  transform: translate(0, 0);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .hero-title { font-size: 44px; }
  .section-title { font-size: 34px; }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .templates-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    background: var(--white);
    flex-direction: column;
    padding: 24px;
    gap: 16px;
    box-shadow: var(--shadow-lg);
    border-bottom: 1px solid var(--gray-100);
  }

  .nav-links.active { display: flex; }
  .nav-toggle { display: block; }

  .hero-container {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 40px;
  }

  .hero-title { font-size: 36px; }
  .hero-subtitle { margin: 0 auto 36px; }
  .hero-cta { justify-content: center; flex-wrap: wrap; }
  .hero-stats { justify-content: center; }

  .features-grid { grid-template-columns: 1fr; }
  .templates-grid { grid-template-columns: repeat(2, 1fr); }
  .section-title { font-size: 30px; }
  .cta-content h2 { font-size: 32px; }

  .pricing-cards {
    grid-template-columns: 1fr;
    max-width: 420px;
  }

  .global-grid { grid-template-columns: 1fr; }

  .privacy-content {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .privacy-list { align-items: center; }
  .privacy-graphic { order: -1; }
  .privacy-shield { width: 140px; height: 140px; }
  .privacy-shield svg { width: 56px; height: 56px; }

  .steps { flex-direction: column; gap: 0; }
  .step-connector { width: 2px; height: 40px; margin: 0 auto; }

  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }

  .phone-frame { width: 240px; height: 500px; }
}

@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .hero-title { font-size: 30px; }
  .hero-cta { flex-direction: column; align-items: center; }
  .hero-stats { flex-direction: column; gap: 16px; }
  .hero-stat-divider { width: 40px; height: 1px; }
  .section-title { font-size: 26px; }
  .cta-content h2 { font-size: 26px; }
  .cta-buttons { flex-direction: column; align-items: center; }
  .templates-grid { grid-template-columns: 1fr; max-width: 280px; margin: 0 auto; }
  .feature-card { padding: 28px; }
  .social-proof-content { gap: 24px; }
  .privacy-text h2 { font-size: 28px; }
  .phone-frame { width: 220px; height: 460px; }
}
