/* ============================================
   PazarRadar Landing Page - Premium SaaS Design
   Aurora + Glassmorphism + Bento Grid
   ============================================ */

:root {
  --pr-primary: #6366f1;
  --pr-primary-light: #818cf8;
  --pr-primary-dark: #4f46e5;
  --pr-secondary: #8b5cf6;
  --pr-accent: #06b6d4;
  --pr-accent-light: #22d3ee;
  --pr-success: #10b981;
  --pr-success-light: #34d399;
  --pr-danger: #ef4444;
  --pr-warning: #f59e0b;
  --pr-pink: #ec4899;

  --pr-gradient: linear-gradient(135deg, #6366f1 0%, #8b5cf6 50%, #06b6d4 100%);
  --pr-gradient-warm: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
  --pr-gradient-accent: linear-gradient(135deg, #06b6d4 0%, #8b5cf6 100%);
  --pr-gradient-border: linear-gradient(135deg, rgba(99,102,241,0.5), rgba(139,92,246,0.5), rgba(6,182,212,0.5));

  --pr-bg: #0b0d17;
  --pr-bg-alt: #0f1121;
  --pr-surface: rgba(255, 255, 255, 0.04);
  --pr-surface-solid: #13152a;
  --pr-surface-hover: rgba(255, 255, 255, 0.07);
  --pr-glass: rgba(255, 255, 255, 0.06);
  --pr-glass-border: rgba(255, 255, 255, 0.1);
  --pr-border: rgba(255, 255, 255, 0.06);
  --pr-border-hover: rgba(255, 255, 255, 0.12);

  --pr-text: #f1f5f9;
  --pr-text-secondary: #94a3b8;
  --pr-text-muted: #64748b;

  --pr-radius: 12px;
  --pr-radius-lg: 20px;
  --pr-radius-xl: 24px;
  --pr-radius-full: 999px;

  --pr-shadow: 0 4px 24px rgba(0, 0, 0, 0.3);
  --pr-shadow-lg: 0 8px 40px rgba(0, 0, 0, 0.4);
  --pr-shadow-glow: 0 0 60px rgba(99, 102, 241, 0.15);

  --pr-font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

/* ============ RESET ============ */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--pr-font);
  background: var(--pr-bg);
  color: var(--pr-text);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; display: block; }
ul, ol { list-style: none; }
button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
  color: inherit;
}

/* ============ CONTAINER ============ */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ============ GRADIENT TEXT ============ */
.gradient-text {
  background: var(--pr-gradient);
  -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: var(--pr-radius-full);
  font-weight: 600;
  font-size: 15px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border: none;
  cursor: pointer;
  white-space: nowrap;
  position: relative;
}

.btn--primary {
  background: var(--pr-gradient-warm);
  color: #fff;
  box-shadow: 0 4px 20px rgba(99, 102, 241, 0.35);
}

.btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(99, 102, 241, 0.5);
}

.btn--outline {
  background: transparent;
  color: var(--pr-text);
  border: 1.5px solid var(--pr-border-hover);
}

.btn--outline:hover {
  border-color: var(--pr-primary);
  color: var(--pr-primary-light);
  background: rgba(99, 102, 241, 0.06);
}

.btn--sm { padding: 8px 20px; font-size: 13px; }
.btn--lg { padding: 16px 36px; font-size: 17px; }
.btn--block { width: 100%; }

/* ============ SECTION HEADERS ============ */
.section-header {
  text-align: center;
  margin-bottom: 64px;
}

.section-title {
  font-size: 40px;
  font-weight: 800;
  letter-spacing: -0.5px;
  margin-bottom: 16px;
  line-height: 1.2;
}

.section-subtitle {
  font-size: 18px;
  color: var(--pr-text-secondary);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ============ NAVBAR ============ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 14px 0;
  background: rgba(11, 13, 23, 0.7);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--pr-border);
  transition: all 0.3s ease;
}

.navbar--scrolled {
  background: rgba(11, 13, 23, 0.95);
  padding: 10px 0;
}

.navbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.navbar__brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 18px;
}

.navbar__logo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background: var(--pr-gradient-warm);
  border-radius: 10px;
  font-weight: 800;
  font-size: 14px;
  color: #fff;
}

.navbar__title { color: var(--pr-text); }

