/* ── Content Protection ── */
* {
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  -webkit-user-drag: none;
}

/* Re-enable selection inside forms */
input, textarea, select {
  -webkit-user-select: text;
  -moz-user-select: text;
  user-select: text;
}

img {
  -webkit-user-drag: none;
  pointer-events: none;
}

@media print {
  body { display: none !important; }
}

:root {
  color-scheme: dark;
  --void: #03070b;
  --black: #05080d;
  --deck: #07111a;
  --panel: rgba(7, 20, 27, 0.86);
  --panel-strong: #091923;
  --panel-soft: rgba(255, 255, 255, 0.055);
  --line: rgba(92, 221, 255, 0.24);
  --line-soft: rgba(255, 255, 255, 0.1);
  --cyan: #45d7ff;
  --cyan-soft: #9be9ff;
  --mint: #73f0a5;
  --amber: #f3b553;
  --red: #ff6b6b;
  --paper: #eef6f8;
  --text: #e8f7fb;
  --muted: #9fb6bf;
  --steel: #6f8791;
  --shadow: 0 28px 90px rgba(0, 0, 0, 0.48);
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  color: var(--text);
  background:
    linear-gradient(90deg, rgba(69, 215, 255, 0.05) 1px, transparent 1px),
    linear-gradient(rgba(69, 215, 255, 0.035) 1px, transparent 1px),
    linear-gradient(180deg, #03070b 0%, #07111a 48%, #061411 100%);
  background-size: 96px 96px, 96px 96px, auto;
  font-family: "Inter", Arial, sans-serif;
}

body,
button,
input,
select,
textarea {
  letter-spacing: 0;
}

a {
  color: inherit;
  text-decoration: none;
}

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

button,
input,
select,
textarea {
  font: inherit;
}

.noise,
.scanline {
  position: fixed;
  inset: 0;
  pointer-events: none;
}

.noise {
  z-index: 80;
  opacity: 0.07;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
  background-size: 3px 3px;
  mix-blend-mode: overlay;
}

.scanline {
  z-index: 79;
  opacity: 0.12;
  background: repeating-linear-gradient(
    180deg,
    transparent 0,
    transparent 7px,
    rgba(69, 215, 255, 0.08) 8px
  );
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 40;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: clamp(1rem, 3vw, 2rem);
  padding: 0.75rem clamp(1rem, 4vw, 3rem);
  border-bottom: 1px solid var(--line);
  background: rgba(3, 7, 11, 0.72);
  backdrop-filter: blur(18px);
  transition: background 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.site-header[data-elevated="true"] {
  background: rgba(3, 7, 11, 0.93);
  border-color: rgba(243, 181, 83, 0.28);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.28);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
  min-width: max-content;
}

.brand-logo {
  position: relative;
  width: 64px;
  height: 64px;
  flex: 0 0 auto;
  border-radius: 50%;
  overflow: hidden;
  border: 0;
  background: transparent;
  box-shadow: 0 0 28px rgba(69, 215, 255, 0.16);
}

.brand-logo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.42);
}

.brand strong {
  display: block;
  color: var(--text);
  font-size: clamp(0.98rem, 1.45vw, 1.35rem);
  font-weight: 800;
  line-height: 1;
  text-transform: uppercase;
  white-space: nowrap;
}

.brand-text {
  display: grid;
  gap: 0.18rem;
}

.brand small {
  display: block;
  color: var(--muted);
  font-family: "JetBrains Mono", monospace;
  font-size: 0.68rem;
  font-weight: 800;
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: 0;
}

.nav-links {
  justify-self: center;
  display: flex;
  gap: clamp(0.55rem, 1.4vw, 1.05rem);
  color: var(--muted);
  font-size: 0.74rem;
  font-weight: 700;
  text-transform: uppercase;
}

.nav-links a {
  position: relative;
  padding: 0.35rem 0;
  transition: color 160ms ease;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  background: var(--cyan);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 160ms ease;
}

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

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

.header-cta {
  min-width: max-content;
  border: 1px solid rgba(243, 181, 83, 0.46);
  color: var(--amber);
  padding: 0.72rem 0.95rem;
  border-radius: var(--radius);
  font-family: "JetBrains Mono", monospace;
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  background: rgba(243, 181, 83, 0.07);
}

.hero {
  position: relative;
  min-height: 100vh;
  display: grid;
  align-items: center;
  overflow: hidden;
  padding: 7.8rem clamp(1rem, 4vw, 3rem) 3.5rem;
}

.route-canvas,
.nav-grid,
.hero-ramp-visual {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-ramp-visual {
  z-index: 0;
  overflow: hidden;
}

.hero-ramp-visual img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: saturate(0.95) contrast(1.04);
}

.hero-ramp-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(3, 7, 11, 0.9) 0%, rgba(3, 7, 11, 0.62) 38%, rgba(3, 7, 11, 0.18) 72%, rgba(3, 7, 11, 0.48) 100%),
    linear-gradient(180deg, rgba(3, 7, 11, 0.28), rgba(3, 7, 11, 0.68));
}

.route-canvas {
  z-index: 1;
  opacity: 0.96;
}

.nav-grid {
  z-index: 2;
  background:
    linear-gradient(90deg, rgba(69, 215, 255, 0.08) 1px, transparent 1px),
    linear-gradient(rgba(69, 215, 255, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, transparent 49.9%, rgba(243, 181, 83, 0.16) 50%, transparent 50.1%),
    linear-gradient(transparent 49.9%, rgba(243, 181, 83, 0.12) 50%, transparent 50.1%);
  background-size: 72px 72px, 72px 72px, 100% 100%, 100% 100%;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.92), rgba(0, 0, 0, 0.2));
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  z-index: 2;
  height: 24vh;
  background: linear-gradient(180deg, transparent, var(--deck));
}

.hero-shell {
  position: relative;
  z-index: 5;
  display: block;
  align-items: center;
  width: min(1220px, 100%);
  margin: 0 auto;
}

.hero-copy {
  width: min(700px, calc(100% - 460px));
  max-width: 700px;
  padding-top: clamp(2rem, 7vw, 5rem);
}

