﻿/* Flight Connect Pro LLC — Professional Design System */
:root {
  --primary: #0c4a6e;
  --primary-dark: #082f49;
  --primary-light: #0ea5e9;
  --accent: #f59e0b;
  --accent-hover: #d97706;
  --success: #059669;
  --text: #1e293b;
  --text-muted: #64748b;
  --text-light: #94a3b8;
  --bg: #ffffff;
  --bg-alt: #f8fafc;
  --bg-dark: #0f172a;
  --border: #e2e8f0;
  --shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
  --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
  --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
  --radius: 12px;
  --radius-sm: 8px;
  --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --transition: 0.2s ease;
}

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

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font);
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--primary-light); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--primary); }

.container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 1.25rem; }

/* Compliance Banner */
.compliance-banner {
  background: #fef3c7;
  border-bottom: 1px solid #fcd34d;
  padding: 0.6rem 1rem;
  text-align: center;
  font-size: 0.8125rem;
  color: #92400e;
  line-height: 1.4;
}

.compliance-banner strong { font-weight: 600; }

/* Header */
.site-header {
  background: var(--bg);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: var(--shadow);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.875rem 0;
  gap: 1rem;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  font-weight: 700;
  font-size: 1.125rem;
  color: var(--primary);
  text-decoration: none;
}

.logo-icon {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.25rem;
}

.main-nav { display: flex; align-items: center; gap: 1.75rem; }

.main-nav a {
  color: var(--text);
  font-size: 0.9375rem;
  font-weight: 500;
  text-decoration: none;
}

.main-nav a:hover { color: var(--primary-light); }

.header-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--accent);
  color: #1e293b !important;
  padding: 0.625rem 1.25rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.875rem;
  white-space: nowrap;
  transition: background var(--transition), transform var(--transition);
}

.header-cta:hover {
  background: var(--accent-hover);
  color: #1e293b !important;
  transform: translateY(-1px);
}

.mobile-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  color: var(--text);
}

.mobile-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  margin: 5px 0;
  transition: var(--transition);
}

/* Hero */
.hero {
  position: relative;
  min-height: 580px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  animation: kenBurns 22s ease-in-out infinite alternate;
}

@keyframes kenBurns {
  from { transform: scale(1); }
  to { transform: scale(1.07); }
}

.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(8, 47, 73, 0.92) 0%, rgba(12, 74, 110, 0.85) 50%, rgba(14, 165, 233, 0.4) 100%);
}

.hero-content {
  position: relative;
  z-index: 1;
  padding: 4rem 0;
  max-width: 680px;
  color: white;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 0.5rem 1rem;
  border-radius: 50px;
  font-size: 0.8125rem;
  font-weight: 500;
  margin-bottom: 1.5rem;
}

.hero h1 {
  font-size: clamp(2rem, 5vw, 3.25rem);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 1.25rem;
  letter-spacing: -0.02em;
}

.hero-subtitle {
  font-size: 1.125rem;
  opacity: 0.92;
  margin-bottom: 2rem;
  line-height: 1.7;
  max-width: 540px;
}

.hero-cta-group { display: flex; flex-wrap: wrap; gap: 1rem; align-items: center; margin-bottom: 2rem; }

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.625rem;
  background: var(--accent);
  color: #1e293b;
  padding: 1rem 2rem;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1.0625rem;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
  box-shadow: 0 4px 14px rgba(245, 158, 11, 0.4);
}

.btn-primary:hover {
  background: var(--accent-hover);
  color: #1e293b;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(245, 158, 11, 0.5);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255, 255, 255, 0.12);
  color: white;
  padding: 1rem 1.5rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.9375rem;
  border: 1px solid rgba(255, 255, 255, 0.3);
  text-decoration: none;
  transition: background var(--transition);
}

.btn-secondary:hover { background: rgba(255, 255, 255, 0.2); color: white; }

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
  font-size: 0.8125rem;
  opacity: 0.9;
}

.hero-trust span { display: flex; align-items: center; gap: 0.375rem; }

/* Trust Bar */
.trust-bar {
  background: var(--bg-dark);
  color: white;
  padding: 1rem 0;
  overflow: hidden;
}

.trust-bar-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 2rem;
  font-size: 0.8125rem;
  font-weight: 500;
}

.trust-bar span { display: flex; align-items: center; gap: 0.5rem; opacity: 0.9; }

/* Sections */
section { padding: 5rem 0; }

.section-header { text-align: center; max-width: 640px; margin: 0 auto 3rem; }

.section-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--primary-light);
  margin-bottom: 0.75rem;
}

.section-header h2 {
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  font-weight: 800;
  color: var(--text);
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
}

