/* ===== PROMO BANNER ===== */
.promo-banner {
  background: linear-gradient(90deg, var(--orange) 0%, var(--amber) 100%);
  color: var(--white);
  text-align: center;
  padding: 10px 0;
  font-family: 'Inter', sans-serif;
  font-size: 0.85rem;
  font-weight: 500;
  position: relative;
  z-index: 1001;
  letter-spacing: 0.3px;
}
.promo-banner strong { font-weight: 700; }
.promo-countdown {
  display: inline-block;
  font-weight: 700;
  background: rgba(0,0,0,0.2);
  padding: 2px 10px;
  border-radius: 4px;
  margin-left: 4px;
  font-variant-numeric: tabular-nums;
}
@media (max-width: 768px) {
  .promo-banner { font-size: 0.75rem; padding: 8px 10px; }
}

/* ===== SalesEdge — Premium Design System ===== */
/* Palette: Deep Teal + Ocean Blue + Sky Blue + Orange + White */

@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700;800;900&family=Inter:wght@300;400;500;600;700&display=swap');

:root {
  /* Blues */
  --navy: #023047;
  --navy-light: #0a3d5c;
  --blue: #219EBC;
  --blue-light: #8ECAE6;
  --blue-pale: #d4eef8;
  --ice: #eef7fc;

  /* Oranges */
  --orange: #FB8500;
  --orange-hover: #e87a00;
  --amber: #FFB703;
  --orange-glow: rgba(251, 133, 0, 0.35);

  /* Neutrals */
  --white: #FFFFFF;
  --off-white: #F8FAFC;
  --gray-100: #F1F5F9;
  --gray-200: #E2E8F0;
  --gray-400: #94A3B8;
  --gray-600: #475569;
  --gray-800: #1E293B;

  /* Spacing */
  --section-pad: clamp(80px, 10vw, 120px);
  --max-w: 1200px;

  /* Shadows */
  --shadow-sm: 0 1px 3px rgba(2, 48, 71, 0.06), 0 1px 2px rgba(2, 48, 71, 0.04);
  --shadow-md: 0 4px 6px -1px rgba(2, 48, 71, 0.08), 0 2px 4px -2px rgba(2, 48, 71, 0.04);
  --shadow-lg: 0 20px 25px -5px rgba(2, 48, 71, 0.08), 0 8px 10px -6px rgba(2, 48, 71, 0.03);
  --shadow-xl: 0 25px 50px -12px rgba(2, 48, 71, 0.15);
  --shadow-orange: 0 4px 14px rgba(251, 133, 0, 0.4);
  --shadow-orange-lg: 0 8px 25px rgba(251, 133, 0, 0.5);

  /* Radius */
  --r-sm: 8px;
  --r-md: 12px;
  --r-lg: 16px;
  --r-xl: 24px;
  --r-full: 50px;
}

/* ===== Reset ===== */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--gray-600);
  line-height: 1.7;
  overflow-x: hidden;
  background: var(--white);
}

img { max-width: 100%; display: block; }
a { text-decoration: none; }
ul { list-style: none; }

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

/* ===== Typography ===== */
h1, h2, h3, h4 {
  font-family: 'Montserrat', sans-serif;
  color: var(--navy);
  line-height: 1.15;
  letter-spacing: -0.02em;
}
h1 { font-size: clamp(2.4rem, 5.5vw, 3.8rem); font-weight: 900; }
h2 { font-size: clamp(1.8rem, 4vw, 2.8rem); font-weight: 800; }
h3 { font-size: clamp(1.1rem, 2vw, 1.35rem); font-weight: 700; }

.section-header {
  text-align: center;
  margin-bottom: 64px;
}
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--orange);
  margin-bottom: 16px;
}
.section-label::before,
.section-label::after {
  content: '';
  width: 24px;
  height: 2px;
  background: var(--orange);
  border-radius: 1px;
}
.section-header p {
  color: var(--gray-400);
  font-size: 1.1rem;
  max-width: 560px;
  margin: 16px auto 0;
}

/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  border: none;
  border-radius: var(--r-full);
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  text-decoration: none;
  position: relative;
  overflow: hidden;
}

.btn-primary {
  padding: 18px 40px;
  background: linear-gradient(135deg, var(--orange) 0%, #FF9D33 100%);
  color: var(--white);
  box-shadow: var(--shadow-orange);
}
.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-orange-lg);
}
.btn-primary:active { transform: translateY(-1px); }

.btn-secondary {
  padding: 16px 36px;
  background: rgba(255,255,255,0.1);
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.25);
  backdrop-filter: blur(4px);
}
.btn-secondary:hover {
  background: rgba(255,255,255,0.2);
  border-color: rgba(255,255,255,0.5);
  transform: translateY(-2px);
}