.world-clock-panel {
  position: absolute;
  top: clamp(0rem, 1vw, 0.4rem);
  right: clamp(-3.5rem, -3vw, -1rem);
  width: min(300px, 100%);
  padding: 0.68rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(90deg, rgba(69, 215, 255, 0.08), transparent),
    rgba(3, 7, 11, 0.64);
  box-shadow: var(--shadow);
  backdrop-filter: blur(16px);
}

.clock-primary {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 0.8rem;
  margin-bottom: 0.5rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid var(--line-soft);
}

.clock-primary span {
  color: var(--muted);
  font-family: "JetBrains Mono", monospace;
  font-size: 0.72rem;
  text-transform: uppercase;
}

.clock-primary strong {
  color: var(--mint);
  font-family: "JetBrains Mono", monospace;
  font-size: clamp(1.36rem, 2.3vw, 1.9rem);
  line-height: 1;
}

.timezone-converter {
  display: grid;
  gap: 0.5rem;
  justify-content: end;
}

.timezone-select-row {
  display: grid;
  grid-template-columns: minmax(0, 176px) 66px;
  gap: 0.45rem;
  align-items: center;
}

.timezone-converter select {
  width: 176px;
  min-height: 32px;
  padding: 0.36rem 1.65rem 0.36rem 0.5rem;
  border: 1px solid var(--line-soft);
  border-radius: 6px;
  color: #03070b;
  background: rgba(232, 247, 251, 0.9);
  font-family: "JetBrains Mono", monospace;
  font-size: 0.64rem;
  text-transform: uppercase;
}

.timezone-converter select option {
  color: #03070b;
  background: #eef8fa;
}

.timezone-select-row strong {
  min-width: 66px;
  padding: 0.38rem 0.42rem;
  border: 1px solid rgba(115, 240, 165, 0.32);
  border-radius: 6px;
  background: rgba(115, 240, 165, 0.08);
  color: var(--text);
  font-family: "JetBrains Mono", monospace;
  font-size: 0.78rem;
  text-align: center;
}

.eyebrow,
.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  margin: 0 0 1rem;
  color: var(--mint);
  font-family: "JetBrains Mono", monospace;
  font-size: 0.76rem;
  font-weight: 800;
  text-transform: uppercase;
}

.pulse-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--mint);
  box-shadow: 0 0 0 0 rgba(115, 240, 165, 0.7);
  animation: pulse 1.8s infinite;
}

@keyframes pulse {
  70% {
    box-shadow: 0 0 0 13px rgba(115, 240, 165, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(115, 240, 165, 0);
  }
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 780px;
  margin-bottom: 1rem;
  font-size: clamp(3.4rem, 7vw, 7.4rem);
  line-height: 0.9;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero-method h1 {
  max-width: 720px;
  margin-bottom: 1rem;
  font-size: clamp(1.45rem, 2.15vw, 2.15rem);
  line-height: 1.12;
  text-transform: none !important;
}

.hero-method h1 span {
  display: block;
}

#hero-title.hero-workflow-title {
  max-width: 640px;
  margin-bottom: 1rem;
  color: var(--text);
  font-size: 1.55rem !important;
  font-weight: 800;
  line-height: 1.18;
  text-transform: none !important;
}

#hero-title.hero-workflow-title span {
  display: block;
}

h2 {
  margin-bottom: 1rem;
  font-size: clamp(2rem, 4.2vw, 4rem);
  line-height: 1;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 0.7rem;
  font-size: 1.15rem;
}

.company-overview {
  max-width: 700px;
  padding: clamp(1rem, 2vw, 1.25rem);
  border-left: 3px solid rgba(115, 240, 165, 0.72);
  border-radius: var(--radius);
  background: rgba(3, 7, 11, 0.42);
  backdrop-filter: blur(8px);
}

.company-overview p {
  margin-bottom: 0.78rem;
  color: #d8edf2;
  font-size: clamp(0.98rem, 1.28vw, 1.1rem);
  line-height: 1.62;
}

.company-overview p:last-child {
  margin-bottom: 0;
}

.hero-actions,
.telemetry-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.hero-actions {
  margin: 2rem 0 1.5rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.72rem;
  min-height: 48px;
  padding: 0.78rem 1.05rem;
  border: 1px solid transparent;
  border-radius: var(--radius);
  cursor: pointer;
  font-weight: 800;
}

.btn.primary {
  color: var(--black);
  background: linear-gradient(135deg, var(--cyan-soft), var(--mint));
  box-shadow: 0 18px 44px rgba(69, 215, 255, 0.18);
}

.btn.ghost {
  color: var(--amber);
  border-color: rgba(243, 181, 83, 0.38);
  background: rgba(243, 181, 83, 0.08);
}

.btn.secondary {
  color: var(--text);
  border-color: rgba(69, 215, 255, 0.36);
  background: rgba(69, 215, 255, 0.1);
}

.btn-icon {
  display: grid;
  place-items: center;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: rgba(3, 7, 11, 0.16);
  font-family: "JetBrains Mono", monospace;
  line-height: 1;
}

.telemetry-grid article {
  min-width: 144px;
  padding: 0.9rem 1rem;
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  background:
    linear-gradient(90deg, rgba(69, 215, 255, 0.07), transparent),
    rgba(3, 7, 11, 0.54);
  backdrop-filter: blur(12px);
}

.telemetry-grid span,
.telemetry-grid strong {
  display: block;
}

.telemetry-grid span {
  color: var(--muted);
  font-family: "JetBrains Mono", monospace;
  font-size: 0.68rem;
  text-transform: uppercase;
}

.telemetry-grid strong {
  margin-top: 0.22rem;
  color: var(--text);
  font-family: "JetBrains Mono", monospace;
  font-size: 1.1rem;
}

.avionics-console {
  position: relative;
  overflow: hidden;
  padding: 1rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(rgba(69, 215, 255, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(69, 215, 255, 0.045) 1px, transparent 1px),
    rgba(3, 13, 18, 0.88);
  background-size: 28px 28px, 28px 28px, auto;
  box-shadow: var(--shadow);
}

.avionics-console::before {
  content: "";
  position: absolute;
  inset: 0;
  border-top: 3px solid rgba(115, 240, 165, 0.72);
  pointer-events: none;
}

.console-top,
.precision-row,
.attitude-scale {
  display: flex;
  align-items: center;
}

.console-top {
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1rem;
}

.console-top span,
.console-top i,
.attitude-scale,
.readout-grid span,
.precision-row strong,
.panel-topline span,
.card-code,
.systems-grid span {
  color: var(--muted);
  font-family: "JetBrains Mono", monospace;
  font-size: 0.7rem;
  font-style: normal;
  text-transform: uppercase;
}

.console-top strong {
  display: block;
  color: var(--text);
}

.console-top i {
  padding: 0.44rem 0.62rem;
  border: 1px solid rgba(115, 240, 165, 0.42);
  border-radius: 999px;
  color: var(--mint);
  background: rgba(115, 240, 165, 0.1);
}

.attitude-module {
  padding: 1rem;
  margin-bottom: 1rem;
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  background: rgba(0, 0, 0, 0.18);
}

.nav-display-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 0.75rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid var(--line-soft);
}

