/* ==========================================================================
   Savfin AG — Main Stylesheet
   ========================================================================== */

/* --- Custom Properties --- */
:root {
  --header-bg: #364558;
  --header-line: #4B5B6D;
  --nav-hover-bg: #404E60;
  --footer-bg: #2D3E50;
  --about-bg: #2D3A4A;
  --scope-bg: #F9F9F8;
  --request-bg: #F0F4F8;
  --form-bg: #F3F5F8;
  --white: #FFFFFF;
  --text-dark: #1F2937;
  --text-light: #FFFFFF;
  --accent: #4A6FA5;
  --accent-light: #6B8BBF;
  --subtle-gray: #6B7280;
  --cta-bg: #364558;
  --font-heading: 'Inter', sans-serif;
  --font-body: 'Source Serif 4', Georgia, serif;
  --max-width: 1100px;
  --content-width: 780px;
}

/* ==========================================================================
   Reset & Base
   ========================================================================== */
html {
  color-scheme: light;
  box-sizing: border-box;
}

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

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

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

a {
  color: var(--accent);
  text-decoration: none;
  transition: color 400ms;
}

a:hover {
  color: var(--accent-light);
}

ul, ol {
  list-style: none;
}

button {
  border: none;
  background: none;
  cursor: pointer;
  font-family: inherit;
}

input, textarea, select {
  font-family: inherit;
}

/* ==========================================================================
   Reveal Animation
   ========================================================================== */
.reveal {
  opacity: 0;
  transition: opacity 800ms ease;
}

.reveal.visible {
  opacity: 1;
}

/* ==========================================================================
   Header
   ========================================================================== */
.site-header {
  position: relative;
  z-index: 100;
}

.header-gradient {
  height: 0;
  display: none;
}

.header-logo {
  height: 174px;
  background: linear-gradient(to right, var(--header-gradient-left, #364558), var(--header-gradient-right, #3D5068));
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

.logo-link {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  text-decoration: none;
  color: rgba(255, 255, 255, .85);
}

.logo-svg {
  height: 130px;
  width: auto;
  color: rgba(255, 255, 255, .85);
}

.logo-tagline {
  font-family: var(--font-body);
  font-size: 12px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .45);
  margin-top: 6px;
}

.header-line-top {
  height: 1px;
  background: var(--header-line);
}

.header-line-bottom {
  height: 1px;
  background: var(--header-line);
}

.header-nav {
  height: 43px;
  background: var(--header-bg);
  display: flex;
  align-items: center;
  justify-content: center;
}

.header-nav ul {
  display: flex;
  align-items: center;
  gap: 0;
}

.header-nav li {
  position: relative;
}

.header-nav a {
  display: block;
  padding: 0 22px;
  font-family: var(--font-heading);
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: rgba(255, 255, 255, .65);
  line-height: 43px;
  position: relative;
  transition: color 400ms, background-color 400ms;
}

.header-nav a::after {
  content: '';
  position: absolute;
  bottom: 6px;
  left: 22px;
  right: 22px;
  height: 2px;
  background: var(--accent-light);
  transform: scaleX(0);
  transition: transform 400ms ease;
}

.header-nav a:hover {
  color: rgba(255, 255, 255, .9);
  background: var(--nav-hover-bg);
}

.header-nav a:hover::after {
  transform: scaleX(1);
}

.header-nav .current-menu-item a,
.header-nav .current_page_item a {
  color: var(--white);
}

.header-nav .current-menu-item a::after,
.header-nav .current_page_item a::after {
  transform: scaleX(1);
}

/* ==========================================================================
   Hamburger
   ========================================================================== */
.hamburger {
  display: none;
  width: 26px;
  height: 20px;
  position: absolute;
  right: 24px;
  top: 50%;
  transform: translateY(-50%);
  flex-direction: column;
  justify-content: space-between;
  z-index: 200;
}

.hamburger span {
  display: block;
  width: 100%;
  height: 2px;
  background: rgba(255, 255, 255, .7);
  transition: transform 400ms ease, opacity 300ms ease;
  transform-origin: center;
}

.hamburger.open span:nth-child(1) {
  transform: translateY(9px) rotate(45deg);
}

.hamburger.open span:nth-child(2) {
  opacity: 0;
}

.hamburger.open span:nth-child(3) {
  transform: translateY(-9px) rotate(-45deg);
}

/* ==========================================================================
   Mobile Slide Panel
   ========================================================================== */
.menu-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0);
  z-index: 998;
  pointer-events: none;
  transition: background 300ms ease;
}

.menu-overlay.open {
  background: rgba(0, 0, 0, .5);
  pointer-events: auto;
}

.menu-panel {
  position: fixed;
  top: 0;
  right: 0;
  width: 78%;
  max-width: 340px;
  height: 100%;
  background: rgba(45, 58, 74, .12);
  transform: translateX(100%);
  transition: transform 400ms cubic-bezier(.4, 0, .2, 1), background 600ms ease 200ms;
  z-index: 999;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
}

.menu-panel.open {
  transform: translateX(0);
  background: rgba(45, 58, 74, .95);
}

.menu-panel-top {
  display: flex;
  justify-content: flex-end;
  padding: 24px 24px 0;
}

.menu-close {
  color: rgba(255, 255, 255, .6);
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
  transition: color 300ms;
}

.menu-close:hover {
  color: var(--white);
}

.menu-panel nav {
  padding: 40px 0;
  flex: 1;
}

.menu-panel li {
  opacity: 0;
  transform: translateX(20px);
  transition: opacity 400ms ease, transform 400ms ease;
}

.menu-panel.open li {
  opacity: 1;
  transform: translateX(0);
}

.menu-panel.open li:nth-child(1) { transition-delay: 80ms; }
.menu-panel.open li:nth-child(2) { transition-delay: 160ms; }
.menu-panel.open li:nth-child(3) { transition-delay: 240ms; }
.menu-panel.open li:nth-child(4) { transition-delay: 320ms; }
.menu-panel.open li:nth-child(5) { transition-delay: 400ms; }
.menu-panel.open li:nth-child(6) { transition-delay: 480ms; }
.menu-panel.open li:nth-child(7) { transition-delay: 560ms; }

