/* ============================================
   GivnrLeads.ai — 10/10 Apple Protocol Build
   Brand: Dark Navy #0a0e27 + Orange #f97316
   ============================================ */

/* === CSS CUSTOM PROPERTIES === */
:root {
  --orange: #f97316;
  --orange-dark: #ea580c;
  --orange-light: #fb923c;
  --orange-glow: rgba(249, 115, 22, 0.3);
  --navy: #0a0e27;
  --navy-light: #0d1233;
  --navy-card: rgba(255, 255, 255, 0.04);
  --navy-card-hover: rgba(255, 255, 255, 0.07);
  --border-subtle: rgba(255, 255, 255, 0.08);
  --border-orange: rgba(249, 115, 22, 0.2);
  --text-primary: #ffffff;
  --text-body: #e2e8f0;
  --text-muted: #94a3b8;
  --text-dim: #64748b;
  --font-heading: 'Space Grotesk', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-body: 'DM Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-mono: 'JetBrains Mono', 'SF Mono', monospace;
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-2xl: 32px;
  --space-section: clamp(80px, 10vw, 120px);
  --ease-out: cubic-bezier(0.4, 0, 0.2, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* === CSS RESET & BASE === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html {
  scroll-behavior: smooth;
  scroll-padding-top: 100px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
body {
  font-family: var(--font-body);
  background: var(--navy);
  color: var(--text-body);
  line-height: 1.7;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
button { cursor: pointer; border: none; background: none; font-family: inherit; color: inherit; }
a { text-decoration: none; color: inherit; }

/* === TYPOGRAPHY === */
h1, h2, h3, h4 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.2;
  color: var(--text-primary);
  letter-spacing: -0.02em;
}
.text-gradient {
  background: linear-gradient(135deg, var(--orange) 0%, var(--orange-light) 50%, #fbbf24 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* === LAYOUT === */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.section { padding: var(--space-section) 0; position: relative; }
.section-label {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: var(--orange);
  text-transform: uppercase;
  margin-bottom: 16px;
  text-align: center;
}
.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 20px;
  text-align: center;
}
.section-subtitle {
  font-size: 1.125rem;
  color: var(--text-muted);
  max-width: 700px;
  margin: 0 auto 48px;
  text-align: center;
}

/* === BUTTONS === */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1rem;
  padding: 14px 28px;
  border-radius: var(--radius-md);
  transition: all 0.3s var(--ease-out);
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}
.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.15), transparent);
  opacity: 0;
  transition: opacity 0.3s var(--ease-out);
}
.btn:hover::after { opacity: 1; }
.btn-primary {
  background: linear-gradient(135deg, var(--orange), var(--orange-dark));
  color: #fff;
  box-shadow: 0 4px 24px var(--orange-glow);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(249, 115, 22, 0.45);
}
.btn-primary:active { transform: translateY(0); }
.btn-outline {
  border: 2px solid rgba(249, 115, 22, 0.4);
  color: var(--orange);
}
.btn-outline:hover {
  border-color: var(--orange);
  background: rgba(249, 115, 22, 0.08);
}
.btn-lg { padding: 16px 32px; font-size: 1.05rem; }
.btn-xl { padding: 20px 40px; font-size: 1.15rem; border-radius: 14px; }

/* ============================================
   NAVIGATION
   ============================================ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(10, 14, 39, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(249, 115, 22, 0.1);
  transition: all 0.3s var(--ease-out);
}
.navbar.scrolled {
  background: rgba(10, 14, 39, 0.95);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}
.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}
.nav-logo-img {
  width: 52px;
  height: 52px;
  border-radius: 0;
  object-fit: contain;
  background: transparent;
  filter: drop-shadow(0 0 8px rgba(249, 115, 22, 0.4));
}
.nav-logo-text { display: flex; flex-direction: column; }
.nav-brand {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--text-primary);
  white-space: nowrap;
}
.nav-subtitle {
  font-family: var(--font-mono);
  font-size: 0.6rem;
  letter-spacing: 0.15em;
  color: var(--orange);
  font-weight: 500;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
}
.nav-link {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-muted);
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  transition: all 0.2s var(--ease-out);
}
.nav-link:hover { color: var(--text-primary); background: rgba(255, 255, 255, 0.05); }
.nav-cta {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.875rem;
  padding: 10px 20px;
  background: linear-gradient(135deg, var(--orange), var(--orange-dark));
  color: #fff;
  border-radius: 10px;
  transition: all 0.3s var(--ease-out);
  white-space: nowrap;
}
.nav-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 20px rgba(249, 115, 22, 0.4);
}

/* Mobile menu button */
.mobile-menu-btn {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
}
.mobile-menu-btn span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: all 0.3s var(--ease-out);
}