.nav-display-header span,
.nav-display-header strong {
  color: var(--muted);
  font-family: "JetBrains Mono", monospace;
  font-size: 0.7rem;
  text-transform: uppercase;
}

.nav-display-header strong {
  color: var(--cyan-soft);
  text-align: right;
}

.attitude-horizon {
  position: relative;
  min-height: 188px;
  overflow: hidden;
  border: 1px solid rgba(69, 215, 255, 0.28);
  border-radius: var(--radius);
  background:
    linear-gradient(174deg, rgba(69, 215, 255, 0.22) 0 48%, rgba(243, 181, 83, 0.22) 49% 52%, rgba(4, 16, 17, 0.86) 53%),
    linear-gradient(90deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px);
  background-size: auto, 42px 42px;
}

.attitude-horizon::before,
.attitude-horizon::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

.attitude-horizon::before {
  width: 74%;
  height: 1px;
  background: rgba(238, 246, 248, 0.78);
}

.attitude-horizon::after {
  width: 150px;
  height: 150px;
  border: 1px solid rgba(238, 246, 248, 0.32);
  border-radius: 50%;
}

.pitch-line {
  position: absolute;
  left: 25%;
  right: 25%;
  height: 1px;
  background: rgba(238, 246, 248, 0.28);
}

.pitch-one {
  top: 34%;
}

.pitch-two {
  top: 66%;
}

.wing-line {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 160px;
  height: 34px;
  transform: translate(-50%, -50%);
}

.wing-line::before,
.wing-line::after {
  content: "";
  position: absolute;
  top: 16px;
  width: 58px;
  height: 3px;
  background: var(--amber);
  box-shadow: 0 0 14px rgba(243, 181, 83, 0.4);
}

.wing-line::before {
  left: 0;
}

.wing-line::after {
  right: 0;
}

.center-dot {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--amber);
  box-shadow: 0 0 16px var(--amber);
  transform: translate(-50%, -50%);
}

.attitude-scale {
  justify-content: space-between;
  gap: 1rem;
  margin-top: 0.75rem;
}

.readout-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.7rem;
  margin-bottom: 1rem;
}

.readout-grid article {
  min-height: 78px;
  padding: 0.8rem;
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.045);
}

.readout-grid strong {
  display: block;
  margin-top: 0.35rem;
  color: var(--text);
  font-family: "JetBrains Mono", monospace;
  font-size: 0.9rem;
}

.precision-stack {
  display: grid;
  gap: 0.68rem;
}

.precision-row {
  gap: 0.75rem;
  min-height: 46px;
  padding: 0.72rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius);
  background: rgba(0, 0, 0, 0.16);
}

.precision-row span {
  width: 11px;
  height: 11px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.18);
}

.precision-row p {
  flex: 1;
  margin: 0;
  color: #d9edf2;
  font-size: 0.9rem;
}

.precision-row.is-complete span {
  background: var(--mint);
  box-shadow: 0 0 14px rgba(115, 240, 165, 0.72);
}

.precision-row.is-active span {
  background: var(--amber);
  box-shadow: 0 0 14px rgba(243, 181, 83, 0.72);
}

.precision-row.is-active strong {
  color: var(--amber);
}

.scroll-cue {
  position: absolute;
  left: 50%;
  bottom: 1.5rem;
  z-index: 6;
  display: grid;
  place-items: start center;
  width: 30px;
  height: 48px;
  padding-top: 8px;
  border: 1px solid rgba(238, 246, 248, 0.34);
  border-radius: 999px;
  transform: translateX(-50%);
}

.scroll-cue span {
  width: 4px;
  height: 10px;
  border-radius: 999px;
  background: var(--paper);
  animation: scrollCue 1.65s ease-in-out infinite;
}

@keyframes scrollCue {
  55% {
    transform: translateY(16px);
    opacity: 0.45;
  }
}

.section {
  position: relative;
  padding: clamp(4rem, 8vw, 7rem) clamp(1rem, 4vw, 3rem);
}

.section-inner {
  width: min(1220px, 100%);
  margin: 0 auto;
}

.overview-section {
  min-height: 100vh;
  display: grid;
  align-items: center;
  background: #ffffff;
  color: var(--black);
}

.overview-layout {
  display: block;
}

.overview-section .section-kicker,
.coverage-section .section-kicker {
  color: #236c75;
}

.method-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.9rem;
}

.method-grid article,
.service-card,
.systems-grid article,
.mission-panel,
.airport-search,
.request-card {
  border: 1px solid rgba(7, 20, 27, 0.12);
  border-radius: var(--radius);
  box-shadow: 0 16px 52px rgba(0, 0, 0, 0.16);
}

.method-grid article {
  min-height: 178px;
  padding: 1rem;
  background:
    linear-gradient(90deg, rgba(69, 215, 255, 0.09), transparent),
    #ffffff;
}

.method-grid span {
  color: #236c75;
  font-family: "JetBrains Mono", monospace;
  font-size: 0.76rem;
  font-weight: 800;
}

.method-grid p {
  color: #435560;
  line-height: 1.62;
}

.hero-method .method-grid article {
  min-height: 148px;
  border-color: rgba(115, 240, 165, 0.28);
  background:
    linear-gradient(90deg, rgba(69, 215, 255, 0.08), transparent),
    rgba(3, 7, 11, 0.42);
  box-shadow: var(--shadow);
  backdrop-filter: blur(8px);
}

.hero-method .method-grid span,
.hero-method .method-grid h3,
.hero-method .method-grid p {
  color: #ffffff;
}

.hero-method .method-grid h3 {
  margin-bottom: 0.55rem;
}