.navbar__links {
  display: flex;
  gap: 32px;
}

.navbar__link {
  font-size: 14px;
  font-weight: 500;
  color: var(--pr-text-secondary);
  transition: color 0.2s;
}

.navbar__link:hover { color: var(--pr-text); }

.navbar__actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.lang-toggle {
  padding: 6px 12px;
  border-radius: var(--pr-radius-full);
  border: 1px solid var(--pr-border);
  font-size: 12px;
  font-weight: 700;
  color: var(--pr-text-secondary);
  transition: all 0.2s;
}

.lang-toggle:hover {
  border-color: var(--pr-primary);
  color: var(--pr-primary);
}

.navbar__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
}

.navbar__hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--pr-text);
  border-radius: 2px;
  transition: all 0.3s;
}

/* ============ HERO ============ */
.hero {
  padding: 160px 0 80px;
  position: relative;
  overflow: hidden;
  min-height: 100vh;
  display: flex;
  align-items: center;
}

/* Aurora animated background */
.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -20%;
  width: 140%;
  height: 200%;
  background:
    radial-gradient(ellipse 80% 50% at 20% 40%, rgba(99, 102, 241, 0.15), transparent 50%),
    radial-gradient(ellipse 60% 40% at 80% 20%, rgba(139, 92, 246, 0.12), transparent 50%),
    radial-gradient(ellipse 50% 60% at 60% 80%, rgba(6, 182, 212, 0.1), transparent 50%);
  animation: auroraShift 12s ease-in-out infinite alternate;
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background:
    radial-gradient(ellipse 40% 30% at 70% 60%, rgba(236, 72, 153, 0.06), transparent 50%),
    radial-gradient(ellipse 50% 40% at 30% 70%, rgba(6, 182, 212, 0.08), transparent 50%);
  animation: auroraShift2 15s ease-in-out infinite alternate;
  pointer-events: none;
}

@keyframes auroraShift {
  0% { transform: translate(0, 0) rotate(0deg); }
  50% { transform: translate(3%, -2%) rotate(1deg); }
  100% { transform: translate(-2%, 3%) rotate(-1deg); }
}

@keyframes auroraShift2 {
  0% { transform: translate(0, 0) rotate(0deg); }
  50% { transform: translate(-3%, 2%) rotate(-0.5deg); }
  100% { transform: translate(2%, -1%) rotate(0.5deg); }
}

.hero__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  position: relative;
  z-index: 1;
  width: 100%;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 18px;
  background: rgba(99, 102, 241, 0.1);
  border: 1px solid rgba(99, 102, 241, 0.25);
  border-radius: var(--pr-radius-full);
  font-size: 13px;
  font-weight: 600;
  color: var(--pr-primary-light);
  margin-bottom: 24px;
  backdrop-filter: blur(8px);
}

.hero__title {
  font-size: 56px;
  font-weight: 800;
  letter-spacing: -1.5px;
  line-height: 1.1;
  margin-bottom: 24px;
}

.hero__subtitle {
  font-size: 18px;
  color: var(--pr-text-secondary);
  line-height: 1.8;
  margin-bottom: 36px;
  max-width: 520px;
}

.hero__ctas {
  display: flex;
  gap: 16px;
  margin-bottom: 36px;
}

.hero__trust {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.hero__trust-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  color: var(--pr-text-secondary);
}

/* ============ HERO FLOATING MOCK PANELS ============ */
.hero__visual {
  position: relative;
  min-height: 420px;
}

.hero__mock-panel {
  position: absolute;
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 24px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
  animation: floatPanel 6s ease-in-out infinite;
  transition: transform 0.3s ease;
}

.hero__mock-panel:hover {
  transform: translateY(-4px) scale(1.02);
}

.hero__mock-panel--profit {
  top: 10px;
  left: 0;
  width: 260px;
  animation-delay: 0s;
}

.hero__mock-panel--sales {
  top: 30px;
  right: 0;
  width: 220px;
  animation-delay: -2s;
}

.hero__mock-panel--score {
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  width: 240px;
  animation-delay: -4s;
}

.hero__mock-panel--score:hover {
  transform: translateX(-50%) translateY(-4px) scale(1.02);
}

@keyframes floatPanel {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

.mock-panel__header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}