.btn-outline {
  padding: 16px 36px;
  background: transparent;
  color: var(--navy);
  border: 2px solid var(--navy);
}
.btn-outline:hover {
  background: var(--navy);
  color: var(--white);
  transform: translateY(-2px);
}

.btn-bundle {
  padding: 20px 48px;
  font-size: 1.1rem;
  background: linear-gradient(135deg, var(--orange) 0%, var(--amber) 100%);
  color: var(--navy);
  box-shadow: var(--shadow-orange);
}
.btn-bundle:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-orange-lg);
}

/* Pulse animation on CTA */
@keyframes pulse-ring {
  0% { box-shadow: 0 0 0 0 var(--orange-glow); }
  70% { box-shadow: 0 0 0 12px rgba(251, 133, 0, 0); }
  100% { box-shadow: 0 0 0 0 rgba(251, 133, 0, 0); }
}
.btn-pulse { animation: pulse-ring 2s infinite; }

/* ===== Navigation ===== */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 20px 0;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.nav.scrolled {
  padding: 12px 0;
  background: rgba(2, 48, 71, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 4px 30px rgba(0,0,0,0.15);
}
.nav .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.6rem;
  font-weight: 900;
  color: var(--white);
  letter-spacing: -0.03em;
}
.logo em {
  font-style: normal;
  color: var(--orange);
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
}
.nav-links a {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  color: rgba(255,255,255,0.7);
  transition: color 0.3s;
}
.nav-links a:hover { color: var(--white); }
.nav-cta.btn-primary {
  padding: 12px 28px;
  font-size: 0.85rem;
}
.mobile-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 1001;
}
.mobile-toggle span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--white);
  margin: 6px 0;
  border-radius: 2px;
  transition: 0.3s;
}

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 120px 0 80px;
  background: linear-gradient(155deg, #011627 0%, var(--navy) 40%, var(--navy-light) 100%);
  overflow: hidden;
}

/* Animated gradient orbs */
.hero::before {
  content: '';
  position: absolute;
  top: -20%;
  right: -10%;
  width: 700px;
  height: 700px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(33, 158, 188, 0.2) 0%, transparent 70%);
  animation: float-orb 8s ease-in-out infinite;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -15%;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(251, 133, 0, 0.12) 0%, transparent 70%);
  animation: float-orb 10s ease-in-out infinite reverse;
}
@keyframes float-orb {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(30px, -30px) scale(1.05); }
  66% { transform: translate(-20px, 20px) scale(0.95); }
}

/* Grid pattern overlay */
.hero-grid-overlay {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(142, 202, 230, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(142, 202, 230, 0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}

.hero .container {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 80px;
  align-items: center;
}

.hero-content { max-width: 600px; }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(251, 133, 0, 0.12);
  border: 1px solid rgba(251, 133, 0, 0.25);
  color: var(--amber);
  padding: 10px 20px;
  border-radius: var(--r-full);
  font-family: 'Montserrat', sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  margin-bottom: 28px;
  letter-spacing: 0.5px;
}

.hero h1 {
  color: var(--white);
  margin-bottom: 24px;
}
.hero h1 .highlight {
  display: block;
  background: linear-gradient(135deg, var(--orange) 0%, var(--amber) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-text {
  color: rgba(255,255,255,0.6);
  font-size: 1.2rem;
  line-height: 1.8;
  margin-bottom: 40px;
}

.hero-buttons { display: flex; gap: 16px; flex-wrap: wrap; }

.hero-stats {
  display: flex;
  gap: 48px;
  margin-top: 56px;
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.stat-number {
  display: block;
  font-family: 'Montserrat', sans-serif;
  font-size: 2rem;
  font-weight: 900;
  color: var(--white);
}
.stat-number .accent { color: var(--orange); }
.stat-label {
  color: rgba(255,255,255,0.4);
  font-size: 0.85rem;
  margin-top: 4px;
}

/* Hero Visual — Glass card */
.hero-visual { position: relative; }

.hero-glass {
  background: rgba(255,255,255,0.04);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--r-xl);
  padding: 40px 36px;
  position: relative;
  overflow: hidden;
}
.hero-glass::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--blue), var(--orange), var(--amber));
}

.glass-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 28px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.glass-icon {
  width: 52px; height: 52px;
  background: linear-gradient(135deg, var(--orange), var(--amber));
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  font-size: 24px;
}
.glass-title {
  font-family: 'Montserrat', sans-serif;
  color: var(--white);
  font-size: 1.2rem;
  font-weight: 700;
}
.glass-subtitle {
  color: rgba(255,255,255,0.4);
  font-size: 0.85rem;
}

