@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@300;400;500;600;700&family=Playfair+Display:ital,wght@0,400;0,500;0,600;1,400&display=swap');

/* --- Design Tokens & Variables --- */
:root {
  /* Colors - Sleek Cyber Indigo & Sky Cyan Dark Mode */
  --bg-dark: #070913;
  --bg-surface: #0e1122;
  --bg-surface-subtle: #161b33;
  --bg-cream: #f8fafc;
  --bg-panel-light: #0e1122;
  
  --text-light: #f8fafc;
  --text-dim: #94a3b8;
  --text-muted: #64748b;
  --text-dark: #f8fafc;
  
  --accent-gold: #38bdf8; /* Sky Cyan primary accent */
  --accent-gold-sand: #6366f1; /* Indigo secondary accent */
  --accent-gold-dark: #312e81; /* Deep Indigo background */
  --accent-gold-glow: rgba(56, 189, 248, 0.12);
  
  /* Fonts */
  --font-serif: 'Playfair Display', Georgia, serif;
  --font-sans: 'Manrope', system-ui, -apple-system, sans-serif;
  
  /* Animation timings */
  --transition-smooth: cubic-bezier(0.22, 1, 0.36, 1);
  --duration-normal: 0.5s;
  --duration-slow: 0.8s;
  
  /* Borders */
  --border-light: rgba(148, 163, 184, 0.08);
  --border-gold-subtle: rgba(99, 102, 241, 0.2);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  background-color: var(--bg-dark);
  color: var(--text-light);
  font-family: var(--font-sans);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

body {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  overflow-x: hidden;
}

/* --- Layout Utilities --- */
.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

.text-balance {
  text-wrap: balance;
}

.text-pretty {
  text-wrap: pretty;
}

/* Scrollbar styling */
::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}
::-webkit-scrollbar-track {
  background: var(--bg-dark);
}
::-webkit-scrollbar-thumb {
  background: var(--accent-gold-dark);
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--accent-gold-sand);
}

/* Typography elements */
h1, h2, h3, h4, h5 {
  font-family: var(--font-serif);
  font-weight: 400;
  line-height: 1.1;
}

p {
  line-height: 1.6;
  font-weight: 300;
}

/* --- Interactivity & Focus --- */
a, button {
  color: inherit;
  text-decoration: none;
  font-family: inherit;
}

button {
  background: none;
  border: none;
  cursor: pointer;
}

:focus-visible {
  outline: 2px solid var(--accent-gold);
  outline-offset: 4px;
}

/* --- Header / Navigation --- */
header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 24px 0;
  transition: background-color 0.4s var(--transition-smooth), border-color 0.4s var(--transition-smooth), backdrop-filter 0.4s var(--transition-smooth);
  border-bottom: 1px solid transparent;
}

header.scrolled {
  background-color: rgba(9, 9, 11, 0.85);
  backdrop-filter: blur(12px);
  border-bottom-color: var(--border-light);
  padding: 16px 0;
}

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

.logo {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  letter-spacing: 0.1em;
  font-weight: 600;
  color: var(--text-light);
  display: flex;
  align-items: center;
  gap: 8px;
}

.logo span {
  color: var(--accent-gold);
}

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

.nav-link {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--text-dim);
  transition: color 0.3s var(--transition-smooth);
  display: flex;
  align-items: center;
  gap: 6px;
}

.nav-link span.number {
  font-size: 0.65rem;
  color: var(--text-muted);
}

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

/* Premium Button hover effect matching LocalEyes */
.btn-premium {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  border-radius: 9999px;
  border: 1px solid rgba(237, 237, 213, 0.25);
  padding: 4px 4px 4px 20px;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--text-light);
  overflow: hidden;
  transition: border-color var(--duration-normal) var(--transition-smooth);
}

.btn-premium span.btn-text {
  position: relative;
  z-index: 2;
  transition: color var(--duration-slow) var(--transition-smooth);
}

.btn-circle {
  position: relative;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background-color: var(--accent-gold-sand);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  z-index: 2;
  transition: background-color var(--duration-slow) var(--transition-smooth);
}

.btn-circle svg {
  width: 14px;
  height: 14px;
  color: var(--bg-dark);
  transition: transform var(--duration-slow) var(--transition-smooth), color var(--duration-slow) var(--transition-smooth);
}

.btn-circle::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background-color: var(--text-light);
  transform: scale(0);
  transition: transform var(--duration-normal) var(--transition-smooth);
  z-index: -1;
}

/* Button hover states */
.btn-premium:hover {
  border-color: var(--accent-gold);
}