.hero-method .method-grid p {
  font-size: 0.94rem;
  line-height: 1.5;
}

.overview-section .company-overview {
  width: 100%;
  max-width: none;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  backdrop-filter: none;
  box-shadow: none;
}

.overview-section .company-overview p {
  color: #03070b;
  font-size: clamp(1.08rem, 1.7vw, 1.45rem);
  line-height: 1.72;
}

.section-heading {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 1rem;
  margin-bottom: 2rem;
}

.service-intro {
  max-width: 760px;
  margin: 0.75rem 0 0;
  color: var(--muted);
  line-height: 1.65;
}

.service-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  padding: 0.34rem;
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.04);
}

.tab {
  padding: 0.68rem 0.84rem;
  border: 0;
  border-radius: 6px;
  color: var(--muted);
  background: transparent;
  cursor: pointer;
  font-weight: 800;
}

.tab.is-active {
  color: var(--black);
  background: var(--cyan-soft);
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.service-card {
  position: relative;
  min-height: 240px;
  overflow: hidden;
  padding: 1.15rem;
  background:
    linear-gradient(rgba(69, 215, 255, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(69, 215, 255, 0.04) 1px, transparent 1px),
    rgba(255, 255, 255, 0.055);
  background-size: 28px 28px, 28px 28px, auto;
  border-color: var(--line-soft);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: transform 160ms ease, border-color 160ms ease;
}

.service-card:hover {
  transform: translateY(-4px);
  border-color: rgba(69, 215, 255, 0.5);
}

.service-card.is-hidden {
  display: none;
}

.card-code {
  color: var(--amber);
}

.service-card p,
.mission-copy p,
.systems-grid p,
.request-layout p {
  color: var(--muted);
  line-height: 1.65;
}

.service-more {
  color: var(--cyan-soft);
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.service-more:hover {
  color: var(--mint);
}

.micro-route {
  position: relative;
  height: 28px;
  margin-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.micro-route span {
  position: absolute;
  top: -5px;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 14px rgba(69, 215, 255, 0.6);
}

.micro-route span:nth-child(1) {
  left: 0;
}

.micro-route span:nth-child(2) {
  left: 47%;
  background: var(--amber);
  box-shadow: 0 0 14px rgba(243, 181, 83, 0.6);
}

.micro-route span:nth-child(3) {
  right: 0;
  background: var(--mint);
  box-shadow: 0 0 14px rgba(115, 240, 165, 0.6);
}

.package-section {
  min-height: 100vh;
  display: grid;
  align-items: center;
  color: var(--black);
  background:
    linear-gradient(135deg, rgba(69, 215, 255, 0.08), transparent 34%),
    #ffffff;
}

.package-heading {
  max-width: 850px;
  margin-bottom: clamp(1.6rem, 4vw, 2.6rem);
}

.package-heading .section-kicker {
  color: #236c75;
}

.package-heading h2 {
  max-width: 820px;
  color: var(--black);
}

.package-heading p {
  max-width: 760px;
  color: #435560;
  font-size: 1.04rem;
  line-height: 1.7;
}

.package-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.package-card {
  display: flex;
  min-height: 0;
  flex-direction: column;
  padding: clamp(1rem, 2.2vw, 1.35rem);
  border: 1px solid rgba(7, 20, 27, 0.12);
  border-radius: var(--radius);
  background:
    linear-gradient(90deg, rgba(69, 215, 255, 0.08), transparent),
    #ffffff;
  box-shadow: 0 18px 58px rgba(0, 0, 0, 0.12);
}

.package-card.is-featured {
  border-color: rgba(35, 108, 117, 0.36);
  background:
    linear-gradient(135deg, rgba(115, 240, 165, 0.16), transparent 42%),
    linear-gradient(90deg, rgba(69, 215, 255, 0.1), transparent),
    #ffffff;
}

.package-code {
  color: #236c75;
  font-family: "JetBrains Mono", monospace;
  font-size: 0.74rem;
  font-weight: 900;
  text-transform: uppercase;
}

.package-card h3 {
  margin: 0.75rem 0 0.65rem;
  color: var(--black);
  font-size: clamp(1.6rem, 2.6vw, 2.35rem);
}

.package-card p {
  color: #435560;
  line-height: 1.62;
}

.package-card ul {
  display: grid;
  gap: 0.72rem;
  margin: 1rem 0 1.25rem;
  padding: 0;
  list-style: none;
}

.package-card li {
  position: relative;
  padding-left: 1.35rem;
  color: #1f3038;
  line-height: 1.48;
}

.package-card li::before {
  content: "";
  position: absolute;
  top: 0.55rem;
  left: 0;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #236c75;
  box-shadow: 0 0 0 4px rgba(69, 215, 255, 0.12);
}

.package-card .btn {
  width: 100%;
  margin-top: 1.35rem;
  border-color: rgba(35, 108, 117, 0.28);
  color: #07141b;
  background: #eef6f8;
}

.package-card .btn.primary {
  border-color: transparent;
  background: linear-gradient(135deg, var(--cyan-soft), var(--mint));
}

body.modal-open {
  overflow: hidden;
}

.service-modal {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: grid;
  place-items: center;
  padding: 1rem;
}

.service-modal[aria-hidden="true"] {
  display: none;
}

.service-modal-backdrop {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 24% 18%, rgba(69, 215, 255, 0.16), transparent 34%),
    rgba(0, 0, 0, 0.72);
  backdrop-filter: blur(12px);
}

.service-modal-panel {
  position: relative;
  width: min(820px, 100%);
  max-height: min(88vh, 860px);
  overflow: auto;
  padding: clamp(1rem, 3vw, 1.5rem);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(rgba(69, 215, 255, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(69, 215, 255, 0.045) 1px, transparent 1px),
    rgba(3, 7, 11, 0.96);
  background-size: 28px 28px, 28px 28px, auto;
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.54);
}

.modal-close {
  position: absolute;
  top: 0.9rem;
  right: 0.9rem;
  width: 34px;
  height: 34px;
  border: 1px solid var(--line-soft);
  border-radius: 50%;
  color: var(--text);
  background: rgba(255, 255, 255, 0.06);
  cursor: pointer;
  font-family: "JetBrains Mono", monospace;
  font-weight: 800;
}

.modal-close:hover {
  border-color: rgba(69, 215, 255, 0.48);
  color: var(--cyan-soft);
}

.modal-heading {
  max-width: 650px;
  margin-bottom: 1.25rem;
  padding-right: 2rem;
}

.modal-heading h2 {
  margin-bottom: 0.6rem;
  font-size: clamp(1.55rem, 3vw, 2.4rem);
}

.modal-heading p:last-child {
  color: var(--muted);
  line-height: 1.6;
}

.service-inquiry-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.service-inquiry-form .full-field,
.service-inquiry-form button,
.service-inquiry-form .form-status {
  grid-column: 1 / -1;
}

.service-choice-panel {
  padding: 0;
  margin: 0;
  border: 0;
}

.service-choice-panel[hidden] {
  display: none;
}

.modal-service-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.65rem;
}

.modal-service-grid .toggle {
  min-height: 42px;
}

.service-inquiry-form textarea {
  min-height: 130px;
}

.form-status {
  min-height: 1.2rem;
  margin: 0;
  color: var(--mint);
  font-family: "JetBrains Mono", monospace;
  font-size: 0.78rem;
  text-transform: uppercase;
}

.mission-section {
  background:
    linear-gradient(135deg, rgba(115, 240, 165, 0.08), transparent 34%),
    #061411;
}

.mission-layout,
.coverage-layout,
.vip-concierge-layout,
.request-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(330px, 1fr);
  gap: clamp(1.6rem, 5vw, 4rem);
  align-items: center;
}

.vector-board {
  display: grid;
  gap: 0.75rem;
  margin-top: 2rem;
}

.vector-board div {
  display: grid;
  grid-template-columns: 74px 1fr;
  align-items: center;
  min-height: 48px;
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.045);
}

