/* ============================================
   FlyFighterJet.com - Core Stylesheet
   ============================================ */

/* --- CSS Custom Properties --- */
:root {
  --jet-black: #0B0D10;
  --gunmetal: #1F2933;
  --fighter-red: #B22234;
  --patriot-blue: #3C5AA6;
  --cloud-white: #E6E9EF;
  --white: #FFFFFF;
  --gray-100: #F7F8FA;
  --gray-200: #E2E5EB;
  --gray-400: #9AA5B4;
  --gray-600: #616E7C;
  --gray-800: #323F4B;

  --font-display: 'Bebas Neue', 'Bebas Neue Fallback', Impact, sans-serif;
  --font-body: 'Inter', 'Inter Fallback', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-accent: 'Rajdhani', 'Rajdhani Fallback', 'Inter', 'Inter Fallback', sans-serif;

  --max-width: 1200px;
  --header-height: 72px;

  --shadow-sm: 0 1px 3px rgba(0,0,0,.12);
  --shadow-md: 0 4px 12px rgba(0,0,0,.15);
  --shadow-lg: 0 8px 30px rgba(0,0,0,.2);
  --shadow-xl: 0 16px 50px rgba(0,0,0,.3);
  --image-filter-military: saturate(.72) contrast(1.07) brightness(.98) sepia(.16) hue-rotate(-10deg);
}

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

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

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--gray-800);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--patriot-blue);
  text-decoration: none;
  transition: color .2s ease;
}

a:hover {
  color: var(--fighter-red);
}

ul, ol {
  list-style: none;
}

/* --- Typography --- */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: .02em;
  text-transform: uppercase;
  color: var(--jet-black);
}

h1 { font-size: clamp(2.5rem, 6vw, 4.5rem); }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: clamp(1.5rem, 3vw, 2rem); }
h4 { font-size: clamp(1.2rem, 2vw, 1.5rem); }

.section-subtitle {
  font-family: var(--font-accent);
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--fighter-red);
  margin-bottom: .5rem;
}

/* --- Layout --- */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section {
  padding: 5rem 0;
}

.section--dark {
  background: var(--jet-black);
  color: var(--cloud-white);
}

.section--dark h2,
.section--dark h3,
.section--dark h4 {
  color: var(--white);
}

.section--gunmetal {
  background: var(--gunmetal);
  color: var(--cloud-white);
}

.section--gunmetal h2,
.section--gunmetal h3,
.section--gunmetal h4 {
  color: var(--white);
}

.section--light {
  background: var(--gray-100);
}

.grid {
  display: grid;
  gap: 2rem;
}

.grid--2 { grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); }
.grid--3 { grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }
.grid--4 { grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); }

/* --- Header / Navigation --- */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(11, 13, 16, .95);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255,255,255,.08);
  height: var(--header-height);
  transition: background .3s ease;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-height);
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.5rem;
}

.site-logo {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--white);
  letter-spacing: .05em;
  text-transform: uppercase;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: .5rem;
}

.site-logo:hover {
  color: var(--fighter-red);
}

.site-logo .logo-accent {
  color: var(--fighter-red);
}

.nav-list {
  display: flex;
  align-items: center;
  gap: .25rem;
}

.nav-list a {
  display: block;
  padding: .5rem .75rem;
  font-family: var(--font-accent);
  font-size: .85rem;
  font-weight: 600;
  letter-spacing: .05em;
  text-transform: uppercase;
  color: var(--cloud-white);
  border-radius: 4px;
  transition: color .2s, background .2s;
}

.nav-list a:hover,
.nav-list a.active {
  color: var(--white);
  background: rgba(255,255,255,.08);
}

.nav-cta {
  margin-left: .5rem;
}

.nav-cta a {
  background: var(--fighter-red) !important;
  color: var(--white) !important;
  padding: .5rem 1rem !important;
  border-radius: 4px;
  font-weight: 700 !important;
  transition: background .2s, transform .2s !important;
}

.nav-cta a:hover {
  background: #9A1D2C !important;
  transform: translateY(-1px);
}

/* Mobile nav toggle */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: .5rem;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--cloud-white);
  margin: 5px 0;
  transition: transform .3s, opacity .3s;
}

.nav-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.nav-toggle.active span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