/* ============================================
   HERO
   ============================================ */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 80px;
  position: relative;
  overflow: hidden;
  background: var(--navy);
}
.hero-bg-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(249, 115, 22, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(249, 115, 22, 0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 60% at 50% 40%, black, transparent);
  -webkit-mask-image: radial-gradient(ellipse 80% 60% at 50% 40%, black, transparent);
}
.hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--orange);
  background: rgba(249, 115, 22, 0.08);
  border: 1px solid var(--border-orange);
  padding: 8px 16px;
  border-radius: 100px;
  margin-bottom: 24px;
}
.badge-dot {
  width: 8px;
  height: 8px;
  background: var(--orange);
  border-radius: 50%;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(0.9); }
}
.hero-title {
  font-size: clamp(2.5rem, 5vw, 3.75rem);
  margin-bottom: 24px;
  line-height: 1.1;
}
.hero-subtitle {
  font-size: 1.15rem;
  color: var(--text-muted);
  margin-bottom: 32px;
  line-height: 1.7;
}
.hero-subtitle strong { color: var(--text-body); }
.hero-ctas { display: flex; gap: 16px; margin-bottom: 40px; flex-wrap: wrap; }
.hero-badges { display: flex; gap: 24px; flex-wrap: wrap; }
.hero-badge-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  color: var(--text-muted);
}
.hero-right { display: flex; justify-content: center; align-items: center; }
.hero-logo-img {
  width: 340px;
  height: 340px;
  object-fit: contain;
  background: transparent;
  filter: drop-shadow(0 0 40px rgba(249, 115, 22, 0.35));
  transition: filter 0.4s var(--ease-out), transform 0.4s var(--ease-spring);
}
.hero-logo-img:hover {
  filter: drop-shadow(0 0 60px rgba(249, 115, 22, 0.55));
  transform: scale(1.04);
}

/* ============================================
   PROBLEM SECTION
   ============================================ */
.section-problem { background: linear-gradient(180deg, var(--navy) 0%, var(--navy-light) 100%); }
.problem-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.problem-card {
  background: var(--navy-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: all 0.3s var(--ease-out);
}
.problem-card:hover {
  background: var(--navy-card-hover);
  border-color: var(--border-orange);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2);
}
.problem-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-md);
  background: rgba(249, 115, 22, 0.1);
  border: 1px solid var(--border-orange);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.problem-card h3 { font-size: 1.15rem; margin-bottom: 12px; }
.problem-card p { font-size: 0.95rem; color: var(--text-muted); line-height: 1.6; }

/* ============================================
   SOLUTION SECTION
   ============================================ */
.section-solution { background: var(--navy); }
.solution-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
}
.solution-card {
  background: var(--navy-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 28px;
  text-align: center;
  transition: all 0.3s var(--ease-out);
}
.solution-card:hover {
  background: var(--navy-card-hover);
  border-color: var(--border-orange);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2);
}
.solution-card-main {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  gap: 20px;
  text-align: left;
  background: linear-gradient(135deg, rgba(249, 115, 22, 0.08), rgba(249, 115, 22, 0.02));
  border-color: var(--border-orange);
}
.solution-logo {
  width: 56px;
  height: 56px;
  border-radius: 0;
  object-fit: contain;
  flex-shrink: 0;
  background: transparent;
  filter: drop-shadow(0 0 8px rgba(249, 115, 22, 0.4));
}
.solution-card-main h3 { font-size: 1.25rem; margin-bottom: 4px; }
.solution-card-main p { color: var(--text-muted); font-size: 0.9rem; }
.solution-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-md);
  background: rgba(249, 115, 22, 0.1);
  border: 1px solid var(--border-orange);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}
.solution-card h3 { font-size: 0.95rem; margin-bottom: 8px; }
.solution-card p { font-size: 0.85rem; color: var(--text-muted); }