.vector-board span {
  height: 100%;
  display: grid;
  place-items: center;
  color: var(--cyan-soft);
  border-right: 1px solid var(--line-soft);
  font-family: "JetBrains Mono", monospace;
  font-size: 0.72rem;
}

.vector-board strong {
  padding: 0 0.8rem;
}

.mission-panel,
.request-card {
  padding: clamp(1rem, 3vw, 1.5rem);
  border-color: var(--line);
  background:
    linear-gradient(rgba(69, 215, 255, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(69, 215, 255, 0.045) 1px, transparent 1px),
    rgba(7, 20, 27, 0.92);
  background-size: 24px 24px, 24px 24px, auto;
}

.request-modal-panel {
  width: min(620px, 100%);
}

.request-modal-form {
  border-color: var(--line-soft);
  box-shadow: none;
}

.request-modal-form .full-field,
.request-modal-form button,
.request-modal-form .form-status {
  grid-column: 1 / -1;
}

.panel-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.2rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--line-soft);
}

.panel-topline strong {
  color: var(--mint);
  font-family: "JetBrains Mono", monospace;
  font-size: 0.8rem;
}

label,
legend {
  color: #dff3f7;
  font-weight: 800;
}

label {
  display: grid;
  gap: 0.5rem;
}

input,
select,
textarea {
  width: 100%;
  min-height: 46px;
  padding: 0.76rem;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 6px;
  color: var(--text);
  background: rgba(0, 0, 0, 0.24);
  outline: none;
}

select {
  color: var(--text);
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--cyan);
  box-shadow: 0 0 0 3px rgba(69, 215, 255, 0.14);
}

.route-fields {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.8rem;
  margin: 1rem 0;
}

.range-label {
  margin-bottom: 1rem;
}

input[type="range"] {
  min-height: 28px;
  padding: 0;
  accent-color: var(--amber);
}

#urgencyLabel {
  color: var(--muted);
  font-family: "JetBrains Mono", monospace;
  font-size: 0.74rem;
  text-transform: uppercase;
}

fieldset {
  padding: 0;
  margin: 0;
  border: 0;
}

legend {
  margin-bottom: 0.75rem;
}

.toggle-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.65rem;
}

.toggle {
  position: relative;
  display: flex;
  align-items: center;
  gap: 0.65rem;
  min-height: 42px;
  padding: 0.65rem;
  border: 1px solid var(--line-soft);
  border-radius: 6px;
  color: #dff3f7;
  background: rgba(255, 255, 255, 0.045);
  font-size: 0.86rem;
  font-weight: 800;
}

.toggle input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.toggle span {
  width: 28px;
  height: 16px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
}

.toggle span::before {
  content: "";
  display: block;
  width: 10px;
  height: 10px;
  margin: 2px;
  border-radius: 50%;
  background: var(--muted);
  transition: transform 160ms ease, background 160ms ease;
}

.toggle input:checked + span {
  border-color: rgba(115, 240, 165, 0.66);
  background: rgba(115, 240, 165, 0.14);
}

.toggle input:checked + span::before {
  transform: translateX(12px);
  background: var(--mint);
}

.mission-output {
  margin-top: 1rem;
  padding: 1rem;
  border: 1px solid rgba(115, 240, 165, 0.3);
  border-radius: var(--radius);
  background: rgba(115, 240, 165, 0.08);
}

.mission-output small {
  color: var(--mint);
  font-family: "JetBrains Mono", monospace;
  text-transform: uppercase;
}

.mission-output p {
  margin: 0.4rem 0 0;
  color: #e8fff1;
  line-height: 1.55;
}

.coverage-section {
  color: var(--black);
  background: var(--paper);
}

.airport-search {
  padding: clamp(1rem, 3vw, 1.5rem);
  color: var(--black);
  background: #ffffff;
}

.airport-search p {
  color: #435560;
}

.airport-search input {
  color: var(--black);
  background: #f0f6f8;
  border-color: #c8d8de;
}

.search-box {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 0.6rem;
  margin: 1.2rem 0;
}

.search-box button {
  min-height: 46px;
  padding: 0 1rem;
  border: 0;
  border-radius: 6px;
  color: #021015;
  background: var(--cyan-soft);
  cursor: pointer;
  font-weight: 900;
}

.airport-result {
  display: grid;
  gap: 0.65rem;
  min-height: 156px;
  padding: 1rem;
  border: 1px solid #c8d8de;
  border-radius: var(--radius);
  color: #405461;
  background:
    linear-gradient(90deg, rgba(69, 215, 255, 0.1), transparent),
    #eef6f8;
}

.airport-result strong {
  color: var(--black);
  font-size: 1.35rem;
}