.mock-panel__icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
}

.mock-panel__icon--green { background: rgba(16, 185, 129, 0.15); }
.mock-panel__icon--blue { background: rgba(6, 182, 212, 0.15); }
.mock-panel__icon--amber { background: rgba(245, 158, 11, 0.15); }

.mock-panel__label {
  font-size: 13px;
  font-weight: 600;
  color: var(--pr-text-secondary);
}

.mock-panel__value {
  font-size: 28px;
  font-weight: 800;
  margin-bottom: 4px;
  line-height: 1.2;
}

.mock-panel__value--green { color: var(--pr-success-light); }
.mock-panel__value--cyan { color: var(--pr-accent-light); }
.mock-panel__value--amber { color: var(--pr-warning); }

.mock-panel__sub {
  font-size: 13px;
  color: var(--pr-text-muted);
}

.mock-panel__bar {
  margin-top: 12px;
  height: 8px;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.08);
  overflow: hidden;
}

.mock-panel__bar-fill {
  height: 100%;
  border-radius: 4px;
  background: var(--pr-gradient);
  transition: width 1.5s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ============ PLATFORMS ============ */
.platforms {
  padding: 40px 0;
  position: relative;
  z-index: 1;
  border-top: 1px solid var(--pr-border);
  border-bottom: 1px solid var(--pr-border);
  background: var(--pr-bg-alt);
}

.platforms__row {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.platforms__item {
  transition: all 0.3s ease;
}

.platforms__pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 24px;
  border-radius: var(--pr-radius-full);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.3px;
  border: 1px solid transparent;
  transition: all 0.3s ease;
}

.platforms__pill:hover {
  transform: translateY(-2px);
}

.platforms__pill--trendyol {
  background: rgba(245, 130, 32, 0.1);
  border-color: rgba(245, 130, 32, 0.25);
  color: #f58220;
}
.platforms__pill--trendyol:hover { background: rgba(245, 130, 32, 0.18); }

.platforms__pill--hepsiburada {
  background: rgba(255, 102, 0, 0.1);
  border-color: rgba(255, 102, 0, 0.25);
  color: #ff6600;
}
.platforms__pill--hepsiburada:hover { background: rgba(255, 102, 0, 0.18); }

.platforms__pill--n11 {
  background: rgba(118, 76, 163, 0.1);
  border-color: rgba(118, 76, 163, 0.25);
  color: #9b6fcf;
}
.platforms__pill--n11:hover { background: rgba(118, 76, 163, 0.18); }

.platforms__name { display: none; }

/* ============ FEATURES (BENTO GRID) ============ */
.features {
  padding: 120px 0;
  position: relative;
}

.features__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto;
  gap: 20px;
}

.feature-card {
  position: relative;
  background: var(--pr-glass);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--pr-glass-border);
  border-radius: var(--pr-radius-xl);
  padding: 32px 28px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--pr-radius-xl);
  padding: 1px;
  background: linear-gradient(135deg, rgba(99,102,241,0), rgba(139,92,246,0));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  transition: background 0.4s ease;
  pointer-events: none;
}

.feature-card:hover::before {
  background: linear-gradient(135deg, rgba(99,102,241,0.4), rgba(139,92,246,0.3), rgba(6,182,212,0.4));
}

.feature-card:hover {
  border-color: transparent;
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(99, 102, 241, 0.1);
}

/* Bento: ilk 2 kart buyuk */
.feature-card--large {
  grid-column: span 2;
  padding: 40px 36px;
}

.feature-card--large .feature-card__title {
  font-size: 24px;
}

.feature-card--large .feature-card__desc {
  font-size: 15px;
  max-width: 480px;
}

.feature-card--pro {
  border-color: rgba(99, 102, 241, 0.15);
}

.feature-card__badge {
  position: absolute;
  top: 16px;
  right: 16px;
  padding: 4px 12px;
  background: var(--pr-gradient-warm);
  border-radius: var(--pr-radius-full);
  font-size: 11px;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.5px;
}

