/* ============================================
   EMAIL BISNIS PREMIUM — HIGH CONVERSION LANDING PAGE
   Inspired by launchspecial.vip conversion structure
   ============================================ */

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

:root {
  /* Colors */
  --primary: #2563eb;
  --primary-dark: #1d4ed8;
  --primary-light: #3b82f6;
  --primary-50: #eff6ff;
  --primary-100: #dbeafe;
  --primary-900: #1e3a5f;
  --accent: #f59e0b;
  --accent-dark: #d97706;
  --accent-light: #fbbf24;
  --success: #10b981;
  --success-light: #d1fae5;
  --danger: #ef4444;
  --danger-light: #fee2e2;
  --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;
  --dark: #0f172a;

  /* Gradients */
  --gradient-primary: linear-gradient(135deg, #2563eb 0%, #7c3aed 100%);
  --gradient-hero: linear-gradient(135deg, #0f172a 0%, #1e3a5f 50%, #1d4ed8 100%);
  --gradient-cta: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
  --gradient-accent: linear-gradient(135deg, #f59e0b 0%, #ef4444 100%);
  --gradient-dark: linear-gradient(180deg, #0f172a 0%, #1e293b 100%);

  /* Shadows */
  --shadow-sm: 0 1px 2px rgba(0,0,0,0.05);
  --shadow-md: 0 4px 6px -1px rgba(0,0,0,0.1), 0 2px 4px -2px rgba(0,0,0,0.1);
  --shadow-lg: 0 10px 15px -3px rgba(0,0,0,0.1), 0 4px 6px -4px rgba(0,0,0,0.1);
  --shadow-xl: 0 20px 25px -5px rgba(0,0,0,0.1), 0 8px 10px -6px rgba(0,0,0,0.1);
  --shadow-2xl: 0 25px 50px -12px rgba(0,0,0,0.25);
  --shadow-primary: 0 10px 40px -10px rgba(37, 99, 235, 0.4);
  --shadow-glow: 0 0 60px rgba(37, 99, 235, 0.15);

  /* Typography */
  --font-sans: 'Plus Jakarta Sans', 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-mono: 'JetBrains Mono', monospace;

  /* Spacing */
  --section-py: 100px;
  --container-max: 1200px;

  /* Border Radius */
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-full: 9999px;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

body {
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.7;
  color: var(--gray-700);
  background: var(--white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 24px;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--primary);
  text-decoration: none;
  transition: color 0.2s;
}

a:hover {
  color: var(--primary-dark);
}

/* ---- UTILITY ---- */
.gradient-text {
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.link {
  color: var(--primary);
  font-weight: 600;
  border-bottom: 1px dashed var(--primary);
}

/* ---- BUTTONS ---- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-sans);
  font-weight: 600;
  border: 2px solid transparent;
  border-radius: var(--radius-full);
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  white-space: nowrap;
}

.btn-sm {
  padding: 8px 20px;
  font-size: 14px;
}

.btn-lg {
  padding: 16px 36px;
  font-size: 17px;
}

.btn-primary {
  background: var(--gradient-cta);
  color: var(--white) !important;
  border-color: transparent;
  box-shadow: var(--shadow-primary);
}

.btn-primary:hover {
  transform: translateY(-2px);
  background: var(--gradient-cta) !important;
  box-shadow: 0 14px 44px -10px rgba(37, 99, 235, 0.5);
  color: var(--white);
}

.btn-outline {
  background: transparent;
  color: var(--primary);
  border-color: var(--primary);
}

.btn-outline:hover {
  background: var(--primary);
  color: var(--white);
  transform: translateY(-2px);
}

.btn-ghost {
  background: transparent;
  color: var(--gray-600);
  border-color: var(--gray-300);
}

.btn-ghost:hover {
  border-color: var(--primary);
  color: var(--primary);
}

.btn-block {
  display: flex;
  width: 100%;
}

.pulse-btn {
  animation: pulse-shadow 2s infinite;
}

@keyframes pulse-shadow {
  0%, 100% { box-shadow: 0 0 0 0 rgba(37, 99, 235, 0.4); }
  50% { box-shadow: 0 0 0 12px rgba(37, 99, 235, 0); }
}

/* ---- TOP BAR ---- */
.top-bar {
  background: var(--gradient-dark);
  color: var(--white);
  font-size: 14px;
  padding: 10px 0;
  position: relative;
  z-index: 100;
}

.top-bar a {
  color: var(--accent-light);
  font-weight: 600;
}

.top-bar a:hover {
  color: var(--white);
}

/* ---- NAVBAR ---- */
.navbar {
  position: sticky;
  top: 0;
  z-index: 999;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  transition: all 0.3s ease;
}

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

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

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.logo img {
  border-radius: var(--radius-sm);
}

.logo-text {
  font-size: 20px;
  font-weight: 800;
  color: var(--gray-900);
}

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

.nav-links a {
  padding: 8px 14px;
  font-size: 14px;
  font-weight: 500;
  color: var(--gray-600);
  border-radius: var(--radius-sm);
  transition: all 0.2s;
}

.nav-links a:hover {
  color: var(--primary);
  background: var(--primary-50);
}

.nav-links .btn {
  margin-left: 8px;
}

.mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.mobile-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--gray-700);
  border-radius: 2px;
  transition: all 0.3s;
}

.mobile-menu {
  display: none;
  padding: 16px 24px;
  border-top: 1px solid var(--gray-200);
}

.mobile-menu a {
  display: block;
  padding: 12px 0;
  color: var(--gray-700);
  font-weight: 500;
  border-bottom: 1px solid var(--gray-100);
}

/* ---- HERO ---- */
.hero {
  position: relative;
  padding: 80px 0 0;
  overflow: hidden;
}

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

.hero .blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.3;
  animation: blob-float 8s ease-in-out infinite alternate;
}

.hero .blob-1 {
  width: 600px;
  height: 600px;
  background: #2563eb;
  top: -200px;
  right: -100px;
}

.hero .blob-2 {
  width: 400px;
  height: 400px;
  background: #7c3aed;
  bottom: -100px;
  left: -100px;
  animation-delay: 2s;
}

.hero .blob-3 {
  width: 300px;
  height: 300px;
  background: #f59e0b;
  top: 50%;
  left: 50%;
  animation-delay: 4s;
}

@keyframes blob-float {
  0% { transform: translate(0, 0) scale(1); }
  100% { transform: translate(30px, -30px) scale(1.1); }
}

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

.hero-badge {
  display: inline-block;
  background: var(--primary-50);
  color: var(--primary);
  font-size: 13px;
  font-weight: 600;
  padding: 6px 16px;
  border-radius: var(--radius-full);
  border: 1px solid var(--primary-100);
  margin-bottom: 24px;
  animation: fadeInUp 0.6s ease;
}

.hero-title {
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 900;
  line-height: 1.1;
  color: var(--gray-900);
  margin-bottom: 24px;
  animation: fadeInUp 0.6s ease 0.1s both;
}

.hero-subtitle {
  font-size: 18px;
  color: var(--gray-600);
  margin-bottom: 32px;
  max-width: 540px;
  animation: fadeInUp 0.6s ease 0.2s both;
}

.hero-cta-group {
  display: flex;
  gap: 16px;
  margin-bottom: 40px;
  animation: fadeInUp 0.6s ease 0.3s both;
}

.hero-trust {
  display: flex;
  align-items: center;
  gap: 16px;
  animation: fadeInUp 0.6s ease 0.4s both;
}

.trust-avatars {
  display: flex;
}

.trust-avatars img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 3px solid var(--white);
  margin-left: -10px;
}

.trust-avatars img:first-child {
  margin-left: 0;
}

.trust-text {
  font-size: 14px;
  color: var(--gray-500);
}

.trust-text strong {
  color: var(--gray-800);
}

.stars {
  color: var(--accent);
  font-size: 13px;
}

.stars span {
  color: var(--gray-500);
  font-weight: 600;
}

/* Hero Visual */
.hero-visual {
  position: relative;
  animation: fadeInRight 0.8s ease 0.3s both;
}

.hero-image-card {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-2xl);
}

.hero-image-card img {
  width: 100%;
  height: 400px;
  object-fit: cover;
}

.hero-card-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 20px;
  background: linear-gradient(transparent, rgba(0,0,0,0.7));
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.stat-pill {
  background: rgba(16, 185, 129, 0.9);
  color: var(--white);
  padding: 6px 14px;
  border-radius: var(--radius-full);
  font-size: 12px;
  font-weight: 600;
  backdrop-filter: blur(10px);
}

/* Hero Stats Bar */
.hero-stats {
  margin-top: 60px;
  padding: 40px 0;
  background: var(--white);
  border-top: 1px solid var(--gray-100);
  border-bottom: 1px solid var(--gray-100);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  text-align: center;
}

.stat-item {
  padding: 16px;
}

.stat-number {
  font-size: 36px;
  font-weight: 900;
  color: var(--primary);
  line-height: 1;
  margin-bottom: 8px;
}

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

.stat-divider {
  width: 1px;
  background: var(--gray-200);
  align-self: stretch;
}

/* ---- TRUSTED BY ---- */
.trusted-by {
  padding: 40px 0;
  background: var(--gray-50);
  border-bottom: 1px solid var(--gray-100);
}

.trusted-by-label {
  text-align: center;
  font-size: 14px;
  color: var(--gray-400);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 24px;
}

.trusted-logos {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 24px;
}

.trusted-logo-item {
  padding: 12px 24px;
  background: var(--white);
  border-radius: var(--radius-md);
  font-size: 14px;
  font-weight: 600;
  color: var(--gray-600);
  border: 1px solid var(--gray-200);
  white-space: nowrap;
}

/* ---- SECTIONS ---- */
.section {
  padding: var(--section-py) 0;
}

.section-header {
  text-align: center;
  margin-bottom: 64px;
}

.section-badge {
  display: inline-block;
  font-size: 13px;
  font-weight: 700;
  padding: 6px 16px;
  border-radius: var(--radius-full);
  background: var(--primary-50);
  color: var(--primary);
  border: 1px solid var(--primary-100);
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.section-title {
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 800;
  color: var(--gray-900);
  line-height: 1.2;
  margin-bottom: 16px;
}

.section-subtitle {
  font-size: 18px;
  color: var(--gray-500);
  max-width: 640px;
  margin: 0 auto;
}

/* ---- PROBLEM / STORY SECTION ---- */
.problem-section {
  background: var(--gray-50);
}

.story-card {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 40px;
  align-items: center;
  margin-bottom: 60px;
  background: var(--white);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--gray-100);
}

.story-card:last-child {
  margin-bottom: 0;
}

.story-card.reverse {
  direction: rtl;
}

.story-card.reverse > * {
  direction: ltr;
}

.story-image {
  position: relative;
  min-height: 300px;
}

.story-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.story-image-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  background: rgba(0,0,0,0.7);
  color: var(--white);
  padding: 4px 14px;
  border-radius: var(--radius-full);
  font-size: 13px;
  font-weight: 600;
  backdrop-filter: blur(10px);
}