.vip-concierge-section {
  overflow: hidden;
  color: var(--text);
  background:
    radial-gradient(circle at 68% 42%, rgba(243, 181, 83, 0.2), transparent 34%),
    radial-gradient(circle at 28% 72%, rgba(69, 215, 255, 0.1), transparent 30%),
    linear-gradient(115deg, #050709 0%, #11100d 44%, #03070b 100%),
    #03070b;
}

.vip-concierge-section::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(rgba(243, 181, 83, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(69, 215, 255, 0.045) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.88), rgba(0, 0, 0, 0.38));
}

.vip-concierge-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  width: min(1320px, 100%);
}

.vip-copy {
  max-width: 680px;
}

.vip-copy .section-kicker {
  color: var(--amber);
}

.vip-copy h2 {
  margin-block: 0.75rem 1rem;
  max-width: 760px;
  font-size: clamp(2rem, 4vw, 4rem);
}

.vip-copy p {
  color: #c7d9de;
  line-height: 1.72;
}

.vip-features {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.vip-features li {
  padding-left: 1rem;
  border-left: 2px solid var(--accent, var(--cyan));
  color: #c7d9de;
  font-size: 0.9rem;
  line-height: 1.6;
}

.vip-feature-label {
  display: block;
  color: var(--text);
  font-family: "JetBrains Mono", monospace;
  font-weight: 700;
  font-size: 0.75rem;
  letter-spacing: 0;
  text-transform: uppercase;
  margin-bottom: 0.2rem;
  opacity: 0.72;
}

.vip-service-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem;
  margin: 1.4rem 0 1.5rem;
}

.vip-service-list article {
  min-height: 132px;
  padding: 0.95rem;
  border: 1px solid rgba(243, 181, 83, 0.22);
  border-radius: var(--radius);
  background:
    linear-gradient(90deg, rgba(243, 181, 83, 0.08), transparent),
    rgba(255, 255, 255, 0.045);
  box-shadow: var(--shadow);
}

.vip-service-list span {
  color: var(--amber);
  font-family: "JetBrains Mono", monospace;
  font-size: 0.72rem;
  font-weight: 800;
}

.vip-service-list strong,
.vip-service-list small {
  display: block;
}

.vip-service-list strong {
  margin: 0.42rem 0 0.38rem;
  color: var(--text);
  font-size: 1rem;
}

.vip-service-list small {
  color: var(--muted);
  line-height: 1.55;
}

.vip-visual {
  position: relative;
  min-height: min(78vh, 720px);
  overflow: hidden;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.vip-visual img {
  width: 100%;
  height: 100%;
  min-height: min(78vh, 720px);
  display: block;
  object-fit: cover;
  object-position: center;
  filter: saturate(1.08) contrast(1.04);
  mask-image:
    linear-gradient(90deg, transparent 0%, rgba(0, 0, 0, 0.92) 10%, #000 50%, rgba(0, 0, 0, 0.92) 90%, transparent 100%),
    linear-gradient(180deg, transparent 0%, #000 9%, #000 88%, transparent 100%);
  mask-composite: intersect;
}

.vip-visual-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 72% 38%, rgba(243, 181, 83, 0.08), transparent 36%),
    linear-gradient(180deg, rgba(3, 7, 11, 0.1), rgba(3, 7, 11, 0.2)),
    linear-gradient(90deg, rgba(3, 7, 11, 0.38), transparent 48%, rgba(3, 7, 11, 0.32));
}

.vip-status-card {
  position: absolute;
  left: 1rem;
  right: 1rem;
  bottom: 5.1rem;
  max-width: 520px;
  padding: 1rem;
  border: 1px solid rgba(243, 181, 83, 0.32);
  border-radius: var(--radius);
  background: rgba(3, 7, 11, 0.72);
  backdrop-filter: blur(14px);
}

.vip-status-card span,
.vip-route-strip span {
  color: var(--amber);
  font-family: "JetBrains Mono", monospace;
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
}

.vip-status-card strong,
.vip-status-card small {
  display: block;
}

.vip-status-card strong {
  margin: 0.35rem 0;
  color: var(--text);
  font-size: clamp(1.35rem, 2.4vw, 2rem);
}

.vip-status-card small {
  color: #c7d9de;
  line-height: 1.5;
}

.vip-route-strip {
  position: absolute;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.6rem;
}

.vip-route-strip span {
  min-height: 42px;
  display: grid;
  place-items: center;
  padding: 0.55rem;
  border: 1px solid rgba(69, 215, 255, 0.24);
  border-radius: 6px;
  color: var(--cyan-soft);
  background: rgba(3, 7, 11, 0.66);
  text-align: center;
}

.coverage-map {
  position: relative;
  min-height: 430px;
  overflow: hidden;
  border: 1px solid rgba(7, 20, 27, 0.16);
  border-radius: var(--radius);
  background:
    linear-gradient(rgba(69, 215, 255, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(69, 215, 255, 0.07) 1px, transparent 1px),
    #07141b;
  background-size: 36px 36px, 36px 36px, auto;
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.22);
}

.coverage-map::before {
  content: "";
  position: absolute;
  inset: 10%;
  border: 1px solid rgba(69, 215, 255, 0.28);
  border-radius: 50%;
  box-shadow: inset 0 0 80px rgba(69, 215, 255, 0.09);
}

.map-grid {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, transparent 49.8%, rgba(243, 181, 83, 0.18) 50%, transparent 50.2%),
    linear-gradient(transparent 49.8%, rgba(243, 181, 83, 0.12) 50%, transparent 50.2%);
}

.coverage-map svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  fill: none;
}

.coverage-map path {
  stroke: var(--amber);
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-dasharray: 7 11;
  filter: drop-shadow(0 0 8px rgba(243, 181, 83, 0.42));
  animation: routeDash 5s linear infinite;
}

@keyframes routeDash {
  to {
    stroke-dashoffset: -72;
  }
}

.pin {
  position: absolute;
  z-index: 2;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--mint);
  box-shadow: 0 0 0 8px rgba(115, 240, 165, 0.12), 0 0 18px var(--mint);
}

.pin::after {
  content: attr(data-label);
  position: absolute;
  left: 18px;
  top: -6px;
  color: var(--paper);
  font-family: "JetBrains Mono", monospace;
  font-size: 0.72rem;
}

