/* ═══════════════════════════════════════════════════════════════════
   ASTAA IT & Solutions — core design system + components
   Light premium theme. Tokens first, then base, then components
   in the same order they appear in index.html.
   ═══════════════════════════════════════════════════════════════════ */

/* ───────── 1. TOKENS ───────── */
:root {
  /* ink & text */
  --ink: #0b1b30;
  --ink-soft: #16304f;
  --body: #4e617c;
  --muted: #7c8ca4;

  /* surfaces */
  --white: #ffffff;
  --page: #f7fafe;
  --sky: #edf3ff;
  --sand: #fdf5e9;
  --line: #e2e9f3;
  --line-2: #eef3f9;

  /* brand */
  --brand: #1552c9;
  --brand-2: #2e7bf0;
  --brand-deep: #0a3a72;
  --brand-ink: #08284f;
  --brand-tint: rgba(21, 82, 201, 0.08);

  /* accents */
  --gold: #c4881a;
  --gold-2: #e3a93f;
  --gold-tint: rgba(196, 136, 26, 0.1);
  --green: #0f8a5f;
  --green-tint: rgba(15, 138, 95, 0.1);
  --red: #d64545;

  /* radii */
  --r-xs: 8px;
  --r-sm: 12px;
  --r: 16px;
  --r-lg: 22px;
  --r-xl: 30px;
  --r-full: 999px;

  /* elevation — layered, low-opacity, blue-tinted */
  --sh-xs: 0 1px 2px rgba(11, 27, 48, 0.06);
  --sh-sm: 0 2px 4px rgba(11, 27, 48, 0.05), 0 1px 2px rgba(11, 27, 48, 0.04);
  --sh-md: 0 10px 20px -6px rgba(11, 27, 48, 0.09), 0 4px 8px -4px rgba(11, 27, 48, 0.05);
  --sh-lg: 0 26px 50px -14px rgba(11, 27, 48, 0.16), 0 10px 18px -10px rgba(11, 27, 48, 0.07);
  --sh-xl: 0 44px 86px -22px rgba(11, 27, 48, 0.24), 0 14px 28px -14px rgba(11, 27, 48, 0.1);
  --sh-brand: 0 16px 34px -10px rgba(21, 82, 201, 0.42);
  --sh-gold: 0 16px 34px -10px rgba(196, 136, 26, 0.36);

  /* motion */
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-io: cubic-bezier(0.65, 0, 0.35, 1);
  --t-fast: 0.18s var(--ease);
  --t: 0.34s var(--ease);
  --t-slow: 0.6s var(--ease);

  /* layout */
  --wrap: 1200px;
  --gut: 2rem;
  --nav-h: 74px;
}

/* ───────── 2. RESET & BASE ───────── */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--nav-h) + 24px);
  -webkit-text-size-adjust: 100%;
}

