@import url('https://fonts.googleapis.com/css2?family=Sora:wght@400;600;700;800&family=Manrope:wght@400;500;600;700;800&display=swap');

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

:root {
  --coal: #0A0E13;          /* page base — deep graphite */
  --coal-2: #0E141B;        /* alt band */
  --coal-3: #131B25;        /* raised card */
  --coal-4: #1A2431;        /* hover / inset */
  --cyan: #3BDCFF;
  --blue: #3D7BFF;
  --cyan-dim: #22A9C8;
  --ink-on-accent: #041721; /* text sat on cyan */
  --text: #EAF2F9;
  --muted: #94A3B5;
  --faint: #5C6B7D;
  --line: rgba(255,255,255,0.09);
  --line-soft: rgba(255,255,255,0.055);
  --accent-grad: linear-gradient(112deg, var(--cyan), var(--blue));
  --nav-h: 74px;
  --max-w: 1200px;
  --pad: clamp(1.25rem, 5vw, 3.5rem);
}

html { scroll-behavior: smooth; }
body {
  font-family: 'Manrope', sans-serif;
  background: var(--coal);
  color: var(--text);
  font-size: 16px; line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; font-family: inherit; }

h1, h2, h3, h4 {
  font-family: 'Sora', sans-serif;
  font-weight: 700; line-height: 1.08; letter-spacing: -0.025em;
}
h1 { font-size: clamp(2.5rem, 6vw, 4.6rem); }
h2 { font-size: clamp(1.9rem, 4.2vw, 3rem); }
h3 { font-size: clamp(1.15rem, 2.2vw, 1.45rem); }
p { color: var(--muted); }

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

.eyebrow {
  font-family: 'Sora', sans-serif;
  font-size: 0.73rem; letter-spacing: 0.2em; text-transform: uppercase;
  font-weight: 600; color: var(--cyan);
}

.container { max-width: var(--max-w); margin: 0 auto; padding: 0 var(--pad); }
section { padding: clamp(4rem, 8vw, 7rem) 0; }

/* Reusable diagonal gloss streaks (paintwork sheen) */
.gloss { position: relative; overflow: hidden; }
.gloss::before {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background:
    linear-gradient(115deg, transparent 18%, rgba(255,255,255,0.028) 24%, transparent 32%),
    linear-gradient(115deg, transparent 55%, rgba(59,220,255,0.035) 62%, transparent 72%),
    linear-gradient(115deg, transparent 78%, rgba(255,255,255,0.02) 84%, transparent 92%);
}
.gloss > * { position: relative; z-index: 1; }

/* --- Buttons --- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.55rem;
  min-height: 48px; padding: 0.85rem 1.8rem;
  font-family: 'Sora', sans-serif; font-size: 0.92rem; font-weight: 600;
  border: none; border-radius: 10px; transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
  position: relative; overflow: hidden;
}
.btn-shine { background: var(--accent-grad); color: var(--ink-on-accent); }
.btn-shine::after {
  content: ''; position: absolute; top: 0; bottom: 0; left: -80%; width: 45%;
  background: linear-gradient(105deg, transparent, rgba(255,255,255,0.5), transparent);
  transform: skewX(-18deg); transition: left 0.45s ease;
}
.btn-shine:hover { transform: translateY(-2px); box-shadow: 0 14px 34px -12px rgba(59,220,255,0.55); }
.btn-shine:hover::after { left: 130%; }
.btn-ghost { background: transparent; color: var(--text); border: 1.5px solid rgba(255,255,255,0.22); }
.btn-ghost:hover { border-color: var(--cyan); color: var(--cyan); }
.btn-dark { background: var(--ink-on-accent); color: #DFF6FF; }
.btn-dark:hover { transform: translateY(-2px); box-shadow: 0 14px 30px -14px rgba(4,23,33,0.8); }

/* --- Nav --- */
nav {
  position: fixed; top: 0; left: 0; right: 0; height: var(--nav-h);
  background: rgba(10, 14, 19, 0.88);
  backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  z-index: 200; display: flex; align-items: center;
  border-bottom: 1px solid var(--line-soft);
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; width: 100%; max-width: var(--max-w); margin: 0 auto; padding: 0 var(--pad); }
.nav-logo { font-family: 'Sora', sans-serif; font-size: 1.32rem; font-weight: 800; color: var(--text); display: inline-flex; align-items: center; gap: 0.6rem; letter-spacing: -0.02em; }
.nav-logo .mark { width: 32px; height: 32px; border-radius: 9px; background: var(--accent-grad); display: inline-flex; align-items: center; justify-content: center; flex-shrink: 0; }
.nav-logo .mark svg { width: 18px; height: 18px; fill: var(--ink-on-accent); }
.nav-logo em { font-style: normal; background: var(--accent-grad); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; color: transparent; }
.nav-links { display: flex; align-items: center; gap: 1.9rem; list-style: none; }
.nav-links > li > a { display: inline-flex; align-items: center; min-height: 44px; font-size: 0.92rem; font-weight: 600; color: rgba(234,242,249,0.72); transition: color 0.2s; }
.nav-links > li > a:hover { color: var(--text); }
.nav-links > li > a.btn { color: var(--ink-on-accent); padding: 0.6rem 1.4rem; min-height: 44px; }
.nav-phone { gap: 0.5rem; color: var(--text) !important; font-family: 'Sora', sans-serif; }
.nav-phone svg { width: 15px; height: 15px; stroke: var(--cyan); fill: none; stroke-width: 2; }
.nav-toggle { display: none; flex-direction: column; justify-content: center; align-items: center; gap: 5px; background: none; border: none; width: 46px; height: 46px; }
.nav-toggle span { display: block; width: 24px; height: 2px; background: var(--text); border-radius: 2px; transition: 0.3s; }

