/* ==========================================================================
   AdaptForward — style.css
   Dark sky-blue theme for the homepage
   ========================================================================== */

:root {
  --bg: #0C1017;
  --bg-soft: #10161F;
  --bg-panel: #141C29;
  --bg-elevated: #1A2433;
  --line: #223044;
  --line-soft: #1A2534;
  --text: #E8F0F8;
  --text-soft: #A9C0D6;
  --text-dim: #7E94AA;
  --accent: #0EA5E9;
  --accent-deep: #0284C7;
  --accent-bright: #38BDF8;
  --ice: #E0F2FE;
  --ice-soft: #BAE6FD;
  --on-accent: #FFFFFF;
  --shadow: 0 18px 50px #000814;
}

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

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

body {
  font-size: 16px;
  font-family: "Segoe UI", system-ui, -apple-system, "Helvetica Neue", Arial, sans-serif;
  background-color: #0C1017;
  color: #E8F0F8;
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img,
svg {
  max-width: 100%;
  display: block;
}

a {
  color: #38BDF8;
  text-decoration: none;
}

a:hover {
  color: #E0F2FE;
}

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

.section {
  padding: 104px 0;
  position: relative;
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #38BDF8;
}

.section-label::before {
  content: "";
  width: 28px;
  height: 2px;
  background: #0EA5E9;
}

.section-title {
  font-size: 2.4rem;
  line-height: 1.15;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: #E8F0F8;
  margin: 18px 0 18px;
}

.section-lead {
  font-size: 1.1rem;
  color: #A9C0D6;
  max-width: 640px;
  line-height: 1.7;
}

/* ==========================================================================
   Paper Plane Navigation
   ========================================================================== */

.plane-nav {
  position: sticky;
  top: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  height: 76px;
  padding: 0 32px;
  background-color: #0C1017;
  border-bottom: 1px solid #1A2534;
}

.plane-nav.scrolled {
  box-shadow: 0 8px 24px #000814;
}

.plane-brand {
  display: flex;
  align-items: center;
  gap: 13px;
  text-decoration: none;
  flex-shrink: 0;
}

.plane-mark {
  position: relative;
  width: 34px;
  height: 30px;
  flex-shrink: 0;
}

.plane-mark .wing-top {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 50%;
  background: #0EA5E9;
  clip-path: polygon(0 0, 100% 100%, 0 100%);
}

.plane-mark .wing-bottom {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 50%;
  background: #38BDF8;
  clip-path: polygon(0 0, 100% 0, 0 100%);
}

.plane-brand .wordmark {
  font-size: 1.05rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  color: #E8F0F8;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 30px;
  list-style: none;
}

.nav-links a {
  font-size: 0.92rem;
  font-weight: 600;
  color: #A9C0D6;
  padding: 8px 2px;
  position: relative;
  transition: color 0.2s ease;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background: #0EA5E9;
  transition: width 0.25s ease;
}

.nav-links a:hover {
  color: #E0F2FE;
}

.nav-links a:hover::after {
  width: 100%;
}

.nav-cta {
  flex-shrink: 0;
  display: inline-block;
  background: #0284C7;
  color: #FFFFFF;
  font-size: 0.9rem;
  font-weight: 700;
  padding: 12px 22px;
  border-radius: 8px;
  transition: background 0.2s ease, transform 0.2s ease;
}

.nav-cta:hover {
  background: #0EA5E9;
  color: #FFFFFF;
  transform: translateY(-1px);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 42px;
  height: 42px;
  padding: 8px;
  background: #141C29;
  border: 1px solid #223044;
  border-radius: 8px;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  background: #E0F2FE;
  border-radius: 2px;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

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

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

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

/* ==========================================================================
   Soaring Over Clouds Hero
   ========================================================================== */

.soar-hero {
  position: relative;
  background-color: #0C1017;
  background-image:
    radial-gradient(1100px 420px at 85% -10%, #0B1F33 0%, transparent 60%),
    radial-gradient(900px 500px at 0% 110%, #0A1A2B 0%, transparent 55%);
  padding: 96px 0 128px;
  overflow: hidden;
}

.soar-hero .container {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 56px;
  align-items: center;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #38BDF8;
  background: #101A29;
  border: 1px solid #1D3147;
  padding: 8px 14px;
  border-radius: 999px;
}

.hero-eyebrow::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #0EA5E9;
  box-shadow: 0 0 0 4px #0B2B42;
}

.soar-hero h1 {
  font-size: 3.4rem;
  line-height: 1.08;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: #E8F0F8;
  margin: 26px 0 24px;
}

.soar-hero h1 .accent {
  color: #38BDF8;
}

.hero-copy {
  font-size: 1.18rem;
  color: #A9C0D6;
  max-width: 540px;
  line-height: 1.7;
}

.hero-ctas {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 36px;
  flex-wrap: wrap;
}

.btn {
  display: inline-block;
  font-weight: 700;
  font-size: 1rem;
  padding: 15px 28px;
  border-radius: 10px;
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease, border-color 0.2s ease;
  text-align: center;
}

.btn-primary {
  background: #0EA5E9;
  color: #FFFFFF;
}

.btn-primary:hover {
  background: #38BDF8;
  color: #041018;
  transform: translateY(-2px);
}

.btn-ghost {
  background: transparent;
  color: #E0F2FE;
  border: 1px solid #2A3C52;
}

.btn-ghost:hover {
  border-color: #38BDF8;
  color: #E0F2FE;
  transform: translateY(-2px);
}

.hero-meta {
  display: flex;
  align-items: center;
  gap: 26px;
  margin-top: 40px;
  flex-wrap: wrap;
}

.hero-meta .meta-item {
  font-size: 0.9rem;
  color: #7E94AA;
}

.hero-meta .meta-item strong {
  color: #E8F0F8;
  font-weight: 700;
}

/* Soaring scene */
.soar-scene {
  position: relative;
  height: 440px;
}

.lift-arc {
  position: absolute;
  top: 40px;
  left: 50%;
  width: 340px;
  height: 340px;
  margin-left: -170px;
  border: 2px solid transparent;
  border-top-color: #38BDF8;
  border-radius: 50%;
  transform: rotate(-38deg);
}

.soar-plane {
  position: absolute;
  top: 110px;
  left: 50%;
  width: 132px;
  height: 108px;
  margin-left: -66px;
  transform: rotate(-9deg);
  filter: drop-shadow(0 14px 22px #00101f);
}

.soar-plane .wing-top {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 50%;
  background: #0EA5E9;
  clip-path: polygon(0 0, 100% 100%, 0 100%);
}

.soar-plane .wing-bottom {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 50%;
  background: #38BDF8;
  clip-path: polygon(0 0, 100% 0, 0 100%);
}

.spark {
  position: absolute;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #E0F2FE;
  box-shadow: 0 0 14px #38BDF8;
}

.spark-a {
  top: 130px;
  left: 24%;
}

.spark-b {
  top: 60px;
  right: 20%;
}

.cloud {
  position: absolute;
  height: 74px;
  background: #1B2B3E;
  border-radius: 50px;
}

.cloud::before,
.cloud::after {
  content: "";
  position: absolute;
  background: #1B2B3E;
  border-radius: 50%;
}

.cloud::before {
  width: 92px;
  height: 92px;
  top: -42px;
  left: 26px;
}

.cloud::after {
  width: 66px;
  height: 66px;
  top: -28px;
  left: 104px;
}

.cloud-back {
  position: absolute;
  height: 60px;
  background: #14222F;
  border-radius: 50px;
}

.cloud-back::before,
.cloud-back::after {
  content: "";
  position: absolute;
  background: #14222F;
  border-radius: 50%;
}

.cloud-back::before {
  width: 76px;
  height: 76px;
  top: -34px;
  left: 22px;
}

.cloud-back::after {
  width: 54px;
  height: 54px;
  top: -22px;
  left: 86px;
}

.cloud-1 {
  bottom: 30px;
  left: -40px;
  width: 300px;
}

.cloud-2 {
  bottom: 0;
  right: -30px;
  width: 320px;
}

.cloud-3 {
  bottom: 84px;
  right: 30px;
  width: 240px;
  background: #182739;
}

.cloud-3::before,
.cloud-3::after {
  background: #182739;
}

.cloud-4 {
  bottom: 120px;
  left: 60px;
  width: 200px;
  background: #15222F;
}

.cloud-4::before,
.cloud-4::after {
  background: #15222F;
}

.cloud-back-1 {
  bottom: 150px;
  left: 10%;
  width: 260px;
}

.cloud-back-2 {
  bottom: 210px;
  right: 8%;
  width: 220px;
}

/* ==========================================================================
   About Section
   ========================================================================== */

.about-section {
  background-color: #0C1017;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: start;
}

.about-text p {
  color: #A9C0D6;
  font-size: 1.05rem;
  margin-bottom: 18px;
}

.about-text p strong {
  color: #E8F0F8;
}

.about-points {
  list-style: none;
  display: grid;
  gap: 14px;
  margin-top: 26px;
}

.about-points li {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  color: #A9C0D6;
  font-size: 1rem;
}

.about-points li::before {
  content: "";
  flex-shrink: 0;
  width: 9px;
  height: 9px;
  margin-top: 8px;
  border-radius: 50%;
  background: #0EA5E9;
  box-shadow: 0 0 0 4px #0B2B42;
}

.about-card {
  background: #101A29;
  border: 1px solid #1D3147;
  border-radius: 16px;
  padding: 34px;
}

.about-card h3 {
  font-size: 1.3rem;
  color: #E8F0F8;
  margin-bottom: 12px;
}

.about-card p {
  color: #A9C0D6;
  font-size: 1rem;
  line-height: 1.7;
}

.about-card .card-rule {
  height: 3px;
  width: 48px;
  background: #0EA5E9;
  border-radius: 2px;
  margin: 20px 0;
}

.about-card ul {
  list-style: none;
  display: grid;
  gap: 12px;
}

.about-card ul li {
  color: #A9C0D6;
  padding-left: 22px;
  position: relative;
}

.about-card ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 8px;
  height: 8px;
  background: #38BDF8;
  border-radius: 2px;
}

/* ==========================================================================
   Full-width Statement Row
   ========================================================================== */

.statement-row {
  background-color: #0A1A2B;
  border-top: 1px solid #1A2534;
  border-bottom: 1px solid #1A2534;
  padding: 96px 0;
}

.statement-row .container {
  text-align: center;
}

.statement-row .statement {
  font-size: 2.3rem;
  line-height: 1.3;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: #E8F0F8;
  max-width: 900px;
  margin: 0 auto;
}

.statement-row .statement .accent {
  color: #38BDF8;
}

.statement-row .statement-sub {
  font-size: 1.1rem;
  color: #A9C0D6;
  max-width: 620px;
  margin: 26px auto 0;
}

/* ==========================================================================
   Services Section
   ========================================================================== */

.services-section {
  background-color: #0C1017;
}

.services-wrap {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 60px;
  align-items: start;
}

.services-intro p {
  color: #A9C0D6;
  font-size: 1.05rem;
  line-height: 1.7;
  margin-top: 16px;
}

.services-intro .service-note {
  margin-top: 24px;
  padding: 22px 24px;
  background: #101A29;
  border-left: 3px solid #0EA5E9;
  border-radius: 8px;
  color: #A9C0D6;
  font-size: 0.98rem;
}

.services-list {
  list-style: none;
  display: grid;
  gap: 0;
}

.services-list li {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 20px;
  padding: 26px 0;
  border-bottom: 1px solid #1A2534;
}

.services-list li:first-child {
  border-top: 1px solid #1A2534;
}

.services-list .svc-num {
  font-size: 1.1rem;
  font-weight: 800;
  color: #38BDF8;
  letter-spacing: 0.05em;
}

.services-list h3 {
  font-size: 1.25rem;
  color: #E8F0F8;
  margin-bottom: 8px;
}

.services-list p {
  color: #A9C0D6;
  font-size: 0.99rem;
  line-height: 1.65;
}

/* ==========================================================================
   Big-Numeral Stat Columns
   ========================================================================== */

.stats-section {
  background-color: #10161F;
  border-top: 1px solid #1A2534;
  border-bottom: 1px solid #1A2534;
  padding: 84px 0;
}

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

.stat {
  text-align: left;
}

.stat .stat-value {
  font-size: 3.2rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: #38BDF8;
  line-height: 1;
}

.stat .stat-value .suffix {
  color: #0EA5E9;
}

.stat .stat-label {
  margin-top: 12px;
  font-size: 1rem;
  color: #A9C0D6;
  font-weight: 600;
}

.stat .stat-desc {
  margin-top: 6px;
  font-size: 0.9rem;
  color: #7E94AA;
}

/* ==========================================================================
   Numbered Consulting Process
   ========================================================================== */

.process-section {
  background-color: #0C1017;
}

.process-list {
  list-style: none;
  margin-top: 44px;
  position: relative;
}

.process-list::before {
  content: "";
  position: absolute;
  left: 31px;
  top: 16px;
  bottom: 16px;
  width: 2px;
  background: #1D3147;
}

.process-list li {
  position: relative;
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 28px;
  padding: 26px 0;
}

.process-list .step-num {
  position: relative;
  z-index: 1;
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #101A29;
  border: 2px solid #0EA5E9;
  border-radius: 50%;
  font-size: 1.05rem;
  font-weight: 800;
  color: #E0F2FE;
}

.process-list .step-body h3 {
  font-size: 1.35rem;
  color: #E8F0F8;
  margin-bottom: 8px;
}

.process-list .step-body h3 .step-tag {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #38BDF8;
  margin-right: 10px;
}

.process-list .step-body p {
  color: #A9C0D6;
  font-size: 1rem;
  line-height: 1.7;
  max-width: 680px;
}

/* ==========================================================================
   Two-Column Comparison Table
   ========================================================================== */

.compare-section {
  background-color: #10161F;
  border-top: 1px solid #1A2534;
  border-bottom: 1px solid #1A2534;
}

.compare-table {
  margin-top: 44px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  background: #101A29;
  border: 1px solid #1D3147;
  border-radius: 16px;
  overflow: hidden;
}

.compare-table .compare-col {
  padding: 34px 30px;
}

.compare-table .compare-col + .compare-col {
  border-left: 1px solid #1D3147;
}

.compare-table .compare-col.featured {
  background: #0A1A2B;
  border-left: 1px solid #1D3147;
  border-right: 1px solid #1D3147;
}

.compare-table .compare-head {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #38BDF8;
  margin-bottom: 10px;
}

.compare-table h3 {
  font-size: 1.4rem;
  color: #E8F0F8;
  margin-bottom: 6px;
}

.compare-table .compare-sub {
  font-size: 0.92rem;
  color: #7E94AA;
  margin-bottom: 20px;
  min-height: 44px;
}

.compare-table ul {
  list-style: none;
  display: grid;
  gap: 12px;
}

.compare-table ul li {
  color: #A9C0D6;
  font-size: 0.95rem;
  padding-left: 24px;
  position: relative;
}

.compare-table ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 7px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #0EA5E9;
  box-shadow: 0 0 0 3px #0B2B42;
}

.compare-table .compare-badge {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #041018;
  background: #38BDF8;
  padding: 4px 10px;
  border-radius: 999px;
  margin-bottom: 14px;
}

/* ==========================================================================
   FAQ Accordion
   ========================================================================== */

.faq-section {
  background-color: #0C1017;
}

.faq-list {
  margin-top: 44px;
  display: grid;
  gap: 14px;
  max-width: 820px;
}

.faq-item {
  background: #101A29;
  border: 1px solid #1D3147;
  border-radius: 12px;
  overflow: hidden;
}

.faq-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 22px 26px;
  cursor: pointer;
  font-size: 1.08rem;
  font-weight: 700;
  color: #E8F0F8;
  list-style: none;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary .faq-icon {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #2A3C52;
  border-radius: 50%;
  color: #38BDF8;
  font-size: 1.1rem;
  transition: transform 0.25s ease, background 0.25s ease, color 0.25s ease;
}

.faq-item[open] summary .faq-icon {
  transform: rotate(45deg);
  background: #0EA5E9;
  color: #041018;
  border-color: #0EA5E9;
}

.faq-item .faq-answer {
  padding: 0 26px 24px;
  color: #A9C0D6;
  font-size: 1rem;
  line-height: 1.7;
}

.faq-item .faq-answer a {
  color: #38BDF8;
}

/* ==========================================================================
   Split CTA Band
   ========================================================================== */

.cta-band {
  background-color: #0A1A2B;
  border-top: 1px solid #1D3147;
  border-bottom: 1px solid #1D3147;
}

.cta-band .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.cta-band h2 {
  font-size: 2.2rem;
  line-height: 1.2;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: #E8F0F8;
}

.cta-band p {
  margin-top: 16px;
  color: #A9C0D6;
  font-size: 1.08rem;
}

.cta-band .cta-actions {
  display: flex;
  gap: 14px;
  justify-content: flex-end;
  flex-wrap: wrap;
}

/* ==========================================================================
   Contact Section
   ========================================================================== */

.contact-section {
  background-color: #0C1017;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 56px;
  align-items: start;
  margin-top: 44px;
}

.contact-info {
  display: grid;
  gap: 18px;
}

.contact-info .info-block {
  padding: 22px 24px;
  background: #101A29;
  border: 1px solid #1D3147;
  border-radius: 12px;
}

.contact-info .info-block .info-label {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #38BDF8;
  margin-bottom: 6px;
}

.contact-info .info-block a,
.contact-info .info-block span {
  color: #E8F0F8;
  font-size: 1.02rem;
  font-weight: 600;
  word-break: break-word;
}

.contact-info .info-block a:hover {
  color: #38BDF8;
}

.contact-form {
  background: #101A29;
  border: 1px solid #1D3147;
  border-radius: 16px;
  padding: 34px;
}

.contact-form .form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.contact-form label {
  display: block;
  font-size: 0.9rem;
  font-weight: 600;
  color: #A9C0D6;
  margin-bottom: 8px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  background: #0C1017;
  border: 1px solid #223044;
  border-radius: 8px;
  color: #E8F0F8;
  font-size: 1rem;
  padding: 13px 15px;
  font-family: inherit;
  transition: border-color 0.2s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: #0EA5E9;
}

.contact-form textarea {
  resize: vertical;
  min-height: 130px;
}

.contact-form .form-field {
  margin-bottom: 18px;
}

.contact-form .form-submit {
  margin-top: 6px;
}

.contact-form .form-status {
  margin-top: 16px;
  font-size: 0.95rem;
  color: #38BDF8;
  min-height: 1.4em;
}

/* ==========================================================================
   Footer
   ========================================================================== */

.site-footer {
  background-color: #0C1017;
  border-top: 3px solid #0EA5E9;
  padding: 64px 0 40px;
}

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

.footer-brand .wordmark {
  font-size: 1.1rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  color: #E8F0F8;
}

.footer-brand p {
  margin-top: 16px;
  color: #7E94AA;
  font-size: 0.94rem;
  line-height: 1.7;
  max-width: 300px;
}

.footer-col h4 {
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #38BDF8;
  margin-bottom: 18px;
}

.footer-col ul {
  list-style: none;
  display: grid;
  gap: 12px;
}

.footer-col ul a {
  color: #A9C0D6;
  font-size: 0.95rem;
}

.footer-col ul a:hover {
  color: #E0F2FE;
}

.footer-col ul span {
  color: #A9C0D6;
  font-size: 0.95rem;
}

.footer-bottom {
  margin-top: 48px;
  padding-top: 24px;
  border-top: 1px solid #1A2534;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  font-size: 0.9rem;
  color: #7E94AA;
}

.footer-bottom .legal-links {
  display: flex;
  gap: 20px;
}

.footer-bottom a {
  color: #A9C0D6;
}

.footer-bottom a:hover {
  color: #E0F2FE;
}

/* ==========================================================================
   Scroll reveal (safe without JS)
   ========================================================================== */

.fade-up {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

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

/* ==========================================================================
   Responsive
   ========================================================================== */

@media (max-width: 1024px) {
  .soar-hero .container {
    grid-template-columns: 1fr;
  }

  .soar-scene {
    height: 360px;
  }

  .about-grid,
  .services-wrap,
  .contact-grid,
  .cta-band .container {
    grid-template-columns: 1fr;
  }

  .cta-band .cta-actions {
    justify-content: flex-start;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 36px;
  }

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

@media (max-width: 860px) {
  .plane-nav {
    padding: 0 20px;
  }

  .nav-toggle {
    display: flex;
  }

  .nav-links {
    position: absolute;
    top: 76px;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: #0C1017;
    border-bottom: 1px solid #1A2534;
    padding: 12px 20px 20px;
    display: none;
  }

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

  .nav-links li {
    border-bottom: 1px solid #141C29;
  }

  .nav-links a {
    display: block;
    padding: 15px 4px;
    font-size: 1rem;
  }

  .nav-cta {
    display: none;
  }

  .soar-hero {
    padding: 64px 0 88px;
  }

  .soar-hero h1 {
    font-size: 2.5rem;
  }

  .section {
    padding: 72px 0;
  }

  .section-title {
    font-size: 2rem;
  }

  .statement-row .statement {
    font-size: 1.7rem;
  }

  .compare-table {
    grid-template-columns: 1fr;
  }

  .compare-table .compare-col + .compare-col {
    border-left: none;
    border-top: 1px solid #1D3147;
  }

  .compare-table .compare-col.featured {
    border-left: none;
    border-right: none;
  }

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

@media (max-width: 600px) {
  .container {
    padding: 0 20px;
  }

  .soar-hero h1 {
    font-size: 2.1rem;
  }

  .hero-copy {
    font-size: 1.05rem;
  }

  .soar-scene {
    height: 280px;
  }

  .soar-plane {
    width: 100px;
    height: 82px;
    margin-left: -50px;
  }

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

  .process-list::before {
    left: 24px;
  }

  .process-list li {
    grid-template-columns: 48px 1fr;
    gap: 18px;
  }

  .process-list .step-num {
    width: 48px;
    height: 48px;
    font-size: 0.9rem;
  }

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

/* ==========================================================================
   Reduced motion
   ========================================================================== */

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .fade-up {
    opacity: 1;
    transform: none;
    transition: none;
  }
}
