/* =================================================================
   Claimspot — styles.css  (hand-written; no Tailwind CDN)
   Art direction: dark premium tech, ONE accent gradient, lit-glass
   cards, hairline borders with a 1px top light edge, film grain,
   dotted-map texture. Motion: transform/opacity only.
   ================================================================= */

:root {
  --bg:       #0A0E1C;
  --surface:  #0E1428;
  --surface2: #121A33;
  --line:     #1B2440;
  --brand:    #2D6BFF;
  --sky:      #38BDF8;
  --success:  #22C55E;
  --ink:      #F4F7FF;
  --muted:    #9AA4C2;
  --faint:    #5C688C;
  --accent:   linear-gradient(135deg, #2D6BFF, #38BDF8);
  --ease:     cubic-bezier(0.16, 1, 0.3, 1);
  --container: 1280px;
  --pad: clamp(1.25rem, 4vw, 2rem);

  /* ---- shared design-system scale (one rhythm for the whole page) ---- */
  --section-pad: clamp(5rem, 10vw, 8.75rem);   /* identical vertical padding on every section */
  --head-gap:    clamp(2.75rem, 5vw, 4rem);    /* heading block -> content */
  /* type scale: every H2/H3/body uses these — no one-off sizes */
  --fs-h2:   clamp(1.95rem, 3.8vw, 2.85rem);
  --fs-h3:   clamp(1.2rem, 2vw, 1.5rem);
  --fs-body: clamp(1rem, 1.4vw, 1.12rem);
  --fs-sm:   clamp(.92rem, 1.3vw, 1rem);
  /* one card system */
  --radius:    16px;
  --radius-lg: 22px;
  --dur:  .6s;   /* shared reveal/transition duration */
}

/* ---------- base / reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; }
body {
  margin: 0; background: var(--bg); color: var(--ink);
  font-family: Inter, system-ui, sans-serif; line-height: 1.6;
  -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
* { -webkit-tap-highlight-color: transparent; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }
ul, ol { margin: 0; padding: 0; list-style: none; }
h1, h2, h3, h4, p { margin: 0; }
::selection { color: #fff; background: rgba(45,107,255,0.32); }
:focus-visible { outline: 2px solid var(--sky); outline-offset: 3px; border-radius: 8px; }

.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: var(--pad); }
.container.narrow { max-width: 880px; }
.muted { color: var(--muted); }

/* film grain (~3%) over the dark base */
.grain {
  position: fixed; inset: 0; z-index: 1; pointer-events: none; opacity: .035;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='120' height='120'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
  mix-blend-mode: overlay;
}

.skip-link {
  position: fixed; left: 50%; top: -100px; transform: translateX(-50%); z-index: 200;
  background: var(--surface2); color: var(--ink); padding: 10px 18px; border-radius: 10px;
  border: 1px solid var(--line); transition: top .25s var(--ease);
}
.skip-link:focus { top: 12px; }

/* slim top scroll-progress bar */
#scroll-progress {
  position: fixed; top: 0; left: 0; height: 3px; width: 100%; z-index: 120;
  transform: scaleX(0); transform-origin: left center; background: var(--accent);
  box-shadow: 0 0 14px rgba(56,189,248,.6); will-change: transform;
}

/* cursor glow (desktop, pointer:fine) */
#cursor-glow {
  position: fixed; top: 0; left: 0; z-index: 2; width: 480px; height: 480px;
  margin: -240px 0 0 -240px; border-radius: 50%; pointer-events: none; opacity: 0;
  background: radial-gradient(circle, rgba(45,107,255,.16), transparent 60%);
  transition: opacity .3s var(--ease); will-change: transform;
}

/* ================= TYPOGRAPHY HELPERS ================= */
.section-title {
  font-family: "Space Grotesk", sans-serif; font-weight: 600;
  font-size: var(--fs-h2); line-height: 1.12;
  letter-spacing: -.02em; color: var(--ink); text-wrap: balance;
}
.section-lead { margin-top: 1.1rem; font-size: var(--fs-body); color: var(--muted); max-width: 65ch; line-height: 1.7; }
.sec-head { text-align: center; margin-inline: auto; max-width: 760px; margin-bottom: var(--head-gap); }
.sec-head .section-lead { margin-inline: auto; }

