/* ═══════════════════════════════════════════════════════════
   ATLAS JET — Styles
   Colors: #002D62 (Deep Blue) | #C05A3A (Terra Cotta)
           #A67C52 (Bronze)    | #F2F5FA (Cloud White)
═══════════════════════════════════════════════════════════ */

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

:root {
  --blue:   #002D62;
  --blue-mid: #003d84;
  --blue-light: #0a4a9c;
  --orange: #C05A3A;
  --orange-light: #d4704f;
  --bronze: #A67C52;
  --bronze-light: #c4965e;
  --white:  #F2F5FA;
  --white-pure: #ffffff;
  --text:   #1a2840;
  --text-muted: #5a6a80;
  --border: rgba(0, 45, 98, 0.12);

  --ff-head: 'Montserrat', sans-serif;
  --ff-body: 'Lato', sans-serif;

  --nav-h: 72px;
  --radius: 14px;
  --radius-lg: 22px;
  --shadow: 0 4px 24px rgba(0,45,98,0.10);
  --shadow-lg: 0 12px 48px rgba(0,45,98,0.18);
  --transition: 0.3s cubic-bezier(0.4,0,0.2,1);
}

html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--ff-body);
  background: var(--white);
  color: var(--text);
  line-height: 1.65;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

/* ── Utilities ───────────────────────────────────────────── */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 clamp(20px, 5vw, 60px);
}

.accent-orange { color: var(--orange); }
.accent-bronze { color: var(--bronze); }

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 50px;
  font-family: var(--ff-head);
  font-weight: 700;
  font-size: 0.875rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: var(--transition);
  white-space: nowrap;
}
.btn--primary {
  background: var(--orange);
  color: var(--white-pure);
  box-shadow: 0 4px 20px rgba(192,90,58,0.35);
}
.btn--primary:hover {
  background: var(--orange-light);
  box-shadow: 0 8px 32px rgba(192,90,58,0.45);
  transform: translateY(-2px);
}
.btn--ghost {
  background: transparent;
  color: var(--white-pure);
  border: 2px solid rgba(255,255,255,0.4);
}
.btn--ghost:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.7);
  transform: translateY(-2px);
}
.btn--full { width: 100%; justify-content: center; }

.section {
  padding: clamp(80px, 10vw, 130px) 0;
  position: relative;
}

.section__label {
  font-family: var(--ff-head);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 12px;
}
.section__label--light { color: var(--bronze-light); }

.section__title {
  font-family: var(--ff-head);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  line-height: 1.15;
  color: var(--blue);
  margin-bottom: 20px;
}
.section__title--light { color: var(--white-pure); }

.section__desc {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 560px;
}

.section__header {
  text-align: center;
  margin-bottom: clamp(48px, 6vw, 72px);
}
.section__header .section__desc { margin: 0 auto; }

.section__footer {
  text-align: center;
  margin-bottom: 10px;
}
.section__footer .section__desc { margin: 0 auto; }

/* ── NAV ─────────────────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--nav-h);
  transition: background var(--transition), box-shadow var(--transition);
}
.nav.scrolled {
  background: rgba(0,24,56,0.96);
  backdrop-filter: blur(12px);
  box-shadow: 0 2px 24px rgba(0,0,0,0.25);
}
.nav__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 clamp(20px, 5vw, 60px);
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav__logo { display: flex; align-items: center; }
.nav__logo-img { height: 40px; width: auto; object-fit: contain; filter: brightness(0) invert(1); }
.nav__logo-text {
  font-family: var(--ff-head);
  font-weight: 900;
  font-size: 1.3rem;
  letter-spacing: 0.12em;
  color: var(--white-pure);
  align-items: center;
}
.nav__links {
  display: flex;
  align-items: center;
  gap: 36px;
}
.nav__links a {
  font-family: var(--ff-head);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.8);
  transition: color var(--transition);
}
.nav__links a:hover { color: var(--white-pure); }
.nav__cta {
  background: var(--orange) !important;
  color: var(--white-pure) !important;
  padding: 10px 24px;
  border-radius: 50px;
  box-shadow: 0 4px 16px rgba(192,90,58,0.35);
}
.nav__cta:hover { background: var(--orange-light) !important; }
.nav__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 6px;
}
.nav__burger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--white-pure);
  border-radius: 2px;
  transition: var(--transition);
}

/* ── HERO ────────────────────────────────────────────────── */
.hero {
  min-height: 100vh;
  background: linear-gradient(150deg, #001a3d 0%, #002D62 45%, #003580 70%, #1a1a2e 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: var(--nav-h) 20px 80px;
  overflow: hidden;
  position: relative;
}
.hero__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.hero__grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 60px 60px;
}
.hero__glow {
  position: absolute;
  width: 700px; height: 700px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(192,90,58,0.15) 0%, transparent 70%);
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  animation: pulse 6s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { transform: translate(-50%,-50%) scale(1); opacity: 0.7; }
  50% { transform: translate(-50%,-50%) scale(1.15); opacity: 1; }
}