.btn-premium:hover span.btn-text {
  color: var(--bg-dark);
}

.btn-premium:hover .btn-circle {
  background-color: var(--text-light);
}

.btn-premium:hover .btn-circle::before {
  transform: scale(12); /* Expand white circle to fill button */
}

.btn-premium:hover .btn-circle svg {
  transform: rotate(45deg);
  color: var(--bg-dark);
}

.menu-toggle {
  display: none;
  font-size: 1.5rem;
  color: var(--text-light);
}

/* --- Hero Section --- */
.hero {
  position: relative;
  min-height: 100vh;
  padding-top: 180px;
  padding-bottom: 80px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  background-color: var(--bg-dark);
  background-image: radial-gradient(ellipse at top, var(--accent-gold-glow) 0%, transparent 60%);
  overflow: hidden;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 100px;
  background: linear-gradient(to top, var(--bg-surface), transparent);
  pointer-events: none;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 0.65rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  color: var(--accent-gold);
  margin-bottom: 24px;
}

.hero h1 {
  font-size: clamp(2.5rem, 6.5vw, 5rem);
  line-height: 1.05;
  margin-bottom: 32px;
  max-width: 1000px;
  font-weight: 300;
}

/* Word rise animation effect */
.hero h1 span.word-wrapper {
  display: inline-block;
  overflow: hidden;
  vertical-align: bottom;
  margin-right: 0.1em;
}

.hero h1 span.word {
  display: inline-block;
  transform: translateY(105%);
  animation: word-rise 0.8s var(--transition-smooth) forwards;
}

@keyframes word-rise {
  to { transform: translateY(0); }
}

.hero p.subtitle {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: var(--text-dim);
  max-width: 680px;
  margin-bottom: 48px;
  font-weight: 300;
  opacity: 0;
  transform: translateY(20px);
  animation: fade-up 0.8s var(--transition-smooth) 0.6s forwards;
}

@keyframes fade-up {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  align-items: center;
  margin-bottom: 48px;
  opacity: 0;
  transform: translateY(20px);
  animation: fade-up 0.8s var(--transition-smooth) 0.8s forwards;
}

.hero-stats {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--text-muted);
  opacity: 0;
  transform: translateY(20px);
  animation: fade-up 0.8s var(--transition-smooth) 1s forwards;
}

.hero-stats span.accent {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  color: var(--accent-gold);
  vertical-align: middle;
  margin-right: 6px;
}

/* Service Selector Carousel inside Hero */
.service-carousel-container {
  width: 100%;
  max-width: 1200px;
  position: relative;
  margin-top: 40px;
  padding: 0 40px;
  opacity: 0;
  animation: fade-in 1s var(--transition-smooth) 1.2s forwards;
}

@keyframes fade-in {
  to { opacity: 1; }
}

.service-carousel-track-wrapper {
  overflow: hidden;
  cursor: grab;
  user-select: none;
  padding: 10px 0;
}

.service-carousel-track-wrapper:active {
  cursor: grabbing;
}

.service-carousel-track {
  display: flex;
  gap: 20px;
  transition: transform 0.5s var(--transition-smooth);
}

.service-card {
  flex: 0 0 260px;
  background-color: var(--bg-surface);
  border: 1px solid var(--border-light);
  border-radius: 16px;
  padding: 24px;
  text-align: left;
  transition: border-color 0.4s var(--transition-smooth), transform 0.4s var(--transition-smooth), box-shadow 0.4s var(--transition-smooth);
  pointer-events: none; /* Let parent handles dragging */
}

.service-carousel-track-wrapper:not(.dragging) .service-card {
  pointer-events: auto;
}

.service-card:hover {
  border-color: var(--accent-gold-sand);
  transform: translateY(-4px);
  box-shadow: 0 12px 30px -10px var(--accent-gold-glow);
}

.service-card .icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background-color: var(--accent-gold-glow);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: var(--accent-gold);
}

.service-card .stat-num {
  font-family: var(--font-serif);
  font-size: 2.25rem;
  color: var(--accent-gold);
  margin-bottom: 8px;
  line-height: 1.1;
  font-weight: 500;
}

.service-card h3 {
  font-family: var(--font-sans);
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-light);
  margin-bottom: 8px;
}

.service-card p {
  font-size: 0.75rem;
  color: var(--text-dim);
  line-height: 1.45;
}

/* --- Metro Lead Ticker / Marquee --- */
.ticker-section {
  background-color: var(--bg-surface);
  border-y: 1px solid var(--border-light);
  padding: 32px 0;
  overflow: hidden;
  position: relative;
}