@media (max-width: 1024px) {
  .nav-toggle {
    display: block;
    order: 3;
    margin-left: auto;
  }

  .header-inner nav {
    position: static;
    width: 0;
    padding: 0;
    overflow: visible;
  }

  .nav-list {
    display: none;
    position: absolute;
    top: var(--header-height);
    left: 0;
    right: 0;
    background: rgba(11, 13, 16, .98);
    flex-direction: column;
    padding: 1rem;
    gap: 0;
    border-bottom: 1px solid rgba(255,255,255,.08);
  }

  .nav-list.open {
    display: flex;
  }

  .nav-list a {
    padding: .75rem 1rem;
    width: 100%;
  }

  .nav-cta {
    margin-left: 0;
    margin-top: .5rem;
    width: 100%;
  }

  .nav-cta a {
    display: block;
    text-align: center;
    width: 100%;
  }
}

/* --- Hero --- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--jet-black);
  padding-top: var(--header-height);
}

.hero--short {
  min-height: 50vh;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: .62;
  filter: var(--image-filter-military);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(11,13,16,.22) 0%, rgba(11,13,16,.52) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 800px;
  padding: 3rem 1.5rem;
}

.hero-content h1 {
  color: var(--white);
  margin-bottom: 1rem;
}

.hero-content h1 .accent {
  color: var(--fighter-red);
}

.hero-tagline {
  font-family: var(--font-accent);
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: var(--cloud-white);
  margin-bottom: 2rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

.hero-stats {
  display: flex;
  justify-content: center;
  gap: 3rem;
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,.15);
}

.hero-stat {
  text-align: center;
}

.hero-stat-value {
  font-family: var(--font-display);
  font-size: 2.5rem;
  color: var(--white);
  line-height: 1;
}

.hero-stat-label {
  font-family: var(--font-accent);
  font-size: .75rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--gray-400);
  margin-top: .25rem;
}

@media (max-width: 600px) {
  .hero-stats {
    flex-direction: column;
    gap: 1.5rem;
  }
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  font-family: var(--font-accent);
  font-size: .95rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 1rem 2rem;
  border: 2px solid transparent;
  border-radius: 4px;
  cursor: pointer;
  transition: all .25s ease;
  text-decoration: none;
  line-height: 1;
}

.btn--primary {
  background: var(--fighter-red);
  color: var(--white);
  border-color: var(--fighter-red);
}

.btn--primary:hover {
  background: #9A1D2C;
  border-color: #9A1D2C;
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.btn--secondary {
  background: transparent;
  color: var(--white);
  border-color: var(--cloud-white);
}

.btn--secondary:hover {
  background: var(--white);
  color: var(--jet-black);
  transform: translateY(-2px);
}

.btn--blue {
  background: var(--patriot-blue);
  color: var(--white);
  border-color: var(--patriot-blue);
}

.btn--blue:hover {
  background: #2E4A8F;
  border-color: #2E4A8F;
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.btn--outline-dark {
  background: transparent;
  color: var(--jet-black);
  border-color: var(--jet-black);
}

.btn--outline-dark:hover {
  background: var(--jet-black);
  color: var(--white);
  transform: translateY(-2px);
}

.btn--lg {
  padding: 1.15rem 2.5rem;
  font-size: 1.05rem;
}

.btn-group {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
}

/* --- Cards --- */
.card {
  background: var(--white);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform .3s, box-shadow .3s;
}

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

.card-img {
  width: 100%;
  height: 220px;
  overflow: hidden;
  background: var(--gunmetal);
  position: relative;
}

.card-img .card-badge {
  position: absolute;
  bottom: .75rem;
  left: .75rem;
  margin-bottom: 0;
  z-index: 1;
}

.card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: var(--image-filter-military);
}

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

.card-body h3 {
  font-size: 1.25rem;
  margin-bottom: .5rem;
}

.card-body p {
  color: var(--gray-600);
  font-size: .95rem;
  margin-bottom: 1rem;
}

.card-body .btn {
  margin-top: auto;
  align-self: flex-start;
}

/* Equal-height cards in grid */
.grid .card {
  display: flex;
  flex-direction: column;
}

.grid .card .card-body {
  flex: 1;
}

/* Location badge */
.card-badge {
  display: inline-block;
  font-family: var(--font-accent);
  font-size: .7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  padding: .25rem .75rem;
  border-radius: 2px;
  margin-bottom: .75rem;
}

.card-badge--red {
  background: var(--fighter-red);
  color: var(--white);
}