.story-content {
  padding: 40px;
}

.story-content h3 {
  font-size: 22px;
  font-weight: 800;
  color: var(--gray-900);
  margin-bottom: 16px;
  line-height: 1.3;
}

.story-content p {
  margin-bottom: 12px;
  color: var(--gray-600);
}

.story-result {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 20px;
  border-radius: var(--radius-md);
  font-size: 15px;
  font-weight: 600;
  margin-top: 16px;
}

.story-result.bad {
  background: var(--danger-light);
  color: var(--danger);
}

/* ---- PAIN GRID ---- */
.pain-grid-section {
  background: var(--white);
}

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

.pain-card {
  padding: 32px;
  background: var(--gray-50);
  border-radius: var(--radius-lg);
  border: 1px solid var(--gray-200);
  transition: all 0.3s;
}

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

.pain-icon img {
  width: 60px;
  height: 60px;
  border-radius: var(--radius-md);
  object-fit: cover;
  margin-bottom: 16px;
}

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

.pain-card p {
  color: var(--gray-500);
  font-size: 15px;
  margin-bottom: 16px;
}

.pain-compare {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.compare-bad {
  font-size: 14px;
  color: var(--danger);
}

.compare-good {
  font-size: 14px;
  color: var(--success);
  font-weight: 700;
}

.pain-cta {
  text-align: center;
  padding: 40px;
  background: var(--gray-50);
  border-radius: var(--radius-xl);
  border: 2px dashed var(--gray-300);
}

.pain-cta p {
  font-size: 18px;
  color: var(--gray-600);
  margin-bottom: 20px;
}

/* ---- BEFORE/AFTER ---- */
.solution-section {
  background: var(--gray-50);
}

.before-after {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 24px;
  align-items: stretch;
  margin-bottom: 64px;
}

.ba-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 32px;
  border: 2px solid var(--gray-200);
}