.menu-panel a {
  display: block;
  padding: 14px 32px;
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: rgba(255, 255, 255, .55);
  border-left: 2px solid transparent;
  transition: color 300ms, border-color 300ms;
}

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

.menu-panel .current-menu-item a,
.menu-panel .current_page_item a {
  color: var(--white);
  border-left-color: var(--accent);
}

.menu-panel-footer {
  padding: 24px 32px;
  border-top: 1px solid rgba(255, 255, 255, .08);
  font-family: var(--font-heading);
  font-size: 11px;
  color: rgba(255, 255, 255, .3);
  letter-spacing: 1px;
}

/* ==========================================================================
   Hero — Homepage
   ========================================================================== */
.hero {
  position: relative;
  height: 700px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}

.hero-bg picture,
.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(54, 69, 88, .55) 0%, rgba(54, 69, 88, .7) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: var(--max-width);
  padding: 0 40px;
}

.hero-keywords {
  font-family: var(--font-heading);
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 4.5px;
  color: rgba(255, 255, 255, .5);
  margin-bottom: 20px;
  animation: heroUp 1000ms ease forwards;
  animation-delay: 400ms;
  opacity: 0;
}

.hero-keywords span {
  margin: 0 8px;
}

.hero-content h1 {
  font-family: var(--font-body);
  font-size: 52px;
  font-weight: 400;
  color: var(--text-light);
  line-height: 1.15;
  margin-bottom: 18px;
  animation: heroUp 1200ms ease forwards;
  animation-delay: 700ms;
  opacity: 0;
}

.hero-content h1 em {
  font-style: italic;
}

.hero-subtitle {
  font-family: var(--font-body);
  font-size: 15.5px;
  color: rgba(255, 255, 255, .65);
  line-height: 1.7;
  max-width: 540px;
  margin: 0 auto;
  animation: heroUp 1200ms ease forwards;
  animation-delay: 1050ms;
  opacity: 0;
}