.feature-card__icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.feature-card__icon--green { background: rgba(16, 185, 129, 0.12); color: #10b981; }
.feature-card__icon--blue { background: rgba(6, 182, 212, 0.12); color: #06b6d4; }
.feature-card__icon--purple { background: rgba(139, 92, 246, 0.12); color: #8b5cf6; }
.feature-card__icon--orange { background: rgba(245, 158, 11, 0.12); color: #f59e0b; }
.feature-card__icon--cyan { background: rgba(6, 182, 212, 0.12); color: #06b6d4; }
.feature-card__icon--pink { background: rgba(236, 72, 153, 0.12); color: #ec4899; }

.feature-card__title {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 10px;
}

.feature-card__desc {
  font-size: 14px;
  color: var(--pr-text-secondary);
  line-height: 1.7;
}

/* ============ STATS / SOCIAL PROOF ============ */
.stats-section {
  padding: 80px 0;
  position: relative;
  overflow: hidden;
  background: var(--pr-bg-alt);
}

.stats-section::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 800px;
  height: 400px;
  background: radial-gradient(ellipse, rgba(99, 102, 241, 0.08), transparent 60%);
  pointer-events: none;
}

.stats__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  position: relative;
  z-index: 1;
}

.stat-card {
  text-align: center;
  padding: 40px 24px;
  background: var(--pr-glass);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--pr-glass-border);
  border-radius: var(--pr-radius-xl);
  transition: all 0.3s ease;
}

.stat-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--pr-shadow-glow);
  border-color: rgba(99, 102, 241, 0.2);
}

.stat-card__number {
  font-size: 48px;
  font-weight: 800;
  background: var(--pr-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.1;
  margin-bottom: 8px;
}

.stat-card__label {
  font-size: 16px;
  font-weight: 600;
  color: var(--pr-text-secondary);
}

/* ============ HOW IT WORKS ============ */
.how-it-works {
  padding: 120px 0;
}

.steps {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 16px;
}

.step {
  text-align: center;
  flex: 1;
  max-width: 300px;
}

.step__number {
  width: 44px;
  height: 44px;
  background: var(--pr-gradient-warm);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 18px;
  color: #fff;
  margin-bottom: 20px;
  box-shadow: 0 4px 16px rgba(99, 102, 241, 0.3);
}

.step__icon {
  width: 76px;
  height: 76px;
  border-radius: 20px;
  background: var(--pr-glass);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--pr-glass-border);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  color: var(--pr-primary-light);
  transition: all 0.3s;
}

.step:hover .step__icon {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(99, 102, 241, 0.15);
}

.step__title {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 10px;
}

.step__desc {
  font-size: 14px;
  color: var(--pr-text-secondary);
  line-height: 1.7;
}

.step__connector {
  display: flex;
  align-items: center;
  padding-top: 80px;
  opacity: 0.3;
}

/* ============ PRICING ============ */
.pricing {
  padding: 120px 0;
  background: var(--pr-bg-alt);
}

.pricing__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: stretch;
}

.pricing-card {
  position: relative;
  background: var(--pr-glass);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--pr-glass-border);
  border-radius: var(--pr-radius-xl);
  padding: 36px 28px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: visible;
  display: flex;
  flex-direction: column;
}

.pricing-card:hover {
  border-color: var(--pr-border-hover);
  transform: translateY(-4px);
}

/* --- Free Card --- */
.pricing-card--free {
  border-color: rgba(100, 116, 139, 0.2);
}

.pricing-card--free:hover {
  border-color: rgba(100, 116, 139, 0.4);
  box-shadow: 0 8px 32px rgba(100, 116, 139, 0.1);
  transform: translateY(-4px);
}

.pricing-card--free .pricing-card__name {
  color: #94a3b8;
}

/* --- Featured / PRO Card - Neon Glow --- */
.pricing-card--featured {
  border-color: transparent;
  background-clip: padding-box;
  transform: scale(1.06);
  box-shadow:
    0 0 30px rgba(139, 92, 246, 0.3),
    0 0 60px rgba(99, 102, 241, 0.15),
    0 12px 48px rgba(99, 102, 241, 0.2);
}

.pricing-card--featured:hover {
  transform: scale(1.08);
  box-shadow:
    0 0 40px rgba(139, 92, 246, 0.45),
    0 0 80px rgba(99, 102, 241, 0.2),
    0 16px 56px rgba(99, 102, 241, 0.3);
}

