/* ============================================================
   Easy Return Pros — cinematic landing page
   Near-black hero → clean white body · blue/green accent
   ============================================================ */

:root {
  --ink: #0b1220;
  --ink-soft: #3c4658;
  --muted: #67718a;
  --bg-dark: #04070d;
  --bg-dark-2: #070d18;
  --white: #ffffff;
  --body-bg: #f7f9fc;
  --blue: #0a84ff;
  --blue-deep: #0063d1;
  --green: #17c787;
  --green-soft: #dff8ee;
  --blue-soft: #e8f2ff;
  --amber-soft: #fff3d6;
  --amber-ink: #8a6100;
  --line: #e3e9f2;
  --radius: 18px;
  --font-display: "Space Grotesk", "Inter", system-ui, sans-serif;
  --font-body: "Inter", system-ui, sans-serif;
  --shadow-soft: 0 24px 70px -28px rgba(11, 18, 32, 0.25);
  --shadow-card: 0 10px 40px -18px rgba(11, 18, 32, 0.18);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
html, body { overscroll-behavior-y: none; }
body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--bg-dark);
  -webkit-font-smoothing: antialiased;
  line-height: 1.55;
}
img { max-width: 100%; display: block; }
[hidden] { display: none !important; }
button { font: inherit; cursor: pointer; border: 0; background: none; color: inherit; }
a { color: inherit; text-decoration: none; }

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