.hero__content {
  position: relative;
  z-index: 2;
  max-width: 780px;
}
.hero__badge {
  display: inline-block;
  font-family: var(--ff-head);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--bronze-light);
  border: 1px solid rgba(166,124,82,0.4);
  padding: 7px 20px;
  border-radius: 50px;
  margin-bottom: 32px;
  backdrop-filter: blur(4px);
  background: rgba(166,124,82,0.08);
}
.hero__logo-wrap { margin-bottom: 28px; }
.hero__logo {
  height: clamp(60px, 10vw, 110px);
  width: auto;
  margin: 0 auto;
  object-fit: contain;
  filter: brightness(0) invert(1) drop-shadow(0 4px 24px rgba(255,255,255,0.15));
}
.hero__logo-fallback {
  font-family: var(--ff-head);
  font-weight: 900;
  font-size: clamp(3rem, 9vw, 7rem);
  letter-spacing: 0.06em;
  color: var(--white-pure);
  text-shadow: 0 4px 40px rgba(0,0,0,0.4);
}
.hero__tagline {
  font-family: var(--ff-head);
  font-size: clamp(1.5rem, 3.5vw, 2.4rem);
  font-weight: 700;
  color: var(--white-pure);
  line-height: 1.3;
  margin-bottom: 20px;
}
.hero__sub {
  font-size: clamp(0.95rem, 1.5vw, 1.1rem);
  color: rgba(255,255,255,0.72);
  max-width: 580px;
  margin: 0 auto 36px;
  line-height: 1.7;
}
.hero__actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 56px;
}
.hero__stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius);
  backdrop-filter: blur(8px);
  background: rgba(255,255,255,0.05);
  overflow: hidden;
}
.hero__stat {
  flex: 1;
  padding: 20px 28px;
  text-align: center;
}
.hero__stat-num {
  display: block;
  font-family: var(--ff-head);
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 900;
  color: var(--white-pure);
  line-height: 1;
  margin-bottom: 4px;
}
.hero__stat-label {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
}
.hero__stat-divider {
  width: 1px;
  height: 40px;
  background: rgba(255,255,255,0.12);
}
.hero__scroll {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,0.35);
  font-family: var(--ff-head);
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}
.hero__scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.35), transparent);
  animation: scrollLine 2s ease-in-out infinite;
}
@keyframes scrollLine {
  0%, 100% { opacity: 0.3; transform: scaleY(0.8); }
  50% { opacity: 1; transform: scaleY(1); }
}

