/* ─── Oakville SEO Company — Lead Gen Squeeze Page ───
   Design: 2026 premium, light theme, Search Gurus brand
   Font: Inter (Google Fonts)
   Mobile-first responsive
   ─────────────────────────────────────────────── */

/* ─── Custom Properties ─── */
:root {
  /* Brand colors — aligned with Search Gurus Inc. */
  --navy-900: #0a1628;
  --navy-800: #0f1f3a;
  --navy-700: #002951;
  --navy-600: #1a3d6e;
  --blue-500: #2563eb;
  --blue-400: #3b82f6;
  --blue-300: #60a5fa;
  --cyan-400: #22d3ee;
  --cta-red: #ee3437;
  --cta-red-hover: #d62d2f;
  --emerald-500: #10b981;
  --emerald-600: #059669;

  /* Neutrals */
  --white: #ffffff;
  --gray-50: #f8fafc;
  --gray-100: #f1f5f9;
  --gray-200: #e2e8f0;
  --gray-300: #cbd5e1;
  --gray-400: #94a3b8;
  --gray-500: #64748b;
  --gray-600: #475569;
  --gray-700: #334155;
  --gray-800: #1e293b;
  --gray-900: #0f172a;

  /* Semantic */
  --body-bg: #f1f5f9;
  --surface: var(--white);
  --text-primary: var(--gray-900);
  --text-secondary: var(--gray-600);
  --text-muted: var(--gray-400);
  --border: var(--gray-200);

  /* Typography */
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-display: 'Inter', sans-serif;
  --text-xs: 0.75rem;
  --text-sm: 0.875rem;
  --text-base: 1rem;
  --text-lg: 1.125rem;
  --text-xl: 1.25rem;
  --text-2xl: 1.5rem;
  --text-3xl: 1.875rem;
  --text-4xl: 2.25rem;
  --text-5xl: 3rem;
  --text-6xl: 3.75rem;

  /* Spacing */
  --space-xs: 0.5rem;
  --space-sm: 0.75rem;
  --space-md: 1rem;
  --space-lg: 1.5rem;
  --space-xl: 2rem;
  --space-2xl: 3rem;
  --space-3xl: 4rem;
  --space-4xl: 6rem;

  /* Radius */
  --radius-sm: 0.375rem;
  --radius-md: 0.5rem;
  --radius-lg: 0.75rem;
  --radius-xl: 1rem;
  --radius-full: 9999px;

  /* Shadows */
  --shadow-sm: 0 1px 2px rgba(10, 22, 40, 0.05);
  --shadow-md: 0 4px 6px rgba(10, 22, 40, 0.07);
  --shadow-lg: 0 10px 25px rgba(10, 22, 40, 0.1);
  --shadow-xl: 0 20px 40px rgba(10, 22, 40, 0.12);

  /* Transitions */
  --transition-fast: 150ms ease;
  --transition-base: 250ms ease;
  --transition-slow: 400ms ease;

  /* Layout */
  --max-width: 1200px;
  --nav-height: 72px;
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  font-size: var(--text-base);
  line-height: 1.6;
  color: var(--text-primary);
  background: var(--body-bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

@media (min-width: 768px) {
  body { padding-bottom: 0; }
}

@media (max-width: 767px) {
  body { padding-bottom: 48px; }
}

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

/* ─── Container ─── */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--space-lg);
}

@media (min-width: 768px) {
  .container { padding: 0 var(--space-xl); }
}

/* ─── Typography ─── */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.2;
}

h1 { font-size: var(--text-3xl); }
h2 { font-size: var(--text-2xl); }
h3 { font-size: var(--text-xl); }

@media (min-width: 768px) {
  h1 { font-size: var(--text-5xl); }
  h2 { font-size: var(--text-3xl); }
  h3 { font-size: var(--text-2xl); }
}

.section-label {
  display: inline-block;
  font-size: var(--text-xs);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--blue-500);
  margin-bottom: var(--space-sm);
}

.section-title {
  font-size: var(--text-2xl);
  margin-bottom: var(--space-md);
}

@media (min-width: 768px) {
  .section-title { font-size: var(--text-3xl); }
}

.section-subtitle {
  color: var(--text-secondary);
  max-width: 600px;
  margin-bottom: var(--space-2xl);
  font-size: var(--text-lg);
}