.ticker-title {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--accent-gold-sand);
  margin-bottom: 24px;
  padding-left: 24px;
  display: flex;
  align-items: center;
  gap: 16px;
}

.ticker-title::after {
  content: '';
  flex: 1;
  height: 1px;
  background-color: var(--border-light);
}

.ticker-wrapper {
  display: flex;
  overflow: hidden;
  width: 100%;
  mask-image: linear-gradient(to right, transparent, black 15%, black 85%, transparent);
}

.ticker-track {
  display: flex;
  width: max-content;
  animation: ticker-slide 30s linear infinite;
}

@keyframes ticker-slide {
  0% { transform: translate3d(0, 0, 0); }
  100% { transform: translate3d(-50%, 0, 0); }
}

.ticker-item {
  display: flex;
  align-items: baseline;
  padding: 0 40px;
  white-space: nowrap;
}

.ticker-city {
  font-family: var(--font-serif);
  font-size: 4rem;
  font-weight: 300;
  color: var(--text-light);
  transition: color 0.4s var(--transition-smooth);
}

.ticker-item:hover .ticker-city {
  color: var(--accent-gold);
}

.ticker-stats {
  margin-left: 16px;
  display: flex;
  flex-direction: column;
}

.ticker-count {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  color: var(--accent-gold);
  line-height: 1;
}

.ticker-label {
  font-size: 0.55rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--text-muted);
  margin-top: 4px;
}

.ticker-item::after {
  content: '✦';
  margin-left: 40px;
  color: rgba(198, 166, 106, 0.4);
  align-self: center;
}

/* --- What We're Known For (About) --- */
.about {
  padding: 120px 0;
  background-color: var(--bg-dark);
  position: relative;
}

.about::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 50%, rgba(198, 166, 106, 0.05) 0%, transparent 60%);
  pointer-events: none;
}

.about h2 {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  color: var(--accent-gold-sand);
  margin-bottom: 48px;
}

.about h2::after {
  content: '';
  flex: 1;
  height: 1px;
  background-color: var(--border-light);
}

.about-text-container {
  max-width: 1000px;
}

/* Scroll reveal words styles */
.reveal-text {
  font-family: var(--font-serif);
  font-size: clamp(1.8rem, 4.5vw, 3.5rem);
  font-weight: 300;
  line-height: 1.25;
  color: var(--text-muted);
}

.reveal-text span.word {
  transition: color 0.5s ease;
}

.reveal-text span.word.active {
  color: var(--text-light);
}

.reveal-text span.word.highlight {
  color: var(--accent-gold);
  font-weight: 400;
}

/* --- Trusted By Section --- */
.trusted {
  padding: 60px 0 100px 0;
  background-color: var(--bg-dark);
  text-align: center;
}

.trusted h3 {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 300;
  color: var(--text-light);
  margin-bottom: 40px;
}

.trusted h3 span {
  color: var(--accent-gold);
}

.logo-marquee-wrapper {
  overflow: hidden;
  width: 100%;
  mask-image: linear-gradient(to right, transparent, black 15%, black 85%, transparent);
}

.logo-marquee-track {
  display: flex;
  width: max-content;
  animation: logo-slide 40s linear infinite;
  align-items: center;
}

@keyframes logo-slide {
  0% { transform: translate3d(0, 0, 0); }
  100% { transform: translate3d(-50%, 0, 0); }
}

.logo-item {
  padding: 0 48px;
  opacity: 0.4;
  transition: opacity 0.4s var(--transition-smooth), transform 0.4s var(--transition-smooth);
}

.logo-item:hover {
  opacity: 0.95;
  transform: translateY(-4px);
}

.logo-svg {
  height: 36px;
  width: auto;
  fill: var(--text-light);
}

/* --- Pricing Section --- */
.pricing {
  padding: 120px 0;
  background-color: var(--bg-surface);
  position: relative;
  border-y: 1px solid var(--border-light);
}

.pricing::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 50%, rgba(56, 189, 248, 0.03) 0%, transparent 60%);
  pointer-events: none;
}

.pricing h2 {
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 300;
  margin-top: 24px;
  margin-bottom: 24px;
  max-width: 800px;
}

.pricing h2 span {
  color: var(--accent-gold);
}

.pricing-header {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-bottom: 60px;
}

@media (min-width: 768px) {
  .pricing-header {
    flex-direction: row;
    align-items: flex-end;
    justify-content: space-between;
  }
}