.section-header p { color: var(--text-muted); font-size: 1.0625rem; }

/* Steps */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.step-card {
  text-align: center;
  padding: 2rem 1.5rem;
  background: var(--bg);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  position: relative;
  transition: box-shadow var(--transition), transform var(--transition);
}

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

.step-number {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1.25rem;
  margin: 0 auto 1.25rem;
}

.step-card h3 { font-size: 1.125rem; font-weight: 700; margin-bottom: 0.75rem; }
.step-card p { color: var(--text-muted); font-size: 0.9375rem; }

.transparency-note {
  margin-top: 2.5rem;
  padding: 1.25rem 1.5rem;
  background: #eff6ff;
  border: 1px solid #bfdbfe;
  border-radius: var(--radius-sm);
  font-size: 0.875rem;
  color: #1e40af;
  text-align: center;
}

/* Services */
.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.service-card {
  background: var(--bg);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  overflow: hidden;
  transition: box-shadow var(--transition), transform var(--transition);
  display: flex;
  flex-direction: column;
}

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

.service-card-image {
  height: 200px;
  background-size: cover;
  background-position: center;
  background-color: #cbd5e1;
  position: relative;
  transition: transform 0.5s ease;
}

.service-card:hover .service-card-image { transform: scale(1.05); }

.service-card-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.3), transparent);
}

.service-card-body { padding: 1.5rem; flex: 1; display: flex; flex-direction: column; }

.service-icon { font-size: 1.75rem; margin-bottom: 0.75rem; }

/* legacy emoji service-icon - replaced by service-icon-wrap */

.service-card h3 { font-size: 1.25rem; font-weight: 700; margin-bottom: 0.75rem; }
.service-card p { color: var(--text-muted); font-size: 0.9375rem; margin-bottom: 1.25rem; flex: 1; }

.service-link {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  color: var(--primary-light);
  font-weight: 600;
  font-size: 0.9375rem;
}

.service-link:hover { color: var(--primary); }

/* Why Us */
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.why-image {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  height: 420px;
  background-size: cover;
  background-position: center;
}

.why-features { display: flex; flex-direction: column; gap: 1.25rem; }

.why-feature {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.why-feature-icon {
  width: 40px;
  height: 40px;
  background: #ecfdf5;
  color: var(--success);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.why-feature h4 { font-weight: 700; margin-bottom: 0.25rem; font-size: 1rem; color: var(--text); }

/* Comparison Table */
.comparison-table {
  background: var(--bg);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.comparison-header {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  background: var(--bg-alt);
  border-bottom: 1px solid var(--border);
  font-weight: 700;
  font-size: 0.9375rem;
}

.comparison-header > div { padding: 1rem 1.5rem; text-align: center; }
.comparison-header > div:last-child { background: #ecfdf5; color: var(--success); }

.comparison-row {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  border-bottom: 1px solid var(--border);
  font-size: 0.875rem;
}

.comparison-row:last-child { border-bottom: none; }
.comparison-row > div { padding: 1rem 1.5rem; text-align: center; }
.comparison-row > div:first-child { text-align: left; font-weight: 500; color: var(--text-muted); }
.comparison-row > div:nth-child(2) { color: #dc2626; }
.comparison-row > div:last-child { background: #f0fdf4; color: var(--success); font-weight: 600; }

/* Testimonials */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.testimonial-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.75rem;
  transition: box-shadow var(--transition);
}

.testimonial-card:hover { box-shadow: var(--shadow-lg); }

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

.testimonial-text {
  font-size: 0.9375rem;
  color: var(--text);
  line-height: 1.7;
  margin-bottom: 1.25rem;
  font-style: italic;
}

.testimonial-author { display: flex; align-items: center; gap: 0.75rem; }

.author-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.875rem;
}

.author-info strong { display: block; font-size: 0.875rem; }
.author-info span { font-size: 0.75rem; color: var(--text-muted); }

.testimonial-disclaimer {
  text-align: center;
  margin-top: 2rem;
  font-size: 0.8125rem;
  color: var(--text-light);
  font-style: italic;
}

/* Routes */
.routes-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.route-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 1.5rem;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  text-decoration: none;
  color: var(--text);
  transition: border-color var(--transition), box-shadow var(--transition);
}

.route-card:hover {
  border-color: var(--primary-light);
  box-shadow: var(--shadow);
  color: var(--text);
}

.route-card strong { font-size: 1rem; display: block; }
.route-card span { font-size: 0.8125rem; color: var(--text-muted); }
.route-arrow { color: var(--primary-light); font-size: 1.25rem; }

/* Blog */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.blog-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: box-shadow var(--transition), transform var(--transition);
  text-decoration: none;
  color: var(--text);
}

.blog-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); color: var(--text); }