/* ─── Buttons ─── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.7rem 1.4rem;
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: 600;
  line-height: 1;
  border: 2px solid transparent;
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: all var(--transition-fast);
  white-space: nowrap;
  text-align: center;
}

.btn-lg { 
  padding: 0.9rem 1.8rem; 
  font-size: var(--text-base);
}

.btn-primary {
  background: var(--cta-red);
  color: var(--white);
  border-color: var(--cta-red);
}
.btn-primary:hover {
  background: var(--cta-red-hover);
  border-color: var(--cta-red-hover);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(238, 52, 55, 0.35);
}

.btn-accent {
  background: var(--blue-500);
  color: var(--white);
  border-color: var(--blue-500);
}
.btn-accent:hover {
  background: var(--blue-400);
  border-color: var(--blue-400);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.3);
}
.btn-outline:hover {
  border-color: var(--white);
  background: rgba(255,255,255,0.1);
}

.btn-submit {
  background: var(--emerald-600);
  color: var(--white);
  border-color: var(--emerald-600);
  width: 100%;
  padding: 1rem 1.5rem;
  font-size: var(--text-base);
}
.btn-submit:hover {
  background: #047857;
  border-color: #047857;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(5, 150, 105, 0.35);
}

/* ─── Nav ─── */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--nav-height);
  transition: all var(--transition-base);
}

nav.scrolled {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: var(--shadow-sm);
}

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

.nav-logo {
  font-size: var(--text-lg);
  font-weight: 800;
  color: var(--white);
  transition: color var(--transition-base);
  letter-spacing: -0.02em;
}

.nav-logo span { color: var(--cta-red); }

nav.scrolled .nav-logo { color: var(--navy-700); }

.nav-links {
  display: none;
  align-items: center;
  gap: var(--space-xl);
}

@media (min-width: 768px) {
  .nav-links { display: flex; }
}

.nav-links a {
  font-size: var(--text-sm);
  font-weight: 500;
  color: rgba(255,255,255,0.8);
  transition: color var(--transition-fast);
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--cta-red);
  transition: width var(--transition-base);
}

.nav-links a:hover { color: var(--white); }
.nav-links a:hover::after { width: 100%; }

nav.scrolled .nav-links a { color: var(--text-secondary); }
nav.scrolled .nav-links a:hover { color: var(--text-primary); }

.nav-cta {
  display: none;
  padding: 0.5rem 1rem;
  font-size: var(--text-xs);
}
nav.scrolled .nav-links .nav-cta { color: var(--white); }

@media (min-width: 768px) {
  .nav-cta { display: inline-flex; }
}

/* Mobile hamburger */
.hamburger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  z-index: 1001;
}

@media (min-width: 768px) {
  .hamburger { display: none; }
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all var(--transition-base);
}

nav.scrolled .hamburger span { background: var(--gray-800); }

.hamburger.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobile menu overlay */
.mobile-overlay {
  position: fixed;
  inset: 0;
  background: rgba(10, 22, 40, 0.97);
  z-index: 999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--space-xl);
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition-base);
}

.mobile-overlay.open {
  opacity: 1;
  pointer-events: all;
}

.mobile-overlay a {
  color: var(--white);
  font-size: var(--text-2xl);
  font-weight: 600;
  transition: color var(--transition-fast);
}
.mobile-overlay a:hover { color: var(--cta-red); }

.mobile-overlay .btn { margin-top: var(--space-lg); }

/* ─── Hero ─── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background:
    linear-gradient(135deg, rgba(10, 22, 40, 0.88) 0%, rgba(15, 31, 58, 0.82) 40%, rgba(0, 41, 81, 0.75) 100%),
    url('../images/hero-bg.jpg') center center / cover no-repeat;
  overflow: hidden;
  padding: calc(var(--nav-height) + var(--space-2xl)) 0 var(--space-2xl);
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -30%;
  width: 80%;
  height: 150%;
  background: radial-gradient(ellipse, rgba(37, 99, 235, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -20%;
  left: -10%;
  width: 60%;
  height: 100%;
  background: radial-gradient(ellipse, rgba(6, 182, 212, 0.05) 0%, transparent 60%);
  pointer-events: none;
}

.hero .container {
  position: relative;
  z-index: 1;
  text-align: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 1rem;
  background: rgba(37, 99, 235, 0.15);
  border: 1px solid rgba(37, 99, 235, 0.25);
  border-radius: var(--radius-full);
  font-size: var(--text-xs);
  font-weight: 600;
  color: var(--blue-300);
  margin-bottom: var(--space-lg);
}

.hero h1 {
  color: var(--white);
  font-size: clamp(2rem, 5vw, var(--text-5xl));
  line-height: 1.1;
  margin-bottom: var(--space-lg);
  letter-spacing: -0.03em;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.hero h1 .highlight {
  background: linear-gradient(135deg, var(--blue-400), var(--cyan-400));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-sub {
  font-size: clamp(var(--text-base), 2vw, var(--text-xl));
  color: rgba(255,255,255,0.7);
  max-width: 650px;
  margin: 0 auto var(--space-2xl);
  line-height: 1.6;
}

/* Hero trust markers */
.hero-trust {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: var(--space-md);
  margin-top: var(--space-xl);
  font-size: var(--text-sm);
  color: rgba(255,255,255,0.5);
}