.ba-before {
  border-color: var(--danger);
  background: linear-gradient(135deg, #fff5f5 0%, var(--white) 100%);
}

.ba-after {
  border-color: var(--success);
  background: linear-gradient(135deg, #f0fdf4 0%, var(--white) 100%);
  position: relative;
  overflow: hidden;
}

.ba-after::after {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle, rgba(16,185,129,0.05) 0%, transparent 70%);
  pointer-events: none;
}

.ba-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}

.ba-emoji {
  font-size: 32px;
}

.ba-header h3 {
  font-size: 20px;
  font-weight: 800;
}

.ba-card ul {
  list-style: none;
  margin-bottom: 20px;
}

.ba-card li {
  padding: 6px 0;
  font-size: 15px;
  color: var(--gray-600);
}

.ba-divider {
  display: flex;
  align-items: center;
  justify-content: center;
}

.ba-arrow {
  width: 60px;
  height: 60px;
  background: var(--gradient-primary);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  font-weight: 900;
  box-shadow: var(--shadow-primary);
  animation: arrow-pulse 2s infinite;
}

@keyframes arrow-pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.1); }
}

.ba-image img {
  width: 100%;
  height: 150px;
  object-fit: cover;
  border-radius: var(--radius-md);
  opacity: 0.8;
}

