/* ==========================================================================
   FOOD TRUCKS NORDIC — Design System
   One coherent visual identity. Edit tokens here to re-skin the whole site.
   ========================================================================== */

/* ----------------------------------------------------------------------------
   1. DESIGN TOKENS
---------------------------------------------------------------------------- */
:root {
  /* Brand palette: 1 strong brand color + 1 accent + neutral grays */
  --brand:        #F0541E;   /* signal orange — energy, appetite, CTAs */
  --brand-600:    #D6440F;   /* darker orange for hover */
  --brand-100:    #FDEAE1;   /* tint for soft backgrounds */
  --accent:       #15808C;   /* steel teal — trust, secondary accents */
  --accent-600:   #0F6470;

  --ink:          #0F1419;   /* near-black, primary text + dark sections */
  --ink-800:      #1B232B;
  --ink-700:      #2C3742;
  --gray-600:     #566472;   /* muted body text */
  --gray-400:     #93A1AD;
  --gray-300:     #C7D0D8;
  --gray-200:     #E3E8ED;
  --gray-100:     #F1F4F7;
  --gray-50:      #F8FAFB;
  --white:        #FFFFFF;

  /* Semantic */
  --bg:           var(--white);
  --bg-alt:       var(--gray-50);
  --text:         var(--ink);
  --text-muted:   var(--gray-600);
  --line:         var(--gray-200);
  --success:      #1E9E5A;
  --error:        #D33A2C;

  /* Typography — 2 families max */
  --font-head: "Space Grotesk", "Segoe UI", system-ui, -apple-system, sans-serif;
  --font-body: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;

  /* Type scale (fluid) */
  --fs-hero:  clamp(2.4rem, 1.4rem + 4.4vw, 4.6rem);
  --fs-h1:    clamp(2rem, 1.3rem + 3vw, 3.4rem);
  --fs-h2:    clamp(1.7rem, 1.2rem + 2vw, 2.6rem);
  --fs-h3:    clamp(1.25rem, 1.05rem + 0.8vw, 1.6rem);
  --fs-lead:  clamp(1.05rem, 0.98rem + 0.4vw, 1.3rem);
  --fs-body:  1rem;
  --fs-sm:    0.875rem;
  --fs-xs:    0.78rem;

  /* Spacing scale */
  --space-1: 0.25rem;  --space-2: 0.5rem;  --space-3: 0.75rem;
  --space-4: 1rem;     --space-5: 1.5rem;  --space-6: 2rem;
  --space-7: 3rem;     --space-8: 4rem;    --space-9: 6rem;
  --section-y: clamp(3.5rem, 2rem + 6vw, 7rem);

  /* Consistent component styling */
  --radius:    14px;     /* cards */
  --radius-sm: 9px;      /* buttons, inputs */
  --radius-lg: 22px;     /* large media */
  --shadow-sm: 0 1px 2px rgba(15,20,25,.06), 0 2px 6px rgba(15,20,25,.05);
  --shadow:    0 4px 14px rgba(15,20,25,.08), 0 12px 30px rgba(15,20,25,.07);
  --shadow-lg: 0 18px 50px rgba(15,20,25,.16);

  --container: 1200px;
  --container-narrow: 820px;
  --header-h: 76px;

  --ease: cubic-bezier(.22,.61,.36,1);
  --t-fast: .18s var(--ease);
  --t: .3s var(--ease);
}

/* ----------------------------------------------------------------------------
   2. RESET & BASE
---------------------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
html:focus-within { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  font-size: var(--fs-body);
  line-height: 1.65;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img, picture, svg, video { display: block; max-width: 100%; height: auto; }
input, button, textarea, select { font: inherit; color: inherit; }
button { cursor: pointer; background: none; border: none; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; padding: 0; }

h1, h2, h3, h4 {
  font-family: var(--font-head);
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--ink);
}
h1 { font-size: var(--fs-h1); }
h2 { font-size: var(--fs-h2); }
h3 { font-size: var(--fs-h3); }

p { color: var(--text-muted); }
p.lead { font-size: var(--fs-lead); color: var(--ink-700); line-height: 1.55; }

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

/* Visible focus for keyboard users (accessibility) */
:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 2px;
  border-radius: 4px;
}