/* animated gradient on key phrases */
.grad-text {
  background: linear-gradient(100deg, #2D6BFF, #38BDF8, #2D6BFF);
  background-size: 220% 100%;
  -webkit-background-clip: text; background-clip: text; color: transparent;
  animation: gradShift 7s ease-in-out infinite;
}
@keyframes gradShift { 0%,100% { background-position: 0% 50%; } 50% { background-position: 100% 50%; } }

/* pin/dot section marker (logo motif) */
.pin-marker {
  display: inline-block; width: 12px; height: 12px; margin-bottom: 16px; border-radius: 50%;
  background: var(--accent); box-shadow: 0 0 0 6px rgba(45,107,255,.12), 0 0 18px rgba(56,189,248,.6);
}

/* ONE eyebrow system for every section: "NN · LABEL" + a leading accent pin.
   The pin is the route motif carried down the page; it lights up on scroll. */
.kicker {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: "Space Grotesk", sans-serif;
  font-weight: 500; font-size: .78rem; letter-spacing: .12em;
  text-transform: uppercase; color: var(--muted);
  margin-bottom: 1.25rem;
}
.kicker::before {
  content: ""; flex: none; width: 7px; height: 7px; border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 4px rgba(45,107,255,.12), 0 0 12px rgba(56,189,248,.55);
  transition: opacity var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}
.reveal .kicker::before { opacity: .3; }            /* dim until the section arrives */
.reveal.is-visible .kicker::before { opacity: 1; }  /* …then lights up */

.sec-head--left { text-align: left; margin-inline: 0; margin-bottom: var(--head-gap); max-width: 56ch; }
.sec-head--left .section-lead { margin-left: 0; }

.section { padding-block: var(--section-pad); position: relative; }

/* ================= NAVBAR ================= */
#navbar { position: fixed; inset: 0 0 auto 0; z-index: 100; transition: background .3s var(--ease), border-color .3s var(--ease); border-bottom: 1px solid transparent; }
#navbar.scrolled { background: rgba(10,14,28,.72); backdrop-filter: blur(14px) saturate(140%); -webkit-backdrop-filter: blur(14px) saturate(140%); border-bottom-color: var(--line); }
.nav-inner { max-width: var(--container); margin-inline: auto; padding: 14px var(--pad); display: flex; align-items: center; justify-content: space-between; gap: 1rem; }
.brand { display: inline-flex; align-items: center; }
.nav-logo { height: 30px; width: auto; filter: brightness(0) invert(1); opacity: .95; }
.nav-links { display: flex; gap: 1.75rem; }
.nav-link { position: relative; color: var(--muted); font-size: .95rem; font-weight: 500; padding: 4px 0; transition: color .2s var(--ease); }
.nav-link:hover { color: var(--ink); }
.nav-link::after { content: ""; position: absolute; left: 0; bottom: -2px; height: 2px; width: 0; background: var(--accent); border-radius: 2px; transition: width .3s var(--ease); }
.nav-link:hover::after { width: 100%; }
.nav-right { display: flex; align-items: center; gap: .8rem; }

.lang-switch { display: inline-flex; align-items: center; gap: 2px; border: 1px solid var(--line); border-radius: 999px; padding: 3px 8px; background: rgba(18,26,51,.5); }
.lang-btn { color: var(--faint); font-size: .8rem; font-weight: 600; padding: 2px 6px; border-radius: 999px; transition: color .2s var(--ease); min-width: 26px; }
.lang-btn.is-active { color: var(--ink); }
.lang-btn:hover { color: var(--sky); }
.lang-sep { color: var(--faint); font-size: .8rem; }

.menu-toggle { display: none; flex-direction: column; gap: 5px; width: 44px; height: 44px; align-items: center; justify-content: center; }
.menu-toggle span { width: 22px; height: 2px; background: var(--ink); border-radius: 2px; transition: transform .3s var(--ease), opacity .2s var(--ease); }
.menu-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.menu-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.mobile-menu { background: rgba(10,14,28,.97); border-bottom: 1px solid var(--line); animation: drop .3s var(--ease); }
.mobile-menu ul { padding: .5rem var(--pad) 1rem; }
@keyframes drop { from { opacity: 0; transform: translateY(-8px); } to { opacity: 1; transform: none; } }
.mobile-link { display: block; padding: 12px 8px; min-height: 44px; color: var(--ink); font-weight: 500; border-radius: 10px; }
.mobile-link:hover { background: var(--surface2); }

/* ================= BUTTONS ================= */
.btn-primary, .btn-ghost, .btn-light {
  position: relative; display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  min-height: 50px; padding: 0 26px; border-radius: 14px; font-weight: 600; font-size: .98rem;
  letter-spacing: .01em; overflow: hidden; will-change: transform;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), background .25s var(--ease), border-color .25s var(--ease);
}
.btn-primary { color: #fff; background: var(--accent); box-shadow: 0 8px 24px -8px rgba(45,107,255,.6); }
.btn-primary:hover { box-shadow: 0 16px 38px -10px rgba(45,107,255,.8); }
.btn-primary::before, .btn-light::before {
  content: ""; position: absolute; inset: 0; transform: translateX(-120%);
  background: linear-gradient(110deg, transparent 30%, rgba(255,255,255,.35) 50%, transparent 70%);
  transition: transform .7s var(--ease);
}
.btn-primary:hover::before, .btn-light:hover::before { transform: translateX(120%); }
.btn-ghost { color: var(--ink); background: rgba(18,26,51,.5); border: 1px solid var(--line); }
.btn-ghost:hover { transform: translateY(-2px); border-color: var(--brand); background: rgba(18,26,51,.85); }
.btn-light { color: #0E1428; background: var(--ink); box-shadow: 0 10px 30px -10px rgba(0,0,0,.5); }
.btn-primary:not(.magnetic):hover, .btn-light:not(.magnetic):hover { transform: translateY(-2px); }
.btn-text { display: inline-flex; align-items: center; gap: 6px; color: var(--sky); font-weight: 600; padding: 6px 2px; transition: color .2s var(--ease), transform .2s var(--ease); }
.btn-text:hover { color: var(--ink); transform: translateX(4px); }
.sec-cta { text-align: center; margin-top: 2.5rem; }

/* ================= HERO ================= */
.hero { position: relative; overflow: hidden; padding-top: clamp(7rem, 12vw, 9.5rem); padding-bottom: clamp(4rem, 8vw, 7rem); }
.hero-grid { display: grid; grid-template-columns: 1fr; gap: clamp(2rem, 5vw, 4rem); align-items: center; position: relative; z-index: 3; }
.hero-copy { text-align: center; }
.hero-title { font-family: "Space Grotesk", sans-serif; font-weight: 700; line-height: 1.04; letter-spacing: -.03em; margin-top: 0; }
.hl-line { display: block; font-size: clamp(2.1rem, 6vw, 4rem); }
.hero-sub { margin: 1.5rem auto 0; max-width: 60ch; color: var(--muted); font-size: clamp(1.02rem, 1.6vw, 1.2rem); }
.hero-actions { display: flex; flex-wrap: wrap; gap: .9rem; justify-content: center; margin-top: 2rem; }

/* mesh blobs (transform/opacity keyframes) */
.mesh { position: absolute; inset: 0; overflow: hidden; pointer-events: none; z-index: 0; }
.mesh span { position: absolute; width: 55vmax; height: 55vmax; border-radius: 50%; opacity: .32; will-change: transform, opacity; }
.mesh span:nth-child(1) { top: -25%; left: -12%; background: radial-gradient(circle, rgba(45,107,255,.55), transparent 60%); animation: meshA 22s var(--ease) infinite alternate; }
.mesh span:nth-child(2) { bottom: -30%; right: -16%; background: radial-gradient(circle, rgba(56,189,248,.45), transparent 60%); animation: meshB 26s var(--ease) infinite alternate; }
.mesh span:nth-child(3) { top: 18%; right: 22%; background: radial-gradient(circle, rgba(45,107,255,.28), transparent 60%); animation: meshC 30s var(--ease) infinite alternate; }
@keyframes meshA { to { transform: translate3d(8%,6%,0) scale(1.2); } }
@keyframes meshB { from { transform: translate3d(0,0,0) scale(1.1); opacity:.28 } to { transform: translate3d(-7%,-5%,0) scale(1); opacity:.45 } }
@keyframes meshC { to { transform: translate3d(-6%,8%,0) scale(1.15); } }

/* faint dotted map texture */
.map-dots {
  position: absolute; inset: 0; pointer-events: none; opacity: .5; z-index: 0;
  background-image: radial-gradient(rgba(154,164,194,.12) 1px, transparent 1px);
  background-size: 28px 28px;
  -webkit-mask-image: radial-gradient(80% 70% at 50% 40%, #000, transparent 80%);
          mask-image: radial-gradient(80% 70% at 50% 40%, #000, transparent 80%);
}

/* ----- hero journey: route + truck + waypoint cards ----- */
.hero-journey { position: relative; width: 100%; aspect-ratio: 62 / 52; max-width: 620px; margin-inline: auto; }
.route-svg { position: absolute; inset: 0; width: 100%; height: 100%; overflow: visible; }
#route-progress { stroke-dasharray: 1; stroke-dashoffset: 1; } /* set precisely in JS */
#truck { will-change: transform; }

.wp-card {
  position: absolute; width: clamp(170px, 22vw, 215px); padding: 14px 16px; border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(18,26,51,.82), rgba(14,20,40,.7));
  border: 1px solid rgba(154,164,194,.16); box-shadow: 0 20px 50px -22px rgba(0,0,0,.75);
  backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
  display: flex; gap: 12px; align-items: flex-start; z-index: 4;
  opacity: 0; transform: translateY(16px); transition: opacity .6s var(--ease), transform .6s var(--ease);
}
.wp-card::before { /* 1px top light edge */
  content: ""; position: absolute; inset: 0 0 auto 0; height: 1px; border-radius: var(--radius) var(--radius) 0 0;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.25), transparent);
}
.wp-card.arrived { opacity: 1; transform: none; }
.wp-index { flex: none; width: 26px; height: 26px; border-radius: 50%; display: grid; place-items: center;
  font-family: "Space Grotesk", sans-serif; font-weight: 700; font-size: .85rem; color: #fff;
  background: var(--accent); box-shadow: 0 0 16px rgba(56,189,248,.5); }
.wp-body { display: flex; flex-direction: column; gap: 2px; }
.wp-body strong { font-size: .95rem; font-weight: 600; }
.wp-meta { font-size: .78rem; color: var(--muted); }
.badge { align-self: flex-start; margin-top: 8px; font-size: .72rem; font-weight: 600; padding: 3px 10px; border-radius: 999px; }
.badge--muted { color: var(--muted); background: rgba(154,164,194,.12); }
.badge--progress { color: var(--sky); background: rgba(56,189,248,.14); }
.badge--ok { color: var(--success); background: rgba(34,197,94,.16); }

/* waypoint positions along the ascending route (desktop) */
.wp-1 { left: 0; top: 60%; }
.wp-2 { left: 30%; top: 33%; }
.wp-3 { right: 0; top: 4%; }

/* ================= GRIDS / CARDS ================= */
.grid-3 { display: grid; gap: 1.25rem; grid-template-columns: 1fr; }
.grid-4 { display: grid; gap: 1.25rem; grid-template-columns: 1fr; }
.subhead { text-align: center; margin: clamp(3.5rem, 7vw, 5.5rem) 0 2.5rem; }

.card {
  position: relative; padding: 28px; border-radius: 20px;
  background: linear-gradient(180deg, rgba(18,26,51,.7), rgba(14,20,40,.45));
  border: 1px solid var(--line); transform-style: preserve-3d;
  transition: transform .3s var(--ease), border-color .3s var(--ease), box-shadow .3s var(--ease);
}
.card::before { content: ""; position: absolute; inset: 0 0 auto 0; height: 1px; border-radius: 20px 20px 0 0; background: linear-gradient(90deg, transparent, rgba(255,255,255,.18), transparent); }
.card::after { content: ""; position: absolute; inset: 0; border-radius: 20px; pointer-events: none; opacity: 0; transition: opacity .3s var(--ease); background: radial-gradient(60% 45% at 50% 0%, rgba(56,189,248,.12), transparent 70%); }
.card:hover { border-color: rgba(45,107,255,.5); box-shadow: 0 26px 60px -30px rgba(45,107,255,.5); }
.card:hover::after { opacity: 1; }
.card-ic { display: inline-flex; align-items: center; justify-content: center; width: 48px; height: 48px; border-radius: 14px; color: var(--sky); background: rgba(45,107,255,.12); border: 1px solid rgba(56,189,248,.22); margin-bottom: 16px; }
.card-ic svg { width: 24px; height: 24px; }
.card-title { font-family: "Space Grotesk", sans-serif; font-weight: 600; font-size: 1.12rem; }
.card-text { margin-top: 8px; color: var(--muted); font-size: .95rem; line-height: 1.6; }

/* ================= FLOW TIMELINE (Kaip mes veikiame / process) ================= */
.flow { position: relative; }
.flow-track { position: absolute; left: 0; right: 0; top: 26px; height: 2px; background: var(--line); border-radius: 2px; }
.flow-fill { position: absolute; inset: 0; background: var(--accent); border-radius: 2px; box-shadow: 0 0 12px rgba(56,189,248,.7); transform: scaleX(0); transform-origin: left center; will-change: transform; }
.flow-steps { display: grid; gap: 1.5rem; }
.flow-steps--3 { grid-template-columns: 1fr; }
.flow-steps--5 { grid-template-columns: 1fr; }
.flow-step { position: relative; padding-top: 64px; display: flex; flex-direction: column; }
.flow-num {
  position: absolute; top: 0; left: 50%; transform: translateX(-50%);
  width: 52px; height: 52px; border-radius: 50%; display: grid; place-items: center;
  font-family: "Space Grotesk", sans-serif; font-weight: 700; font-size: 1rem;
  color: var(--faint); background: var(--surface2); border: 2px solid var(--line);
  transition: color .4s var(--ease), border-color .4s var(--ease), background .4s var(--ease), box-shadow .4s var(--ease);
}
.flow-step.is-active .flow-num { color: #fff; background: var(--accent); border-color: var(--brand); box-shadow: 0 0 0 6px rgba(45,107,255,.14), 0 0 22px rgba(56,189,248,.55); }
.flow-card { flex: 1; margin-top: 14px; padding: 22px; border-radius: 18px; text-align: center;
  background: linear-gradient(180deg, rgba(18,26,51,.7), rgba(14,20,40,.45)); border: 1px solid var(--line);
  transition: border-color .3s var(--ease), box-shadow .3s var(--ease); }
.flow-step.is-active .flow-card { border-color: rgba(45,107,255,.5); box-shadow: 0 22px 55px -30px rgba(45,107,255,.55); }
.flow-step-title { font-family: "Space Grotesk", sans-serif; font-weight: 600; font-size: 1.05rem; }
.flow-step-text { margin-top: 8px; color: var(--muted); font-size: .92rem; line-height: 1.55; }

/* ================= EXPERTISE (Mūsų kompetencija) — proof / credibility =================
   Left: refined vector EU coverage map (silhouette outline + partner nodes +
   connection lines + soft central glow). Right: editorial proof stack of 3
   metric cards, equal height, visually aligned to the map panel. */
.expertise-grid { display: grid; grid-template-columns: 1fr; gap: clamp(1.25rem, 3vw, 2rem); align-items: stretch; }

/* --- left: EU coverage panel --- */
.eu-panel {
  position: relative; height: 100%; min-height: 400px; border-radius: 22px; overflow: hidden;
  border: 1px solid var(--line);
  background:
    radial-gradient(58% 58% at 52% 46%, rgba(45,107,255,.16), transparent 72%),
    linear-gradient(180deg, rgba(16,22,42,.7), rgba(10,14,28,.85));
}
.eu-panel::before { content: ""; position: absolute; inset: 0 0 auto 0; height: 1px; background: linear-gradient(90deg, transparent, rgba(255,255,255,.18), transparent); }
.eu-glow { /* soft radial glow behind central Europe, drifts very slightly */
  position: absolute; left: 50%; top: 46%; width: 60%; aspect-ratio: 1; border-radius: 50%; pointer-events: none;
  background: radial-gradient(circle, rgba(56,189,248,.22), rgba(45,107,255,.10) 45%, transparent 70%);
  animation: euGlow 16s var(--ease) infinite alternate;
}
@keyframes euGlow { from { transform: translate(-52%,-48%) scale(1); opacity: .8; } to { transform: translate(-48%,-44%) scale(1.12); opacity: 1; } }
.eu-svg { position: absolute; inset: 0; width: 100%; height: 100%; padding: clamp(16px, 6%, 38px); }

/* coastline silhouette: faint fill + low-opacity outline (~22%) */
.eu-coast { fill: rgba(45,107,255,.09); stroke: rgba(125,170,255,.24); stroke-width: 1.1; stroke-linejoin: round; }

/* connection lines */
.eu-link { stroke: url(#netGrad); stroke-width: 1; opacity: .22; fill: none; }
.eu-link--live { stroke-dasharray: 4 9; opacity: .42; animation: linkShimmer 6s linear infinite; }
@keyframes linkShimmer { to { stroke-dashoffset: -52; } }

/* partner nodes (blue partners, green = active network) */
.eu-dot { fill: var(--sky); }
.eu-dot--green { fill: var(--success); }
.eu-halo { fill: none; stroke: var(--sky); stroke-width: 1.3; transform-box: fill-box; transform-origin: center; animation: netPulse 3.6s var(--ease) infinite; }
.eu-halo--green { stroke: var(--success); }
.eu-halo.d2 { animation-delay: .8s; } .eu-halo.d3 { animation-delay: 1.6s; } .eu-halo.d4 { animation-delay: 2.4s; }
@keyframes netPulse { 0% { transform: scale(.7); opacity: .7; } 100% { transform: scale(2.2); opacity: 0; } }

/* --- right: editorial proof stack --- */
.proof { display: grid; gap: 1rem; grid-auto-rows: 1fr; }
.proof-card {
  position: relative; display: grid; grid-template-rows: auto 1fr;
  gap: 14px; padding: clamp(22px, 2.4vw, 30px);
  border-radius: 18px; border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(18,26,51,.55), rgba(12,17,34,.5));
  transition: transform .3s var(--ease), border-color .3s var(--ease), box-shadow .3s var(--ease);
}
.proof-card::before { content: ""; position: absolute; inset: 0 0 auto 0; height: 1px; background: linear-gradient(90deg, transparent, rgba(255,255,255,.12), transparent); }
.proof-card::after { /* left accent rail */
  content: ""; position: absolute; left: 0; top: 22px; bottom: 22px; width: 2px;
  background: var(--accent); opacity: .85; border-radius: 0 2px 2px 0;
}
.proof-card:hover { transform: translateY(-2px); border-color: rgba(45,107,255,.45); box-shadow: 0 26px 60px -34px rgba(45,107,255,.5); }
.proof-num { font-family: "Space Grotesk", sans-serif; font-weight: 700; font-size: clamp(2.4rem, 4vw, 3.2rem); line-height: 1; letter-spacing: -.025em; white-space: nowrap;
  background: var(--accent); -webkit-background-clip: text; background-clip: text; color: transparent; }
.proof-title { display: flex; align-items: center; gap: 9px; font-family: "Space Grotesk", sans-serif; font-weight: 600; font-size: 1.06rem; color: var(--ink); }
.proof-title .status { width: 7px; height: 7px; border-radius: 50%; background: var(--success); box-shadow: 0 0 9px rgba(34,197,94,.85); animation: trustPulse 2.6s var(--ease) infinite; }
.proof-text { margin-top: 6px; color: var(--muted); font-size: .92rem; line-height: 1.55; max-width: 38ch; }

/* ================= WHY (Apie mus) ================= */
.why-grid { display: grid; grid-template-columns: 1fr; gap: clamp(2rem, 5vw, 3.5rem); }
.why-intro .section-lead { margin-left: 0; }
.why-list { display: grid; gap: 1rem; }
.why-item { display: flex; gap: 16px; padding: 22px; border-radius: 18px; background: rgba(18,26,51,.45); border: 1px solid var(--line); transition: border-color .3s var(--ease), transform .3s var(--ease); }
.why-item:hover { border-color: rgba(34,197,94,.4); transform: translateY(-3px); }
.why-ic { flex: none; width: 36px; height: 36px; border-radius: 50%; display: grid; place-items: center; color: var(--success); background: rgba(34,197,94,.12); border: 1px solid rgba(34,197,94,.3); }
.why-ic svg { width: 18px; height: 18px; }
.why-ic svg path { stroke-dasharray: 30; stroke-dashoffset: 30; transition: stroke-dashoffset .5s var(--ease) .15s; }
.reveal.is-visible .why-ic svg path { stroke-dashoffset: 0; }
.why-title { font-family: "Space Grotesk", sans-serif; font-weight: 600; font-size: 1.3rem; }
.why-text { margin-top: 4px; color: var(--muted); font-size: .95rem; }

/* ================= EXPANDED SERVICES extras ================= */
.pivot { margin-top: 1.25rem; font-size: 1.1rem; font-weight: 600; color: var(--ink); }
.value-wide { } /* spans wider on large screens (set in media query) */

/* ================= TABS ================= */
.tabs-list { display: flex; flex-wrap: wrap; gap: 8px; justify-content: center; padding: 6px; border-radius: 16px; border: 1px solid var(--line); background: rgba(18,26,51,.5); width: fit-content; margin-inline: auto; }
.tab { min-height: 44px; padding: 8px 18px; border-radius: 12px; font-weight: 600; font-size: .92rem; color: var(--muted); transition: color .25s var(--ease), background .25s var(--ease); }
.tab.is-active { color: #fff; background: var(--accent); box-shadow: 0 8px 20px -10px rgba(45,107,255,.6); }
.tab:not(.is-active):hover { color: var(--ink); }
.tab-panel { margin-top: 28px; animation: panelIn .35s var(--ease); }
@keyframes panelIn { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: none; } }
.steplist { display: grid; gap: 12px; max-width: 820px; margin-inline: auto; }
.steplist li { display: flex; gap: 16px; padding: 18px 20px; border-radius: 16px; background: rgba(18,26,51,.5); border: 1px solid var(--line); }
.steplist-n { flex: none; width: 34px; height: 34px; border-radius: 50%; display: grid; place-items: center; font-family: "Space Grotesk", sans-serif; font-weight: 700; font-size: .95rem; color: var(--sky); background: rgba(45,107,255,.12); border: 1px solid rgba(56,189,248,.25); }
.steplist strong { font-size: 1rem; }
.steplist p { margin-top: 4px; color: var(--muted); font-size: .9rem; line-height: 1.55; }

/* ================= PRICING ================= */
.glass { backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px); }
.pricing { position: relative; text-align: center; padding: clamp(2rem, 5vw, 3.5rem); border-radius: 24px; border: 1px solid var(--line);
  background: radial-gradient(80% 120% at 50% 0%, rgba(45,107,255,.14), transparent 60%), linear-gradient(180deg, rgba(18,26,51,.7), rgba(14,20,40,.4)); }
.pricing .section-lead { margin-inline: auto; }
.pricing .btn-primary { margin-top: 2rem; }

/* ================= CONTACT (Kontaktai) — premium 2-col panel ================= */
.contact {
  position: relative; overflow: hidden; border-radius: 28px;
  padding: clamp(2rem, 5vw, 3.5rem);
  border: 1px solid var(--line);
  background:
    radial-gradient(80% 120% at 8% 0%, rgba(45,107,255,.16), transparent 55%),
    linear-gradient(180deg, rgba(18,26,51,.6), rgba(12,17,34,.82));
  box-shadow: 0 40px 100px -60px rgba(45,107,255,.45);
}
.contact::before { /* gradient hairline top edge */
  content: ""; position: absolute; inset: 0 0 auto 0; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(56,189,248,.5), transparent);
}
/* animated bg: slow light lines + drifting particles */
.contact__fx { position: absolute; inset: 0; pointer-events: none; z-index: 0; overflow: hidden; }
.contact__fx svg { position: absolute; inset: 0; width: 100%; height: 100%; opacity: .45; }
.contact__fx .line { stroke-dasharray: 6 12; animation: cLine 9s linear infinite; }
.contact__fx .line.l2 { animation-duration: 13s; animation-direction: reverse; }
.contact__fx .line.l3 { animation-duration: 11s; }
@keyframes cLine { to { stroke-dashoffset: -72; } }
.contact__fx .float { position: absolute; border-radius: 50%; background: radial-gradient(circle, rgba(56,189,248,.9), transparent 65%); will-change: transform, opacity; }
.contact__fx .float:nth-child(2) { width: 7px; height: 7px; left: 20%; top: 34%; animation: floatDot 13s var(--ease) infinite; }
.contact__fx .float:nth-child(3) { width: 5px; height: 5px; left: 78%; top: 24%; animation: floatDot 16s var(--ease) infinite 1.5s; }
.contact__fx .float:nth-child(4) { width: 4px; height: 4px; left: 88%; top: 66%; animation: floatDot 14s var(--ease) infinite .8s; }
@keyframes floatDot { 0%,100% { transform: translate3d(0,0,0); opacity: .22; } 50% { transform: translate3d(0,-20px,0); opacity: .8; } }

.contact__grid { position: relative; z-index: 1; display: grid; grid-template-columns: 1fr; gap: clamp(2rem, 4vw, 3rem); align-items: center; }
/* left: copy + trust + button */
.contact__title { font-family: "Space Grotesk", sans-serif; font-weight: 600; font-size: var(--fs-h2); line-height: 1.12; letter-spacing: -.02em; color: var(--ink); margin-top: .9rem; text-wrap: balance; }
.contact__lead { margin-top: 1rem; color: var(--muted); font-size: var(--fs-body); max-width: 46ch; line-height: 1.7; }
.contact__trust { display: inline-flex; align-items: center; gap: 8px; margin-top: 1.5rem; font-size: .86rem; color: var(--muted); }
.contact__trust .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--success); box-shadow: 0 0 10px rgba(34,197,94,.85); animation: trustPulse 2.4s var(--ease) infinite; }
@keyframes trustPulse { 0%,100% { box-shadow: 0 0 6px rgba(34,197,94,.6); } 50% { box-shadow: 0 0 16px rgba(34,197,94,1); } }
.contact__actions { margin-top: 1.75rem; }