.card-badge--blue {
  background: var(--patriot-blue);
  color: var(--white);
}

.card-badge--amber {
  background: #D97706;
  color: var(--white);
}

.pilot-required {
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  font-family: var(--font-accent);
  font-size: .75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .05em;
  color: #D97706;
  margin-top: .5rem;
}

.pilot-required::before {
  content: '\26A0';
  font-size: .9rem;
}

/* Aircraft label in cards */
.card-aircraft {
  font-family: var(--font-accent);
  font-size: .85rem;
  font-weight: 600;
  color: var(--patriot-blue);
  text-transform: uppercase;
  letter-spacing: .05em;
  margin-bottom: 1rem;
}

.card--dark {
  background: var(--gunmetal);
  color: var(--cloud-white);
}

.card--dark h3 {
  color: var(--white);
}

.card--dark p {
  color: var(--gray-400);
}

/* --- Feature Block --- */
.feature-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.feature-block--reverse {
  direction: rtl;
}

.feature-block--reverse > * {
  direction: ltr;
}

.feature-block__image {
  border-radius: 8px;
  overflow: hidden;
  background: var(--gunmetal);
  aspect-ratio: 16/10;
}

.feature-block__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: var(--image-filter-military);
}

.feature-block__content h2 {
  margin-bottom: 1rem;
}

.feature-block__content p {
  margin-bottom: 1rem;
}

@media (max-width: 768px) {
  .feature-block,
  .feature-block--reverse {
    grid-template-columns: 1fr;
    direction: ltr;
  }
}

/* --- Steps / Process --- */
.steps {
  counter-reset: step;
}

.step {
  display: flex;
  gap: 1.5rem;
  padding: 1.5rem 0;
  border-bottom: 1px solid rgba(255,255,255,.08);
}

.section--light .step {
  border-bottom-color: var(--gray-200);
}

.step::before {
  counter-increment: step;
  content: counter(step, decimal-leading-zero);
  font-family: var(--font-display);
  font-size: 2.5rem;
  color: var(--fighter-red);
  line-height: 1;
  flex-shrink: 0;
  width: 3rem;
}

.step h3 {
  font-size: 1.15rem;
  margin-bottom: .35rem;
}

.step p {
  font-size: .95rem;
  color: var(--gray-400);
}

.section--light .step p {
  color: var(--gray-600);
}

/* --- CTA Banner --- */
.cta-banner {
  text-align: center;
  padding: 5rem 1.5rem;
  background: linear-gradient(135deg, var(--jet-black) 0%, var(--gunmetal) 100%);
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(178,34,52,.15) 0%, transparent 70%);
  pointer-events: none;
}

.cta-banner h2 {
  color: var(--white);
  margin-bottom: 1rem;
  position: relative;
}

.cta-banner p {
  color: var(--gray-400);
  margin-bottom: 2rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
}

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

.faq-item {
  border-bottom: 1px solid var(--gray-200);
}

.section--dark .faq-item {
  border-bottom-color: rgba(255,255,255,.1);
}

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

.section--dark .faq-question {
  color: var(--white);
}

.faq-question::after {
  content: '+';
  font-size: 1.5rem;
  font-weight: 300;
  flex-shrink: 0;
  transition: transform .3s;
}

.faq-item.open .faq-question::after {
  transform: rotate(45deg);
}

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

.faq-answer-inner {
  padding-bottom: 1.25rem;
  font-size: .95rem;
  color: var(--gray-600);
  line-height: 1.7;
}

.section--dark .faq-answer-inner {
  color: var(--gray-400);
}

.faq-answer-inner p {
  margin-bottom: .75rem;
}

.faq-answer-inner p:last-child {
  margin-bottom: 0;
}

/* --- Pricing Table --- */
.price-card {
  background: var(--white);
  border: 2px solid var(--gray-200);
  border-radius: 8px;
  padding: 2rem;
  text-align: center;
  transition: transform .3s, box-shadow .3s, border-color .3s;
}

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

.price-card--featured {
  border-color: var(--fighter-red);
  position: relative;
}

.price-card--featured::before {
  content: 'Most Popular';
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--fighter-red);
  color: var(--white);
  font-family: var(--font-accent);
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: .25rem 1rem;
  border-radius: 2px;
}

.price-card h3 {
  margin-bottom: .5rem;
}

.price-card .price {
  font-family: var(--font-display);
  font-size: 3rem;
  color: var(--jet-black);
  line-height: 1;
  margin: 1rem 0;
}