/* ----------------------------------------------------------------------------
   3. LAYOUT HELPERS
---------------------------------------------------------------------------- */
.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: clamp(1.1rem, 5vw, 2.5rem); }
.container--narrow { max-width: var(--container-narrow); }
.section { padding-block: var(--section-y); }
.section--alt { background: var(--bg-alt); }
.section--dark { background: var(--ink); color: var(--gray-200); }
.section--dark h2, .section--dark h3 { color: #fff; }
.section--dark p { color: var(--gray-300); }

.skip-link {
  position: absolute; left: 1rem; top: -100px; z-index: 2000;
  background: var(--ink); color: #fff; padding: .7rem 1.1rem; border-radius: 8px;
  transition: top var(--t-fast);
}
.skip-link:focus { top: 1rem; }

.eyebrow {
  display: inline-flex; align-items: center; gap: .5rem;
  font-family: var(--font-head); font-weight: 600; font-size: var(--fs-sm);
  letter-spacing: .14em; text-transform: uppercase; color: var(--brand);
  margin-bottom: var(--space-3);
}
.eyebrow::before { content:""; width: 26px; height: 2px; background: var(--brand); display: inline-block; }
.section--dark .eyebrow { color: #FF8254; }

.section-head { max-width: 720px; margin-bottom: var(--space-7); }
.section-head.center { margin-inline: auto; text-align: center; }
.section-head p { margin-top: var(--space-3); font-size: var(--fs-lead); }

/* ----------------------------------------------------------------------------
   4. BUTTONS — one reusable system
---------------------------------------------------------------------------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .55rem;
  font-family: var(--font-head); font-weight: 600; font-size: 1rem; line-height: 1;
  padding: .95rem 1.6rem; border-radius: var(--radius-sm);
  transition: transform var(--t-fast), background var(--t-fast), box-shadow var(--t-fast), color var(--t-fast);
  white-space: nowrap; border: 1.5px solid transparent; cursor: pointer;
}
.btn svg { width: 1.1em; height: 1.1em; }
.btn:active { transform: translateY(1px); }
.btn--primary { background: var(--brand); color: #fff; box-shadow: 0 6px 18px rgba(240,84,30,.32); }
.btn--primary:hover { background: var(--brand-600); transform: translateY(-2px); box-shadow: 0 10px 26px rgba(240,84,30,.4); }
.btn--dark { background: var(--ink); color: #fff; }
.btn--dark:hover { background: var(--ink-800); transform: translateY(-2px); }
.btn--ghost { background: transparent; color: var(--ink); border-color: var(--gray-300); }
.btn--ghost:hover { border-color: var(--ink); background: var(--ink); color: #fff; transform: translateY(-2px); }
.btn--on-dark { background: rgba(255,255,255,.1); color: #fff; border-color: rgba(255,255,255,.35); backdrop-filter: blur(6px); }
.btn--on-dark:hover { background: #fff; color: var(--ink); transform: translateY(-2px); }
.btn--lg { padding: 1.1rem 2rem; font-size: 1.05rem; }
.btn--sm { padding: .65rem 1.1rem; font-size: var(--fs-sm); }
.btn--block { width: 100%; }

.link-arrow {
  display: inline-flex; align-items: center; gap: .4rem; font-family: var(--font-head);
  font-weight: 600; color: var(--brand); transition: gap var(--t-fast), color var(--t-fast);
}
.link-arrow:hover { gap: .7rem; color: var(--brand-600); }
.link-arrow svg { width: 1em; height: 1em; }

/* ----------------------------------------------------------------------------
   5. HEADER / NAV — sticky, simple
---------------------------------------------------------------------------- */
.site-header {
  position: sticky; top: 0; z-index: 900; width: 100%;
  background: rgba(255,255,255,.9); backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
  transition: box-shadow var(--t), background var(--t);
}
.site-header.scrolled { box-shadow: var(--shadow-sm); }
.nav { display: flex; align-items: center; gap: var(--space-5); height: var(--header-h); }

.brand { display: flex; align-items: center; gap: .65rem; font-family: var(--font-head); font-weight: 700; font-size: 1.18rem; color: var(--ink); letter-spacing: -.02em; flex-shrink: 0; }
.brand img { width: 38px; height: 38px; }
.brand b { color: var(--brand); font-weight: 700; }
.brand .ab { font-style: normal; font-weight: 600; font-size: .62em; letter-spacing: .06em; color: var(--gray-400); align-self: flex-start; margin-left: .15em; }
.footer-brand .brand .ab { color: var(--gray-600); }

.nav-menu { display: flex; align-items: center; gap: var(--space-2); margin-left: auto; }
.nav-menu a {
  font-family: var(--font-head); font-weight: 500; font-size: .95rem;
  padding: .5rem .8rem; border-radius: 8px; color: var(--ink-700);
  transition: color var(--t-fast), background var(--t-fast);
}
.nav-menu a:hover, .nav-menu a[aria-current="page"] { color: var(--brand); background: var(--brand-100); }

.nav-actions { display: flex; align-items: center; gap: var(--space-3); flex-shrink: 0; }

.lang-switch { display: inline-flex; border: 1px solid var(--gray-300); border-radius: 999px; overflow: hidden; }
.lang-switch button {
  font-family: var(--font-head); font-weight: 600; font-size: .78rem; letter-spacing: .04em;
  padding: .38rem .62rem; color: var(--gray-600); transition: background var(--t-fast), color var(--t-fast);
}
.lang-switch button.active { background: var(--ink); color: #fff; }

.btn-phone { display: inline-flex; align-items: center; gap: .45rem; font-family: var(--font-head); font-weight: 600; color: var(--ink); padding: .5rem .7rem; border-radius: 8px; }
.btn-phone:hover { color: var(--brand); }
.btn-phone svg { width: 1.05em; height: 1.05em; color: var(--brand); }

.nav-toggle { display: none; width: 46px; height: 46px; border-radius: 10px; border: 1px solid var(--gray-300); align-items: center; justify-content: center; }
.nav-toggle span, .nav-toggle span::before, .nav-toggle span::after {
  content: ""; display: block; width: 20px; height: 2px; background: var(--ink); border-radius: 2px; transition: transform var(--t), opacity var(--t-fast);
}
.nav-toggle span::before { transform: translateY(-6px); } .nav-toggle span::after { transform: translateY(4px); }
.nav-open .nav-toggle span { background: transparent; }
.nav-open .nav-toggle span::before { transform: rotate(45deg); }
.nav-open .nav-toggle span::after { transform: rotate(-45deg) translateY(-1.5px); }

/* ----------------------------------------------------------------------------
   6. HERO
---------------------------------------------------------------------------- */
.hero { position: relative; min-height: min(88vh, 760px); display: flex; align-items: center; overflow: hidden; background: var(--ink); }
.hero-slides { position: absolute; inset: 0; }
.hero-slide { position: absolute; inset: 0; opacity: 0; transition: opacity 1.1s var(--ease); background-size: cover; background-position: center; }
.hero-slide.active { opacity: 1; }
.hero-slide::after { content:""; position: absolute; inset: 0; background: linear-gradient(100deg, rgba(8,11,15,.86) 0%, rgba(8,11,15,.6) 45%, rgba(8,11,15,.25) 100%); }
.hero .container { position: relative; z-index: 2; padding-block: var(--space-8); }
.hero-content { max-width: 680px; color: #fff; }
.hero-badge {
  display: inline-flex; align-items: center; gap: .5rem; font-family: var(--font-head); font-weight: 600;
  font-size: var(--fs-sm); letter-spacing: .04em; color: #fff; background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.25); padding: .45rem .9rem; border-radius: 999px; margin-bottom: var(--space-5);
}
.hero-badge .dot { width: 8px; height: 8px; border-radius: 50%; background: #4ADE80; box-shadow: 0 0 0 4px rgba(74,222,128,.25); }
.hero h1 { color: #fff; font-size: var(--fs-hero); margin-bottom: var(--space-4); }
.hero h1 .hl { color: var(--brand); }
.hero p { color: rgba(255,255,255,.82); font-size: var(--fs-lead); max-width: 540px; margin-bottom: var(--space-6); }
.hero-cta { display: flex; flex-wrap: wrap; gap: var(--space-3); }

.hero-dots { position: absolute; bottom: 1.6rem; left: 50%; transform: translateX(-50%); z-index: 3; display: flex; gap: .5rem; }
.hero-dots button { width: 34px; height: 4px; border-radius: 4px; background: rgba(255,255,255,.35); transition: background var(--t-fast); }
.hero-dots button.active { background: var(--brand); }

/* ----------------------------------------------------------------------------
   7. TRUST BAR
---------------------------------------------------------------------------- */
.trustbar { background: var(--ink); color: #fff; border-top: 1px solid rgba(255,255,255,.08); }
.trustbar .grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--space-5); padding-block: var(--space-6); }
.trust-item { display: flex; align-items: center; gap: .9rem; }
.trust-item svg { width: 30px; height: 30px; color: var(--brand); flex-shrink: 0; }
.trust-item .num { font-family: var(--font-head); font-weight: 700; font-size: 1.5rem; color: #fff; line-height: 1; }
.trust-item .lbl { font-size: var(--fs-sm); color: var(--gray-400); }

/* ----------------------------------------------------------------------------
   8. CARDS & GRIDS — consistent components
---------------------------------------------------------------------------- */
.grid { display: grid; gap: var(--space-5); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

.card {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius);
  overflow: hidden; box-shadow: var(--shadow-sm);
  transition: transform var(--t), box-shadow var(--t), border-color var(--t);
  display: flex; flex-direction: column;
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-color: var(--gray-300); }
.card-media { aspect-ratio: 16/10; overflow: hidden; background: var(--gray-100); position: relative; }
.card-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s var(--ease); }
.card:hover .card-media img { transform: scale(1.05); }
.card-body { padding: var(--space-5); display: flex; flex-direction: column; gap: var(--space-3); flex: 1; }
.card-body h3 { font-size: var(--fs-h3); }

/* Service tiles */
.service-card { padding: var(--space-6); }
.service-card .ico { width: 56px; height: 56px; border-radius: 14px; display: grid; place-items: center; background: var(--brand-100); color: var(--brand); margin-bottom: var(--space-4); }
.service-card .ico svg { width: 28px; height: 28px; }
.service-card h3 { margin-bottom: var(--space-2); }
.service-card ul { display: flex; flex-direction: column; gap: .5rem; margin: var(--space-3) 0; }
.service-card li { display: flex; gap: .55rem; font-size: var(--fs-sm); color: var(--text-muted); }
.service-card li svg { width: 1.1em; height: 1.1em; color: var(--success); flex-shrink: 0; margin-top: .2em; }
.service-card.featured { border-color: var(--brand); box-shadow: var(--shadow); position: relative; }
.service-card.featured::before { content: attr(data-tag); position: absolute; top: 1rem; right: 1rem; background: var(--brand); color: #fff; font-family: var(--font-head); font-weight: 600; font-size: .72rem; letter-spacing: .05em; padding: .3rem .65rem; border-radius: 999px; }

/* Category tiles */
.cat-tile { position: relative; border-radius: var(--radius); overflow: hidden; aspect-ratio: 4/3; box-shadow: var(--shadow-sm); }
.cat-tile img { width: 100%; height: 100%; object-fit: cover; transition: transform .55s var(--ease); }
.cat-tile::after { content:""; position: absolute; inset: 0; background: linear-gradient(0deg, rgba(8,11,15,.82) 0%, rgba(8,11,15,.1) 60%); }
.cat-tile .label { position: absolute; left: 0; bottom: 0; z-index: 2; padding: var(--space-5); color: #fff; width: 100%; }
.cat-tile .label h3 { color: #fff; font-size: 1.25rem; display: flex; align-items: center; justify-content: space-between; gap: .5rem; }
.cat-tile .label h3 svg { width: 1.1em; opacity: 0; transform: translateX(-6px); transition: all var(--t); color: var(--brand); }
.cat-tile:hover img { transform: scale(1.07); }
.cat-tile:hover .label h3 svg { opacity: 1; transform: translateX(0); }

/* ----------------------------------------------------------------------------
   9. PROCESS STEPS
---------------------------------------------------------------------------- */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--space-5); counter-reset: step; }
.step { position: relative; padding-top: var(--space-6); }
.step .n { font-family: var(--font-head); font-weight: 700; font-size: 2.6rem; color: var(--brand); line-height: 1; opacity: .9; }
.step h3 { font-size: 1.2rem; margin: var(--space-3) 0 var(--space-2); }
.step p { font-size: var(--fs-sm); }
.step::before { content:""; position: absolute; top: 1.1rem; left: 3.4rem; right: -1.5rem; height: 2px; background: linear-gradient(90deg, var(--gray-300), transparent); }
.step:last-child::before { display: none; }

/* ----------------------------------------------------------------------------
   10. PRODUCT CARDS (stock)
---------------------------------------------------------------------------- */
.product-card .card-media { aspect-ratio: 16/11; }
.product-badge { position: absolute; top: .8rem; left: .8rem; z-index: 2; background: var(--ink); color:#fff; font-family: var(--font-head); font-weight:600; font-size:.72rem; letter-spacing:.04em; padding:.35rem .7rem; border-radius: 999px; }
.product-badge.available { background: var(--success); }
.product-card .price { font-family: var(--font-head); font-weight: 700; font-size: 1.4rem; color: var(--ink); }
.product-card .price span { font-size: var(--fs-sm); font-weight: 500; color: var(--text-muted); }
.product-specs { display: flex; flex-direction: column; gap: .4rem; margin: var(--space-2) 0; padding: var(--space-3) 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.product-specs li { display: flex; gap: .5rem; font-size: var(--fs-sm); color: var(--text-muted); }
.product-specs li svg { width: 1em; color: var(--accent); flex-shrink: 0; margin-top: .25em; }
.product-card .card-foot { display: flex; align-items: center; justify-content: space-between; gap: var(--space-3); margin-top: auto; }

/* Filter chips */
.filters { display: flex; flex-wrap: wrap; gap: .6rem; margin-bottom: var(--space-6); }
.chip { font-family: var(--font-head); font-weight: 500; font-size: var(--fs-sm); padding: .55rem 1.05rem; border-radius: 999px; border: 1px solid var(--gray-300); color: var(--ink-700); transition: all var(--t-fast); }
.chip:hover { border-color: var(--ink); }
.chip.active { background: var(--ink); color: #fff; border-color: var(--ink); }

/* ----------------------------------------------------------------------------
   11. SPEC SHEET (two columns)
---------------------------------------------------------------------------- */
.spec-sheet { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-6); }
.spec-col { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); padding: var(--space-6); box-shadow: var(--shadow-sm); }
.section--dark .spec-col { background: var(--ink-800); border-color: rgba(255,255,255,.08); }
.spec-col h3 { display: flex; align-items: center; gap: .6rem; margin-bottom: var(--space-4); padding-bottom: var(--space-4); border-bottom: 1px solid var(--line); }
.section--dark .spec-col h3 { border-color: rgba(255,255,255,.1); }
.spec-col h3 svg { width: 1.4em; color: var(--brand); }
.spec-list li { display: flex; gap: .65rem; padding: .55rem 0; font-size: .95rem; }
.spec-list li svg { width: 1.15em; height: 1.15em; color: var(--accent); flex-shrink: 0; margin-top: .25em; }
.section--dark .spec-list li { color: var(--gray-300); }

/* Full spec table (vehicle detail) */
.spec-table { width: 100%; border-collapse: collapse; }
.spec-table caption { text-align: left; font-family: var(--font-head); font-weight: 600; font-size: 1.1rem; color: var(--ink); padding: var(--space-3) 0; }
.spec-table th, .spec-table td { text-align: left; padding: .8rem .2rem; border-bottom: 1px solid var(--line); font-size: .95rem; vertical-align: top; }
.spec-table th { width: 42%; font-family: var(--font-head); font-weight: 500; color: var(--text-muted); }
.spec-table td { color: var(--ink); font-weight: 500; }

/* ----------------------------------------------------------------------------
   12. BEFORE / AFTER SLIDER
---------------------------------------------------------------------------- */
.ba-slider { position: relative; aspect-ratio: 16/10; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow); user-select: none; touch-action: none; }
.ba-slider img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; pointer-events: none; }
.ba-after { clip-path: inset(0 0 0 50%); }
.ba-label { position: absolute; top: 1rem; z-index: 4; font-family: var(--font-head); font-weight: 600; font-size: var(--fs-xs); letter-spacing: .08em; text-transform: uppercase; color: #fff; background: rgba(8,11,15,.65); padding: .3rem .7rem; border-radius: 999px; }
.ba-label.before { left: 1rem; } .ba-label.after { right: 1rem; }
.ba-handle { position: absolute; top: 0; bottom: 0; left: 50%; width: 3px; background: #fff; z-index: 5; transform: translateX(-50%); }
.ba-handle .knob { position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%); width: 46px; height: 46px; border-radius: 50%; background: #fff; box-shadow: var(--shadow); display: grid; place-items: center; color: var(--ink); }
.ba-handle .knob svg { width: 22px; }
.ba-range { position: absolute; inset: 0; z-index: 6; width: 100%; opacity: 0; cursor: ew-resize; }

/* ----------------------------------------------------------------------------
   13. TESTIMONIALS
---------------------------------------------------------------------------- */
.quote-card { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); padding: var(--space-6); box-shadow: var(--shadow-sm); display: flex; flex-direction: column; gap: var(--space-4); }
.quote-card .stars { display: flex; gap: .15rem; color: #F5A623; }
.quote-card .stars svg { width: 1.1em; }
.quote-card blockquote { font-size: 1.08rem; line-height: 1.55; color: var(--ink-800); }
.quote-card .who { display: flex; align-items: center; gap: .8rem; margin-top: auto; }
.quote-card .avatar { width: 44px; height: 44px; border-radius: 50%; background: var(--brand-100); color: var(--brand); display: grid; place-items: center; font-family: var(--font-head); font-weight: 700; }
.quote-card .who b { display: block; font-family: var(--font-head); color: var(--ink); }
.quote-card .who span { font-size: var(--fs-sm); color: var(--text-muted); }

/* ----------------------------------------------------------------------------
   14. LOGOS / FINANCING
---------------------------------------------------------------------------- */
.logo-row { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: var(--space-6); }
.logo-row img { height: 38px; width: auto; opacity: .75; filter: grayscale(1); transition: opacity var(--t-fast), filter var(--t-fast); }
.logo-row img:hover { opacity: 1; filter: grayscale(0); }
.finance-split { display: grid; grid-template-columns: 1.1fr .9fr; gap: var(--space-7); align-items: center; }
.finance-points { display: flex; flex-direction: column; gap: var(--space-4); margin-top: var(--space-5); }
.finance-points li { display: flex; gap: .8rem; }
.finance-points .ico { width: 42px; height: 42px; border-radius: 11px; background: var(--brand-100); color: var(--brand); display: grid; place-items: center; flex-shrink: 0; }
.finance-points .ico svg { width: 1.3em; }
.finance-points b { font-family: var(--font-head); color: var(--ink); display: block; }
.finance-points p { font-size: var(--fs-sm); margin: 0; }

/* ----------------------------------------------------------------------------
   15. DELIVERY (map)
---------------------------------------------------------------------------- */
.delivery-grid { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-7); align-items: center; }
.delivery-map { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow); border: 1px solid var(--line); }
.delivery-stats { display: flex; gap: var(--space-6); margin-top: var(--space-5); flex-wrap: wrap; }
.delivery-stats .n { font-family: var(--font-head); font-weight: 700; font-size: 2rem; color: var(--brand); line-height: 1; }
.delivery-stats .l { font-size: var(--fs-sm); color: var(--text-muted); }

/* ----------------------------------------------------------------------------
   16. ABOUT
---------------------------------------------------------------------------- */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-7); align-items: center; }
.about-media { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow); }
.about-figures { display: flex; gap: var(--space-6); margin-top: var(--space-5); }
.about-figures .n { font-family: var(--font-head); font-weight: 700; font-size: 2.2rem; color: var(--ink); }
.about-figures .l { font-size: var(--fs-sm); color: var(--text-muted); }

/* ----------------------------------------------------------------------------
   17. FAQ ACCORDION
---------------------------------------------------------------------------- */
.faq { max-width: 820px; margin-inline: auto; }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-q { width: 100%; display: flex; align-items: center; justify-content: space-between; gap: var(--space-4); padding: var(--space-5) 0; text-align: left; font-family: var(--font-head); font-weight: 600; font-size: 1.12rem; color: var(--ink); }
.faq-q .pm { flex-shrink: 0; width: 28px; height: 28px; border-radius: 50%; border: 1.5px solid var(--gray-300); display: grid; place-items: center; transition: all var(--t-fast); position: relative; }
.faq-q .pm::before, .faq-q .pm::after { content:""; position: absolute; width: 12px; height: 2px; background: var(--ink); border-radius: 2px; transition: transform var(--t); }
.faq-q .pm::after { transform: rotate(90deg); }
.faq-item.open .faq-q .pm { background: var(--brand); border-color: var(--brand); }
.faq-item.open .faq-q .pm::before, .faq-item.open .faq-q .pm::after { background: #fff; }
.faq-item.open .faq-q .pm::after { transform: rotate(0); }
.faq-a { overflow: hidden; max-height: 0; transition: max-height var(--t); }
.faq-a div { padding-bottom: var(--space-5); color: var(--text-muted); max-width: 70ch; }

/* ----------------------------------------------------------------------------
   18. FORMS — polished
---------------------------------------------------------------------------- */
.form { display: grid; gap: var(--space-4); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-4); }
.field { display: flex; flex-direction: column; gap: .4rem; }
.field label { font-family: var(--font-head); font-weight: 500; font-size: var(--fs-sm); color: var(--ink); }
.field label .req { color: var(--brand); }
.field input, .field select, .field textarea {
  width: 100%; padding: .85rem 1rem; border: 1.5px solid var(--gray-300); border-radius: var(--radius-sm);
  background: var(--white); transition: border-color var(--t-fast), box-shadow var(--t-fast); font-size: 1rem;
}
.field textarea { min-height: 130px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--brand); box-shadow: 0 0 0 4px var(--brand-100); }
.field input:invalid:not(:placeholder-shown) { border-color: var(--error); }
.field .err { font-size: var(--fs-xs); color: var(--error); display: none; }
.field.invalid .err { display: block; }
.field.invalid input, .field.invalid select, .field.invalid textarea { border-color: var(--error); }
.form-note { font-size: var(--fs-xs); color: var(--text-muted); }
.form-success { display: none; padding: var(--space-5); border-radius: var(--radius); background: #ECFBF1; border: 1px solid #B6E6C7; color: #176B3C; }
.form-success.show { display: flex; gap: .7rem; align-items: center; }
.form-success svg { width: 1.5em; flex-shrink: 0; }
.honeypot { position: absolute; left: -9999px; opacity: 0; height: 0; overflow: hidden; }

/* Contact split */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-7); align-items: start; }
.contact-info { display: flex; flex-direction: column; gap: var(--space-5); }
.contact-info .row { display: flex; gap: .9rem; }
.contact-info .ico { width: 44px; height: 44px; border-radius: 11px; background: var(--brand-100); color: var(--brand); display: grid; place-items: center; flex-shrink: 0; }
.contact-info .ico svg { width: 1.3em; }
.contact-info b { font-family: var(--font-head); color: var(--ink); display: block; }
.contact-info a, .contact-info span { color: var(--text-muted); }
.contact-info a:hover { color: var(--brand); }
.contact-map { border-radius: var(--radius); overflow: hidden; margin-top: var(--space-4); border: 1px solid var(--line); }
.contact-map iframe { display: block; width: 100%; border: 0; }