/* ── ABOUT ───────────────────────────────────────────────── */
.about { background: var(--white); }
.about__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about__visual {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.about__card {
  border-radius: var(--radius);
  padding: 28px 24px;
  transition: transform var(--transition), box-shadow var(--transition);
}
.about__card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.about__card--main {
  grid-column: span 2;
  background: var(--blue);
  color: var(--white-pure);
}
.about__card--main h3 { color: var(--white-pure); }
.about__card--main p { color: rgba(255,255,255,0.75); font-size: 0.93rem; }
.about__card--accent {
  background: var(--orange);
  color: var(--white-pure);
}
.about__card--accent h3 { color: var(--white-pure); }
.about__card--accent p { color: rgba(255,255,255,0.82); font-size: 0.88rem; }
.about__card--bronze {
  background: linear-gradient(135deg, var(--bronze) 0%, var(--bronze-light) 100%);
  color: var(--white-pure);
}
.about__card--bronze h3 { color: var(--white-pure); }
.about__card--bronze p { color: rgba(255,255,255,0.82); font-size: 0.88rem; }
.about__card-icon {
  font-size: 1.8rem;
  margin-bottom: 12px;
}
.about__card h3 {
  font-family: var(--ff-head);
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 8px;
}
.about__text p {
  color: var(--text-muted);
  margin-bottom: 18px;
  font-size: 1rem;
}
.about__text strong { color: var(--blue); }
.about__text .btn { margin-top: 8px; }

/* ── FLEET ───────────────────────────────────────────────── */
.fleet {
  background: linear-gradient(180deg, #f0f4fa 0%, var(--white) 100%);
}
.fleet__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.fleet__card {
  background: var(--white-pure);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 2px solid transparent;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
  position: relative;
}
.fleet__card:hover {
  transform: translateY(-6px);
  border-color: var(--bronze);
  box-shadow: 0 8px 36px rgba(166,124,82,0.25);
}
.fleet__card-img {
  height: 180px;
  position: relative;
  display: flex;
  align-items: flex-end;
  padding: 16px;
}
.fleet__card-img--1 {
  background: linear-gradient(to top, rgba(0,0,0,0.55) 0%, rgba(0,0,0,0.1) 60%, transparent 100%),
              url('img/hjet.jpg') center/cover no-repeat;
}
.fleet__card-img--2 {
  background: linear-gradient(to top, rgba(0,0,0,0.55) 0%, rgba(0,0,0,0.1) 60%, transparent 100%),
              url('img/citation-x.jpg') center/cover no-repeat;
}
.fleet__card-img--3 {
  background: linear-gradient(to top, rgba(0,0,0,0.55) 0%, rgba(0,0,0,0.1) 60%, transparent 100%),
              url('img/g650.png') center/cover no-repeat;
}
.fleet__card-img--4 {
  background: linear-gradient(to top, rgba(0,0,0,0.55) 0%, rgba(0,0,0,0.1) 60%, transparent 100%),
              url('img/pc12.jpg') center/cover no-repeat;
}
.fleet__card-badge {
  position: relative;
  z-index: 1;
  font-family: var(--ff-head);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--white-pure);
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(4px);
  border: 1px solid rgba(255,255,255,0.2);
  padding: 5px 12px;
  border-radius: 50px;
}
.fleet__card-badge--gold {
  background: var(--bronze);
  border-color: var(--bronze-light);
}
.fleet__card-body { padding: 22px 20px 24px; }
.fleet__card-body h3 {
  font-family: var(--ff-head);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--blue);
  margin-bottom: 8px;
}
.fleet__card-body p {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.55;
  margin-bottom: 16px;
}
.fleet__specs {
  border-top: 1px solid var(--border);
  padding-top: 14px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.fleet__specs li {
  display: flex;
  justify-content: space-between;
  font-size: 0.8rem;
}
.fleet__specs span:first-child {
  color: var(--text-muted);
  font-weight: 500;
}
.fleet__specs span:last-child {
  font-weight: 700;
  color: var(--blue);
  font-family: var(--ff-head);
}

/* ── NETWORK ─────────────────────────────────────────────── */
.network {
  background: var(--blue);
  padding: clamp(80px, 10vw, 130px) 0;
  overflow: hidden;
}
.network__bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
  background-size: 50px 50px;
}
.network__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.network__desc {
  color: rgba(255,255,255,0.7);
  margin-bottom: 40px;
  font-size: 1rem;
  line-height: 1.7;
}
.network__hubs { display: flex; flex-direction: column; gap: 18px; }
.network__hub {
  display: flex;
  align-items: center;
  gap: 16px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius);
  padding: 14px 20px;
  backdrop-filter: blur(4px);
  transition: background var(--transition);
}
.network__hub:hover { background: rgba(255,255,255,0.1); }
.network__hub-dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  flex-shrink: 0;
  box-shadow: 0 0 8px currentColor;
}
.network__hub-dot--eu  { background: #60a5fa; color: #60a5fa; }
.network__hub-dot--us  { background: var(--orange); color: var(--orange); }
.network__hub-dot--me  { background: var(--bronze-light); color: var(--bronze-light); }
.network__hub-dot--ap  { background: #34d399; color: #34d399; }
.network__hub strong {
  display: block;
  font-family: var(--ff-head);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--white-pure);
  margin-bottom: 2px;
}
.network__hub span {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.5);
  font-family: var(--ff-head);
  letter-spacing: 0.05em;
}