.hero-trust .stars {
  color: #fbbf24;
  font-size: var(--text-base);
}

.hero-trust .divider {
  width: 1px;
  height: 20px;
  background: rgba(255,255,255,0.15);
}

/* ─── Inline Form ─── */
.inline-form {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
  max-width: 600px;
  margin: 0 auto;
}

@media (min-width: 640px) {
  .inline-form {
    flex-direction: row;
    align-items: stretch;
  }
}

.inline-form .input-group {
  flex: 1;
  min-width: 0;
}

.inline-form input {
  width: 100%;
  padding: 0.9rem 1.2rem;
  font-size: var(--text-base);
  font-family: var(--font-body);
  border: 2px solid rgba(255,255,255,0.15);
  border-radius: var(--radius-md);
  background: rgba(255,255,255,0.08);
  color: var(--white);
  transition: all var(--transition-fast);
  outline: none;
}

.inline-form input::placeholder {
  color: rgba(255,255,255,0.35);
}

.inline-form input:focus {
  border-color: var(--blue-400);
  background: rgba(255,255,255,0.12);
}

/* CSS-only validation (user preference) */
.inline-form input:focus:invalid,
.was-validated .inline-form input:invalid {
  border-color: var(--cta-red);
  box-shadow: 0 0 0 3px rgba(238, 52, 55, 0.15);
}

.inline-form .btn {
  flex-shrink: 0;
  padding: 0.9rem 1.8rem;
  font-size: var(--text-base);
}

/* ─── Sections ─── */
section {
  padding: var(--space-3xl) 0;
  position: relative;
}

section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 10%;
  right: 10%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gray-200), transparent);
}

section:first-of-type::before,
section.squeeze::before {
  display: none;
}

@media (min-width: 768px) {
  section { padding: var(--space-4xl) 0; }
}

/* ─── Section Alternating Background ─── */
.section-alt {
  background: var(--white);
  box-shadow: inset 0 1px 0 rgba(0,0,0,0.02), inset 0 -1px 0 rgba(0,0,0,0.02);
}

.section-header {
  text-align: center;
  margin-bottom: var(--space-3xl);
}

.section-header .section-subtitle {
  margin-left: auto;
  margin-right: auto;
}

/* ─── Trust Bar / Logo Marquee ─── */
.trust-bar {
  background: var(--white);
  border-bottom: 1px solid var(--gray-100);
  padding: var(--space-2xl) 0;
  overflow: hidden;
}

.trust-label {
  text-align: center;
  font-size: var(--text-xs);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gray-400);
  margin-bottom: var(--space-lg);
}

.marquee-container {
  overflow: hidden;
  width: 100%;
  position: relative;
}

.marquee-content {
  display: flex;
  align-items: center;
  gap: var(--space-3xl);
  animation: marquee-scroll 60s linear infinite;
  width: max-content;
}

.marquee-content:hover {
  animation-play-state: paused;
}

.marquee-item {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.marquee-item img {
  height: 80px;
  width: auto;
  opacity: 0.5;
  filter: grayscale(1);
  transition: all var(--transition-base);
}

.marquee-item img:hover {
  opacity: 1;
  filter: none;
}

@keyframes marquee-scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

@media (min-width: 768px) {
  .marquee-item img { height: 100px; }
}

/* ─── Pain Points Grid ─── */
.pain-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
}

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

.pain-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-xl);
  padding: var(--space-xl);
  transition: all var(--transition-base);
  position: relative;
  overflow: hidden;
}

.pain-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--blue-500), var(--cyan-400));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition-slow);
}

.pain-card:hover::before { transform: scaleX(1); }
.pain-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.pain-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.1), rgba(6, 182, 212, 0.1));
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-md);
  font-size: 1.25rem;
}

.pain-card h3 {
  font-size: var(--text-lg);
  margin-bottom: var(--space-sm);
}

.pain-card p {
  color: var(--text-secondary);
  font-size: var(--text-sm);
  line-height: 1.7;
}

.pain-cta {
  text-align: center;
  margin-top: var(--space-2xl);
}