/* ----------------------------------------------------------------------------
   19. CONFIGURATOR
---------------------------------------------------------------------------- */
.config { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-lg); box-shadow: var(--shadow); overflow: hidden; }
.config-steps { display: flex; border-bottom: 1px solid var(--line); background: var(--gray-50); }
.config-steps .s { flex: 1; padding: var(--space-4); text-align: center; font-family: var(--font-head); font-weight: 600; font-size: var(--fs-sm); color: var(--gray-400); position: relative; }
.config-steps .s .num { display: inline-grid; place-items: center; width: 26px; height: 26px; border-radius: 50%; background: var(--gray-200); color: var(--gray-600); margin-right: .4rem; font-size: .8rem; }
.config-steps .s.active { color: var(--ink); }
.config-steps .s.active .num { background: var(--brand); color: #fff; }
.config-steps .s.done .num { background: var(--success); color: #fff; }
.config-body { padding: var(--space-6); }
.config-panel { display: none; }
.config-panel.active { display: block; animation: fadeUp .4s var(--ease); }
.opt-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(160px, 1fr)); gap: var(--space-3); }
.opt {
  border: 1.5px solid var(--gray-300); border-radius: var(--radius); padding: var(--space-4);
  cursor: pointer; transition: all var(--t-fast); display: flex; flex-direction: column; gap: .35rem;
}
.opt:hover { border-color: var(--ink); }
.opt input { position: absolute; opacity: 0; }
.opt.checked { border-color: var(--brand); background: var(--brand-100); box-shadow: 0 0 0 3px var(--brand-100); }
.opt .ico { width: 40px; height: 40px; color: var(--brand); }
.opt b { font-family: var(--font-head); color: var(--ink); }
.opt span { font-size: var(--fs-xs); color: var(--text-muted); }
.config-nav { display: flex; justify-content: space-between; gap: var(--space-3); margin-top: var(--space-6); }
.config-summary { background: var(--gray-50); border-radius: var(--radius); padding: var(--space-5); margin-bottom: var(--space-5); }
.config-summary h4 { font-family: var(--font-head); margin-bottom: var(--space-3); }
.config-summary dl { display: grid; grid-template-columns: auto 1fr; gap: .4rem 1rem; }
.config-summary dt { color: var(--text-muted); font-size: var(--fs-sm); }
.config-summary dd { font-family: var(--font-head); font-weight: 600; color: var(--ink); font-size: var(--fs-sm); text-align: right; }