body {
  background: var(--page);
  color: var(--body);
  font-family: 'Plus Jakarta Sans', system-ui, -apple-system, 'Segoe UI', sans-serif;
  font-size: 1rem;
  line-height: 1.68;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

ul,
ol {
  list-style: none;
}

img,
svg,
canvas {
  display: block;
  max-width: 100%;
}

img {
  height: auto;
}

button,
input,
select,
textarea {
  font: inherit;
  color: inherit;
}

button {
  border: 0;
  background: none;
  cursor: pointer;
}

::selection {
  background: rgba(21, 82, 201, 0.16);
  color: var(--ink);
}

/* sprite is definitions only */
.sprite {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}

/* generic inline icon */
.ic {
  width: 1.15em;
  height: 1.15em;
  flex: none;
  fill: none;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 10000;
  padding: 0.75rem 1.25rem;
  background: var(--ink);
  color: #fff;
  border-radius: 0 0 var(--r-xs) 0;
}

.skip-link:focus {
  left: 0;
}

:focus-visible {
  outline: 2px solid var(--brand-2);
  outline-offset: 3px;
  border-radius: 4px;
}

/* scrollbar */
::-webkit-scrollbar {
  width: 10px;
  height: 10px;
}

::-webkit-scrollbar-track {
  background: var(--line-2);
}

::-webkit-scrollbar-thumb {
  background: #c3d0e2;
  border-radius: 99px;
  border: 2px solid var(--line-2);
}

::-webkit-scrollbar-thumb:hover {
  background: #a8bad2;
}

/* ───────── 3. TYPOGRAPHY ───────── */
h1,
h2,
h3,
h4,
h5 {
  font-family: 'Outfit', system-ui, sans-serif;
  color: var(--ink);
  line-height: 1.14;
  font-weight: 700;
  letter-spacing: -0.022em;
  text-wrap: balance;
}

/* the editorial serif accent — used on one word per heading */
h1 em,
h2 em,
h3 em,
.serif {
  font-family: 'Instrument Serif', Georgia, serif;
  font-style: italic;
  font-weight: 400;
  letter-spacing: -0.005em;
  color: var(--brand);
}

p {
  text-wrap: pretty;
}

.container {
  width: 100%;
  max-width: var(--wrap);
  margin-inline: auto;
  padding-inline: var(--gut);
}

.section {
  position: relative;
  padding: clamp(3rem, 5vw, 4.75rem) 0;
}

.section-head {
  max-width: 720px;
  margin: 0 auto clamp(1.75rem, 3vw, 2.75rem);
  text-align: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1.1rem;
  padding: 0.4rem 0.95rem;
  border: 1px solid rgba(21, 82, 201, 0.18);
  border-radius: var(--r-full);
  background: linear-gradient(180deg, #fff, var(--sky));
  box-shadow: var(--sh-xs);
  color: var(--brand);
  font-family: 'Outfit', sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.eyebrow.light {
  border-color: rgba(255, 255, 255, 0.34);
  background: rgba(255, 255, 255, 0.14);
  color: #fff;
  backdrop-filter: blur(8px);
  box-shadow: none;
}

.section-title {
  font-size: clamp(2rem, 4.1vw, 3.1rem);
  margin-bottom: 1.1rem;
}

.section-lede {
  font-size: clamp(1rem, 1.4vw, 1.115rem);
  color: var(--body);
  max-width: 620px;
  margin-inline: auto;
}

/* ───────── 4. BUTTONS ───────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  padding: 0.78rem 1.5rem;
  border: 1px solid transparent;
  border-radius: var(--r-full);
  font-family: 'Outfit', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  line-height: 1.2;
  white-space: nowrap;
  cursor: pointer;
  transition: transform var(--t-fast), box-shadow var(--t), background var(--t), border-color var(--t), color var(--t);
}

.btn .ic {
  width: 1.05em;
  height: 1.05em;
  transition: transform var(--t);
}

.btn:hover .ic {
  transform: translateX(3px);
}

.btn-sm {
  padding: 0.6rem 1.15rem;
  font-size: 0.875rem;
}

.btn-lg {
  padding: 0.95rem 1.9rem;
  font-size: 1.02rem;
}

.btn.full {
  width: 100%;
}

.btn-primary {
  background: linear-gradient(135deg, var(--brand-deep) 0%, var(--brand) 46%, var(--brand-2) 100%);
  color: #fff;
  box-shadow: var(--sh-brand);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 22px 44px -12px rgba(21, 82, 201, 0.5);
}

.btn-primary:active {
  transform: translateY(0);
}

.btn-outline {
  background: var(--white);
  border-color: var(--line);
  color: var(--ink);
  box-shadow: var(--sh-sm);
}

.btn-outline:hover {
  border-color: rgba(21, 82, 201, 0.35);
  color: var(--brand);
  transform: translateY(-2px);
  box-shadow: var(--sh-md);
}

.btn-light {
  background: #fff;
  color: var(--brand-ink);
  box-shadow: 0 18px 40px -14px rgba(0, 0, 0, 0.5);
}

.btn-light:hover {
  transform: translateY(-2px);
  box-shadow: 0 26px 52px -14px rgba(0, 0, 0, 0.55);
}

.btn-glass {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.4);
  color: #fff;
  backdrop-filter: blur(12px);
}

.btn-glass:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
}

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 1.6rem;
  color: var(--brand);
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  transition: gap var(--t), color var(--t);
}

.link-arrow .ic {
  width: 1.05em;
  height: 1.05em;
}

.link-arrow:hover {
  gap: 0.85rem;
  color: var(--brand-deep);
}

/* pills & chips */
.pill {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.44rem 1rem;
  border: 1px solid var(--line);
  border-radius: var(--r-full);
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(10px);
  box-shadow: var(--sh-xs);
  color: var(--ink-soft);
  font-family: 'Outfit', sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.01em;
}

.pill .dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 4px var(--green-tint);
}

.chip {
  display: inline-flex;
  align-items: center;
  padding: 0.18rem 0.6rem;
  border-radius: var(--r-full);
  font-size: 0.72rem;
  font-weight: 700;
  font-family: 'Outfit', sans-serif;
}

.chip.ok {
  background: var(--green-tint);
  color: var(--green);
}

.chip.warn {
  background: var(--gold-tint);
  color: var(--gold);
}

.trend {
  font-family: 'Outfit', sans-serif;
  font-size: 0.74rem;
  font-weight: 700;
  padding: 0.12rem 0.45rem;
  border-radius: var(--r-xs);
}

.trend.up {
  color: var(--green);
  background: var(--green-tint);
}

.trend.down {
  color: var(--brand);
  background: var(--brand-tint);
}

.trend.flat {
  color: var(--muted);
  background: var(--line-2);
}

/* ───────── 5. SCROLL PROGRESS ───────── */
.scroll-progress {
  position: fixed;
  inset: 0 auto auto 0;
  z-index: 1200;
  width: 100%;
  height: 3px;
  transform: scaleX(0);
  transform-origin: 0 50%;
  background: linear-gradient(90deg, var(--brand-deep), var(--brand-2), var(--gold));
}

/* ───────── 6. TOP BAR ───────── */
.topbar {
  background: var(--brand-ink);
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.8rem;
}

.topbar-inner {
  max-width: var(--wrap);
  margin-inline: auto;
  padding: 0.5rem var(--gut);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.topbar-left,
.topbar-right {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  min-width: 0;
}

.topbar-item {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  white-space: nowrap;
  transition: color var(--t-fast);
}

.topbar-item .ic {
  width: 0.95rem;
  height: 0.95rem;
  opacity: 0.7;
}

a.topbar-item:hover {
  color: #fff;
}

/* ───────── 7. NAVBAR ───────── */
.navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(247, 250, 254, 0.72);
  backdrop-filter: blur(18px) saturate(150%);
  border-bottom: 1px solid transparent;
  transition: background var(--t), border-color var(--t), box-shadow var(--t);
}

.navbar.is-stuck {
  background: rgba(255, 255, 255, 0.88);
  border-bottom-color: var(--line);
  box-shadow: 0 10px 30px -18px rgba(11, 27, 48, 0.4);
}

.nav-inner {
  max-width: var(--wrap);
  margin-inline: auto;
  padding: 0 var(--gut);
  height: var(--nav-h);
  display: flex;
  align-items: center;
  gap: 1.75rem;
}

.nav-logo {
  flex: none;
  display: inline-flex;
  align-items: center;
}

.nav-logo .logo-img {
  height: 40px;
  width: auto;
  transition: transform var(--t);
}

.nav-logo:hover .logo-img {
  transform: scale(1.04);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  margin-left: auto;
}

.nav-links a {
  position: relative;
  padding: 0.5rem 0.85rem;
  border-radius: var(--r-xs);
  color: var(--ink-soft);
  font-family: 'Outfit', sans-serif;
  font-size: 0.925rem;
  font-weight: 500;
  transition: color var(--t-fast), background var(--t-fast);
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0.85rem;
  right: 0.85rem;
  bottom: 0.3rem;
  height: 2px;
  border-radius: 2px;
  background: var(--brand);
  transform: scaleX(0);
  transform-origin: 50%;
  transition: transform var(--t);
}

.nav-links a:hover {
  color: var(--brand);
}

.nav-links a:hover::after,
.nav-links a.is-active::after {
  transform: scaleX(1);
}

.nav-links a.is-active {
  color: var(--brand);
  font-weight: 600;
}

.nav-actions {
  flex: none;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.nav-call {
  display: none;
  place-items: center;
  width: 40px;
  height: 40px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: #fff;
  color: var(--brand);
  box-shadow: var(--sh-xs);
}

.nav-call .ic {
  width: 1.05rem;
  height: 1.05rem;
}

/* hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 0 10px;
  border: 1px solid var(--line);
  border-radius: var(--r-xs);
  background: #fff;
  box-shadow: var(--sh-xs);
}

.nav-toggle span {
  display: block;
  height: 2px;
  width: 100%;
  border-radius: 2px;
  background: var(--ink);
  transition: transform var(--t), opacity var(--t-fast);
}

.nav-toggle.is-open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle.is-open span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.is-open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ───────── 8. FULL-BLEED PHOTO SECTIONS (hero + bands) ───────── */
/* Shared machinery: a cover image, a scrim that keeps text legible, and a
   faint grain so the large flat gradients don't band on cheap panels. */
.sec--photo {
  position: relative;
  isolation: isolate;
  overflow: hidden;
}

/* taller than the section so the parallax shift never exposes an edge */
.sec-bg {
  position: absolute;
  inset: -8% 0;
  z-index: -3;
  width: 100%;
  height: 116%;
  object-fit: cover;
  will-change: transform;
}

.sec-scrim {
  position: absolute;
  inset: 0;
  z-index: -2;
}

.sec-grain {
  position: absolute;
  inset: 0;
  z-index: -1;
  opacity: 0.45;
  pointer-events: none;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3'/%3E%3C/filter%3E%3Crect width='140' height='140' filter='url(%23n)' opacity='0.32'/%3E%3C/svg%3E");
}

.scrim-hero {
  background:
    linear-gradient(96deg, rgba(4, 15, 30, 0.95) 0%, rgba(5, 22, 42, 0.86) 38%, rgba(6, 30, 58, 0.5) 70%, rgba(8, 40, 74, 0.4) 100%),
    linear-gradient(180deg, rgba(4, 14, 28, 0.6) 0%, transparent 26%, rgba(4, 14, 28, 0.55) 100%);
}

.scrim-mosque {
  background:
    linear-gradient(100deg, rgba(6, 26, 48, 0.94) 0%, rgba(6, 26, 48, 0.8) 44%, rgba(6, 26, 48, 0.24) 100%);
}

.scrim-cta {
  background:
    radial-gradient(74% 62% at 50% 48%, rgba(4, 18, 36, 0.36), transparent 72%),
    linear-gradient(180deg, rgba(6, 26, 48, 0.52) 0%, rgba(8, 40, 79, 0.74) 100%);
}

/* ───────── HERO ───────── */
.hero {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: min(94vh, 880px);
  padding: clamp(3rem, 6vw, 5rem) 0 0;
}

.hero-inner {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: var(--wrap);
  margin-inline: auto;
  padding-inline: var(--gut);
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(0, 1fr);
  align-items: center;
  gap: clamp(1.5rem, 4vw, 3.5rem);
}

.hero-title {
  margin: 1.15rem 0 1rem;
  color: #fff;
  font-size: clamp(2.6rem, 5.6vw, 4.6rem);
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 1.02;
  text-shadow: 0 4px 34px rgba(2, 10, 22, 0.55);
}

.hero-title em {
  color: var(--gold-2);
  font-size: 1.06em;
  padding-right: 0.06em;
}

.hero-lede {
  max-width: 33rem;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(1.02rem, 1.35vw, 1.14rem);
  text-shadow: 0 2px 18px rgba(2, 10, 22, 0.5);
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin: 1.75rem 0 1.9rem;
}

.hero-trust {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.7rem 1.1rem;
}

.hero-trust-label {
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero-trust-logos {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}

.hero-trust-logos span {
  padding: 0.32rem 0.78rem;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: var(--r-xs);
  background: rgba(255, 255, 255, 0.09);
  backdrop-filter: blur(8px);
  color: rgba(255, 255, 255, 0.88);
  font-family: 'Outfit', sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  transition: transform var(--t), background var(--t), border-color var(--t);
}

.hero-trust-logos span:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.17);
  border-color: rgba(255, 255, 255, 0.4);
}

/* the product cards now sit directly on the photograph */
.hero-visual {
  position: relative;
  min-height: 420px;
}

.float-card {
  position: absolute;
  z-index: 3;
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: var(--r);
  background: rgba(255, 255, 255, 0.93);
  backdrop-filter: blur(22px) saturate(170%);
  box-shadow: 0 30px 70px -18px rgba(2, 10, 22, 0.7);
  will-change: transform;
}

.float-capture {
  right: 3%;
  top: 1%;
  width: 282px;
  padding: 0.95rem 1rem;
}

.float-revenue {
  left: 0;
  bottom: 17%;
  width: 196px;
  padding: 0.85rem 0.95rem;
}

.float-reco {
  right: 11%;
  bottom: 1%;
  width: 226px;
  padding: 0.75rem 0.9rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.fc-head {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.fc-badge {
  display: grid;
  place-items: center;
  flex: none;
  width: 32px;
  height: 32px;
  border-radius: 10px;
  background: linear-gradient(140deg, var(--brand), var(--brand-2));
  color: #fff;
  box-shadow: 0 8px 18px -6px rgba(21, 82, 201, 0.6);
}

.fc-badge.green {
  background: linear-gradient(140deg, #0f8a5f, #23b37f);
  box-shadow: 0 8px 18px -6px rgba(15, 138, 95, 0.55);
}

.fc-badge .ic {
  width: 1rem;
  height: 1rem;
}

.fc-head strong {
  display: block;
  color: var(--ink);
  font-family: 'Outfit', sans-serif;
  font-size: 0.85rem;
  line-height: 1.25;
}

.fc-head small,
.float-reco small {
  display: block;
  color: var(--muted);
  font-size: 0.72rem;
  line-height: 1.4;
}

.fc-live {
  margin-left: auto;
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  color: var(--red);
  font-family: 'Outfit', sans-serif;
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.fc-live i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--red);
}

.fc-route {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin: 0.85rem 0 0.7rem;
}

.fc-port b {
  display: block;
  color: var(--ink);
  font-family: 'Outfit', sans-serif;
  font-size: 1.02rem;
  line-height: 1;
}

.fc-port small {
  color: var(--muted);
  font-size: 0.66rem;
}

.fc-path {
  position: relative;
  flex: 1;
  height: 16px;
}

.fc-path::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  border-top: 1.5px dashed #c6d4e8;
}

.fc-plane {
  position: absolute;
  top: 50%;
  left: 0;
  translate: -50% -50%;
  display: grid;
  place-items: center;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #fff;
  color: var(--brand);
  box-shadow: var(--sh-sm);
}

.fc-plane .ic {
  width: 0.75rem;
  height: 0.75rem;
}

.fc-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.4rem;
  padding-top: 0.6rem;
  border-top: 1px solid var(--line-2);
  color: var(--muted);
  font-size: 0.68rem;
}

.fc-meta b {
  color: var(--ink-soft);
  font-weight: 700;
}

.fc-meta .ok {
  color: var(--green);
  font-weight: 700;
}

.float-revenue>small {
  display: block;
  color: var(--muted);
  font-size: 0.7rem;
  margin-bottom: 0.2rem;
}

.fr-row {
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
}

.fr-row b {
  color: var(--ink);
  font-family: 'Outfit', sans-serif;
  font-size: 1.5rem;
  line-height: 1;
}

.fr-bars {
  display: flex;
  align-items: flex-end;
  gap: 4px;
  height: 40px;
  margin-top: 0.7rem;
}

.fr-bars i {
  flex: 1;
  height: var(--h);
  border-radius: 3px 3px 1px 1px;
  background: linear-gradient(180deg, var(--brand-2), var(--brand));
  opacity: 0.85;
}

.fr-bars i:last-child {
  background: linear-gradient(180deg, var(--gold-2), var(--gold));
  opacity: 1;
}

.float-reco strong {
  display: block;
  color: var(--ink);
  font-family: 'Outfit', sans-serif;
  font-size: 0.82rem;
  line-height: 1.25;
}

/* stats sit on the photo, so they get their own glass slab */
.hero-stats {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: var(--wrap);
  margin: clamp(1.75rem, 3.5vw, 3rem) auto 0;
  padding: clamp(1.1rem, 2vw, 1.6rem) clamp(1rem, 3vw, 2.5rem);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-bottom: 0;
  border-radius: var(--r-lg) var(--r-lg) 0 0;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(20px) saturate(150%);
  box-shadow: 0 -1px 0 rgba(255, 255, 255, 0.14) inset;
}

.hero-stats .stat {
  text-align: center;
  position: relative;
}

.hero-stats .stat+.stat::before {
  content: "";
  position: absolute;
  left: -0.5rem;
  top: 12%;
  bottom: 12%;
  border-left: 1px solid rgba(255, 255, 255, 0.16);
}

.stat-num {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(1.7rem, 3.2vw, 2.5rem);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.03em;
  background: linear-gradient(140deg, #ffffff 20%, var(--gold-2));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.stat-label {
  margin-top: 0.35rem;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.8rem;
  font-weight: 500;
}

/* ───────── 9. MARQUEE ───────── */
.marquee-wrap {
  border-block: 1px solid var(--line);
  background: var(--white);
  overflow: hidden;
}

.marquee {
  padding: 0.9rem 0;
  mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent);
}

.marquee-track {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  width: max-content;
}

.marquee-track span {
  color: var(--ink-soft);
  font-family: 'Outfit', sans-serif;
  font-size: 1.05rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  opacity: 0.62;
}

.marquee-track i {
  color: var(--gold);
  font-size: 0.6rem;
  font-style: normal;
  opacity: 0.5;
}

/* ───────── 10. ABOUT — pillars ───────── */
.about {
  background:
    linear-gradient(180deg, var(--white) 0%, var(--page) 40%);
}

.pillars {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}

.pillar {
  position: relative;
  padding: 1.9rem 1.6rem;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  background: var(--white);
  box-shadow: var(--sh-sm);
  overflow: hidden;
  transition: transform var(--t), box-shadow var(--t), border-color var(--t);
}

.pillar::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 3px;
  background: linear-gradient(90deg, var(--brand-deep), var(--brand-2), var(--gold));
  transform: scaleX(0);
  transform-origin: 0 50%;
  transition: transform var(--t-slow);
}

.pillar:hover {
  transform: translateY(-6px);
  border-color: rgba(21, 82, 201, 0.22);
  box-shadow: var(--sh-lg);
}

.pillar:hover::before {
  transform: scaleX(1);
}

.pillar-icon {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  margin-bottom: 1.2rem;
  border-radius: 15px;
  background: linear-gradient(150deg, var(--sky), #fff);
  border: 1px solid rgba(21, 82, 201, 0.14);
  color: var(--brand);
  box-shadow: var(--sh-xs);
  transition: transform var(--t), background var(--t), color var(--t);
}

.pillar-icon .ic {
  width: 1.5rem;
  height: 1.5rem;
}

.pillar:hover .pillar-icon {
  transform: scale(1.06) rotate(-4deg);
  background: linear-gradient(150deg, var(--brand), var(--brand-2));
  color: #fff;
}

.pillar h3 {
  font-size: 1.06rem;
  margin-bottom: 0.55rem;
}

.pillar p {
  font-size: 0.92rem;
  color: var(--body);
}

/* ───────── 11. SPLIT (photo + copy) ───────── */
.split {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr);
  align-items: center;
  gap: clamp(2rem, 4.5vw, 4rem);
  margin-top: clamp(1.75rem, 3vw, 2.75rem);
  padding: clamp(1rem, 1.6vw, 1.4rem);
  border: 1px solid var(--line);
  border-radius: var(--r-xl);
  background: var(--white);
  box-shadow: var(--sh-md);
}

.split-media {
  position: relative;
  border-radius: var(--r-lg);
  overflow: hidden;
}

.split-media img {
  width: 100%;
  aspect-ratio: 3 / 2.05;
  object-fit: cover;
  transition: transform 0.9s var(--ease);
}

.split:hover .split-media img {
  transform: scale(1.04);
}

.split-badge {
  position: absolute;
  left: 1rem;
  bottom: 1rem;
  padding: 0.7rem 1rem;
  border-radius: var(--r-sm);
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(14px);
  box-shadow: var(--sh-md);
  text-align: center;
}

.sb-num {
  display: block;
  color: var(--brand);
  font-family: 'Outfit', sans-serif;
  font-size: 1.55rem;
  font-weight: 800;
  line-height: 1;
}

.sb-label {
  display: block;
  margin-top: 0.15rem;
  color: var(--muted);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.split-body {
  padding-right: clamp(0.5rem, 2vw, 1.5rem);
}

.split-body h3 {
  margin: 0.35rem 0 0.9rem;
  font-size: clamp(1.4rem, 2.4vw, 1.95rem);
}

.ticks {
  display: grid;
  gap: 0.7rem;
  margin-top: 1.5rem;
}

.ticks li {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  color: var(--ink-soft);
  font-size: 0.94rem;
  font-weight: 500;
}

.ticks .ic {
  width: 1.15rem;
  height: 1.15rem;
  margin-top: 0.22rem;
  padding: 2px;
  border-radius: 50%;
  background: var(--green-tint);
  color: var(--green);
}

/* ───────── 12. PLATFORM SHOWCASE ───────── */
.platform {
  background:
    radial-gradient(900px 500px at 50% 0%, rgba(46, 123, 240, 0.07), transparent 65%),
    var(--page);
}

.showcase-tabs {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-bottom: 1.5rem;
  padding: 0.35rem;
  border: 1px solid var(--line);
  border-radius: var(--r-full);
  background: var(--white);
  box-shadow: var(--sh-sm);
  width: fit-content;
  margin-inline: auto;
}

.tab {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.6rem 1.25rem;
  border-radius: var(--r-full);
  color: var(--body);
  font-family: 'Outfit', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  transition: background var(--t), color var(--t), box-shadow var(--t);
}

.tab .ic {
  width: 1.05rem;
  height: 1.05rem;
}

.tab:hover {
  color: var(--brand);
}

.tab.is-active {
  background: linear-gradient(135deg, var(--brand-deep), var(--brand) 55%, var(--brand-2));
  color: #fff;
  box-shadow: var(--sh-brand);
}

/* browser window chrome */
.window {
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  background: var(--white);
  box-shadow: var(--sh-xl);
  overflow: hidden;
}

.window-bar {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.7rem 1rem;
  border-bottom: 1px solid var(--line);
  background: linear-gradient(180deg, #fbfdff, #f4f8fd);
}

.wb-dots {
  display: flex;
  gap: 6px;
}

.wb-dots i {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: #e2e9f3;
}

.wb-dots i:nth-child(1) {
  background: #ffbdb3;
}

.wb-dots i:nth-child(2) {
  background: #ffe0a3;
}

.wb-dots i:nth-child(3) {
  background: #b6e5c8;
}

.wb-url {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin-inline: auto;
  padding: 0.28rem 0.9rem;
  border: 1px solid var(--line);
  border-radius: var(--r-full);
  background: #fff;
  color: var(--muted);
  font-size: 0.76rem;
}

.wb-url .ic {
  width: 0.85rem;
  height: 0.85rem;
  color: var(--green);
}

.window-body {
  display: none;
  min-height: 372px;
}

.window-body.is-active {
  display: grid;
}

/* dashboard panel */
.panel[data-panel="dash"] {
  grid-template-columns: 178px minmax(0, 1fr);
}

.app-side {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  padding: 1rem 0.75rem;
  border-right: 1px solid var(--line);
  background: #fafcff;
}

.as-brand {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.9rem;
  padding: 0 0.5rem;
  color: var(--ink);
  font-family: 'Outfit', sans-serif;
  font-size: 0.95rem;
  font-weight: 800;
  letter-spacing: 0.02em;
}

.as-brand i {
  width: 20px;
  height: 20px;
  border-radius: 6px;
  background: linear-gradient(140deg, var(--brand), var(--brand-2));
}

.as-item {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.5rem 0.6rem;
  border-radius: var(--r-xs);
  color: var(--body);
  font-size: 0.82rem;
  font-weight: 500;
}

.as-item .ic {
  width: 1rem;
  height: 1rem;
  opacity: 0.75;
}

.as-item.is-on {
  background: var(--brand-tint);
  color: var(--brand);
  font-weight: 700;
}

.app-main {
  padding: 1.1rem 1.25rem;
  display: grid;
  gap: 0.9rem;
  align-content: start;
}

.app-kpis {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.7rem;
}

.kpi {
  padding: 0.75rem 0.85rem;
  border: 1px solid var(--line);
  border-radius: var(--r-sm);
  background: #fff;
  box-shadow: var(--sh-xs);
}

.kpi small {
  display: block;
  color: var(--muted);
  font-size: 0.7rem;
}

.kpi b {
  display: block;
  margin: 0.15rem 0 0.3rem;
  color: var(--ink);
  font-family: 'Outfit', sans-serif;
  font-size: 1.28rem;
  line-height: 1;
}

.app-chart {
  padding: 0.9rem 1rem;
  border: 1px solid var(--line);
  border-radius: var(--r-sm);
  background: #fff;
}

.ac-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.85rem;
  color: var(--ink);
  font-family: 'Outfit', sans-serif;
  font-size: 0.85rem;
}

.ac-legend {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  color: var(--muted);
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.7rem;
  font-weight: 500;
}

.ac-legend i {
  width: 8px;
  height: 8px;
  border-radius: 2px;
  margin-left: 0.4rem;
}

.ac-legend .c1 {
  background: var(--brand);
}

.ac-legend .c2 {
  background: var(--brand-2);
}

.ac-legend .c3 {
  background: var(--gold-2);
}

.ac-bars {
  display: flex;
  align-items: flex-end;
  gap: 0.55rem;
  height: 104px;
}

/* three-segment stacked bar: ::after = GDS (--a), ::before = LCC (--b),
   and whatever height is left over shows the track colour as OTA (--c) */
.ac-bars span {
  position: relative;
  flex: 1;
  height: 100%;
  border-radius: 5px;
  overflow: hidden;
  background: var(--gold-2);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.ac-bars span::before,
.ac-bars span::after {
  content: "";
  display: block;
}

.ac-bars span::before {
  height: var(--b);
  background: #7db0f9;
}

.ac-bars span::after {
  height: var(--a);
  background: var(--brand);
}

.app-feed {
  display: grid;
  gap: 0.4rem;
}

.af-row {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.5rem 0.75rem;
  border: 1px solid var(--line-2);
  border-radius: var(--r-xs);
  background: #fbfdff;
  color: var(--body);
  font-size: 0.78rem;
}

.af-row b {
  color: var(--ink);
}

.af-tag {
  padding: 0.1rem 0.4rem;
  border-radius: 5px;
  font-family: 'Outfit', sans-serif;
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.05em;
}

.af-tag.gds {
  background: var(--brand-tint);
  color: var(--brand);
}

.af-tag.lcc {
  background: var(--gold-tint);
  color: var(--gold);
}

.af-tag.inv {
  background: var(--green-tint);
  color: var(--green);
}

.af-time {
  margin-left: auto;
  color: var(--muted);
  font-size: 0.72rem;
}

/* GDS capture panel */
.panel[data-panel="capture"] {
  padding: 1.25rem;
}

.cap-wrap {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 0.9fr);
  align-items: center;
  gap: 1.1rem;
}

.cap-terminal {
  border-radius: var(--r-sm);
  background: #07203c;
  overflow: hidden;
  box-shadow: var(--sh-md);
}

.ct-head {
  padding: 0.55rem 0.9rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.09);
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.72rem;
}

.ct-src {
  color: #6fb2ff;
  font-weight: 700;
}

.cap-terminal pre {
  margin: 0;
  padding: 0.9rem;
  font-family: ui-monospace, 'Cascadia Code', Consolas, monospace;
  font-size: 0.72rem;
  line-height: 1.85;
  color: #b9d3ee;
  white-space: pre-wrap;
  word-break: break-word;
}

.cap-terminal .ln {
  color: #4d7ba8;
}

.cap-terminal .cmd {
  color: #ffd479;
}

.cap-terminal .k {
  color: #fff;
  font-weight: 700;
}

.cap-terminal .ok {
  color: #57d99a;
}

.cap-terminal .dim {
  color: #6b8db0;
}

.cap-arrow {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: linear-gradient(140deg, var(--brand), var(--brand-2));
  color: #fff;
  box-shadow: var(--sh-brand);
}

.cap-arrow .ic {
  width: 1.1rem;
  height: 1.1rem;
}

.cap-result {
  padding: 1rem 1.1rem;
  border: 1px solid var(--line);
  border-radius: var(--r-sm);
  background: #fff;
  box-shadow: var(--sh-sm);
}

.cr-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.8rem;
  color: var(--ink);
  font-family: 'Outfit', sans-serif;
  font-size: 0.92rem;
}