@keyframes heroUp {
  from {
    opacity: 0;
    transform: translateY(14px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.scroll-indicator {
  position: absolute;
  bottom: 32px;
  left: 0;
  right: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  color: rgba(255, 255, 255, .45);
}

.scroll-indicator span {
  font-family: var(--font-heading);
  font-size: 9.5px;
  letter-spacing: 3.5px;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.scroll-indicator .line {
  width: 1px;
  height: 28px;
  background: rgba(255, 255, 255, .25);
  animation: scrollPulse 2.5s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%, 100% { opacity: .25; transform: scaleY(.5); }
  50% { opacity: .6; transform: scaleY(1); }
}

/* ==========================================================================
   Hero Banner — Content Pages
   ========================================================================== */
.hero-banner {
  position: relative;
  height: 445px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-banner .hero-bg.no-image {
  background: linear-gradient(135deg, var(--header-bg) 0%, var(--about-bg) 100%);
}

.hero-banner .hero-content {
  max-width: 700px;
}

.hero-banner .hero-keywords {
  opacity: 0;
  transform: translateY(14px);
  animation: heroUp 1000ms 400ms cubic-bezier(.25,.1,.25,1) forwards;
}

.hero-banner .hero-content h1 {
  font-family: var(--font-body);
  font-size: 52px;
  font-weight: 400;
  color: var(--text-light);
  line-height: 1.15;
}

.hero-banner .hero-subtitle {
  opacity: 0;
  transform: translateY(20px);
  animation: heroUp 1200ms 1050ms cubic-bezier(.25,.1,.25,1) forwards;
}

/* ==========================================================================
   Section Common
   ========================================================================== */
.section-label {
  font-family: var(--font-heading);
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 4px;
  color: var(--accent);
  margin-bottom: 16px;
}

.section-heading {
  font-family: var(--font-body);
  font-size: 40px;
  font-weight: 400;
  line-height: 1.2;
  color: var(--text-dark);
  margin-bottom: 14px;
}

.section-divider {
  width: 40px;
  height: 2px;
  background: var(--accent);
  margin: 0 auto 64px;
  opacity: .45;
}

/* ==========================================================================
   Scope Section
   ========================================================================== */
.scope-section {
  background: var(--scope-bg);
  padding: 110px 40px;
  text-align: center;
}

.scope-section .section-heading {
  margin-bottom: 12px;
}

.scope-section .section-intro {
  font-size: 15.5px;
  color: var(--subtle-gray);
  max-width: 580px;
  margin: 0 auto 56px;
  line-height: 1.75;
}

.scope-section .section-heading {
  margin-bottom: 14px;
}

/* ==========================================================================
   Service Cards
   ========================================================================== */
.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  max-width: 940px;
  margin: 0 auto;
}

.card {
  background: var(--white);
  border: 1px solid rgba(0, 0, 0, .05);
  padding: 48px 34px 38px;
  text-align: left;
  transition: box-shadow 600ms ease;
}

.card:hover {
  box-shadow: 0 8px 32px rgba(0, 0, 0, .08);
}

.card-icon {
  width: 40px;
  height: 40px;
  margin-bottom: 26px;
  color: var(--accent);
  opacity: .55;
}

.card-icon svg {
  width: 100%;
  height: 100%;
}

.card h3 {
  font-family: var(--font-heading);
  font-size: 17px;
  font-weight: 600;
  margin-bottom: 14px;
  color: var(--text-dark);
}

.card p {
  font-size: 14.5px;
  color: var(--subtle-gray);
  line-height: 1.65;
  margin-bottom: 28px;
}

.card-link {
  font-family: var(--font-heading);
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.8px;
  color: var(--text-dark);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: color 400ms;
}

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

/* ==========================================================================
   About Section
   ========================================================================== */
.about-section {
  background: var(--about-bg);
  padding: 110px 40px;
}

.about-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-text .section-label {
  color: var(--accent-light);
}

.about-text h2 {
  font-family: var(--font-body);
  font-size: 38px;
  font-weight: 400;
  color: var(--text-light);
  line-height: 1.22;
  margin-bottom: 22px;
}

.about-accent-line {
  width: 40px;
  height: 2px;
  background: var(--accent-light);
  margin-bottom: 22px;
  opacity: .45;
}

.about-text p {
  font-size: 15px;
  color: rgba(255, 255, 255, .55);
  line-height: 1.75;
}

/* ==========================================================================
   Stats
   ========================================================================== */
.stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.stat-card {
  border: 1px solid rgba(255, 255, 255, .08);
  padding: 30px 20px;
  text-align: center;
  background: rgba(255, 255, 255, .025);
  transition: background 500ms ease;
}

.stat-card:hover {
  background: rgba(255, 255, 255, .05);
}

.stat-value {
  font-family: var(--font-heading);
  font-size: 36px;
  font-weight: 300;
  color: var(--text-light);
  line-height: 1;
  margin-bottom: 10px;
}

.stat-label {
  font-family: var(--font-heading);
  font-size: 9px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2.5px;
  color: rgba(255, 255, 255, .35);
}

/* ==========================================================================
   Request Section
   ========================================================================== */
.request-section {
  background: var(--request-bg);
  padding: 110px 40px;
}

.request-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.request-image {
  overflow: hidden;
}

.request-image img {
  height: 420px;
  width: 100%;
  object-fit: cover;
  transition: transform 8s ease;
}

.request-image:hover img {
  transform: scale(1.03);
}

.request-text .section-heading {
  margin-bottom: 20px;
}

.request-text p {
  font-size: 15px;
  color: var(--subtle-gray);
  line-height: 1.75;
  margin-bottom: 36px;
}

/* ==========================================================================
   Buttons
   ========================================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-heading);
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.8px;
  padding: 14px 34px;
  border: 1.5px solid var(--header-bg);
  color: var(--header-bg);
  background: transparent;
  cursor: pointer;
  transition: background 400ms, color 400ms;
}

.btn:hover {
  background: var(--header-bg);
  color: var(--white);
}

.btn-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-heading);
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.8px;
  padding: 14px 34px;
  border: 1.5px solid rgba(255, 255, 255, .3);
  color: var(--white);
  background: transparent;
  cursor: pointer;
  transition: background 400ms, color 400ms, border-color 400ms;
}

.btn-cta:hover {
  background: rgba(255, 255, 255, .1);
  border-color: rgba(255, 255, 255, .5);
  color: var(--white);
}

.btn-submit {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-heading);
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.8px;
  padding: 14px 34px;
  border: 1.5px solid rgba(0, 0, 0, .15);
  color: var(--text-dark);
  background: transparent;
  cursor: pointer;
  transition: background 400ms, color 400ms;
}

.btn-submit:hover {
  background: rgba(0, 0, 0, .03);
  border-color: rgba(0, 0, 0, .3);
}

.btn-submit-light {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  padding: 14px 36px;
  border: 1px solid rgba(255, 255, 255, .25);
  color: var(--white);
  background: transparent;
  cursor: pointer;
  transition: background 400ms, color 400ms, border-color 400ms;
}

.btn-submit-light:hover {
  background: rgba(255, 255, 255, .1);
  border-color: rgba(255, 255, 255, .5);
  color: var(--white);
}

/* ==========================================================================
   CTA Banner
   ========================================================================== */
.cta-banner {
  background: var(--cta-bg);
  padding: 88px 40px;
  text-align: center;
}

.cta-banner .section-label {
  color: var(--accent-light);
}

.cta-banner h2 {
  font-family: var(--font-body);
  font-size: 34px;
  font-weight: 400;
  color: var(--text-light);
  margin-bottom: 14px;
}

.cta-banner p {
  font-size: 15px;
  color: rgba(255, 255, 255, .5);
  margin-bottom: 40px;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
}

/* ==========================================================================
   Page Content
   ========================================================================== */
.page-content {
  max-width: var(--content-width);
  margin: 0 auto;
  padding: 80px 40px;
}

.page-content h2 {
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 3.5px;
  margin-top: 72px;
  margin-bottom: 20px;
  color: var(--text-dark);
}

.page-content h2:first-child {
  margin-top: 0;
}

.page-content p {
  font-size: 15.5px;
  color: var(--subtle-gray);
  line-height: 1.85;
  margin-bottom: 16px;
}

/* ==========================================================================
   Categories Grid
   ========================================================================== */
.categories-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin: 28px 0 0;
}

.category-card {
  border: 1px solid rgba(0, 0, 0, .07);
  padding: 28px 24px;
  background: var(--white);
  transition: box-shadow 500ms ease, border-color 500ms ease;
}

.category-card:hover {
  box-shadow: 0 3px 16px rgba(0, 0, 0, .04);
  border-color: rgba(0, 0, 0, .1);
}

.category-card h3 {
  font-family: var(--font-heading);
  font-size: 13.5px;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 8px;
}

.category-card p {
  font-size: 13.5px;
  color: var(--subtle-gray);
  line-height: 1.7;
  margin-bottom: 0;
}

/* ==========================================================================
   Content Separator
   ========================================================================== */
.content-sep {
  height: 1px;
  background: rgba(0, 0, 0, .06);
  border: none;
  margin: 72px 0 0;
}

/* ==========================================================================
   Forms
   ========================================================================== */
.form-wrapper {
  background: #F3F5F8;
  border: 1px solid rgba(0, 0, 0, .06);
  padding: 44px 40px 40px;
  margin: 0;
}

.form-wrapper-dark {
  background: var(--about-bg);
  padding: 48px 44px;
  margin: 0;
}

.form-wrapper-dark label {
  color: rgba(255, 255, 255, .5);
}

.form-wrapper-dark input,
.form-wrapper-dark textarea,
.form-wrapper-dark select {
  background: rgba(255, 255, 255, .06);
  border-color: rgba(255, 255, 255, .1);
  color: var(--white);
}

.form-wrapper-dark input::placeholder,
.form-wrapper-dark textarea::placeholder {
  color: rgba(255, 255, 255, .25);
}

.form-wrapper-dark input:focus,
.form-wrapper-dark textarea:focus,
.form-wrapper-dark select:focus {
  border-color: var(--accent-light);
}

.form-title {
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 3.5px;
  margin-bottom: 32px;
}

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

.form-group {
  display: flex;
  flex-direction: column;
}

.form-group label {
  font-family: var(--font-heading);
  font-size: 10.5px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--text-dark);
  margin-bottom: 8px;
}

.form-group input,
.form-group textarea,
.form-group select {
  font-family: var(--font-heading);
  font-size: 13.5px;
  font-weight: 400;
  padding: 12px 14px;
  border: 1px solid rgba(0, 0, 0, .1);
  background: var(--white);
  color: var(--subtle-gray);
  transition: border-color 300ms ease;
  outline: none;
  -webkit-appearance: none;
  appearance: none;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--accent);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(107, 114, 128, .5);
}

.form-group.full {
  grid-column: span 2;
}

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

.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%236B7280' d='M1.41 0L6 4.58 10.59 0 12 1.41l-6 6-6-6z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
}