.price-card .price-from {
  font-family: var(--font-accent);
  font-size: .8rem;
  color: var(--gray-400);
  text-transform: uppercase;
  letter-spacing: .08em;
}

.price-card .price-details {
  color: var(--gray-600);
  font-size: .9rem;
  margin-bottom: 1.5rem;
  min-height: 3rem;
}

.price-card ul {
  text-align: left;
  margin-bottom: 1.5rem;
}

.price-card ul li {
  padding: .5rem 0;
  font-size: .9rem;
  color: var(--gray-600);
  border-bottom: 1px solid var(--gray-100);
  display: flex;
  align-items: center;
  gap: .5rem;
}

.price-card ul li::before {
  content: '\2713';
  color: var(--patriot-blue);
  font-weight: 700;
}

/* --- Map --- */
.map-container {
  width: 100%;
  height: 500px;
  border-radius: 8px;
  overflow: hidden;
  border: 2px solid var(--gray-200);
}

.section--dark .map-container {
  border-color: rgba(255,255,255,.1);
}

/* --- Testimonials --- */
.testimonial {
  background: var(--gunmetal);
  border-radius: 8px;
  padding: 2rem;
  position: relative;
}

.testimonial::before {
  content: '\201C';
  font-family: var(--font-display);
  font-size: 4rem;
  color: var(--fighter-red);
  line-height: 1;
  position: absolute;
  top: 1rem;
  left: 1.5rem;
  opacity: .5;
}

.testimonial p {
  font-style: italic;
  color: var(--cloud-white);
  font-size: .95rem;
  margin-bottom: 1rem;
  padding-top: 1.5rem;
}

.testimonial-author {
  font-family: var(--font-accent);
  font-size: .85rem;
  font-weight: 600;
  color: var(--gray-400);
  letter-spacing: .05em;
  text-transform: uppercase;
}

/* --- Table --- */
.table-wrap {
  width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.data-table {
  width: 100%;
  border-collapse: collapse;
  font-size: .95rem;
}

.data-table th {
  font-family: var(--font-accent);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .05em;
  font-size: .8rem;
  padding: 1rem;
  text-align: left;
  background: var(--gunmetal);
  color: var(--white);
}

.data-table td {
  padding: 1rem;
  border-bottom: 1px solid var(--gray-200);
  color: var(--gray-800);
}

.data-table tbody tr:hover {
  background: var(--gray-100);
}

/* --- Footer --- */
.site-footer {
  background: var(--jet-black);
  color: var(--gray-400);
  padding: 4rem 0 2rem;
  font-size: .9rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 2rem;
  margin-bottom: 3rem;
}

.footer-brand {
  max-width: 300px;
}

.footer-brand .site-logo {
  font-size: 1.25rem;
  margin-bottom: 1rem;
}

.footer-brand p {
  line-height: 1.7;
}

.footer-col h4 {
  font-family: var(--font-accent);
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 1rem;
}

.footer-col ul li {
  margin-bottom: .5rem;
}

.footer-col ul a {
  color: var(--gray-400);
  font-size: .85rem;
  transition: color .2s;
}

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

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: .8rem;
}

@media (max-width: 768px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 480px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }
}

/* --- Breadcrumbs --- */
.breadcrumbs {
  font-family: var(--font-accent);
  font-size: .8rem;
  color: var(--gray-400);
  padding: .75rem 0;
}

.breadcrumbs a {
  color: var(--gray-400);
}

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

.breadcrumbs span {
  margin: 0 .5rem;
  opacity: .5;
}

/* --- Utility --- */
.text-center { text-align: center; }
.text-left { text-align: left; }
.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: .5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  border: 0;
}

/* Inline list with separator */
.inline-list {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem 1.5rem;
}

/* --- Animations --- */
@media (prefers-reduced-motion: no-preference) {
  .fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity .6s ease, transform .6s ease;
  }

  .fade-in.visible {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Respect reduced motion preference */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  html { scroll-behavior: auto; }
}

/* --- Container Narrow --- */
.container--narrow {
  max-width: 800px;
}

/* --- Section Title (consistent spacing below heading) --- */
.section-title {
  margin-bottom: 1.5rem;
}

/* --- Section CTA --- */
.section-cta {
  text-align: center;
  margin-top: 2.5rem;
}