.cap-result dl {
  display: grid;
  gap: 0.45rem;
}

.cap-result dl>div {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 0.75rem;
  font-size: 0.8rem;
}

.cap-result dt {
  color: var(--muted);
}

.cap-result dd {
  color: var(--ink);
  font-weight: 600;
  text-align: right;
}

.cap-result dd.green {
  color: var(--green);
}

.cr-foot {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  margin-top: 0.9rem;
  padding-top: 0.75rem;
  border-top: 1px solid var(--line-2);
  color: var(--green);
  font-size: 0.76rem;
  font-weight: 600;
}

.cr-foot .ic {
  width: 0.95rem;
  height: 0.95rem;
}

/* accounting panel */
.panel[data-panel="accounts"] {
  padding: 1.25rem;
}

.acc-wrap {
  display: grid;
  grid-template-columns: minmax(0, 1.6fr) minmax(0, 1fr);
  gap: 1.1rem;
}

.acc-table {
  border: 1px solid var(--line);
  border-radius: var(--r-sm);
  overflow: hidden;
  align-self: start;
}

.at-head,
.at-row {
  display: grid;
  grid-template-columns: 1.1fr 1.3fr 1fr 0.85fr;
  gap: 0.5rem;
  align-items: center;
  padding: 0.6rem 0.85rem;
  font-size: 0.78rem;
}