/* ─── How It Works ─── */
.steps-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-xl);
  position: relative;
}

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

.step-card {
  text-align: center;
  position: relative;
}

.step-number {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue-500), var(--blue-400));
  color: var(--white);
  font-size: 1.5rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--space-lg);
  position: relative;
  z-index: 1;
}

@media (min-width: 768px) {
  .step-card:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 28px;
    left: calc(50% + 40px);
    width: calc(100% - 80px);
    height: 2px;
    background: linear-gradient(90deg, var(--blue-500), var(--gray-200));
    z-index: 0;
  }
}

.step-card h3 {
  font-size: var(--text-xl);
  margin-bottom: var(--space-sm);
}

.step-card p {
  color: var(--text-secondary);
  font-size: var(--text-sm);
  line-height: 1.7;
  max-width: 280px;
  margin: 0 auto;
}

.step-icon {
  font-size: 2rem;
  margin-bottom: var(--space-sm);
}

/* ─── Results / Case Studies ─── */
.results-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
}

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

.result-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-xl);
  padding: var(--space-xl);
  transition: all var(--transition-base);
}

.result-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-2px);
}

.result-stat {
  font-size: var(--text-3xl);
  font-weight: 800;
  background: linear-gradient(135deg, var(--emerald-500), var(--blue-500));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: var(--space-xs);
}

.result-label {
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--text-secondary);
  margin-bottom: var(--space-sm);
}

.result-card p {
  color: var(--text-secondary);
  font-size: var(--text-sm);
  line-height: 1.7;
}

/* ─── Testimonials ─── */
.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
}

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

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

.testimonial-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-xl);
  padding: var(--space-xl);
  position: relative;
}

.testimonial-card::before {
  content: '"';
  position: absolute;
  top: var(--space-lg);
  left: var(--space-lg);
  font-size: 4rem;
  line-height: 1;
  color: var(--blue-500);
  opacity: 0.12;
  font-family: Georgia, serif;
}

.testimonial-stars {
  color: #fbbf24;
  font-size: var(--text-sm);
  margin-bottom: var(--space-md);
}

.testimonial-text {
  color: var(--text-secondary);
  font-size: var(--text-sm);
  line-height: 1.7;
  margin-bottom: var(--space-lg);
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}

.testimonial-author .avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gray-200), var(--gray-300));
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: var(--text-sm);
  color: var(--gray-600);
}

.testimonial-author .name {
  font-weight: 600;
  font-size: var(--text-sm);
}

.testimonial-author .role {
  font-size: var(--text-xs);
  color: var(--text-muted);
}

/* ─── Services (Condensed) ─── */
.services-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-md);
}

@media (min-width: 640px) {
  .services-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.service-card {
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  text-align: center;
  transition: all var(--transition-base);
}

.service-card:hover {
  background: var(--white);
  border-color: var(--blue-200);
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.service-card .icon {
  font-size: 1.5rem;
  margin-bottom: var(--space-sm);
}

.service-card h4 {
  font-size: var(--text-sm);
  margin-bottom: var(--space-xs);
}

.service-card p {
  font-size: var(--text-xs);
  color: var(--text-secondary);
  line-height: 1.6;
}

/* ─── Team (Condensed) ─── */
.team-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-md);
}