/* Success Story */
.success-story {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 48px;
  align-items: center;
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 48px;
  box-shadow: var(--shadow-xl);
  border: 2px solid var(--success);
}

.story-badge {
  display: inline-block;
  background: var(--success-light);
  color: var(--success);
  font-size: 12px;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: var(--radius-full);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 12px;
}

.success-story h3 {
  font-size: 24px;
  font-weight: 800;
  color: var(--gray-900);
  line-height: 1.3;
  margin-bottom: 16px;
}

.success-story p {
  color: var(--gray-600);
  font-size: 16px;
  margin-bottom: 24px;
}

.success-metrics {
  display: flex;
  gap: 32px;
  margin-bottom: 24px;
}

.metric {
  text-align: center;
}

.metric-number {
  font-size: 32px;
  font-weight: 900;
  color: var(--success);
  line-height: 1;
  margin-bottom: 4px;
}

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

.success-author {
  font-size: 14px;
  color: var(--gray-400);
  font-style: italic;
}

.success-story-image img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  border-radius: var(--radius-lg);
}

/* ---- FEATURES ---- */
.features-section {
  background: var(--white);
}

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

.feature-card {
  padding: 32px;
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--gray-200);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.feature-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-xl);
  border-color: var(--primary);
}

.feature-card.featured-card {
  border-color: var(--primary);
  background: linear-gradient(135deg, var(--primary-50) 0%, var(--white) 100%);
}

.feature-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  background: var(--accent);
  color: var(--white);
  font-size: 11px;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: var(--radius-full);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.feature-icon img {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-md);
  object-fit: cover;
  margin-bottom: 20px;
}

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

.feature-card p {
  color: var(--gray-500);
  font-size: 15px;
  margin-bottom: 16px;
}

.feature-list {
  list-style: none;
}

.feature-list li {
  font-size: 14px;
  color: var(--gray-600);
  padding: 4px 0;
}

.feature-list li.highlight {
  color: var(--primary);
  font-weight: 600;
}

/* ---- PROCESS ---- */
.process-section {
  background: var(--gray-50);
}

.process-timeline {
  display: flex;
  flex-direction: column;
  gap: 48px;
  margin-bottom: 48px;
}

.process-step {
  display: grid;
  grid-template-columns: 80px 300px 1fr;
  gap: 32px;
  align-items: center;
}

.process-number {
  width: 72px;
  height: 72px;
  background: var(--gradient-primary);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  font-weight: 900;
  box-shadow: var(--shadow-primary);
  flex-shrink: 0;
}

.process-image img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

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

.process-content p {
  color: var(--gray-500);
  font-size: 15px;
}

.process-cta {
  text-align: center;
}

.process-cta .btn {
  margin-bottom: 12px;
}

.process-note {
  font-size: 14px;
  color: var(--gray-400);
}

/* ---- PRICING ---- */
.pricing-section {
  background: var(--white);
}

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

.pricing-card {
  background: var(--white);
  border: 2px solid var(--gray-200);
  border-radius: var(--radius-xl);
  padding: 36px 32px;
  text-align: center;
  position: relative;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
}

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

.pricing-card.pricing-featured {
  border-color: var(--primary);
  background: var(--white);
  transform: scale(1.05);
  box-shadow: var(--shadow-2xl);
  z-index: 1;
}

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