.at-head {
  background: #f4f8fd;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
  font-weight: 600;
  font-size: 0.7rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.at-row {
  border-bottom: 1px solid var(--line-2);
  color: var(--body);
  transition: background var(--t-fast);
}

.at-row:last-child {
  border-bottom: 0;
}

.at-row:hover {
  background: #fafcff;
}

.at-row b {
  color: var(--ink);
}

.acc-side {
  display: grid;
  gap: 0.75rem;
  align-content: start;
}

.as-card {
  padding: 0.9rem 1rem;
  border: 1px solid var(--line);
  border-radius: var(--r-sm);
  background: #fff;
}

.as-card small {
  display: block;
  color: var(--muted);
  font-size: 0.72rem;
}

.as-card b {
  display: block;
  margin: 0.2rem 0 0.55rem;
  color: var(--ink);
  font-family: 'Outfit', sans-serif;
  font-size: 1.32rem;
  line-height: 1;
}

.as-card .green {
  color: var(--green);
  font-size: 0.72rem;
  font-weight: 600;
}

.prog {
  height: 7px;
  border-radius: 99px;
  background: var(--line-2);
  overflow: hidden;
  margin-bottom: 0.5rem;
}

.prog i {
  display: block;
  height: 100%;
  width: var(--p);
  border-radius: inherit;
  background: linear-gradient(90deg, var(--green), #23b37f);
}

.age {
  display: flex;
  align-items: flex-end;
  gap: 0.6rem;
  height: 82px;
  margin-top: 0.3rem;
}

.age span {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 0.35rem;
  height: 100%;
  color: var(--muted);
  font-size: 0.62rem;
  text-align: center;
}

.age i {
  display: block;
  height: var(--h);
  border-radius: 4px 4px 2px 2px;
  background: linear-gradient(180deg, var(--brand-2), var(--brand));
}

.age span:last-child i {
  background: linear-gradient(180deg, #f0a8a8, var(--red));
}

/* ───────── 13. FEATURES ───────── */
.features {
  background: var(--white);
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.1rem;
}

.feature {
  --mx: 50%;
  --my: 0%;
  position: relative;
  padding: 1.65rem 1.5rem;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  background: var(--white);
  box-shadow: var(--sh-xs);
  overflow: hidden;
  transition: transform var(--t), box-shadow var(--t), border-color var(--t);
}

.feature::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(280px circle at var(--mx) var(--my), rgba(21, 82, 201, 0.07), transparent 65%);
  opacity: 0;
  transition: opacity var(--t);
  pointer-events: none;
}

.feature:hover {
  transform: translateY(-5px);
  border-color: rgba(21, 82, 201, 0.2);
  box-shadow: var(--sh-lg);
}

.feature:hover::before {
  opacity: 1;
}

.f-icon {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  margin-bottom: 1.05rem;
  border-radius: 13px;
  border: 1px solid rgba(21, 82, 201, 0.13);
  background: linear-gradient(150deg, var(--sky), #fff);
  color: var(--brand);
  transition: transform var(--t), background var(--t), color var(--t);
}

.f-icon .ic {
  width: 1.35rem;
  height: 1.35rem;
}

.feature:hover .f-icon {
  transform: translateY(-2px) scale(1.05);
  background: linear-gradient(150deg, var(--brand), var(--brand-2));
  color: #fff;
}

.feature h3 {
  position: relative;
  font-size: 1.01rem;
  margin-bottom: 0.45rem;
}

.feature p {
  position: relative;
  font-size: 0.885rem;
  color: var(--body);
}

/* ───────── 14. PHOTO BANDS ───────── */
.band {
  position: relative;
  isolation: isolate;
  padding: clamp(3.5rem, 6vw, 5.5rem) 0;
  overflow: hidden;
}

/* keeps the headline legible wherever the photo happens to be bright */
.band-cta h2,
.band-cta p {
  text-shadow: 0 2px 18px rgba(4, 16, 32, 0.55);
}

.band-inner {
  position: relative;
  color: rgba(255, 255, 255, 0.9);
}

.band-inner.center {
  text-align: center;
}

.band-copy {
  max-width: 620px;
}

.band h2 {
  color: #fff;
  font-size: clamp(1.9rem, 4vw, 2.9rem);
  margin-bottom: 1rem;
}

.band p {
  font-size: clamp(1rem, 1.4vw, 1.12rem);
  color: rgba(255, 255, 255, 0.82);
  max-width: 620px;
}

.band-inner.center p {
  margin-inline: auto;
}

.band-points {
  display: grid;
  gap: 0.6rem;
  margin: 1.7rem 0 2.1rem;
}

.band-points span {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  color: rgba(255, 255, 255, 0.92);
  font-size: 0.95rem;
  font-weight: 500;
}

.band-points .ic {
  width: 1.2rem;
  height: 1.2rem;
  padding: 2px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.16);
  color: #7ce0b0;
}

.band-cta-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  justify-content: center;
  margin-top: 2.1rem;
}

/* ───────── 15. GLOBAL REACH ───────── */
.reach {
  background:
    radial-gradient(800px 460px at 50% 8%, rgba(46, 123, 240, 0.08), transparent 62%),
    var(--page);
}

.map-card {
  position: relative;
  padding: clamp(0.75rem, 2vw, 1.5rem);
  border: 1px solid var(--line);
  border-radius: var(--r-xl);
  background: linear-gradient(180deg, #fff, #f8fbff);
  box-shadow: var(--sh-lg);
  overflow: hidden;
}

#worldMap {
  width: 100%;
  height: clamp(240px, 34vw, 430px);
  display: block;
}

.map-legend {
  position: absolute;
  left: clamp(1.25rem, 3vw, 2.25rem);
  bottom: clamp(1rem, 2.5vw, 1.75rem);
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.75rem;
  color: var(--muted);
}

.map-legend span {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.map-legend i {
  width: 9px;
  height: 9px;
  border-radius: 50%;
}

.lg-node {
  background: var(--gold);
  box-shadow: 0 0 0 3px var(--gold-tint);
}

.lg-arc {
  width: 18px !important;
  height: 2px !important;
  border-radius: 2px !important;
  background: linear-gradient(90deg, var(--brand), var(--brand-2));
}

.map-stat {
  position: absolute;
  right: clamp(1.25rem, 3vw, 2.25rem);
  top: clamp(1.25rem, 3vw, 2rem);
  padding: 0.8rem 1.1rem;
  border: 1px solid var(--line);
  border-radius: var(--r-sm);
  background: rgba(255, 255, 255, 0.86);
  backdrop-filter: blur(12px);
  box-shadow: var(--sh-md);
  text-align: center;
}

.map-stat b {
  display: block;
  color: var(--brand);
  font-family: 'Outfit', sans-serif;
  font-size: 1.7rem;
  font-weight: 800;
  line-height: 1;
}

.map-stat small {
  display: block;
  margin-top: 0.2rem;
  color: var(--muted);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

/* destination mosaic */
.mosaic {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.9rem;
  margin-top: 1.5rem;
}

.mo {
  position: relative;
  border-radius: var(--r);
  overflow: hidden;
  box-shadow: var(--sh-sm);
  aspect-ratio: 1 / 1;
  transition: transform var(--t), box-shadow var(--t);
}

.mo.mo-lg {
  grid-column: span 2;
  aspect-ratio: 2 / 1;
}

.mo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.85s var(--ease), filter var(--t);
}

.mo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 45%, rgba(6, 26, 48, 0.78));
  transition: opacity var(--t);
}