.blog-card-image {
  height: 180px;
  background-size: cover;
  background-position: center;
}

.blog-card-body { padding: 1.5rem; }

.blog-meta {
  display: flex;
  gap: 0.75rem;
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-bottom: 0.75rem;
}

.blog-tag {
  background: #eff6ff;
  color: var(--primary-light);
  padding: 0.125rem 0.5rem;
  border-radius: 4px;
  font-weight: 600;
}

.blog-card h3 { font-size: 1.0625rem; font-weight: 700; margin-bottom: 0.5rem; line-height: 1.4; }
.blog-card p { font-size: 0.875rem; color: var(--text-muted); }

/* FAQ */
.faq-list { max-width: 760px; margin: 0 auto; }

.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  margin-bottom: 0.75rem;
  overflow: hidden;
  background: var(--bg);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 1.5rem;
  background: none;
  border: none;
  cursor: pointer;
  font-size: 1rem;
  font-weight: 600;
  color: var(--text);
  text-align: left;
  font-family: var(--font);
  transition: background var(--transition);
}

.faq-question:hover { background: var(--bg-alt); }

.faq-icon {
  font-size: 1.25rem;
  color: var(--primary-light);
  transition: transform var(--transition);
  flex-shrink: 0;
  margin-left: 1rem;
}

.faq-item.active .faq-icon { transform: rotate(45deg); }

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer { max-height: 500px; }

.faq-answer-inner {
  padding: 0 1.5rem 1.25rem;
  color: var(--text-muted);
  font-size: 0.9375rem;
  line-height: 1.7;
}

/* CTA Section */
.cta-section {
  background: linear-gradient(135deg, var(--primary-dark), var(--primary));
  color: white;
  text-align: center;
  padding: 4rem 0;
}

.cta-section h2 { font-size: clamp(1.75rem, 3vw, 2.25rem); font-weight: 800; margin-bottom: 1rem; }
.cta-section p { opacity: 0.9; margin-bottom: 2rem; font-size: 1.0625rem; max-width: 520px; margin-left: auto; margin-right: auto; }

.cta-phone {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background: var(--accent);
  color: #1e293b;
  padding: 1.125rem 2.5rem;
  border-radius: 50px;
  font-weight: 800;
  font-size: 1.25rem;
  text-decoration: none;
  transition: background var(--transition), transform var(--transition);
  box-shadow: 0 4px 14px rgba(0,0,0,0.2);
}