/* Globe map */
.network__map { display: flex; justify-content: center; align-items: center; }
.network__map-globe {
  width: clamp(280px, 35vw, 420px);
  height: clamp(280px, 35vw, 420px);
  border-radius: 50%;
  background: radial-gradient(circle at 35% 35%, rgba(255,255,255,0.05) 0%, rgba(0,45,98,0.3) 60%, rgba(0,20,50,0.8) 100%);
  border: 1px solid rgba(255,255,255,0.1);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow:
    0 0 60px rgba(0,0,0,0.4),
    inset 0 0 80px rgba(0,45,98,0.5);
}
.network__map-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.06);
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
}
.network__map-ring--1 { width: 55%; height: 55%; }
.network__map-ring--2 { width: 77%; height: 77%; }
.network__map-ring--3 { width: 100%; height: 100%; }
.network__map-center {
  text-align: center;
  z-index: 2;
}
.network__map-center span {
  display: block;
  font-family: var(--ff-head);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
  color: var(--white-pure);
  line-height: 1;
}
.network__map-center small {
  font-family: var(--ff-head);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
}
/* Route dots */
.route-dot {
  position: absolute;
  width: 8px; height: 8px;
  background: var(--orange);
  border-radius: 50%;
  box-shadow: 0 0 8px var(--orange), 0 0 16px rgba(192,90,58,0.4);
  cursor: default;
  transition: transform var(--transition);
}
.route-dot:hover { transform: scale(1.8); }
.route-dot span {
  position: absolute;
  bottom: 14px;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--ff-head);
  font-size: 0.6rem;
  font-weight: 700;
  color: var(--white-pure);
  white-space: nowrap;
  opacity: 0;
  transition: opacity var(--transition);
  text-shadow: 0 1px 4px rgba(0,0,0,0.8);
}
.route-dot:hover span { opacity: 1; }

/* ── WHY JOIN ────────────────────────────────────────────── */
.why-join { background: var(--white); }
.why__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.why__item {
  background: var(--white-pure);
  border-radius: var(--radius);
  padding: 32px 28px;
  border: 1px solid var(--border);
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}
.why__item:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(0,45,98,0.2);
}
.why__icon {
  font-size: 2rem;
  margin-bottom: 16px;
}
.why__item h3 {
  font-family: var(--ff-head);
  font-size: 1rem;
  font-weight: 700;
  color: var(--blue);
  margin-bottom: 10px;
}
.why__item p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.65;
}

/* ── TESTIMONIALS ────────────────────────────────────────── */
.testimonials {
  background: linear-gradient(180deg, #f0f4fa 0%, var(--white) 100%);
  padding: clamp(60px, 8vw, 100px) 0;
}
.testimonials__grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr 1fr;
  gap: 24px;
  align-items: center;
}
.testimonial {
  background: var(--white-pure);
  border-radius: var(--radius);
  padding: 32px 28px;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  position: relative;
}
.testimonial::before {
  content: '"';
  position: absolute;
  top: -10px; left: 24px;
  font-size: 4.5rem;
  font-family: Georgia, serif;
  color: var(--orange);
  line-height: 1;
}
.testimonial p {
  font-size: 0.93rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 20px;
  padding-top: 16px;
}
.testimonial footer {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.testimonial footer strong {
  font-family: var(--ff-head);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--blue);
}
.testimonial footer span {
  font-size: 0.78rem;
  color: var(--text-muted);
}
.testimonial--featured {
  background: var(--blue);
  border-color: var(--blue);
  transform: scale(1.04);
}
.testimonial--featured::before { color: var(--bronze-light); }
.testimonial--featured p { color: rgba(255,255,255,0.8); }
.testimonial--featured footer strong { color: var(--white-pure); }
.testimonial--featured footer span { color: rgba(255,255,255,0.5); }

/* ── JOIN SECTION ────────────────────────────────────────── */
.join {
  background: linear-gradient(150deg, #001a3d 0%, #002D62 50%, #001a3d 100%);
  overflow: hidden;
}
.join__bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.015) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.015) 1px, transparent 1px);
  background-size: 60px 60px;
}
.join__inner {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.join__text p {
  color: rgba(255,255,255,0.72);
  margin-bottom: 28px;
  font-size: 1rem;
  line-height: 1.7;
}
.join__checklist {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.join__checklist li {
  font-size: 0.92rem;
  color: rgba(255,255,255,0.8);
  font-family: var(--ff-head);
  font-weight: 600;
  letter-spacing: 0.02em;
}

/* Form */
.join__form-wrap {
  background: var(--white-pure);
  border-radius: var(--radius-lg);
  padding: clamp(32px, 5vw, 48px);
  box-shadow: 0 24px 80px rgba(0,0,0,0.35);
}
.join__form h3 {
  font-family: var(--ff-head);
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--blue);
  margin-bottom: 28px;
}
.form__group {
  margin-bottom: 18px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.form__group label {
  font-family: var(--ff-head);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--blue);
}
.form__group input,
.form__group select,
.form__group textarea {
  padding: 12px 16px;
  border: 1.5px solid var(--border);
  border-radius: 10px;
  font-family: var(--ff-body);
  font-size: 0.93rem;
  color: var(--text);
  background: var(--white);
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
  resize: vertical;
}
.form__group input:focus,
.form__group select:focus,
.form__group textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(0,45,98,0.1);
}
.form__group input::placeholder,
.form__group textarea::placeholder { color: #aab4c4; }
.form__note {
  text-align: center;
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-top: 12px;
}
.form__error {
  text-align: center;
  font-size: 0.82rem;
  color: #c0392b;
  background: #fdf0ef;
  border: 1px solid #f5c6c2;
  border-radius: 8px;
  padding: 10px 14px;
  margin-top: 10px;
}

/* Form success state */
.join__form--success .form__fields { display: none; }
.form__success {
  display: none;
  text-align: center;
  padding: 20px;
}
.join__form--success .form__success { display: block; }
.form__success-icon {
  font-size: 3rem;
  margin-bottom: 16px;
}
.form__success h4 {
  font-family: var(--ff-head);
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--blue);
  margin-bottom: 10px;
}
.form__success p { color: var(--text-muted); font-size: 0.93rem; }