/* --- Hero --- */
.hero {
  position: relative; overflow: hidden;
  padding-top: calc(var(--nav-h) + clamp(2.5rem, 6vw, 5.5rem));
  padding-bottom: clamp(3rem, 6vw, 5rem);
  background:
    radial-gradient(ellipse 70% 55% at 78% 8%, rgba(61,123,255,0.14), transparent 65%),
    radial-gradient(ellipse 55% 45% at 12% 90%, rgba(59,220,255,0.07), transparent 60%),
    var(--coal);
}
.hero::before {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background:
    linear-gradient(115deg, transparent 30%, rgba(255,255,255,0.03) 36%, transparent 44%),
    linear-gradient(115deg, transparent 60%, rgba(59,220,255,0.04) 67%, transparent 76%);
}
.hero-grid { position: relative; z-index: 1; display: grid; grid-template-columns: 1.05fr 0.95fr; gap: clamp(2rem, 5vw, 4rem); align-items: center; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 0.55rem;
  background: rgba(59,220,255,0.09); border: 1px solid rgba(59,220,255,0.28); color: var(--cyan);
  padding: 0.5rem 1.05rem; border-radius: 50px; font-size: 0.78rem; font-weight: 700; letter-spacing: 0.04em;
  margin-bottom: 1.6rem;
}
.hero-badge .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--cyan); box-shadow: 0 0 0 0 rgba(59,220,255,0.6); animation: pulse 2.2s infinite; }
@keyframes pulse { 70% { box-shadow: 0 0 0 8px rgba(59,220,255,0); } 100% { box-shadow: 0 0 0 0 rgba(59,220,255,0); } }
.hero h1 { margin-bottom: 1.4rem; }
.hero h1 .grad { background: var(--accent-grad); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; color: transparent; }
.hero-sub { font-size: 1.13rem; line-height: 1.68; max-width: 34rem; margin-bottom: 2.2rem; }