/* ============================================
   HOW IT WORKS (STEPS)
   ============================================ */
.section-steps { background: linear-gradient(180deg, var(--navy-light) 0%, var(--navy) 100%); }
.steps-timeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  position: relative;
}
.steps-timeline::before {
  content: '';
  position: absolute;
  top: 30px;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(249, 115, 22, 0.2), transparent);
  z-index: 0;
}
.step-item { position: relative; z-index: 1; }
.step-number {
  width: 60px;
  height: 60px;
  background: var(--navy);
  border: 2px solid var(--orange);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--orange);
  margin-bottom: 24px;
  box-shadow: 0 0 20px rgba(249, 115, 22, 0.2);
  transition: all 0.3s var(--ease-out);
}
.step-item:hover .step-number {
  box-shadow: 0 0 30px rgba(249, 115, 22, 0.4);
  transform: scale(1.05);
}
.step-badge {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--orange);
  background: rgba(249, 115, 22, 0.1);
  padding: 4px 10px;
  border-radius: 4px;
  margin-bottom: 12px;
  text-transform: uppercase;
}
.step-item h3 { font-size: 1.15rem; margin-bottom: 12px; }
.step-item p { font-size: 0.9rem; color: var(--text-muted); }

/* ============================================
   FEATURES (WHAT YOU GET)
   ============================================ */
.section-features { background: var(--navy); }
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.feature-card {
  background: var(--navy-card);
  border: 1px solid var(--border-subtle);
  border-radius: 20px;
  padding: 40px;
  transition: all 0.3s var(--ease-out);
}
.feature-card:hover {
  background: var(--navy-card-hover);
  border-color: rgba(249, 115, 22, 0.25);
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.25);
}
.feature-tag {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--orange);
  text-transform: uppercase;
  margin-bottom: 16px;
  letter-spacing: 0.1em;
}
.feature-card h3 { font-size: 1.25rem; margin-bottom: 16px; }
.feature-card p { font-size: 0.95rem; color: var(--text-muted); }

/* ============================================
   PRICING
   ============================================ */
.section-pricing { background: linear-gradient(180deg, var(--navy) 0%, var(--navy-light) 100%); }
.pricing-header { text-align: center; margin-bottom: 60px; }
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 60px;
}
.pricing-card {
  background: var(--navy-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-xl);
  padding: 40px;
  text-align: center;
  transition: all 0.3s var(--ease-out);
}
.pricing-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2);
}
.pricing-card-main {
  background: rgba(249, 115, 22, 0.05);
  border-color: rgba(249, 115, 22, 0.3);
  transform: scale(1.05);
  position: relative;
  z-index: 2;
}
.pricing-card-main:hover { transform: scale(1.07); }
.pricing-label {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--orange);
  margin-bottom: 16px;
  letter-spacing: 0.1em;
}
.pricing-sublabel {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 8px;
  text-transform: uppercase;
}
.pricing-amount {
  font-family: var(--font-heading);
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 16px;
  line-height: 1;
}
.pricing-amount span { font-size: 1.25rem; color: var(--text-muted); font-weight: 500; }
.pricing-card p { font-size: 0.95rem; color: var(--text-muted); }
.pricing-features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  max-width: 800px;
  margin: 0 auto 48px;
}
.pricing-feature-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1rem;
  color: var(--text-body);
}
.pricing-cta { text-align: center; }
.pricing-note { margin-top: 16px; font-size: 0.9rem; color: var(--text-muted); }

/* ============================================
   PAULIE AI
   ============================================ */