.cta-phone:hover { background: var(--accent-hover); color: #1e293b; transform: translateY(-2px); }

.cta-hours { margin-top: 1rem; font-size: 0.875rem; opacity: 0.8; }

/* Footer */
.site-footer {
  background: var(--bg-dark);
  color: #cbd5e1;
  padding: 0;
}

.footer-cta-bar {
  background: linear-gradient(135deg, #1e40af 0%, #1e3a8a 100%);
  padding: 1.25rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.footer-cta-text strong {
  display: block;
  color: white;
  font-size: 1.0625rem;
  margin-bottom: 0.25rem;
}

.footer-cta-text span {
  color: #bfdbfe;
  font-size: 0.875rem;
}

.footer-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--accent);
  color: #1e293b;
  font-weight: 700;
  padding: 0.75rem 1.5rem;
  border-radius: 999px;
  text-decoration: none;
  white-space: nowrap;
  transition: background var(--transition), transform var(--transition);
}

.footer-cta-btn:hover {
  background: var(--accent-hover);
  transform: translateY(-1px);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 2.5rem;
  padding: 3rem 0;
  border-bottom: 1px solid #334155;
}

.footer-grid--enhanced {
  grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
  padding-top: 3rem;
}

.footer-address {
  font-size: 0.8125rem;
  color: #64748b;
  line-height: 1.6;
  margin-top: 0.75rem;
}

.footer-col--legal a strong { color: #fbbf24; }
.footer-col--legal a:hover strong { color: white; }

.footer-bottom-links a { margin-left: 0; margin-right: 1rem; }

.footer-brand .logo { color: white; margin-bottom: 1rem; }
.footer-brand p { font-size: 0.875rem; line-height: 1.7; margin-bottom: 1.25rem; }

.footer-phone {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--accent);
  font-weight: 700;
  font-size: 1.0625rem;
}

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

.footer-col h4 {
  color: white;
  font-size: 0.875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 1.25rem;
}

.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 0.625rem; }
.footer-col a { color: #94a3b8; font-size: 0.875rem; text-decoration: none; }
.footer-col a:hover { color: white; }

.footer-disclaimer {
  padding: 1.5rem 0;
  font-size: 0.75rem;
  color: #64748b;
  line-height: 1.6;
  border-bottom: 1px solid #334155;
}

.footer-disclaimer strong { color: #94a3b8; }

.footer-bottom {
  padding: 1.25rem 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  font-size: 0.8125rem;
  color: #64748b;
}

.footer-bottom a { color: #94a3b8; margin-left: 1rem; }
.footer-bottom a:hover { color: white; }

.footer-developer {
  padding: 1rem 0 1.5rem;
  border-top: 1px solid #1e293b;
  text-align: center;
}

.footer-developer p {
  margin: 0;
  font-size: 0.875rem;
  color: #94a3b8;
  line-height: 1.6;
}

.footer-dev-link {
  color: #fbbf24;
  font-weight: 700;
  text-decoration: none;
  margin-left: 0;
}

.footer-dev-link:hover {
  color: #fde68a;
  text-decoration: underline;
}

.footer-dev-domain {
  color: #60a5fa;
  font-weight: 600;
  text-decoration: none;
  margin-left: 0;
}

.footer-dev-domain:hover {
  color: #93c5fd;
  text-decoration: underline;
}

/* States section */
.states-section {
  padding: 5rem 0;
  background: var(--bg-alt);
}

.states-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0.75rem;
}

.states-grid--index {
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.states-grid--compact {
  grid-template-columns: repeat(4, 1fr);
  gap: 0.5rem;
  margin-top: 1rem;
}

.state-link {
  display: block;
  padding: 0.625rem 0.875rem;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  color: var(--text);
  font-size: 0.875rem;
  font-weight: 500;
  text-decoration: none;
  text-align: center;
  transition: border-color var(--transition), color var(--transition), box-shadow var(--transition);
}

.state-link:hover {
  border-color: var(--primary);
  color: var(--primary);
  box-shadow: var(--shadow-sm);
}

.state-link--active {
  background: var(--primary);
  border-color: var(--primary);
  color: white;
}

.state-card {
  display: flex;
  flex-direction: column;
  padding: 1.25rem;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  text-decoration: none;
  transition: box-shadow var(--transition), transform var(--transition), border-color var(--transition);
}

.state-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
  border-color: var(--primary-light);
}

.state-card-name {
  font-weight: 700;
  color: var(--text);
  font-size: 1rem;
  margin-bottom: 0.25rem;
}

.state-card-capital {
  font-size: 0.8125rem;
  color: var(--text-muted);
  margin-bottom: 0.75rem;
}

.state-card-cta {
  font-size: 0.8125rem;
  color: var(--primary);
  font-weight: 600;
}

.page-banner-image {
  margin-bottom: 2rem;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  max-height: 320px;
}

.page-banner-image img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  display: block;
}

.state-card-image {
  height: 120px;
  background-size: cover;
  background-position: center;
  background-color: #e2e8f0;
  border-radius: var(--radius-sm) var(--radius-sm) 0 0;
  margin: -1.25rem -1.25rem 1rem;
}

/* Sticky Mobile CTA */
.sticky-cta {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--bg);
  border-top: 1px solid var(--border);
  padding: 0.75rem 1rem;
  z-index: 999;
  box-shadow: 0 -4px 12px rgba(0,0,0,0.1);
}

.sticky-cta a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background: var(--accent);
  color: #1e293b;
  padding: 0.875rem;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1rem;
  text-decoration: none;
}

/* Cookie Consent */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--bg-dark);
  color: #cbd5e1;
  padding: 1.25rem;
  z-index: 10000;
  box-shadow: 0 -4px 20px rgba(0,0,0,0.3);
  display: none;
}

.cookie-banner.show { display: block; }

.cookie-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.cookie-inner p { font-size: 0.875rem; flex: 1; min-width: 280px; }
.cookie-inner a { color: var(--accent); }

.cookie-buttons { display: flex; gap: 0.75rem; }

.cookie-btn {
  padding: 0.625rem 1.25rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.875rem;
  cursor: pointer;
  border: none;
  font-family: var(--font);
}