/* Postcode check */
.pc-form { display: flex; gap: 0.7rem; max-width: 460px; flex-wrap: wrap; }
.pc-form input {
  flex: 1 1 200px; min-height: 52px; padding: 0.8rem 1.15rem;
  background: var(--coal-3); border: 1.5px solid var(--line); border-radius: 10px;
  font-family: inherit; font-size: 1rem; font-weight: 600; letter-spacing: 0.04em;
  color: var(--text); text-transform: uppercase;
}
.pc-form input::placeholder { color: var(--faint); font-weight: 500; text-transform: none; letter-spacing: 0; }
.pc-form input:focus { outline: none; border-color: var(--cyan); }
.pc-result { margin-top: 1rem; font-size: 0.95rem; color: var(--muted); min-height: 1.5em; max-width: 460px; }
.pc-result.ok { color: #7BEBB4; }
.pc-result.maybe { color: #FFC988; }
.pc-result a { font-weight: 700; color: var(--cyan); text-decoration: underline; text-underline-offset: 3px; }
.hero-alt { margin-top: 1.1rem; font-size: 0.92rem; color: var(--faint); }
.hero-alt a { color: var(--cyan); font-weight: 700; }
.hero-alt a:hover { text-decoration: underline; text-underline-offset: 3px; }

/* Hero visual — the van */
.hero-visual { position: relative; }
.hero-visual .van-svg { width: 100%; height: auto; filter: drop-shadow(0 30px 40px rgba(0,0,0,0.45)); }
.van-sheen { animation: vansweep 5.5s ease-in-out infinite; }
@keyframes vansweep {
  0%   { transform: translateX(-180px) skewX(-16deg); }
  45%  { transform: translateX(760px) skewX(-16deg); }
  100% { transform: translateX(760px) skewX(-16deg); }
}
.float-chip {
  position: absolute; display: inline-flex; align-items: center; gap: 0.55rem;
  background: rgba(19,27,37,0.85); border: 1px solid var(--line); border-radius: 12px;
  padding: 0.65rem 1rem; font-size: 0.82rem; font-weight: 700; color: var(--text);
  backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
  box-shadow: 0 16px 34px -18px rgba(0,0,0,0.7);
}
.float-chip svg { width: 17px; height: 17px; stroke: var(--cyan); fill: none; stroke-width: 2; flex-shrink: 0; }
.float-chip.top { top: 4%; right: 2%; }
.float-chip.bottom { bottom: -3%; left: 4%; }

/* --- Trust bar --- */
.trust-bar { background: var(--coal-2); border-top: 1px solid var(--line-soft); border-bottom: 1px solid var(--line-soft); position: relative; z-index: 1; }
.trust-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: var(--line-soft); max-width: var(--max-w); margin: 0 auto; }
.trust-item { background: var(--coal-2); padding: 1.65rem var(--pad); display: flex; align-items: center; gap: 0.9rem; }
.trust-item svg { width: 27px; height: 27px; stroke: var(--cyan); flex-shrink: 0; stroke-width: 1.7; fill: none; }
.trust-item .t { font-family: 'Sora', sans-serif; font-weight: 700; font-size: 0.94rem; line-height: 1.25; }
.trust-item .s { font-size: 0.78rem; color: var(--faint); }

/* --- Section head --- */
.section-head { margin-bottom: clamp(2.5rem, 5vw, 4rem); max-width: 640px; }
.section-head.center { margin-inline: auto; text-align: center; }
.section-head .eyebrow { display: block; margin-bottom: 0.9rem; }
.section-head p { font-size: 1.06rem; margin-top: 1rem; }

/* --- Packages preview --- */
.pkg-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.1rem; align-items: stretch; }
.pkg-card {
  background: var(--coal-3); border: 1px solid var(--line); border-radius: 16px;
  padding: 1.9rem 1.6rem; display: flex; flex-direction: column;
  position: relative; overflow: hidden; transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}
.pkg-card::before {
  content: ''; position: absolute; inset: 0; pointer-events: none; opacity: 0;
  background: linear-gradient(115deg, transparent 35%, rgba(59,220,255,0.06) 48%, transparent 62%);
  transition: opacity 0.25s;
}
.pkg-card:hover { transform: translateY(-5px); border-color: rgba(59,220,255,0.35); box-shadow: 0 26px 50px -28px rgba(0,0,0,0.8); }
.pkg-card:hover::before { opacity: 1; }
.pkg-card.featured { border: 1.5px solid transparent; background: linear-gradient(var(--coal-3), var(--coal-3)) padding-box, var(--accent-grad) border-box; }
.pkg-flag {
  position: absolute; top: 1.1rem; right: 1.1rem;
  font-family: 'Sora', sans-serif; font-size: 0.62rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase;
  background: var(--accent-grad); color: var(--ink-on-accent); border-radius: 50px; padding: 0.32rem 0.7rem;
}
.pkg-name { font-family: 'Sora', sans-serif; font-weight: 700; font-size: 1.08rem; margin-bottom: 0.2rem; }
.pkg-time { font-size: 0.78rem; color: var(--faint); font-weight: 600; letter-spacing: 0.03em; margin-bottom: 1.1rem; }
.pkg-price { font-family: 'Sora', sans-serif; font-weight: 800; font-size: 2.15rem; letter-spacing: -0.03em; line-height: 1; margin-bottom: 0.2rem; }
.pkg-price .from { display: block; font-size: 0.72rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--faint); margin-bottom: 0.35rem; }
.pkg-desc { font-size: 0.88rem; line-height: 1.55; margin: 0.9rem 0 1.1rem; }
.pkg-list { list-style: none; display: flex; flex-direction: column; gap: 0.55rem; margin-bottom: 1.5rem; }
.pkg-list li { display: flex; gap: 0.6rem; align-items: flex-start; font-size: 0.86rem; color: rgba(234,242,249,0.82); }
.pkg-list li svg { width: 16px; height: 16px; stroke: var(--cyan); stroke-width: 2.4; fill: none; flex-shrink: 0; margin-top: 3px; }
.pkg-card .more {
  margin-top: auto; display: inline-flex; align-items: center; gap: 0.4rem; min-height: 44px;
  font-family: 'Sora', sans-serif; font-weight: 600; font-size: 0.86rem; color: var(--cyan); transition: gap 0.2s;
}
.pkg-card:hover .more { gap: 0.75rem; }
.pkg-note { text-align: center; margin-top: 2rem; font-size: 0.88rem; color: var(--faint); }