.pricing-card--featured::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--pr-radius-xl);
  padding: 2px;
  background: linear-gradient(135deg, #8b5cf6, #6366f1, #06b6d4);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
  animation: neonPulse 3s ease-in-out infinite;
}

.pricing-card--featured::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 140px;
  border-radius: var(--pr-radius-xl) var(--pr-radius-xl) 0 0;
  background: radial-gradient(ellipse at 50% 0%, rgba(139, 92, 246, 0.15) 0%, rgba(99, 102, 241, 0.05) 50%, transparent 80%);
  pointer-events: none;
}

.pricing-card--featured .pricing-card__name {
  color: #a78bfa;
}

.pricing-card--featured .pricing-card__amount {
  background: linear-gradient(135deg, #a78bfa, #6366f1, #06b6d4);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.pricing-card--featured .pricing-card__currency {
  color: #a78bfa;
}

@keyframes neonPulse {
  0%, 100% { opacity: 0.6; }
  50% { opacity: 1; }
}

/* --- Business Card - Gold Glow --- */
.pricing-card--business {
  border-color: rgba(245, 158, 11, 0.2);
  box-shadow:
    0 0 25px rgba(245, 158, 11, 0.12),
    0 0 50px rgba(217, 119, 6, 0.06);
}

.pricing-card--business:hover {
  border-color: rgba(245, 158, 11, 0.4);
  box-shadow:
    0 0 35px rgba(245, 158, 11, 0.25),
    0 0 70px rgba(217, 119, 6, 0.12);
  transform: translateY(-6px);
}

.pricing-card--business::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--pr-radius-xl);
  padding: 1.5px;
  background: linear-gradient(135deg, rgba(251, 191, 36, 0.5), rgba(245, 158, 11, 0.5), rgba(217, 119, 6, 0.5));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}

.pricing-card--business::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 120px;
  border-radius: var(--pr-radius-xl) var(--pr-radius-xl) 0 0;
  background: radial-gradient(ellipse at 50% 0%, rgba(245, 158, 11, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

.pricing-card--business .pricing-card__name {
  color: #fbbf24;
}

.pricing-card--business .pricing-card__amount {
  background: linear-gradient(135deg, #fbbf24, #f59e0b, #d97706);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.pricing-card--business .pricing-card__currency {
  color: #f59e0b;
}

/* --- Popular Badge (Neon) --- */
.pricing-card__popular {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  padding: 5px 22px;
  background: linear-gradient(135deg, #8b5cf6, #6366f1);
  border-radius: var(--pr-radius-full);
  font-size: 12px;
  font-weight: 700;
  color: #fff;
  white-space: nowrap;
  box-shadow: 0 4px 20px rgba(139, 92, 246, 0.4), 0 0 12px rgba(99, 102, 241, 0.3);
  z-index: 2;
}

/* --- PRO CTA Neon Hover --- */
.pricing-card--featured .btn--primary:hover {
  box-shadow: 0 8px 30px rgba(99, 102, 241, 0.5), 0 0 20px rgba(139, 92, 246, 0.3);
}

/* --- Gold Button --- */
.btn--gold {
  background: linear-gradient(135deg, #fbbf24, #f59e0b, #d97706);
  color: #1a1a2e;
  font-weight: 700;
  border: none;
  box-shadow: 0 4px 20px rgba(245, 158, 11, 0.3);
}

.btn--gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(245, 158, 11, 0.45), 0 0 16px rgba(251, 191, 36, 0.2);
}

/* --- Card Shared Styles --- */
.pricing-card__header {
  text-align: center;
  margin-bottom: 28px;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--pr-border);
  position: relative;
  z-index: 1;
}

.pricing-card__name {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--pr-text-secondary);
}

.pricing-card__price {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 4px;
}

.pricing-card__amount {
  font-size: 52px;
  font-weight: 800;
  color: var(--pr-text);
  line-height: 1;
}

.pricing-card__currency {
  font-size: 20px;
  font-weight: 600;
  color: var(--pr-text-secondary);
}

.pricing-card__period {
  font-size: 14px;
  color: var(--pr-text-muted);
  margin-top: 4px;
}

.pricing-card__features {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 28px;
  position: relative;
  z-index: 1;
  flex-grow: 1;
}

.pricing-card__features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--pr-text-secondary);
}

.pricing-card__features li svg { flex-shrink: 0; }

