/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  color: #212529;
  background: #FFFFFF;
  line-height: 1.6;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; }
a { color: #0B6623; text-decoration: none; }
a:hover { text-decoration: underline; }

/* ===== UTILITY ===== */
.container { max-width: 1140px; margin: 0 auto; padding: 0 20px; }
.section { padding: 80px 0; position: relative; overflow: hidden; }
.section-alt { background: linear-gradient(180deg, #F8F9FA 0%, #FFFFFF 100%); }

/* Premium green ambient background — clearly visible */
.section-green-glow {
  background: linear-gradient(180deg, #F0FFF4 0%, #E8F5E9 30%, #F0FFF4 70%, #FFFFFF 100%);
}
.section-green-glow-strong {
  background: linear-gradient(180deg, #E8F5E9 0%, #F0FFF4 50%, #E8F5E9 100%);
}
.section-dark { background: linear-gradient(135deg, #1A1A2E 0%, #16213E 50%, #0F3460 100%); color: #FFFFFF; }
.text-center { text-align: center; }
.mb-8 { margin-bottom: 8px; }
.mb-16 { margin-bottom: 16px; }
.mb-24 { margin-bottom: 24px; }
.mb-32 { margin-bottom: 32px; }
.mb-48 { margin-bottom: 48px; }

/* ===== TYPOGRAPHY ===== */
h1 { font-size: 2rem; font-weight: 800; color: #1A1A2E; line-height: 1.15; letter-spacing: -0.02em; }
h2 { font-size: 1.85rem; font-weight: 700; color: #1A1A2E; line-height: 1.25; letter-spacing: -0.01em; }
h3 { font-size: 1.25rem; font-weight: 600; color: #1A1A2E; }
.section-subtitle { color: #6C757D; font-size: 1.05rem; max-width: 600px; margin: 12px auto 0; }

/* ===== BUTTONS ===== */
.btn {
  display: inline-block;
  padding: 14px 32px;
  border-radius: 10px;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  border: none;
  transition: all 0.2s ease;
  letter-spacing: 0.01em;
}
.btn:hover { transform: translateY(-2px); box-shadow: 0 8px 25px rgba(0,0,0,0.15); text-decoration: none; }
.btn:active { transform: translateY(0); }
.btn-green {
  background: linear-gradient(135deg, #0B6623 0%, #0D7A2B 100%);
  color: #FFFFFF;
  box-shadow: 0 4px 14px rgba(11,102,35,0.3);
}
.btn-green:hover { background: linear-gradient(135deg, #094D1B 0%, #0B6623 100%); color: #FFFFFF; box-shadow: 0 8px 25px rgba(11,102,35,0.4); }
.btn-lg { padding: 16px 40px; font-size: 1.1rem; }
.btn-full { width: 100%; text-align: center; }

/* ===== BADGE ===== */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: linear-gradient(135deg, #D4EDDA 0%, #C3E6CB 100%);
  color: #155724;
  padding: 8px 18px;
  border-radius: 24px;
  font-size: 0.82rem;
  font-weight: 700;
  margin-bottom: 20px;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

/* ===== SITE HEADER ===== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: all 0.3s ease;
  border-bottom: 1px solid transparent;
}
.site-header.scrolled {
  background: rgba(255,255,255,0.98);
  border-bottom: 1px solid #E9ECEF;
  box-shadow: 0 2px 20px rgba(0,0,0,0.06);
}
.header-inner {
  max-width: 1140px;
  margin: 0 auto;
  padding: 12px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
}
.header-logo {
  flex-shrink: 0;
  display: flex;
  align-items: center;
}
.header-logo img { height: 50px; }
.header-logo:hover { text-decoration: none; }
.header-nav {
  display: flex;
  align-items: center;
  gap: 8px;
  flex: 0 1 auto;
}
.nav-link {
  background: none;
  border: none;
  font-family: inherit;
  font-size: 0.88rem;
  font-weight: 500;
  color: #495057;
  cursor: pointer;
  padding: 8px 12px;
  border-radius: 8px;
  transition: all 0.15s;
  display: flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
}
.nav-link:hover { color: #0B6623; background: #F0FFF4; }
.nav-link svg { transition: transform 0.2s; }
.nav-dropdown { position: relative; }
.dropdown-menu {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  background: white;
  border: 1px solid #E9ECEF;
  border-radius: 12px;
  box-shadow: 0 8px 30px rgba(0,0,0,0.12);
  min-width: 240px;
  padding: 8px 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: all 0.2s ease;
}
.dropdown-menu.active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.dropdown-menu a {
  display: block;
  padding: 10px 18px;
  font-size: 0.88rem;
  color: #495057;
  transition: all 0.15s;
}
.dropdown-menu a:hover {
  background: #F0FFF4;
  color: #0B6623;
  text-decoration: none;
}
.header-cta {
  padding: 10px 24px;
  font-size: 0.88rem;
  white-space: nowrap;
  flex-shrink: 0;
}
.header-cta-mobile { display: none; }
.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  flex-direction: column;
  gap: 5px;
}
.mobile-menu-btn span {
  display: block;
  width: 24px;
  height: 2px;
  background: #1A1A2E;
  border-radius: 2px;
  transition: all 0.3s ease;
}
.mobile-menu-btn.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.mobile-menu-btn.active span:nth-child(2) { opacity: 0; }
.mobile-menu-btn.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ===== REVIEWS CAROUSEL ===== */
.reviews-section {
  padding: 60px 0;
  overflow: hidden;
  background: #F8F9FA;
}
.reviews-track-wrapper {
  overflow: hidden;
  width: 100%;
  mask-image: linear-gradient(to right, transparent 0%, black 5%, black 95%, transparent 100%);
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 5%, black 95%, transparent 100%);
}
.reviews-track {
  display: flex;
  gap: 20px;
  animation: scrollReviews 120s linear infinite;
  width: max-content;
}
.reviews-track:hover {
  animation-play-state: paused;
}
@keyframes scrollReviews {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.review-card {
  flex-shrink: 0;
  width: 320px;
  background: #FFFFFF;
  border-radius: 14px;
  padding: 24px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
  border: 1px solid #E9ECEF;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: transform 0.2s, box-shadow 0.2s;
}
.review-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.1);
}
.review-stars {
  color: #F59E0B;
  font-size: 1.1rem;
  letter-spacing: 2px;
}
.review-text {
  font-size: 0.9rem;
  color: #212529;
  line-height: 1.55;
  flex: 1;
}
.review-author {
  display: flex;
  flex-direction: column;
  gap: 2px;
  border-top: 1px solid #F0F0F0;
  padding-top: 12px;
}
.review-author strong {
  font-size: 0.88rem;
  color: #1A1A2E;
}
.review-author span {
  font-size: 0.78rem;
  color: #6C757D;
}

@media (max-width: 768px) {
  .review-card { width: 280px; padding: 20px; }
  .reviews-section { padding: 40px 0; }
}

/* ===== FOOTER GRID ===== */
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 24px;
  margin-bottom: 20px;
  border-bottom: 1px solid #E9ECEF;
}
.footer-col h4 {
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #1A1A2E;
  margin-bottom: 12px;
}
.footer-col a {
  display: block;
  font-size: 0.82rem;
  color: #6C757D;
  padding: 3px 0;
  transition: color 0.15s;
}
.footer-col a:hover { color: #0B6623; text-decoration: none; }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer-bottom p { font-size: 0.78rem; color: #6C757D; }
.footer-bottom a { color: #6C757D; }
.footer-bottom a:hover { color: #0B6623; }

/* ===== SCROLL HINT (mobile table) ===== */
.savings-table-scroll { overflow-x: auto; -webkit-overflow-scrolling: touch; }
.scroll-hint {
  display: none;
  text-align: center;
  font-size: 0.78rem;
  color: #6C757D;
  padding: 6px 0;
  animation: fadeInOut 2s ease infinite;
}
.scroll-hint span { color: #0B6623; font-weight: 700; }
@keyframes fadeInOut { 0%,100% { opacity:0.5; } 50% { opacity:1; } }

/* ===== CONTENT PAGE HERO (green bg) ===== */
.content-hero h1,
.content-hero p { color: #FFFFFF !important; }

/* ===== HERO ===== */
.hero {
  padding: 48px 0 64px;
  background: linear-gradient(180deg, #FFFFFF 0%, #F8FAFB 100%);
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(11,102,35,0.04) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}
.hero-grid { display: grid; grid-template-columns: 1fr; gap: 40px; align-items: start; }
.hero-copy { position: relative; z-index: 1; }
.hero-copy h1 { margin-bottom: 16px; }
.hero-copy .subtitle { font-size: 1.15rem; color: #495057; margin-bottom: 24px; line-height: 1.7; font-weight: 500; }

/* ===== HERO VS COMPARISON ===== */
.hero-vs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 28px;
}
.hero-vs-card {
  border-radius: 14px;
  padding: 20px;
  position: relative;
}
.hero-vs-them {
  background: #FFF5F5;
  border: 1.5px solid #FFCDD2;
}
.hero-vs-us {
  background: #F0FFF4;
  border: 2px solid #0B6623;
  box-shadow: 0 4px 20px rgba(11,102,35,0.12);
}
.hero-vs-badge {
  position: absolute;
  top: -11px;
  right: 16px;
  background: #0B6623;
  color: #fff;
  font-size: 0.65rem;
  font-weight: 800;
  padding: 4px 12px;
  border-radius: 20px;
  letter-spacing: 0.06em;
}
.hero-vs-emoji {
  font-size: 2rem;
  margin-bottom: 8px;
}
.hero-vs-label {
  font-size: 0.82rem;
  font-weight: 700;
  color: #6C757D;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 6px;
}
.hero-vs-amount {
  font-size: 1.3rem;
  font-weight: 800;
  color: #DC3545;
  margin-bottom: 12px;
}
.hero-vs-amount span {
  display: block;
  font-size: 0.78rem;
  font-weight: 500;
  color: #6C757D;
  margin-top: 2px;
}
.hero-vs-green {
  color: #0B6623;
}
.hero-vs-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.hero-vs-card ul li {
  font-size: 0.85rem;
  line-height: 1.6;
  color: #495057;
  margin-bottom: 4px;
}

.hero-bullets { list-style: none; margin-bottom: 28px; }
.hero-bullets li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 12px;
  font-size: 0.95rem;
  line-height: 1.5;
}
.hero-bullets .check-circle {
  width: 24px;
  height: 24px;
  background: linear-gradient(135deg, #0B6623, #0D7A2B);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
}
.hero-bullets .check-circle svg { width: 13px; height: 13px; }
.hero-legal { font-size: 0.78rem; color: #6C757D; border-top: 1px solid #E9ECEF; padding-top: 14px; }

/* ===== PRODUCT PREVIEW (Hero) ===== */
.product-preview {
  background: linear-gradient(135deg, #F8F9FA 0%, #E9ECEF 100%);
  border: 1px solid #DEE2E6;
  border-radius: 12px;
  padding: 20px;
  margin-top: 24px;
}
.product-preview-title { font-size: 0.8rem; font-weight: 700; color: #6C757D; text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 14px; }
.product-preview-items { display: flex; flex-direction: column; gap: 10px; }
.product-preview-item {
  display: flex;
  align-items: center;
  gap: 12px;
  background: white;
  padding: 12px 14px;
  border-radius: 8px;
  box-shadow: 0 1px 3px rgba(0,0,0,0.06);
}
.product-preview-icon {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}
.product-preview-icon.doc1 { background: linear-gradient(135deg, #E8F5E9, #C8E6C9); }
.product-preview-icon.doc2 { background: linear-gradient(135deg, #E3F2FD, #BBDEFB); }
.product-preview-icon.doc3 { background: linear-gradient(135deg, #FFF3E0, #FFE0B2); }
.product-preview-text { font-size: 0.85rem; font-weight: 600; color: #1A1A2E; }
.product-preview-text span { display: block; font-weight: 400; color: #6C757D; font-size: 0.78rem; }

/* ===== FORM CARD ===== */
.form-card {
  background: #FFFFFF;
  border: 1px solid #E2E8F0;
  border-radius: 16px;
  padding: 32px;
  box-shadow: 0 4px 6px rgba(0,0,0,0.04), 0 10px 40px rgba(0,0,0,0.08);
  position: relative;
  z-index: 1;
}
.form-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #0B6623, #0D7A2B, #10952F);
  border-radius: 16px 16px 0 0;
}
.form-card h3 { text-align: center; margin-bottom: 4px; font-size: 1.2rem; }
.form-card .form-sub { text-align: center; color: #6C757D; font-size: 0.88rem; margin-bottom: 24px; }

/* ===== FORM ELEMENTS ===== */
.form-group { margin-bottom: 16px; }
.form-group label {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  color: #495057;
  margin-bottom: 5px;
  letter-spacing: 0.01em;
}
.form-group input,
.form-group select {
  width: 100%;
  padding: 11px 14px;
  border: 1.5px solid #DEE2E6;
  border-radius: 8px;
  font-size: 0.95rem;
  font-family: inherit;
  transition: all 0.2s ease;
  background: #FAFBFC;
}
.form-group input:focus,
.form-group select:focus {
  outline: none;
  border-color: #0B6623;
  box-shadow: 0 0 0 3px rgba(11,102,35,0.1);
  background: #FFFFFF;
}
.form-group input.error { border-color: #DC3545; box-shadow: 0 0 0 3px rgba(220,53,69,0.1); }
.form-group .error-msg { font-size: 0.78rem; color: #DC3545; margin-top: 4px; display: none; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.form-note { text-align: center; font-size: 0.78rem; color: #6C757D; margin-top: 12px; }

/* ===== FORM MULTI-STEP ===== */
.form-progress {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  margin-bottom: 24px;
}
.progress-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  position: relative;
}
.progress-step span {
  font-size: 0.75rem;
  color: #ADB5BD;
  font-weight: 500;
  transition: color 0.3s;
}
.progress-step.active span { color: #0B6623; }
.progress-step.completed span { color: #0B6623; }
.progress-circle {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.85rem;
  background: #E9ECEF;
  color: #ADB5BD;
  transition: all 0.3s;
}
.progress-step.active .progress-circle {
  background: #0B6623;
  color: #fff;
}
.progress-step.completed .progress-circle {
  background: #0B6623;
  color: #fff;
}
.progress-line {
  width: 60px;
  height: 3px;
  background: #E9ECEF;
  margin: 0 12px;
  margin-bottom: 20px;
  border-radius: 2px;
  transition: background 0.3s;
}
.progress-line.active {
  background: #0B6623;
}

#formStep1, #formStep2 {
  animation: fadeSlideIn 0.3s ease;
}
@keyframes fadeSlideIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

.step-summary-bar {
  background: #F0FFF4;
  border: 1px solid #C8E6C9;
  border-radius: 10px;
  padding: 14px 16px;
  margin-bottom: 20px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px 16px;
  font-size: 0.82rem;
  color: #212529;
}
.step-summary-bar .summary-item {
  display: flex;
  align-items: center;
  gap: 5px;
}
.step-summary-bar .summary-label {
  color: #6C757D;
}
.step-summary-bar .summary-value {
  font-weight: 600;
}

.step-back-link {
  display: block;
  text-align: center;
  margin-top: 12px;
  font-size: 0.85rem;
  color: #6C757D;
  cursor: pointer;
}
.step-back-link:hover {
  color: #0B6623;
  text-decoration: none;
}

/* ===== AUTOCOMPLETE ===== */
.autocomplete-wrapper { position: relative; }
.autocomplete-list {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: white;
  border: 1px solid #DEE2E6;
  border-radius: 0 0 8px 8px;
  max-height: 220px;
  overflow-y: auto;
  z-index: 100;
  display: none;
  box-shadow: 0 8px 24px rgba(0,0,0,0.12);
}
.autocomplete-list.active { display: block; }
.autocomplete-item {
  padding: 10px 14px;
  cursor: pointer;
  font-size: 0.9rem;
  border-bottom: 1px solid #F8F9FA;
  transition: background 0.1s;
}
.autocomplete-item:hover { background: #F0FFF4; }
.autocomplete-item .city-country { color: #6C757D; font-size: 0.78rem; }

/* ===== INCIDENT CARDS ===== */
.incident-cards { display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px; }
.incident-card {
  border: 2px solid #DEE2E6;
  border-radius: 10px;
  padding: 14px 8px;
  text-align: center;
  cursor: pointer;
  transition: all 0.2s ease;
  font-size: 0.82rem;
  font-weight: 600;
  background: #FAFBFC;
}
.incident-card:hover { border-color: #1A1A2E; background: #F8F9FA; transform: translateY(-1px); }
.incident-card.selected {
  border-color: #0B6623;
  background: linear-gradient(135deg, #D4EDDA 0%, #E8F5E9 100%);
  color: #155724;
  box-shadow: 0 2px 8px rgba(11,102,35,0.15);
}
.incident-card input { display: none; }

/* ===== VERIFY FLIGHT ===== */
.verify-flight-box {
  margin-bottom: 16px;
  animation: slideDown 0.3s ease;
}
.verify-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: none;
  border: 1.5px solid #0B6623;
  color: #0B6623;
  padding: 8px 16px;
  border-radius: 8px;
  font-size: 0.82rem;
  font-weight: 600;
  cursor: pointer;
  font-family: inherit;
  transition: all 0.2s;
}
.verify-btn:hover { background: #E8F5E9; }
.verify-btn:disabled { opacity: 0.5; cursor: not-allowed; }
.verify-btn svg { width: 16px; height: 16px; }
.verify-result {
  border-radius: 10px;
  padding: 16px;
  font-size: 0.88rem;
}
.verify-result.success {
  background: linear-gradient(135deg, #E8F5E9 0%, #F1F8E9 100%);
  border: 1px solid #A5D6A7;
}
.verify-result.not-found {
  background: #FFF8E1;
  border: 1px solid #FFE082;
  color: #856404;
}
.verify-result.error {
  background: #FFF3F3;
  border: 1px solid #F1AEB5;
  color: #721C24;
}
.verify-header {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  margin-bottom: 10px;
}
.verify-badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: #0B6623;
  color: white;
  padding: 3px 10px;
  border-radius: 20px;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.verify-data {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}
.verify-data-item {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.verify-data-label { font-size: 0.72rem; color: #6C757D; font-weight: 600; text-transform: uppercase; letter-spacing: 0.04em; }
.verify-data-value { font-weight: 600; color: #1A1A2E; }
.verify-delay {
  margin-top: 10px;
  padding-top: 10px;
  border-top: 1px solid #C8E6C9;
  font-weight: 700;
  color: #C62828;
  display: flex;
  align-items: center;
  gap: 6px;
}
.verify-delay.no-delay { color: #6C757D; }
.verify-note {
  margin-top: 8px;
  font-size: 0.78rem;
  color: #6C757D;
}
.verify-prompt {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #F0F7FF;
  border: 1px solid #BBDEFB;
  border-radius: 10px;
  padding: 12px 16px;
}
.verify-prompt-text {
  font-size: 0.85rem;
  color: #1565C0;
  font-weight: 500;
}
.verify-prompt-text strong { color: #0D47A1; }

/* ===== RESULT PANEL ===== */
.result-panel {
  display: none;
  margin-top: 24px;
  animation: slideDown 0.4s ease;
}
.result-panel.active { display: block; }
@keyframes slideDown {
  from { opacity: 0; transform: translateY(-15px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Result: Compensation header */
.result-header {
  background: linear-gradient(135deg, #0B6623 0%, #0D7A2B 50%, #10952F 100%);
  border-radius: 12px;
  padding: 24px;
  text-align: center;
  color: white;
  margin-bottom: 16px;
  position: relative;
  overflow: hidden;
}
.result-header::after {
  content: '';
  position: absolute;
  top: -50%;
  right: -30%;
  width: 200px;
  height: 200px;
  background: rgba(255,255,255,0.08);
  border-radius: 50%;
}
.result-header .label { font-size: 0.85rem; font-weight: 500; opacity: 0.9; margin-bottom: 4px; }
.result-header .amount { font-size: 2.8rem; font-weight: 800; letter-spacing: -0.02em; line-height: 1.1; }
.result-header .route { font-size: 0.9rem; opacity: 0.85; margin-top: 6px; }

/* Result: What you receive */
.result-receive {
  background: #F8F9FA;
  border: 1px solid #E9ECEF;
  border-radius: 12px;
  padding: 18px;
  margin-bottom: 16px;
}
.result-receive-title {
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #1A1A2E;
  margin-bottom: 12px;
}
.result-receive-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 0;
  border-bottom: 1px solid #E9ECEF;
}
.result-receive-item:last-child { border-bottom: none; }
.result-receive-icon {
  width: 28px;
  height: 28px;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  flex-shrink: 0;
}
.result-receive-icon.i1 { background: #E8F5E9; }
.result-receive-icon.i2 { background: #E3F2FD; }
.result-receive-icon.i3 { background: #FFF3E0; }
.result-receive-text { font-size: 0.85rem; font-weight: 500; color: #212529; }

/* Result: Savings comparison mini */
.result-savings-compare {
  border: 2px solid #E9ECEF;
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 16px;
}
.result-savings-compare-title {
  background: #F8F9FA;
  padding: 10px 16px;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #6C757D;
  border-bottom: 1px solid #E9ECEF;
}
.result-savings-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 16px;
  font-size: 0.85rem;
  border-bottom: 1px solid #F0F0F0;
}
.result-savings-row:last-child { border-bottom: none; }
.result-savings-row .company { color: #495057; }
.result-savings-row .fee { color: #DC3545; font-weight: 600; }
.result-savings-row .net { font-weight: 600; }
.result-savings-row.ours {
  background: linear-gradient(135deg, #D4EDDA 0%, #E8F5E9 100%);
  padding: 12px 16px;
  border-bottom: none;
}
.result-savings-row.ours .company { color: #155724; font-weight: 700; }
.result-savings-row.ours .fee { color: #155724; }
.result-savings-row.ours .net { color: #0B6623; font-size: 1.05rem; font-weight: 800; }

/* Result: Savings highlight */
.result-savings-highlight {
  background: linear-gradient(135deg, #1A1A2E 0%, #16213E 100%);
  color: white;
  border-radius: 10px;
  padding: 16px;
  text-align: center;
  font-size: 0.95rem;
  font-weight: 600;
}
.result-savings-highlight .big { font-size: 1.5rem; font-weight: 800; color: #4ADE80; }

.result-error {
  background: linear-gradient(135deg, #F8D7DA 0%, #F5C2C7 100%);
  color: #721C24;
  padding: 16px;
  border-radius: 12px;
  text-align: center;
  font-weight: 600;
  border: 1px solid #F1AEB5;
}

/* ===== PERSONAL BLOCK (Block 2) ===== */
.personal-block { display: none; margin-top: 24px; }
.personal-block.active { display: block; animation: slideDown 0.4s ease; }
.personal-block h3 { margin-bottom: 16px; }
.personal-divider {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}
.personal-divider::before,
.personal-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: #DEE2E6;
}
.personal-divider span {
  font-size: 0.78rem;
  font-weight: 600;
  color: #6C757D;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* ===== SAVINGS CALCULATOR ===== */
.savings-selector { display: flex; gap: 8px; justify-content: center; margin-bottom: 32px; }
.savings-btn {
  padding: 12px 28px;
  border: 2px solid #DEE2E6;
  border-radius: 10px;
  background: white;
  cursor: pointer;
  font-weight: 700;
  font-size: 1.05rem;
  font-family: inherit;
  transition: all 0.2s ease;
}
.savings-btn:hover { border-color: #ADB5BD; transform: translateY(-1px); }
.savings-btn.active {
  border-color: #0B6623;
  background: linear-gradient(135deg, #D4EDDA 0%, #E8F5E9 100%);
  color: #155724;
  box-shadow: 0 4px 12px rgba(11,102,35,0.15);
}
.savings-table-wrapper {
  background: white;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06), 0 8px 30px rgba(0,0,0,0.04);
  border: 1px solid #E9ECEF;
  margin-bottom: 24px;
}
.savings-table { width: 100%; border-collapse: collapse; }
.savings-table th {
  background: linear-gradient(135deg, #1A1A2E 0%, #16213E 100%);
  color: white;
  padding: 14px 18px;
  text-align: left;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}
.savings-table td {
  padding: 13px 18px;
  border-bottom: 1px solid #F0F0F0;
  font-size: 0.9rem;
}
.savings-table tbody tr { transition: background 0.15s; }
.savings-table tbody tr:hover { background: #FAFBFC; }
.savings-table tr.highlight td {
  background: linear-gradient(135deg, #D4EDDA 0%, #E8F5E9 100%);
  font-weight: 700;
  border-bottom: none;
}
.savings-table .red { color: #DC3545; font-weight: 600; }
.savings-table .green { color: #0B6623; font-weight: 800; font-size: 1.15rem; }
.savings-box {
  background: linear-gradient(135deg, #D4EDDA 0%, #C3E6CB 100%);
  border-radius: 12px;
  padding: 20px;
  text-align: center;
  font-weight: 600;
  color: #155724;
  font-size: 1.05rem;
  margin-bottom: 12px;
  box-shadow: 0 2px 8px rgba(11,102,35,0.1);
}
.savings-note { text-align: center; font-size: 0.78rem; color: #6C757D; }

/* ===== HOW IT WORKS ===== */
.steps-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.step-card {
  text-align: center;
  padding: 28px 20px;
  border-radius: 14px;
  background: white;
  border: 1px solid #E9ECEF;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
  transition: all 0.2s ease;
}
.step-card:hover { transform: translateY(-4px); box-shadow: 0 8px 24px rgba(0,0,0,0.08); }
.step-number {
  width: 52px; height: 52px;
  background: linear-gradient(135deg, #1A1A2E 0%, #16213E 100%);
  color: white;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 18px;
  box-shadow: 0 4px 12px rgba(26,26,46,0.2);
}
.step-card h3 { margin-bottom: 8px; }
.step-card p { color: #495057; font-size: 0.9rem; line-height: 1.5; }

/* ===== WHAT'S INCLUDED (v3 — vertical cards) ===== */
.docs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 40px;
}
.doc-card {
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid #E9ECEF;
  box-shadow: 0 4px 12px rgba(0,0,0,0.04), 0 12px 40px rgba(0,0,0,0.04);
  transition: all 0.3s ease;
  background: white;
}
.doc-card:hover {
  box-shadow: 0 8px 20px rgba(0,0,0,0.06), 0 20px 50px rgba(0,0,0,0.08);
  transform: translateY(-4px);
}

.doc-card-header {
  padding: 28px 24px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.doc-card-header::after {
  content: '';
  position: absolute;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  top: -60px;
  right: -40px;
}
.doc-card:nth-child(1) .doc-card-header { background: linear-gradient(135deg, #0B6623, #10952F); }
.doc-card:nth-child(2) .doc-card-header { background: linear-gradient(135deg, #1565C0, #1E88E5); }
.doc-card:nth-child(3) .doc-card-header { background: linear-gradient(135deg, #E65100, #F57C00); }

.doc-card-num {
  font-size: 3rem;
  font-weight: 800;
  color: rgba(255,255,255,0.15);
  position: absolute;
  top: 8px;
  left: 16px;
  line-height: 1;
}
.doc-card-icon {
  font-size: 2.2rem;
  margin-bottom: 10px;
  position: relative;
  z-index: 1;
}
.doc-card-name {
  color: white;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.3;
  position: relative;
  z-index: 1;
}

.doc-card-body {
  padding: 24px;
}
.doc-card-body h3 {
  font-size: 1.05rem;
  margin-bottom: 6px;
}
.doc-card-desc {
  font-size: 0.85rem;
  color: #6C757D;
  margin-bottom: 18px;
  line-height: 1.5;
}
.doc-card-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.doc-card-feat {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.85rem;
  color: #495057;
}
.doc-card-feat-icon {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.doc-card:nth-child(1) .doc-card-feat-icon { background: #E8F5E9; }
.doc-card:nth-child(2) .doc-card-feat-icon { background: #E3F2FD; }
.doc-card:nth-child(3) .doc-card-feat-icon { background: #FFF3E0; }
.doc-card-feat-icon svg { width: 12px; height: 12px; }

/* Price strip */
.docs-price-strip {
  background: linear-gradient(135deg, #1A1A2E 0%, #16213E 100%);
  border-radius: 16px;
  padding: 28px 36px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.docs-price-left { color: white; }
.docs-price-left .price {
  font-size: 2rem;
  font-weight: 800;
  line-height: 1.2;
}
.docs-price-left .price small {
  font-size: 0.5em;
  font-weight: 500;
  opacity: 0.7;
}
.docs-price-left .price-sub {
  font-size: 0.85rem;
  color: #ADB5BD;
  margin-top: 2px;
}
.docs-price-feats {
  display: flex;
  gap: 20px;
}
.docs-price-feat {
  display: flex;
  align-items: center;
  gap: 6px;
  color: #ADB5BD;
  font-size: 0.82rem;
}
.docs-price-feat svg { flex-shrink: 0; }

/* ===== DIY COMPARISON ===== */
.comparison-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.comparison-col {
  padding: 28px;
  border-radius: 14px;
  position: relative;
}
.comparison-col.them {
  background: linear-gradient(135deg, #FFF8E1 0%, #FFF3CD 100%);
  border: 1px solid #FFE082;
}
.comparison-col.us {
  background: linear-gradient(135deg, #E8F5E9 0%, #D4EDDA 100%);
  border: 1px solid #A5D6A7;
}
.comparison-col h3 { margin-bottom: 18px; font-size: 1.1rem; }
.comparison-col ul { list-style: none; }
.comparison-col li { padding: 8px 0; font-size: 0.92rem; line-height: 1.5; }
.honest-note {
  background: linear-gradient(135deg, #E3F2FD 0%, #BBDEFB 100%);
  border-radius: 12px;
  padding: 20px;
  font-size: 0.9rem;
  color: #1565C0;
  margin-top: 28px;
  border: 1px solid #90CAF9;
}

/* ===== FAQ ===== */
.faq-list { max-width: 700px; margin: 0 auto; }
.faq-item {
  border-bottom: 1px solid #E9ECEF;
}
.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 18px 0;
  font-size: 1rem;
  font-weight: 600;
  color: #212529;
  cursor: pointer;
  text-align: left;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: inherit;
  transition: color 0.15s;
}
.faq-question:hover { color: #0B6623; }
.faq-question::after {
  content: '+';
  font-size: 1.4rem;
  color: #ADB5BD;
  transition: all 0.2s;
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #F8F9FA;
  flex-shrink: 0;
}
.faq-item.open .faq-question::after { content: '-'; background: #D4EDDA; color: #0B6623; }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}
.faq-answer p { padding: 0 0 18px 0; color: #495057; font-size: 0.92rem; line-height: 1.7; }
.faq-item.open .faq-answer { max-height: 300px; }

/* ===== FINAL CTA ===== */
.final-cta { text-align: center; padding: 80px 0; position: relative; }
.final-cta h2 { color: white; margin-bottom: 36px; font-size: 1.85rem; max-width: 650px; margin-left: auto; margin-right: auto; }
.final-stats { display: flex; justify-content: center; gap: 56px; margin-bottom: 36px; }
.final-stat {
  text-align: center;
}
.final-stat .number {
  font-size: 2.4rem;
  font-weight: 800;
  background: linear-gradient(135deg, #4ADE80, #22C55E);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.final-stat .label { font-size: 0.88rem; color: #ADB5BD; margin-top: 4px; }

/* ===== FOOTER ===== */
.footer { padding: 28px 0; text-align: center; font-size: 0.82rem; color: #6C757D; border-top: 1px solid #E9ECEF; }
.footer a { color: #6C757D; transition: color 0.15s; }
.footer a:hover { color: #0B6623; }
.footer .disclaimer { margin-top: 8px; font-size: 0.75rem; }

/* ===== LOADING SPINNER ===== */
.spinner {
  display: inline-block;
  width: 20px; height: 20px;
  border: 3px solid rgba(255,255,255,0.3);
  border-radius: 50%;
  border-top-color: white;
  animation: spin 0.6s linear infinite;
  vertical-align: middle;
  margin-right: 8px;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* ===== KNOW YOUR RIGHTS ===== */
.rights-header { margin-bottom: 48px; }
.rights-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 48px;
}
.rights-card {
  background: white;
  border-radius: 16px;
  padding: 28px;
  border: 1px solid #E9ECEF;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04), 0 8px 24px rgba(0,0,0,0.04);
  transition: all 0.25s ease;
  position: relative;
  overflow: hidden;
}
.rights-card:hover { transform: translateY(-4px); box-shadow: 0 8px 30px rgba(0,0,0,0.1); }
.rights-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
}
.rights-card:nth-child(1)::after { background: linear-gradient(90deg, #E65100, #FF9800); }
.rights-card:nth-child(2)::after { background: linear-gradient(90deg, #C62828, #EF5350); }
.rights-card:nth-child(3)::after { background: linear-gradient(90deg, #4527A0, #7E57C2); }
.rights-card-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}
.delay-icon { background: linear-gradient(135deg, #FFF3E0, #FFE0B2); }
.cancel-icon { background: linear-gradient(135deg, #FFEBEE, #FFCDD2); }
.overbook-icon { background: linear-gradient(135deg, #EDE7F6, #D1C4E9); }
.rights-card h3 { margin-bottom: 10px; font-size: 1.1rem; }
.rights-card-desc { font-size: 0.9rem; color: #495057; line-height: 1.6; margin-bottom: 16px; }
.rights-card-comp {
  background: #F8F9FA;
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 14px;
}
.rights-comp-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 14px;
  font-size: 0.85rem;
  border-bottom: 1px solid #E9ECEF;
}
.rights-comp-row:last-child { border-bottom: none; }
.rights-comp-row span { color: #495057; }
.rights-comp-row strong { color: #1A1A2E; font-weight: 700; }
.rights-card-legal {
  font-size: 0.78rem;
  color: #6C757D;
  font-style: italic;
  line-height: 1.5;
  padding-top: 4px;
  border-top: 1px dashed #DEE2E6;
}

/* Rights key info */
.rights-key-info {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  background: linear-gradient(135deg, #1A1A2E 0%, #16213E 100%);
  border-radius: 16px;
  padding: 32px;
}
.rights-key-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}
.rights-key-icon {
  width: 44px;
  height: 44px;
  background: rgba(255,255,255,0.1);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}
.rights-key-item strong {
  color: white;
  font-size: 0.95rem;
  display: block;
  margin-bottom: 4px;
}
.rights-key-item p {
  color: #ADB5BD;
  font-size: 0.82rem;
  line-height: 1.5;
  margin: 0;
}

/* ===== STICKY BOTTOM BAR ===== */
.sticky-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(135deg, #1A1A2E 0%, #16213E 100%);
  color: white;
  padding: 12px 0;
  z-index: 999;
  transform: translateY(100%);
  transition: transform 0.35s ease;
  box-shadow: 0 -4px 20px rgba(0,0,0,0.15);
}
.sticky-bar.visible { transform: translateY(0); }
.sticky-bar-inner {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.sticky-bar-text {
  font-size: 0.95rem;
  font-weight: 600;
}
.sticky-bar-text .highlight {
  color: #4ADE80;
  font-weight: 800;
}
.sticky-bar-savings {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 0.8rem;
  color: #ADB5BD;
}
.sticky-bar-savings .vs-item {
  display: flex;
  align-items: center;
  gap: 4px;
}
.sticky-bar-savings .vs-item .strikethrough {
  text-decoration: line-through;
  color: #DC3545;
  opacity: 0.8;
}
.sticky-bar .btn {
  padding: 10px 24px;
  font-size: 0.9rem;
  white-space: nowrap;
  flex-shrink: 0;
}

/* ===== HIDDEN COST SECTION ===== */
.hidden-cost-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: start;
}
.hidden-cost-example {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 16px;
  padding: 28px;
}
.hidden-cost-label {
  font-size: 0.82rem;
  font-weight: 600;
  color: #ADB5BD;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 8px;
}
.hidden-cost-amount {
  font-size: 1.3rem;
  color: white;
  margin-bottom: 20px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.hidden-cost-amount strong { font-size: 1.5rem; }
.hidden-cost-rows { display: flex; flex-direction: column; gap: 12px; }
.hidden-cost-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 16px;
  border-radius: 10px;
  font-size: 0.9rem;
}
.hidden-cost-row.them { background: rgba(220,53,69,0.1); border: 1px solid rgba(220,53,69,0.2); }
.hidden-cost-row.us { background: rgba(11,102,35,0.15); border: 1px solid rgba(74,222,128,0.3); }
.hidden-cost-company {
  display: flex;
  align-items: center;
  gap: 8px;
  color: white;
  font-weight: 600;
}
.hidden-cost-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
}
.hidden-cost-dot.red { background: #DC3545; }
.hidden-cost-dot.green { background: #4ADE80; }
.hidden-cost-detail {
  display: flex;
  gap: 16px;
  align-items: center;
}
.hidden-cost-takes { color: #ADB5BD; font-size: 0.85rem; }
.hidden-cost-takes strong { color: #FF6B6B; }
.hidden-cost-you { color: #ADB5BD; font-size: 0.85rem; }
.hidden-cost-you strong { color: white; }
.hidden-cost-you.highlight strong { color: #4ADE80; font-size: 1.1rem; }
.hidden-cost-message { padding: 8px 0; }
.hidden-cost-msg-icon { margin-bottom: 16px; }

/* ===== HOW IT WORKS TIMELINE ===== */
.steps-timeline {
  max-width: 680px;
  margin: 0 auto;
}
.step-timeline-item {
  display: flex;
  gap: 24px;
  padding-bottom: 32px;
}
.step-timeline-item:last-child { padding-bottom: 0; }
.step-timeline-number {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex-shrink: 0;
}
.step-timeline-number span {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, #0B6623 0%, #0D7A2B 100%);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  font-weight: 800;
  box-shadow: 0 4px 14px rgba(11,102,35,0.3);
}
.step-timeline-line {
  width: 2px;
  flex: 1;
  background: linear-gradient(180deg, #0B6623, #DEE2E6);
  margin-top: 8px;
  border-radius: 1px;
}
.step-timeline-content {
  background: white;
  border: 1px solid #E9ECEF;
  border-radius: 14px;
  padding: 24px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04), 0 8px 24px rgba(0,0,0,0.04);
  flex: 1;
  transition: all 0.25s ease;
}
.step-timeline-content:hover {
  transform: translateX(4px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.06), 0 12px 32px rgba(0,0,0,0.06);
}
.step-timeline-icon {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, #E8F5E9, #C8E6C9);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
}
.step-timeline-content h3 {
  font-size: 1.1rem;
  margin-bottom: 8px;
}
.step-timeline-content p {
  font-size: 0.92rem;
  color: #495057;
  line-height: 1.6;
}

/* ===== NO MAGIC WAND (DIY v2) ===== */
.truth-section { position: relative; }
.truth-header { max-width: 700px; margin: 0 auto 48px; }
.truth-header h2 { margin-bottom: 12px; }
.truth-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 32px;
}
.truth-card {
  background: white;
  border-radius: 14px;
  padding: 28px;
  border: 1px solid #E9ECEF;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
  transition: all 0.2s ease;
}
.truth-card:hover { transform: translateY(-3px); box-shadow: 0 8px 24px rgba(0,0,0,0.08); }
.truth-card-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 14px;
}
.truth-card-icon.myth { background: linear-gradient(135deg, #FFEBEE, #FFCDD2); }
.truth-card-icon.reality { background: linear-gradient(135deg, #E8F5E9, #C8E6C9); }
.truth-card-icon.key { background: linear-gradient(135deg, #E3F2FD, #BBDEFB); }
.truth-card h3 { font-size: 1rem; margin-bottom: 10px; }
.truth-card p { font-size: 0.88rem; color: #495057; line-height: 1.6; }
.truth-bottom {
  background: linear-gradient(135deg, #E8F5E9 0%, #D4EDDA 100%);
  border: 2px solid #A5D6A7;
  border-radius: 14px;
  padding: 28px 32px;
  display: flex;
  align-items: center;
  gap: 20px;
}
.truth-bottom-icon {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, #0B6623, #0D7A2B);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.truth-bottom-icon svg { width: 28px; height: 28px; }
.truth-bottom-text h3 { font-size: 1.05rem; color: #155724; margin-bottom: 6px; }
.truth-bottom-text p { font-size: 0.9rem; color: #2E7D32; line-height: 1.6; margin: 0; }

/* ===== PASSENGER COUNT SELECTOR ===== */
.passenger-count-selector {
  display: flex;
  gap: 8px;
  margin-bottom: 8px;
}
.pax-btn {
  width: 48px;
  height: 48px;
  border: 2px solid #DEE2E6;
  border-radius: 10px;
  background: #FAFBFC;
  cursor: pointer;
  font-weight: 700;
  font-size: 1.1rem;
  font-family: inherit;
  transition: all 0.2s ease;
  color: #495057;
}
.pax-btn:hover { border-color: #ADB5BD; background: #F8F9FA; }
.pax-btn.active {
  border-color: #0B6623;
  background: linear-gradient(135deg, #D4EDDA 0%, #E8F5E9 100%);
  color: #155724;
  box-shadow: 0 2px 8px rgba(11,102,35,0.15);
}
.pax-pricing {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.88rem;
  color: #495057;
  margin-bottom: 16px;
  padding: 8px 12px;
  background: #F8F9FA;
  border-radius: 8px;
}
.pax-comp-total {
  font-weight: 700;
  color: #0B6623;
}
.passenger-section {
  position: relative;
}
.passenger-section + .passenger-section {
  border-top: 2px dashed #DEE2E6;
  padding-top: 16px;
  margin-top: 16px;
}
.passenger-section-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
}
.passenger-section-header h4 {
  font-size: 0.95rem;
  color: #1A1A2E;
  margin: 0;
}
.pax-remove-btn {
  background: none;
  border: 1px solid #DC3545;
  color: #DC3545;
  padding: 4px 10px;
  border-radius: 6px;
  font-size: 0.78rem;
  cursor: pointer;
  font-family: inherit;
}
.pax-remove-btn:hover { background: #FFF3F3; }
.pax-discount-badge {
  display: inline-block;
  background: #D4EDDA;
  color: #155724;
  padding: 2px 8px;
  border-radius: 4px;
  font-size: 0.75rem;
  font-weight: 600;
  margin-left: 8px;
}

/* ===== CONSENT CHECKS ===== */
.consent-checks {
  margin: 16px 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.consent-check {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.82rem;
  color: #495057;
  cursor: pointer;
  line-height: 1.4;
}
.consent-check input[type="checkbox"] {
  width: 18px;
  height: 18px;
  margin: 0;
  flex-shrink: 0;
  accent-color: #0B6623;
  cursor: pointer;
}
.consent-check a {
  color: #0B6623;
  text-decoration: underline;
}

/* ===== FORM TRUST SIGNALS ===== */
.form-trust-signals {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 20px;
  padding: 10px 0;
}
.form-trust-signals span {
  font-size: 0.75rem;
  color: #6C757D;
  white-space: nowrap;
}

/* ===== PRICE GUARANTEE ===== */
.price-guarantee {
  margin-top: 12px;
  font-size: 0.88rem;
  color: #0B6623;
  font-weight: 600;
}

/* ===== FINAL CTA GUARANTEE ===== */
.final-cta-guarantee {
  margin-top: 20px;
  font-size: 0.88rem;
  color: rgba(255,255,255,0.7);
  letter-spacing: 0.01em;
}

/* ===== ABOUT SECTION ===== */
.about-text {
  max-width: 720px;
  margin: 0 auto 40px;
  text-align: center;
}
.about-text p {
  font-size: 1rem;
  line-height: 1.75;
  color: #495057;
  margin-bottom: 16px;
}
.about-badges {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 900px;
  margin: 0 auto;
}
.about-badge-item {
  text-align: center;
  padding: 24px 16px;
  background: #F8F9FA;
  border-radius: 12px;
  border: 1px solid #E9ECEF;
}
.about-badge-icon {
  width: 56px;
  height: 56px;
  background: #E8F5E9;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
}
.about-badge-item strong {
  display: block;
  font-size: 0.88rem;
  color: #1A1A2E;
  line-height: 1.4;
}

/* ===== CONTACT SECTION ===== */
.contact-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  max-width: 700px;
  margin: 0 auto 24px;
}
.contact-card {
  background: #FFFFFF;
  border: 1px solid #E9ECEF;
  border-radius: 12px;
  padding: 28px 24px;
  text-align: center;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}
.contact-card-icon {
  margin-bottom: 12px;
}
.contact-card h3 {
  font-size: 1rem;
  margin-bottom: 8px;
}
.contact-card-link {
  display: block;
  font-size: 1.05rem;
  font-weight: 700;
  color: #0B6623;
  margin-bottom: 6px;
}
.contact-card p {
  font-size: 0.85rem;
  color: #6C757D;
  margin: 0;
}
.contact-note {
  text-align: center;
  font-size: 0.82rem;
  color: #6C757D;
  max-width: 600px;
  margin: 0 auto;
}

/* ===== FOOTER CONTACT ===== */
.footer-contact {
  text-align: center;
  padding: 16px 0;
  margin-bottom: 16px;
  border-bottom: 1px solid #E9ECEF;
}
.footer-contact a {
  font-size: 0.95rem;
  font-weight: 600;
  color: #0B6623;
}

/* Adjust body padding for header + sticky bar */
body { padding-top: 64px; padding-bottom: 64px; }

/* ===== RESPONSIVE ===== */
@media (min-width: 768px) {
  h1 { font-size: 2.6rem; }
  h2 { font-size: 2rem; }
  .hero-grid { grid-template-columns: 1fr 1fr; }
  .hero { padding: 72px 0 88px; }
}

@media (max-width: 767px) {
  body { padding-top: 60px; }
  .section { padding: 48px 0; }
  .steps-grid { grid-template-columns: 1fr; }
  .docs-grid { grid-template-columns: 1fr; max-width: 400px; margin-left: auto; margin-right: auto; }
  .doc-card-body { padding: 20px; }
  .docs-price-strip { flex-direction: column; text-align: center; padding: 24px 20px; }
  .docs-price-feats { flex-direction: column; gap: 8px; }
  .comparison-grid { grid-template-columns: 1fr; }
  .final-stats { flex-direction: column; gap: 20px; }
  .savings-table { min-width: 500px; font-size: 0.8rem; }
  .savings-table th, .savings-table td { padding: 10px 10px; }
  .scroll-hint { display: block; }
  .about-badges { grid-template-columns: 1fr; gap: 16px; }
  .contact-cards { grid-template-columns: 1fr; gap: 16px; }
  .form-trust-signals { gap: 8px; }
  .form-trust-signals span { font-size: 0.7rem; }
  .hero-vs { grid-template-columns: 1fr; gap: 12px; }
  .hero-vs-card { padding: 16px; }
  .hero-vs-emoji { font-size: 1.6rem; margin-bottom: 4px; }
  .hero-vs-amount { font-size: 1.15rem; }
  .form-row { grid-template-columns: 1fr; }
  .incident-cards { grid-template-columns: 1fr; }
  .product-preview-items { gap: 8px; }
  .rights-grid { grid-template-columns: 1fr; }
  .rights-key-info { grid-template-columns: 1fr; padding: 24px; }
  .truth-cards { grid-template-columns: 1fr; }
  .truth-bottom { flex-direction: column; text-align: center; }
  .sticky-bar-inner { flex-direction: column; text-align: center; gap: 8px; }
  .sticky-bar-savings { display: none; }
  .sticky-bar-text { font-size: 0.85rem; }
  .hidden-cost-grid { grid-template-columns: 1fr; }
  .hidden-cost-detail { flex-direction: column; gap: 4px; align-items: flex-end; }
  .step-timeline-item { gap: 16px; }

  /* Mobile header */
  .header-logo img { height: 35px; }
  .header-inner {
    justify-content: space-between;
  }
  .header-cta {
    display: inline-block;
    padding: 8px 16px;
    font-size: 0.78rem;
    order: 0;
    flex: 0 0 auto;
    margin-left: auto;
    margin-right: 8px;
  }
  .mobile-menu-btn { display: flex; flex-shrink: 0; }
  .header-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    border-bottom: 1px solid #E9ECEF;
    box-shadow: 0 8px 30px rgba(0,0,0,0.1);
    padding: 12px 20px 16px;
    flex-direction: column;
    gap: 4px;
  }
  .header-nav.active { display: flex; }
  .header-nav .nav-dropdown { width: 100%; }
  .header-nav .nav-link { width: 100%; justify-content: space-between; }
  .dropdown-menu {
    position: static;
    box-shadow: none;
    border: none;
    background: #F8F9FA;
    border-radius: 8px;
    margin-top: 4px;
    opacity: 1;
    visibility: visible;
    transform: none;
    display: none;
  }
  .dropdown-menu.active { display: block; }
  .dropdown-menu a { padding: 8px 18px; }
  .header-nav .header-cta-mobile { display: none; }

  /* Mobile footer */
  .footer-grid { grid-template-columns: 1fr; gap: 24px; }
  .footer-bottom { flex-direction: column; gap: 4px; text-align: center; }
}