.pricing-intro {
  max-width: 420px;
  font-size: 0.95rem;
  color: var(--text-dim);
}

/* Three-column card grid layout */
.pricing-comparison-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  align-items: stretch;
  margin-top: 40px;
}

@media (min-width: 1024px) {
  .pricing-comparison-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }
}

/* Individual pricing card */
.pricing-card {
  position: relative;
  background-color: var(--bg-surface);
  border: 1px solid rgba(99, 102, 241, 0.15);
  border-radius: 24px;
  padding: 40px 32px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: transform 0.4s var(--transition-smooth), border-color 0.4s var(--transition-smooth), box-shadow 0.4s var(--transition-smooth);
}

.pricing-card:hover {
  transform: translateY(-8px);
  border-color: rgba(56, 189, 248, 0.4);
  box-shadow: 0 20px 40px -15px rgba(56, 189, 248, 0.15);
}

/* Highlighted Popular Card */
.pricing-card.popular {
  border-color: var(--accent-gold-sand);
  background-image: radial-gradient(circle at top right, rgba(99, 102, 241, 0.08) 0%, transparent 60%);
  box-shadow: 0 15px 35px -10px rgba(99, 102, 241, 0.15);
}

@media (min-width: 1024px) {
  .pricing-card.popular {
    transform: scale(1.04) translateY(-4px);
  }
  .pricing-card.popular:hover {
    transform: scale(1.04) translateY(-12px);
    box-shadow: 0 25px 50px -15px rgba(56, 189, 248, 0.2);
  }
}

/* Top popular badge */
.popular-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(to right, var(--accent-gold-sand), var(--accent-gold));
  color: #070913;
  font-size: 0.55rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  padding: 6px 16px;
  border-radius: 99px;
  box-shadow: 0 4px 10px rgba(99, 102, 241, 0.3);
  text-align: center;
}

.pricing-card-header {
  margin-bottom: 24px;
}

.pricing-card-title {
  font-family: var(--font-serif);
  font-size: 1.8rem;
  color: var(--text-light);
  margin-bottom: 8px;
}

.pricing-card-desc {
  font-size: 0.8rem;
  color: var(--text-dim);
  line-height: 1.45;
  min-height: 68px; /* Align text across cards */
}

.pricing-card-price-row {
  margin-bottom: 32px;
  border-bottom: 1px solid var(--border-light);
  padding-bottom: 24px;
}

.pricing-card-price {
  font-family: var(--font-serif);
  font-size: 3rem;
  color: var(--text-light);
  line-height: 1;
}

.pricing-card-price span.mo {
  font-size: 1.15rem;
  font-family: var(--font-sans);
  color: var(--text-muted);
}

.pricing-card-commit {
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent-gold-sand);
  margin-top: 10px;
}

/* Simplified Features Table inside card */
.pricing-card-features {
  margin-bottom: 40px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.pricing-card-feature-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
  border-bottom: 1px solid rgba(148, 163, 184, 0.05);
  padding-bottom: 10px;
}

.pricing-card-feature-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.pricing-card-feature-name {
  font-size: 0.62rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--text-muted);
  font-weight: 600;
}

.pricing-card-feature-val {
  font-size: 0.85rem;
  font-weight: 400;
  color: var(--text-light);
}

/* Call to Action Button inside card */
.pricing-card .btn-premium {
  width: 100%;
  display: flex;
  justify-content: space-between;
  margin-top: auto;
}


/* --- FAQ Section --- */
.faq {
  padding: 120px 0;
  background-color: var(--bg-dark);
  position: relative;
}

.faq-glow-1 {
  position: absolute;
  top: 10%;
  right: -10%;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background-color: rgba(198, 166, 106, 0.03);
  filter: blur(100px);
  pointer-events: none;
  animation: faq-spin 80s linear infinite;
}

.faq-glow-2 {
  position: absolute;
  bottom: 5%;
  left: -10%;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background-color: rgba(166, 124, 61, 0.04);
  filter: blur(100px);
  pointer-events: none;
  animation: faq-spin 60s linear infinite reverse;
}

@keyframes faq-spin {
  to { transform: rotate(360deg); }
}

.faq-header {
  text-align: center;
  margin-bottom: 80px;
}

.faq-header h2 {
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 300;
  margin-top: 16px;
}

.faq-header .divider {
  width: 40px;
  height: 1px;
  background-color: var(--accent-gold);
  margin: 24px auto 0 auto;
}

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

.faq-item {
  position: relative;
  border-bottom: 1px solid var(--border-light);
}