.glass-list { display: flex; flex-direction: column; gap: 14px; }
.glass-list-item {
  display: flex;
  align-items: center;
  gap: 14px;
  color: rgba(255,255,255,0.75);
  font-size: 0.95rem;
  padding: 12px 16px;
  background: rgba(255,255,255,0.03);
  border-radius: var(--r-md);
  transition: all 0.3s;
}
.glass-list-item:hover {
  background: rgba(255,255,255,0.06);
  transform: translateX(4px);
}
.glass-check {
  width: 28px; height: 28px; min-width: 28px;
  background: rgba(251, 133, 0, 0.15);
  border: 1px solid rgba(251, 133, 0, 0.3);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  color: var(--orange);
  font-size: 14px;
  font-weight: 700;
}

/* Floating elements around hero card */
.hero-float {
  position: absolute;
  background: rgba(255,255,255,0.06);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--r-md);
  padding: 14px 20px;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--white);
  display: flex; align-items: center; gap: 10px;
  animation: float-badge 4s ease-in-out infinite;
  z-index: 3;
}
.hero-float--top {
  top: -20px; right: -30px;
  animation-delay: 0s;
}
.hero-float--bottom {
  bottom: -20px; left: -20px;
  animation-delay: 2s;
}
@keyframes float-badge {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

/* ===== Logos / Social Proof Bar ===== */
.proof-bar {
  padding: 48px 0;
  background: var(--white);
  border-bottom: 1px solid var(--gray-200);
}
.proof-bar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}
.proof-stat {
  text-align: center;
  flex: 1;
  min-width: 140px;
}
.proof-number {
  font-family: 'Montserrat', sans-serif;
  font-size: 2rem;
  font-weight: 900;
  color: var(--navy);
}
.proof-number .orange { color: var(--orange); }
.proof-text {
  color: var(--gray-400);
  font-size: 0.85rem;
  margin-top: 4px;
}
.proof-divider {
  width: 1px;
  height: 48px;
  background: var(--gray-200);
}

/* ===== Problem Section ===== */
.problems {
  padding: var(--section-pad) 0;
  background: var(--off-white);
}
.problems-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.problem-card {
  background: var(--white);
  border-radius: var(--r-lg);
  padding: 36px 32px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-200);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}
.problem-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(180deg, var(--blue), var(--blue-light));
  border-radius: 0 4px 4px 0;
}
.problem-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--blue-pale);
}
.problem-emoji {
  font-size: 2.2rem;
  margin-bottom: 18px;
}
.problem-card h3 { margin-bottom: 10px; }
.problem-card p { font-size: 0.95rem; line-height: 1.7; }

/* ===== Products Section ===== */
.products {
  padding: var(--section-pad) 0;
  background: var(--white);
}
.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  align-items: start;
}

.product-card {
  background: var(--white);
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 2px solid var(--gray-200);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
}
.product-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
}

/* Featured product (middle card) */
.product-card.featured {
  border-color: var(--orange);
  transform: scale(1.04);
  box-shadow: var(--shadow-lg);
  z-index: 2;
}
.product-card.featured:hover {
  transform: scale(1.04) translateY(-8px);
  box-shadow: 0 30px 60px -15px rgba(2, 48, 71, 0.2);
}

.product-popular {
  position: absolute;
  top: -1px; left: 50%; transform: translateX(-50%);
  background: linear-gradient(135deg, var(--orange), var(--amber));
  color: var(--navy);
  font-family: 'Montserrat', sans-serif;
  font-size: 0.7rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  padding: 8px 24px;
  border-radius: 0 0 var(--r-md) var(--r-md);
}

.product-top {
  padding: 40px 32px 24px;
  text-align: center;
  background: linear-gradient(155deg, var(--navy) 0%, var(--navy-light) 100%);
  position: relative;
}
.product-icon {
  font-size: 3.2rem;
  margin-bottom: 16px;
  filter: drop-shadow(0 4px 12px rgba(0,0,0,0.3));
}
.product-top h3 {
  color: var(--white);
  font-size: 1.3rem;
}
.product-top-desc {
  color: rgba(255,255,255,0.5);
  font-size: 0.85rem;
  margin-top: 8px;
}

.product-body { padding: 32px; }