.pricing-card__feature--disabled { opacity: 0.4; }

/* --- Reduced Motion --- */
@media (prefers-reduced-motion: reduce) {
  .pricing-card--featured::before { animation: none; opacity: 0.8; }
  .pricing-card, .pricing-card--featured { transition: none; }
}

/* ============ FAQ ============ */
.faq {
  padding: 120px 0;
}

.faq__list {
  max-width: 720px;
  margin: 0 auto;
}

.faq__item {
  border-bottom: 1px solid var(--pr-border);
}

.faq__question {
  width: 100%;
  text-align: left;
  padding: 22px 0;
  font-size: 16px;
  font-weight: 600;
  color: var(--pr-text);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  transition: color 0.2s;
}

.faq__question:hover { color: var(--pr-primary-light); }

.faq__question::after {
  content: '+';
  font-size: 24px;
  font-weight: 300;
  color: var(--pr-text-muted);
  transition: all 0.3s;
  flex-shrink: 0;
}

.faq__item--open .faq__question::after {
  content: '-';
  color: var(--pr-primary);
}

.faq__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq__item--open .faq__answer {
  max-height: 200px;
}

.faq__answer p {
  padding-bottom: 22px;
  font-size: 15px;
  color: var(--pr-text-secondary);
  line-height: 1.8;
}

/* ============ CTA ============ */
.cta-section {
  padding: 80px 0;
  background: var(--pr-bg-alt);
}

.cta-box {
  text-align: center;
  padding: 72px 48px;
  border-radius: var(--pr-radius-xl);
  position: relative;
  overflow: hidden;
  background: var(--pr-surface-solid);
  border: 1px solid var(--pr-glass-border);
}

/* Animated gradient aurora CTA bg */
.cta-box::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 80% at 20% 50%, rgba(99, 102, 241, 0.2), transparent 50%),
    radial-gradient(ellipse 50% 60% at 80% 40%, rgba(139, 92, 246, 0.15), transparent 50%),
    radial-gradient(ellipse 40% 50% at 50% 80%, rgba(6, 182, 212, 0.1), transparent 50%);
  animation: ctaAurora 8s ease-in-out infinite alternate;
  pointer-events: none;
}

@keyframes ctaAurora {
  0% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(2%, -1%) scale(1.02); }
  100% { transform: translate(-1%, 2%) scale(1); }
}

.cta-box__title {
  font-size: 36px;
  font-weight: 800;
  color: var(--pr-text);
  margin-bottom: 16px;
  position: relative;
  z-index: 1;
}

.cta-box__desc {
  font-size: 17px;
  color: var(--pr-text-secondary);
  margin-bottom: 32px;
  position: relative;
  z-index: 1;
}

.cta-box .btn--primary {
  position: relative;
  z-index: 1;
  box-shadow: 0 4px 24px rgba(99, 102, 241, 0.4);
}

.cta-box .btn--primary:hover {
  box-shadow: 0 8px 32px rgba(99, 102, 241, 0.5);
}

/* ============ FOOTER ============ */
.footer {
  padding: 60px 0 24px;
  border-top: 1px solid var(--pr-border);
}

.footer__inner {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 48px;
}