/* --- Card Specs & Link --- */
.card-specs {
  font-family: var(--font-accent);
  font-size: .8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .05em;
  color: var(--patriot-blue);
  margin-bottom: .5rem;
}

.card-link {
  font-family: var(--font-accent);
  font-size: .85rem;
  font-weight: 600;
  letter-spacing: .03em;
  color: var(--fighter-red);
  text-decoration: none;
  margin-top: auto;
  display: inline-block;
}

.card-link:hover {
  color: var(--patriot-blue);
}

/* --- Testimonials (with photo layout) --- */
.testimonial-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

.testimonial-photo {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}

.testimonial-detail {
  display: block;
  font-size: .8rem;
  color: var(--gray-400);
  margin-top: .15rem;
}

/* --- Media Logos --- */
.media-logos {
  text-align: center;
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,.1);
}

.media-logos-label {
  font-family: var(--font-accent);
  font-size: .75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--gray-400);
  display: block;
  margin-bottom: 1.5rem;
}

.media-logos-grid {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2.5rem;
  flex-wrap: wrap;
}

.media-logo {
  height: 28px;
  width: auto;
  opacity: .5;
  filter: brightness(0) invert(1);
  transition: opacity .2s;
}

.media-logo:hover {
  opacity: .8;
}

/* --- Footer Links Inline --- */
.footer-links-inline {
  display: flex;
  gap: 1.5rem;
}

.footer-links-inline a {
  color: var(--gray-400);
  font-size: .8rem;
  transition: color .2s;
}

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

/* ============================================
   RESPONSIVE BREAKPOINTS
   ============================================ */

/* --- Tablet (max-width: 768px) --- */
@media (max-width: 768px) {
  .section {
    padding: 3rem 0;
  }

  .hero {
    min-height: 80vh;
  }

  .hero--short {
    min-height: 40vh;
  }

  .hero-content {
    padding: 2rem 1rem;
  }

  .btn--lg {
    padding: .9rem 1.75rem;
    font-size: .9rem;
  }

  .btn-group {
    flex-direction: column;
    align-items: center;
  }

  .hero-stats {
    gap: 1.5rem;
  }

  .grid--4 {
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  }

  .map-container {
    height: 350px;
  }

  .data-table {
    font-size: .85rem;
  }

  .data-table th,
  .data-table td {
    padding: .75rem .5rem;
  }

  .price-card {
    padding: 1.5rem;
  }

  .cta-banner {
    padding: 3rem 1rem;
  }

  .steps {
    max-width: 100%;
  }

  .step {
    gap: 1rem;
  }

  .step::before {
    font-size: 2rem;
    width: 2.5rem;
  }

  .media-logos-grid {
    gap: 1.5rem;
  }
}

/* --- Mobile (max-width: 480px) --- */
@media (max-width: 480px) {
  .section {
    padding: 2.5rem 0;
  }

  .container {
    padding: 0 1rem;
  }

  .hero {
    min-height: 70vh;
  }

  .hero--short {
    min-height: 35vh;
  }

  .hero-content {
    padding: 1.5rem .75rem;
  }

  h1 { font-size: 2rem; }
  h2 { font-size: 1.75rem; }
  h3 { font-size: 1.25rem; }

  .hero-stat-value {
    font-size: 2rem;
  }

  .hero-stats {
    flex-direction: column;
    gap: 1rem;
  }

  .btn {
    padding: .85rem 1.5rem;
    font-size: .85rem;
    width: 100%;
    text-align: center;
  }

  .btn--lg {
    padding: .85rem 1.5rem;
    font-size: .85rem;
  }

  .grid--2,
  .grid--3,
  .grid--4 {
    grid-template-columns: 1fr;
  }

  .card-img {
    height: 180px;
  }

  .map-container {
    height: 280px;
  }

  .testimonial {
    padding: 1.5rem;
  }

  .data-table th,
  .data-table td {
    padding: .5rem .35rem;
    font-size: .8rem;
  }

  .price-card .price {
    font-size: 2.5rem;
  }

  .feature-block__image {
    aspect-ratio: 16/9;
  }

  .breadcrumbs {
    font-size: .7rem;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .footer-links-inline {
    justify-content: center;
  }

  .media-logo {
    height: 22px;
  }

  .media-logos-grid {
    gap: 1rem;
  }

  .faq-question {
    font-size: .95rem;
    padding: 1rem 0;
  }

  .section-cta {
    margin-top: 1.5rem;
  }

  .step {
    flex-direction: column;
    gap: .5rem;
  }

  .step::before {
    font-size: 1.75rem;
    width: auto;
  }
}

/* --- Steps Grid (Gift Vouchers "How It Works") --- */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.step-card {
  text-align: center;
  padding: 2rem 1.5rem;
  background: var(--white);
  border-radius: 8px;
  box-shadow: var(--shadow-sm);
}

.step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--fighter-red);
  color: var(--white);
  font-family: var(--font-display);
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.step-card h3 {
  margin-bottom: .5rem;
}