.pricing-popular {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: var(--white);
  font-size: 12px;
  font-weight: 700;
  padding: 6px 20px;
  border-radius: var(--radius-full);
  white-space: nowrap;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.pricing-header h3 {
  font-size: 24px;
  font-weight: 800;
  color: var(--gray-900);
  margin-bottom: 4px;
}

.pricing-header p {
  font-size: 14px;
  color: var(--gray-400);
  margin-bottom: 24px;
}

.pricing-amount {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 4px;
  margin-bottom: 8px;
}

.pricing-currency {
  font-size: 20px;
  font-weight: 700;
  color: var(--gray-600);
}

.pricing-value {
  font-size: 48px;
  font-weight: 900;
  color: var(--gray-900);
  line-height: 1;
}

.pricing-featured .pricing-value {
  color: var(--primary);
}

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

.pricing-annual {
  font-size: 14px;
  color: var(--gray-500);
  margin-bottom: 24px;
}

.save-badge {
  display: inline-block;
  background: var(--success-light);
  color: var(--success);
  font-size: 12px;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: var(--radius-sm);
  margin-left: 4px;
}

.pricing-features {
  list-style: none;
  text-align: left;
  margin-bottom: 28px;
  flex-grow: 1;
}

.pricing-features li {
  padding: 8px 0;
  font-size: 15px;
  color: var(--gray-600);
  border-bottom: 1px solid var(--gray-100);
}

.pricing-features li.highlight {
  color: var(--primary);
  font-weight: 600;
}

.pricing-card .btn {
  margin-top: auto;
}

/* Price Anchor */
.price-anchor {
  margin-bottom: 40px;
}

.price-anchor-inner {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 24px;
  align-items: center;
  background: var(--gradient-dark);
  color: var(--white);
  padding: 32px;
  border-radius: var(--radius-xl);
}

.price-anchor-image img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--accent);
}

.price-anchor-content h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 8px;
}

.price-anchor-content p {
  color: var(--gray-300);
  font-size: 15px;
}

/* Guarantee */
.guarantee-box {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 24px;
  align-items: center;
  background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
  padding: 32px;
  border-radius: var(--radius-xl);
  border: 2px solid var(--success);
}

.guarantee-icon {
  font-size: 48px;
}

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

.guarantee-content p {
  color: var(--gray-600);
  font-size: 15px;
}

/* ---- TESTIMONIALS ---- */
.testimonials-section {
  background: var(--gray-50);
}

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

.testimonial-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 28px;
  border: 1px solid var(--gray-200);
  transition: all 0.3s;
}

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

.testimonial-stars {
  color: var(--accent);
  font-size: 16px;
  margin-bottom: 16px;
  letter-spacing: 2px;
}

.testimonial-text {
  font-size: 15px;
  color: var(--gray-600);
  line-height: 1.7;
  margin-bottom: 20px;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
  border-top: 1px solid var(--gray-100);
  padding-top: 16px;
}

.testimonial-author img {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
}

.testimonial-author strong {
  display: block;
  font-size: 15px;
  color: var(--gray-900);
}

.testimonial-author span {
  font-size: 13px;
  color: var(--gray-400);
}

/* ---- FAQ ---- */
.faq-section {
  background: var(--white);
}

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

.faq-item {
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-md);
  margin-bottom: 12px;
  overflow: hidden;
  transition: all 0.3s;
}

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

.faq-item[open] {
  border-color: var(--primary);
  background: var(--white);
  box-shadow: var(--shadow-md);
}

.faq-item summary {
  padding: 20px 24px;
  font-size: 16px;
  font-weight: 600;
  color: var(--gray-800);
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: color 0.2s;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: '+';
  font-size: 24px;
  font-weight: 300;
  color: var(--primary);
  transition: transform 0.3s;
}

.faq-item[open] summary::after {
  content: '−';
}

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

.faq-answer {
  padding: 0 24px 20px;
}

.faq-answer p {
  font-size: 15px;
  color: var(--gray-600);
  line-height: 1.7;
}

.faq-image {
  margin-top: 12px;
  border-radius: var(--radius-md);
  width: 100%;
  height: auto;
}

/* ---- FINAL CTA ---- */
.final-cta-section {
  position: relative;
  padding: 80px 0;
  overflow: hidden;
  background: var(--gradient-dark);
  color: var(--white);
}

.final-cta-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.final-cta-bg .blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.15;
}

.final-cta-bg .blob-1 {
  width: 500px;
  height: 500px;
  background: #2563eb;
  top: -200px;
  right: -100px;
}

.final-cta-bg .blob-2 {
  width: 400px;
  height: 400px;
  background: #7c3aed;
  bottom: -200px;
  left: -100px;
}

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

.final-cta-content h2 {
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 800;
  margin-bottom: 16px;
}