.footer__brand {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer__name {
  font-size: 18px;
  font-weight: 700;
}

.footer__desc {
  font-size: 13px;
  color: var(--pr-text-muted);
}

.footer__links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.footer__col h4 {
  font-size: 13px;
  font-weight: 700;
  color: var(--pr-text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 16px;
}

.footer__col a {
  display: block;
  font-size: 14px;
  color: var(--pr-text-muted);
  padding: 4px 0;
  transition: color 0.2s;
}

.footer__col a:hover { color: var(--pr-text); }

.footer__bottom {
  grid-column: 1 / -1;
  text-align: center;
  padding-top: 24px;
  border-top: 1px solid var(--pr-border);
  font-size: 13px;
  color: var(--pr-text-muted);
}

/* ============ MODAL ============ */
.modal {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: none;
  align-items: center;
  justify-content: center;
}

.modal--open { display: flex; }

.modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(8px);
}

.modal__content {
  position: relative;
  background: var(--pr-surface-solid);
  border: 1px solid var(--pr-glass-border);
  border-radius: var(--pr-radius-xl);
  max-width: 520px;
  width: 90%;
  max-height: 85vh;
  overflow-y: auto;
}

.modal__close {
  position: absolute;
  top: 12px;
  right: 16px;
  font-size: 28px;
  color: var(--pr-text-muted);
  z-index: 10;
}

.modal__close:hover { color: var(--pr-text); }

.modal__header { padding: 24px 28px 0; }

.modal__header h3 {
  font-size: 20px;
  font-weight: 700;
}

.modal__body { padding: 24px 28px 28px; }

/* ============ SUCCESS BANNER ============ */
.success-banner {
  position: fixed;
  top: 80px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 300;
  animation: slideDown 0.4s ease;
}

.success-banner__inner {
  display: flex;
  align-items: center;
  gap: 16px;
  background: var(--pr-surface-solid);
  border: 1px solid var(--pr-success);
  border-radius: var(--pr-radius);
  padding: 16px 24px;
  box-shadow: 0 8px 40px rgba(16, 185, 129, 0.15);
}

.success-banner__inner p {
  font-size: 13px;
  color: var(--pr-text-secondary);
  margin: 4px 0;
}

.success-banner__inner code {
  display: block;
  margin-top: 8px;
  padding: 8px 16px;
  background: var(--pr-bg);
  border-radius: 6px;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 1px;
  color: var(--pr-primary);
  user-select: all;
}

.success-banner__inner > button {
  font-size: 24px;
  color: var(--pr-text-muted);
  flex-shrink: 0;
}

@keyframes slideDown {
  from { transform: translateX(-50%) translateY(-20px); opacity: 0; }
  to { transform: translateX(-50%) translateY(0); opacity: 1; }
}

/* ============ CHECKOUT FORM ============ */
.checkout-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.checkout-form__field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.checkout-form__field label {
  font-size: 13px;
  font-weight: 600;
  color: var(--pr-text-secondary);
}

.checkout-form__field input {
  padding: 12px 16px;
  background: var(--pr-bg);
  border: 1px solid var(--pr-border);
  border-radius: 10px;
  color: var(--pr-text);
  font-size: 15px;
  transition: border-color 0.2s;
  font-family: inherit;
}

.checkout-form__field input:focus {
  outline: none;
  border-color: var(--pr-primary);
  box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.1);
}

.checkout-form__plan {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px;
  background: rgba(99, 102, 241, 0.06);
  border: 1px solid rgba(99, 102, 241, 0.15);
  border-radius: 12px;
}

.checkout-form__plan-name {
  font-weight: 700;
  font-size: 16px;
}

.checkout-form__plan-price {
  font-weight: 800;
  font-size: 18px;
  color: var(--pr-primary);
}

/* ============ SCROLL REVEAL ============ */
.is-visible {
  opacity: 1 !important;
  transform: translateY(0) !important;
}

/* ============ RESPONSIVE ============ */
@media (max-width: 1024px) {
  .hero {
    min-height: auto;
    padding: 140px 0 80px;
  }

  .hero__inner {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero__subtitle { margin: 0 auto 36px; }
  .hero__ctas { justify-content: center; }
  .hero__trust { justify-content: center; }

  .hero__visual {
    max-width: 420px;
    margin: 0 auto;
    min-height: 360px;
  }

  .features__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .feature-card--large {
    grid-column: span 2;
  }

  .stats__grid {
    gap: 20px;
  }
}

@media (max-width: 768px) {
  .navbar__links,
  .navbar__actions .btn {
    display: none;
  }

  .navbar__hamburger { display: flex; }

  .navbar__links--open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(11, 13, 23, 0.98);
    backdrop-filter: blur(20px);
    padding: 20px 24px;
    gap: 16px;
    border-bottom: 1px solid var(--pr-border);
  }

  .hero { padding: 120px 0 60px; }
  .hero__title { font-size: 38px; }
  .hero__visual { min-height: 320px; }
  .section-title { font-size: 30px; }

  .features__grid {
    grid-template-columns: 1fr;
  }

  .feature-card--large {
    grid-column: span 1;
  }

  .stats__grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .stat-card { padding: 28px 20px; }
  .stat-card__number { font-size: 40px; }

  .pricing__grid {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin: 0 auto;
  }

  .pricing-card--featured { transform: none; }
  .pricing-card--featured:hover { transform: none; }
  .pricing-card--featured,
  .pricing-card--business {
    box-shadow: none;
  }
  .pricing-card--featured { box-shadow: 0 0 20px rgba(139, 92, 246, 0.2); }
  .pricing-card--business { box-shadow: 0 0 15px rgba(245, 158, 11, 0.1); }

  .steps {
    flex-direction: column;
    align-items: center;
  }

  .step__connector {
    transform: rotate(90deg);
    padding: 0;
  }

  .footer__inner { grid-template-columns: 1fr; }
  .footer__links { grid-template-columns: repeat(2, 1fr); }

  .hero__ctas {
    flex-direction: column;
    align-items: center;
  }

  .hero__mock-panel--profit {
    width: 200px;
    padding: 18px;
  }

  .hero__mock-panel--sales {
    width: 180px;
    padding: 18px;
  }

  .hero__mock-panel--score {
    width: 200px;
    padding: 18px;
  }

  .cta-box { padding: 48px 24px; }
  .cta-box__title { font-size: 28px; }
}