.form-submit {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 20px;
  margin-top: 28px;
}

.privacy-note {
  font-family: var(--font-heading);
  font-size: 11px;
  color: var(--subtle-gray);
  line-height: 1.5;
}

.privacy-note a {
  color: var(--accent);
  text-decoration: none;
}

.privacy-note a:hover {
  text-decoration: underline;
}

/* ==========================================================================
   Service Options (ACMI Toggle)
   ========================================================================== */
.service-options {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-bottom: 32px;
}

.service-option {
  border: 1px solid rgba(0, 0, 0, .07);
  background: var(--white);
  padding: 14px 18px;
  font-family: var(--font-heading);
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--text-dark);
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  transition: border-color 400ms ease, box-shadow 400ms ease;
  position: relative;
}

.service-option:hover {
  border-color: rgba(0, 0, 0, .15);
}

.service-option input[type="radio"] {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.service-option label {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 14px 18px;
  font-family: var(--font-heading);
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--text-dark);
  cursor: pointer;
  border: 1px solid rgba(0, 0, 0, .07);
  background: var(--white);
  transition: border-color 400ms ease, box-shadow 400ms ease;
}

.service-option label:hover {
  border-color: rgba(0, 0, 0, .15);
}

.service-option.selected,
.service-option input[type="radio"]:checked + label,
.service-option.selected label {
  border-color: var(--accent);
  box-shadow: 0 0 0 1px var(--accent);
  background: var(--white);
  color: var(--text-dark);
}

.radio-circle {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  border: 1.5px solid rgba(0, 0, 0, .2);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.service-option.selected .radio-circle,
.service-option input[type="radio"]:checked ~ .radio-circle {
  border-color: var(--accent);
}

.service-option.selected .radio-circle::after,
.service-option input[type="radio"]:checked ~ .radio-circle::after {
  content: '';
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent);
}

/* ==========================================================================
   Contact Layout
   ========================================================================== */
.contact-section {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 80px;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 80px 40px 100px;
  align-items: start;
}

.contact-details h2 {
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 3.5px;
  color: var(--text-dark);
  margin-bottom: 28px;
}

.contact-card {
  margin-bottom: 36px;
}

.contact-card .address {
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--subtle-gray);
  line-height: 1.85;
  margin-bottom: 20px;
  font-style: normal;
}

.contact-card .detail {
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--subtle-gray);
  line-height: 1.85;
  margin-bottom: 6px;
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.contact-card .detail .label {
  font-family: var(--font-heading);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--text-dark);
  min-width: 60px;
  padding-top: 3px;
}

.contact-card .detail a {
  color: var(--accent);
  text-decoration: none;
  transition: color 300ms ease;
}

.contact-card .detail a:hover {
  color: var(--text-dark);
}

.contact-sep {
  width: 40px;
  height: 1px;
  background: rgba(0, 0, 0, .1);
  margin: 28px 0;
}

.contact-note {
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--subtle-gray);
  line-height: 1.75;
  font-style: italic;
}

.contact-form h2 {
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 3.5px;
  text-transform: uppercase;
  color: var(--text-dark);
  margin-bottom: 8px;
}

.form-subtitle {
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--subtle-gray);
  line-height: 1.75;
  margin-bottom: 32px;
}

/* Keep old selectors working too */
.contact-detail-item {
  margin-bottom: 20px;
}

.contact-detail-label {
  font-family: var(--font-heading);
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--subtle-gray);
  margin-bottom: 4px;
}

.contact-detail-value {
  font-size: 15px;
  color: var(--text-dark);
}

.contact-detail-value a {
  color: var(--text-dark);
  transition: color 400ms;
}

.contact-detail-value a:hover {
  color: var(--accent);
}

.contact-address {
  font-size: 15px;
  color: var(--subtle-gray);
  line-height: 1.8;
  font-style: normal;
}

/* ==========================================================================
   FAQ Accordion
   ========================================================================== */
.faq-section {
  padding: 0 40px 80px;
  max-width: var(--content-width);
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid rgba(0, 0, 0, .06);
}

.faq-question,
.faq-q {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
  cursor: pointer;
  width: 100%;
  text-align: left;
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 500;
  color: var(--text-dark);
  background: none;
  border: none;
  gap: 16px;
  line-height: 1.5;
}

.faq-question .faq-chevron {
  width: 12px;
  height: 12px;
  border-right: 1.5px solid var(--subtle-gray);
  border-bottom: 1.5px solid var(--subtle-gray);
  transform: rotate(45deg);
  transition: transform 400ms ease;
  flex-shrink: 0;
  margin-left: 16px;
}

.faq-item.open .faq-question .faq-chevron {
  transform: rotate(-135deg);
}

.faq-q::after {
  content: '+';
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 300;
  color: var(--accent);
  flex-shrink: 0;
  transition: transform 300ms ease;
}

.faq-item.open .faq-q::after {
  content: '\2212';
}

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

.faq-item.open .faq-answer {
  max-height: 500px;
  padding-bottom: 20px;
}

.faq-answer p,
.faq-a {
  font-size: 14.5px;
  color: var(--subtle-gray);
  line-height: 1.8;
}

.faq-a {
  margin-top: 12px;
  display: none;
}

.faq-item.open .faq-a {
  display: block;
}

.faq-item:first-of-type {
  border-top: 1px solid rgba(0, 0, 0, .06);
}

/* ==========================================================================
   Wanted
   ========================================================================== */
.filter-tabs {
  display: flex;
  gap: 8px;
  margin-bottom: 32px;
  flex-wrap: wrap;
}

.filter-tab {
  font-family: var(--font-heading);
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  padding: 9px 20px;
  border: 1px solid rgba(0, 0, 0, .1);
  background: transparent;
  color: var(--subtle-gray);
  cursor: pointer;
  transition: background 400ms, color 400ms, border-color 400ms;
}