.cookie-accept { background: var(--accent); color: #1e293b; }
.cookie-decline { background: transparent; color: #94a3b8; border: 1px solid #475569; }

/* ========== CALL POPUP MODAL ========== */
.call-popup-overlay {
  position: fixed;
  inset: 0;
  background: rgba(15, 23, 42, 0.75);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  z-index: 10001;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.25rem;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s ease, visibility 0.35s ease;
}

.call-popup-overlay.show {
  opacity: 1;
  visibility: visible;
}

.call-popup {
  background: #0f172a;
  border: 1px solid #334155;
  border-radius: 20px;
  padding: 2.5rem 2rem 2rem;
  max-width: 420px;
  width: 100%;
  text-align: center;
  position: relative;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
  transform: translateY(24px) scale(0.96);
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.call-popup-overlay.show .call-popup {
  transform: translateY(0) scale(1);
}

.call-popup-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid #475569;
  background: transparent;
  color: #94a3b8;
  font-size: 1.25rem;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.call-popup-close:hover {
  background: #1e293b;
  color: #fff;
  border-color: #64748b;
}

.call-popup-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 1.25rem;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid #334155;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
}

.call-popup-icon svg {
  width: 28px;
  height: 28px;
}

.call-popup h2 {
  font-size: 1.375rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 1rem;
  line-height: 1.3;
}

.call-popup-desc {
  font-size: 0.9375rem;
  color: #94a3b8;
  line-height: 1.65;
  margin-bottom: 1.25rem;
}

.call-popup-phone {
  display: block;
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--accent);
  margin-bottom: 1.25rem;
  letter-spacing: -0.02em;
  text-decoration: none;
  transition: color 0.2s ease;
}

.call-popup-phone:hover { color: #fbbf24; }

.call-popup-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.625rem;
  width: 100%;
  background: var(--accent);
  color: #1e293b;
  padding: 1rem 1.5rem;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1rem;
  text-decoration: none;
  border: none;
  cursor: pointer;
  font-family: var(--font);
  transition: background 0.2s ease, transform 0.2s ease;
  box-shadow: 0 4px 14px rgba(245, 158, 11, 0.35);
  animation: pulseGlow 3s ease-in-out infinite;
}

.call-popup-cta:hover {
  background: var(--accent-hover);
  color: #1e293b;
  transform: translateY(-1px);
}

.call-popup-cta svg { width: 20px; height: 20px; }

.call-popup-dismiss {
  display: inline-block;
  margin-top: 1.25rem;
  font-size: 0.8125rem;
  color: #64748b;
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--font);
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color 0.2s ease;
}

.call-popup-dismiss:hover { color: #94a3b8; }

.call-popup-note {
  font-size: 0.6875rem;
  color: #475569;
  margin-top: 1rem;
  line-height: 1.5;
}

@media (max-width: 480px) {
  .call-popup { padding: 2rem 1.5rem 1.5rem; }
  .call-popup h2 { font-size: 1.2rem; }
  .call-popup-phone { font-size: 1.5rem; }
}

/* Page Hero (inner pages) */
.page-hero {
  position: relative;
  background: linear-gradient(135deg, var(--primary-dark), var(--primary));
  color: #ffffff;
  padding: 3.5rem 0;
  text-align: center;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(8, 47, 73, 0.93), rgba(12, 74, 110, 0.88));
  z-index: 1;
}

.page-hero--img::before {
  background: linear-gradient(135deg, rgba(8, 47, 73, 0.72), rgba(12, 74, 110, 0.62));
}

.page-hero--img::after {
  content: '';
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  z-index: 0;
}

.page-hero .container { position: relative; z-index: 2; }

.page-hero h1 {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 800;
  margin-bottom: 1rem;
  color: #ffffff;
}

.page-hero p {
  color: rgba(255, 255, 255, 0.92);
  max-width: 600px;
  margin: 0 auto;
  font-size: 1.0625rem;
}

.page-hero--booking::after { background-image: url('../assets/images/airplane-gate.jpg'); }
.page-hero--changes::after { background-image: url('../assets/images/traveler-airport.jpg'); }
.page-hero--cancel::after { background-image: url('../assets/images/airport-terminal.jpg'); }
.page-hero--refunds::after { background-image: url('../assets/images/customer-service.jpg'); }
.page-hero--routes::after { background-image: url('../assets/images/hero-wing.jpg'); }
.page-hero--about::after { background-image: url('../assets/images/traveler-airport.jpg'); }
.page-hero--contact::after { background-image: url('../assets/images/customer-service.jpg'); }
.page-hero--faq::after { background-image: url('../assets/images/traveler-airport.jpg'); }
.page-hero--blog::after { background-image: url('../assets/images/traveler-airport.jpg'); }
.page-hero--legal::after { background-image: url('../assets/images/airport-terminal.jpg'); }

/* Content Pages */
.content-page {
  padding: 3rem 0 5rem;
  background: var(--bg);
  color: var(--text);
}

.content-page .container { max-width: 800px; }

.content-page h2 {
  font-size: 1.5rem;
  font-weight: 700;
  margin: 2rem 0 1rem;
  color: var(--text);
}