@media (max-width: 480px) {
  .hero__title { font-size: 32px; }
  .container { padding: 0 16px; }
  .pricing-card { padding: 28px 20px; }
  .feature-card { padding: 24px 20px; }

  .hero__visual { min-height: 300px; }

  .hero__mock-panel--profit { width: 180px; left: -5px; }
  .hero__mock-panel--sales { width: 160px; right: -5px; }
  .hero__mock-panel--score { width: 180px; }
  .mock-panel__value { font-size: 24px; }

  .platforms__pill { padding: 8px 16px; font-size: 13px; }
}

/* ============ COOKIE CONSENT BANNER ============ */
.cookie-consent {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  background: var(--pr-surface-solid);
  border-top: 1px solid var(--pr-glass-border);
  padding: 16px 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 -4px 24px rgba(0, 0, 0, 0.3);
}
.cookie-consent p {
  font-size: 14px;
  color: var(--pr-text-secondary);
  margin: 0;
}
.cookie-consent__actions {
  display: flex;
  gap: 8px;
  flex-shrink: 0;
}

@media (max-width: 640px) {
  .cookie-consent {
    flex-direction: column;
    text-align: center;
    padding: 16px;
    gap: 12px;
  }
}

/* ============ CHECKOUT CONSENT ============ */
.checkout-form__consent {
  margin: 16px 0 8px;
}
.checkout-form__consent-label {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 13px;
  color: var(--pr-text-secondary);
  cursor: pointer;
  line-height: 1.5;
}
.checkout-form__consent-label input[type="checkbox"] {
  width: 18px;
  height: 18px;
  margin-top: 2px;
  flex-shrink: 0;
  accent-color: var(--pr-primary);
}
.checkout-form__consent-label a {
  color: var(--pr-primary);
  text-decoration: underline;
}

/* ============ SUCCESS KEY COPY ============ */
.success-banner__key-row {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 8px;
}
.success-banner__key-row code {
  font-size: 14px;
  background: rgba(99, 102, 241, 0.1);
  padding: 4px 10px;
  border-radius: 6px;
  letter-spacing: 1px;
  user-select: all;
}
.success-banner__key-row .btn--sm {
  font-size: 12px;
  padding: 4px 12px;
}

/* ============ ACTIVATION STATUS ============ */
.success-banner__activation {
  padding: 8px 14px;
  border-radius: 8px;
  margin-top: 10px;
  font-size: 13px;
  font-weight: 600;
}
.success-banner__activation--ok {
  background: rgba(16, 185, 129, 0.12);
  color: var(--pr-success-light);
  border: 1px solid rgba(16, 185, 129, 0.25);
}
.success-banner__activation--err {
  background: rgba(239, 68, 68, 0.12);
  color: #f87171;
  border: 1px solid rgba(239, 68, 68, 0.25);
}

/* ============ SUCCESS BANNER STEPS ============ */
.success-banner__steps {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 12px;
}
.success-banner__step {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: var(--pr-text-secondary);
}
.step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--pr-gradient-warm);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  flex-shrink: 0;
}
.success-banner__step .btn--sm {
  font-size: 12px;
  padding: 4px 14px;
}