/* --- How it works --- */
.steps-section { background: var(--coal-2); border-top: 1px solid var(--line-soft); border-bottom: 1px solid var(--line-soft); }
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(1.5rem, 4vw, 3rem); counter-reset: step; }
.step { position: relative; padding-top: 0.4rem; }
.step .num {
  font-family: 'Sora', sans-serif; font-weight: 800; font-size: 3.2rem; line-height: 1;
  background: var(--accent-grad); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; color: transparent;
  margin-bottom: 1rem;
}
.step h3 { margin-bottom: 0.55rem; }
.step p { font-size: 0.95rem; line-height: 1.6; }
.step::after {
  content: ''; position: absolute; top: 1.9rem; left: calc(100% + 0.4rem); width: clamp(1rem, 3vw, 2.4rem); height: 2px;
  background: linear-gradient(90deg, rgba(59,220,255,0.5), transparent);
}
.step:last-child::after { display: none; }

/* --- Before / after --- */
.ba-wrap { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: clamp(2.5rem, 6vw, 5rem); align-items: center; }
.ba-copy h2 { margin: 0.9rem 0 1.1rem; }
.ba-copy p { font-size: 1.02rem; margin-bottom: 1rem; }
.ba-stage {
  --split: 50%;
  position: relative; border-radius: 18px; overflow: hidden;
  aspect-ratio: 16 / 10; border: 1px solid var(--line);
  box-shadow: 0 34px 60px -30px rgba(0,0,0,0.75);
}
.ba-layer { position: absolute; inset: 0; }
.ba-before {
  background:
    radial-gradient(3px 3px at 18% 34%, rgba(255,255,255,0.32), transparent 70%),
    radial-gradient(2px 2px at 64% 22%, rgba(255,255,255,0.26), transparent 70%),
    radial-gradient(2.5px 2.5px at 42% 58%, rgba(255,255,255,0.24), transparent 70%),
    radial-gradient(2px 2px at 82% 46%, rgba(255,255,255,0.2), transparent 70%),
    radial-gradient(3px 3px at 30% 76%, rgba(255,255,255,0.18), transparent 70%),
    repeating-linear-gradient(115deg, rgba(255,255,255,0.055) 0 1.5px, transparent 1.5px 16px),
    repeating-linear-gradient(64deg, rgba(255,255,255,0.04) 0 1px, transparent 1px 13px),
    linear-gradient(180deg, rgba(255,255,255,0.09), rgba(255,255,255,0.05)),
    linear-gradient(180deg, #5A646F 0%, #414B56 52%, #313A44 100%);
}
.ba-after {
  clip-path: inset(0 0 0 var(--split));
  background:
    linear-gradient(115deg, transparent 38%, rgba(255,255,255,0.1) 45%, rgba(255,255,255,0.42) 50%, rgba(255,255,255,0.1) 55%, transparent 62%),
    radial-gradient(120% 90% at 55% -25%, rgba(59,220,255,0.22), transparent 55%),
    linear-gradient(180deg, #35414F 0%, #131B26 46%, #0A101A 52%, #17202D 100%);
}
.ba-detail { position: absolute; inset: 0; pointer-events: none; }
.ba-detail::before {  /* wheel-arch curve */
  content: ''; position: absolute; bottom: -26%; left: 10%; width: 34%; aspect-ratio: 1;
  border-radius: 50%; background: #05070B;
  box-shadow: 0 0 0 7px rgba(255,255,255,0.06), 0 -14px 40px -6px rgba(0,0,0,0.5);
}
.ba-detail::after {  /* door seam */
  content: ''; position: absolute; top: 8%; bottom: 0; right: 24%; width: 2px;
  background: linear-gradient(180deg, transparent, rgba(0,0,0,0.5) 30%, rgba(0,0,0,0.55) 70%, transparent);
}
.ba-tag {
  position: absolute; top: 0.9rem; z-index: 2;
  font-family: 'Sora', sans-serif; font-size: 0.66rem; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase;
  padding: 0.38rem 0.8rem; border-radius: 50px; backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px);
}
.ba-tag.before { left: 0.9rem; background: rgba(10,14,19,0.6); color: rgba(234,242,249,0.75); border: 1px solid var(--line); }
.ba-tag.after { right: 0.9rem; background: var(--accent-grad); color: var(--ink-on-accent); }
.ba-handle {
  position: absolute; top: 0; bottom: 0; left: var(--split); width: 2px; margin-left: -1px;
  background: rgba(255,255,255,0.85); z-index: 2; pointer-events: none;
  box-shadow: 0 0 14px rgba(59,220,255,0.7);
}
.ba-handle::after {
  content: '⇔'; position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%);
  width: 36px; height: 36px; border-radius: 50%; background: var(--accent-grad); color: var(--ink-on-accent);
  display: flex; align-items: center; justify-content: center; font-size: 1rem; font-weight: 700;
}
.ba-range { width: 100%; margin-top: 1.1rem; appearance: none; -webkit-appearance: none; height: 44px; background: transparent; cursor: ew-resize; font-size: 1rem; }
.ba-range::-webkit-slider-runnable-track { height: 6px; border-radius: 3px; background: linear-gradient(90deg, #39434E, var(--cyan)); }
.ba-range::-webkit-slider-thumb {
  -webkit-appearance: none; appearance: none; width: 26px; height: 26px; margin-top: -10px;
  border-radius: 50%; background: var(--accent-grad); border: 3px solid var(--coal);
  box-shadow: 0 0 0 2px rgba(59,220,255,0.5);
}
.ba-range::-moz-range-track { height: 6px; border-radius: 3px; background: linear-gradient(90deg, #39434E, var(--cyan)); }
.ba-range::-moz-range-thumb { width: 22px; height: 22px; border-radius: 50%; background: #3BDCFF; border: 3px solid var(--coal); box-shadow: 0 0 0 2px rgba(59,220,255,0.5); }
.ba-hint { font-size: 0.82rem; color: var(--faint); margin-top: 0.4rem; }

/* --- Reviews --- */
.rev-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.2rem; }
.rev-card { background: var(--coal-3); border: 1px solid var(--line); border-radius: 16px; padding: 2rem; display: flex; flex-direction: column; }
.rev-stars { color: var(--cyan); letter-spacing: 3px; font-size: 0.95rem; margin-bottom: 1rem; }
.rev-card > p { color: rgba(234,242,249,0.88); font-size: 0.97rem; line-height: 1.65; margin-bottom: 1.5rem; }
.rev-author { margin-top: auto; display: flex; align-items: center; gap: 0.85rem; }
.rev-avatar {
  width: 42px; height: 42px; border-radius: 50%; flex-shrink: 0;
  background: var(--coal-4); border: 1.5px solid rgba(59,220,255,0.4); color: var(--cyan);
  display: flex; align-items: center; justify-content: center; font-family: 'Sora', sans-serif; font-weight: 700; font-size: 0.85rem;
}
.rev-author .name { font-family: 'Sora', sans-serif; font-weight: 600; font-size: 0.92rem; }
.rev-author .meta { font-size: 0.79rem; color: var(--faint); }

/* --- Coverage --- */
.coverage { background: var(--coal-2); border-top: 1px solid var(--line-soft); border-bottom: 1px solid var(--line-soft); }
.cov-grid { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: clamp(2.5rem, 6vw, 5rem); align-items: center; }
.cov-copy h2 { margin: 0.9rem 0 1rem; }
.cov-copy > p { margin-bottom: 1.75rem; font-size: 1.02rem; }
.cov-chips { display: flex; flex-wrap: wrap; gap: 0.55rem; }
.cov-chip {
  background: var(--coal-3); border: 1px solid var(--line); border-radius: 50px;
  padding: 0.55rem 1.05rem; font-size: 0.86rem; font-weight: 600; color: rgba(234,242,249,0.85);
  transition: border-color 0.2s, color 0.2s;
}
.cov-chip:hover { border-color: var(--cyan); color: var(--cyan); }
.cov-visual { aspect-ratio: 1 / 0.86; position: relative; display: flex; align-items: center; justify-content: center; }
.cov-ring { position: absolute; border: 1.5px solid rgba(59,220,255,0.35); border-radius: 50%; }
.cov-ring.r1 { width: 34%; aspect-ratio: 1; animation: covpulse 3s ease-out infinite; }
.cov-ring.r2 { width: 60%; aspect-ratio: 1; border-color: rgba(59,220,255,0.18); }
.cov-ring.r3 { width: 86%; aspect-ratio: 1; border-color: rgba(59,220,255,0.09); border-style: dashed; }
@keyframes covpulse { 0% { box-shadow: 0 0 0 0 rgba(59,220,255,0.28); } 100% { box-shadow: 0 0 0 26px rgba(59,220,255,0); } }
.cov-pin { position: relative; z-index: 1; text-align: center; }
.cov-pin .dot { width: 16px; height: 16px; border-radius: 50%; background: var(--accent-grad); margin: 0 auto 0.8rem; box-shadow: 0 0 24px rgba(59,220,255,0.8); }
.cov-pin .label { font-family: 'Sora', sans-serif; font-weight: 700; font-size: 1.05rem; }
.cov-pin .sub { font-size: 0.82rem; color: var(--faint); }

/* --- CTA band --- */
.cta-band { background: var(--accent-grad); position: relative; overflow: hidden; }
.cta-band::before {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background:
    linear-gradient(115deg, transparent 25%, rgba(255,255,255,0.14) 32%, transparent 42%),
    linear-gradient(115deg, transparent 62%, rgba(255,255,255,0.1) 69%, transparent 78%);
}
.cta-inner { position: relative; z-index: 1; display: flex; align-items: center; justify-content: space-between; gap: 2rem; flex-wrap: wrap; }
.cta-band h2 { color: var(--ink-on-accent); max-width: 20ch; }
.cta-band p { color: rgba(4,23,33,0.72); margin-top: 0.7rem; font-size: 1.05rem; font-weight: 600; }

/* --- Footer --- */
footer { background: var(--coal); padding: clamp(3.5rem, 6vw, 5rem) 0 2.5rem; border-top: 1px solid var(--line-soft); }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.3fr; gap: 2.5rem; margin-bottom: 3rem; }
.footer-brand p { color: var(--faint); font-size: 0.9rem; max-width: 300px; margin-top: 1rem; }
.footer-col h4 { font-family: 'Sora', sans-serif; font-size: 0.72rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--faint); margin-bottom: 1.1rem; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 0.35rem; }
.footer-col a { display: inline-flex; align-items: center; min-height: 32px; font-size: 0.92rem; color: rgba(234,242,249,0.68); transition: color 0.2s; }
.footer-col a:hover { color: var(--cyan); }
.footer-bottom { border-top: 1px solid var(--line-soft); padding-top: 2rem; display: flex; justify-content: space-between; align-items: center; gap: 0.5rem; flex-wrap: wrap; font-size: 0.8rem; color: var(--faint); }

/* --- Sticky mobile book bar --- */
.mobile-book { display: none; position: fixed; bottom: 0; left: 0; right: 0; z-index: 250; background: rgba(10,14,19,0.95); backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px); border-top: 1px solid var(--line); padding: 0.7rem var(--pad); gap: 0.7rem; }
.mobile-book a { flex: 1; min-height: 48px; font-size: 0.88rem; padding: 0.7rem; }

/* --- Page header (subpages) --- */
.page-header {
  position: relative; overflow: hidden;
  padding: calc(var(--nav-h) + clamp(3rem, 6vw, 4.5rem)) 0 clamp(3rem, 5vw, 4rem);
  background:
    radial-gradient(ellipse 65% 70% at 82% 0%, rgba(61,123,255,0.15), transparent 65%),
    var(--coal);
}
.page-header::before {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background: linear-gradient(115deg, transparent 40%, rgba(255,255,255,0.028) 47%, transparent 56%);
}
.page-header .container { position: relative; z-index: 1; }
.page-header .eyebrow { display: block; margin-bottom: 1rem; }
.page-header h1 { font-size: clamp(2.3rem, 5vw, 3.8rem); max-width: 18ch; }
.page-header p { font-size: 1.1rem; margin-top: 1.2rem; max-width: 56ch; }

/* --- Packages page: tiers --- */
.tier-stack { display: flex; flex-direction: column; gap: 1.4rem; }
.tier {
  background: var(--coal-3); border: 1px solid var(--line); border-radius: 18px;
  padding: clamp(1.75rem, 3.5vw, 2.5rem); display: grid; grid-template-columns: 1fr 1.4fr auto; gap: clamp(1.5rem, 3vw, 2.5rem);
  position: relative; overflow: hidden;
}
.tier.featured { border: 1.5px solid transparent; background: linear-gradient(var(--coal-3), var(--coal-3)) padding-box, var(--accent-grad) border-box; }
.tier-head .pkg-flag { position: static; display: inline-block; margin-bottom: 0.9rem; }
.tier-head h2 { font-size: clamp(1.4rem, 2.6vw, 1.8rem); margin-bottom: 0.35rem; }
.tier-head .tier-strap { font-size: 0.92rem; color: var(--muted); margin-bottom: 1.2rem; }
.tier-meta { display: flex; flex-direction: column; gap: 0.5rem; }
.tier-meta .m { display: flex; align-items: center; gap: 0.55rem; font-size: 0.84rem; color: var(--faint); font-weight: 600; }
.tier-meta .m svg { width: 16px; height: 16px; stroke: var(--cyan); stroke-width: 2; fill: none; flex-shrink: 0; }
.tier-includes h3 { font-size: 0.74rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--faint); margin-bottom: 1rem; }
.tier-includes ul { list-style: none; display: grid; grid-template-columns: 1fr 1fr; gap: 0.6rem 1.25rem; }
.tier-includes li { display: flex; gap: 0.6rem; align-items: flex-start; font-size: 0.9rem; color: rgba(234,242,249,0.85); }
.tier-includes li svg { width: 16px; height: 16px; stroke: var(--cyan); stroke-width: 2.4; fill: none; flex-shrink: 0; margin-top: 4px; }
.tier-includes li.plus { color: var(--cyan); font-weight: 600; }
.tier-includes li.plus svg { stroke: var(--cyan); }
.tier-cta { display: flex; flex-direction: column; justify-content: center; align-items: flex-end; gap: 1rem; text-align: right; }
.tier-cta .pkg-price { margin-bottom: 0; }
.tier-cta .pv { font-size: 0.78rem; color: var(--faint); }