.product-price {
  text-align: center;
  margin-bottom: 28px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--gray-200);
}
.price-was {
  font-size: 1rem;
  color: var(--gray-400);
  text-decoration: line-through;
  margin-bottom: 4px;
}
.price-now {
  font-family: 'Montserrat', sans-serif;
  font-size: 3.2rem;
  font-weight: 900;
  color: var(--navy);
  line-height: 1;
}
.price-now .currency {
  font-size: 0.4em;
  font-weight: 700;
  vertical-align: super;
  color: var(--gray-400);
}
.price-now .cents {
  font-size: 0.35em;
  font-weight: 600;
  color: var(--gray-400);
}
.price-note {
  font-size: 0.8rem;
  color: var(--gray-400);
  margin-top: 6px;
}

.product-features { margin-bottom: 28px; }
.product-features li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 10px 0;
  font-size: 0.93rem;
  color: var(--gray-600);
}
.feature-check {
  width: 22px; height: 22px; min-width: 22px;
  background: rgba(33, 158, 188, 0.1);
  border-radius: 6px;
  display: flex; align-items: center; justify-content: center;
  color: var(--blue);
  font-size: 12px;
  font-weight: 800;
  margin-top: 2px;
}
.product-card.featured .feature-check {
  background: rgba(251, 133, 0, 0.1);
  color: var(--orange);
}

.product-cta { text-align: center; }
.product-cta .btn { width: 100%; padding: 18px; font-size: 1rem; }

/* ===== Benefits ===== */
.benefits {
  padding: var(--section-pad) 0;
  background: var(--off-white);
}
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.benefit-card {
  background: var(--white);
  border-radius: var(--r-lg);
  padding: 36px 30px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-200);
  transition: all 0.4s;
  text-align: center;
}
.benefit-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}
.benefit-icon-wrap {
  width: 64px; height: 64px;
  margin: 0 auto 20px;
  background: linear-gradient(135deg, rgba(33, 158, 188, 0.1), rgba(142, 202, 230, 0.15));
  border-radius: 18px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.8rem;
  transition: all 0.3s;
}
.benefit-card:hover .benefit-icon-wrap {
  background: linear-gradient(135deg, rgba(251, 133, 0, 0.1), rgba(255, 183, 3, 0.15));
  transform: scale(1.1);
}
.benefit-card h3 { margin-bottom: 10px; }
.benefit-card p { font-size: 0.9rem; }

/* ===== Testimonials ===== */
.testimonials {
  padding: var(--section-pad) 0;
  background: linear-gradient(155deg, #011627 0%, var(--navy) 40%, var(--navy-light) 100%);
  position: relative;
  overflow: hidden;
}
.testimonials::before {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 800px; height: 800px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(33, 158, 188, 0.08) 0%, transparent 70%);
}
.testimonials .section-header h2 { color: var(--white); }
.testimonials .section-header p { color: rgba(255,255,255,0.4); }

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  position: relative;
  z-index: 2;
}
.testimonial-card {
  background: rgba(255,255,255,0.04);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--r-lg);
  padding: 36px 30px;
  transition: all 0.4s;
}
.testimonial-card:hover {
  background: rgba(255,255,255,0.08);
  transform: translateY(-4px);
}

.t-stars {
  display: flex;
  gap: 4px;
  margin-bottom: 20px;
}
.t-star {
  width: 20px; height: 20px;
  background: var(--amber);
  clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%);
}

.t-quote {
  color: rgba(255,255,255,0.75);
  font-size: 0.95rem;
  line-height: 1.8;
  margin-bottom: 24px;
  font-style: italic;
}
.t-quote::before {
  content: '\201C';
  font-size: 2rem;
  color: var(--orange);
  font-family: Georgia, serif;
  line-height: 0;
  vertical-align: -0.3em;
  margin-right: 4px;
}

.t-author {
  display: flex;
  align-items: center;
  gap: 14px;
}
.t-avatar {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue), var(--blue-light));
  display: flex; align-items: center; justify-content: center;
  color: var(--white);
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 0.85rem;
}
.t-avatar-img {
  width: 48px; height: 48px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(255,255,255,0.2);
}
.t-name {
  color: var(--white);
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
}
.t-role {
  color: rgba(255,255,255,0.35);
  font-size: 0.8rem;
  margin-top: 2px;
}

/* ===== Guarantee ===== */
.guarantee {
  padding: var(--section-pad) 0;
  background: var(--white);
}
.guarantee-box {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
  background: linear-gradient(135deg, var(--ice), var(--white));
  padding: 60px 50px;
  border-radius: var(--r-xl);
  border: 2px solid var(--blue-pale);
  box-shadow: var(--shadow-md);
  position: relative;
}
.guarantee-shield {
  font-size: 4rem;
  margin-bottom: 16px;
}
.guarantee-box h2 { margin-bottom: 12px; }
.guarantee-box p {
  color: var(--gray-400);
  font-size: 1.05rem;
  max-width: 480px;
  margin: 0 auto 28px;
}

