/* =========================================================
   Velmora Group — styles.css
   Palette aligned with the Velmora product catalogue:
   navy + brand blue (data/links) + amber (CTA), light UI.
   ========================================================= */

:root {
  /* Catalogue palette */
  --ink: #0E1116;        /* headlines / darkest text */
  --brand: #1F6FEB;      /* accent blue: links, icons, data */
  --brand-600: #1657c9;  /* blue hover */
  --brand-soft: rgba(31, 111, 235, 0.10);
  --navy: #12294D;       /* nav, footer, dark surfaces, primary buttons */
  --navy-800: #1a3663;   /* raised navy / hover */
  --navy-deep: #0b1c38;  /* deepest navy (footer / gradient) */
  --soft-blue: #CFE8F7;  /* info-box / accents */
  --ice: #EAF4FB;        /* subtle section background */
  --steel: #5B6673;      /* secondary body text */
  --text: #26313d;       /* main body text on light */
  --bg: #F7F9FB;         /* page background */
  --white: #FFFFFF;
  --cta: #E8A317;        /* call-to-action amber */
  --cta-600: #cf8f12;    /* amber hover */

  --line: #dbe3ec;       /* light borders */
  --line-dark: rgba(255, 255, 255, 0.12);

  --f-display: "Archivo", system-ui, sans-serif;
  --f-body: "Inter", system-ui, sans-serif;
  --f-mono: "IBM Plex Mono", ui-monospace, "SFMono-Regular", monospace;

  --wrap: 1200px;
  --radius: 8px;
  --radius-lg: 14px;
  --header-h: 74px;
  --shadow: 0 16px 40px -20px rgba(18, 41, 77, 0.30);
  --shadow-sm: 0 6px 18px -10px rgba(18, 41, 77, 0.28);
}