.content-page h3 {
  font-size: 1.125rem;
  font-weight: 700;
  margin: 1.5rem 0 0.75rem;
}

.content-page p, .content-page li {
  color: var(--text-muted);
  font-size: 0.9375rem;
  line-height: 1.8;
  margin-bottom: 1rem;
}

.content-page ul, .content-page ol { padding-left: 1.5rem; margin-bottom: 1rem; }

.content-page .last-updated {
  font-size: 0.8125rem;
  color: var(--text-light);
  margin-bottom: 2rem;
}

.fee-table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.5rem 0;
  font-size: 0.875rem;
}

.fee-table th, .fee-table td {
  padding: 0.875rem 1rem;
  border: 1px solid var(--border);
  text-align: left;
}

.fee-table th { background: var(--bg-alt); font-weight: 600; }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  max-width: 900px;
  margin: 0 auto;
}

.contact-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
}

.contact-card h3 {
  font-size: 1.125rem;
  margin-bottom: 1rem;
  color: var(--text);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.contact-card p { margin-bottom: 0.5rem; }

.contact-form { max-width: 600px; margin: 2rem auto 0; }

.form-group { margin-bottom: 1.25rem; }

.form-group label {
  display: block;
  font-weight: 600;
  font-size: 0.875rem;
  margin-bottom: 0.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  font-family: var(--font);
  font-size: 0.9375rem;
  transition: border-color var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary-light);
  box-shadow: 0 0 0 3px rgba(14, 165, 233, 0.15);
}

.form-group textarea { min-height: 120px; resize: vertical; }

.form-note { font-size: 0.8125rem; color: var(--text-muted); margin-top: 1rem; }

.text-center { text-align: center; }
.mt-2 { margin-top: 2rem; }

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

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes pulseGlow {
  0%, 100% { box-shadow: 0 4px 14px rgba(245, 158, 11, 0.4); }
  50% { box-shadow: 0 4px 22px rgba(245, 158, 11, 0.65); }
}

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

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

.hero-animate {
  animation: fadeInUp 0.7s ease both;
}

.hero-animate-delay-1 { animation-delay: 0.12s; }
.hero-animate-delay-2 { animation-delay: 0.24s; }
.hero-animate-delay-3 { animation-delay: 0.36s; }
.hero-animate-delay-4 { animation-delay: 0.48s; }

/* Visible by default — hidden only when JS is ready */
.animate-on-scroll {
  opacity: 1;
  transform: none;
  transition: opacity 0.65s cubic-bezier(0.22, 1, 0.36, 1), transform 0.65s cubic-bezier(0.22, 1, 0.36, 1);
}

html.js-ready .animate-on-scroll:not(.visible) {
  opacity: 0;
  transform: translateY(32px);
}

html.js-ready .animate-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}

.btn-primary, .header-cta {
  animation: pulseGlow 3s ease-in-out infinite;
}

.logo-icon {
  animation: float 4s ease-in-out infinite;
}

.site-header {
  transition: box-shadow 0.3s ease, padding 0.3s ease;
}

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

/* Trust Marquee */
.trust-bar { padding: 0; overflow: hidden; }

.trust-marquee {
  overflow: hidden;
  padding: 1rem 0;
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}

.trust-marquee-track {
  display: flex;
  gap: 3rem;
  width: max-content;
  animation: marquee 35s linear infinite;
}

.trust-marquee-track span {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8125rem;
  font-weight: 500;
  white-space: nowrap;
  color: #e2e8f0;
}

/* Stats Strip */
.stats-strip {
  background: var(--bg);
  padding: 2.5rem 0;
  border-bottom: 1px solid var(--border);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.stat-item {
  text-align: center;
  padding: 1.5rem 1rem;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: var(--bg-alt);
  transition: transform var(--transition), box-shadow var(--transition);
}

.stat-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.stat-icon { font-size: 1.75rem; margin-bottom: 0.5rem; }

.stat-number {
  display: block;
  font-size: 1.375rem;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 0.25rem;
}

.stat-item > span:last-child {
  font-size: 0.8125rem;
  color: var(--text-muted);
}

/* Showcase Section */
.showcase-section {
  padding: 4rem 0;
  background: var(--bg-alt);
}

.showcase-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.showcase-card {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4/3;
  box-shadow: var(--shadow-lg);
}

.showcase-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.showcase-card:hover img {
  transform: scale(1.08);
}

.showcase-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(8, 47, 73, 0.92) 0%, rgba(8, 47, 73, 0.3) 55%, transparent 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.5rem;
  color: white;
}

.showcase-overlay h3 {
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: 0.375rem;
}

