:root {
  --navy-950: #050b14;
  --navy-900: #08111f;
  --navy-850: #0c1829;
  --navy-800: #12243a;
  --red-700: #bf0d1d;
  --red-600: #e3132a;
  --red-500: #f52f45;
  --gold-500: #f4c65b;
  --gold-300: #ffe09a;
  --cyan-400: #54d7e2;
  --surface: #f6f7f8;
  --surface-strong: #ffffff;
  --ink: #111827;
  --ink-soft: #526071;
  --line: #dfe4e9;
  --shadow-sm: 0 8px 30px rgba(8, 17, 31, .08);
  --shadow-md: 0 24px 70px rgba(8, 17, 31, .14);
  --shadow-red: 0 18px 45px rgba(227, 19, 42, .28);
  --radius-sm: 14px;
  --radius-md: 24px;
  --radius-lg: 38px;
  --container: 1200px;
  --ease-out: cubic-bezier(.22, 1, .36, 1);
  --ease-spring: cubic-bezier(.2, .9, .2, 1.16);
  --header-height: 84px;
  --mx: 50vw;
  --my: 25vh;
}

*, *::before, *::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 18px);
  overflow-x: clip;
}

body {
  margin: 0;
  overflow-x: hidden;
  overflow-x: clip;
  color: var(--ink);
  background: var(--surface);
  font-family: "Manrope", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

body.menu-open { overflow: hidden; }

::selection { color: #fff; background: var(--red-600); }

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

button, input, textarea { font: inherit; }

button, a { -webkit-tap-highlight-color: transparent; }

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

button { color: inherit; }

svg { display: block; }

.container {
  width: min(calc(100% - 40px), var(--container));
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  z-index: 2000;
  top: 12px;
  left: 12px;
  padding: 12px 18px;
  color: #fff;
  background: var(--navy-950);
  border-radius: 10px;
  transform: translateY(-150%);
  transition: transform .2s ease;
}

.skip-link:focus { transform: translateY(0); }

:focus-visible {
  outline: 3px solid var(--cyan-400);
  outline-offset: 4px;
}

.page-loader {
  position: fixed;
  z-index: 1500;
  inset: 0;
  display: grid;
  place-content: center;
  justify-items: center;
  color: #fff;
  background: var(--navy-950);
  transition: opacity .45s ease, visibility .45s ease;
}

.page-loader.is-hidden { opacity: 0; visibility: hidden; }

.loader-mark {
  display: grid;
  place-items: center;
  width: 68px;
  height: 68px;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 22px;
  background: linear-gradient(145deg, rgba(255,255,255,.1), rgba(255,255,255,.02));
  box-shadow: 0 24px 60px rgba(0,0,0,.32);
}

.loader-mark svg { width: 38px; fill: var(--red-500); stroke: #fff; stroke-width: 1.1; stroke-linejoin: round; }
.page-loader p { margin: 18px 0 12px; color: rgba(255,255,255,.68); font-size: 12px; letter-spacing: .18em; text-transform: uppercase; }
.loader-line { width: 190px; height: 2px; overflow: hidden; background: rgba(255,255,255,.12); }
.loader-line i { display: block; width: 100%; height: 100%; background: linear-gradient(90deg, var(--red-600), var(--gold-500)); transform-origin: left; animation: loader-line 1s var(--ease-out) forwards; }

.scroll-progress {
  position: fixed;
  z-index: 1200;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  pointer-events: none;
}

.scroll-progress span { display: block; width: 100%; height: 100%; background: linear-gradient(90deg, var(--red-500), var(--gold-500)); transform: scaleX(0); transform-origin: left; }

.pointer-aura {
  position: fixed;
  z-index: 0;
  inset: 0;
  pointer-events: none;
  opacity: .75;
  background: radial-gradient(480px circle at var(--mx) var(--my), rgba(227,19,42,.08), transparent 72%);
}

.site-header {
  position: fixed;
  z-index: 1000;
  top: 0;
  left: 0;
  width: 100%;
  color: #fff;
  border-bottom: 1px solid transparent;
  transition: background .25s ease, border-color .25s ease, box-shadow .25s ease;
}

.site-header.is-scrolled {
  background: rgba(5, 11, 20, .88);
  border-color: rgba(255,255,255,.09);
  box-shadow: 0 12px 30px rgba(0,0,0,.15);
  backdrop-filter: blur(18px);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-height);
}

.brand { display: inline-flex; align-items: center; gap: 11px; min-height: 48px; }

.brand-icon {
  display: grid;
  place-items: center;
  width: 43px;
  height: 43px;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 14px;
  background: var(--red-600);
  box-shadow: 0 10px 24px rgba(227,19,42,.25);
}

.brand-icon svg { width: 27px; fill: #fff; stroke: #fff; stroke-width: .7; stroke-linejoin: round; }
.brand-copy { display: grid; line-height: 1; }
.brand-copy strong { font-family: "Sora", sans-serif; font-size: 19px; letter-spacing: -.03em; }
.brand-copy small { margin-top: 5px; color: rgba(255,255,255,.62); font-size: 10px; font-weight: 700; letter-spacing: .22em; text-transform: uppercase; }

.desktop-nav { display: flex; align-items: center; gap: 36px; }
.desktop-nav a { position: relative; min-height: 44px; display: grid; place-items: center; color: rgba(255,255,255,.66); font-size: 13px; font-weight: 700; transition: color .2s ease; }
.desktop-nav a::after { position: absolute; bottom: 5px; left: 50%; width: 5px; height: 5px; content: ""; border-radius: 50%; background: var(--red-500); opacity: 0; transform: translate(-50%, 5px); transition: opacity .2s ease, transform .2s ease; }
.desktop-nav a:hover, .desktop-nav a.is-active { color: #fff; }
.desktop-nav a.is-active::after { opacity: 1; transform: translate(-50%, 0); }

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 56px;
  padding: 0 24px;
  border: 1px solid transparent;
  border-radius: 16px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 800;
  line-height: 1.1;
  transition: color .22s ease, background .22s ease, border-color .22s ease, box-shadow .22s ease, transform .22s var(--ease-spring);
  touch-action: manipulation;
}

.button svg, .text-link svg, .footer-link svg { width: 19px; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; transition: transform .2s ease; }
.button:hover svg, .text-link:hover svg, .footer-link:hover svg { transform: translateX(3px); }
.button:active { transform: scale(.97); }
.button-sm { min-height: 46px; padding-inline: 20px; border-radius: 13px; }
.button-primary { color: #fff; background: var(--red-600); box-shadow: 0 12px 34px rgba(227,19,42,.25); }
.button-primary:hover { background: var(--red-500); box-shadow: var(--shadow-red); transform: translateY(-2px); }
.button-ghost { color: #fff; border-color: rgba(255,255,255,.2); background: rgba(255,255,255,.06); backdrop-filter: blur(10px); }
.button-ghost:hover { border-color: rgba(255,255,255,.42); background: rgba(255,255,255,.12); transform: translateY(-2px); }
.button-light { color: var(--navy-950); background: #fff; box-shadow: 0 16px 40px rgba(0,0,0,.15); }
.button-light:hover { background: var(--gold-300); transform: translateY(-2px); }
.button-wide { width: 100%; }

.menu-toggle { display: none; width: 48px; height: 48px; padding: 0; border: 1px solid rgba(255,255,255,.15); border-radius: 14px; cursor: pointer; background: rgba(255,255,255,.06); }
.menu-toggle span { display: block; width: 19px; height: 1.5px; margin: 5px auto; background: #fff; transition: transform .25s ease; }
.menu-toggle[aria-expanded="true"] span:first-child { transform: translateY(3.25px) rotate(45deg); }
.menu-toggle[aria-expanded="true"] span:last-child { transform: translateY(-3.25px) rotate(-45deg); }
.mobile-menu { display: none; }

.hero {
  position: relative;
  z-index: 1;
  min-height: 760px;
  overflow: hidden;
  color: #fff;
  background:
    radial-gradient(circle at 78% 26%, rgba(32,125,157,.19), transparent 25%),
    linear-gradient(128deg, var(--navy-950) 0%, var(--navy-900) 52%, #11182a 100%);
}

.hero-grid { position: absolute; inset: 0; opacity: .19; background-image: linear-gradient(rgba(255,255,255,.045) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.045) 1px, transparent 1px); background-size: 64px 64px; mask-image: linear-gradient(to bottom, #000, transparent 92%); }
.hero-glow { position: absolute; border-radius: 50%; filter: blur(10px); pointer-events: none; }
.hero-glow-one { top: -160px; left: -180px; width: 530px; height: 530px; background: radial-gradient(circle, rgba(227,19,42,.2), transparent 70%); }
.hero-glow-two { right: -180px; bottom: -250px; width: 620px; height: 620px; background: radial-gradient(circle, rgba(84,215,226,.12), transparent 70%); }

.flight-route { position: absolute; z-index: 0; top: 25px; left: 0; width: 100%; height: 75%; opacity: .35; pointer-events: none; }
.flight-route path { fill: none; stroke: rgba(255,255,255,.36); stroke-width: 1; stroke-dasharray: 6 14; stroke-linecap: round; animation: draw-route 2.2s var(--ease-out) .6s both; }

.hero-layout { position: relative; z-index: 2; display: grid; grid-template-columns: 1.02fr .98fr; align-items: center; gap: 64px; min-height: 735px; padding-top: var(--header-height); padding-bottom: 40px; }
.hero-copy { padding-top: 22px; }
.hero-item { opacity: 0; transform: translateY(22px); animation: hero-in .65s var(--ease-out) forwards; }
.hero-copy .hero-item:nth-child(1) { animation-delay: .42s; }
.hero-copy .hero-item:nth-child(2) { animation-delay: .5s; }
.hero-copy .hero-item:nth-child(3) { animation-delay: .58s; }
.hero-copy .hero-item:nth-child(4) { animation-delay: .66s; }
.hero-copy .hero-item:nth-child(5) { animation-delay: .74s; }
.hero-visual.hero-item { animation-delay: .58s; }

.eyebrow, .section-kicker { display: inline-flex; align-items: center; gap: 10px; color: var(--red-600); font-size: 11px; font-weight: 800; letter-spacing: .18em; text-transform: uppercase; }
.hero .eyebrow { color: rgba(255,255,255,.7); }
.pulse-dot { position: relative; width: 9px; height: 9px; border-radius: 50%; background: var(--red-500); box-shadow: 0 0 0 6px rgba(245,47,69,.12); }

.hero h1 { max-width: 700px; margin: 26px 0 20px; font-family: "Sora", sans-serif; font-size: clamp(3.6rem, 6.6vw, 6.4rem); line-height: .95; letter-spacing: -.065em; }
.text-gradient, .section-heading h2 span, .showcase-copy h2 span, .trust-copy h2 span, .quote-intro h2 span, .faq-heading h2 span { color: transparent; background: linear-gradient(108deg, var(--red-500) 0%, #ff5c6c 54%, var(--gold-500) 100%); background-clip: text; -webkit-background-clip: text; }
.section-heading h2 span, .trust-copy h2 span, .faq-heading h2 span { background-image: linear-gradient(108deg, var(--red-700) 0%, var(--red-600) 55%, #a66000 100%); }
.hero-lead { max-width: 620px; margin: 0; color: rgba(255,255,255,.67); font-size: 18px; line-height: 1.75; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 34px; }

.hero-trust { display: flex; flex-wrap: wrap; gap: 21px; margin: 28px 0 0; padding: 0; list-style: none; }
.hero-trust li { display: flex; align-items: center; gap: 8px; color: rgba(255,255,255,.62); font-size: 12px; font-weight: 700; }
.hero-trust svg { width: 17px; fill: none; stroke: var(--cyan-400); stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }

.hero-visual { position: relative; min-height: 520px; perspective: 1200px; }
.hero-card-stage { position: absolute; top: 50%; left: 50%; width: 500px; max-width: 94%; transform: translate(-50%, -48%); transform-style: preserve-3d; transition: transform .2s ease-out; }
.hero-image-frame { position: relative; z-index: 2; overflow: hidden; padding: 13px; border: 1px solid rgba(255,255,255,.14); border-radius: 34px; background: linear-gradient(145deg, rgba(255,255,255,.13), rgba(255,255,255,.025)); box-shadow: 0 44px 100px rgba(0,0,0,.45); backdrop-filter: blur(12px); transform: rotate(2.5deg); }
.hero-image-frame::before { position: absolute; z-index: 2; inset: 13px; content: ""; border: 1px solid rgba(255,255,255,.12); border-radius: 23px; pointer-events: none; }
.hero-image-frame img { width: 100%; aspect-ratio: 559 / 357; border-radius: 23px; object-fit: cover; filter: saturate(.92) contrast(1.05); }
.image-sheen { position: absolute; z-index: 3; top: -70%; left: -45%; width: 32%; height: 230%; background: linear-gradient(90deg, transparent, rgba(255,255,255,.3), transparent); transform: rotate(23deg) translateX(-180%); animation: sheen 1.1s var(--ease-out) 1.2s forwards; }

.floating-card { position: absolute; z-index: 4; display: flex; align-items: center; gap: 11px; min-width: 190px; padding: 12px 15px; border: 1px solid rgba(255,255,255,.18); border-radius: 17px; color: #fff; background: rgba(9,19,33,.84); box-shadow: 0 20px 45px rgba(0,0,0,.32); backdrop-filter: blur(16px); }
.floating-card-top { top: -38px; right: -30px; }
.floating-card-bottom { bottom: -32px; left: -45px; }
.floating-card span:not(.icon-shell):not(.mini-bars) { display: grid; }
.floating-card small, .miles-chip small { color: rgba(255,255,255,.7); font-size: 9px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; }
.floating-card strong { font-size: 12px; }

.icon-shell { display: grid; flex: 0 0 auto; place-items: center; width: 42px; height: 42px; border-radius: 13px; color: #fff; background: rgba(227,19,42,.16); }
.icon-shell svg { width: 22px; fill: none; stroke: var(--red-500); stroke-width: 1.6; stroke-linecap: round; stroke-linejoin: round; }
.floating-card-top .icon-shell { background: rgba(69,211,145,.14); box-shadow: inset 0 0 0 1px rgba(69,211,145,.1); }
.floating-card-top .icon-shell svg { stroke: #45d391; }
.mini-bars { display: flex; align-items: end; gap: 3px; width: 40px; height: 40px; padding: 10px; border-radius: 12px; background: rgba(84,215,226,.12); }
.mini-bars i { width: 4px; border-radius: 4px; background: var(--cyan-400); }
.mini-bars i:nth-child(1) { height: 8px; }.mini-bars i:nth-child(2) { height: 15px; }.mini-bars i:nth-child(3) { height: 20px; }

.miles-chip { position: absolute; z-index: 4; right: 18px; bottom: -98px; display: flex; align-items: center; gap: 12px; color: #fff; }
.miles-chip > span { display: grid; place-items: center; width: 46px; height: 46px; border-radius: 50%; color: var(--navy-950); background: var(--gold-500); font-family: "Sora", sans-serif; font-size: 12px; font-weight: 800; box-shadow: 0 10px 26px rgba(244,198,91,.2); }
.miles-chip div { display: block; line-height: 1.15; }.miles-chip small { display: block; }.miles-chip strong { font-family: "Sora", sans-serif; font-size: 19px; }.miles-chip em { color: rgba(255,255,255,.5); font-size: 11px; font-style: normal; }
.visual-orbit { position: absolute; top: 50%; left: 50%; border: 1px solid rgba(255,255,255,.1); border-radius: 50%; transform: translate(-50%, -50%) rotate(-15deg); }
.orbit-one { width: 540px; height: 540px; }.orbit-two { width: 400px; height: 400px; border-style: dashed; }

.hero-bottom { position: absolute; z-index: 3; right: 0; bottom: 22px; left: 0; display: flex; align-items: center; justify-content: space-between; color: rgba(255,255,255,.42); font-size: 11px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }
.hero-bottom p { margin: 0; }
.scroll-cue { display: flex; align-items: center; gap: 10px; min-height: 44px; }
.scroll-cue span { position: relative; width: 22px; height: 34px; border: 1px solid rgba(255,255,255,.35); border-radius: 20px; }
.scroll-cue span::after { position: absolute; top: 7px; left: 9px; width: 2px; height: 7px; content: ""; border-radius: 2px; background: var(--red-500); animation: scroll-dot 1.5s ease-in-out 1.5s 3; }

.signal-strip { position: relative; z-index: 4; overflow: hidden; color: #fff; background: var(--red-600); transform: rotate(-1deg) scale(1.02); box-shadow: 0 16px 40px rgba(191,13,29,.25); }
.signal-track { display: flex; align-items: center; gap: 34px; width: max-content; min-height: 58px; padding-inline: 18px; animation: marquee 27s linear infinite; }
.signal-track span { font-family: "Sora", sans-serif; font-size: 12px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; }
.signal-track i { width: 6px; height: 6px; border-radius: 50%; background: var(--gold-500); }
.signal-strip:hover .signal-track { animation-play-state: paused; }

.section { position: relative; z-index: 1; padding: 128px 0; }
.section-heading { display: flex; align-items: end; justify-content: space-between; gap: 60px; margin-bottom: 58px; }
.section-heading > div { flex: 1; }
.section-heading h2, .showcase-copy h2, .trust-copy h2, .quote-intro h2, .faq-heading h2 { margin: 15px 0 0; font-family: "Sora", sans-serif; font-size: clamp(2.35rem, 4vw, 4rem); line-height: 1.08; letter-spacing: -.055em; }
.section-heading > p { width: 410px; margin: 0 0 6px; color: var(--ink-soft); line-height: 1.75; }

.js .reveal { opacity: 0; transform: translateY(24px); transition: opacity .65s var(--ease-out), transform .65s var(--ease-out); }
.reveal.is-visible { opacity: 1; transform: translateY(0); }

.services { background: var(--surface); }
.service-bento { display: grid; grid-template-columns: 1.1fr .9fr; gap: 18px; }
.service-card { position: relative; min-height: 510px; overflow: hidden; padding: 30px; border-radius: var(--radius-lg); box-shadow: var(--shadow-md); isolation: isolate; transform-style: preserve-3d; transition: box-shadow .3s ease; }
.service-card:hover { box-shadow: 0 34px 90px rgba(8,17,31,.19); }
.service-card-sell { color: #fff; background: linear-gradient(145deg, #cf0f23 0%, #ed1e35 54%, #a70717 100%); }
.service-card-sell::after { position: absolute; z-index: -1; right: -25%; bottom: -35%; width: 480px; height: 480px; content: ""; border: 1px solid rgba(255,255,255,.15); border-radius: 50%; box-shadow: 0 0 0 60px rgba(255,255,255,.035), 0 0 0 120px rgba(255,255,255,.025); }
.service-card-buy { color: #fff; background: linear-gradient(145deg, var(--navy-900), #132a44); }
.service-card-top { position: relative; z-index: 2; display: flex; align-items: center; justify-content: space-between; }
.service-number { color: rgba(255,255,255,.5); font-family: "Sora", sans-serif; font-size: 11px; font-weight: 800; letter-spacing: .18em; }
.icon-shell-light { background: rgba(255,255,255,.14); }.icon-shell-light svg { stroke: #fff; }
.service-card-copy { position: relative; z-index: 2; max-width: 470px; margin-top: 80px; }
.service-label { display: inline-block; margin-bottom: 12px; color: rgba(255,255,255,.65); font-size: 11px; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; }
.service-card h3 { margin: 0; font-family: "Sora", sans-serif; font-size: clamp(2rem, 3vw, 3rem); line-height: 1.08; letter-spacing: -.05em; }
.service-card p { max-width: 440px; margin: 20px 0 30px; color: rgba(255,255,255,.68); line-height: 1.7; }
.text-link { display: inline-flex; align-items: center; gap: 10px; min-height: 44px; padding: 0; border: 0; cursor: pointer; color: #fff; background: transparent; font-size: 13px; font-weight: 800; }
.coin { position: absolute; z-index: 1; display: grid; place-items: center; border: 1px solid rgba(255,255,255,.3); border-radius: 50%; color: rgba(255,255,255,.65); background: linear-gradient(145deg, rgba(255,255,255,.23), rgba(255,255,255,.04)); box-shadow: 0 25px 50px rgba(74,0,9,.2); font-family: "Sora", sans-serif; font-weight: 800; backdrop-filter: blur(5px); }
.coin-one { right: 12%; bottom: 7%; width: 118px; height: 118px; transform: rotate(18deg); }.coin-two { right: 3%; bottom: 29%; width: 75px; height: 75px; transform: rotate(-12deg); }.coin-three { right: 30%; bottom: -5%; width: 85px; height: 85px; }
.route-art { position: absolute; right: -5px; bottom: 10px; width: 48%; opacity: .3; }
.route-art svg { width: 100%; }.route-art path { fill: none; stroke: #fff; stroke-width: 1.2; stroke-dasharray: 4 8; }.route-art circle { fill: var(--red-500); }

.mini-service-card { display: flex; align-items: center; gap: 18px; min-height: 132px; padding: 24px; border: 1px solid var(--line); border-radius: var(--radius-md); background: var(--surface-strong); box-shadow: var(--shadow-sm); }
.mini-service-card strong { display: block; margin-bottom: 4px; font-family: "Sora", sans-serif; font-size: 17px; }
.mini-service-card p { margin: 0; color: var(--ink-soft); font-size: 13px; }
.icon-shell-cyan { background: rgba(84,215,226,.13); }.icon-shell-cyan svg { stroke: #168894; }
.icon-shell-gold { background: rgba(244,198,91,.16); }.icon-shell-gold svg { stroke: #9b6d08; }

.showcase { overflow: hidden; color: #fff; background: var(--navy-950); }
.showcase::before { position: absolute; top: -300px; right: -200px; width: 700px; height: 700px; content: ""; border-radius: 50%; background: radial-gradient(circle, rgba(227,19,42,.15), transparent 68%); }
.showcase-layout { display: grid; grid-template-columns: .85fr 1.15fr; align-items: center; gap: 90px; min-height: 720px; }
.section-kicker-light { color: var(--gold-500); }
.showcase-copy h2 { margin-bottom: 24px; }
.showcase-copy > p { max-width: 500px; margin: 0; color: rgba(255,255,255,.62); line-height: 1.8; }
.showcase-stats { display: flex; gap: 38px; margin: 38px 0; }
.showcase-stats div { display: grid; gap: 2px; padding-right: 28px; border-right: 1px solid rgba(255,255,255,.12); }.showcase-stats div:last-child { padding-right: 0; border-right: 0; }
.showcase-stats strong { font-family: "Sora", sans-serif; font-size: 28px; line-height: 1; }.showcase-stats span { color: rgba(255,255,255,.45); font-size: 10px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }

.image-collage { position: relative; min-height: 630px; }
.image-collage figure { position: absolute; margin: 0; overflow: hidden; border: 1px solid rgba(255,255,255,.13); border-radius: 25px; background: #fff; box-shadow: 0 30px 90px rgba(0,0,0,.43); }
.image-collage img { width: 100%; height: 100%; object-fit: cover; }
.collage-main { z-index: 2; top: 75px; left: 0; width: 78%; height: 365px; transform: rotate(-3deg); }
.collage-main figcaption { position: absolute; right: 15px; bottom: 15px; left: 15px; display: flex; align-items: center; justify-content: space-between; padding: 12px 15px; border: 1px solid rgba(255,255,255,.16); border-radius: 13px; color: #fff; background: rgba(5,11,20,.73); font-size: 11px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; backdrop-filter: blur(10px); }
.collage-main figcaption span { color: var(--gold-500); }
.collage-side { width: 43%; height: 245px; }.collage-side-top { z-index: 1; top: 5px; right: 0; transform: rotate(6deg); }.collage-side-bottom { z-index: 3; right: 10px; bottom: 18px; transform: rotate(3deg); }
.collage-stamp { position: absolute; z-index: 4; bottom: 55px; left: 8%; display: grid; place-items: center; width: 142px; height: 142px; border: 1px solid rgba(255,255,255,.28); border-radius: 50%; color: #fff; background: var(--red-600); box-shadow: 0 22px 55px rgba(227,19,42,.32); transform: rotate(-9deg); }
.collage-stamp span { margin-top: 14px; font-family: "Sora", sans-serif; font-size: 12px; }.collage-stamp strong { margin-top: -14px; font-family: "Sora", sans-serif; font-size: 18px; }.collage-stamp small { margin-top: -14px; color: rgba(255,255,255,.7); font-size: 8px; letter-spacing: .15em; text-transform: uppercase; }

.process { overflow: hidden; background: #fff; }
.process::before { position: absolute; top: -180px; left: -180px; width: 520px; height: 520px; content: ""; border-radius: 50%; background: radial-gradient(circle, rgba(227,19,42,.075), transparent 68%); pointer-events: none; }
.process::after { position: absolute; right: -240px; bottom: -260px; width: 620px; height: 620px; content: ""; border: 1px solid rgba(8,17,31,.05); border-radius: 50%; box-shadow: 0 0 0 70px rgba(8,17,31,.018), 0 0 0 140px rgba(8,17,31,.012); pointer-events: none; }
.section-heading-centered { display: block; max-width: 760px; margin-inline: auto; text-align: center; }
.section-heading-centered > p { width: auto; max-width: 620px; margin: 20px auto 0; }
.process-grid { position: relative; z-index: 1; display: grid; grid-template-columns: repeat(3, 1fr); align-items: start; gap: 28px; margin: 0; padding: 0; list-style: none; }
.process-grid::before { position: absolute; z-index: 0; top: 125px; right: 8%; left: 8%; height: 2px; content: ""; opacity: .65; background: repeating-linear-gradient(90deg, rgba(227,19,42,.28) 0 6px, transparent 6px 14px); }
.process-step { position: relative; z-index: 1; min-height: 445px; padding: 11px 11px 28px; border: 1px solid rgba(8,17,31,.08); border-radius: 30px; background: #fff; box-shadow: 0 20px 60px rgba(8,17,31,.09); transition: transform .28s var(--ease-spring), box-shadow .28s ease, border-color .28s ease; }
.process-step:nth-child(2), .process-step:nth-child(3) { margin-top: 0; }
.process-step:hover { border-color: rgba(227,19,42,.18); box-shadow: 0 32px 80px rgba(8,17,31,.15); transform: translateY(-8px); }
.process-step:not(:last-child)::after { position: absolute; z-index: 4; top: 119px; right: -30px; width: 31px; height: 2px; content: ""; background: linear-gradient(90deg, rgba(227,19,42,.18), var(--red-600)); }
.step-visual { position: relative; min-height: 228px; overflow: hidden; border-radius: 22px; isolation: isolate; }
.step-index { position: absolute; z-index: 6; top: 18px; right: 20px; color: rgba(8,17,31,.42); font-family: "Sora", sans-serif; font-size: 10px; font-weight: 800; letter-spacing: .16em; }
.step-icon { display: grid; place-items: center; width: 64px; height: 64px; border: 1px solid rgba(255,255,255,.72); border-radius: 20px; color: var(--red-600); background: rgba(255,255,255,.88); box-shadow: 0 18px 38px rgba(105,5,19,.12); backdrop-filter: blur(8px); }
.step-icon svg { width: 28px; fill: none; stroke: currentColor; stroke-width: 1.65; stroke-linecap: round; stroke-linejoin: round; }
.step-copy { padding: 23px 15px 0; }
.step-label { display: inline-flex; align-items: center; gap: 7px; margin-bottom: 7px; color: var(--red-600); font-size: 9px; font-weight: 800; letter-spacing: .15em; text-transform: uppercase; }
.step-label::before { width: 15px; height: 2px; content: ""; border-radius: 2px; background: currentColor; }
.process-step h3 { margin: 0 0 9px; font-family: "Sora", sans-serif; font-size: 20px; letter-spacing: -.035em; }.process-step p { margin: 0; color: var(--ink-soft); font-size: 13px; line-height: 1.65; }

.step-visual-choice { background: linear-gradient(145deg, #fff5f6 0%, #ffe0e5 100%); }
.step-visual-choice::before { position: absolute; inset: 0; content: ""; opacity: .3; background-image: linear-gradient(rgba(227,19,42,.1) 1px, transparent 1px), linear-gradient(90deg, rgba(227,19,42,.1) 1px, transparent 1px); background-size: 27px 27px; mask-image: linear-gradient(to bottom, #000, transparent 82%); }
.step-visual-choice .step-icon { position: absolute; z-index: 3; top: 38px; left: 50%; transform: translateX(-50%); transition: transform .3s var(--ease-spring); }
.visual-orbit-line { position: absolute; z-index: 1; top: 70px; left: 50%; border: 1px solid rgba(227,19,42,.16); border-radius: 50%; transform: translate(-50%,-50%); }
.visual-orbit-line-one { width: 145px; height: 145px; }.visual-orbit-line-two { width: 215px; height: 215px; border-style: dashed; opacity: .6; }
.choice-pills { position: absolute; z-index: 4; right: 24px; bottom: 39px; left: 24px; display: grid; grid-template-columns: 1fr 1fr; gap: 7px; padding: 5px; border: 1px solid rgba(227,19,42,.1); border-radius: 14px; background: rgba(255,255,255,.68); box-shadow: 0 12px 28px rgba(119,5,20,.08); backdrop-filter: blur(8px); }
.choice-pills span { display: flex; align-items: center; justify-content: center; gap: 6px; min-height: 36px; border-radius: 10px; color: #7a4a50; font-size: 10px; font-weight: 800; }
.choice-pills span i { width: 6px; height: 6px; border: 1px solid currentColor; border-radius: 50%; }.choice-pills span.is-active { color: #fff; background: var(--red-600); box-shadow: 0 8px 18px rgba(227,19,42,.22); }.choice-pills span.is-active i { border-color: #fff; background: #fff; }
.visual-status { position: absolute; z-index: 4; bottom: 13px; left: 50%; display: flex; align-items: center; gap: 5px; color: #85535a; font-size: 7px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; transform: translateX(-50%); white-space: nowrap; }.visual-status i { width: 5px; height: 5px; border-radius: 50%; background: var(--red-600); box-shadow: 0 0 0 4px rgba(227,19,42,.1); }
.process-step-choice:hover .step-icon { transform: translateX(-50%) translateY(-4px) rotate(-3deg); }

.step-visual-details { color: #fff; background: linear-gradient(145deg, var(--navy-950) 0%, #142a45 100%); }
.step-visual-details::before { position: absolute; top: -110px; right: -70px; width: 250px; height: 250px; content: ""; border: 1px solid rgba(84,215,226,.14); border-radius: 50%; box-shadow: 0 0 0 40px rgba(84,215,226,.025), 0 0 0 80px rgba(84,215,226,.015); }
.step-visual-details .step-index { color: rgba(255,255,255,.54); }
.detail-glow { position: absolute; bottom: -80px; left: -60px; width: 230px; height: 230px; border-radius: 50%; background: radial-gradient(circle, rgba(227,19,42,.23), transparent 70%); }
.miles-widget { position: absolute; z-index: 3; top: 34px; right: 25px; left: 25px; min-height: 166px; padding: 15px; border: 1px solid rgba(255,255,255,.13); border-radius: 19px; background: rgba(255,255,255,.075); box-shadow: 0 18px 50px rgba(0,0,0,.23); backdrop-filter: blur(12px); transition: transform .3s var(--ease-spring), border-color .3s ease; }
.miles-widget-head { display: flex; align-items: center; gap: 10px; }.miles-widget-head .step-icon { width: 39px; height: 39px; border-radius: 12px; color: var(--cyan-400); background: rgba(84,215,226,.09); box-shadow: none; }.miles-widget-head .step-icon svg { width: 20px; }.miles-widget-head small { color: rgba(255,255,255,.62); font-size: 8px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.miles-amount { display: flex; align-items: baseline; gap: 7px; margin: 12px 0 9px; font-variant-numeric: tabular-nums; }.miles-amount strong { font-family: "Sora", sans-serif; font-size: 27px; line-height: 1; }.miles-amount span { color: var(--gold-500); font-size: 8px; font-weight: 800; letter-spacing: .12em; }
.widget-meta { display: grid; grid-template-columns: 1fr 1fr; gap: 7px; padding-top: 10px; border-top: 1px solid rgba(255,255,255,.1); }.widget-meta span { display: flex; align-items: center; gap: 5px; color: rgba(255,255,255,.57); }.widget-meta svg { width: 13px; fill: none; stroke: var(--cyan-400); stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round; }.widget-meta b { font-size: 7px; font-weight: 700; }
.process-step-details .step-label { color: #168894; }.process-step-details:hover .miles-widget { border-color: rgba(84,215,226,.34); transform: translateY(-5px) scale(1.015); }

.step-visual-offer { background: linear-gradient(145deg, #fff9ea 0%, #ffe4ad 100%); }
.step-visual-offer::before { position: absolute; inset: 0; content: ""; background: linear-gradient(115deg, transparent 35%, rgba(255,255,255,.48) 50%, transparent 65%); transform: translateX(-100%); transition: transform .65s var(--ease-out); }
.offer-sun { position: absolute; border: 1px solid rgba(166,96,0,.13); border-radius: 50%; }.offer-sun-one { right: -45px; bottom: -55px; width: 190px; height: 190px; }.offer-sun-two { right: -5px; bottom: -15px; width: 110px; height: 110px; border-style: dashed; }
.message-stack { position: absolute; z-index: 3; top: 50px; right: 23px; left: 23px; height: 112px; }
.message-back { position: absolute; inset: 12px 12px -12px; border-radius: 18px; background: rgba(166,96,0,.11); transform: rotate(3deg); }
.message-front { position: absolute; inset: 0; display: grid; grid-template-columns: 47px 1fr 25px; align-items: center; gap: 11px; padding: 16px; border: 1px solid rgba(166,96,0,.12); border-radius: 19px; background: rgba(255,255,255,.88); box-shadow: 0 18px 40px rgba(112,65,0,.13); transition: transform .3s var(--ease-spring); }
.offer-check { display: grid; place-items: center; width: 47px; height: 47px; border-radius: 15px; color: #fff; background: var(--red-600); box-shadow: 0 10px 22px rgba(227,19,42,.21); }.offer-check svg { width: 26px; fill: none; stroke: currentColor; stroke-width: 1.6; stroke-linecap: round; stroke-linejoin: round; }.message-front > span:nth-child(2) { display: grid; }.message-front small { color: #926210; font-size: 7px; font-weight: 800; letter-spacing: .11em; text-transform: uppercase; }.message-front strong { color: var(--navy-950); font-family: "Sora", sans-serif; font-size: 19px; }
.message-tick { display: grid; place-items: center; width: 25px; height: 25px; border-radius: 50%; color: #fff; background: #12855f; }.message-tick svg { width: 14px; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.secure-pill { position: absolute; z-index: 4; bottom: 19px; left: 50%; display: flex; align-items: center; gap: 6px; min-height: 27px; padding: 0 11px; border: 1px solid rgba(166,96,0,.14); border-radius: 999px; color: #7f570f; background: rgba(255,255,255,.62); font-size: 7px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; transform: translateX(-50%); white-space: nowrap; }.secure-pill svg { width: 13px; fill: none; stroke: currentColor; stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round; }
.process-step-offer .step-label { color: #a66000; }.process-step-offer:hover .step-visual-offer::before { transform: translateX(100%); }.process-step-offer:hover .message-front { transform: translateY(-5px) rotate(-1deg); }

.trust-section { background: var(--surface); }
.trust-layout { display: grid; grid-template-columns: 1.04fr .96fr; align-items: center; gap: 90px; }
.trust-visual { position: relative; min-height: 540px; }
.trust-visual::before { position: absolute; top: 15px; right: 10px; width: 76%; height: 86%; content: ""; border-radius: var(--radius-lg); background: var(--red-600); transform: rotate(5deg); }
.trust-visual figure { position: absolute; z-index: 1; top: 58px; left: 0; width: 91%; height: 415px; margin: 0; overflow: hidden; border-radius: var(--radius-lg); box-shadow: var(--shadow-md); }
.trust-visual figure img { width: 100%; height: 100%; object-fit: cover; }
.trust-seal { position: absolute; z-index: 2; right: 0; bottom: 14px; display: flex; align-items: center; gap: 13px; min-width: 210px; padding: 15px 18px; border: 1px solid var(--line); border-radius: 18px; background: #fff; box-shadow: var(--shadow-md); }
.trust-seal svg { width: 34px; fill: none; stroke: var(--red-600); stroke-width: 1.6; stroke-linecap: round; stroke-linejoin: round; }.trust-seal span { display: grid; }.trust-seal strong { font-size: 13px; }.trust-seal small { color: var(--ink-soft); font-size: 10px; }
.trust-copy > p { margin: 22px 0 30px; color: var(--ink-soft); line-height: 1.8; }
.trust-list { display: grid; gap: 17px; margin: 0; padding: 0; list-style: none; }
.trust-list li { display: flex; align-items: flex-start; gap: 13px; }
.trust-list li > span { display: grid; flex: 0 0 auto; place-items: center; width: 29px; height: 29px; margin-top: 2px; border-radius: 9px; color: #fff; background: var(--red-600); }
.trust-list svg { width: 15px; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }.trust-list div { display: grid; }.trust-list strong { font-size: 14px; }.trust-list small { margin-top: 2px; color: var(--ink-soft); font-size: 12px; }
.security-note { display: flex; align-items: flex-start; gap: 13px; margin-top: 28px; padding: 16px; border: 1px solid rgba(227,19,42,.14); border-radius: 16px; background: rgba(227,19,42,.055); }
.security-note svg { flex: 0 0 auto; width: 23px; margin-top: 2px; fill: none; stroke: var(--red-600); stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }.security-note p { margin: 0; color: #6d323a; font-size: 11px; line-height: 1.6; }

.quote-section { overflow: hidden; color: #fff; background: linear-gradient(132deg, var(--navy-950), #0e1c30); }
.quote-section::before { position: absolute; inset: 0; content: ""; opacity: .22; background-image: linear-gradient(rgba(255,255,255,.04) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.04) 1px, transparent 1px); background-size: 72px 72px; mask-image: linear-gradient(90deg, #000, transparent 90%); }
.quote-glow { position: absolute; top: -200px; left: -240px; width: 700px; height: 700px; border-radius: 50%; background: radial-gradient(circle, rgba(227,19,42,.19), transparent 68%); }
.quote-layout { position: relative; display: grid; grid-template-columns: .9fr 1.1fr; align-items: center; gap: 80px; }
.quote-intro > p { max-width: 500px; margin: 24px 0; color: rgba(255,255,255,.62); line-height: 1.8; }
.quote-feature { display: flex; align-items: center; gap: 13px; margin-top: 34px; }
.quote-feature-icon { display: grid; place-items: center; width: 50px; height: 50px; border: 1px solid rgba(255,255,255,.12); border-radius: 15px; background: rgba(255,255,255,.06); }.quote-feature-icon svg { width: 26px; fill: none; stroke: var(--gold-500); stroke-width: 1.6; stroke-linecap: round; stroke-linejoin: round; }
.quote-feature div { display: grid; }.quote-feature strong { font-size: 13px; }.quote-feature small { color: rgba(255,255,255,.5); font-size: 11px; }

.quote-form { padding: 34px; border: 1px solid rgba(255,255,255,.12); border-radius: 30px; background: rgba(255,255,255,.065); box-shadow: 0 40px 100px rgba(0,0,0,.3); backdrop-filter: blur(18px); }
.quote-form fieldset { margin: 0; padding: 0; border: 0; }.quote-form legend, .field > span:first-child { display: block; margin-bottom: 9px; color: rgba(255,255,255,.72); font-size: 11px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }.field > span:first-child em { color: var(--red-500); font-style: normal; }.field > span:first-child small { color: rgba(255,255,255,.36); font-size: 9px; text-transform: none; }
.service-choice { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.service-choice legend { grid-column: 1 / -1; }
.service-choice label { cursor: pointer; }
.service-choice input { position: absolute; opacity: 0; pointer-events: none; }
.service-choice label > span { display: grid; grid-template-columns: 38px 1fr; align-items: center; min-height: 76px; padding: 12px; border: 1px solid rgba(255,255,255,.11); border-radius: 15px; background: rgba(5,11,20,.25); transition: border-color .2s ease, background .2s ease, transform .2s ease; }
.service-choice label > span svg { grid-row: 1 / 3; width: 25px; fill: none; stroke: rgba(255,255,255,.55); stroke-width: 1.6; stroke-linecap: round; stroke-linejoin: round; }
.service-choice label b { font-size: 12px; }.service-choice label small { color: rgba(255,255,255,.42); font-size: 9px; }
.service-choice input:checked + span { border-color: var(--red-500); background: rgba(227,19,42,.12); box-shadow: inset 0 0 0 1px rgba(227,19,42,.25); }.service-choice input:checked + span svg { stroke: var(--red-500); }
.service-choice input:focus-visible + span { outline: 3px solid var(--cyan-400); outline-offset: 3px; }
.service-choice label:active > span { transform: scale(.98); }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-top: 21px; }
.field { display: block; margin-top: 18px; }
.form-row .field { margin-top: 0; }
.input-wrap { display: flex; align-items: center; min-height: 56px; padding: 0 14px; border: 1px solid rgba(255,255,255,.11); border-radius: 14px; background: rgba(5,11,20,.27); transition: border-color .2s ease, box-shadow .2s ease; }
.input-wrap:focus-within { border-color: var(--cyan-400); box-shadow: 0 0 0 3px rgba(84,215,226,.1); }
.input-wrap svg { flex: 0 0 auto; width: 20px; margin-right: 10px; fill: none; stroke: rgba(255,255,255,.42); stroke-width: 1.55; stroke-linecap: round; stroke-linejoin: round; }
.input-wrap input { width: 100%; min-width: 0; height: 52px; padding: 0; border: 0; outline: 0; color: #fff; background: transparent; font-size: 14px; }
.input-wrap input::placeholder, .field textarea::placeholder { color: rgba(255,255,255,.28); }.input-wrap > small { color: rgba(255,255,255,.3); font-size: 9px; font-weight: 800; letter-spacing: .1em; }
.field textarea { width: 100%; min-height: 96px; padding: 15px; resize: vertical; border: 1px solid rgba(255,255,255,.11); border-radius: 14px; outline: 0; color: #fff; background: rgba(5,11,20,.27); font-size: 14px; transition: border-color .2s ease, box-shadow .2s ease; }.field textarea:focus { border-color: var(--cyan-400); box-shadow: 0 0 0 3px rgba(84,215,226,.1); }
.field-help, .field-error { display: block; min-height: 18px; margin-top: 5px; color: rgba(255,255,255,.62); font-size: 9px; }.field-error { min-height: 0; color: #ff8c98; }.field.has-error .input-wrap { border-color: #ff6575; }
.message-preview { margin-top: 18px; padding: 14px 16px; border-left: 2px solid var(--gold-500); border-radius: 0 12px 12px 0; background: rgba(255,255,255,.04); }.message-preview span { color: var(--gold-500); font-size: 8px; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; }.message-preview p { margin: 4px 0 0; color: rgba(255,255,255,.68); font-size: 11px; line-height: 1.5; }
.form-actions { display: grid; grid-template-columns: 1fr 56px; gap: 10px; margin-top: 16px; }.copy-button { display: grid; place-items: center; width: 56px; height: 56px; padding: 0; border: 1px solid rgba(255,255,255,.14); border-radius: 15px; cursor: pointer; color: #fff; background: rgba(255,255,255,.06); transition: background .2s ease, transform .2s ease; }.copy-button:hover { background: rgba(255,255,255,.12); }.copy-button:active { transform: scale(.95); }.copy-button svg { width: 22px; fill: none; stroke: currentColor; stroke-width: 1.6; stroke-linecap: round; stroke-linejoin: round; }
.privacy-copy { display: flex; align-items: flex-start; justify-content: center; gap: 7px; margin: 13px 0 0; color: rgba(255,255,255,.62); font-size: 9px; text-align: center; }.privacy-copy svg { flex: 0 0 auto; width: 14px; margin-top: 1px; fill: none; stroke: currentColor; stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round; }

.faq { background: #fff; }
.faq-layout { display: grid; grid-template-columns: .75fr 1.25fr; align-items: start; gap: 100px; }
.faq-heading { position: sticky; top: 125px; }.faq-heading p { color: var(--ink-soft); }.faq-list { border-top: 1px solid var(--line); }
.faq-list details { border-bottom: 1px solid var(--line); }.faq-list summary { position: relative; display: flex; align-items: center; justify-content: space-between; gap: 20px; min-height: 86px; cursor: pointer; list-style: none; font-family: "Sora", sans-serif; font-size: 16px; font-weight: 600; }.faq-list summary::-webkit-details-marker { display: none; }.faq-list summary span { position: relative; flex: 0 0 auto; width: 40px; height: 40px; border: 1px solid var(--line); border-radius: 50%; transition: background .2s ease, border-color .2s ease; }.faq-list summary span::before, .faq-list summary span::after { position: absolute; top: 19px; left: 13px; width: 14px; height: 1.5px; content: ""; background: var(--ink); transition: transform .25s ease; }.faq-list summary span::after { transform: rotate(90deg); }.faq-list details[open] summary { color: var(--red-600); }.faq-list details[open] summary span { border-color: var(--red-600); background: var(--red-600); }.faq-list details[open] summary span::before, .faq-list details[open] summary span::after { background: #fff; }.faq-list details[open] summary span::after { transform: rotate(0); }.faq-list details p { max-width: 650px; margin: -4px 64px 27px 0; color: var(--ink-soft); font-size: 14px; line-height: 1.75; }

.closing-cta { position: relative; z-index: 1; padding: 0 0 30px; background: #fff; }
.closing-inner { position: relative; display: flex; align-items: center; justify-content: space-between; gap: 30px; min-height: 330px; overflow: hidden; padding: 56px; border-radius: var(--radius-lg); color: #fff; background: linear-gradient(128deg, var(--red-700), var(--red-500)); box-shadow: var(--shadow-red); }
.closing-inner::after { position: absolute; right: -80px; bottom: -250px; width: 470px; height: 470px; content: ""; border: 1px solid rgba(255,255,255,.18); border-radius: 50%; box-shadow: 0 0 0 60px rgba(255,255,255,.04), 0 0 0 120px rgba(255,255,255,.025); }
.closing-inner > div, .closing-inner .button { position: relative; z-index: 2; }.closing-inner span { color: rgba(255,255,255,.66); font-size: 10px; font-weight: 800; letter-spacing: .16em; text-transform: uppercase; }.closing-inner h2 { margin: 11px 0 0; font-family: "Sora", sans-serif; font-size: clamp(2.15rem, 4vw, 3.8rem); line-height: 1.06; letter-spacing: -.055em; }
.closing-plane { position: absolute; z-index: 1; top: 12px; right: 22%; width: 180px; opacity: .25; }.closing-plane > path:first-child { fill: none; stroke: #fff; stroke-width: 1.1; stroke-dasharray: 4 7; }.closing-plane .plane { fill: #fff; }

.site-footer { position: relative; z-index: 1; padding: 70px 0 100px; color: #fff; background: var(--navy-950); }
.footer-main { display: grid; grid-template-columns: .7fr 1.4fr .7fr; align-items: center; gap: 40px; padding-bottom: 44px; border-bottom: 1px solid rgba(255,255,255,.1); }.brand-footer { justify-self: start; }.footer-main > p { max-width: 440px; margin: 0 auto; color: rgba(255,255,255,.48); font-size: 13px; text-align: center; }.footer-link { display: inline-flex; align-items: center; justify-self: end; gap: 8px; min-height: 44px; font-size: 12px; font-weight: 800; }
.footer-bottom { display: grid; grid-template-columns: .6fr 1.4fr; gap: 50px; padding-top: 28px; color: rgba(255,255,255,.58); font-size: 9px; }.footer-bottom p { margin: 0; }.legal { justify-self: end; max-width: 720px; text-align: right; }

.mobile-sticky-cta { display: none; }
.whatsapp-float { position: fixed; z-index: 960; right: 24px; bottom: 24px; display: flex; align-items: center; gap: 10px; min-height: 58px; color: #fff; transition: transform .25s var(--ease-spring), bottom .3s var(--ease-out); }
.whatsapp-label { display: grid; padding: 9px 14px; border: 1px solid rgba(255,255,255,.13); border-radius: 15px; background: rgba(5,11,20,.9); box-shadow: 0 16px 38px rgba(0,0,0,.24); opacity: 0; transform: translateX(10px); transition: opacity .22s ease, transform .22s var(--ease-out); backdrop-filter: blur(12px); }
.whatsapp-label small { color: rgba(255,255,255,.58); font-size: 8px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }.whatsapp-label strong { font-size: 11px; }
.whatsapp-icon { display: grid; flex: 0 0 auto; place-items: center; width: 60px; height: 60px; border: 1px solid rgba(255,255,255,.28); border-radius: 20px; background: #1fae63; box-shadow: 0 16px 36px rgba(15,151,81,.34); transition: transform .25s var(--ease-spring), background .2s ease; }
.whatsapp-icon svg { width: 34px; fill: none; stroke: #fff; stroke-width: 1.45; stroke-linecap: round; stroke-linejoin: round; }
.whatsapp-float:hover { transform: translateY(-4px); }.whatsapp-float:hover .whatsapp-label { opacity: 1; transform: translateX(0); }.whatsapp-float:hover .whatsapp-icon { background: #25c16e; transform: rotate(-4deg) scale(1.04); }
.toast { position: fixed; z-index: 1400; right: 24px; bottom: 24px; display: flex; align-items: center; gap: 10px; min-height: 54px; padding: 12px 18px; border: 1px solid rgba(255,255,255,.14); border-radius: 16px; color: #fff; background: rgba(5,11,20,.94); box-shadow: 0 20px 50px rgba(0,0,0,.3); opacity: 0; pointer-events: none; transform: translateY(15px); transition: opacity .25s ease, transform .25s var(--ease-out); }.toast.is-visible { opacity: 1; transform: translateY(0); }.toast svg { width: 20px; fill: none; stroke: var(--cyan-400); stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }.toast span { font-size: 12px; font-weight: 700; }

@keyframes loader-line { from { transform: scaleX(0); } to { transform: scaleX(1); } }
@keyframes hero-in { to { opacity: 1; transform: translateY(0); } }
@keyframes draw-route { from { stroke-dashoffset: 500; opacity: 0; } to { stroke-dashoffset: 0; opacity: 1; } }
@keyframes sheen { to { transform: rotate(23deg) translateX(620%); } }
@keyframes scroll-dot { 0% { opacity: 0; transform: translateY(-2px); } 45% { opacity: 1; } 100% { opacity: 0; transform: translateY(10px); } }
@keyframes marquee { to { transform: translateX(-50%); } }

@media (max-width: 1100px) {
  :root { --container: 980px; }
  .desktop-nav { gap: 22px; }
  .hero-layout { gap: 20px; }
  .hero-card-stage { width: 430px; }
  .orbit-one { width: 480px; height: 480px; }
  .service-card { min-height: 490px; }
  .showcase-layout { gap: 45px; }
  .trust-layout { gap: 55px; }
  .quote-layout { gap: 45px; }
}

@media (max-width: 900px) {
  :root { --header-height: 72px; }
  .desktop-nav, .header-cta { display: none; }
  .menu-toggle { display: block; }
  .mobile-menu { position: fixed; z-index: 999; top: var(--header-height); right: 16px; left: 16px; display: grid; gap: 4px; padding: 15px; border: 1px solid rgba(255,255,255,.12); border-radius: 20px; background: rgba(5,11,20,.97); box-shadow: 0 30px 80px rgba(0,0,0,.4); opacity: 0; pointer-events: none; transform: translateY(-12px); transition: opacity .22s ease, transform .22s var(--ease-out); }
  .mobile-menu.is-open { opacity: 1; pointer-events: auto; transform: translateY(0); }
  .mobile-menu > a:not(.button) { display: flex; align-items: center; min-height: 48px; padding: 0 12px; border-radius: 11px; color: rgba(255,255,255,.72); font-size: 14px; font-weight: 700; }.mobile-menu > a:not(.button):hover { color: #fff; background: rgba(255,255,255,.07); }.mobile-menu .button { margin-top: 5px; }
  .hero { min-height: 1080px; }
  .hero-layout { grid-template-columns: 1fr; align-content: center; gap: 30px; min-height: 1030px; padding-top: 110px; }
  .hero-copy { max-width: 720px; padding-top: 0; }
  .hero h1 { font-size: clamp(3.8rem, 10vw, 6rem); }
  .hero-visual { min-height: 490px; }
  .hero-card-stage { width: 500px; }
  .hero-bottom { bottom: 14px; }
  .section { padding: 100px 0; }
  .section-heading { align-items: start; flex-direction: column; gap: 20px; }
  .section-heading > p { width: auto; max-width: 620px; }
  .service-bento { grid-template-columns: 1fr 1fr; }
  .service-card { grid-column: 1 / -1; min-height: 450px; }
  .service-card-copy { margin-top: 55px; }
  .showcase-layout { grid-template-columns: 1fr; gap: 65px; }
  .image-collage { max-width: 680px; width: 100%; margin-inline: auto; }
  .process-grid { grid-template-columns: 1fr; gap: 18px; max-width: 650px; margin-inline: auto; }
  .process-grid::before, .process-step:not(:last-child)::after { display: none; }
  .process-step, .process-step:nth-child(2), .process-step:nth-child(3) { min-height: 0; margin-top: 0; padding: 11px 11px 25px; }
  .step-visual { min-height: 222px; }
  .step-copy { padding: 21px 14px 0; }
  .trust-layout, .quote-layout { grid-template-columns: 1fr; gap: 60px; }
  .trust-visual { max-width: 680px; width: 100%; margin-inline: auto; }
  .quote-intro { max-width: 720px; }
  .quote-form { max-width: 760px; width: 100%; margin-inline: auto; }
  .faq-layout { grid-template-columns: 1fr; gap: 45px; }.faq-heading { position: static; }
  .closing-inner { padding: 48px 38px; }
}

@media (max-width: 640px) {
  :root { --radius-lg: 28px; }
  body { padding-bottom: 78px; }
  .container { width: min(calc(100% - 32px), var(--container)); }
  .brand-icon { width: 40px; height: 40px; border-radius: 13px; }.brand-copy strong { font-size: 17px; }
  .hero { min-height: 980px; }
  .hero-layout { align-content: start; gap: 28px; min-height: 950px; padding-top: 118px; }
  .hero-copy { text-align: left; }
  .hero h1 { margin-top: 20px; font-size: clamp(3.2rem, 16vw, 4.55rem); }
  .hero-lead { font-size: 16px; line-height: 1.65; }
  .hero-actions { display: grid; margin-top: 26px; }.hero-actions .button { width: 100%; }
  .hero-trust { gap: 10px 18px; margin-top: 20px; }.hero-trust li { font-size: 10px; }
  .hero-visual { min-height: 330px; margin-top: 18px; }
  .hero-card-stage { top: 50%; width: 330px; max-width: 92%; }
  .hero-image-frame { padding: 8px; border-radius: 23px; }.hero-image-frame::before { inset: 8px; border-radius: 16px; }.hero-image-frame img { border-radius: 16px; }
  .floating-card { min-width: 155px; padding: 9px 11px; border-radius: 13px; }.floating-card-top { top: -24px; right: -4px; }.floating-card-bottom { bottom: -32px; left: -5px; }.floating-card .icon-shell, .mini-bars { width: 34px; height: 34px; }.floating-card strong { font-size: 9px; }.floating-card small { font-size: 7px; }
  .miles-chip { right: 2px; bottom: -78px; }.miles-chip > span { width: 38px; height: 38px; }.miles-chip strong { font-size: 14px; }.orbit-one { width: 355px; height: 355px; }.orbit-two { width: 270px; height: 270px; }
  .hero-bottom { display: none; }
  .signal-strip { transform: none; }
  .signal-track { min-height: 50px; gap: 25px; }.signal-track span { font-size: 10px; }
  .section { padding: 82px 0; }
  .section-heading { margin-bottom: 38px; }
  .section-heading h2, .showcase-copy h2, .trust-copy h2, .quote-intro h2, .faq-heading h2 { font-size: clamp(2.15rem, 10vw, 3rem); }
  .section-heading > p, .showcase-copy > p, .trust-copy > p, .quote-intro > p { font-size: 14px; }
  .service-bento { grid-template-columns: 1fr; }
  .service-card { min-height: 485px; padding: 23px; }
  .service-card-copy { margin-top: 65px; }.service-card h3 { font-size: 2rem; }.service-card p { font-size: 14px; }
  .mini-service-card { min-height: 120px; padding: 20px; }
  .coin-one { right: 2%; width: 100px; height: 100px; }.coin-two { right: -4%; bottom: 28%; }
  .showcase-layout { min-height: auto; gap: 50px; }
  .showcase-stats { gap: 16px; justify-content: space-between; }.showcase-stats div { padding-right: 12px; }.showcase-stats strong { font-size: 23px; }.showcase-stats span { font-size: 8px; }
  .image-collage { min-height: 450px; }.collage-main { top: 65px; width: 85%; height: 260px; }.collage-side { width: 47%; height: 170px; }.collage-side-top { right: -2px; }.collage-side-bottom { right: 1px; bottom: 14px; }.collage-stamp { bottom: 38px; left: 3%; width: 105px; height: 105px; }.collage-stamp strong { font-size: 14px; }.collage-stamp span { font-size: 9px; }.collage-stamp small { font-size: 6px; }
  .process-step, .process-step:nth-child(2), .process-step:nth-child(3) { min-height: 0; padding: 9px 9px 23px; border-radius: 25px; }
  .step-visual { min-height: 215px; border-radius: 18px; }
  .step-copy { padding: 19px 12px 0; }
  .miles-widget { right: 18px; left: 18px; }
  .message-stack { right: 17px; left: 17px; }
  .trust-visual { min-height: 390px; }.trust-visual::before { right: 8px; width: 84%; height: 81%; }.trust-visual figure { top: 38px; width: 94%; height: 300px; }.trust-seal { right: -2px; bottom: 4px; min-width: 180px; padding: 11px 13px; }.trust-seal svg { width: 29px; }
  .trust-list small { font-size: 11px; }
  .quote-layout { gap: 42px; }.quote-form { padding: 20px; border-radius: 24px; }.service-choice { grid-template-columns: 1fr; }.service-choice label > span { min-height: 70px; }.form-row { grid-template-columns: 1fr; gap: 0; }.form-row .field + .field { margin-top: 16px; }.field textarea, .input-wrap input { font-size: 16px; }
  .faq-list summary { min-height: 82px; font-size: 14px; line-height: 1.45; }.faq-list summary span { width: 36px; height: 36px; }.faq-list summary span::before, .faq-list summary span::after { top: 17px; left: 11px; }.faq-list details p { margin-right: 5px; font-size: 13px; }
  .closing-cta { padding-bottom: 16px; }.closing-inner { display: block; min-height: 420px; padding: 36px 24px; }.closing-inner h2 { font-size: 2.4rem; }.closing-inner .button { position: absolute; right: 24px; bottom: 32px; left: 24px; }.closing-plane { top: auto; right: 8px; bottom: 82px; width: 160px; }
  .site-footer { padding: 60px 0 50px; }.footer-main { grid-template-columns: 1fr; justify-items: start; gap: 24px; }.footer-main > p { margin: 0; text-align: left; }.footer-link { justify-self: start; }.footer-bottom { grid-template-columns: 1fr; gap: 14px; }.legal { justify-self: start; text-align: left; line-height: 1.6; }
  .mobile-sticky-cta { position: fixed; z-index: 950; right: 10px; bottom: calc(10px + env(safe-area-inset-bottom)); left: 10px; display: flex; align-items: center; justify-content: space-between; min-height: 64px; padding: 10px 16px; border: 1px solid rgba(255,255,255,.18); border-radius: 18px; color: #fff; background: rgba(227,19,42,.94); box-shadow: 0 16px 38px rgba(134,0,15,.34); opacity: 0; pointer-events: none; transform: translateY(calc(100% + 24px)); backdrop-filter: blur(12px); transition: opacity .25s ease, transform .3s var(--ease-out); }.mobile-sticky-cta.is-visible { opacity: 1; pointer-events: auto; transform: translateY(0); }.mobile-sticky-cta span { display: grid; line-height: 1.3; }.mobile-sticky-cta small { color: rgba(255,255,255,.72); font-size: 8px; letter-spacing: .08em; text-transform: uppercase; }.mobile-sticky-cta strong { font-size: 12px; }.mobile-sticky-cta svg { width: 22px; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
  .whatsapp-float { right: 14px; bottom: calc(14px + env(safe-area-inset-bottom)); }.whatsapp-label { display: none; }.whatsapp-icon { width: 58px; height: 58px; border-radius: 18px; }
  .mobile-sticky-cta.is-visible ~ .whatsapp-float { bottom: calc(88px + env(safe-area-inset-bottom)); }
  .mobile-sticky-cta.is-visible ~ .toast { bottom: calc(158px + env(safe-area-inset-bottom)); }
  .toast { right: 12px; bottom: 88px; left: 12px; justify-content: center; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .signal-track { animation: none; }
  .js .reveal, .hero-item { opacity: 1; transform: none; }
  .pointer-aura { display: none; }
}

@media (pointer: coarse) {
  .pointer-aura { display: none; }
}