/* Comparison table */
.compare-scroll { overflow-x: auto; border: 1px solid var(--line); border-radius: 16px; background: var(--coal-3); }
.compare { width: 100%; min-width: 680px; border-collapse: collapse; font-size: 0.88rem; }
.compare th, .compare td { padding: 0.85rem 1.1rem; text-align: center; border-bottom: 1px solid var(--line-soft); }
.compare thead th { font-family: 'Sora', sans-serif; font-size: 0.78rem; letter-spacing: 0.06em; color: var(--text); background: var(--coal-4); }
.compare thead th:first-child { text-align: left; }
.compare tbody th { text-align: left; font-weight: 600; color: rgba(234,242,249,0.85); }
.compare td .yes { color: var(--cyan); font-weight: 800; }
.compare td .no { color: var(--faint); }
.compare tbody tr:last-child th, .compare tbody tr:last-child td { border-bottom: none; }
.compare .price-row td { font-family: 'Sora', sans-serif; font-weight: 700; color: var(--text); }

/* Add-ons */
.addon-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.1rem; }
.addon { background: var(--coal-3); border: 1px solid var(--line); border-radius: 16px; padding: 1.75rem; display: flex; flex-direction: column; gap: 0.5rem; }
.addon .addon-top { display: flex; align-items: center; justify-content: space-between; gap: 1rem; }
.addon h3 { font-size: 1.05rem; }
.addon .addon-price { font-family: 'Sora', sans-serif; font-weight: 800; font-size: 1.3rem; background: var(--accent-grad); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; color: transparent; white-space: nowrap; }
.addon p { font-size: 0.88rem; line-height: 1.6; }