.section-paulie { background: var(--navy); overflow: hidden; }
.paulie-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.paulie-active-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  font-weight: 700;
  color: #22c55e;
  background: rgba(34, 197, 94, 0.1);
  padding: 6px 12px;
  border-radius: 6px;
  margin-bottom: 20px;
}
.active-dot {
  width: 8px;
  height: 8px;
  background: #22c55e;
  border-radius: 50%;
  animation: pulse-green 2s infinite;
}
@keyframes pulse-green {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(0.9); }
}
.paulie-content .section-title { text-align: left; }
.paulie-content .section-label { text-align: left; }
.paulie-content p { font-size: 1.125rem; color: var(--text-muted); margin-bottom: 32px; line-height: 1.7; }
.paulie-features { list-style: none; margin-bottom: 40px; }
.paulie-features li {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
  font-size: 1rem;
  color: var(--text-body);
}
.paulie-cta-wrap { margin: 32px 0 8px; }
.paulie-stats { display: flex; gap: 40px; margin-top: 32px; }
.paulie-stat-value {
  font-family: var(--font-heading);
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 4px;
}
.paulie-stat-label {
  font-size: 0.85rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.paulie-mockup { position: relative; }
.mockup-img {
  border-radius: var(--radius-xl);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
  transition: transform 0.4s var(--ease-out), box-shadow 0.4s var(--ease-out);
}
.mockup-img:hover {
  transform: translateY(-4px);
  box-shadow: 0 40px 80px rgba(0, 0, 0, 0.6);
}

/* Paulie Avatar */
.paulie-avatar-container {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  margin-bottom: 2rem;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 1rem;
  border: 1px solid var(--border-subtle);
  width: fit-content;
  transition: border-color 0.3s var(--ease-out);
}
.paulie-avatar-container:hover { border-color: var(--border-orange); }
.paulie-avatar-img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--orange);
  box-shadow: 0 0 20px rgba(249, 115, 22, 0.2);
}
.paulie-avatar-info { display: flex; flex-direction: column; }
.paulie-avatar-name {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-primary);
}
.paulie-avatar-title {
  font-size: 0.875rem;
  color: var(--orange);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* ============================================
   GUARANTEE
   ============================================ */
.section-guarantee { background: linear-gradient(180deg, var(--navy) 0%, var(--navy-light) 100%); }
.guarantee-card {
  background: linear-gradient(135deg, rgba(249, 115, 22, 0.1), rgba(249, 115, 22, 0.02));
  border: 1px solid var(--border-orange);
  border-radius: var(--radius-2xl);
  padding: 60px;
  text-align: center;
}
.guarantee-text {
  font-size: 1.25rem;
  color: var(--text-body);
  max-width: 800px;
  margin: 0 auto 48px;
  line-height: 1.7;
}
.guarantee-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-bottom: 40px;
}
.guarantee-stat-value {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 700;
  color: var(--orange);
  margin-bottom: 8px;
}
.guarantee-stat-label { font-size: 0.9rem; color: var(--text-muted); }
.guarantee-disclaimer { font-size: 0.85rem; color: var(--text-dim); font-style: italic; }
.guarantee-cta-wrap { text-align: center; margin-top: 40px; }

/* ============================================
   DASHBOARD PREVIEW
   ============================================ */
.section-dashboard { background: var(--navy); }
.dashboard-mockup-container {
  margin-bottom: 60px;
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 40px 80px rgba(0, 0, 0, 0.6);
  transition: transform 0.4s var(--ease-out), box-shadow 0.4s var(--ease-out);
}
.dashboard-mockup-container:hover {
  transform: translateY(-4px);
  box-shadow: 0 50px 100px rgba(0, 0, 0, 0.7);
}
.dashboard-mockup-img { width: 100%; }
.dashboard-highlights {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.dashboard-highlight { text-align: center; }
.highlight-icon {
  width: 48px;
  height: 48px;
  background: rgba(249, 115, 22, 0.1);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}
.dashboard-highlight h4 { font-size: 1.1rem; margin-bottom: 8px; }
.dashboard-highlight p { font-size: 0.9rem; color: var(--text-muted); }

/* ============================================
   TESTIMONIALS
   ============================================ */
.section-testimonials { background: linear-gradient(180deg, var(--navy) 0%, var(--navy-light) 100%); }
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 48px;
}
.testimonial-card {
  background: var(--navy-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-xl);
  padding: 40px;
  display: flex;
  flex-direction: column;
  transition: all 0.3s var(--ease-out);
}
.testimonial-card:hover {
  border-color: var(--border-orange);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2);
}
.testimonial-quote {
  font-size: 1.1rem;
  font-style: italic;
  color: var(--text-body);
  margin-bottom: 24px;
  flex-grow: 1;
  line-height: 1.7;
}
.testimonial-result {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 0.8rem;
  font-weight: 700;
  color: #22c55e;
  background: rgba(34, 197, 94, 0.1);
  padding: 6px 12px;
  border-radius: 6px;
  margin-bottom: 24px;
  width: fit-content;
}
.testimonial-author { display: flex; align-items: center; gap: 16px; }
.testimonial-photo {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--orange);
}
.testimonial-name { font-weight: 700; color: var(--text-primary); font-size: 1rem; }
.testimonial-role { font-size: 0.8rem; color: var(--orange); }
.testimonial-company { font-size: 0.75rem; color: var(--text-dim); }
.testimonials-disclaimer { text-align: center; font-size: 0.85rem; color: var(--text-dim); }