.showcase-overlay p {
  font-size: 0.8125rem;
  opacity: 0.9;
  margin-bottom: 0.75rem;
}

.showcase-overlay a {
  color: var(--accent);
  font-weight: 600;
  font-size: 0.875rem;
}

.showcase-overlay a:hover { color: #fbbf24; }

.step-number {
  transition: transform 0.3s ease;
}

.step-card:hover .step-number {
  transform: scale(1.1);
}

/* ========== DISCLAIMER PAGE ========== */
.breadcrumb {
  padding: 1rem 0;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.breadcrumb a { color: var(--primary-light); }
.breadcrumb span { margin: 0 0.5rem; }

.disclaimer-hero {
  background: linear-gradient(135deg, var(--primary-dark), var(--primary));
  color: white;
  padding: 2.5rem 0 3.5rem;
  position: relative;
  overflow: hidden;
}

.disclaimer-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('../assets/images/airport-terminal.jpg') center/cover no-repeat;
  opacity: 0.28;
}

.disclaimer-hero .container { position: relative; z-index: 1; }

.disclaimer-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.25);
  padding: 0.5rem 1rem;
  border-radius: 50px;
  font-size: 0.8125rem;
  font-weight: 600;
  margin-bottom: 1.25rem;
}

.disclaimer-hero h1 {
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 800;
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
}

.disclaimer-hero > .container > p {
  opacity: 0.92;
  max-width: 640px;
  font-size: 1.0625rem;
  margin-bottom: 1.5rem;
}

.compliance-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}

.compliance-pill {
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 0.375rem 0.875rem;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 600;
  color: #ffffff;
}

.disclaimer-summary {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius);
  padding: 1.25rem 1.5rem;
  font-size: 0.9375rem;
  line-height: 1.7;
  max-width: 800px;
}

.disclaimer-page { padding: 3rem 0 5rem; background: var(--bg-alt); }

.disclosure-section {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1.5rem;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
  margin-bottom: 1.5rem;
  box-shadow: var(--shadow);
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}

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

.disclosure-icon {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, #eff6ff, #dbeafe);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  flex-shrink: 0;
}

.disclosure-content h2 {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--primary-dark);
  margin-bottom: 0.375rem;
}

.disclosure-subtitle {
  font-size: 0.875rem;
  color: var(--text-muted);
  margin-bottom: 1.25rem;
}

.disclosure-content p {
  color: var(--text-muted);
  font-size: 0.9375rem;
  line-height: 1.75;
  margin-bottom: 1rem;
}

.info-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem 1.5rem;
  margin: 1.25rem 0;
  padding: 1.25rem;
  background: var(--bg-alt);
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
}

.info-grid dt {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-light);
}

.info-grid dd {
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--text);
  margin: 0 0 0.75rem;
}

.info-grid dd a { color: var(--primary-light); }

.disclosure-list {
  list-style: none;
  padding: 0;
  margin: 1rem 0;
}

.disclosure-list li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 0.625rem;
  color: var(--text-muted);
  font-size: 0.9375rem;
  line-height: 1.6;
}

.disclosure-list li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: var(--primary-light);
  font-weight: 700;
}

.disclosure-callout {
  background: #eff6ff;
  border-left: 4px solid var(--primary-light);
  padding: 1rem 1.25rem;
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  margin: 1.25rem 0;
  font-size: 0.875rem;
  color: #1e40af;
  line-height: 1.65;
}

.fee-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin: 1.25rem 0;
}

.fee-card {
  padding: 1rem 1.25rem;
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
}

.fee-card strong {
  display: block;
  font-size: 0.875rem;
  color: var(--text);
  margin-bottom: 0.375rem;
}

.fee-card span {
  font-size: 0.8125rem;
  color: var(--text-muted);
  line-height: 1.5;
}

.disclaimer-last-updated {
  text-align: center;
  font-size: 0.8125rem;
  color: var(--text-light);
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
}

/* ========== SVG ICONS ========== */
.icon {
  display: inline-block;
  vertical-align: middle;
  flex-shrink: 0;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.icon--fill { fill: currentColor; stroke: none; }

.icon-sm { width: 16px; height: 16px; }
.icon-md { width: 20px; height: 20px; }
.icon-lg { width: 24px; height: 24px; }
.icon-xl { width: 32px; height: 32px; }

.icon-animated {
  animation: iconPulse 2.5s ease-in-out infinite;
}

.icon-spin-slow {
  animation: iconSpin 8s linear infinite;
}

@keyframes iconPulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.08); opacity: 0.85; }
}