.faq-item::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, transparent, rgba(198, 166, 106, 0.02), transparent);
  opacity: 0;
  transition: opacity 0.5s var(--transition-smooth);
  pointer-events: none;
}

.faq-item:hover::before {
  opacity: 1;
}

.faq-trigger {
  width: 100%;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  padding: 32px 0;
  text-align: left;
  position: relative;
  z-index: 2;
}

.faq-number-bg {
  position: absolute;
  left: 0;
  top: 16px;
  z-index: -1;
  font-family: var(--font-serif);
  font-size: 5.5rem;
  line-height: 1;
  font-weight: 400;
  color: rgba(237, 237, 213, 0.03);
  pointer-events: none;
}

.faq-question-row {
  display: flex;
  align-items: baseline;
  gap: 24px;
  flex: 1;
  padding-right: 24px;
}

.faq-question-no {
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--accent-gold-sand);
}

.faq-question-text {
  font-family: var(--font-serif);
  font-size: clamp(1.15rem, 2.5vw, 1.6rem);
  font-weight: 300;
  color: var(--text-light);
  transition: color 0.3s var(--transition-smooth);
}

.faq-item:hover .faq-question-text {
  color: var(--accent-gold);
}

.faq-icon-box {
  position: relative;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(198, 166, 106, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 4px;
  transition: border-color 0.5s var(--transition-smooth);
}

.faq-icon-box span {
  font-size: 1.15rem;
  color: var(--accent-gold-sand);
  transition: transform 0.5s var(--transition-smooth);
}

.faq-item:hover .faq-icon-box {
  border-color: var(--accent-gold);
}

.faq-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s var(--transition-smooth);
}

.faq-content-inner {
  padding-bottom: 32px;
  padding-left: 68px;
  padding-right: 48px;
}

.faq-content-inner p {
  font-size: 0.95rem;
  line-height: 1.8;
  color: var(--text-dim);
}

/* Expanded state class */
.faq-item.expanded .faq-content {
  max-height: 400px; /* Large enough to fit content */
}

.faq-item.expanded .faq-icon-box span {
  transform: rotate(45deg);
}

/* --- Call To Action / Footer --- */
footer {
  background-color: var(--bg-dark);
  border-top: 1px solid var(--border-light);
  padding: 80px 0 40px 0;
  position: relative;
}

.footer-top {
  display: flex;
  flex-direction: column;
  gap: 48px;
  margin-bottom: 80px;
}

@media (min-width: 768px) {
  .footer-top {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
  }
}

.footer-brand h4 {
  font-size: 2.2rem;
  margin-bottom: 12px;
  font-weight: 500;
}

.footer-brand p {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--text-muted);
}

.footer-cta {
  max-width: 480px;
}

.footer-cta p {
  font-family: var(--font-serif);
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 300;
  line-height: 1.3;
  margin-bottom: 24px;
}

.footer-cta .btn-premium {
  background-color: var(--accent-gold);
  color: var(--bg-dark);
  border-color: var(--accent-gold);
}

.footer-cta .btn-premium span.btn-text {
  color: var(--bg-dark);
}

.footer-cta .btn-premium .btn-circle {
  background-color: var(--bg-dark);
}

.footer-cta .btn-premium .btn-circle svg {
  color: var(--text-light);
}

.footer-cta .btn-premium:hover span.btn-text {
  color: var(--text-light);
}

.footer-cta .btn-premium:hover .btn-circle {
  background-color: var(--accent-gold-sand);
}

.footer-cta .btn-premium:hover .btn-circle svg {
  color: var(--bg-dark);
}

.footer-contact-links {
  margin-top: 32px;
}

.footer-contact-links span.label {
  display: block;
  font-size: 0.6rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--text-muted);
  margin-bottom: 8px;
}

.footer-email {
  font-size: 1rem;
  color: var(--text-dim);
  transition: color 0.3s var(--transition-smooth);
}

.footer-email:hover {
  color: var(--accent-gold);
}

.footer-large-brand {
  text-align: center;
  overflow: hidden;
  margin-bottom: 32px;
  pointer-events: none;
  user-select: none;
  mask-image: linear-gradient(to bottom, black 20%, rgba(0, 0, 0, 0.3) 70%, transparent 95%);
}

.footer-large-brand p {
  font-family: var(--font-serif);
  font-size: clamp(4rem, 15vw, 12rem);
  line-height: 0.8;
  font-weight: 300;
  text-transform: uppercase;
  color: var(--accent-gold);
  opacity: 0.3;
}