.filter-tab:hover {
  border-color: var(--header-bg);
  color: var(--header-bg);
}

.filter-tab.active {
  background: var(--header-bg);
  color: var(--white);
  border-color: var(--header-bg);
}

.wanted-grid {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 8px;
}

.wanted-card {
  border: 1px solid rgba(0, 0, 0, .07);
  padding: 28px 28px 24px;
  background: var(--white);
  transition: box-shadow 500ms ease, border-color 500ms ease;
  display: grid;
  grid-template-columns: auto 1fr;
  grid-template-rows: auto 1fr;
  gap: 8px 20px;
  cursor: pointer;
  text-decoration: none;
  color: inherit;
}

.wanted-card:hover {
  box-shadow: 0 3px 16px rgba(0, 0, 0, .06);
  border-color: var(--accent);
}

.wanted-card-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 12px;
}

.wanted-tag {
  font-family: var(--font-heading);
  font-size: 9.5px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  padding: 5px 10px;
  display: inline-block;
  white-space: nowrap;
  height: fit-content;
  grid-row: 1;
  grid-column: 1;
}

.wanted-tag--aircraft,
.wanted-tag.aircraft {
  background: rgba(74, 111, 165, .1);
  color: var(--accent);
}

.wanted-tag--engine,
.wanted-tag.engine {
  background: rgba(107, 139, 191, .1);
  color: var(--accent-light);
}

.wanted-tag--component,
.wanted-tag.component {
  background: rgba(107, 114, 128, .1);
  color: var(--subtle-gray);
}

.wanted-status {
  font-family: var(--font-heading);
  font-size: 9.5px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  color: rgba(74, 111, 165, .7);
  display: flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
}

.wanted-status--active {
  color: rgba(74, 111, 165, .7);
}

.wanted-status--closed {
  color: var(--subtle-gray);
}

.wanted-info {
  grid-row: 1 / 3;
  grid-column: 2;
  display: flex;
  flex-direction: column;
}

.wanted-info h3 {
  font-family: var(--font-heading);
  font-size: 15px;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 6px;
}

.wanted-card p {
  font-size: 14px;
  color: var(--subtle-gray);
  line-height: 1.65;
  margin-bottom: 0;
  flex: 1;
}

.wanted-desc {
  font-size: 14px;
  color: var(--subtle-gray);
  line-height: 1.65;
  flex: 1;
}

.wanted-desc p {
  margin-bottom: 6px;
}

.wanted-desc p:last-child {
  margin-bottom: 0;
}

.wanted-desc strong {
  color: var(--text-dark);
  font-weight: 600;
}

.wanted-card--closed,
.wanted-card.closed {
  opacity: .55;
  cursor: default;
}

.wanted-card--closed:hover,
.wanted-card.closed:hover {
  box-shadow: none;
  border-color: rgba(0, 0, 0, .07);
}

.wanted-card--closed h3,
.wanted-card--closed .wanted-info h3,
.wanted-card.closed .wanted-info h3 {
  text-decoration: line-through;
  text-decoration-color: rgba(0, 0, 0, .2);
}
}

.wanted-respond {
  font-family: var(--font-heading);
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--accent);
  transition: color 400ms;
}

.wanted-respond:hover {
  color: var(--accent-light);
}

/* ==========================================================================
   Company Stats
   ========================================================================== */
.company-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin: 48px 0;
}

.company-stat {
  text-align: center;
  padding: 32px 20px;
  border: 1px solid rgba(0, 0, 0, .06);
}

.company-stat .stat-value {
  color: var(--text-dark);
}

.company-stat .stat-label {
  color: var(--subtle-gray);
}

/* ==========================================================================
   Fuel Sections
   ========================================================================== */
.fuel-request-section {
  background: var(--request-bg);
  padding: 80px 40px;
}

.fuel-request-section .form-wrapper {
  max-width: var(--content-width);
  margin: 0 auto;
  background: var(--white);
}

.fuel-supplier-section {
  background: var(--about-bg);
  padding: 80px 40px;
}

.fuel-supplier-section .form-wrapper-dark {
  max-width: var(--content-width);
  margin: 0 auto;
}

/* ==========================================================================
   Pagination
   ========================================================================== */
.pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  margin-top: 48px;
}

.pagination a,
.pagination span {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 600;
  border: 1px solid rgba(0, 0, 0, .1);
  color: var(--subtle-gray);
  transition: background 400ms, color 400ms, border-color 400ms;
}

.pagination a:hover {
  border-color: var(--header-bg);
  color: var(--header-bg);
}

.pagination .current {
  background: var(--header-bg);
  color: var(--white);
  border-color: var(--header-bg);
}

/* ==========================================================================
   Permanent Acquisition Interest
   ========================================================================== */
.section-divider {
  width: 100%;
  height: 1px;
  background: rgba(0, 0, 0, .08);
  margin: 60px 0;
}

div.acquisition-block {
  background: #F3F5F8;
  border: 1px solid rgba(0, 0, 0, .06);
  padding: 44px 40px 40px;
  margin-top: 0;
  margin-bottom: 0;
}

div.acquisition-block div.acq-types {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 20px;
}

div.acquisition-block .acq-type h5,
.page-content div.acquisition-block .acq-type h5 {
  font-family: var(--font-heading);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--text-dark);
  margin-bottom: 8px;
  margin-top: 0;
}

div.acquisition-block .acq-type p,
.page-content div.acquisition-block .acq-type p {
  font-family: var(--font-body);
  font-size: 14.5px;
  color: var(--subtle-gray);
  line-height: 1.7;
  margin-bottom: 0;
}

div.acquisition-block p.acq-note,
.page-content div.acquisition-block p.acq-note {
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--subtle-gray);
  line-height: 1.8;
  margin-top: 24px;
  font-style: italic;
  margin-bottom: 0;
}

/* ==========================================================================
   Form Messages
   ========================================================================== */
.form-message {
  padding: 16px 20px;
  margin-bottom: 24px;
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 500;
}

.form-message--success {
  background: rgba(45, 138, 78, .08);
  border: 1px solid rgba(45, 138, 78, .2);
  color: #2D8A4E;
}