.step-card p {
  font-size: .95rem;
  color: var(--gray-600);
}

/* --- Price Cards Grid --- */
.price-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  align-items: start;
}

.price-card-header {
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--gray-200);
  margin-bottom: 1rem;
}

.price-card-header h3 {
  margin-bottom: .5rem;
}

.price-tag {
  font-family: var(--font-display);
  font-size: 2.5rem;
  color: var(--jet-black);
  line-height: 1;
}

.price-card-body {
  margin-bottom: 1.5rem;
}

.price-card-body p {
  font-size: .95rem;
  color: var(--gray-600);
  margin-bottom: 1rem;
}

.price-features {
  list-style: none;
}

.price-features li {
  padding: .4rem 0;
  font-size: .9rem;
  color: var(--gray-600);
  display: flex;
  align-items: center;
  gap: .5rem;
}

.price-features li::before {
  content: '\2713';
  color: var(--patriot-blue);
  font-weight: 700;
}

.price-card-footer {
  margin-top: auto;
}

/* --- Button Variants --- */
.btn--full {
  width: 100%;
}

.btn--outline {
  background: transparent;
  color: var(--white);
  border-color: var(--cloud-white);
}

.btn--outline:hover {
  background: var(--white);
  color: var(--jet-black);
  transform: translateY(-2px);
}

/* --- CTA Group --- */
.cta-group {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 1.5rem;
}

/* --- Check List --- */
.check-list {
  list-style: none;
}

.check-list li {
  padding: .6rem 0;
  font-size: 1rem;
  color: var(--gray-800);
  display: flex;
  align-items: flex-start;
  gap: .75rem;
  border-bottom: 1px solid var(--gray-200);
}

.check-list li:last-child {
  border-bottom: none;
}

.check-list li::before {
  content: '\2713';
  color: var(--patriot-blue);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: .15rem;
}

/* --- Intro Text --- */
.intro-text {
  font-size: 1.1rem;
  color: var(--gray-600);
  line-height: 1.8;
  max-width: 700px;
}

/* --- FAQ Section Spacing --- */
.faq-section h2 {
  margin-top: 2.5rem;
  margin-bottom: 1rem;
}

.faq-section h2:first-child {
  margin-top: 0;
}

/* --- Section CTA variant --- */
.section--cta {
  text-align: center;
  padding: 5rem 1.5rem;
  background: linear-gradient(135deg, var(--jet-black) 0%, var(--gunmetal) 100%);
  position: relative;
  overflow: hidden;
}

.section--cta h2 {
  color: var(--white);
  margin-bottom: 1rem;
}

.section--cta p {
  color: var(--gray-400);
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* --- Video Embed --- */
.video-wrapper {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: var(--shadow-lg);
}

.video-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

/* Background-style video: hides YT controls & logo by overscaling */
.video-bg-wrapper {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: var(--shadow-lg);
}

.video-bg-wrapper iframe {
  position: absolute;
  top: -60px;
  left: -2%;
  width: 104%;
  height: calc(100% + 120px);
  border: 0;
}

/* --- Urgency Badge --- */
.urgency-badge {
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  font-family: var(--font-accent);
  font-size: .7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: #D97706;
  margin-top: .5rem;
}

@media (max-width: 480px) {
  .cta-group {
    flex-direction: column;
    align-items: center;
  }

  .price-tag {
    font-size: 2rem;
  }

  .steps-grid {
    grid-template-columns: 1fr;
  }
}

/* --- Print styles --- */
@media print {
  .site-header, .site-footer, .nav-toggle, .btn, .map-container {
    display: none !important;
  }
  body {
    font-size: 12pt;
    color: #000;
    background: #fff;
  }
  .hero {
    min-height: auto;
    padding: 2rem 0;
    background: none;
  }
  .hero-content h1 {
    color: #000;
  }
}