/* --- Booking page --- */
.book-grid { display: grid; grid-template-columns: 1.15fr 0.85fr; gap: clamp(2.5rem, 5vw, 4rem); align-items: start; }
.book-form { background: var(--coal-3); border: 1px solid var(--line); border-radius: 18px; padding: clamp(1.75rem, 3vw, 2.5rem); }
.form-group { margin-bottom: 1.35rem; }
.form-group label { display: block; font-family: 'Sora', sans-serif; font-size: 0.76rem; letter-spacing: 0.08em; text-transform: uppercase; font-weight: 600; color: rgba(234,242,249,0.85); margin-bottom: 0.55rem; }
.form-group input, .form-group select, .form-group textarea {
  width: 100%; min-height: 52px; padding: 0.8rem 1rem;
  background: var(--coal-2); border: 1.5px solid var(--line); border-radius: 10px;
  font-family: inherit; font-size: 1rem; color: var(--text);
  transition: border-color 0.2s; -webkit-appearance: none; appearance: none;
}
.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' fill='none' stroke='%233BDCFF' stroke-width='2'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 1rem center; padding-right: 2.5rem;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { outline: none; border-color: var(--cyan); }
.form-group input::placeholder, .form-group textarea::placeholder { color: var(--faint); }
.form-group textarea { resize: vertical; min-height: 100px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.book-form .btn { width: 100%; }
.form-small { font-size: 0.8rem; color: var(--faint); margin-top: 1rem; text-align: center; }
.form-success { display: none; text-align: center; padding: 2.5rem 1rem; }
.form-success .tick { width: 64px; height: 64px; border-radius: 50%; background: var(--accent-grad); margin: 0 auto 1.4rem; display: flex; align-items: center; justify-content: center; }
.form-success .tick svg { width: 30px; height: 30px; stroke: var(--ink-on-accent); stroke-width: 3; fill: none; }
.form-success h2 { font-size: 1.5rem; margin-bottom: 0.8rem; }
.form-success p { max-width: 40ch; margin: 0 auto 0.6rem; }
.form-success strong { color: var(--text); }

.book-side { display: flex; flex-direction: column; gap: 1.2rem; }
.next-card { background: var(--coal-3); border: 1px solid var(--line); border-radius: 18px; padding: 2rem; }
.next-card h2 { font-size: 1.25rem; margin-bottom: 1.4rem; }
.next-steps { list-style: none; display: flex; flex-direction: column; gap: 1.3rem; }
.next-steps li { display: flex; gap: 1rem; align-items: flex-start; }
.next-steps .n {
  width: 34px; height: 34px; border-radius: 50%; flex-shrink: 0;
  background: rgba(59,220,255,0.1); border: 1.5px solid rgba(59,220,255,0.4); color: var(--cyan);
  display: flex; align-items: center; justify-content: center; font-family: 'Sora', sans-serif; font-weight: 700; font-size: 0.85rem;
}
.next-steps .t { font-family: 'Sora', sans-serif; font-weight: 600; font-size: 0.95rem; margin-bottom: 0.15rem; }
.next-steps p { font-size: 0.86rem; line-height: 1.55; }
.side-note { background: linear-gradient(var(--coal-3), var(--coal-3)) padding-box, var(--accent-grad) border-box; border: 1.5px solid transparent; border-radius: 18px; padding: 1.75rem 2rem; }
.side-note h3 { font-size: 1.02rem; margin-bottom: 0.5rem; }
.side-note p { font-size: 0.88rem; }
.side-note a { color: var(--cyan); font-weight: 700; }
.side-note a:hover { text-decoration: underline; text-underline-offset: 3px; }

/* --- Responsive --- */
@media (max-width: 1020px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-visual { max-width: 620px; }
  .pkg-grid { grid-template-columns: 1fr 1fr; }
  .trust-grid { grid-template-columns: 1fr 1fr; }
  .ba-wrap, .cov-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .tier { grid-template-columns: 1fr; }
  .tier-cta { flex-direction: row; justify-content: space-between; align-items: center; text-align: left; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}
@media (max-width: 900px) {
  .nav-links {
    display: none; position: fixed; top: var(--nav-h); left: 0; right: 0;
    background: var(--coal-2); border-bottom: 1px solid var(--line);
    flex-direction: column; align-items: stretch; padding: 1.25rem var(--pad) 1.75rem; gap: 0.2rem;
  }
  .nav-links.open { display: flex; }
  .nav-links > li > a { min-height: 48px; width: 100%; }
  .nav-links > li > a.btn { margin-top: 0.8rem; }
  .nav-toggle { display: flex; }
}
@media (max-width: 640px) {
  .steps { grid-template-columns: 1fr; }
  .step::after { display: none; }
  .pkg-grid, .rev-grid, .addon-grid { grid-template-columns: 1fr; }
  .trust-grid { grid-template-columns: 1fr; }
  .tier-includes ul { grid-template-columns: 1fr; }
  .tier-cta { flex-direction: column; align-items: flex-start; }
  .form-row { grid-template-columns: 1fr; }
  .book-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .cta-inner { flex-direction: column; align-items: flex-start; }
  .float-chip.top { top: 0; right: 0; }
  .mobile-book { display: flex; }
  footer { padding-bottom: 7rem; }
}

@media (prefers-reduced-motion: reduce) {
  .van-sheen, .hero-badge .dot, .cov-ring.r1 { animation: none; }
  html { scroll-behavior: auto; }
}

/* Lightwork demo attribution bar */
.lw-demo-bar { display: block; background: #241631; color: rgba(255,255,255,0.85); text-align: center; padding: 9px 16px; font-size: 13px; letter-spacing: 0.02em; text-decoration: none; position: relative; z-index: 200; }
.lw-demo-bar strong { color: #78ffd3; font-weight: 700; }
.lw-demo-bar:hover { background: #2f1d40; }