.form-message--error {
  background: rgba(220, 38, 38, .08);
  border: 1px solid rgba(220, 38, 38, .2);
  color: #DC2626;
}

.field-error {
  font-family: var(--font-heading);
  font-size: 11px;
  color: #DC2626;
  margin-top: 4px;
}

/* ==========================================================================
   Form Modal Overlay
   ========================================================================== */
.form-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(45, 58, 74, .5);
  backdrop-filter: blur(3px);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  animation: overlayIn 400ms ease;
}

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

.form-modal {
  background: var(--white);
  max-width: 480px;
  width: 100%;
  padding: 52px 48px 44px;
  text-align: center;
  position: relative;
  overflow: hidden;
  animation: modalIn 500ms cubic-bezier(.25,.1,.25,1);
}

@keyframes modalIn {
  from { opacity: 0; transform: translateY(20px) scale(.97); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

.form-modal-close {
  position: absolute;
  top: 16px;
  right: 20px;
  font-size: 22px;
  color: rgba(107, 114, 128, .3);
  cursor: pointer;
  background: none;
  border: none;
  line-height: 1;
  transition: color 300ms;
  font-family: var(--font-heading);
  font-weight: 300;
}

.form-modal-close:hover {
  color: var(--text-dark);
}

/* ===== Airplane Track ===== */
.plane-track {
  position: relative;
  height: 56px;
  margin-bottom: 24px;
  overflow: hidden;
}

.plane-track::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 10%;
  right: 10%;
  height: 1px;
  background: rgba(74, 111, 165, .08);
  transform: translateY(-50%);
}

.plane-svg {
  position: absolute;
  top: 50%;
  transform: translateY(-50%) rotate(90deg);
  width: 44px;
  height: 44px;
  animation: planeFly 2s cubic-bezier(.4,.0,.2,1) forwards;
  opacity: 0;
}

@keyframes planeFly {
  0%   { left: -50px; opacity: 0; }
  8%   { opacity: .7; }
  45%  { opacity: .7; }
  70%  { left: calc(50% - 22px); opacity: .55; }
  100% { left: calc(100% + 50px); opacity: 0; }
}

.plane-trail {
  position: absolute;
  top: 50%;
  height: 1px;
  left: 0;
  background: linear-gradient(to right, transparent 0%, rgba(74, 111, 165, .2) 40%, rgba(74, 111, 165, .1) 100%);
  transform: translateY(-50%);
  animation: trailGrow 2s cubic-bezier(.4,.0,.2,1) forwards;
  opacity: 0;
}

@keyframes trailGrow {
  0%   { width: 0; opacity: 0; }
  10%  { opacity: .35; }
  45%  { width: 45%; opacity: .2; }
  100% { width: 100%; opacity: 0; }
}

/* ===== Modal Content Fade ===== */
.modal-content {
  opacity: 0;
  transform: translateY(8px);
  animation: contentIn 600ms ease forwards;
  animation-delay: 1.4s;
}

@keyframes contentIn {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ===== Check Icon ===== */
.check-icon {
  width: 48px;
  height: 48px;
  margin: 0 auto 22px;
}

.check-icon svg {
  width: 100%;
  height: 100%;
}

.check-icon circle {
  stroke-dasharray: 150;
  stroke-dashoffset: 150;
  animation: circDraw 600ms ease forwards;
  animation-delay: 1.5s;
}

@keyframes circDraw {
  to { stroke-dashoffset: 0; }
}

.check-icon .tick {
  stroke-dasharray: 36;
  stroke-dashoffset: 36;
  animation: tickDraw 350ms ease forwards;
  animation-delay: 1.9s;
}

@keyframes tickDraw {
  to { stroke-dashoffset: 0; }
}

/* ===== Error Icon ===== */
.error-icon circle {
  stroke: #DC2626;
}

.error-icon .x-line {
  stroke: #DC2626;
  stroke-dasharray: 22;
  stroke-dashoffset: 22;
  animation: tickDraw 350ms ease forwards;
  animation-delay: 1.9s;
}

/* ===== Modal Typography ===== */
.form-modal-title {
  font-family: var(--font-body);
  font-size: 26px;
  font-weight: 400;
  color: var(--text-dark);
  margin-bottom: 8px;
}

.form-modal-text {
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--subtle-gray);
  line-height: 1.7;
  margin-bottom: 30px;
}

.form-modal-btn {
  font-family: var(--font-heading);
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2.5px;
  padding: 12px 44px;
  border: 1px solid rgba(0, 0, 0, .1);
  background: transparent;
  color: var(--subtle-gray);
  cursor: pointer;
  transition: all 400ms;
}

.form-modal-btn:hover {
  border-color: var(--header-bg);
  color: var(--header-bg);
}

/* ==========================================================================
   Footer
   ========================================================================== */
.site-footer {
  background: var(--footer-bg);
  padding: 76px 40px 0;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 60px;
  max-width: var(--max-width);
  margin: 0 auto;
  padding-bottom: 60px;
}

.footer-brand .logo-svg {
  height: 80px;
  color: rgba(255, 255, 255, .85);
  margin-bottom: 16px;
}

.footer-brand p {
  font-size: 13.5px;
  color: rgba(255, 255, 255, .38);
  line-height: 1.7;
  max-width: 300px;
}

.footer-heading {
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 600;
  color: var(--text-light);
  margin-bottom: 22px;
}

.footer-links li {
  margin-bottom: 11px;
}

.footer-links a {
  font-family: var(--font-heading);
  font-size: 13.5px;
  font-weight: 400;
  color: rgba(255, 255, 255, .4);
  transition: color 400ms;
}

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

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, .07);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 22px 0;
  max-width: var(--max-width);
  margin: 0 auto;
}

.footer-copyright {
  font-family: var(--font-heading);
  font-size: 12px;
  color: rgba(255, 255, 255, .28);
}

.footer-copyright a {
  color: rgba(255, 255, 255, .38);
  transition: color 400ms;
}

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

.footer-social a {
  color: rgba(255, 255, 255, .28);
  transition: color 400ms;
  margin-left: 16px;
}

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

/* ==========================================================================
   Default Content (Privacy Policy etc.)
   ========================================================================== */