/* right: structured contact detail cards */
.contact__panel { display: grid; grid-template-columns: 1fr; gap: .85rem; }
.contact-card {
  position: relative; display: flex; align-items: center; gap: 14px; padding: 16px 18px;
  border-radius: var(--radius); border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(18,26,51,.6), rgba(14,20,40,.4));
  backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
  transition: transform .3s var(--ease), border-color .3s var(--ease), box-shadow .3s var(--ease);
}
.contact-card::before { /* shared 1px top light edge (card family) */
  content: ""; position: absolute; inset: 0 0 auto 0; height: 1px; border-radius: var(--radius) var(--radius) 0 0;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.18), transparent);
}
.contact-card:hover { transform: translateY(-4px); border-color: rgba(45,107,255,.5); box-shadow: 0 26px 60px -34px rgba(45,107,255,.5); }
.contact-card__ic { flex: none; width: 42px; height: 42px; border-radius: 12px; display: grid; place-items: center; color: var(--sky); background: rgba(45,107,255,.12); border: 1px solid rgba(56,189,248,.22); }
.contact-card__ic svg { width: 20px; height: 20px; }
.contact-card__k { display: block; font-size: .76rem; letter-spacing: .08em; text-transform: uppercase; color: var(--faint); }
.contact-card__v { display: block; margin-top: 2px; color: var(--ink); font-weight: 600; font-size: .98rem; word-break: break-word; }
a.contact-card:hover .contact-card__v { color: var(--sky); }