.footer-bottom {
  display: flex;
  flex-direction: column;
  gap: 20px;
  border-top: 1px solid rgba(237, 237, 213, 0.05);
  padding-top: 32px;
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--text-muted);
}

@media (min-width: 768px) {
  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
}

.footer-legal {
  list-style: none;
  display: flex;
  gap: 24px;
}

.footer-legal a {
  transition: color 0.3s var(--transition-smooth);
}

.footer-legal a:hover {
  color: var(--text-light);
}

/* --- Mobile Menu Overlay --- */
.mobile-nav-overlay {
  position: fixed;
  inset: 0;
  background-color: rgba(9, 9, 11, 0.98);
  z-index: 95;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 40px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s var(--transition-smooth), visibility 0.4s var(--transition-smooth);
}

.mobile-nav-overlay.open {
  opacity: 1;
  visibility: visible;
}

.mobile-nav-menu {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
  list-style: none;
  margin-bottom: 48px;
}

.mobile-nav-link {
  font-size: 1.25rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--text-dim);
  transition: color 0.3s var(--transition-smooth);
}

.mobile-nav-link:hover {
  color: var(--text-light);
}

/* Responsive Hide/Show */
@media (max-width: 1024px) {
  .nav-menu {
    display: none;
  }
  .menu-toggle {
    display: block;
  }
}

/* --- Revenue Leak Calculator Section --- */
.revenue-leak-section {
  padding: 120px 0;
  background-color: var(--bg-dark);
  position: relative;
  border-bottom: 1px solid var(--border-light);
}

.revenue-leak-container {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: start;
}

@media (min-width: 1024px) {
  .revenue-leak-container {
    grid-template-columns: 1.1fr 0.9fr;
    gap: 64px;
  }
}

.calculator-intro h2 {
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 300;
  margin-bottom: 24px;
}

.calculator-intro h2 span {
  color: var(--accent-gold);
}

.calculator-intro p.desc {
  color: var(--text-dim);
  font-size: 1rem;
  max-width: 600px;
  margin-bottom: 40px;
}

/* Form panel styling */
.calculator-panel {
  background-color: var(--bg-surface);
  border: 1px solid var(--border-light);
  border-radius: 24px;
  padding: 40px 32px;
  position: relative;
}

.calculator-panel::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 4px;
  background: linear-gradient(to bottom, var(--accent-gold-sand), var(--accent-gold));
  border-radius: 24px 0 0 24px;
}

.calculator-panel-title {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--text-muted);
  border-bottom: 1px solid var(--border-light);
  padding-bottom: 16px;
  margin-bottom: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.calculator-panel-title span.live-badge {
  font-size: 0.6rem;
  color: var(--accent-gold);
  font-family: var(--font-sans);
  font-weight: 600;
}

.calculator-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

@media (min-width: 640px) {
  .calculator-grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px 24px;
  }
  .calculator-grid .col-span-2 {
    grid-column: span 2;
  }
}

.calc-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.calc-group label {
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--text-dim);
}

.calc-input-wrapper {
  position: relative;
  display: flex;
  align-items: center;
}

.calc-prefix {
  position: absolute;
  left: 0;
  color: var(--accent-gold);
  font-weight: 600;
  font-size: 1rem;
}

.calc-input-wrapper input[type="number"],
.calc-input-wrapper select {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(148, 163, 184, 0.2);
  color: var(--text-light);
  padding: 10px 0;
  font-size: 1.05rem;
  font-family: var(--font-sans);
  font-weight: 600;
  outline: none;
  transition: border-color 0.3s var(--transition-smooth);
}

.calc-input-wrapper input[type="number"] {
  padding-left: 16px;
}

.calc-input-wrapper input:focus,
.calc-input-wrapper select:focus {
  border-color: var(--accent-gold);
}

/* Custom Select Dropdown Arrow */
.calc-input-wrapper select {
  appearance: none;
  -webkit-appearance: none;
  cursor: pointer;
  padding-right: 24px;
}

.calc-input-wrapper::after {
  content: '▼';
  font-size: 0.65rem;
  color: var(--text-muted);
  position: absolute;
  right: 4px;
  pointer-events: none;
}

.calc-slider-row {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 8px;
}

.calc-slider-row input[type="range"] {
  flex: 1;
  height: 6px;
  background: var(--bg-surface-subtle);
  border-radius: 99px;
  outline: none;
  accent-color: var(--accent-gold);
  cursor: pointer;
}

.calc-slider-value {
  font-family: var(--font-sans);
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-light);
  min-width: 48px;
  text-align: right;
}