.default-content {
  max-width: var(--content-width);
  margin: 0 auto;
  padding: 80px 40px;
}

.default-content h1 {
  font-family: var(--font-body);
  font-size: 38px;
  font-weight: 400;
  margin-bottom: 24px;
}

.default-content h2 {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 600;
  margin-top: 48px;
  margin-bottom: 16px;
}

.default-content h3 {
  font-family: var(--font-heading);
  font-size: 15px;
  font-weight: 600;
  margin-top: 32px;
  margin-bottom: 12px;
}

.default-content p {
  font-size: 15.5px;
  color: var(--subtle-gray);
  line-height: 1.85;
  margin-bottom: 16px;
}

.default-content ul,
.default-content ol {
  margin-bottom: 16px;
  padding-left: 24px;
}

.default-content ul {
  list-style: disc;
}

.default-content ol {
  list-style: decimal;
}

.default-content li {
  font-size: 15.5px;
  color: var(--subtle-gray);
  line-height: 1.85;
  margin-bottom: 8px;
}

.default-content a {
  color: var(--accent);
}

/* ==========================================================================
   404 Page
   ========================================================================== */
.page-404 {
  text-align: center;
  padding: 120px 40px;
}

.page-404 h1 {
  font-family: var(--font-heading);
  font-size: 80px;
  font-weight: 300;
  color: var(--text-dark);
  opacity: .08;
  margin-bottom: 16px;
}

.page-404 h2 {
  font-family: var(--font-body);
  font-size: 28px;
  font-weight: 400;
  margin-bottom: 12px;
}

.page-404 p {
  font-size: 15px;
  color: var(--subtle-gray);
  margin-bottom: 32px;
}


/* ==========================================================================
   Scope/About/Request aliases (match front-page.php class names)
   ========================================================================== */
.scope { background: var(--scope-bg); padding: 110px 40px; }
.scope-inner { max-width: var(--max-width); margin: 0 auto; text-align: center; }
.about { background: var(--about-bg); padding: 110px 40px; }
.request { background: var(--request-bg); padding: 110px 40px; }
.request-inner { max-width: var(--max-width); margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.request-content .section-label { text-align: left; }
.request-content h2 { font-family: var(--font-body); font-size: 34px; font-weight: 400; color: var(--text-dark); line-height: 1.25; margin-bottom: 20px; }
.request-content p { font-size: 15px; color: var(--subtle-gray); line-height: 1.75; margin-bottom: 36px; }

/* ==========================================================================
   ACMI Form Section wrapper
   ========================================================================== */
.form-section {
  max-width: var(--content-width);
  margin: 0 auto;
  padding: 0 40px;
}

.form-intro {
  font-family: var(--font-body);
  font-size: 15.5px;
  color: var(--subtle-gray);
  line-height: 1.85;
  margin-bottom: 28px;
  margin-top: 6px;
}

/* ==========================================================================
   Company Stats Section (light bg)
   ========================================================================== */
.stats-section {
  background: var(--about-bg);
  padding: 72px 40px;
}

.stats-inner {
  max-width: var(--content-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 0;
}

.stats-section .stat-card {
  text-align: center;
  padding: 32px 20px;
  position: relative;
  border: none;
  background: transparent;
}

.stats-section .stat-card:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0;
  top: 20%;
  height: 60%;
  width: 1px;
  background: rgba(255, 255, 255, .08);
}

.stats-section .stat-value {
  font-family: var(--font-body);
  font-size: 42px;
  font-weight: 400;
}

.stats-section .stat-label {
  font-size: 11px;
  font-weight: 500;
}

/* ==========================================================================
   Wanted card inner structure
   ========================================================================== */
.wanted-tag {
  grid-row: 1;
  grid-column: 1;
  height: fit-content;
}

.wanted-info {
  grid-row: 1 / 3;
  grid-column: 2;
  display: flex;
  flex-direction: column;
}

.wanted-bottom {
  grid-column: 1 / 3;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 12px;
  padding-top: 14px;
  border-top: 1px solid rgba(0, 0, 0, .04);
}

.wanted-status {
  display: flex;
  align-items: center;
  gap: 6px;
}

.status-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(74, 111, 165, .5);
}

.respond-btn {
  font-family: var(--font-heading);
  font-size: 9.5px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--accent);
  border: 1px solid rgba(74, 111, 165, .3);
  background: transparent;
  padding: 6px 16px;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  transition: background 300ms ease, border-color 300ms ease, color 300ms ease;
  pointer-events: none;
}

.wanted-card:hover .respond-btn {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--white);
}

.wanted-card.closed {
  opacity: .55;
  cursor: default;
}

.wanted-card.closed:hover {
  box-shadow: none;
  border-color: rgba(0, 0, 0, .07);
}

.wanted-card.closed .wanted-info h3 {
  text-decoration: line-through;
  text-decoration-color: rgba(0, 0, 0, .2);
}

.wanted-card.closed .status-dot {
  background: rgba(107, 114, 128, .4);
}

.wanted-card.closed .wanted-status {
  color: var(--subtle-gray);
}

.wanted-card.closed .respond-btn {
  display: none;
}

/* ==========================================================================
   Jet Fuel Form variants
   ========================================================================== */
.form-light {
  background: #F0F4F8;
  border: 1px solid rgba(74, 111, 165, .12);
  padding: 44px 40px 40px;
  margin-top: 28px;
}

.form-light h3 {
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 3.5px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 8px;
}

.form-light .form-intro {
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--subtle-gray);
  line-height: 1.85;
  margin-bottom: 28px;
}

.form-light .btn-submit {
  border-color: rgba(0, 0, 0, .15);
  color: var(--text-dark);
}

.form-light .btn-submit:hover {
  background: rgba(0, 0, 0, .03);
  color: var(--text-dark);
  border-color: rgba(0, 0, 0, .3);
}

.form-dark {
  background: var(--about-bg);
  border: 1px solid rgba(255, 255, 255, .06);
  padding: 44px 40px 40px;
  margin-top: 28px;
}

.form-dark h3 {
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 3.5px;
  text-transform: uppercase;
  color: var(--accent-light);
  margin-bottom: 8px;
}