.mo:hover {
  transform: translateY(-4px);
  box-shadow: var(--sh-lg);
}

.mo:hover img {
  transform: scale(1.07);
}

.mo figcaption {
  position: absolute;
  z-index: 2;
  left: 0.9rem;
  bottom: 0.85rem;
  color: #fff;
}

.mo figcaption b {
  display: block;
  font-family: 'Outfit', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.2;
}

.mo figcaption span {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.76);
}

/* ───────── 16. PRICING ───────── */
.pricing {
  background: var(--white);
}

.plans {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.1rem;
  align-items: stretch;
}

.plan {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 1.75rem 1.5rem;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  background: var(--white);
  box-shadow: var(--sh-sm);
  transition: transform var(--t), box-shadow var(--t), border-color var(--t);
}

.plan:hover {
  transform: translateY(-5px);
  border-color: rgba(21, 82, 201, 0.22);
  box-shadow: var(--sh-lg);
}

.plan.is-popular {
  border-color: rgba(196, 136, 26, 0.5);
  box-shadow: var(--sh-lg), 0 0 0 1px rgba(196, 136, 26, 0.16);
  background: linear-gradient(180deg, #fffdf8, #fff);
}

.plan.is-popular:hover {
  box-shadow: var(--sh-xl), 0 0 0 1px rgba(196, 136, 26, 0.24);
}

.plan-flag {
  position: absolute;
  top: -0.75rem;
  left: 50%;
  translate: -50% 0;
  padding: 0.3rem 0.9rem;
  border-radius: var(--r-full);
  background: linear-gradient(135deg, var(--gold), var(--gold-2));
  color: #fff;
  font-family: 'Outfit', sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  white-space: nowrap;
  box-shadow: var(--sh-gold);
}

.plan-mark {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  margin-bottom: 1rem;
  border-radius: 13px;
  border: 1px solid rgba(21, 82, 201, 0.13);
  background: linear-gradient(150deg, var(--sky), #fff);
  color: var(--brand);
}

.plan-mark.gold {
  border-color: rgba(196, 136, 26, 0.24);
  background: linear-gradient(150deg, var(--sand), #fff);
  color: var(--gold);
}

.plan-mark .ic {
  width: 1.3rem;
  height: 1.3rem;
}

.plan-head h3 {
  font-size: 1.35rem;
  margin-bottom: 0.4rem;
}

.plan-head p {
  font-size: 0.86rem;
  color: var(--body);
  min-height: 3.1em;
}

.plan-seats {
  display: inline-block;
  margin-top: 0.75rem;
  padding: 0.3rem 0.75rem;
  border-radius: var(--r-full);
  background: var(--line-2);
  color: var(--ink-soft);
  font-family: 'Outfit', sans-serif;
  font-size: 0.76rem;
  font-weight: 600;
}

.plan-list {
  flex: 1;
  display: grid;
  gap: 0.6rem;
  align-content: start;
  margin: 1.35rem 0;
  padding-top: 1.35rem;
  border-top: 1px solid var(--line);
}

.plan-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.55rem;
  font-size: 0.865rem;
  color: var(--body);
}

.plan-list .ic {
  width: 1.05rem;
  height: 1.05rem;
  flex: none;
  margin-top: 0.24rem;
  padding: 2px;
  border-radius: 50%;
  background: var(--green-tint);
  color: var(--green);
}

.plan-list li.inherit {
  color: var(--ink);
  font-weight: 700;
}

.plan-list li.inherit .ic {
  background: var(--brand-tint);
  color: var(--brand);
}

.is-popular .plan-list li.inherit .ic {
  background: var(--gold-tint);
  color: var(--gold);
}

.plan-count {
  display: block;
  margin-bottom: 0.85rem;
  color: var(--muted);
  font-family: 'Outfit', sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  text-align: center;
}

/* ───────── 17. ECOSYSTEM ───────── */
.eco {
  background:
    radial-gradient(700px 420px at 50% 45%, rgba(196, 136, 26, 0.07), transparent 62%),
    var(--page);
}

.eco-wrap {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: clamp(1.25rem, 4vw, 3.5rem);
}

.eco-col {
  display: grid;
  gap: 0.7rem;
}

.eco-node {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  padding: 0.85rem 1.1rem;
  border: 1px solid var(--line);
  border-radius: var(--r-sm);
  background: var(--white);
  box-shadow: var(--sh-xs);
  color: var(--ink-soft);
  font-family: 'Outfit', sans-serif;
  font-size: 0.92rem;
  font-weight: 600;
  transition: transform var(--t), border-color var(--t), box-shadow var(--t), color var(--t);
}

.eco-node .ic {
  width: 1.2rem;
  height: 1.2rem;
  color: var(--brand);
  transition: color var(--t);
}

.eco-col:first-child .eco-node:hover {
  transform: translateX(6px);
}

.eco-col:last-child .eco-node:hover {
  transform: translateX(-6px);
}

.eco-node:hover {
  border-color: rgba(21, 82, 201, 0.28);
  box-shadow: var(--sh-md);
  color: var(--brand);
}

.eco-core {
  position: relative;
  display: grid;
  place-items: center;
  width: clamp(150px, 20vw, 208px);
  aspect-ratio: 1;
}

.eco-ring {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 1px solid rgba(21, 82, 201, 0.18);
}

.eco-ring.r2 {
  inset: 12%;
  border-color: rgba(21, 82, 201, 0.13);
  border-style: dashed;
}

.eco-ring.r3 {
  inset: 24%;
  border-color: rgba(196, 136, 26, 0.22);
}

.eco-core-in {
  display: grid;
  place-items: center;
  width: 62%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: linear-gradient(150deg, var(--brand-deep), var(--brand) 55%, var(--brand-2));
  color: #fff;
  text-align: center;
  box-shadow: 0 22px 48px -14px rgba(10, 58, 114, 0.6);
}

.eco-core-in b {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(1rem, 2vw, 1.32rem);
  font-weight: 800;
  letter-spacing: 0.03em;
  line-height: 1;
}

.eco-core-in small {
  margin-top: 0.25rem;
  font-size: 0.64rem;
  opacity: 0.8;
  letter-spacing: 0.04em;
}

/* ───────── 18. CONTACT ───────── */
.contact {
  background: linear-gradient(180deg, var(--white), var(--page));
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: clamp(1.25rem, 3vw, 2.25rem);
  align-items: start;
}

.contact-info {
  display: grid;
  gap: 0.7rem;
}

.info {
  display: flex;
  align-items: flex-start;
  gap: 0.9rem;
  padding: 1.05rem 1.15rem;
  border: 1px solid var(--line);
  border-radius: var(--r-sm);
  background: var(--white);
  box-shadow: var(--sh-xs);
  transition: transform var(--t), border-color var(--t), box-shadow var(--t);
}

.info:hover {
  transform: translateX(4px);
  border-color: rgba(21, 82, 201, 0.24);
  box-shadow: var(--sh-md);
}

.info-ic {
  display: grid;
  place-items: center;
  flex: none;
  width: 40px;
  height: 40px;
  border-radius: 11px;
  border: 1px solid rgba(21, 82, 201, 0.13);
  background: linear-gradient(150deg, var(--sky), #fff);
  color: var(--brand);
}

.info-ic.green {
  border-color: rgba(15, 138, 95, 0.18);
  background: linear-gradient(150deg, #eafaf3, #fff);
  color: var(--green);
}

.info-ic .ic {
  width: 1.15rem;
  height: 1.15rem;
}

.info span:last-child {
  font-size: 0.9rem;
  color: var(--body);
  line-height: 1.55;
}

.info strong {
  display: block;
  color: var(--ink);
  font-family: 'Outfit', sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 0.1rem;
}

/* form */
.contact-form {
  padding: clamp(1.4rem, 3vw, 2.1rem);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  background: var(--white);
  box-shadow: var(--sh-md);
}

.fields {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 1.25rem;
}

.field {
  display: grid;
  gap: 0.4rem;
}

.field.full {
  grid-column: 1 / -1;
}

.field>span {
  color: var(--ink-soft);
  font-family: 'Outfit', sans-serif;
  font-size: 0.82rem;
  font-weight: 600;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 0.78rem 0.95rem;
  border: 1px solid var(--line);
  border-radius: var(--r-xs);
  background: #fbfdff;
  color: var(--ink);
  font-size: 0.92rem;
  transition: border-color var(--t-fast), box-shadow var(--t-fast), background var(--t-fast);
}

.field textarea {
  resize: vertical;
  min-height: 110px;
}

.field input::placeholder,
.field textarea::placeholder {
  color: #a9b7cb;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  background: #fff;
  border-color: var(--brand-2);
  box-shadow: 0 0 0 4px rgba(46, 123, 240, 0.12);
}

.field select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%237c8ca4' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.85rem center;
  padding-right: 2.4rem;
  cursor: pointer;
}

.form-note {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  margin-top: 0.9rem;
  color: var(--muted);
  font-size: 0.8rem;
}

.form-note .ic {
  width: 0.95rem;
  height: 0.95rem;
  color: var(--green);
}

/* ───────── 19. FOOTER ───────── */
.footer {
  padding: clamp(3rem, 6vw, 4.5rem) 0 0;
  border-top: 1px solid var(--line);
  background: linear-gradient(180deg, #f2f6fc, #e9f0fa);
}

.footer-top {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.5fr);
  gap: clamp(2rem, 5vw, 4rem);
  padding-bottom: clamp(2rem, 4vw, 3rem);
}

.footer-brand .logo-img {
  height: 44px;
  width: auto;
  margin-bottom: 1.1rem;
}

.footer-brand p {
  max-width: 33ch;
  font-size: 0.92rem;
  color: var(--body);
}

.footer-social {
  display: flex;
  gap: 0.55rem;
  margin-top: 1.4rem;
}

.footer-social a {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: #fff;
  color: var(--ink-soft);
  box-shadow: var(--sh-xs);
  transition: transform var(--t), color var(--t), border-color var(--t);
}

.footer-social a:hover {
  transform: translateY(-3px);
  color: var(--brand);
  border-color: rgba(21, 82, 201, 0.3);
}

.footer-social .ic {
  width: 1.1rem;
  height: 1.1rem;
}

.footer-cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.footer-col h4 {
  margin-bottom: 1rem;
  color: var(--ink);
  font-family: 'Outfit', sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.footer-col a,
.footer-static {
  display: block;
  margin-bottom: 0.6rem;
  color: var(--body);
  font-size: 0.9rem;
  transition: color var(--t-fast), transform var(--t-fast);
}

.footer-col a:hover {
  color: var(--brand);
  transform: translateX(3px);
}

.footer-static {
  color: var(--muted);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.75rem;
  padding: 1.4rem 0;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.84rem;
}

/* ───────── 20. WHATSAPP FAB ───────── */
.fab {
  position: fixed;
  right: 1.5rem;
  bottom: 1.5rem;
  z-index: 900;
  display: grid;
  place-items: center;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(140deg, #25d366, #128c7e);
  color: #fff;
  box-shadow: 0 14px 30px -8px rgba(18, 140, 126, 0.6);
  transition: transform var(--t), box-shadow var(--t);
}

.fab:hover {
  transform: scale(1.07);
  box-shadow: 0 20px 40px -10px rgba(18, 140, 126, 0.7);
}

.fab-tip {
  position: absolute;
  right: calc(100% + 0.7rem);
  white-space: nowrap;
  padding: 0.45rem 0.85rem;
  border-radius: var(--r-xs);
  background: var(--ink);
  color: #fff;
  font-size: 0.8rem;
  font-weight: 500;
  opacity: 0;
  transform: translateX(8px);
  pointer-events: none;
  transition: opacity var(--t), transform var(--t);
}

.fab:hover .fab-tip {
  opacity: 1;
  transform: translateX(0);
}

/* ───────── 21. FORM BUTTON STATES ───────── */
.btn:disabled {
  cursor: default;
}

.btn.is-ok {
  background: linear-gradient(135deg, #0d7a53, #23b37f);
  box-shadow: 0 16px 34px -10px rgba(15, 138, 95, 0.45);
}

.btn.is-err {
  background: linear-gradient(135deg, #b3332f, #d64545);
  box-shadow: 0 16px 34px -10px rgba(214, 69, 69, 0.45);
}

.btn.is-ok .ic,
.btn.is-err .ic {
  display: none;
}

/* ───────── 22. AUTOMATION CHAIN ─────────
   Seven compact steps on one rail. JS walks an .is-active class along them
   and drives .chain-fill / .chain-token from the real card positions, so the
   same code works whether the rail fits or scrolls. */
.chain-wrap {
  position: relative;
}

.chain-rail {
  position: relative;
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(0, 1fr);
  gap: 0.7rem;
  padding-top: 2.7rem;
}

/* the track the ticket runs along */
.chain-line {
  position: absolute;
  top: 1.15rem;
  left: 0;
  width: 0;
  height: 2px;
  border-radius: 2px;
  background: rgba(255, 255, 255, 0.11);
  pointer-events: none;
}

.chain-fill {
  display: block;
  width: 0;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--brand-2), var(--gold-2));
  box-shadow: 0 0 14px rgba(46, 123, 240, 0.55);
  transition: width 0.42s var(--ease);
}

.chain-token {
  position: absolute;
  top: 0.3rem;
  left: 0;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: linear-gradient(140deg, var(--brand-2), var(--brand));
  color: #fff;
  box-shadow: 0 0 0 5px rgba(46, 123, 240, 0.16), 0 10px 22px -6px rgba(46, 123, 240, 0.8);
  transition: transform 0.42s var(--ease);
  pointer-events: none;
}

.chain-token .ic {
  width: 0.95rem;
  height: 0.95rem;
}

/* ── the cards ── */
.wf-card {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.45rem;
  min-width: 0;
  padding: 1.15rem 0.75rem 0.95rem;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: var(--r);
  background: rgba(255, 255, 255, 0.035);
  font: inherit;
  text-align: center;
  cursor: pointer;
  transition:
    transform 0.3s var(--ease),
    background 0.3s var(--ease),
    border-color 0.3s var(--ease),
    box-shadow 0.3s var(--ease);
}

.wf-badge {
  position: absolute;
  top: -9px;
  right: -7px;
  display: grid;
  place-items: center;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: #24406b;
  color: rgba(255, 255, 255, 0.72);
  font-family: 'Outfit', sans-serif;
  font-size: 0.68rem;
  font-weight: 800;
  transition: background 0.3s var(--ease), color 0.3s var(--ease), box-shadow 0.3s var(--ease);
}

.wf-ic {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 13px;
  border: 1px solid rgba(255, 255, 255, 0.11);
  background: rgba(255, 255, 255, 0.05);
  color: #8fb6f5;
  transition: background 0.3s var(--ease), color 0.3s var(--ease), border-color 0.3s var(--ease), transform 0.3s var(--ease);
}

.wf-ic .ic {
  width: 1.3rem;
  height: 1.3rem;
}

.wf-title {
  color: #fff;
  font-family: 'Outfit', sans-serif;
  font-size: 0.88rem;
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: -0.01em;
}

.wf-desc {
  color: rgba(255, 255, 255, 0.48);
  font-size: 0.735rem;
  line-height: 1.42;
}

.wf-chip {
  margin-top: auto;
  max-width: 100%;
  padding: 0.28rem 0.6rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--r-full);
  background: rgba(255, 255, 255, 0.05);
  color: rgba(255, 255, 255, 0.55);
  font-family: 'Outfit', sans-serif;
  font-size: 0.655rem;
  font-weight: 700;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  transition: background 0.3s var(--ease), border-color 0.3s var(--ease), color 0.3s var(--ease);
}

/* ── states ── */
.wf-card.is-done {
  border-color: rgba(124, 224, 176, 0.22);
  background: rgba(124, 224, 176, 0.05);
}

.wf-card.is-done .wf-badge {
  background: rgba(124, 224, 176, 0.22);
  color: #7ce0b0;
}

.wf-card.is-done .wf-ic {
  color: #7ce0b0;
  border-color: rgba(124, 224, 176, 0.24);
}

.wf-card.is-active {
  transform: translateY(-7px);
  border-color: rgba(46, 123, 240, 0.55);
  background: rgba(46, 123, 240, 0.13);
  box-shadow: 0 0 0 1px rgba(46, 123, 240, 0.25), 0 26px 52px -22px rgba(46, 123, 240, 0.85);
}

.wf-card.is-active .wf-badge {
  background: linear-gradient(140deg, var(--brand-2), var(--brand));
  color: #fff;
  box-shadow: 0 5px 14px -3px rgba(46, 123, 240, 0.8);
}

.wf-card.is-active .wf-ic {
  transform: scale(1.06);
  border-color: transparent;
  background: linear-gradient(150deg, var(--brand-2), var(--brand));
  color: #fff;
}

.wf-card.is-active .wf-desc {
  color: rgba(255, 255, 255, 0.68);
}

.wf-card.is-active .wf-chip {
  border-color: rgba(46, 123, 240, 0.5);
  background: rgba(46, 123, 240, 0.22);
  color: #d3e4ff;
}

.wf-card:hover {
  border-color: rgba(255, 255, 255, 0.24);
  background: rgba(255, 255, 255, 0.07);
}