@keyframes iconSpin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.logo-icon svg { width: 22px; height: 22px; color: #fff; }

.service-icon-wrap {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: linear-gradient(135deg, #eff6ff, #dbeafe);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.75rem;
  color: var(--primary);
  transition: transform 0.3s ease, background 0.3s ease;
}

.service-card:hover .service-icon-wrap {
  transform: scale(1.08) rotate(-3deg);
  background: linear-gradient(135deg, #dbeafe, #bfdbfe);
}

.stat-icon-wrap {
  width: 52px;
  height: 52px;
  margin: 0 auto 0.75rem;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
}

.stat-icon-wrap svg { width: 24px; height: 24px; }

.why-feature-icon svg { width: 20px; height: 20px; }

.trust-marquee-track .icon { color: #fbbf24; }

.disclosure-icon {
  color: var(--primary);
}

.disclosure-icon svg {
  width: 28px;
  height: 28px;
}

.disclosure-icon.icon-animated svg {
  animation: iconPulse 3s ease-in-out infinite;
}

/* Content split with image */
.content-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  align-items: center;
  margin: 2rem 0 3rem;
}

.content-split-image {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  min-height: 280px;
}

.content-split-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 280px;
  transition: transform 0.5s ease;
}

.content-split-image:hover img { transform: scale(1.04); }

.content-split-text h2 { margin-top: 0; }

/* Feature grid with icons */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin: 2rem 0;
}

.feature-card {
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.feature-card-icon {
  width: 48px;
  height: 48px;
  margin: 0 auto 1rem;
  border-radius: 12px;
  background: #fff;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-light);
}

.feature-card h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 0.5rem;
}

.feature-card p {
  font-size: 0.875rem;
  color: var(--text-muted);
  margin: 0;
  line-height: 1.6;
}

/* Blog hero meta on dark bg */
.page-hero .blog-meta span:not(.blog-tag) { color: rgba(255, 255, 255, 0.85); }
.page-hero .blog-tag { background: rgba(255, 255, 255, 0.2); color: #fff; }

/* Ensure dark sections always have light text */
.hero, .hero h1, .hero .hero-subtitle, .hero-trust,
.cta-section, .cta-section h2, .cta-section p,
.trust-bar, .disclaimer-hero, .disclaimer-hero h1, .disclaimer-hero p {
  color: #ffffff;
}

.hero-subtitle { color: rgba(255, 255, 255, 0.92) !important; }
.hero-trust { color: rgba(255, 255, 255, 0.9) !important; }

/* Section backgrounds — scoped to main only */
main > section:nth-child(even) { background: var(--bg-alt); }
main > section:nth-child(odd) { background: var(--bg); }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  html.js-ready .animate-on-scroll:not(.visible) {
    opacity: 1;
    transform: none;
  }
  .hero-animate { animation: none; }
}

/* Responsive */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .why-image { height: 300px; order: -1; }
  .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid--enhanced { grid-template-columns: 1fr 1fr; }
  .states-grid { grid-template-columns: repeat(3, 1fr); }
  .states-grid--index { grid-template-columns: repeat(3, 1fr); }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .fee-cards { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .main-nav { display: none; }
  .main-nav.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--bg);
    padding: 1rem 1.25rem 1.5rem;
    border-bottom: 1px solid var(--border);
    box-shadow: var(--shadow-lg);
    gap: 0.75rem;
  }
  .mobile-toggle { display: block; }
  .steps-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .routes-grid { grid-template-columns: 1fr; }
  .blog-grid { grid-template-columns: 1fr; }
  .comparison-header, .comparison-row { font-size: 0.75rem; }
  .comparison-header > div, .comparison-row > div { padding: 0.75rem; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-grid--enhanced { grid-template-columns: 1fr; }
  .footer-cta-inner { flex-direction: column; text-align: center; }
  .states-grid { grid-template-columns: repeat(2, 1fr); }
  .states-grid--index { grid-template-columns: repeat(2, 1fr); }
  .states-grid--compact { grid-template-columns: repeat(2, 1fr); }
  .sticky-cta { display: block; }
  body { padding-bottom: 70px; }
  .hero { min-height: auto; }
  .hero-content { padding: 3rem 0; }
  .showcase-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .disclosure-section { grid-template-columns: 1fr; padding: 1.5rem; }
  .disclosure-icon { width: 48px; height: 48px; font-size: 1.5rem; }
  .info-grid { grid-template-columns: 1fr; }
  .compliance-pills { gap: 0.375rem; }
  .compliance-pill { font-size: 0.6875rem; padding: 0.3rem 0.65rem; }
  .content-split { grid-template-columns: 1fr; }
  .content-split-image { order: -1; min-height: 220px; }
  .feature-grid { grid-template-columns: 1fr; }
}