.pin-delhi {
  left: 64%;
  top: 47%;
}

.pin-dubai {
  left: 58%;
  top: 46%;
}

.pin-london {
  left: 38%;
  top: 38%;
}

.pin-singapore {
  left: 73%;
  top: 61%;
}

.pin-newyork {
  left: 22%;
  top: 42%;
}

.systems-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.blog-card-link {
  display: block;
  color: inherit;
  text-decoration: none;
}

.systems-section {
  overflow: hidden;
  color: var(--black);
  background: #ffffff;
}

.systems-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("assets/ifs-logo.png") center / min(560px, 58vw) no-repeat;
  opacity: 0.25;
  pointer-events: none;
}

.systems-section .section-inner {
  position: relative;
  z-index: 1;
}

.systems-section .section-kicker {
  color: #236c75;
}

.systems-section h2 {
  color: var(--black);
}

.systems-grid article {
  min-height: 132px;
  padding: 1rem;
  border-color: rgba(7, 20, 27, 0.12);
  background:
    linear-gradient(135deg, rgba(69, 215, 255, 0.1), transparent 42%),
    #ffffff;
  box-shadow: 0 14px 42px rgba(0, 0, 0, 0.1);
}

.blog-card-link article {
  height: 100%;
  transition: border-color 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

.blog-card-link:hover article {
  border-color: rgba(35, 108, 117, 0.36);
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.14);
  transform: translateY(-2px);
}

.systems-grid span {
  color: #236c75;
}

.systems-grid h3 {
  color: var(--black);
  font-size: clamp(1.05rem, 1.5vw, 1.32rem);
  line-height: 1.18;
}

.systems-grid p {
  color: #435560;
}

.request-section {
  background:
    linear-gradient(rgba(69, 215, 255, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(69, 215, 255, 0.035) 1px, transparent 1px),
    #03070b;
  background-size: 64px 64px, 64px 64px, auto;
}

.request-section .request-layout {
  display: block;
}

.consultancy-copy {
  position: relative;
  isolation: isolate;
  min-height: 520px;
  display: grid;
  align-content: center;
  gap: 1.15rem;
  max-width: 1180px;
}

.consultancy-copy h2,
.consultancy-copy p,
.consultancy-points,
.consultancy-pillars,
.contact-actions,
.contact-email {
  position: relative;
  z-index: 2;
}

.request-section .section-kicker {
  color: var(--amber);
}

.consultancy-copy h2 {
  max-width: 720px;
  margin-block: 0.5rem 1rem;
  font-size: clamp(1.4rem, 3vw, 2rem);
  line-height: 1.12;
}

.request-section p {
  max-width: 780px;
  font-size: clamp(1rem, 1.3vw, 1.14rem);
}

.consultancy-points {
  display: grid;
  gap: 0.82rem;
  max-width: 820px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.consultancy-points li {
  position: relative;
  padding-left: 1.2rem;
  color: var(--muted);
  font-size: clamp(0.98rem, 1.18vw, 1.08rem);
  line-height: 1.58;
}

.consultancy-points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.7em;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--mint);
  box-shadow: 0 0 18px rgba(112, 255, 172, 0.54);
}

.consultancy-pillars {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0 2rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
  max-width: 920px;
}

.consultancy-pillars li {
  padding: 1rem 1.25rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 6px;
  color: var(--muted);
  background: rgba(5, 16, 22, 0.52);
  font-size: 0.875rem;
  line-height: 1.6;
  backdrop-filter: blur(12px);
}

.pillar-label {
  display: block;
  color: var(--text);
  font-family: "JetBrains Mono", monospace;
  font-weight: 700;
  font-size: 0.72rem;
  letter-spacing: 0;
  text-transform: uppercase;
  margin-bottom: 0.3rem;
  opacity: 0.66;
}

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1.5rem;
  margin-top: 0.5rem;
}

.contact-email {
  display: inline-flex;
  width: fit-content;
  color: var(--cyan);
  font-family: "JetBrains Mono", monospace;
  font-size: 0.92rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: none;
  border-bottom: 1px solid rgba(69, 215, 255, 0.48);
}

.contact-email:hover {
  color: var(--amber);
  border-color: rgba(243, 181, 83, 0.68);
}

.contact-request-btn {
  min-height: 42px;
  padding: 0.62rem 0.92rem;
  font-size: 0.78rem;
}

.consultancy-watermark-map {
  position: absolute;
  inset: 0;
  z-index: 1;
  overflow: hidden;
  border-radius: var(--radius);
  background-image: url("assets/world-map-watermark.svg?v=2");
  background-position: center;
  background-size: min(1040px, 92vw) auto;
  background-repeat: no-repeat;
  opacity: 0.25;
  pointer-events: none;
}

.request-card {
  display: grid;
  gap: 1rem;
}

textarea {
  min-height: 118px;
  resize: vertical;
}

.site-footer {
  display: grid;
  grid-template-columns: minmax(260px, 1fr) auto auto;
  align-items: center;
  gap: 1rem 1.5rem;
  padding: 1.35rem clamp(1rem, 4vw, 3rem);
  border-top: 1px solid var(--line-soft);
  color: var(--muted);
  background: #03070b;
}

.site-footer .footer-brand {
  color: inherit;
}

.site-footer .brand-logo {
  width: 64px;
  height: 64px;
}

.site-footer .brand-logo img {
  width: 100%;
  height: 100%;
  transform: scale(1.42);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem 1rem;
  font-family: "JetBrains Mono", monospace;
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
}

.footer-links a,
.footer-copy {
  color: var(--muted);
}

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

.footer-copy {
  margin: 0;
  justify-self: end;
  font-size: 0.84rem;
}