/* ===== FAQ ===== */
.faq {
  padding: var(--section-pad) 0;
  background: var(--off-white);
}
.faq-list {
  max-width: 740px;
  margin: 0 auto;
}
.faq-item {
  background: var(--white);
  border-radius: var(--r-md);
  margin-bottom: 12px;
  border: 1px solid var(--gray-200);
  overflow: hidden;
  transition: all 0.3s;
}
.faq-item:hover { border-color: var(--blue-pale); }
.faq-item.active {
  border-color: var(--blue);
  box-shadow: var(--shadow-md);
}
.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 24px 28px;
  font-family: 'Montserrat', sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--navy);
  text-align: left;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}
.faq-icon {
  width: 32px; height: 32px; min-width: 32px;
  border-radius: 50%;
  background: var(--ice);
  display: flex; align-items: center; justify-content: center;
  transition: all 0.3s;
  color: var(--blue);
  font-weight: 600;
  font-size: 1.2rem;
}
.faq-item.active .faq-icon {
  background: var(--orange);
  color: var(--white);
  transform: rotate(45deg);
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}
.faq-item.active .faq-answer {
  max-height: 300px;
}
.faq-answer p {
  padding: 0 28px 24px;
  color: var(--gray-600);
  font-size: 0.95rem;
  line-height: 1.8;
}

/* ===== Final CTA ===== */
.final-cta {
  padding: var(--section-pad) 0;
  background: linear-gradient(155deg, var(--navy) 0%, var(--navy-light) 100%);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.final-cta::before {
  content: '';
  position: absolute;
  top: -50%; right: -20%;
  width: 600px; height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(251, 133, 0, 0.1) 0%, transparent 70%);
}
.final-cta h2 {
  color: var(--white);
  margin-bottom: 16px;
}
.final-cta p {
  color: rgba(255,255,255,0.5);
  font-size: 1.15rem;
  max-width: 550px;
  margin: 0 auto 40px;
}
.final-cta .btn-primary { font-size: 1.15rem; padding: 20px 48px; }

/* ===== Footer ===== */
.footer {
  background: #011627;
  padding: 64px 0 32px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.footer-brand .logo { display: inline-block; margin-bottom: 16px; }
.footer-desc {
  color: rgba(255,255,255,0.35);
  font-size: 0.9rem;
  max-width: 320px;
  line-height: 1.7;
}
.footer-col h4 {
  font-family: 'Montserrat', sans-serif;
  color: var(--white);
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 20px;
}
.footer-links li { margin-bottom: 10px; }
.footer-links a {
  color: rgba(255,255,255,0.4);
  font-size: 0.9rem;
  transition: color 0.3s;
}
.footer-links a:hover { color: var(--orange); }
.footer-bottom {
  padding-top: 24px;
  text-align: center;
  color: rgba(255,255,255,0.2);
  font-size: 0.8rem;
  margin-top: 24px;
}

/* ===== Responsive ===== */
@media (max-width: 1024px) {
  .hero .container {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .hero-content { max-width: 100%; margin: 0 auto; }
  .hero-text { margin: 0 auto 40px; }
  .hero-buttons { justify-content: center; }
  .hero-stats { justify-content: center; }
  .hero-visual { margin-top: 48px; max-width: 480px; margin-left: auto; margin-right: auto; }
  .hero-float { display: none; }
  .products-grid { grid-template-columns: 1fr 1fr; }
  .product-card.featured { transform: none; }
  .product-card.featured:hover { transform: translateY(-8px); }
  .testimonials-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .mobile-toggle { display: block; }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%; left: 0; right: 0;
    background: var(--navy);
    padding: 24px;
    gap: 20px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
  }
  .nav-cta.btn-primary { align-self: flex-start; }
  .hero { padding: 120px 0 60px; min-height: auto; }
  .hero-stats { flex-direction: column; gap: 20px; }
  .problems-grid,
  .products-grid,
  .benefits-grid,
  .testimonials-grid { grid-template-columns: 1fr; }
  .proof-bar .container { justify-content: center; }
  .proof-divider { display: none; }
  .footer-grid { grid-template-columns: 1fr; text-align: center; }
  .footer-desc { margin: 0 auto; }
  .guarantee-box { padding: 40px 28px; }
}

/* ===== Scroll Animations ===== */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }

/* ===== Utility ===== */
.text-gradient {
  background: linear-gradient(135deg, var(--orange), var(--amber));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