.final-cta-subtitle {
  font-size: 18px;
  color: var(--gray-300);
  margin-bottom: 40px;
}

.final-cta-subtitle strong {
  color: var(--accent-light);
}

.final-cta-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 40px;
}

.cta-card {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 24px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-lg);
  color: var(--white);
  text-decoration: none;
  backdrop-filter: blur(10px);
  transition: all 0.3s;
}

.cta-card:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.3);
  transform: translateY(-4px);
  color: var(--white);
}

.cta-card.whatsapp:hover {
  border-color: #25d366;
  box-shadow: 0 0 30px rgba(37, 211, 102, 0.2);
}

.cta-card.email:hover {
  border-color: var(--primary);
  box-shadow: 0 0 30px rgba(37, 99, 235, 0.2);
}

.cta-card.phone:hover {
  border-color: var(--accent);
  box-shadow: 0 0 30px rgba(245, 158, 11, 0.2);
}

.cta-icon {
  font-size: 28px;
  flex-shrink: 0;
}

.cta-card strong {
  display: block;
  font-size: 16px;
  margin-bottom: 2px;
}

.cta-card span {
  font-size: 13px;
  color: var(--gray-400);
}

.final-cta-trust {
  display: flex;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
}

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

.trust-item strong {
  color: var(--gray-200);
  display: block;
}

.trust-item span {
  font-size: 12px;
}

.trust-item img {
  border-radius: 6px;
}

/* ---- FOOTER ---- */
.footer {
  background: var(--gray-900);
  color: var(--gray-400);
  padding: 64px 0 32px;
}

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

.footer-brand .logo {
  margin-bottom: 12px;
}

.footer-brand .logo-text {
  color: var(--white);
}

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

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

.footer-links a, .footer-links p {
  display: block;
  font-size: 14px;
  color: var(--gray-400);
  padding: 4px 0;
}

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

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

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

.footer-bottom-links a {
  color: var(--gray-500);
}

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

/* ---- FLOATING WHATSAPP ---- */
.floating-wa {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 60px;
  height: 60px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  z-index: 9999;
  transition: all 0.3s;
  animation: wa-bounce 2s ease-in-out infinite;
}

.floating-wa:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 30px rgba(37, 211, 102, 0.6);
  color: var(--white);
}

@keyframes wa-bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}

/* ---- ANIMATIONS ---- */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(40px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ---- RESPONSIVE ---- */
@media (max-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }

  .hero-subtitle {
    margin: 0 auto 32px;
  }

  .hero-cta-group {
    justify-content: center;
  }

  .hero-trust {
    justify-content: center;
  }

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

  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 440px;
    margin: 0 auto 48px;
  }

  .pricing-card.pricing-featured {
    transform: none;
    order: -1;
  }

  .pricing-card.pricing-featured:hover {
    transform: translateY(-6px);
  }

  .testimonials-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .before-after {
    grid-template-columns: 1fr;
  }

  .ba-divider {
    padding: 12px 0;
  }

  .story-card,
  .story-card.reverse {
    grid-template-columns: 1fr;
    direction: ltr;
  }

  .process-step {
    grid-template-columns: 60px 1fr;
    gap: 20px;
  }

  .process-image {
    grid-column: 1 / -1;
  }

  .success-story {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .success-metrics {
    justify-content: center;
  }
}

@media (max-width: 768px) {
  :root {
    --section-py: 64px;
  }

  .nav-links {
    display: none;
  }

  .mobile-toggle {
    display: flex;
  }

  .mobile-menu.active {
    display: block;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
  }

  .stat-divider {
    display: none;
  }

  .stat-number {
    font-size: 28px;
  }

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

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

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

  .final-cta-cards {
    grid-template-columns: 1fr;
  }

  .price-anchor-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .guarantee-box {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-cta-group {
    flex-direction: column;
  }

  .hero-cta-group .btn {
    width: 100%;
  }

  .trusted-logos {
    gap: 12px;
  }

  .trusted-logo-item {
    font-size: 12px;
    padding: 8px 16px;
  }

  .story-content {
    padding: 24px;
  }

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

  .footer-bottom {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }

  .final-cta-trust {
    flex-direction: column;
    gap: 16px;
  }

  .process-step {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .process-number {
    margin: 0 auto;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 16px;
  }

  .hero-title {
    font-size: 28px;
  }

  .section-title {
    font-size: 24px;
  }

  .pricing-value {
    font-size: 40px;
  }

  .success-metrics {
    flex-direction: column;
    gap: 16px;
  }
}