/* ── FOOTER ──────────────────────────────────────────────── */
.footer {
  background: #00162e;
  color: rgba(255,255,255,0.65);
  padding: 72px 0 0;
}
.footer__inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 60px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.footer__logo {
  height: 44px;
  width: auto;
  object-fit: contain;
  margin-bottom: 16px;
  filter: brightness(0) invert(1) opacity(0.9);
}
.footer__logo-text {
  font-family: var(--ff-head);
  font-weight: 900;
  font-size: 1.4rem;
  letter-spacing: 0.1em;
  color: var(--white-pure);
  margin-bottom: 16px;
}
.footer__brand p {
  font-size: 0.88rem;
  line-height: 1.65;
  margin-bottom: 24px;
}
.footer__socials {
  display: flex;
  gap: 14px;
}
.footer__social {
  width: 38px; height: 38px;
  border-radius: 8px;
  background: rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition), transform var(--transition);
  color: rgba(255,255,255,0.7);
}
.footer__social:hover {
  background: var(--orange);
  color: var(--white-pure);
  transform: translateY(-2px);
}
.footer__social svg { width: 16px; height: 16px; }
.footer__links h4 {
  font-family: var(--ff-head);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--white-pure);
  margin-bottom: 18px;
}
.footer__links ul { display: flex; flex-direction: column; gap: 10px; }
.footer__links a {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.55);
  transition: color var(--transition);
}
.footer__links a:hover { color: var(--white-pure); }
.footer__bottom {
  padding: 20px 0;
  text-align: center;
}
.footer__bottom p {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.3);
}

/* ── ANIMATIONS (scroll reveal) ─────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
.reveal-delay-5 { transition-delay: 0.5s; }

/* ── MOBILE NAV ──────────────────────────────────────────── */
@media (max-width: 900px) {
  .nav__links {
    display: none;
    position: fixed;
    top: var(--nav-h);
    left: 0; right: 0;
    background: rgba(0,24,56,0.98);
    backdrop-filter: blur(12px);
    flex-direction: column;
    padding: 24px 32px 32px;
    gap: 8px;
    border-top: 1px solid rgba(255,255,255,0.06);
  }
  .nav__links.open { display: flex; }
  .nav__links a { font-size: 1rem; padding: 10px 0; }
  .nav__cta { width: fit-content; }
  .nav__burger { display: flex; }

  .about__grid { grid-template-columns: 1fr; gap: 48px; }
  .about__visual { order: -1; }

  .fleet__grid { grid-template-columns: repeat(2, 1fr); }

  .network__inner { grid-template-columns: 1fr; gap: 48px; }
  .network__map { order: -1; }

  .why__grid { grid-template-columns: repeat(2, 1fr); }

  .testimonials__grid { grid-template-columns: 1fr; }
  .testimonial--featured { transform: none; }

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

  .footer__inner { grid-template-columns: 1fr 1fr; gap: 40px; }
  .footer__brand { grid-column: span 2; }
}

@media (max-width: 600px) {
  .fleet__grid { grid-template-columns: 1fr; }
  .why__grid { grid-template-columns: 1fr; }
  .hero__stats { flex-direction: column; }
  .hero__stat-divider { width: 40px; height: 1px; }
  .footer__inner { grid-template-columns: 1fr; }
  .footer__brand { grid-column: span 1; }
  .form__row { grid-template-columns: 1fr; }
}