/* ============================================
   FAQ
   ============================================ */
.section-faq { background: var(--navy); }
.faq-list { max-width: 800px; margin: 0 auto; }
.faq-item {
  border-bottom: 1px solid var(--border-subtle);
  margin-bottom: 8px;
}
.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 0;
  text-align: left;
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--text-primary);
  transition: color 0.3s var(--ease-out);
}
.faq-question:hover { color: var(--orange); }
.faq-chevron { transition: transform 0.3s var(--ease-out); color: var(--text-dim); flex-shrink: 0; margin-left: 16px; }
.faq-item.active .faq-chevron { transform: rotate(180deg); color: var(--orange); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s var(--ease-out), padding 0.4s var(--ease-out);
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.7;
}
.faq-item.active .faq-answer { max-height: 400px; padding-bottom: 24px; }

/* ============================================
   FINAL CTA
   ============================================ */
.section-final-cta {
  background: linear-gradient(180deg, var(--navy) 0%, var(--navy-light) 100%);
  padding: 120px 0;
}
.final-cta-card {
  max-width: 800px;
  margin: 0 auto;
  background: var(--navy-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-2xl);
  padding: 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.final-cta-card::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(249, 115, 22, 0.05) 0%, transparent 70%);
  z-index: 0;
  animation: cta-glow 6s ease-in-out infinite alternate;
}
@keyframes cta-glow {
  0% { opacity: 0.5; }
  100% { opacity: 1; }
}
.final-cta-price { position: relative; z-index: 1; margin-bottom: 32px; }
.final-cta-label { display: block; font-size: 1rem; color: var(--text-muted); margin-bottom: 8px; }
.final-cta-amount {
  font-family: var(--font-heading);
  font-size: 5rem;
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1;
}
.final-cta-period {
  display: block;
  font-size: 1.1rem;
  color: var(--orange);
  font-weight: 600;
  margin-top: 8px;
}
.final-cta-note {
  font-size: 1.1rem;
  color: var(--text-body);
  margin-bottom: 40px;
  position: relative;
  z-index: 1;
}
.final-cta-features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  text-align: left;
  max-width: 600px;
  margin: 0 auto 48px;
  position: relative;
  z-index: 1;
}
.final-cta-feature { font-size: 0.95rem; color: var(--text-muted); }
.final-cta-reminder {
  margin-top: 24px;
  font-size: 0.95rem;
  color: var(--orange);
  font-weight: 600;
  position: relative;
  z-index: 1;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: #05081a;
  padding: 80px 0 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}