.whatsapp-float {
  position: fixed;
  right: clamp(1rem, 2.6vw, 1.8rem);
  bottom: clamp(1rem, 2.6vw, 1.8rem);
  z-index: 60;
  display: grid;
  place-items: center;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  color: #03120c;
  background: linear-gradient(135deg, #70ffac, #38d77a);
  box-shadow: 0 18px 48px rgba(56, 215, 122, 0.28), 0 0 0 1px rgba(255, 255, 255, 0.18) inset;
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.whatsapp-float:hover {
  transform: translateY(-2px);
  box-shadow: 0 22px 54px rgba(56, 215, 122, 0.36), 0 0 0 1px rgba(255, 255, 255, 0.26) inset;
}

.whatsapp-float svg {
  width: 31px;
  height: 31px;
  fill: currentColor;
}

body.modal-open .whatsapp-float {
  opacity: 0;
  pointer-events: none;
}

.legal-page {
  min-height: 100vh;
  display: grid;
  align-content: start;
  gap: clamp(2rem, 5vw, 4rem);
  padding: clamp(1rem, 4vw, 3rem);
  background:
    radial-gradient(circle at 78% 18%, rgba(69, 215, 255, 0.16), transparent 32%),
    linear-gradient(rgba(69, 215, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(69, 215, 255, 0.03) 1px, transparent 1px),
    #03070b;
  background-size: auto, 64px 64px, 64px 64px, auto;
}

.legal-brand {
  width: fit-content;
}

.legal-card {
  width: min(820px, 100%);
  padding: clamp(1.25rem, 4vw, 2.5rem);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(5, 16, 22, 0.84);
  box-shadow: var(--shadow);
}

.legal-card h1 {
  margin-bottom: 1.2rem;
  font-size: clamp(2.4rem, 7vw, 5rem);
}

.legal-card p {
  color: var(--muted);
  line-height: 1.7;
}

.legal-card .btn {
  margin-top: 1.4rem;
}

.legal-policy {
  width: min(1080px, 100%);
}

.legal-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin: 0 0 2rem;
}

.legal-meta span {
  border: 1px solid rgba(143, 180, 190, 0.18);
  border-radius: 6px;
  padding: 0.65rem 0.8rem;
  color: var(--muted);
  background: rgba(255, 255, 255, 0.035);
}

.legal-policy section {
  padding: 1.45rem 0;
  border-top: 1px solid rgba(143, 180, 190, 0.14);
}

.legal-policy h2 {
  margin: 0 0 0.9rem;
  color: var(--ice);
  font-size: clamp(1.2rem, 2.4vw, 1.75rem);
  line-height: 1.25;
}

.legal-policy h3 {
  margin: 1.1rem 0 0.45rem;
  color: var(--mint);
  font-size: 0.92rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.legal-policy ul {
  display: grid;
  gap: 0.45rem;
  margin: 0.75rem 0 1rem;
  padding-left: 1.2rem;
  color: var(--muted);
}

.legal-policy li {
  line-height: 1.6;
}

.legal-policy a {
  color: var(--cyan-soft);
}

.legal-closing {
  font-weight: 800;
  color: var(--ice) !important;
}

.legal-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
}

.blog-embed-page {
  min-height: 100vh;
  padding: clamp(1rem, 4vw, 3rem);
  background:
    radial-gradient(circle at 72% 12%, rgba(69, 215, 255, 0.16), transparent 32%),
    linear-gradient(rgba(69, 215, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(69, 215, 255, 0.03) 1px, transparent 1px),
    #03070b;
  background-size: auto, 64px 64px, 64px 64px, auto;
}

.blog-embed-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: clamp(1.5rem, 4vw, 2.5rem);
}

.blog-embed-shell {
  display: grid;
  gap: 1rem;
}

.blog-embed-title {
  max-width: 760px;
}

.blog-embed-title h1 {
  font-size: clamp(2.2rem, 6vw, 5rem);
}

.blog-embed-title p:not(.section-kicker) {
  color: var(--muted);
}

.blog-embed-frame {
  width: 100%;
  min-height: 78vh;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #ffffff;
  box-shadow: var(--shadow);
}

@media (max-width: 980px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  .nav-links {
    display: none;
  }

  .hero {
    min-height: auto;
    padding-top: 6.8rem;
  }

  .world-clock-panel {
    position: relative;
    right: auto;
    width: min(420px, 100%);
    margin: 0 0 1.5rem;
  }

  .hero-copy {
    width: auto;
    max-width: 900px;
    padding-top: 0;
  }

  .hero-shell,
  .overview-layout,
  .mission-layout,
  .coverage-layout,
  .vip-concierge-layout,
  .request-layout {
    grid-template-columns: 1fr;
  }

  .vip-visual {
    order: -1;
  }

  .avionics-console {
    max-width: 620px;
  }

  .service-grid,
  .systems-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .section-heading {
    align-items: start;
    flex-direction: column;
  }

  .site-footer {
    grid-template-columns: 1fr;
    justify-items: start;
  }

  .footer-links {
    justify-content: flex-start;
  }

  .footer-copy {
    justify-self: start;
  }
}

@media (max-width: 680px) {
  .site-header {
    padding: 0.72rem 1rem;
  }

  .header-cta {
    display: none;
  }

  .brand-logo {
    width: 52px;
    height: 52px;
  }

  .brand strong {
    max-width: 190px;
    white-space: normal;
  }

  .hero {
    padding-inline: 1rem;
  }

  h1 {
    font-size: clamp(2.9rem, 16vw, 4.1rem);
  }

  .hero-actions,
  .telemetry-grid {
    flex-direction: column;
  }

  .timezone-select-row {
    grid-template-columns: 1fr;
  }

  .timezone-converter select {
    width: 100%;
  }

  .telemetry-grid article,
  .btn {
    width: 100%;
  }

  .readout-grid,
  .service-grid,
  .package-grid,
  .systems-grid,
  .method-grid,
  .vip-service-list,
  .route-fields,
  .toggle-grid,
  .modal-service-grid,
  .service-inquiry-form {
    grid-template-columns: 1fr;
  }

  .search-box {
    grid-template-columns: 1fr;
  }

  .coverage-map {
    min-height: 330px;
  }

  .vip-visual,
  .vip-visual img {
    min-height: 390px;
  }

  .vip-status-card {
    bottom: 6.8rem;
  }

  .vip-route-strip {
    grid-template-columns: 1fr;
  }

  .site-footer {
    align-items: start;
  }

  .consultancy-copy h2 {
    font-size: clamp(1.4rem, 9vw, 2rem);
  }

  .consultancy-pillars {
    grid-template-columns: 1fr;
  }

  .contact-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .contact-email,
  .contact-request-btn {
    width: 100%;
  }

  .contact-email {
    justify-content: center;
    padding-bottom: 0.18rem;
    text-align: center;
  }

  .whatsapp-float {
    right: 1rem;
    bottom: 1rem;
    width: 52px;
    height: 52px;
  }
}


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