.form-dark .form-intro {
  font-family: var(--font-body);
  font-size: 15px;
  color: rgba(255, 255, 255, .55);
  line-height: 1.85;
  margin-bottom: 28px;
}

.form-dark .form-group label {
  color: rgba(255, 255, 255, .7);
}

.form-dark .form-group input,
.form-dark .form-group select,
.form-dark .form-group textarea {
  background: rgba(255, 255, 255, .07);
  color: rgba(255, 255, 255, .85);
  border-color: rgba(255, 255, 255, .12);
}

.form-dark .form-group select option {
  background: var(--about-bg);
  color: rgba(255, 255, 255, .85);
}

.form-dark .form-group input:focus,
.form-dark .form-group select:focus,
.form-dark .form-group textarea:focus {
  border-color: var(--accent-light);
}

.form-dark .form-group input::placeholder,
.form-dark .form-group textarea::placeholder {
  color: rgba(255, 255, 255, .3);
}

.form-dark .btn-submit {
  border-color: rgba(255, 255, 255, .3);
  color: var(--white);
}

.form-dark .btn-submit:hover {
  background: rgba(255, 255, 255, .07);
  border-color: rgba(255, 255, 255, .55);
}

.form-dark .privacy-note {
  color: rgba(255, 255, 255, .35);
}

.form-dark .privacy-note a {
  color: var(--accent-light);
}

.email-hint {
  font-family: var(--font-heading);
  font-size: 10px;
  margin-top: 4px;
  font-style: italic;
}

.form-dark .email-hint {
  color: rgba(255, 255, 255, .4);
}

/* ==========================================================================
   Responsive — Tablet (max-width: 1024px)
   ========================================================================== */
@media (max-width: 1024px) {
  .about-inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .request-inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .contact-section {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .cards {
    grid-template-columns: 1fr;
    max-width: 440px;
  }

  .footer-inner {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }

  .footer-brand {
    grid-column: span 2;
  }

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

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

  .company-stats {
    grid-template-columns: 1fr;
    max-width: 360px;
    margin-left: auto;
    margin-right: auto;
  }

  .stats-inner {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .stats-section .stat-card:not(:last-child)::after {
    display: none;
  }

  .stats-section .stat-card {
    padding: 24px 20px;
    border-bottom: 1px solid rgba(255, 255, 255, .06);
  }

  .stats-section .stat-card:last-child {
    border-bottom: none;
  }
}

/* ==========================================================================
   Responsive — Mobile (max-width: 768px)
   ========================================================================== */
@media (max-width: 768px) {
  .header-logo {
    height: 88px;
  }

  .logo-svg {
    height: 70px;
  }

  .logo-tagline {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .header-nav,
  .header-line-top,
  .header-line-bottom {
    display: none;
  }

  .hero {
    height: 460px;
  }

  .hero-content h1 {
    font-size: 34px;
  }

  .hero-keywords {
    font-size: 10px;
  }

  .hero-subtitle {
    font-size: 14px;
  }

  .hero-banner {
    height: 320px;
  }

  .hero-banner .hero-content h1 {
    font-size: 30px;
  }

  .section-heading {
    font-size: 30px;
  }

  .scope-section,
  .about-section,
  .request-section {
    padding: 72px 24px;
  }

  .cta-banner {
    padding: 64px 24px;
  }

  .cta-banner h2 {
    font-size: 28px;
  }

  .page-content {
    padding: 56px 24px;
  }

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

  .form-group.full {
    grid-column: span 1;
  }

  .form-wrapper,
  .form-wrapper-dark {
    padding: 32px 24px;
  }

  .service-options {
    grid-template-columns: 1fr;
  }

  .acq-types,
  .page-content .acquisition-block .acq-types {
    grid-template-columns: 1fr;
  }

  .acquisition-block,
  .page-content .acquisition-block {
    padding: 32px 24px 28px;
  }

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

  .footer-inner {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 32px;
  }

  .footer-brand {
    grid-column: auto;
  }

  .footer-brand p {
    max-width: none;
  }

  .footer-brand .logo-svg {
    margin-left: auto;
    margin-right: auto;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 12px;
    text-align: center;
    padding: 20px 24px;
  }

  .filter-tabs {
    justify-content: center;
  }

  .contact-section {
    padding: 56px 24px;
  }

  .fuel-request-section,
  .fuel-supplier-section {
    padding: 56px 24px;
  }

  .faq-section {
    padding: 0 24px 60px;
  }

  .stats-section {
    padding: 48px 24px;
  }

  .stats-inner {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .stats-section .stat-card {
    padding: 24px 20px;
    border-bottom: 1px solid rgba(255, 255, 255, .06);
  }

  .stats-section .stat-card:last-child {
    border-bottom: none;
  }

  .stats-section .stat-card:not(:last-child)::after {
    display: none;
  }

  .stats-section .stat-value {
    font-size: 34px;
  }

  .form-submit {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
  }

  .default-content {
    padding: 56px 24px;
  }

  .page-404 {
    padding: 80px 24px;
  }

  .page-404 h1 {
    font-size: 56px;
  }

  .request-image img {
    height: 280px;
  }

  .form-modal {
    padding: 40px 28px 36px;
  }

  .form-modal-title {
    font-size: 22px;
  }

  .plane-svg {
    width: 36px;
    height: 36px;
  }
}

/* ==========================================================================
   Responsive — Small (max-width: 400px)
   ========================================================================== */
@media (max-width: 400px) {
  .header-logo {
    height: 76px;
  }

  .logo-svg {
    height: 56px;
  }

  .hero {
    height: 360px;
  }

  .hero-content h1 {
    font-size: 28px;
  }

  .hero-keywords {
    font-size: 9px;
    letter-spacing: 3px;
  }

  .hero-banner .hero-content h1 {
    font-size: 24px;
  }

  .section-heading {
    font-size: 26px;
  }

  .about-text h2 {
    font-size: 28px;
  }

  .stat-value {
    font-size: 28px;
  }
}

/* ==========================================================================
   Prefers Reduced Motion
   ========================================================================== */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }

  .reveal {
    opacity: 1;
  }

  .hero-keywords,
  .hero-content h1,
  .hero-subtitle {
    opacity: 1;
    animation: none;
  }

  .menu-panel li {
    opacity: 1;
    transform: none;
  }
}