@media (min-width: 640px) {
  .team-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.team-card {
  text-align: center;
  padding: var(--space-lg) var(--space-md);
  border-radius: var(--radius-lg);
  transition: all var(--transition-base);
}

.team-card:hover {
  background: var(--white);
  box-shadow: var(--shadow-md);
}

.team-photo {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto var(--space-md);
  border: 3px solid var(--gray-200);
  transition: border-color var(--transition-base);
}

.team-card:hover .team-photo {
  border-color: var(--blue-400);
}

.team-card h4 {
  font-size: var(--text-base);
  margin-bottom: 2px;
}

.team-card .role {
  font-size: var(--text-xs);
  color: var(--text-muted);
  margin-bottom: var(--space-sm);
}

.team-card .btn {
  font-size: var(--text-xs);
  padding: 0.4rem 0.8rem;
}


/* ─── Final CTA / Squeeze ─── */
.squeeze {
  background: linear-gradient(135deg, var(--navy-900), var(--navy-700));
  color: var(--white);
  text-align: center;
}

.squeeze h2 {
  font-size: clamp(1.75rem, 4vw, var(--text-4xl));
  margin-bottom: var(--space-md);
}

.squeeze .section-subtitle {
  color: rgba(255,255,255,0.6);
  margin-left: auto;
  margin-right: auto;
}

.squeeze-form {
  max-width: 500px;
  margin: var(--space-xl) auto 0;
}

.squeeze-form .form-group {
  margin-bottom: var(--space-md);
  text-align: left;
}

.squeeze-form label {
  display: block;
  font-size: var(--text-sm);
  font-weight: 500;
  color: rgba(255,255,255,0.8);
  margin-bottom: var(--space-xs);
}

.squeeze-form input {
  width: 100%;
  padding: 0.85rem 1rem;
  font-size: var(--text-base);
  font-family: var(--font-body);
  border: 2px solid rgba(255,255,255,0.15);
  border-radius: var(--radius-md);
  background: rgba(255,255,255,0.08);
  color: var(--white);
  transition: all var(--transition-fast);
  outline: none;
}

.squeeze-form input::placeholder {
  color: rgba(255,255,255,0.3);
}

.squeeze-form input:focus {
  border-color: var(--blue-400);
  background: rgba(255,255,255,0.12);
}

/* CSS-only validation (user preference) */
.squeeze-form input:focus:invalid {
  border-color: var(--cta-red);
  box-shadow: 0 0 0 3px rgba(238, 52, 55, 0.2);
}

.squeeze-form .btn {
  margin-top: var(--space-sm);
  width: 100%;
  padding: 1rem;
  font-size: var(--text-base);
}

.squeeze-guarantee {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-top: var(--space-lg);
  font-size: var(--text-sm);
  color: rgba(255,255,255,0.4);
}

.squeeze-guarantee .check {
  color: var(--emerald-500);
}

/* ─── Footer ─── */
footer {
  background: var(--navy-900);
  padding: var(--space-2xl) 0;
  color: rgba(255,255,255,0.5);
  font-size: var(--text-sm);
}

footer .container {
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
  text-align: center;
}

@media (min-width: 768px) {
  footer .container {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }
}

.footer-info {
  display: flex;
  flex-direction: column;
  gap: var(--space-xs);
}

.footer-info a {
  color: rgba(255,255,255,0.6);
  transition: color var(--transition-fast);
}

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

.footer-credit {
  font-size: var(--text-xs);
}

.footer-credit a {
  color: var(--blue-400);
  transition: color var(--transition-fast);
}

.footer-credit a:hover { color: var(--blue-300); }

.footer-socials {
  display: flex;
  gap: var(--space-md);
  justify-content: center;
}

.footer-socials a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--text-sm);
  color: rgba(255,255,255,0.4);
  transition: all var(--transition-fast);
}

.footer-socials a:hover {
  background: rgba(255,255,255,0.12);
  color: var(--white);
}

/* ─── Sticky Mobile Bar ─── */
.sticky-mobile-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 900;
  display: flex;
  gap: 0;
  background: var(--white);
  border-top: 1px solid var(--gray-200);
  box-shadow: 0 -4px 20px rgba(0,0,0,0.08);
}

@media (min-width: 768px) {
  .sticky-mobile-bar { display: none; }
}

.sticky-mobile-bar a,
.sticky-mobile-bar button {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.9rem 0.5rem;
  font-size: var(--text-xs);
  font-weight: 600;
  text-align: center;
  border: none;
  background: none;
  cursor: pointer;
  font-family: var(--font-body);
  transition: background var(--transition-fast);
}

.sticky-mobile-bar .call-btn {
  background: var(--blue-500);
  color: var(--white);
}

.sticky-mobile-bar .call-btn:hover {
  background: var(--blue-400);
}

.sticky-mobile-bar .audit-btn {
  background: var(--cta-red);
  color: var(--white);
}

.sticky-mobile-bar .audit-btn:hover {
  background: var(--cta-red-hover);
}

/* ─── Scroll Animations ─── */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.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; }

/* ─── Success Message ─── */
.success-message {
  text-align: center;
  padding: var(--space-3xl) var(--space-lg);
  max-width: 500px;
  margin: 0 auto;
}

.success-message .icon {
  font-size: 3rem;
  margin-bottom: var(--space-lg);
}

.success-message h2 {
  margin-bottom: var(--space-md);
}

.success-message p {
  color: var(--text-secondary);
  line-height: 1.7;
}

/* ─── Utility ─── */
.text-center { text-align: center; }
.mt-xl { margin-top: var(--space-xl); }
.mt-2xl { margin-top: var(--space-2xl); }

/* ─── Print ─── */
@media print {
  .sticky-mobile-bar, nav, .hamburger { display: none !important; }
  body { padding-bottom: 0; }
  .hero { min-height: auto; padding: 2rem 0; }
}