@media (min-width: 900px) {
  .contact__grid { grid-template-columns: 1.05fr 1fr; gap: clamp(2.5rem, 4vw, 4rem); }
  .contact__panel { grid-template-columns: 1fr 1fr; }
  .contact-card--wide { grid-column: 1 / -1; }
}

/* =================================================================
   NEW PAGE ARCHITECTURE — section-specific registers
   Each section uses different density / typography to break card fatigue.
   ================================================================= */

/* ----- 02 PROBLEM ----- editorial quiet moment, max negative space ----- */
.problem { padding-block: var(--section-pad); position: relative; }
.problem::before { /* hairline separator from hero */
  content: ""; position: absolute; top: 0; left: 50%; transform: translateX(-50%);
  width: min(1100px, 90%); height: 1px;
  background: linear-gradient(90deg, transparent, rgba(56,189,248,.35), transparent);
}
.problem__inner { max-width: 940px; margin-inline: auto; text-align: center; }
.problem__title {
  font-family: "Space Grotesk", sans-serif; font-weight: 600;
  font-size: var(--fs-h2); line-height: 1.12; letter-spacing: -.02em;
  color: var(--ink); text-wrap: balance;
}
.problem__lead { margin: 2rem auto 0; max-width: 60ch; color: var(--muted); font-size: var(--fs-body); line-height: 1.7; }
.problem__pivot { margin-top: 2rem; font-size: var(--fs-body); font-weight: 600; color: var(--ink);
  background: linear-gradient(100deg, #F4F7FF, #38BDF8, #F4F7FF); background-size: 220% 100%;
  -webkit-background-clip: text; background-clip: text; color: transparent; animation: gradShift 9s ease-in-out infinite; }

/* ----- 03 PROCESS ----- editorial flow (large numerals, no glass cards) ----- */
.process { padding-block: var(--section-pad); }
.flow--ed .flow-track { background: var(--line); }
.flow--ed .flow-steps { display: grid; gap: clamp(2rem, 4vw, 3rem); grid-template-columns: 1fr; }
.flow--ed .flow-step { padding-top: 88px; text-align: left; }
.flow--ed .flow-num {
  position: absolute; top: -8px; left: 0; transform: none;
  width: auto; height: auto; border-radius: 0; background: transparent; border: 0;
  font-family: "Space Grotesk", sans-serif; font-weight: 600;
  font-size: clamp(3rem, 6vw, 5rem); line-height: 1; letter-spacing: -.03em;
  color: rgba(154,164,194,.18);
  transition: color .5s var(--ease);
}
.flow--ed .flow-step.is-active .flow-num {
  background: var(--accent); -webkit-background-clip: text; background-clip: text; color: transparent;
}
.flow--ed .flow-step::before { /* tiny indicator dot under number */
  content: ""; position: absolute; top: 78px; left: 0; width: 28px; height: 2px;
  background: rgba(56,189,248,.4); transition: background .4s var(--ease);
}
.flow--ed .flow-step.is-active::before { background: var(--sky); box-shadow: 0 0 12px rgba(56,189,248,.7); }
.flow--ed .flow-step-title { font-family: "Space Grotesk", sans-serif; font-weight: 600; font-size: var(--fs-h3); color: var(--ink); line-height: 1.25; }
.flow--ed .flow-step-text { margin-top: 10px; color: var(--muted); font-size: var(--fs-sm); line-height: 1.6; max-width: 30ch; }

@media (min-width: 760px) {
  .flow--ed .flow-steps { grid-template-columns: repeat(3, 1fr); gap: clamp(1.5rem, 3vw, 3rem); }
  .flow--ed .flow-track { top: 36px; left: 0; right: 0; height: 2px; width: auto; }
  .flow--ed .flow-fill { transform: scaleX(0); transform-origin: left center; height: 100%; width: 100%; }
}

/* ----- 02 CLAIM NETWORK ----- real vector EU map + live partner network ----- */
.claim-net { padding-block: var(--section-pad); }
.net-stage { display: grid; grid-template-columns: 1fr; gap: clamp(2rem, 4vw, 3.5rem); align-items: center; }
@media (min-width: 980px) { .net-stage { grid-template-columns: 1.55fr 1fr; } }

.net-map {
  position: relative; border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--line);
  background:
    radial-gradient(60% 60% at 50% 42%, rgba(45,107,255,.16), transparent 72%),
    linear-gradient(180deg, rgba(14,20,40,.72), rgba(10,14,28,.9));
  height: clamp(420px, 46vw, 600px);   /* portrait map fits by height (meet), centred */
}
.net-map::before { content: ""; position: absolute; inset: 0 0 auto 0; height: 1px; background: linear-gradient(90deg, transparent, rgba(56,189,248,.4), transparent); z-index: 2; }
.eu-map { position: absolute; inset: 0; width: 100%; height: 100%; padding: clamp(18px, 5%, 40px); will-change: transform; }