/* ---------- shared ---------- */
.eyebrow {
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 14px;
}
.eyebrow--light { color: #7fd4ff; }
.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4.6vw, 3.4rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.06;
  margin-bottom: 14px;
}
.section-sub { color: var(--muted); max-width: 560px; margin: 0 auto 42px; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: 0.01em;
  border-radius: 999px;
  transition: transform 0.25s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.25s, background 0.25s, color 0.25s;
  will-change: transform;
}
.btn:active { transform: scale(0.97); }
.btn--primary {
  background: linear-gradient(135deg, var(--blue) 0%, var(--blue-deep) 100%);
  color: #fff;
  box-shadow: 0 12px 30px -10px rgba(10, 132, 255, 0.55);
}
.btn--primary:hover { transform: translateY(-2px); box-shadow: 0 18px 40px -12px rgba(10, 132, 255, 0.65); }
.btn--white { background: #fff; color: var(--ink); box-shadow: 0 14px 40px -14px rgba(0, 0, 0, 0.5); }
.btn--white:hover { transform: translateY(-2px); }
.btn--ghost { background: transparent; color: var(--ink-soft); box-shadow: inset 0 0 0 1.5px var(--line); }
.btn--ghost:hover { box-shadow: inset 0 0 0 1.5px var(--blue); color: var(--blue); }
.btn--sm { padding: 10px 20px; font-size: 0.88rem; }
.btn--lg { padding: 17px 34px; font-size: 1.05rem; }
.btn--block { width: 100%; padding: 14px 20px; margin-top: 18px; }
.btn__arrow { width: 18px; height: 18px; transition: transform 0.25s; }
.btn:hover .btn__arrow { transform: translateX(4px); }

.glass-card {
  background: rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border: 1px solid rgba(255, 255, 255, 0.85);
  box-shadow: var(--shadow-card);
  border-radius: var(--radius);
}

.pill {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 600;
  padding: 3px 10px;
  border-radius: 999px;
  letter-spacing: 0.02em;
}
.pill--green { background: var(--green-soft); color: #0b7a52; }
.pill--blue { background: var(--blue-soft); color: var(--blue-deep); }
.pill--amber { background: var(--amber-soft); color: var(--amber-ink); }

[data-reveal] { opacity: 0; transform: translateY(34px); }
.no-motion [data-reveal] { opacity: 1; transform: none; }

/* ---------- nav ---------- */
.nav {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 60;
  padding: 14px clamp(16px, 4vw, 40px);
  transition: background 0.4s, box-shadow 0.4s, backdrop-filter 0.4s;
}
.nav__inner { display: flex; align-items: center; gap: 28px; max-width: 1240px; margin: 0 auto; }
.nav__brand { display: flex; align-items: center; gap: 10px; margin-right: auto; }
.nav__logo { width: 38px; height: 38px; border-radius: 10px; }
.nav__name { font-family: var(--font-display); font-weight: 700; font-size: 1.02rem; color: #fff; letter-spacing: -0.01em; transition: color 0.4s; }
.nav__name em { font-style: normal; color: var(--blue); }
.nav__links { display: flex; gap: 26px; font-size: 0.9rem; font-weight: 500; color: rgba(255, 255, 255, 0.75); transition: color 0.4s; }
.nav__links a { transition: color 0.2s; }
.nav__links a:hover { color: var(--blue); }
.nav.is-solid { background: rgba(255, 255, 255, 0.82); backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px); box-shadow: 0 1px 0 rgba(11, 18, 32, 0.07); }
.nav.is-solid .nav__name { color: var(--ink); }
.nav.is-solid .nav__links { color: var(--ink-soft); }
@media (max-width: 820px) { .nav__links { display: none; } }

/* ---------- hero ---------- */
.hero { position: relative; background: var(--bg-dark); }
.hero__stage { position: relative; height: 100vh; height: 100svh; overflow: hidden; display: flex; align-items: center; justify-content: center; }
.hero__video, .hero__particles {
  position: absolute; inset: 0; width: 100%; height: 100%;
}
.hero__video { object-fit: cover; opacity: 0.92; filter: brightness(0.68) saturate(1.05); }
.hero__vignette {
  position: absolute; inset: 0;
  background:
    radial-gradient(75% 62% at 50% 52%, rgba(4, 7, 13, 0.66) 0%, rgba(4, 7, 13, 0.42) 48%, rgba(4, 7, 13, 0.18) 72%, rgba(4, 7, 13, 0.55) 100%),
    linear-gradient(180deg, rgba(4, 7, 13, 0.6) 0%, transparent 24%, transparent 60%, rgba(4, 7, 13, 0.92) 100%);
}
.hero__content {
  position: relative; z-index: 3; text-align: center;
  padding: 0 20px; max-width: 1100px;
}
.hero__eyebrow {
  font-family: var(--font-display); font-size: 0.8rem; font-weight: 700;
  letter-spacing: 0.34em; color: #8ed2ff; margin-bottom: 26px;
  text-shadow: 0 2px 14px rgba(0, 0, 0, 0.9), 0 1px 3px rgba(0, 4, 12, 0.8);
}
.hero__title {
  font-family: var(--font-display);
  font-size: clamp(2.9rem, 8.4vw, 7.6rem);
  font-weight: 700;
  color: #fff;
  line-height: 0.98;
  letter-spacing: -0.04em;
  text-wrap: balance;
  filter: drop-shadow(0 6px 28px rgba(0, 0, 0, 0.65)) drop-shadow(0 2px 8px rgba(0, 4, 12, 0.55));
}
.hero__line { display: block; overflow: hidden; padding-bottom: 0.08em; }
.hero__line .w { display: inline-block; will-change: transform; }
.hero__line--accent .w {
  background: linear-gradient(100deg, #37a5ff 10%, #17c787 90%);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
}
.hero__sub { color: rgba(240, 246, 253, 0.92); font-size: clamp(1rem, 1.6vw, 1.2rem); max-width: 560px; margin: 26px auto 0; text-shadow: 0 2px 18px rgba(0, 0, 0, 0.85), 0 1px 4px rgba(0, 4, 12, 0.7); }
.hero__cta { margin-top: 34px; display: flex; flex-direction: column; align-items: center; gap: 14px; }
.hero__trial { font-size: 0.82rem; color: rgba(238, 244, 252, 0.82); letter-spacing: 0.04em; text-shadow: 0 2px 12px rgba(0, 0, 0, 0.85); }

.hero__chips { position: absolute; inset: 0; z-index: 2; pointer-events: none; }
.chip {
  position: absolute;
  display: flex; align-items: center; gap: 12px;
  padding: 12px 18px 12px 12px;
  border-radius: 16px;
  background: rgba(13, 22, 38, 0.55);
  border: 1px solid rgba(120, 180, 255, 0.22);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 18px 50px -18px rgba(0, 0, 0, 0.8), inset 0 1px 0 rgba(255, 255, 255, 0.08);
  color: #eef4ff;
  will-change: transform, opacity;
}
.chip strong { display: block; font-family: var(--font-display); font-size: 0.88rem; font-weight: 600; letter-spacing: 0; }
.chip small { display: block; font-size: 0.72rem; color: rgba(200, 216, 240, 0.65); }
.chip__icon { width: 38px; height: 38px; border-radius: 11px; background: rgba(255, 255, 255, 0.06); display: grid; place-items: center; }
.chip__icon svg { width: 24px; height: 24px; }
.chip--1 { left: clamp(2%, 7vw, 12%); top: 24%; }
.chip--2 { right: clamp(2%, 6vw, 10%); top: 34%; }
.chip--3 { left: clamp(4%, 9vw, 16%); bottom: 18%; }
@media (max-width: 900px) { .chip--2 { display: none; } }
@media (max-width: 640px) { .hero__chips { display: none; } }

.hero__scrollhint {
  position: absolute; bottom: 26px; left: 50%; transform: translateX(-50%);
  z-index: 4; display: flex; flex-direction: column; align-items: center; gap: 10px;
  color: rgba(210, 226, 246, 0.6); font-size: 0.72rem; letter-spacing: 0.28em; text-transform: uppercase;
  font-family: var(--font-display);
}
.hero__scrollhint-track { width: 22px; height: 36px; border: 1.5px solid rgba(210, 226, 246, 0.35); border-radius: 12px; display: flex; justify-content: center; padding-top: 6px; }
.hero__scrollhint-dot { width: 4px; height: 8px; border-radius: 3px; background: var(--blue); animation: scrolldot 1.6s ease-in-out infinite; }
@keyframes scrolldot { 0% { transform: translateY(0); opacity: 1; } 70% { transform: translateY(12px); opacity: 0; } 100% { opacity: 0; } }

/* ---------- trust ---------- */
.trust {
  position: relative;
  background: linear-gradient(180deg, var(--bg-dark) 0%, #10192b 14%, #eef3fa 58%, var(--body-bg) 100%);
  padding: 130px 20px 40px;
}
.trust__inner {
  max-width: 1080px; margin: 0 auto;
  display: flex; flex-wrap: wrap; gap: 26px; align-items: center; justify-content: space-between;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(20px);
  border-radius: 22px;
  box-shadow: var(--shadow-soft);
  padding: 26px 34px;
}
.trust__rating { display: flex; align-items: center; gap: 14px; }
.trust__stars { color: #ffb428; font-size: 1.15rem; letter-spacing: 3px; }
.trust__rating p { font-size: 0.92rem; color: var(--muted); }
.trust__rating strong { color: var(--ink); font-family: var(--font-display); font-size: 1.05rem; }
.trust__badges { display: flex; flex-wrap: wrap; gap: 10px 20px; }
.badge { display: inline-flex; align-items: center; gap: 8px; font-size: 0.85rem; font-weight: 500; color: var(--ink-soft); }
.dot { width: 8px; height: 8px; border-radius: 50%; display: inline-block; }
.dot--green { background: var(--green); box-shadow: 0 0 0 4px rgba(23, 199, 135, 0.15); }
.dot--blue { background: var(--blue); box-shadow: 0 0 0 4px rgba(10, 132, 255, 0.15); }
.trust__marquee { overflow: hidden; margin-top: 48px; mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent); -webkit-mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent); }
.trust__marquee-track {
  display: flex; gap: 34px; width: max-content;
  font-family: var(--font-display); font-weight: 600; font-size: 0.95rem;
  color: #a6b3c9; text-transform: uppercase; letter-spacing: 0.18em;
  animation: marquee 26s linear infinite;
}
@keyframes marquee { to { transform: translateX(-50%); } }

/* ---------- how (pinned over clip 2) ---------- */
.how { background: var(--bg-dark-2); }
.how__stage { position: relative; height: 100vh; height: 100svh; overflow: hidden; }
.how__video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: 0.85; }
.how__scrim {
  position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(4, 8, 16, 0.88) 0%, rgba(4, 8, 16, 0.55) 42%, rgba(4, 8, 16, 0.25) 100%),
              linear-gradient(180deg, rgba(4, 8, 16, 0.6), transparent 30%, transparent 70%, rgba(4, 8, 16, 0.7));
}
.how__head { position: absolute; top: clamp(80px, 12vh, 130px); left: clamp(22px, 7vw, 90px); z-index: 3; max-width: 520px; }
.how__title { font-family: var(--font-display); color: #fff; font-size: clamp(1.9rem, 4vw, 3.2rem); font-weight: 700; letter-spacing: -0.03em; line-height: 1.05; }
.how__rail { position: absolute; left: clamp(22px, 7vw, 90px); top: 46%; height: 34%; width: 3px; border-radius: 3px; background: rgba(255, 255, 255, 0.14); z-index: 3; }
.how__rail-fill { position: absolute; inset: 0 0 auto 0; height: 0%; border-radius: 3px; background: linear-gradient(180deg, var(--blue), var(--green)); }
.how__steps { position: absolute; left: clamp(44px, 10vw, 130px); top: 44%; z-index: 3; width: min(480px, 42vw); }
.step { position: absolute; inset: 0 auto auto 0; width: 100%; opacity: 0; transform: translateY(46px); will-change: transform, opacity; }
.step__num {
  font-family: var(--font-display); font-weight: 700; font-size: 1.28rem; letter-spacing: 0.3em;
  color: var(--green); display: inline-block; margin-bottom: 10px;
}
.step h3 { font-family: var(--font-display); color: #fff; font-size: clamp(1.7rem, 3.4vw, 2.6rem); font-weight: 700; letter-spacing: -0.02em; margin-bottom: 12px; }
.step p { color: rgba(222, 233, 247, 0.75); font-size: clamp(0.95rem, 1.4vw, 1.08rem); max-width: 420px; }
@media (max-width: 640px) {
  .how__head { top: 72px; }
  .how__steps { left: 22px; right: 22px; width: auto; }
  .how__rail { display: none; }
}

/* ---------- metrics ---------- */
.metrics { background: var(--body-bg); padding: clamp(90px, 12vw, 150px) 20px; text-align: center; }
.metrics__inner { max-width: 1120px; margin: 0 auto; }
.metrics__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-top: 54px; }
.metric { padding: 42px 30px 38px; text-align: left; position: relative; overflow: hidden; }
.metric--accent { background: linear-gradient(160deg, #0a84ff 0%, #0063d1 60%, #0b57ab 100%); border-color: rgba(255, 255, 255, 0.2); }
.metric--accent h3, .metric--accent .metric__value { color: #fff; }
.metric--accent p { color: rgba(232, 242, 255, 0.8); }
.metric--accent .metric__unit { color: rgba(232, 242, 255, 0.7); }
.metric__value { font-family: var(--font-display); font-size: clamp(3rem, 6vw, 4.6rem); font-weight: 700; letter-spacing: -0.04em; line-height: 1; color: var(--ink); display: flex; align-items: baseline; gap: 8px; }
.metric__unit { font-size: 1rem; font-weight: 600; color: var(--muted); letter-spacing: 0; }
.metric h3 { font-family: var(--font-display); font-size: 1.12rem; font-weight: 600; margin: 16px 0 8px; }
.metric p { color: var(--muted); font-size: 0.92rem; }
@media (max-width: 860px) { .metrics__grid { grid-template-columns: 1fr; max-width: 460px; margin-inline: auto; } }

/* ---------- product / browser mockup ---------- */
.product { background: var(--body-bg); padding: 20px 20px clamp(100px, 12vw, 160px); text-align: center; }
.product__inner { max-width: 1160px; margin: 0 auto; perspective: 1400px; }
.browser {
  text-align: left;
  background: #fff;
  border-radius: 20px;
  border: 1px solid var(--line);
  box-shadow: 0 60px 120px -50px rgba(11, 18, 32, 0.35), 0 30px 60px -40px rgba(10, 132, 255, 0.2);
  overflow: hidden;
  transform-style: preserve-3d;
  will-change: transform;
}
.browser__bar { display: flex; align-items: center; gap: 16px; padding: 13px 18px; background: #f2f5fa; border-bottom: 1px solid var(--line); }
.browser__dots { display: flex; gap: 7px; }
.browser__dots i { width: 11px; height: 11px; border-radius: 50%; }
.browser__dots i:nth-child(1) { background: #ff5f57; }
.browser__dots i:nth-child(2) { background: #febc2e; }
.browser__dots i:nth-child(3) { background: #28c840; }
.browser__url {
  flex: 1; max-width: 340px; margin: 0 auto;
  display: inline-flex; align-items: center; justify-content: center; gap: 7px;
  background: #fff; border: 1px solid var(--line); border-radius: 8px;
  font-size: 0.78rem; color: var(--ink-soft); padding: 6px 14px;
}
.browser__tabs { display: flex; gap: 4px; padding: 12px 16px 0; background: #fff; border-bottom: 1px solid var(--line); overflow-x: auto; }
.browser__tab {
  font-family: var(--font-display); font-size: 0.88rem; font-weight: 600;
  color: var(--muted); padding: 10px 18px 12px; border-radius: 10px 10px 0 0;
  position: relative; white-space: nowrap; transition: color 0.2s;
}
.browser__tab:hover { color: var(--ink); }
.browser__tab.is-active { color: var(--blue); }
.browser__tab.is-active::after {
  content: ""; position: absolute; left: 12px; right: 12px; bottom: -1px; height: 3px;
  border-radius: 3px 3px 0 0; background: linear-gradient(90deg, var(--blue), var(--green));
}
.browser__body { min-height: 430px; background: linear-gradient(180deg, #fbfcfe, #f4f7fc); }
.pane { display: none; grid-template-columns: 1.1fr 0.9fr; gap: 34px; padding: 34px clamp(20px, 4vw, 44px); animation: panein 0.45s cubic-bezier(0.22, 1, 0.36, 1); }
.pane.is-active { display: grid; }
@keyframes panein { from { opacity: 0; transform: translateY(14px); } to { opacity: 1; transform: none; } }
.pane h4 { font-family: var(--font-display); font-size: 1.25rem; font-weight: 700; margin-bottom: 18px; letter-spacing: -0.01em; }
.pane__hint { font-size: 0.88rem; color: var(--muted); margin: -8px 0 16px; }
.pane__col--visual { display: flex; align-items: center; justify-content: center; }
@media (max-width: 860px) { .pane { grid-template-columns: 1fr; } .pane__col--visual { display: none; } .browser__body { min-height: 380px; } }

.field { display: block; margin-bottom: 16px; text-align: left; }
.field span, .field__label {
  display: block; font-size: 0.75rem; font-weight: 600; text-transform: uppercase;
  letter-spacing: 0.1em; color: var(--muted); margin-bottom: 7px; text-align: left;
}
.field__label { margin-top: 4px; }
.field input {
  width: 100%; font: inherit; font-size: 0.95rem; color: var(--ink);
  padding: 12px 16px; border-radius: 12px; border: 1.5px solid var(--line); background: #fff;
  transition: border-color 0.2s, box-shadow 0.2s; outline: none;
}
.field input:focus { border-color: var(--blue); box-shadow: 0 0 0 4px rgba(10, 132, 255, 0.12); }

.datechips { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 16px; }
.datechip {
  border: 1.5px solid var(--line); background: #fff; border-radius: 12px;
  padding: 9px 8px; min-width: 62px; text-align: center; transition: all 0.2s;
}
.datechip small { display: block; font-size: 0.66rem; text-transform: uppercase; letter-spacing: 0.08em; color: var(--muted); }
.datechip strong { font-family: var(--font-display); font-size: 1.05rem; }
.datechip.is-active { border-color: var(--blue); background: var(--blue-soft); box-shadow: 0 6px 18px -8px rgba(10, 132, 255, 0.5); }
.datechip.is-active small { color: var(--blue-deep); }

.windows { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 6px; }
.windows--stack { flex-direction: column; }
.window {
  border: 1.5px solid var(--line); background: #fff; border-radius: 12px;
  padding: 10px 16px; font-size: 0.9rem; font-weight: 500; transition: all 0.2s; text-align: center;
}
.windows--stack .window { padding: 13px 16px; }
.window.is-active { border-color: var(--green); background: var(--green-soft); color: #0b7a52; font-weight: 600; }

.minimap { position: relative; width: 100%; max-width: 300px; }
.minimap svg { width: 100%; border-radius: 14px; box-shadow: var(--shadow-card); }
.minimap__tag {
  position: absolute; top: 12px; left: 12px; font-size: 0.68rem; font-weight: 600;
  background: rgba(255, 255, 255, 0.9); border-radius: 999px; padding: 4px 11px; color: var(--ink-soft);
  box-shadow: 0 4px 12px rgba(11, 18, 32, 0.12);
}

/* dropzone */
.dropzone {
  border: 2px dashed #bcd2ec; border-radius: 16px; background: #fff;
  min-height: 240px; display: grid; place-items: center; text-align: center;
  padding: 26px; transition: border-color 0.25s, background 0.25s, transform 0.2s; outline: none;
}
.dropzone:hover, .dropzone:focus-visible, .dropzone.is-drag { border-color: var(--blue); background: var(--blue-soft); }
.dropzone.is-drag { transform: scale(1.015); }
.dropzone__idle, .dropzone__scan, .dropzone__done { display: grid; place-items: center; gap: 8px; }
.dropzone__idle strong { font-family: var(--font-display); font-size: 1.02rem; }
.dropzone__idle span, .dropzone__scan span, .dropzone__done > span:not(.checkburst) { font-size: 0.82rem; color: var(--muted); }
.qrframe { position: relative; width: 148px; height: 148px; border-radius: 12px; overflow: hidden; background: #fff; box-shadow: var(--shadow-card); padding: 10px; }
.qrframe svg { width: 100%; height: 100%; }
.qrframe rect.m { fill: #0b1220; }
.scanline {
  position: absolute; left: 0; right: 0; top: 0; height: 3px;
  background: linear-gradient(90deg, transparent, var(--green), transparent);
  box-shadow: 0 0 14px 3px rgba(23, 199, 135, 0.55);
  animation: scan 1.1s ease-in-out infinite alternate;
}
@keyframes scan { to { transform: translateY(145px); } }
.checkburst { width: 54px; height: 54px; display: block; animation: burst 0.6s cubic-bezier(0.34, 1.56, 0.64, 1); }
.checkburst--lg { width: 72px; height: 72px; margin: 0 auto 6px; }
@keyframes burst { 0% { transform: scale(0); } 100% { transform: scale(1); } }
.dropzone__done strong { font-family: var(--font-display); font-size: 1rem; color: #0b7a52; }

.stepsmini { display: grid; gap: 18px; width: 100%; max-width: 300px; }
.stepsmini__item { display: flex; align-items: center; gap: 13px; font-size: 0.9rem; color: var(--muted); }
.stepsmini__item i { width: 22px; height: 22px; border-radius: 50%; border: 2px solid var(--line); flex: none; position: relative; transition: all 0.3s; background: #fff; }
.stepsmini__item.is-done { color: var(--ink); }
.stepsmini__item.is-done i { border-color: var(--green); background: var(--green); }
.stepsmini__item.is-done i::after {
  content: ""; position: absolute; inset: 5px 4px 7px; border-left: 2px solid #fff; border-bottom: 2px solid #fff; transform: rotate(-48deg);
}

.ticket { background: #fff; border: 1px solid var(--line); border-radius: 16px; overflow: hidden; box-shadow: var(--shadow-card); }
.ticket__head { display: flex; align-items: center; justify-content: space-between; padding: 16px 20px; background: #f6f9fd; border-bottom: 1px dashed var(--line); }
.ticket__id { font-family: var(--font-display); font-weight: 700; }
.ticket__row { display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 13px 20px; border-bottom: 1px solid #eff3f9; font-size: 0.92rem; }
.ticket__row span { color: var(--muted); }
.ticket__row strong { font-weight: 600; text-align: right; }
.ticket__foot { padding: 14px 20px; font-size: 0.8rem; color: var(--muted); background: #fbfcfe; }
.ticket--modal { margin-top: 6px; }

.timelinemini { display: grid; gap: 0; width: 100%; max-width: 300px; }
.timelinemini__item { display: flex; gap: 14px; padding-bottom: 24px; position: relative; }
.timelinemini__item::before { content: ""; position: absolute; left: 10px; top: 22px; bottom: 0; width: 2px; background: var(--line); }
.timelinemini__item:last-child::before { display: none; }
.timelinemini__item i { width: 22px; height: 22px; border-radius: 50%; border: 2px solid var(--line); background: #fff; flex: none; z-index: 1; }
.timelinemini__item.is-done i { border-color: var(--green); background: var(--green-soft); }
.timelinemini__item.is-live i { border-color: var(--blue); background: var(--blue); box-shadow: 0 0 0 5px rgba(10, 132, 255, 0.18); animation: livepulse 1.8s infinite; }
@keyframes livepulse { 50% { box-shadow: 0 0 0 9px rgba(10, 132, 255, 0.08); } }
.timelinemini__item strong { display: block; font-size: 0.9rem; }
.timelinemini__item span { font-size: 0.76rem; color: var(--muted); }

/* dashboard pane */
.dash { grid-column: 1 / -1; display: grid; grid-template-columns: 180px 1fr; gap: 0; border: 1px solid var(--line); border-radius: 14px; overflow: hidden; background: #fff; box-shadow: var(--shadow-card); }
.dash__side { background: #0d1626; padding: 18px 14px; display: flex; flex-direction: column; gap: 6px; }
.dash__logo img { width: 34px; height: 34px; border-radius: 9px; margin-bottom: 14px; }
.dash__navitem { color: #93a3bd; font-size: 0.85rem; font-weight: 500; padding: 9px 12px; border-radius: 9px; }
.dash__navitem.is-active { background: rgba(10, 132, 255, 0.18); color: #dcebff; }
.dash__main { padding: 20px; }
.dash__cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; margin-bottom: 16px; }
.dash__card { border: 1px solid var(--line); border-radius: 12px; padding: 14px; display: grid; gap: 5px; justify-items: start; }
.dash__card span { font-size: 0.72rem; color: var(--muted); text-transform: uppercase; letter-spacing: 0.06em; }
.dash__card strong { font-family: var(--font-display); font-size: 1.05rem; }
.dash__card em { font-style: normal; }
.dash__table { border: 1px solid var(--line); border-radius: 12px; overflow: hidden; }
.dash__rowhead, .dash__row { display: grid; grid-template-columns: 1.4fr 1fr 0.6fr; gap: 10px; padding: 11px 16px; font-size: 0.86rem; align-items: center; }
.dash__rowhead { background: #f6f9fd; font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.06em; color: var(--muted); font-weight: 600; }
.dash__row { border-top: 1px solid #eff3f9; }
.dash__row span:last-child { font-weight: 600; text-align: right; }
.dash__rowhead span:last-child { text-align: right; }
@media (max-width: 860px) {
  .dash { grid-template-columns: 1fr; }
  .dash__side { flex-direction: row; align-items: center; }
  .dash__logo img { margin-bottom: 0; }
  .dash__cards { grid-template-columns: 1fr; }
}

/* ---------- pricing ---------- */
.pricing { background: var(--body-bg); padding: clamp(90px, 12vw, 150px) 20px; text-align: center; position: relative; }
.pricing::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(70% 50% at 50% 30%, rgba(10, 132, 255, 0.06), transparent 70%);
  pointer-events: none;
}
.pricing__inner { max-width: 1120px; margin: 0 auto; position: relative; }
.pricing__toggle { display: flex; align-items: center; justify-content: center; gap: 16px; margin: 26px 0 46px; }
.pricing__mode { font-family: var(--font-display); font-weight: 600; font-size: 0.95rem; color: var(--muted); transition: color 0.25s; display: inline-flex; align-items: center; gap: 8px; }
.pricing__mode.is-active { color: var(--ink); }
.switch { width: 58px; height: 32px; border-radius: 999px; background: #d6e0ee; position: relative; transition: background 0.3s; }
.switch[aria-checked="true"] { background: linear-gradient(90deg, var(--blue), var(--green)); }
.switch__thumb {
  position: absolute; top: 3px; left: 3px; width: 26px; height: 26px; border-radius: 50%;
  background: #fff; box-shadow: 0 3px 8px rgba(11, 18, 32, 0.25);
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.switch[aria-checked="true"] .switch__thumb { transform: translateX(26px); }

.pricing__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; align-items: stretch; }
.plan { padding: 40px 32px 34px; text-align: left; position: relative; display: flex; flex-direction: column; }
.plan h3 { font-family: var(--font-display); font-size: 1.15rem; font-weight: 700; color: var(--ink-soft); }
.plan__price { display: flex; align-items: baseline; gap: 2px; margin: 18px 0 4px; font-family: var(--font-display); color: var(--ink); }
.plan__price sup { font-size: 1.3rem; font-weight: 600; align-self: flex-start; margin-top: 8px; }
.plan__amount { font-size: 3.4rem; font-weight: 700; letter-spacing: -0.04em; line-height: 1; }
.plan__per { font-size: 1rem; color: var(--muted); font-weight: 500; }
.plan__note { font-size: 0.8rem; color: var(--muted); margin-bottom: 22px; min-height: 1.2em; }
.plan__list { list-style: none; display: grid; gap: 12px; margin-bottom: 26px; flex: 1; }
.plan__list li { font-size: 0.92rem; color: var(--ink-soft); padding-left: 28px; position: relative; }
.plan__list li::before {
  content: ""; position: absolute; left: 0; top: 2px; width: 18px; height: 18px; border-radius: 50%;
  background: var(--green-soft);
}
.plan__list li::after {
  content: ""; position: absolute; left: 5px; top: 7px; width: 8px; height: 5px;
  border-left: 2px solid #0b7a52; border-bottom: 2px solid #0b7a52; transform: rotate(-48deg);
}
.plan--featured {
  background: linear-gradient(170deg, #0b1424 0%, #0d1d38 100%);
  border: 1px solid rgba(10, 132, 255, 0.35);
  box-shadow: 0 40px 90px -30px rgba(10, 100, 220, 0.45);
  transform: scale(1.045);
  z-index: 2;
}
.plan--featured h3 { color: #8fc5ff; }
.plan--featured .plan__price, .plan--featured .plan__amount { color: #fff; }
.plan--featured .plan__per, .plan--featured .plan__note { color: #8ea3c4; }
.plan--featured .plan__list li { color: #cfdcf0; }
.plan--featured .plan__list li::before { background: rgba(23, 199, 135, 0.18); }
.plan--featured .plan__list li::after { border-color: var(--green); }
.plan__flag {
  position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
  background: linear-gradient(90deg, var(--blue), var(--green));
  color: #fff; font-family: var(--font-display); font-size: 0.72rem; font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase;
  padding: 6px 16px; border-radius: 999px; box-shadow: 0 8px 20px -6px rgba(10, 132, 255, 0.6);
}
.pricing__fine { margin-top: 34px; font-size: 0.84rem; color: var(--muted); }
@media (max-width: 940px) {
  .pricing__grid { grid-template-columns: 1fr; max-width: 440px; margin-inline: auto; }
  .plan--featured { transform: none; }
}

/* ---------- faq ---------- */
.faq { background: var(--body-bg); padding: 20px 20px clamp(100px, 12vw, 160px); }
.faq__inner { max-width: 760px; margin: 0 auto; text-align: center; }
.faq__list { margin-top: 40px; text-align: left; display: grid; gap: 12px; }
.faq__item {
  background: #fff; border: 1px solid var(--line); border-radius: 16px;
  box-shadow: 0 4px 20px -12px rgba(11, 18, 32, 0.12);
  overflow: hidden; transition: box-shadow 0.25s, border-color 0.25s;
}
.faq__item[open] { border-color: rgba(10, 132, 255, 0.4); box-shadow: 0 14px 40px -18px rgba(10, 132, 255, 0.3); }
.faq__item summary {
  list-style: none; cursor: pointer; display: flex; align-items: center; justify-content: space-between; gap: 16px;
  font-family: var(--font-display); font-weight: 600; font-size: 1.02rem;
  padding: 20px 24px; user-select: none;
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__chev { width: 26px; height: 26px; border-radius: 50%; background: var(--blue-soft); position: relative; flex: none; transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1), background 0.25s; }
.faq__chev::before, .faq__chev::after { content: ""; position: absolute; top: 50%; left: 50%; width: 10px; height: 2px; background: var(--blue-deep); border-radius: 2px; transform: translate(-50%, -50%); transition: transform 0.3s; }
.faq__chev::after { transform: translate(-50%, -50%) rotate(90deg); }
.faq__item[open] .faq__chev { transform: rotate(135deg); background: var(--green-soft); }
.faq__item[open] .faq__chev::before, .faq__item[open] .faq__chev::after { background: #0b7a52; }
.faq__body { overflow: hidden; }
.faq__body p { padding: 0 24px 22px; color: var(--muted); font-size: 0.95rem; max-width: 640px; }

/* ---------- final cta ---------- */
.cta { position: relative; min-height: 88vh; display: grid; place-items: center; overflow: hidden; background: var(--bg-dark); }
.cta__video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.cta__scrim { position: absolute; inset: 0; background: linear-gradient(180deg, var(--body-bg) 0%, rgba(247, 249, 252, 0) 18%), radial-gradient(90% 70% at 50% 60%, rgba(5, 9, 16, 0.25) 0%, rgba(5, 9, 16, 0.72) 100%); }
.cta__content { position: relative; z-index: 2; text-align: center; padding: 120px 20px; }
.cta__title {
  font-family: var(--font-display); color: #fff;
  font-size: clamp(2.6rem, 6.5vw, 5.4rem); font-weight: 700; letter-spacing: -0.035em; line-height: 1.02;
  text-shadow: 0 10px 50px rgba(0, 0, 0, 0.45);
}
.cta__sub { color: rgba(240, 246, 253, 0.85); margin: 20px 0 32px; font-size: 1.05rem; text-shadow: 0 4px 24px rgba(0, 0, 0, 0.5); }

/* ---------- footer ---------- */
.footer { background: #04070d; color: #8fa0ba; padding: 46px 20px; }
.footer__inner { max-width: 1120px; margin: 0 auto; display: flex; flex-wrap: wrap; align-items: center; gap: 22px 40px; }
.footer__brand { display: flex; align-items: center; gap: 10px; font-family: var(--font-display); font-weight: 700; color: #fff; margin-right: auto; }
.footer__brand img { width: 34px; height: 34px; border-radius: 9px; }
.footer__brand em { font-style: normal; color: var(--blue); }
.footer__links { display: flex; gap: 24px; font-size: 0.88rem; }
.footer__links a:hover { color: #fff; }
.footer__copy { width: 100%; font-size: 0.78rem; color: #4d5b73; }

/* ---------- booking modal ---------- */
.modal { position: fixed; inset: 0; z-index: 100; display: grid; place-items: center; padding: 20px; visibility: hidden; }
.modal.is-open { visibility: visible; }
.modal__backdrop { position: absolute; inset: 0; background: rgba(4, 8, 15, 0.6); backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px); opacity: 0; transition: opacity 0.35s; }
.modal.is-open .modal__backdrop { opacity: 1; }
.modal__card {
  position: relative; width: 100%; max-width: 440px; background: #fff; border-radius: 24px;
  padding: 34px 30px 30px; box-shadow: 0 60px 140px -30px rgba(0, 0, 0, 0.6);
  transform: translateY(40px) scale(0.96); opacity: 0;
  transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.35s;
  max-height: calc(100vh - 40px); overflow-y: auto;
}
.modal.is-open .modal__card { transform: none; opacity: 1; }
.modal__close {
  position: absolute; top: 14px; right: 16px; width: 34px; height: 34px; border-radius: 50%;
  background: #f0f4f9; color: var(--muted); font-size: 1.3rem; line-height: 1; transition: all 0.2s;
}
.modal__close:hover { background: #e3eaf3; color: var(--ink); }
.modal__progress { height: 4px; border-radius: 4px; background: #edf1f7; margin-bottom: 26px; overflow: hidden; }
.modal__progress span { display: block; height: 100%; width: 33%; border-radius: 4px; background: linear-gradient(90deg, var(--blue), var(--green)); transition: width 0.5s cubic-bezier(0.22, 1, 0.36, 1); }
.mstep { display: none; }
.mstep.is-active { display: block; animation: panein 0.4s cubic-bezier(0.22, 1, 0.36, 1); }
.mstep h3 { font-family: var(--font-display); font-size: 1.35rem; font-weight: 700; margin-bottom: 20px; letter-spacing: -0.01em; }
.mstep--success { text-align: center; }
.mstep--success p { color: var(--ink-soft); }
.mstep__ref { font-size: 0.82rem; color: var(--muted) !important; margin-top: 10px; }
.stepper { display: inline-flex; align-items: center; gap: 20px; border: 1.5px solid var(--line); border-radius: 999px; padding: 8px 14px; margin-bottom: 8px; }
.stepper button { width: 32px; height: 32px; border-radius: 50%; background: #f0f4f9; font-size: 1.15rem; font-weight: 600; color: var(--ink-soft); transition: all 0.2s; }
.stepper button:hover { background: var(--blue-soft); color: var(--blue-deep); }
.stepper strong { font-family: var(--font-display); font-size: 1.2rem; min-width: 26px; text-align: center; }

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