/* ----------------------------------------------------------------------------
   20. GALLERY + LIGHTBOX
---------------------------------------------------------------------------- */
.gallery { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--space-4); }
.gallery-item { position: relative; border-radius: var(--radius); overflow: hidden; aspect-ratio: 4/3; cursor: pointer; box-shadow: var(--shadow-sm); }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s var(--ease); }
.gallery-item::after { content:""; position: absolute; inset:0; background: rgba(8,11,15,0); transition: background var(--t); }
.gallery-item:hover img { transform: scale(1.08); }
.gallery-item:hover::after { background: rgba(8,11,15,.25); }
.gallery-item .cap { position: absolute; left: 0; bottom: 0; z-index: 2; padding: var(--space-4); color: #fff; font-family: var(--font-head); font-weight: 600; opacity: 0; transform: translateY(8px); transition: all var(--t); }
.gallery-item:hover .cap { opacity: 1; transform: translateY(0); }

.lightbox { position: fixed; inset: 0; z-index: 1500; background: rgba(8,11,15,.92); display: none; align-items: center; justify-content: center; padding: 4vw; }
.lightbox.open { display: flex; animation: fade .25s var(--ease); }
.lightbox img { max-width: 90vw; max-height: 84vh; border-radius: var(--radius); box-shadow: var(--shadow-lg); }
.lightbox .lb-close, .lightbox .lb-nav { position: absolute; background: rgba(255,255,255,.12); border: 1px solid rgba(255,255,255,.3); color: #fff; width: 52px; height: 52px; border-radius: 50%; display: grid; place-items: center; transition: background var(--t-fast); }
.lightbox .lb-close:hover, .lightbox .lb-nav:hover { background: rgba(255,255,255,.25); }
.lightbox .lb-close { top: 4vw; right: 4vw; }
.lightbox .lb-nav svg, .lightbox .lb-close svg { width: 24px; }
.lightbox .lb-prev { left: 3vw; } .lightbox .lb-next { right: 3vw; }

/* ----------------------------------------------------------------------------
   21. PAGE HERO (sub-pages)
---------------------------------------------------------------------------- */
.page-hero { background: var(--ink); color: #fff; padding-block: clamp(3rem, 2rem + 5vw, 5.5rem) clamp(2.5rem,2rem+3vw,4rem); position: relative; overflow: hidden; }
.page-hero::after { content:""; position: absolute; right: -10%; top: -30%; width: 480px; height: 480px; background: radial-gradient(circle, rgba(240,84,30,.28), transparent 70%); }
.page-hero .container { position: relative; z-index: 2; }
.page-hero h1 { color: #fff; max-width: 18ch; }
.page-hero p { color: rgba(255,255,255,.78); font-size: var(--fs-lead); max-width: 58ch; margin-top: var(--space-3); }
.breadcrumb { display: flex; gap: .5rem; font-size: var(--fs-sm); color: var(--gray-400); margin-bottom: var(--space-4); }
.breadcrumb a:hover { color: #fff; } .breadcrumb span { color: var(--gray-600); }

/* ----------------------------------------------------------------------------
   22. CTA STRIP
---------------------------------------------------------------------------- */
.cta-strip { background: linear-gradient(120deg, var(--brand) 0%, var(--brand-600) 100%); border-radius: var(--radius-lg); padding: clamp(2rem,1.5rem+3vw,3.5rem); color: #fff; display: flex; align-items: center; justify-content: space-between; gap: var(--space-6); flex-wrap: wrap; box-shadow: var(--shadow); }
.cta-strip h2 { color: #fff; max-width: 20ch; }
.cta-strip p { color: rgba(255,255,255,.9); margin-top: .5rem; }

/* ----------------------------------------------------------------------------
   23. FOOTER
---------------------------------------------------------------------------- */
.site-footer { background: var(--ink); color: var(--gray-400); padding-block: var(--space-8) var(--space-6); }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: var(--space-6); padding-bottom: var(--space-7); border-bottom: 1px solid rgba(255,255,255,.1); }
.footer-brand .brand { color: #fff; margin-bottom: var(--space-4); }
.footer-brand p { font-size: var(--fs-sm); max-width: 36ch; }
.footer-col h4 { color: #fff; font-size: 1rem; margin-bottom: var(--space-4); }
.footer-col li { margin-bottom: .55rem; }
.footer-col a, .footer-col span { font-size: var(--fs-sm); color: var(--gray-400); transition: color var(--t-fast); }
.footer-col a:hover { color: var(--brand); }
.socials { display: flex; gap: .6rem; margin-top: var(--space-4); }
.socials a { width: 38px; height: 38px; border-radius: 10px; border: 1px solid rgba(255,255,255,.15); display: grid; place-items: center; color: var(--gray-300); transition: all var(--t-fast); }
.socials a:hover { background: var(--brand); border-color: var(--brand); color: #fff; }
.socials svg { width: 18px; }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; gap: var(--space-4); padding-top: var(--space-5); flex-wrap: wrap; font-size: var(--fs-sm); }
.footer-bottom .legal-links { display: flex; gap: var(--space-4); flex-wrap: wrap; }

/* ----------------------------------------------------------------------------
   24. COOKIE BANNER
---------------------------------------------------------------------------- */
.cookie-banner { position: fixed; left: 1rem; right: 1rem; bottom: 1rem; z-index: 1400; max-width: 460px; background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow-lg); padding: var(--space-5); display: none; }
.cookie-banner.show { display: block; animation: fadeUp .4s var(--ease); }
.cookie-banner h4 { font-family: var(--font-head); margin-bottom: .5rem; }
.cookie-banner p { font-size: var(--fs-sm); margin-bottom: var(--space-4); }
.cookie-banner .actions { display: flex; gap: .6rem; flex-wrap: wrap; }

/* ----------------------------------------------------------------------------
   25. UTILITY / 404 / LEGAL
---------------------------------------------------------------------------- */
.prose { max-width: 760px; margin-inline: auto; }
.prose h2 { font-size: var(--fs-h3); margin-top: var(--space-7); margin-bottom: var(--space-3); }
.prose p, .prose li { color: var(--text-muted); margin-bottom: var(--space-3); }
.prose ul { list-style: disc; padding-left: 1.3rem; }
.prose ul li { margin-bottom: .4rem; }
.prose .meta { font-size: var(--fs-sm); color: var(--gray-400); margin-bottom: var(--space-6); }
.placeholder-note { background: #FFF8E6; border: 1px dashed #E0B84B; border-radius: var(--radius-sm); padding: var(--space-3) var(--space-4); font-size: var(--fs-sm); color: #8A6300; margin: var(--space-4) 0; }
.placeholder-note b { color: #6B4D00; }

.err-page { min-height: 70vh; display: grid; place-items: center; text-align: center; }
.err-page .code { font-family: var(--font-head); font-weight: 700; font-size: clamp(5rem, 3rem + 12vw, 11rem); line-height: 1; color: var(--brand); letter-spacing: -.04em; }

.track-box { max-width: 540px; margin-inline: auto; background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); padding: var(--space-6); box-shadow: var(--shadow-sm); }
.track-result { display: none; margin-top: var(--space-5); padding: var(--space-5); border-radius: var(--radius); background: var(--gray-50); }
.track-result.show { display: block; animation: fadeUp .4s var(--ease); }
.track-steps { display: flex; flex-direction: column; gap: var(--space-4); margin-top: var(--space-4); }
.track-steps .ts { display: flex; gap: .8rem; align-items: flex-start; }
.track-steps .ts .dot { width: 24px; height: 24px; border-radius: 50%; border: 2px solid var(--gray-300); flex-shrink: 0; display: grid; place-items: center; }
.track-steps .ts.done .dot { background: var(--success); border-color: var(--success); color: #fff; }
.track-steps .ts.current .dot { border-color: var(--brand); background: var(--brand); color: #fff; }
.track-steps .ts svg { width: 14px; }

/* ----------------------------------------------------------------------------
   26. ANIMATIONS
---------------------------------------------------------------------------- */
@keyframes fadeUp { from { opacity: 0; transform: translateY(16px); } to { opacity: 1; transform: translateY(0); } }
@keyframes fade { from { opacity: 0; } to { opacity: 1; } }
[data-reveal] { opacity: 0; transform: translateY(24px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
[data-reveal].in { opacity: 1; transform: none; }
[data-reveal][data-delay="1"] { transition-delay: .08s; }
[data-reveal][data-delay="2"] { transition-delay: .16s; }
[data-reveal][data-delay="3"] { transition-delay: .24s; }

/* ----------------------------------------------------------------------------
   27. RESPONSIVE
---------------------------------------------------------------------------- */
@media (max-width: 1024px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .step::before { display: none; }
  .footer-grid { grid-template-columns: 1.4fr 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}
@media (max-width: 860px) {
  .nav-menu, .nav .btn-phone span { }
  .nav-toggle { display: inline-flex; }
  .nav-menu {
    position: fixed; inset: var(--header-h) 0 auto 0; flex-direction: column; align-items: stretch;
    background: var(--white); padding: var(--space-4); gap: .2rem; border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow); transform: translateY(-130%); transition: transform var(--t); margin-left: 0;
    max-height: calc(100vh - var(--header-h)); overflow-y: auto;
  }
  .nav-open .nav-menu { transform: translateY(0); }
  .nav-menu a { padding: .9rem 1rem; font-size: 1.05rem; }
  .grid-3, .grid-2, .grid-4 { grid-template-columns: 1fr; }
  .spec-sheet, .finance-split, .delivery-grid, .about-grid, .contact-grid { grid-template-columns: 1fr; }
  .gallery { grid-template-columns: repeat(2, 1fr); }
  .form-row { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }
  .trustbar .grid { grid-template-columns: repeat(2, 1fr); }
  .config-steps .s span.txt { display: none; }
  .cta-strip { flex-direction: column; align-items: flex-start; }
  .about-figures, .delivery-stats { flex-wrap: wrap; }
}
@media (max-width: 480px) {
  .gallery { grid-template-columns: 1fr; }
  .trustbar .grid { grid-template-columns: 1fr; }
  .btn--block-mobile { width: 100%; }
  .hero-cta { flex-direction: column; align-items: stretch; }
}

/* Hide phone label text on small screens but keep number */
@media (max-width: 1100px) { .btn-phone span.lbl { display: none; } }

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .001ms !important; transition-duration: .001ms !important; scroll-behavior: auto !important; }
  [data-reveal] { opacity: 1; transform: none; }
}

/* Print */
@media print { .site-header, .site-footer, .cookie-banner, .hero-dots { display: none; } }