/* country geometry */
.eu-c {
  fill: rgba(43,74,140,.14); stroke: rgba(125,170,255,.20); stroke-width: .8; stroke-linejoin: round;
  transition: fill .35s var(--ease), stroke .35s var(--ease); cursor: pointer;
}
.eu-c:hover { fill: rgba(45,107,255,.32); stroke: rgba(56,189,248,.7); }
.eu-c.is-partner { fill: rgba(45,107,255,.2); }      /* countries we cover sit slightly brighter */
.eu-c.is-hub { fill: rgba(34,197,94,.28); stroke: rgba(34,197,94,.7); }   /* Lithuania — Claimspot home base */
.eu-c.is-hub:hover { fill: rgba(34,197,94,.4); }

/* connection lines (built by JS) */
.eu-link { stroke: url(#netGrad); fill: none; stroke-width: 1; opacity: .28; }
.eu-link.is-live { stroke-dasharray: 3 8; opacity: .5; animation: linkShimmer 6s linear infinite; }

/* partner nodes (built by JS) */
.eu-node { fill: var(--sky); }
.eu-node--green { fill: var(--success); }
.eu-node--hub { fill: var(--success); stroke: #fff; stroke-width: 1.4; }   /* Claimspot home node (Lithuania) */
.eu-halo2 { fill: none; stroke: var(--sky); stroke-width: 1.2; transform-box: fill-box; transform-origin: center; animation: netPulse 3.4s var(--ease) infinite; }
.eu-halo2--green { stroke: var(--success); }
.eu-halo2.h2 { animation-delay: .8s; } .eu-halo2.h3 { animation-delay: 1.6s; } .eu-halo2.h4 { animation-delay: 2.4s; }

/* moving claim signals */
.eu-signal { fill: #fff; filter: drop-shadow(0 0 4px rgba(56,189,248,.9)); }

/* hover tooltip */
.net-tip {
  position: absolute; z-index: 5; pointer-events: none; transform: translate(-50%, -130%);
  padding: 5px 11px; border-radius: 8px; font-size: .76rem; font-weight: 600; white-space: nowrap;
  color: var(--ink); background: rgba(10,14,28,.92); border: 1px solid var(--line);
  box-shadow: 0 10px 30px -12px rgba(0,0,0,.7); opacity: 0; transition: opacity .18s var(--ease);
}
.net-tip.show { opacity: 1; }

/* side: proof stats + single-point-of-contact line */
.net-side { display: flex; flex-direction: column; gap: 0; }
.net-stats { display: grid; gap: 0; border-top: 1px solid var(--line); }
.net-stats li { display: grid; grid-template-columns: auto 1fr; align-items: baseline; gap: 0 18px; padding: clamp(16px,2vw,22px) 0; border-bottom: 1px solid var(--line); }
.net-stats b { font-family: "Space Grotesk", sans-serif; font-weight: 700; font-size: clamp(1.8rem, 3.2vw, 2.6rem); line-height: 1; letter-spacing: -.02em;
  background: var(--accent); -webkit-background-clip: text; background-clip: text; color: transparent; white-space: nowrap; }
.net-stats span { color: var(--muted); font-size: var(--fs-sm); line-height: 1.45; }
.net-note { display: flex; align-items: center; gap: 10px; margin-top: 1.5rem; font-weight: 600; color: var(--ink); font-size: .98rem; }
.net-note .dot { flex: none; width: 8px; height: 8px; border-radius: 50%; background: var(--success); box-shadow: 0 0 10px rgba(34,197,94,.85); animation: trustPulse 2.6s var(--ease) infinite; }

/* ----- 04 SCENARIOS ----- two opposed panels, distinct accents + direction ----- */
.scen { padding-block: var(--section-pad); position: relative; }
.scen::before { content: ""; position: absolute; top: 0; left: 50%; transform: translateX(-50%); width: min(1100px, 90%); height: 1px; background: linear-gradient(90deg, transparent, rgba(56,189,248,.2), transparent); }
.scen-grid { display: grid; grid-template-columns: 1fr; gap: clamp(1.25rem, 2.5vw, 1.75rem); }
@media (min-width: 860px) { .scen-grid { grid-template-columns: 1fr 1fr; } }

.scen-card {
  --acc: var(--brand); --acc2: var(--sky);
  position: relative; overflow: hidden; padding: clamp(26px, 3vw, 40px); border-radius: var(--radius-lg);
  border: 1px solid var(--line); background: linear-gradient(180deg, rgba(18,26,51,.5), rgba(12,17,34,.55));
  transition: transform .4s var(--ease), border-color .4s var(--ease), box-shadow .4s var(--ease);
}
.scen-card::before { /* accent glow wash, intensifies on hover */
  content: ""; position: absolute; inset: 0; pointer-events: none; opacity: .5; transition: opacity .4s var(--ease);
  background: radial-gradient(90% 60% at 0% 0%, color-mix(in srgb, var(--acc) 18%, transparent), transparent 60%);
}
.scen-card::after { /* top accent hairline in the scenario colour */
  content: ""; position: absolute; inset: 0 0 auto 0; height: 2px;
  background: linear-gradient(90deg, var(--acc), var(--acc2)); opacity: .8;
}
.scen-card:hover, .scen-card:focus-visible {
  transform: translateY(-4px); border-color: color-mix(in srgb, var(--acc) 50%, var(--line));
  box-shadow: 0 30px 70px -40px color-mix(in srgb, var(--acc) 70%, transparent);
}
.scen-card:hover::before, .scen-card:focus-visible::before { opacity: 1; }
.scen--you   { --acc: #F59E0B; --acc2: #FBBF24; }   /* defence — amber */
.scen--third { --acc: #2D6BFF; --acc2: #22C55E; }   /* recovery — blue→green */

.scen-head { display: flex; align-items: center; justify-content: space-between; gap: 12px; margin-bottom: 1.25rem; }
.scen-tag { font-family: "Space Grotesk", sans-serif; font-weight: 600; font-size: .78rem; letter-spacing: .16em; text-transform: uppercase; color: var(--muted); }
.scen-mode {
  font-size: .72rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase;
  padding: 4px 11px; border-radius: 999px;
  color: var(--acc2); background: color-mix(in srgb, var(--acc) 14%, transparent);
  border: 1px solid color-mix(in srgb, var(--acc) 40%, transparent);
}
.scen-title { font-family: "Space Grotesk", sans-serif; font-weight: 600; font-size: var(--fs-h3); line-height: 1.2; letter-spacing: -.02em; color: var(--ink); }
.scen-desc { margin-top: .9rem; color: var(--muted); font-size: var(--fs-sm); line-height: 1.6; }

/* directional flow visual */
.scen-flow { display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 12px; margin: 1.75rem 0; }
.scen-ep { display: flex; flex-direction: column; align-items: center; gap: 6px; }
.scen-ep i { width: 14px; height: 14px; border-radius: 50%; background: color-mix(in srgb, var(--acc) 30%, #0A0E1C); border: 1.5px solid var(--acc2); }
.scen-ep small { font-size: .72rem; color: var(--muted); white-space: nowrap; }
.scen-ep:last-child i { background: var(--acc2); box-shadow: 0 0 12px color-mix(in srgb, var(--acc2) 80%, transparent); }
.scen-track { position: relative; height: 2px; border-radius: 2px; background: color-mix(in srgb, var(--acc) 30%, var(--line)); overflow: visible; }
.scen-dot { position: absolute; top: 50%; left: 0; width: 8px; height: 8px; margin: -4px 0 0 -4px; border-radius: 50%;
  background: var(--acc2); box-shadow: 0 0 10px color-mix(in srgb, var(--acc2) 90%, transparent);
  animation: scenFlow 3s var(--ease) infinite; }
.scen-flow--rev .scen-dot { animation-name: scenFlowRev; }
.scen-card:hover .scen-dot, .scen-card:focus-visible .scen-dot { animation-duration: 1.5s; }
@keyframes scenFlow    { 0% { left: 0; opacity: 0; } 12% { opacity: 1; } 88% { opacity: 1; } 100% { left: 100%; opacity: 0; } }
@keyframes scenFlowRev { 0% { left: 100%; opacity: 0; } 12% { opacity: 1; } 88% { opacity: 1; } 100% { left: 0; opacity: 0; } }

.scen-out { display: grid; gap: 0; border-top: 1px solid var(--line); }
.scen-out li { position: relative; padding: 14px 0 14px 26px; border-bottom: 1px solid var(--line); color: var(--ink); font-size: var(--fs-sm); line-height: 1.45; }
.scen-out li:last-child { border-bottom: 0; }
.scen-out li::before {
  content: ""; position: absolute; left: 0; top: 19px; width: 12px; height: 12px; border-radius: 50%;
  background: color-mix(in srgb, var(--acc) 22%, transparent); border: 1.5px solid var(--acc2);
}
.scen-out li::after { /* check tick */
  content: ""; position: absolute; left: 4px; top: 22px; width: 4px; height: 7px;
  border: solid var(--acc2); border-width: 0 1.6px 1.6px 0; transform: rotate(45deg);
}

/* ----- 05 SERVICES ----- editorial list, no cards ----- */
.services { padding-block: var(--section-pad); border-top: 1px solid rgba(56,189,248,.08); }
.srv-list { display: flex; flex-direction: column; }
.srv-row {
  display: grid; grid-template-columns: auto 1fr; column-gap: clamp(1.5rem, 3vw, 2.5rem);
  align-items: baseline; padding: clamp(1.4rem, 2.5vw, 2rem) 0;
  border-top: 1px solid var(--line); position: relative;
  transition: background .4s var(--ease);
}
.srv-row:last-child { border-bottom: 1px solid var(--line); }
.srv-row::before { /* accent bar appears on hover */
  content: ""; position: absolute; left: -16px; top: 50%; transform: translateY(-50%) scaleY(0);
  width: 3px; height: 60%; background: var(--accent); border-radius: 2px;
  transform-origin: center; transition: transform .4s var(--ease);
}
.srv-row:hover::before { transform: translateY(-50%) scaleY(1); }
.srv-row:hover { background: linear-gradient(90deg, rgba(45,107,255,.04), transparent 70%); }
.srv-n {
  font-family: "Space Grotesk", sans-serif; font-weight: 600;
  font-size: clamp(1rem, 1.4vw, 1.15rem); color: var(--faint); letter-spacing: .05em;
  min-width: 3ch;
}
.srv-t { font-family: "Space Grotesk", sans-serif; font-weight: 600; font-size: var(--fs-h3); color: var(--ink); letter-spacing: -.015em; }
.srv-d { grid-column: 2; margin-top: .5rem; color: var(--muted); font-size: var(--fs-sm); line-height: 1.6; max-width: 64ch; }
@media (min-width: 880px) {
  .srv-row { grid-template-columns: auto minmax(0, 22ch) 1fr; align-items: center; }
  .srv-d { grid-column: 3; margin-top: 0; }
}

/* ----- 06 VALUE ----- outcome statements, manifesto-like ----- */
.value { padding-block: var(--section-pad); position: relative; }
.value::before { /* hairline */
  content: ""; position: absolute; top: 0; left: 50%; transform: translateX(-50%);
  width: min(1100px, 90%); height: 1px;
  background: linear-gradient(90deg, transparent, rgba(56,189,248,.2), transparent);
}
.outcomes { display: grid; gap: clamp(2.5rem, 5vw, 4rem); grid-template-columns: 1fr; }
.outcome { max-width: 60ch; }
.outcome__lbl {
  display: inline-block; font-family: "Space Grotesk", sans-serif;
  font-weight: 500; font-size: .78rem; letter-spacing: .2em; text-transform: uppercase;
  color: var(--muted); margin-bottom: 1rem;
}
.outcome__h {
  font-family: "Space Grotesk", sans-serif; font-weight: 600;
  font-size: var(--fs-h2); line-height: 1.12; letter-spacing: -.02em;
  text-wrap: balance;
}
.outcome__t { margin-top: 1rem; color: var(--muted); font-size: var(--fs-body); line-height: 1.7; }
@media (min-width: 980px) {
  .outcomes { grid-template-columns: repeat(3, 1fr); gap: clamp(2rem, 3.5vw, 3rem); align-items: start; }
  .outcome { max-width: none; }
}

/* ----- 07 PRICING ----- minimal centred statement ----- */
.pricing-min { padding-block: var(--section-pad); position: relative; }
.pricing-min::before {
  content: ""; position: absolute; top: 0; left: 50%; transform: translateX(-50%);
  width: min(700px, 70%); height: 1px;
  background: linear-gradient(90deg, transparent, rgba(56,189,248,.35), transparent);
}
.price-block { text-align: center; max-width: 720px; margin-inline: auto; }
.price-block .kicker { display: inline-flex; margin-bottom: 1.75rem; }
.price-h {
  font-family: "Space Grotesk", sans-serif; font-weight: 600;
  font-size: var(--fs-h2); line-height: 1.12; letter-spacing: -.02em;
  background: linear-gradient(180deg, #F4F7FF 0%, #9AA4C2 100%);
  -webkit-background-clip: text; background-clip: text; color: transparent;
  text-wrap: balance;
}
.price-l { margin: 1.5rem auto 0; max-width: 56ch; color: var(--muted); font-size: var(--fs-body); line-height: 1.7; }
.price-emph {
  margin-top: 1.5rem; display: inline-block;
  padding: 10px 22px; border-radius: 999px;
  border: 1px solid rgba(34,197,94,.35); background: rgba(34,197,94,.08);
  color: var(--success); font-weight: 600; font-size: .98rem;
}

/* ----- 08 CONTACT — already styled below, just extend margin top ----- */
.section--contact { padding-block: var(--section-pad); position: relative; }
.section--contact::before {
  content: ""; position: absolute; top: 0; left: 50%; transform: translateX(-50%);
  width: min(1100px, 90%); height: 1px;
  background: linear-gradient(90deg, transparent, rgba(56,189,248,.2), transparent);
}

/* ================= FOOTER ================= */
.footer { border-top: 1px solid var(--line); background: rgba(10,14,28,.6); padding-top: 4rem; }
.footer-grid { display: grid; grid-template-columns: 1fr; gap: 2.5rem; padding-bottom: 2.5rem; }
.footer-logo { filter: brightness(0) invert(1); opacity: .95; }
.footer-tag { margin-top: 1.25rem; max-width: 42ch; color: var(--muted); font-size: .92rem; }
.socials { display: flex; gap: 12px; margin-top: 1.25rem; }
.social { display: inline-flex; align-items: center; justify-content: center; width: 40px; height: 40px; border-radius: 12px; color: var(--muted); border: 1px solid var(--line); background: rgba(18,26,51,.5); transition: color .2s var(--ease), border-color .2s var(--ease), transform .2s var(--ease); }
.social:hover { color: var(--sky); border-color: var(--brand); transform: translateY(-2px); }
.footer-h { font-family: "Space Grotesk", sans-serif; font-weight: 600; font-size: .95rem; margin-bottom: 14px; }
.footer-list { display: grid; gap: 10px; }
.footer-list a, .footer-list span { color: var(--muted); font-size: .9rem; transition: color .2s var(--ease); }
.footer-list a:hover { color: var(--sky); }
.footer-bottom { display: flex; flex-direction: column; gap: 1rem; align-items: center; justify-content: space-between; border-top: 1px solid var(--line); padding-block: 1.5rem; font-size: .85rem; }

/* ================= STICKY MOBILE CTA ================= */
.sticky-cta { position: fixed; left: 16px; right: 16px; bottom: 16px; z-index: 90; display: none; align-items: center; justify-content: center; min-height: 52px; border-radius: 16px; font-weight: 700; color: #fff; background: var(--accent); box-shadow: 0 14px 40px -10px rgba(45,107,255,.7); transform: translateY(140%); transition: transform .4s var(--ease); will-change: transform; }
.sticky-cta.show { transform: none; }

/* ================= DIVIDER (draws in) ================= */
.divider { height: 1px; width: min(1100px, 90%); margin-inline: auto; background: linear-gradient(90deg, transparent, var(--brand), transparent); transform: scaleX(0); transform-origin: center; opacity: .7; transition: transform .9s var(--ease); will-change: transform; }
.divider.drawn { transform: scaleX(1); }

/* ================= REVEALS ================= */
.reveal { opacity: 0; transform: translateY(26px); will-change: transform, opacity; }
.reveal.is-visible { opacity: 1; transform: none; transition: opacity .7s var(--ease), transform .7s var(--ease); }
/* heading word reveal */
.heading-reveal .wln { display: inline-block; overflow: hidden; vertical-align: top; }
.heading-reveal .wln > span { display: inline-block; transform: translateY(110%); opacity: 0; transition: transform .6s var(--ease), opacity .6s var(--ease); transition-delay: var(--d, 0s); will-change: transform; }
.heading-reveal.in .wln > span { transform: translateY(0); opacity: 1; }
/* single-line reveal (hero gradient line) */
.line-reveal { display: inline-block; opacity: 0; transform: translateY(40%); transition: transform .7s var(--ease) .12s, opacity .7s var(--ease) .12s; }
.line-reveal.in { opacity: 1; transform: none; }

/* ================= RESPONSIVE ================= */
@media (min-width: 700px) {
  .grid-3 { grid-template-columns: repeat(3, 1fr); }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .stats { grid-template-columns: repeat(3, 1fr); }
  .why-list { grid-template-columns: repeat(3, 1fr); }
  .flow-steps--3 { grid-template-columns: repeat(3, 1fr); }
  .flow-steps--5 { grid-template-columns: repeat(5, 1fr); }
  .footer-grid { grid-template-columns: 1.6fr 1fr 1fr; }
  .footer-bottom { flex-direction: row; }
}
@media (min-width: 1024px) {
  .hero-grid { grid-template-columns: 1.02fr 0.98fr; }
  .hero-copy { text-align: left; }
  .hero-sub { margin-left: 0; }
  .hero-actions { justify-content: flex-start; }
  .grid-4 { grid-template-columns: repeat(4, 1fr); }
  .expertise-grid { grid-template-columns: 1.42fr 1fr; }   /* ~59% / 41% */
  .why-grid { grid-template-columns: 0.9fr 1.1fr; align-items: start; }
  .why-list { grid-template-columns: 1fr; }
  .value-wide { grid-column: span 1; }
}

/* desktop pointer features */
@media (max-width: 1023px) {
  .nav-links, .nav-cta { display: none; }
  .menu-toggle { display: inline-flex; }
  .sticky-cta { display: flex; }
}

/* hero journey simplifies to a vertical timeline on small screens */
@media (max-width: 760px) {
  .hero-journey { aspect-ratio: auto; max-width: 420px; padding-left: 34px; }
  .route-svg, #truck { display: none; }
  .hero-journey::before { content: ""; position: absolute; left: 13px; top: 10px; bottom: 10px; width: 2px; background: var(--line); }
  .wp-card { position: relative; inset: auto; left: auto; right: auto; top: auto; width: 100%; margin-bottom: 16px; }
  .wp-1, .wp-2, .wp-3 { position: relative; left: auto; right: auto; top: auto; }
  .wp-card::after { content: ""; position: absolute; left: -27px; top: 22px; width: 10px; height: 10px; border-radius: 50%; background: var(--accent); box-shadow: 0 0 12px rgba(56,189,248,.7); }
}

/* the ops flow becomes vertical on mobile */
@media (max-width: 760px) {
  .flow-track { left: 25px; right: auto; top: 0; bottom: 0; width: 2px; height: auto; }
  .flow-fill { transform: scaleY(0); transform-origin: top center; }
  .flow-step { padding-top: 0; padding-left: 70px; }
  .flow-num { left: 0; top: 4px; transform: none; }
  .flow-card { text-align: left; margin-top: 0; }
}

/* ================= COOKIE CONSENT ================= */
/* hidden states must win over component display values */
#cc-modal[hidden], #cc-banner[hidden], .cc-reopen[hidden], .cc-cats[hidden], .cc-btn[hidden] { display: none !important; }

/* ---- 1) NON-BLOCKING banner: small bottom-left corner card, NO backdrop, NO scroll lock ---- */
.cc-banner {
  position: fixed; left: clamp(16px, 2.5vw, 28px); bottom: clamp(16px, 2.5vw, 28px);
  z-index: 95; width: min(420px, calc(100% - 32px));
  transform: translateY(16px);                 /* slide-in only (no opacity dependency) */
  transition: transform .4s var(--ease);
}
.cc-banner.is-open { transform: none; }
.cc-banner .cc-card { padding: clamp(18px, 2.2vw, 24px); }
.cc-banner .cc-ic { width: 40px; height: 40px; margin-bottom: 12px; }
.cc-banner .cc-title { font-size: 1.06rem; }
/* while the banner is visible, lift the mobile sticky CTA out of the way (no overlap) */
.cc-banner-on .sticky-cta { transform: translateY(200%) !important; }

/* ---- 2) Focused settings modal (opened intentionally — MAY trap focus) ---- */
.cc-modal { position: fixed; inset: 0; z-index: 1000; display: flex; align-items: center; justify-content: center; padding: 20px; }
.cc-backdrop {
  position: absolute; inset: 0; background: rgba(5,8,18,.62);
  backdrop-filter: blur(4px); -webkit-backdrop-filter: blur(4px);
  opacity: 0; transition: opacity .3s var(--ease);
}
.cc-modal.is-open .cc-backdrop { opacity: 1; }

.cc-dialog {
  position: relative; width: min(560px, 100%); max-height: calc(100vh - 40px); overflow-y: auto;
  transform: translateY(18px);
  transition: transform .4s var(--ease);
}
.cc-modal.is-open .cc-dialog { transform: none; }
.cc-dialog:focus { outline: none; }

.cc-card {
  position: relative; overflow: hidden; padding: clamp(22px, 3vw, 32px);
  border-radius: var(--radius-lg); border: 1px solid var(--line);
  background:
    radial-gradient(90% 70% at 0% 0%, rgba(45,107,255,.14), transparent 60%),
    linear-gradient(180deg, rgba(18,26,51,.96), rgba(12,17,34,.97));
  box-shadow: 0 40px 100px -40px rgba(0,0,0,.8);
}
.cc-card::before { /* shared 1px top light edge (card family) */
  content: ""; position: absolute; inset: 0 0 auto 0; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(56,189,248,.5), transparent);
}
.cc-ic {
  display: inline-flex; align-items: center; justify-content: center;
  width: 44px; height: 44px; border-radius: 13px; margin-bottom: 14px;
  color: var(--sky); background: rgba(45,107,255,.12); border: 1px solid rgba(56,189,248,.22);
}
.cc-ic svg { width: 22px; height: 22px; }
.cc-title { font-family: "Space Grotesk", sans-serif; font-weight: 600; font-size: var(--fs-h3); color: var(--ink); letter-spacing: -.01em; }
.cc-desc { margin-top: .6rem; color: var(--muted); font-size: var(--fs-sm); line-height: 1.6; }

/* category list */
.cc-cats { margin-top: 1.25rem; padding-top: .5rem; border-top: 1px solid var(--line); }
.cc-cat { padding: 14px 0; border-bottom: 1px solid var(--line); }
.cc-cat:last-child { border-bottom: 0; }
.cc-cat-head { display: flex; align-items: center; justify-content: space-between; gap: 14px; }
.cc-cat-title { font-family: "Space Grotesk", sans-serif; font-weight: 600; font-size: .98rem; color: var(--ink); }
.cc-cat-desc { margin-top: 5px; color: var(--muted); font-size: .85rem; line-height: 1.5; max-width: 46ch; }

/* accessible toggle switch */
.cc-switch { position: relative; flex: none; width: 46px; height: 26px; }
.cc-switch input { position: absolute; inset: 0; margin: 0; opacity: 0; width: 100%; height: 100%; cursor: pointer; }
.cc-slider {
  position: absolute; inset: 0; border-radius: 999px; pointer-events: none;
  background: var(--surface2); border: 1px solid var(--line);
  transition: background .25s var(--ease), border-color .25s var(--ease);
}
.cc-slider::before {
  content: ""; position: absolute; top: 2px; left: 2px; width: 20px; height: 20px; border-radius: 50%;
  background: var(--faint); transition: transform .25s var(--ease), background .25s var(--ease);
}
.cc-switch input:checked ~ .cc-slider { background: var(--accent); border-color: transparent; }
.cc-switch input:checked ~ .cc-slider::before { transform: translateX(20px); background: #fff; }
.cc-switch input:focus-visible ~ .cc-slider { outline: 2px solid var(--sky); outline-offset: 3px; }
.cc-switch--locked { opacity: .65; }
.cc-switch--locked input { cursor: not-allowed; }
.cc-switch--locked .cc-slider { background: var(--accent); border-color: transparent; }
.cc-switch--locked .cc-slider::before { transform: translateX(20px); background: #fff; }

/* actions — Accept & Reject are equal-weight, side by side */
.cc-actions { margin-top: 1.5rem; display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.cc-btn {
  display: inline-flex; align-items: center; justify-content: center; text-align: center;
  min-height: 48px; padding: 0 18px; border-radius: 14px;
  font-weight: 600; font-size: .95rem; cursor: pointer; border: 1px solid transparent;
  transition: transform .2s var(--ease), box-shadow .25s var(--ease), background .25s var(--ease), border-color .25s var(--ease);
}
.cc-btn--accept { color: #fff; background: var(--accent); box-shadow: 0 10px 26px -12px rgba(45,107,255,.7); }
.cc-btn--accept:hover { transform: translateY(-2px); box-shadow: 0 16px 34px -12px rgba(45,107,255,.85); }
.cc-btn--reject { color: #0E1428; background: var(--ink); }   /* solid, equal prominence to Accept */
.cc-btn--reject:hover { transform: translateY(-2px); box-shadow: 0 14px 30px -14px rgba(244,247,255,.5); }
.cc-btn--save { grid-column: 1 / -1; color: #fff; background: var(--accent); box-shadow: 0 10px 26px -12px rgba(45,107,255,.7); }
.cc-btn--save:hover { transform: translateY(-2px); box-shadow: 0 16px 34px -12px rgba(45,107,255,.85); }
.cc-btn--ghost { grid-column: 1 / -1; color: var(--ink); background: rgba(18,26,51,.6); border-color: var(--line); }
.cc-btn--ghost:hover { transform: translateY(-2px); border-color: var(--brand); background: rgba(18,26,51,.9); }

.cc-links { margin-top: 1rem; display: flex; flex-wrap: wrap; gap: 8px; justify-content: center; font-size: .82rem; }
.cc-links a { color: var(--sky); }
.cc-links a:hover { text-decoration: underline; }
.cc-sep { color: var(--faint); }

/* persistent re-open control (bottom-left) */
.cc-reopen {
  position: fixed; left: 16px; bottom: 16px; z-index: 95;
  display: inline-flex; align-items: center; gap: 8px;
  padding: 9px 14px; border-radius: 999px;
  color: var(--muted); font-size: .82rem; font-weight: 600;
  border: 1px solid var(--line); background: rgba(14,20,40,.9);
  backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
  box-shadow: 0 12px 30px -16px rgba(0,0,0,.8);
  transition: transform .25s var(--ease), color .25s var(--ease), border-color .25s var(--ease);
}
.cc-reopen:hover { transform: translateY(-2px); color: var(--ink); border-color: var(--brand); }
.cc-reopen svg { width: 18px; height: 18px; flex: none; }

/* footer legal links */
.footer-legal { display: flex; flex-wrap: wrap; gap: 8px 18px; align-items: center; }
.footer-legal a, .footer-legal-btn { color: var(--muted); font-size: .85rem; transition: color .2s var(--ease); }
.footer-legal a:hover, .footer-legal-btn:hover { color: var(--sky); }
.footer-legal-btn { background: none; border: 0; padding: 0; cursor: pointer; font: inherit; }

@media (max-width: 520px) {
  .cc-actions { grid-template-columns: 1fr; }
}
@media (max-width: 1023px) {
  .cc-reopen { bottom: 84px; }   /* clear the full-width sticky mobile CTA */
}

/* ================= REDUCED MOTION ================= */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; scroll-behavior: auto !important; }
  .reveal { opacity: 1; transform: none; }
  .heading-reveal .wln > span, .line-reveal { transform: none; opacity: 1; }
  .divider { transform: scaleX(1); }
  .mesh, .grain { display: none; }
  .wp-card { opacity: 1; transform: none; }
  #truck { opacity: 1; }
  #cursor-glow { display: none; }
}