.footer-content {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 60px;
  margin-bottom: 60px;
}
.footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
}
.footer-logo-img {
  width: 40px;
  height: 40px;
  border-radius: 0;
  object-fit: contain;
  background: transparent;
  filter: drop-shadow(0 0 6px rgba(249, 115, 22, 0.4));
}
.footer-logo-text {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.5rem;
  color: var(--text-primary);
}
.footer-desc { color: var(--text-dim); font-size: 0.95rem; max-width: 360px; line-height: 1.6; }
.footer-links h4, .footer-services h4 {
  font-size: 0.85rem;
  color: var(--text-primary);
  letter-spacing: 0.1em;
  margin-bottom: 24px;
}
.footer-links button {
  display: block;
  color: var(--text-dim);
  font-size: 0.95rem;
  margin-bottom: 12px;
  transition: color 0.3s var(--ease-out);
}
.footer-links button:hover { color: var(--orange); }
.footer-services p { color: var(--text-dim); font-size: 0.95rem; margin-bottom: 12px; }
.footer-location { color: var(--orange) !important; font-weight: 600; margin-top: 20px; }
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 40px;
  text-align: center;
}
.footer-bottom p { font-size: 0.85rem; color: #475569; }

/* ============================================
   ANIMATIONS
   ============================================ */
.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s var(--ease-out), transform 0.6s var(--ease-out);
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger children for grid animations */
.problem-grid .fade-in:nth-child(2) { transition-delay: 0.1s; }
.problem-grid .fade-in:nth-child(3) { transition-delay: 0.2s; }
.problem-grid .fade-in:nth-child(4) { transition-delay: 0.3s; }

.solution-grid .fade-in:nth-child(2) { transition-delay: 0.05s; }
.solution-grid .fade-in:nth-child(3) { transition-delay: 0.1s; }
.solution-grid .fade-in:nth-child(4) { transition-delay: 0.15s; }
.solution-grid .fade-in:nth-child(5) { transition-delay: 0.2s; }
.solution-grid .fade-in:nth-child(6) { transition-delay: 0.25s; }
.solution-grid .fade-in:nth-child(7) { transition-delay: 0.3s; }

.features-grid .fade-in:nth-child(2) { transition-delay: 0.1s; }
.features-grid .fade-in:nth-child(3) { transition-delay: 0.2s; }
.features-grid .fade-in:nth-child(4) { transition-delay: 0.3s; }
.features-grid .fade-in:nth-child(5) { transition-delay: 0.4s; }
.features-grid .fade-in:nth-child(6) { transition-delay: 0.5s; }

.steps-timeline .fade-in:nth-child(2) { transition-delay: 0.15s; }
.steps-timeline .fade-in:nth-child(3) { transition-delay: 0.3s; }
.steps-timeline .fade-in:nth-child(4) { transition-delay: 0.45s; }

.testimonials-grid .fade-in:nth-child(2) { transition-delay: 0.1s; }
.testimonials-grid .fade-in:nth-child(3) { transition-delay: 0.2s; }

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  .hero-content { grid-template-columns: 1fr; text-align: center; gap: 40px; }
  .hero-left { order: 2; }
  .hero-right { order: 1; }
  .hero-ctas { justify-content: center; }
  .hero-badges { justify-content: center; }
  .hero-logo-img { width: 280px; height: 280px; }
  .problem-grid, .features-grid, .pricing-grid, .testimonials-grid, .dashboard-highlights { grid-template-columns: repeat(2, 1fr); }
  .paulie-layout { grid-template-columns: 1fr; gap: 60px; }
  .paulie-content .section-title { text-align: center; }
  .paulie-content .section-label { text-align: center; }
  .paulie-avatar-container { margin-left: auto; margin-right: auto; }
  .paulie-cta-wrap { text-align: center; }
  .paulie-stats { justify-content: center; }
  .steps-timeline { grid-template-columns: repeat(2, 1fr); }
  .steps-timeline::before { display: none; }
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
    position: absolute;
    top: 80px;
    left: 0;
    right: 0;
    background: rgba(10, 14, 39, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    flex-direction: column;
    padding: 16px 24px;
    border-bottom: 1px solid var(--border-subtle);
  }
  .nav-links.active { display: flex; }
  .mobile-menu-btn { display: flex; }
  .pricing-card-main { transform: none; }
  .pricing-card-main:hover { transform: translateY(-4px); }
  .guarantee-stats { grid-template-columns: 1fr; gap: 24px; }
  .footer-content { grid-template-columns: 1fr; gap: 40px; }
  .guarantee-card { padding: 40px 24px; }
  .final-cta-card { padding: 40px 24px; }
}

@media (max-width: 640px) {
  .problem-grid, .features-grid, .pricing-grid, .testimonials-grid, .dashboard-highlights, .steps-timeline { grid-template-columns: 1fr; }
  .pricing-features { grid-template-columns: 1fr; }
  .final-cta-features { grid-template-columns: 1fr; }
  .final-cta-amount { font-size: 4rem; }
  .paulie-avatar-container { margin-left: auto; margin-right: auto; }
  .paulie-stats { flex-direction: column; gap: 24px; align-items: center; }
  .hero-title { font-size: clamp(2rem, 7vw, 3rem); }
}

/* ============================================
   ACCESSIBILITY
   ============================================ */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .fade-in { opacity: 1; transform: none; }
}

/* Focus styles for keyboard navigation */
.btn:focus-visible,
.nav-link:focus-visible,
.nav-cta:focus-visible,
.faq-question:focus-visible {
  outline: 2px solid var(--orange);
  outline-offset: 2px;
}