.calc-slider-limits {
  display: flex;
  justify-content: space-between;
  font-size: 0.65rem;
  color: var(--text-muted);
  font-weight: 600;
  margin-top: 4px;
}

/* Sticky Results Panel */
.calculator-results {
  position: sticky;
  top: 100px;
  background-color: var(--bg-surface);
  border: 1px solid var(--border-light);
  border-radius: 24px;
  overflow: hidden;
}

.results-header {
  padding: 40px 32px;
  border-bottom: 1px solid var(--border-light);
}

.results-header p.label {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--text-muted);
}

.results-large-amount {
  font-family: var(--font-serif);
  font-size: clamp(3rem, 5vw, 4.5rem);
  color: var(--accent-gold);
  font-weight: 400;
  line-height: 1;
  margin: 16px 0;
  letter-spacing: -0.02em;
}

.results-header p.desc {
  font-size: 0.85rem;
  color: var(--text-dim);
  line-height: 1.6;
}

.results-breakdown {
  display: grid;
  grid-template-columns: 1fr;
  border-bottom: 1px solid var(--border-light);
}

@media (min-width: 640px) {
  .results-breakdown {
    grid-template-columns: 1fr 1fr;
  }
}

.breakdown-col {
  padding: 24px 32px;
  border-bottom: 1px solid var(--border-light);
}

@media (min-width: 640px) {
  .breakdown-col {
    border-bottom: none;
  }
  .breakdown-col:first-child {
    border-right: 1px solid var(--border-light);
  }
}

.breakdown-label {
  font-size: 0.6rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--text-muted);
}

.breakdown-value {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  color: var(--text-light);
  margin-top: 8px;
  font-weight: 400;
}

/* Calculator Lead Gate Form */
.calculator-gate {
  background-color: var(--text-light);
  color: var(--bg-dark);
  padding: 40px 32px;
  border-top: 1px solid var(--border-light);
}

.gate-intro {
  display: flex;
  gap: 16px;
  align-items: start;
  margin-bottom: 24px;
}

.gate-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: var(--accent-gold-sand);
  color: var(--text-light);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.gate-icon svg {
  width: 18px;
  height: 18px;
}

.gate-intro-text h4 {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--bg-dark);
}

.gate-intro-text p {
  font-size: 0.8rem;
  color: rgba(7, 9, 19, 0.7);
  line-height: 1.5;
  margin-top: 4px;
}

.gate-form {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

@media (min-width: 640px) {
  .gate-form {
    grid-template-columns: 1fr 1fr;
  }
  .gate-form .col-span-2 {
    grid-column: span 2;
  }
}

.gate-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.gate-group label {
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(7, 9, 19, 0.6);
}

.gate-group input {
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(7, 9, 19, 0.2);
  padding: 8px 0;
  font-size: 0.95rem;
  font-family: var(--font-sans);
  font-weight: 600;
  color: var(--bg-dark);
  outline: none;
  transition: border-color 0.3s;
}

.gate-group input:focus {
  border-color: var(--accent-gold-sand);
}

.gate-form button.btn-premium {
  background-color: var(--bg-dark);
  border-color: var(--bg-dark);
  color: var(--text-light);
  width: 100%;
  display: flex;
  justify-content: space-between;
  margin-top: 12px;
}

.gate-form button.btn-premium span.btn-text {
  color: var(--text-light);
}

.gate-form button.btn-premium .btn-circle {
  background-color: var(--accent-gold);
}

.gate-form button.btn-premium .btn-circle svg {
  color: var(--bg-dark);
}

.gate-form button.btn-premium:hover {
  background-color: var(--accent-gold-sand);
  border-color: var(--accent-gold-sand);
}

.gate-form button.btn-premium:hover span.btn-text {
  color: var(--text-light);
}

.gate-form button.btn-premium:hover .btn-circle {
  background-color: var(--text-light);
}

.gate-footer-note {
  font-size: 0.65rem;
  color: rgba(7, 9, 19, 0.5);
  line-height: 1.5;
  margin-top: 16px;
}

/* Calculator success animation state */
.calculator-gate-success {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 40px 32px;
  background-color: var(--bg-surface);
  color: var(--text-light);
  border-top: 1px solid var(--border-light);
}

.calculator-gate-success .success-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background-color: var(--accent-gold-sand);
  color: var(--text-light);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  font-size: 2rem;
}

.calculator-gate-success h4 {
  font-family: var(--font-serif);
  font-size: 1.75rem;
  margin-bottom: 12px;
  font-weight: 400;
}