/* ---------- Base ---------- */
* { box-sizing: border-box; }
html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 12px);
  -webkit-text-size-adjust: 100%;
}
body {
  margin: 0;
  font-family: var(--f-body);
  color: var(--text);
  background: var(--bg);
  line-height: 1.62;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
h1, h2, h3, h4 { font-family: var(--f-display); line-height: 1.1; margin: 0; letter-spacing: -0.02em; color: var(--ink); }
p { margin: 0; }
ul { margin: 0; padding: 0; list-style: none; }
strong { color: inherit; }

.wrap { width: 100%; max-width: var(--wrap); margin: 0 auto; padding: 0 22px; }

.skip-link {
  position: absolute; left: 12px; top: -60px; z-index: 200;
  background: var(--cta); color: var(--ink); font-weight: 700;
  padding: 10px 16px; border-radius: var(--radius); transition: top .2s;
}
.skip-link:focus { top: 12px; }
:focus-visible { outline: 3px solid var(--brand); outline-offset: 2px; border-radius: 3px; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  font-family: var(--f-body); font-weight: 600; font-size: 0.98rem;
  padding: 12px 20px; border-radius: var(--radius); border: 1.5px solid transparent;
  cursor: pointer; transition: transform .12s ease, background .18s, border-color .18s, color .18s, box-shadow .18s;
  min-height: 46px; text-align: center;
}
.btn:active { transform: translateY(1px); }
.btn-lg { padding: 15px 28px; font-size: 1.05rem; }

.btn-accent { background: var(--cta); color: var(--ink); box-shadow: 0 8px 20px -10px rgba(232,163,23,.7); }
.btn-accent:hover { background: var(--cta-600); }

.btn-primary { background: var(--navy); color: var(--white); }
.btn-primary:hover { background: var(--navy-800); }

.btn-ghost { background: transparent; color: var(--white); border-color: rgba(255,255,255,0.34); }
.btn-ghost:hover { border-color: var(--white); background: rgba(255,255,255,0.08); }

.btn-outline { background: transparent; color: var(--navy); border-color: var(--line); }
.btn-outline:hover { border-color: var(--navy); background: var(--navy); color: var(--white); }

/* ---------- Header / nav ---------- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: saturate(140%) blur(10px);
  border-bottom: 1px solid var(--line);
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; height: var(--header-h); }
.brand { display: inline-flex; align-items: center; gap: 11px; }
.brand-logo { height: 64px; width: auto; display: block; }
.brand-mark {
  display: grid; place-items: center; width: 34px; height: 34px;
  background: var(--cta); color: var(--navy); font-family: var(--f-display);
  font-weight: 900; font-size: 1.1rem; border-radius: var(--radius);
}

.main-nav { display: flex; align-items: center; }
.nav-list { display: flex; align-items: center; gap: 4px; }
.nav-list a:not(.btn) {
  color: var(--navy); font-weight: 600; font-size: 0.97rem;
  padding: 9px 12px; border-radius: var(--radius); transition: color .15s, background .15s;
}
.nav-list a:not(.btn):hover { color: var(--brand); background: var(--ice); }
.nav-cta { margin-left: 8px; }

.nav-toggle {
  display: none; flex-direction: column; gap: 5px; justify-content: center;
  width: 46px; height: 46px; background: transparent; border: 1px solid var(--line);
  border-radius: var(--radius); cursor: pointer;
}
.nav-toggle span { display: block; width: 20px; height: 2px; background: var(--navy); margin: 0 auto; transition: transform .25s, opacity .2s; }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------- Sections ---------- */
.section { padding: clamp(58px, 8vw, 108px) 0; }
.section-head { max-width: 680px; margin-bottom: clamp(34px, 5vw, 58px); }
.section-title { font-size: clamp(1.9rem, 4.5vw, 3rem); font-weight: 800; margin: 10px 0 14px; }
.section-lead { color: var(--steel); font-size: 1.08rem; }

.eyebrow {
  display: inline-flex; align-items: center; gap: 9px;
  font-family: var(--f-mono); font-size: 0.8rem; font-weight: 500;
  letter-spacing: 0.14em; text-transform: uppercase; color: var(--brand); margin: 0;
}
.eyebrow-tick { width: 22px; height: 2px; background: var(--brand); display: inline-block; }

/* ---------- Hero ---------- */
.hero {
  position: relative; overflow: hidden; color: var(--white);
  background:
    radial-gradient(1100px 600px at 80% -12%, var(--navy-800) 0%, transparent 60%),
    linear-gradient(180deg, var(--navy) 0%, var(--navy-deep) 100%);
  padding: clamp(64px, 12vw, 128px) 0 clamp(56px, 9vw, 100px);
}
.hero-grid {
  position: absolute; inset: 0; pointer-events: none; opacity: 0.5;
  background-image:
    linear-gradient(var(--line-dark) 1px, transparent 1px),
    linear-gradient(90deg, var(--line-dark) 1px, transparent 1px);
  background-size: 56px 56px;
  -webkit-mask-image: radial-gradient(circle at 72% 28%, #000 0%, transparent 72%);
  mask-image: radial-gradient(circle at 72% 28%, #000 0%, transparent 72%);
}
.hero-ghost {
  position: absolute; right: -2%; bottom: -4%;
  font-family: var(--f-mono); font-weight: 600; font-size: clamp(6rem, 22vw, 19rem);
  line-height: 1; color: rgba(255,255,255,0.04); letter-spacing: -0.02em;
  pointer-events: none; user-select: none; white-space: nowrap;
}
.hero-inner {
  position: relative; z-index: 2;
  display: grid; grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(28px, 5vw, 60px); align-items: center;
}
.hero-copy { max-width: 660px; }
.hero .eyebrow { color: var(--cta); margin-bottom: 22px; }
.hero .eyebrow-tick { background: var(--cta); }
.hero-title { color: var(--white); font-size: clamp(2.4rem, 6.4vw, 4.5rem); font-weight: 900; letter-spacing: -0.03em; margin-bottom: 22px; text-wrap: balance; }
.hero-sub { font-size: clamp(1.05rem, 2vw, 1.24rem); color: #c7d2e2; max-width: 640px; margin-bottom: 32px; }
.hero-cta { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 48px; }
.hero-stats { display: flex; flex-wrap: wrap; gap: clamp(24px, 5vw, 54px); border-top: 1px solid var(--line-dark); padding-top: 28px; }
.hero-stats li { display: flex; flex-direction: column; }
.stat-k { font-family: var(--f-display); font-weight: 800; font-size: clamp(1.8rem, 4vw, 2.6rem); color: var(--cta); line-height: 1; }
.stat-l { font-size: 0.9rem; color: #9fb0c6; margin-top: 8px; }

/* ---------- Hero figure (technical filter blueprint) ---------- */
.hero-figure { display: flex; justify-content: center; }
.filter-svg { width: 100%; max-width: 380px; height: auto; overflow: visible; animation: floaty 7s ease-in-out infinite; }
.filter-svg .ln { fill: none; stroke: #7ea6e8; stroke-width: 1.4; stroke-linecap: round; stroke-linejoin: round; }
.filter-svg .dim { stroke: rgba(126, 166, 232, 0.5); }
.filter-svg .amberln { stroke: var(--cta); stroke-width: 1.7; }
.filter-svg .axis { stroke: rgba(255, 255, 255, 0.18); stroke-width: 1; stroke-dasharray: 2 6; }
.filter-svg .tag { fill: #9fb0c6; font-family: var(--f-mono); font-size: 11px; letter-spacing: 0.12em; }
.filter-svg .tag.amber { fill: var(--cta); }
.filter-svg .lead { stroke: rgba(255, 255, 255, 0.35); stroke-width: 1; }
.filter-svg .lbl { fill: #c7d2e2; font-family: var(--f-mono); font-size: 11px; }
.filter-svg .lbl.amber { fill: var(--cta); }

.filter-svg .part { opacity: 0; animation: partIn 0.7s ease forwards; }
.filter-svg .p1 { animation-delay: 0.15s; }
.filter-svg .p2 { animation-delay: 0.4s; }
.filter-svg .p3 { animation-delay: 0.6s; }
.filter-svg .labels { opacity: 0; animation: partIn 0.7s ease 0.95s forwards; }
.filter-svg .lead { stroke-dasharray: 60; stroke-dashoffset: 60; animation: drawLine 0.6s ease 1.05s forwards; }
@keyframes partIn { from { opacity: 0; transform: translateY(12px); } to { opacity: 1; transform: none; } }
@keyframes drawLine { to { stroke-dashoffset: 0; } }
@keyframes floaty { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-7px); } }

/* ---------- Products ---------- */
.products { background: var(--bg); }
.product-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; }

.card {
  display: flex; flex-direction: column;
  background: var(--white); border: 1px solid var(--line);
  border-radius: var(--radius-lg); padding: 28px 26px 26px;
  transition: transform .18s, box-shadow .18s, border-color .18s;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: var(--soft-blue); }

.card-top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 16px; }
.card-index {
  font-family: var(--f-mono); font-size: 0.78rem; font-weight: 600; letter-spacing: 0.08em;
  color: var(--navy); background: var(--ice); border: 1px solid var(--line); padding: 4px 9px; border-radius: 5px;
}
.card-cat, .card-flag { font-family: var(--f-mono); font-size: 0.72rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--steel); }
.card-flag { color: var(--navy); background: var(--cta); padding: 4px 10px; border-radius: 5px; font-weight: 700; }

.card-title { font-size: 1.42rem; font-weight: 700; margin-bottom: 4px; }
.card-fitment { color: var(--steel); font-weight: 500; font-size: 0.98rem; margin-bottom: 18px; }

.spec {
  display: flex; align-items: baseline; gap: 12px; margin: 0 0 18px;
  padding: 12px 15px; background: var(--ice); border-radius: var(--radius); border-left: 3px solid var(--brand);
}
.spec dt { font-family: var(--f-mono); font-size: 0.72rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--steel); margin: 0; }
.spec dd { margin: 0; font-family: var(--f-mono); font-weight: 600; font-size: 1.2rem; color: var(--navy); letter-spacing: 0.01em; }
.oem { font-variant-numeric: tabular-nums; }

.card-line { color: var(--text); font-size: 0.97rem; margin-bottom: 18px; }

/* Cross-reference + fitment blocks */
.xrefs { margin-bottom: 16px; }
.xref-label, .fits-label {
  font-family: var(--f-mono); font-size: 0.7rem; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--steel); display: block; margin-bottom: 8px;
}
.xref-group { display: flex; gap: 10px; margin-bottom: 7px; align-items: baseline; flex-wrap: wrap; }
.xref-make {
  font-family: var(--f-mono); font-size: 0.72rem; font-weight: 600; color: var(--brand);
  min-width: 56px; text-transform: uppercase; letter-spacing: .04em;
}
.xref-nums { font-family: var(--f-mono); font-size: 0.82rem; color: var(--navy); line-height: 1.7; }
.fits { font-size: 0.9rem; color: var(--steel); margin-bottom: 22px; }
.fits b { color: var(--text); font-weight: 600; }
.card-cta { width: 100%; margin-top: auto; }

/* Flagship (full width, dark) */
.card-flagship {
  grid-column: 1 / -1;
  background: linear-gradient(150deg, var(--navy) 0%, var(--navy-deep) 100%);
  border-color: var(--navy-800); color: var(--white); position: relative; overflow: hidden;
}
.card-flagship::after {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background-image: linear-gradient(var(--line-dark) 1px, transparent 1px), linear-gradient(90deg, var(--line-dark) 1px, transparent 1px);
  background-size: 42px 42px; opacity: .5;
  -webkit-mask-image: radial-gradient(circle at 92% 8%, #000, transparent 68%);
  mask-image: radial-gradient(circle at 92% 8%, #000, transparent 68%);
}
.card-flagship > * { position: relative; z-index: 1; }
.flagship-grid { display: grid; grid-template-columns: 1.1fr 1fr; gap: 34px; align-items: start; }
.card-flagship .card-title { color: var(--white); font-size: 1.7rem; }
.card-flagship .card-fitment, .card-flagship .card-line { color: #c7d2e2; }
.card-flagship .card-line strong { color: var(--cta); }
.card-flagship .spec { background: rgba(255,255,255,0.07); border-left-color: var(--cta); }
.card-flagship .spec dt { color: #9fb0c6; }
.card-flagship .spec dd { color: var(--white); }
.card-flagship .xref-label, .card-flagship .fits-label { color: #9fb0c6; }
.card-flagship .fits { color: #c7d2e2; }
.card-flagship .fits b { color: var(--white); }
.card-flagship .card-cta { width: fit-content; }

.makes-grid { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 20px; }
.makes-grid li {
  font-family: var(--f-mono); font-size: 0.82rem; font-weight: 500; color: var(--white);
  border: 1px solid var(--line-dark); background: rgba(255,255,255,0.06); padding: 6px 12px; border-radius: 5px;
}
.makes-grid .make-more { color: var(--cta); border-color: var(--brand-soft); background: rgba(232,163,23,0.12); }

/* ---------- Product builder (category selector) ---------- */
.builder-tabs { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 22px; }
.cat-tab {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--f-body); font-weight: 600; font-size: 1rem; color: var(--navy);
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 12px 18px; min-height: 48px; cursor: pointer;
  transition: background .16s, color .16s, border-color .16s;
}
.cat-tab:hover { border-color: var(--brand); }
.cat-tab .cat-code {
  font-family: var(--f-mono); font-size: 0.72rem; font-weight: 600; letter-spacing: 0.06em;
  color: var(--brand); background: var(--ice); border: 1px solid var(--line); padding: 3px 7px; border-radius: 4px;
}
.cat-tab.is-active { background: var(--navy); color: var(--white); border-color: var(--navy); }
.cat-tab.is-active .cat-code { color: var(--navy); background: var(--cta); border-color: var(--cta); }

.builder-panel {
  display: none; grid-template-columns: 1fr 1fr; gap: clamp(24px, 4vw, 48px);
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: clamp(24px, 3vw, 36px);
}
.builder-panel.is-active { display: grid; animation: partIn 0.4s ease; }
.panel-badge { font-family: var(--f-mono); font-size: 0.72rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--steel); }
.panel-badge.flag { color: var(--navy); background: var(--cta); padding: 4px 10px; border-radius: 4px; font-weight: 700; }
.panel-title { font-size: 1.6rem; font-weight: 800; margin: 12px 0 12px; }
.panel-text { color: var(--text); margin-bottom: 22px; }
.panel-text strong { color: var(--navy); font-weight: 700; }
.panel-fit .fits-label { display: block; margin: 0 0 10px; }
.panel-fit .fits-label ~ .fits-label { margin-top: 20px; }
.fit-group { display: flex; gap: 12px; align-items: baseline; padding: 10px 0; border-top: 1px solid var(--line); }
.fit-group:first-of-type { border-top: none; }
.fit-make { font-family: var(--f-mono); font-size: 0.8rem; font-weight: 600; color: var(--brand); min-width: 118px; }
.fit-models { font-family: var(--f-mono); font-size: 0.86rem; color: var(--navy); }
.builder-note { text-align: center; color: var(--steel); font-size: 0.92rem; margin-top: 22px; }

/* SCR flagship panel — dark emphasis */
.panel-flagship { background: linear-gradient(150deg, var(--navy) 0%, var(--navy-deep) 100%); border-color: var(--navy-800); color: var(--white); }
.panel-flagship .panel-title { color: var(--white); }
.panel-flagship .panel-text { color: #c7d2e2; }
.panel-flagship .panel-text strong { color: var(--cta); }
.panel-flagship .panel-badge:not(.flag) { color: #9fb0c6; }
.panel-flagship .fits-label { color: #9fb0c6; }
.panel-flagship .fit-make { color: #7ea6e8; }
.panel-flagship .fit-models { color: var(--white); }
.panel-flagship .fit-group { border-color: var(--line-dark); }
.panel-flagship .makes-grid { margin-bottom: 20px; }

/* ---------- Why ---------- */
.why { background: var(--ice); }
.why-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.why-item {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: 26px 24px; transition: transform .18s, box-shadow .18s, border-color .18s;
}
.why-item:hover { transform: translateY(-3px); box-shadow: var(--shadow-sm); border-color: var(--soft-blue); }
.why-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 16px; }
.why-icon {
  display: grid; place-items: center; width: 46px; height: 46px; border-radius: 11px;
  background: var(--brand-soft); color: var(--brand);
  transition: background .18s, color .18s;
}
.why-icon svg { width: 23px; height: 23px; }
.why-item:hover .why-icon { background: var(--brand); color: #fff; }
.why-num { font-family: var(--f-mono); font-size: 0.85rem; font-weight: 600; color: var(--steel); letter-spacing: 0.06em; }
.why-item h3 { font-size: 1.16rem; font-weight: 700; margin: 0 0 8px; }
.why-item p { color: var(--steel); font-size: 0.96rem; }

/* ---------- About ---------- */
.about { background: var(--white); }
.about-inner { display: grid; grid-template-columns: 1.4fr 1fr; gap: clamp(28px, 5vw, 64px); align-items: start; }
.about-copy p { color: var(--text); margin-top: 16px; }
.about-copy p:first-of-type { margin-top: 20px; }
.about-facts { background: var(--navy); color: var(--white); border-radius: var(--radius-lg); padding: 8px 26px; box-shadow: var(--shadow); }
.about-facts div { display: flex; justify-content: space-between; gap: 16px; align-items: baseline; padding: 16px 0; border-bottom: 1px solid var(--line-dark); }
.about-facts div:last-child { border-bottom: none; }
.about-facts dt { font-family: var(--f-mono); font-size: 0.74rem; letter-spacing: 0.1em; text-transform: uppercase; color: #9fb0c6; }
.about-facts dd { margin: 0; font-weight: 600; text-align: right; color: var(--white); }
.about-address { margin-top: 22px; padding: 18px 20px; background: var(--ice); border-left: 3px solid var(--brand); border-radius: 0 var(--radius) var(--radius) 0; }
.about-address .aa-label { font-family: var(--f-mono); font-size: 0.72rem; letter-spacing: .1em; text-transform: uppercase; color: var(--steel); margin-bottom: 6px; }
.about-address address { font-style: normal; color: var(--text); line-height: 1.55; }

/* About — compact fact chips */
.about-chips { display: flex; flex-wrap: wrap; gap: 10px; margin: 24px 0 4px; }
.about-chips li { display: flex; flex-direction: column; background: var(--ice); border: 1px solid var(--line); border-radius: var(--radius); padding: 10px 15px; }
.about-chips .chip-k { font-family: var(--f-display); font-weight: 800; font-size: 1.05rem; color: var(--navy); line-height: 1; }
.about-chips .chip-l { font-family: var(--f-mono); font-size: 0.68rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--steel); margin-top: 6px; }

/* About — Europe/MENA warehouse reach map */
.about-map {
  position: relative; align-self: start;
  background: linear-gradient(150deg, var(--navy) 0%, var(--navy-deep) 100%);
  border: 1px solid var(--navy-800); border-radius: var(--radius-lg);
  padding: 22px 22px 18px; box-shadow: var(--shadow); overflow: hidden;
}
.about-map::before {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background-image: radial-gradient(rgba(255,255,255,0.09) 1px, transparent 1px);
  background-size: 20px 20px; opacity: 0.5;
  -webkit-mask-image: radial-gradient(circle at 50% 45%, #000, transparent 78%);
  mask-image: radial-gradient(circle at 50% 45%, #000, transparent 78%);
}
.reach-svg { position: relative; width: 100%; height: auto; display: block; }
.reach-svg .ring { fill: none; stroke: rgba(126,166,232,0.22); stroke-width: 1; stroke-dasharray: 2 5; }
.reach-svg .link { stroke: rgba(126,166,232,0.55); stroke-width: 1.2; }
.reach-svg .arrow { fill: none; stroke: var(--cta); stroke-width: 1.6; stroke-dasharray: 5 4; opacity: 0.9; }
.reach-svg .zone { fill: #9fb0c6; font-family: var(--f-mono); font-size: 12px; letter-spacing: 0.14em; }
.reach-svg .pin { fill: var(--cta); stroke: #fff; stroke-width: 1.4; }
.reach-svg .hub-label { fill: #fff; font-family: var(--f-mono); font-size: 12px; }
.reach-svg .pulse { fill: none; stroke: var(--cta); stroke-width: 1.5; transform-box: fill-box; transform-origin: center; animation: reachPulse 2.6s ease-out infinite; }
.reach-svg .h2 .pulse { animation-delay: 0.85s; }
.reach-svg .h3 .pulse { animation-delay: 1.7s; }
@keyframes reachPulse { 0% { transform: scale(1); opacity: 0.7; } 100% { transform: scale(3.4); opacity: 0; } }
.map-caption { position: relative; color: #9fb0c6; font-size: 0.9rem; margin-top: 14px; text-align: center; }
.map-caption b { color: #fff; font-weight: 600; }

/* ---------- Contact ---------- */
.contact { background: var(--navy); color: var(--white); }
.contact .section-title { color: var(--white); }
.contact .section-lead { color: #c7d2e2; }
.contact-inner { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(32px, 5vw, 64px); align-items: start; }

.contact-claim { font-family: var(--f-display); font-weight: 700; font-size: 1.15rem; color: var(--cta); margin-bottom: 6px; }
.contact-person { margin: 24px 0 22px; padding: 16px 18px; border-left: 3px solid var(--cta); background: rgba(255,255,255,0.05); border-radius: 0 var(--radius) var(--radius) 0; }
.cp-name { font-family: var(--f-display); font-weight: 700; font-size: 1.15rem; }
.cp-role { color: #9fb0c6; font-size: 0.95rem; }

.contact-links { display: flex; flex-direction: column; gap: 14px; margin-bottom: 20px; }
.contact-btn { width: fit-content; }
.contact-line { display: flex; flex-direction: column; gap: 2px; padding: 12px 16px; border: 1px solid var(--line-dark); border-radius: var(--radius); transition: border-color .18s, background .18s; }
.contact-line:hover { border-color: var(--cta); background: rgba(255,255,255,0.04); }
.cl-label { font-family: var(--f-mono); font-size: 0.72rem; letter-spacing: 0.1em; text-transform: uppercase; color: #9fb0c6; }
.cl-value { font-weight: 600; }

.contact-trust { display: flex; flex-wrap: wrap; gap: 8px 20px; margin-bottom: 20px; }
.contact-trust li { font-size: 0.9rem; color: #c7d2e2; display: flex; align-items: center; gap: 8px; }
.contact-trust li::before { content: ""; width: 7px; height: 7px; border-radius: 50%; background: var(--cta); flex: none; }

/* Contact — "how it works" steps */
.contact-steps { display: flex; flex-direction: column; gap: 14px; margin: 24px 0 22px; }
.contact-steps li { display: flex; gap: 14px; align-items: flex-start; }
.contact-steps .step-n {
  flex: 0 0 auto; display: grid; place-items: center; width: 30px; height: 30px; border-radius: 50%;
  background: var(--cta); color: var(--navy); font-family: var(--f-display); font-weight: 800; font-size: 0.95rem;
}
.contact-steps .step-t { display: flex; flex-direction: column; }
.contact-steps .step-t b { color: #fff; font-weight: 600; font-size: 0.98rem; }
.contact-steps .step-t span { color: #9fb0c6; font-size: 0.9rem; }

/* Contact form — head badge + 2-column rows */
.form-head { display: flex; align-items: center; justify-content: space-between; gap: 12px; margin-bottom: 20px; }
.form-head .form-title { margin-bottom: 0; }
.form-badge {
  font-family: var(--f-mono); font-size: 0.7rem; letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--cta); background: rgba(232,163,23,0.14); border: 1px solid rgba(232,163,23,0.3);
  padding: 5px 10px; border-radius: 20px; white-space: nowrap;
}
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 0 16px; }

.contact-address { font-style: normal; color: #9fb0c6; font-size: 0.9rem; line-height: 1.55; margin-bottom: 18px; }
.contact-address b { color: var(--white); font-weight: 600; }
.catalogue-btn { width: fit-content; }

/* Form */
.contact-form { background: var(--navy-deep); border: 1px solid var(--line-dark); border-radius: var(--radius-lg); padding: clamp(22px, 3vw, 32px); box-shadow: var(--shadow); }
.form-title { font-family: var(--f-display); font-weight: 700; font-size: 1.3rem; color: var(--white); margin-bottom: 20px; }
.field { margin-bottom: 16px; }
.field label { display: block; font-family: var(--f-mono); font-size: 0.74rem; letter-spacing: 0.08em; text-transform: uppercase; color: #9fb0c6; margin-bottom: 7px; }
.field input, .field textarea {
  width: 100%; font-family: var(--f-body); font-size: 1rem; color: var(--white);
  background: rgba(11,28,56,0.6); border: 1px solid var(--line-dark); border-radius: var(--radius);
  padding: 12px 14px; transition: border-color .16s, background .16s;
}
.field input:hover, .field textarea:hover { border-color: #9fb0c6; }
.field input:focus, .field textarea:focus { outline: none; border-color: var(--cta); background: rgba(11,28,56,0.9); }
.field input::placeholder, .field textarea::placeholder { color: #9fb0c6; }
.field textarea { resize: vertical; min-height: 96px; }
.field .invalid { border-color: #ff6b6b; }
.field-consent { margin-bottom: 20px; }
/* .field-consent scope beats `.field label` specificity so the sentence isn't uppercase-mono */
.field-consent .consent-label {
  display: flex; align-items: flex-start; gap: 10px; cursor: pointer;
  font-family: var(--f-body); font-size: 0.9rem; font-weight: 400; letter-spacing: normal; text-transform: none;
  color: #c4d2e4; line-height: 1.5; margin-bottom: 0;
}
.consent-label input[type="checkbox"] {
  width: 18px; height: 18px; flex: 0 0 auto; margin-top: 2px; accent-color: var(--cta); cursor: pointer;
}
.consent-label a { color: var(--cta); text-decoration: underline; }
.consent-label input.invalid { outline: 2px solid #ff6b6b; outline-offset: 2px; }
.form-submit { width: 100%; margin-top: 6px; }
.form-note { color: #9fb0c6; font-size: 0.88rem; margin-top: 14px; }
.form-note.error { color: #ff9d9d; }
.form-note.success { color: var(--cta); }

/* ---------- Footer ---------- */
.site-footer { background: var(--navy-deep); color: #c7d2e2; padding: 54px 0 30px; border-top: 1px solid var(--line-dark); }
.footer-inner { display: grid; gap: 26px; }
.footer-top { display: grid; grid-template-columns: 1.6fr 1fr 1.2fr; gap: 30px; align-items: start; }
.footer-nav { display: flex; flex-direction: column; gap: 9px; }
.footer-nav a { color: #c7d2e2; font-size: 0.92rem; transition: color .15s; }
.footer-nav a:hover { color: var(--cta); }
.footer-brand { display: flex; align-items: flex-start; gap: 14px; }
.footer-logo { height: 76px; width: auto; display: block; }
.footer-name { font-family: var(--f-display); font-weight: 800; font-size: 1.12rem; color: var(--white); }
.footer-tag { color: #9fb0c6; font-size: 0.92rem; max-width: 440px; margin-top: 4px; }
.footer-col h4 { font-family: var(--f-mono); font-size: 0.74rem; letter-spacing: .1em; text-transform: uppercase; color: #9fb0c6; margin-bottom: 12px; font-weight: 500; }
.footer-col address { font-style: normal; line-height: 1.6; font-size: 0.92rem; }
.footer-col address b { color: var(--white); font-weight: 600; }
.footer-col a { color: #c7d2e2; }
.footer-col a:hover { color: var(--cta); }
.footer-bottom { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 12px; padding-top: 22px; border-top: 1px solid var(--line-dark); }
.copyright { font-size: 0.86rem; color: #8092a8; }
.footer-links { display: flex; align-items: center; flex-wrap: wrap; gap: 10px 20px; }
.footer-links a, .footer-cookie-btn { font-size: 0.86rem; color: #8092a8; }
.footer-links a:hover, .footer-cookie-btn:hover { color: #c7d2e2; text-decoration: underline; }
.footer-cookie-btn { background: none; border: 0; padding: 0; cursor: pointer; font-family: inherit; }
.back-to-top { font-weight: 600; color: var(--cta) !important; }
.back-to-top:hover { text-decoration: underline; }

/* ---------- Reveal ---------- */
.reveal { opacity: 0; transform: translateY(18px); transition: opacity .6s ease, transform .6s ease; }
.reveal.in { opacity: 1; transform: none; }

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; gap: 30px; }
  .hero-copy { max-width: 640px; }
  .hero-figure { order: 2; }
  .filter-svg { max-width: 300px; animation: none; }
  .product-grid { grid-template-columns: 1fr; }
  .flagship-grid { grid-template-columns: 1fr; gap: 22px; }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .about-inner, .contact-inner, .footer-top { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
  .hero-figure { display: none; }
}
@media (max-width: 720px) {
  body { font-size: 16px; }
  .nav-toggle { display: flex; }
  .nav-list {
    position: absolute; left: 0; right: 0; top: var(--header-h);
    flex-direction: column; align-items: stretch; gap: 4px;
    background: var(--white); border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow-sm);
    padding: 14px 22px 22px; transform: translateY(-8px); opacity: 0; pointer-events: none;
    transition: opacity .2s, transform .2s;
  }
  .nav-list.open { transform: none; opacity: 1; pointer-events: auto; }
  .nav-list a:not(.btn) { padding: 13px 12px; font-size: 1.05rem; }
  .nav-cta { margin-left: 0; margin-top: 8px; }
  .why-grid { grid-template-columns: 1fr; }
  .builder-panel { grid-template-columns: 1fr; }
  .cat-tab { flex: 1 1 100%; justify-content: flex-start; }
  .field-row { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; }
}
@media (max-width: 380px) {
  .wrap { padding: 0 16px; }
  .hero-stats { gap: 20px; }
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .001ms !important; transition-duration: .001ms !important; }
  .reveal { opacity: 1; transform: none; }
}

/* ---------- Cookie / privacy notice ---------- */
.cookie-banner {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 300;
  background: var(--navy-deep); color: #d5deea;
  border-top: 1px solid rgba(255,255,255,0.14);
  box-shadow: 0 -12px 40px -18px rgba(0,0,0,0.6);
  padding: 18px 0 calc(18px + env(safe-area-inset-bottom, 0px));
  animation: cookie-in .35s ease both;
}
.cookie-banner[hidden] { display: none; }
@keyframes cookie-in { from { transform: translateY(100%); } to { transform: translateY(0); } }
.cookie-inner {
  width: 100%; max-width: var(--wrap); margin: 0 auto; padding: 0 22px;
  display: flex; align-items: center; gap: 20px 28px; flex-wrap: wrap;
  justify-content: space-between;
}
.cookie-text { flex: 1 1 460px; min-width: 260px; }
.cookie-text p { font-size: 0.92rem; line-height: 1.55; color: #b9c5d6; }
.cookie-title { font-family: var(--f-display); font-weight: 700; font-size: 1.05rem; color: var(--white); margin-bottom: 4px; }
.cookie-text a { color: var(--cta); text-decoration: underline; }
.cookie-text strong { color: var(--white); }
.cookie-actions { display: flex; gap: 12px; flex-wrap: wrap; align-items: center; }
.cookie-actions .cookie-btn { min-height: 42px; padding: 10px 22px; }
.cookie-actions .btn-outline { color: var(--white); border-color: rgba(255,255,255,0.34); }
.cookie-actions .btn-outline:hover { border-color: var(--white); background: rgba(255,255,255,0.08); color: var(--white); }

/* ---------- Legal / policy pages ---------- */
.legal-main { padding: clamp(40px, 7vw, 80px) 0 clamp(50px, 8vw, 90px); background: var(--bg); }
.legal-wrap { width: 100%; max-width: 820px; margin: 0 auto; padding: 0 22px; }
.legal-wrap h1 { font-size: clamp(2rem, 5vw, 3rem); margin-bottom: 10px; }
.legal-updated { color: var(--steel); font-size: 0.92rem; font-family: var(--f-mono); margin-bottom: 34px; }
.legal-wrap h2 { font-size: 1.4rem; margin: 38px 0 12px; color: var(--ink); }
.legal-wrap h3 { font-size: 1.08rem; margin: 22px 0 8px; color: var(--ink); }
.legal-wrap p, .legal-wrap li { color: var(--text); font-size: 1rem; line-height: 1.7; }
.legal-wrap p { margin-bottom: 14px; }
.legal-wrap ul { list-style: disc; padding-left: 22px; margin: 0 0 16px; }
.legal-wrap li { margin-bottom: 7px; }
.legal-wrap a { color: var(--brand); text-decoration: underline; }
.legal-wrap address { font-style: normal; line-height: 1.7; }
.legal-placeholder { background: var(--brand-soft); border-left: 3px solid var(--brand); padding: 3px 8px; border-radius: 4px; font-family: var(--f-mono); font-size: 0.9rem; }
.legal-table { width: 100%; border-collapse: collapse; margin: 8px 0 22px; font-size: 0.95rem; }
.legal-table th, .legal-table td { text-align: left; padding: 10px 12px; border: 1px solid var(--line); vertical-align: top; }
.legal-table th { background: var(--ice); font-weight: 600; }
.legal-back { display: inline-flex; align-items: center; gap: 8px; margin-top: 30px; font-weight: 600; color: var(--navy); }