.calculator-gate-success p {
  font-size: 0.9rem;
  color: var(--text-dim);
  line-height: 1.6;
  max-width: 320px;
}

/* --- Updates to Pricing Grid and Layout --- */
.one-time-pricing-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  margin-top: 32px;
}

@media (min-width: 768px) {
  .one-time-pricing-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.one-time-pricing-title-row {
  margin-top: 80px;
  border-top: 1px solid var(--border-light);
  padding-top: 60px;
}

.one-time-pricing-title-row h3 {
  font-size: 1.8rem;
  color: var(--text-light);
  font-family: var(--font-serif);
}

.one-time-card {
  background-color: var(--bg-surface);
  border: 1px solid var(--border-light);
  border-radius: 20px;
  padding: 32px 24px;
  display: flex;
  flex-direction: column;
  transition: transform 0.4s var(--transition-smooth), border-color 0.4s var(--transition-smooth);
}

.one-time-card:hover {
  transform: translateY(-4px);
  border-color: rgba(56, 189, 248, 0.3);
}

.one-time-badge {
  font-size: 0.6rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--text-muted);
  font-weight: 700;
}

.one-time-price {
  font-family: var(--font-serif);
  font-size: 2.2rem;
  color: var(--text-light);
  margin: 12px 0 16px 0;
  line-height: 1;
}

.one-time-card h4 {
  font-family: var(--font-sans);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-light);
  margin-bottom: 8px;
}

.one-time-card p {
  font-size: 0.75rem;
  color: var(--text-dim);
  line-height: 1.5;
  margin-bottom: 24px;
}

.one-time-card .btn-premium {
  margin-top: auto;
  width: 100%;
  display: flex;
  justify-content: space-between;
}

/* --- Language Selector --- */
.lang-selector {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-sans);
  font-size: 0.75rem;
  letter-spacing: 0.05em;
  font-weight: 500;
  margin-left: 8px;
}

.lang-link {
  color: var(--text-dim);
  transition: color 0.3s var(--transition-smooth);
  text-decoration: none;
  cursor: pointer;
}

.lang-link:hover,
.lang-link.active {
  color: var(--text-light);
}

.lang-link.active {
  font-weight: 700;
  pointer-events: none;
}

.lang-divider {
  color: rgba(237, 237, 213, 0.15);
}

.mobile-lang-selector {
  margin-top: 32px;
  display: flex;
  gap: 16px;
  align-items: center;
  justify-content: center;
}

.mobile-lang-link {
  color: var(--text-dim);
  text-decoration: none;
  font-size: 0.95rem;
  letter-spacing: 0.05em;
  transition: color 0.3s var(--transition-smooth);
}

.mobile-lang-link:hover,
.mobile-lang-link.active {
  color: var(--text-light);
}

.mobile-lang-link.active {
  font-weight: 700;
  pointer-events: none;
}

/* --- 4-Step GEO Engine Framework Section --- */
.geo-framework {
  padding: 100px 0;
  border-top: 1px solid var(--border-light);
  background-color: var(--bg-dark);
  position: relative;
}

.geo-framework-header {
  text-align: center;
  margin-bottom: 60px;
}

.geo-framework-header h2 {
  font-size: 2.2rem;
  margin-bottom: 16px;
  color: var(--text-light);
}

.geo-framework-header h2 span {
  color: var(--accent-gold);
}

.geo-framework-header p {
  max-width: 600px;
  margin: 0 auto;
  color: var(--text-dim);
  font-size: 0.95rem;
}

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

@media (min-width: 768px) {
  .geo-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
}

@media (min-width: 1024px) {
  .geo-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
  }
}

.geo-step-card {
  background-color: var(--bg-surface);
  border: 1px solid rgba(99, 102, 241, 0.1);
  border-radius: 20px;
  padding: 32px 24px;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: transform 0.4s var(--transition-smooth), border-color 0.4s var(--transition-smooth);
}

.geo-step-card:hover {
  transform: translateY(-6px);
  border-color: rgba(56, 189, 248, 0.3);
}

.geo-step-num {
  font-size: 2.5rem;
  font-family: var(--font-serif);
  color: rgba(56, 189, 248, 0.15);
  line-height: 1;
  margin-bottom: 16px;
}

.geo-step-card h3 {
  font-family: var(--font-sans);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--text-light);
  margin-bottom: 12px;
}

.geo-step-card p {
  font-size: 0.8rem;
  color: var(--text-dim);
  line-height: 1.5;
}


