/* ==========================================================================
   zapasowe.pl — Design tokens
   Paleta: grafit/asfalt (biele i szarości bez zmian) + niebieski akcent
   Typografia: Montserrat (jedna rodzina, różne wagi dla display / body / dane)
   Sygnatura: przerywana "linia pasa drogowego" jako łącznik sekcji i kroków
   ========================================================================== */



:root{
  --asphalt: #14161A;
  --asphalt-soft: #21242B;
  --asphalt-line: #33373F;
  --amber: #0066E3;
  --amber-dark: #0052B8;
  --amber-light: #DCEAFB;
  --steel: #5B6472;
  --steel-light: #8A93A1;
  --fog: #E9EBEF;
  --fog-deep: #DEE1E6;
  --white: #FFFFFF;
  --line: #E3E5E9;
  --success: #258704;
  --ink: #14161A;

  --font-display: 'Montserrat', 'Arial Narrow', sans-serif;
  --font-body: 'Montserrat', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-mono: 'Montserrat', 'Courier New', monospace;

  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;

  --container: 1180px;
  --shadow-sm: 0 2px 10px rgba(20,22,26,0.06);
  --shadow-md: 0 12px 32px rgba(20,22,26,0.10);
  --shadow-lg: 0 24px 60px rgba(20,22,26,0.16);
}

/* ---------- Reset ---------- */
*, *::before, *::after{ box-sizing: border-box; }
html{ scroll-behavior: smooth; }
body{
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  line-height: 1.55;
  overflow-x: hidden;
}
img{ max-width: 100%; display: block; }
a{ color: inherit; text-decoration: none; }
ul{ list-style: none; margin: 0; padding: 0; }
button{ font-family: inherit; cursor: pointer; }
input, textarea, select{ font-family: inherit; font-size: 1rem; }
h1,h2,h3,h4{
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.12;
  margin: 0 0 .5em;
  letter-spacing: .2px;
}
p{ margin: 0 0 1em; color: var(--steel); }
svg{ display:block; }

@media (prefers-reduced-motion: reduce){
  *{ animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; transition-duration: 0.001ms !important; scroll-behavior: auto !important; }
}

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

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

.eyebrow{
  font-family: var(--font-mono);
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--amber-dark);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px;
}
.eyebrow::before{
  content: '';
  width: 22px;
  height: 2px;
  background: var(--amber);
  display: inline-block;
}

/* ---------- Buttons ---------- */
.btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 15px 28px;
  border-radius: 999px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: .96rem;
  border: 2px solid transparent;
  transition: transform .15s ease, background .2s ease, color .2s ease, border-color .2s ease, box-shadow .2s ease;
  white-space: nowrap;
}
.btn:hover{ transform: translateY(-2px); }
.btn:active{ transform: translateY(0); }
.btn-primary{
  background: var(--amber);
  color: var(--white);
  box-shadow: 0 10px 24px rgba(0,102,227,0.30);
}
.btn-primary:hover{ background: var(--amber-dark); box-shadow: 0 14px 30px rgba(0,102,227,0.38); }
.btn-dark{
  background: var(--asphalt);
  color: var(--white);
}
.btn-dark:hover{ background: #000; }
.btn-outline{
  background: transparent;
  border-color: currentColor;
  color: var(--asphalt);
}
.btn-outline:hover{ background: var(--asphalt); color: var(--white); }
.btn-outline-light{
  background: transparent;
  border-color: rgba(20,22,26,0.35);
  color: var(--asphalt);
}
.btn-outline-light:hover{ background: rgba(20,22,26,0.06); border-color: var(--asphalt); }
.btn-block{ width: 100%; }
.btn-sm{ padding: 10px 18px; font-size: .85rem; }

/* ---------- Header ---------- */
.site-header{
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,0.94);
  backdrop-filter: saturate(140%) blur(10px);
  -webkit-backdrop-filter: saturate(140%) blur(10px);
  border-bottom: 1px solid var(--line);
  transition: box-shadow .25s ease;
}
.site-header.is-scrolled{ box-shadow: 0 10px 30px rgba(20,22,26,0.08); }
.site-header .container{
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 78px;
}
@media (min-width: 941px){
  .site-header .container{
    max-width: none;
    padding: 0 clamp(24px, 4vw, 64px);
  }
}
.logo{
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-size: 1.28rem;
  font-weight: 700;
  color: var(--asphalt);
  letter-spacing: .3px;
}
.logo .logo-mark{
  width: 38px; height: 38px;
  flex-shrink: 0;
}
.logo .logo-text{
  white-space: nowrap;
  font-size: 1.62rem;
  font-weight: 800;
  letter-spacing: -.2px;
}
.logo .dot{ color: var(--amber); }

.main-nav{ display: flex; }
.main-nav ul{ display: flex; gap: 4px; align-items: center; }
.main-nav a{
  color: rgba(20,22,26,0.75);
  font-weight: 600;
  font-size: .95rem;
  padding: 10px 16px;
  border-radius: 999px;
  transition: background .2s ease, color .2s ease;
  position: relative;
}
.main-nav a:hover{ color: var(--asphalt); background: rgba(20,22,26,0.06); }
.main-nav a.active{ color: var(--white); background: var(--amber); }
.main-nav .nav-short{ display: none; }

.header-actions{ display: flex; align-items: center; gap: 14px; }
.header-cta{ display: inline-flex; }

/* ---------- Language switch ---------- */
.lang-switch{
  display: flex;
  align-items: center;
  gap: 6px;
  padding-right: 14px;
  margin-right: 2px;
  border-right: 1px solid var(--line);
  color: rgba(20,22,26,0.6);
}
.lang-switch .lang-globe{
  width: 17px; height: 17px;
  flex-shrink: 0;
  color: var(--steel);
}
.lang-switch button{
  background: none;
  border: none;
  padding: 4px 3px;
  font-family: var(--font-body);
  font-size: .82rem;
  font-weight: 700;
  letter-spacing: .3px;
  color: rgba(20,22,26,0.55);
  border-radius: 4px;
  transition: color .2s ease;
}
.lang-switch button:hover{ color: var(--amber); }
.lang-switch button.is-active,
.lang-switch button[aria-pressed="true"]{ color: var(--amber); }
.lang-switch .lang-sep{
  color: var(--line);
  font-size: .8rem;
  user-select: none;
}
.lang-switch.is-loading .lang-globe{ animation: lang-spin 0.9s linear infinite; }
@keyframes lang-spin{ to{ transform: rotate(360deg); } }

@media (max-width: 480px){
  .lang-switch{ padding-left: 10px; padding-right: 0; gap: 4px; }
  .lang-switch .lang-globe{ display: none; }
}

.nav-toggle{
  display: none;
  width: 44px; height: 44px;
  border-radius: 10px;
  border: 1px solid rgba(20,22,26,0.15);
  background: transparent;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
}
.nav-toggle span{
  display: block;
  width: 20px; height: 2px;
  background: var(--asphalt);
  transition: transform .25s ease, opacity .25s ease;
}
.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); }

/* ---------- Road divider (signature element) ---------- */
.road-divider{
  height: 3px;
  width: 100%;
  background-image: repeating-linear-gradient(90deg, var(--amber) 0 28px, transparent 28px 52px);
  opacity: .9;
}
.road-divider.on-light{
  background-image: repeating-linear-gradient(90deg, var(--steel-light) 0 24px, transparent 24px 46px);
}

.route-line{
  position: relative;
  flex: 1 1 auto;
  min-width: 0;
  height: 2px;
  background-image: repeating-linear-gradient(90deg, var(--line) 0 16px, transparent 16px 30px);
  margin: 0 4px;
}
@media (max-width: 720px){
  .route-line{ display:none; }
}

/* ---------- Hero ---------- */
.hero{
  position: relative;
  background: var(--fog);
  color: var(--asphalt);
  overflow: hidden;
  padding: 32px 0 24px;
}
.hero::before{
  content:'';
  position: absolute;
  top: -20%; right: -10%;
  width: 620px; height: 620px;
  background: radial-gradient(circle, rgba(0,102,227,0.14) 0%, rgba(0,102,227,0) 68%);
  pointer-events: none;
}
.hero .container{
  position: relative;
  display: block;
  padding: 0 24px;
}
.hero-copy{
  width: 100%;
  max-width: none;
  margin: 0;
  text-align: center;
}
.hero h1{
  font-size: clamp(2rem, 3.6vw, 2.9rem);
  color: var(--asphalt);
  margin: 0 0 .22em;
}
.hero h1 em{
  font-style: normal;
  color: var(--amber);
}
.hero-lead{
  color: rgba(20,22,26,0.68);
  font-size: 1.02rem;
  max-width: none;
  margin: 0 auto 16px;
}
.hero-cta-row{ display: flex; gap: 14px; flex-wrap: wrap; margin: 0; justify-content: center; }

/* subpage header (shorter hero) */
.page-header{
  background: var(--fog);
  color: var(--asphalt);
  padding: 56px 0 48px;
  position: relative;
  overflow: hidden;
}
.page-header::before{
  content:'';
  position: absolute; top: -30%; left: -6%;
  width: 460px; height: 460px;
  background: radial-gradient(circle, rgba(0,102,227,0.12) 0%, transparent 70%);
}
.page-header .container{ position: relative; }
.breadcrumb{
  font-family: var(--font-mono);
  font-size: .78rem;
  color: rgba(20,22,26,0.5);
  margin-bottom: 14px;
}
.breadcrumb a{ color: rgba(20,22,26,0.7); }
.breadcrumb a:hover{ color: var(--amber); }
.page-header h1{ color: var(--asphalt); font-size: clamp(2rem, 3.6vw, 2.7rem); max-width: 20ch; }
.page-header p{ color: rgba(20,22,26,0.65); max-width: 60ch; font-size: 1.05rem; }

/* ---------- Trust bar ---------- */
.trust-bar{
  background: var(--fog);
  border-bottom: 1px solid var(--line);
  padding: 14px 0;
}
.trust-bar ul{
  display: flex;
  flex-wrap: wrap;
  gap: 14px 34px;
  justify-content: center;
}
.trust-bar li{
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: .88rem;
  font-weight: 600;
  color: var(--asphalt);
}
.trust-bar svg{ color: var(--success); flex-shrink: 0; width: 20px; height: 20px; }

/* ---------- Sections ---------- */
section{ padding: 88px 0; }
.section-tight{ padding: 64px 0; }
#krok1{ padding-top: 32px; padding-bottom: 48px; }
.section-head{
  max-width: 640px;
  margin: 0 0 16px;
}
.section-head.center{ margin-left: auto; margin-right: auto; text-align: center; }
.section-head h2{ font-size: clamp(1.4rem, 2.3vw, 1.85rem); color: var(--asphalt); margin-bottom: 0; }
.section-head p{ font-size: .95rem; margin-bottom: 0; }

.bg-fog{ background: var(--fog); }
.bg-asphalt{ background: var(--fog-deep); color: var(--asphalt); }
.bg-asphalt .section-head p{ color: var(--steel); }
.bg-asphalt h2, .bg-asphalt h3{ color: var(--asphalt); }

/* ---------- Steps (2 kroki / jak to działa) — signature route motif ---------- */
.steps-track{
  display: grid;
  grid-template-columns: 1fr 48px 1fr;
  align-items: start;
  column-gap: 8px;
  row-gap: 24px;
}
.steps-track.steps-4{ grid-template-columns: 1fr 48px 1fr 48px 1fr 48px 1fr; }
.step-node{ display: flex; align-items: flex-start; gap: 0; min-width: 0; }
.step-card{
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 30px 26px;
  box-shadow: var(--shadow-sm);
  flex: 1;
  min-width: 0;
}
.step-num{
  font-family: var(--font-mono);
  font-size: .78rem;
  font-weight: 600;
  color: var(--amber-dark);
  background: var(--amber-light);
  border-radius: 999px;
  min-width: 30px; height: 30px;
  padding: 0 10px;
  display: inline-flex; align-items: center; justify-content: center;
  align-self: flex-start;
  margin-bottom: 16px;
}
.step-card h3{ font-size: 1.18rem; color: var(--asphalt); margin-bottom: 8px; }
.step-card p{ font-size: .94rem; margin-bottom: 0; }
.step-connector{
  display: flex;
  align-items: center;
  justify-content: center;
  align-self: center;
  min-width: 0;
}

@media (max-width: 900px){
  .steps-track, .steps-track.steps-4{ grid-template-columns: 1fr; }
  .step-connector{ display: none; }
}

/* ---------- AI assistant demo widget ---------- */
.assistant-card{
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-md);
  display: flex;
  flex-direction: column;
  height: 100%;
  margin-top: 10px;
}
.assistant-head{
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 14px;
  border-bottom: 1px solid var(--line);
}
.assistant-head .pulse{
  width: 9px; height: 9px;
  border-radius: 50%;
  background: var(--success);
  box-shadow: 0 0 0 0 rgba(37,135,4,0.6);
  animation: pulse 2s infinite;
}
@keyframes pulse{
  0%{ box-shadow: 0 0 0 0 rgba(37,135,4,0.5); }
  70%{ box-shadow: 0 0 0 8px rgba(37,135,4,0); }
  100%{ box-shadow: 0 0 0 0 rgba(37,135,4,0); }
}
.assistant-head strong{ color: var(--asphalt); font-size: .92rem; }
.assistant-head span{ color: var(--steel-light); font-size: .78rem; display:block; }
.assistant-body{
  padding: 14px 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-height: 90px;
  max-height: 140px;
  overflow-y: auto;
  flex: 1;
}
.msg{
  max-width: 84%;
  padding: 11px 15px;
  border-radius: 14px;
  font-size: .89rem;
  line-height: 1.45;
}
.msg-bot{
  background: var(--fog);
  color: var(--asphalt);
  border-bottom-left-radius: 4px;
  align-self: flex-start;
}
.msg-user{
  background: var(--amber);
  color: var(--white);
  font-weight: 600;
  border-bottom-right-radius: 4px;
  align-self: flex-end;
}
.assistant-suggestions{
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 0 18px 14px;
}
.chip{
  background: var(--fog);
  border: 1px solid var(--line);
  color: var(--steel);
  font-size: .78rem;
  padding: 7px 12px;
  border-radius: 999px;
  transition: background .2s ease, color .2s ease;
}
.chip:hover{ background: var(--amber); color: var(--white); border-color: var(--amber); }
.assistant-form{
  display: flex;
  gap: 10px;
  padding: 12px 16px;
  border-top: 1px solid var(--line);
}
.assistant-form input{
  flex: 1;
  min-width: 0;
  background: var(--fog);
  border: 1px solid var(--line);
  color: var(--asphalt);
  border-radius: 999px;
  padding: 11px 16px;
  font-size: .88rem;
}
.assistant-form input::placeholder{ color: var(--steel-light); }
.assistant-form input:focus{ outline: 2px solid var(--amber); outline-offset: 0; }
.assistant-form button{
  width: 42px; height: 42px;
  border-radius: 50%;
  background: var(--amber);
  color: var(--white);
  border: none;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  transition: background .2s ease, transform .15s ease;
}
.assistant-form button:hover{ background: var(--amber-dark); transform: scale(1.05); }

/* ---------- Two-column purchase steps ---------- */
.purchase-grid{
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  align-items: stretch;
  max-width: none;
  width: 100%;
  margin: 0;
}

.order-card{
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 26px 28px;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  width: 100%;
}
.order-card-head{
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 12px;
}
.order-card-head .step-num{ margin-bottom: 0; flex-shrink: 0; }
.order-icon{
  width: 44px; height: 44px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  background: var(--amber-light);
  color: var(--amber-dark);
  box-shadow: 0 0 0 1px rgba(0,102,227,0.12);
}
.order-icon svg{ width: 24px; height: 24px; }
.order-icon-cart{ background: var(--asphalt); color: var(--white); box-shadow: none; }
.order-icon-car{ background: var(--asphalt); color: var(--white); box-shadow: none; }
.order-card h3{ font-size: 1.3rem; color: var(--asphalt); margin-bottom: 0; min-width: 0; overflow-wrap: break-word; }
.order-card h3 .step-num-inline{
  font: inherit;
  color: inherit;
  background: none;
  border-radius: 0;
  min-width: 0; height: auto;
  padding: 0;
  margin-right: .35em;
  display: inline;
}
.order-card ul{ margin: 16px 0 22px; display: flex; flex-direction: column; gap: 10px; }
.order-card ul li{
  display: flex; gap: 10px; font-size: .92rem; color: var(--steel);
}
.order-card ul li svg{ color: var(--success); flex-shrink: 0; margin-top: 2px; width:16px; height:16px; }
.order-card .btn{ margin-top: auto; }

.trust-bar-inline{
  margin-top: 32px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
}
.trust-bar-inline ul{
  display: flex;
  flex-wrap: wrap;
  gap: 14px 34px;
  justify-content: center;
}
.trust-bar-inline li{
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: .88rem;
  font-weight: 600;
  color: var(--asphalt);
}
.trust-bar-inline svg{ color: var(--success); flex-shrink: 0; width: 20px; height: 20px; }

/* ---------- Comfort section ---------- */
.comfort-grid{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
@media (max-width: 900px){ .comfort-grid{ grid-template-columns: 1fr; gap: 32px; } }
.comfort-image{
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  aspect-ratio: 5/4;
}
.comfort-image img{ width: 100%; height: 100%; object-fit: cover; }
.comfort-list{ display: flex; flex-direction: column; gap: 20px; margin-top: 24px; }
.comfort-item{ display: flex; gap: 16px; }
.comfort-item .icon{
  width: 46px; height: 46px;
  border-radius: 12px;
  background: var(--amber-light);
  color: var(--amber-dark);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.comfort-item h4{ font-size: 1.02rem; color: var(--asphalt); margin-bottom: 4px; }
.comfort-item p{ font-size: .92rem; margin-bottom: 0; }

/* ---------- Cards grid (services / differentiators) ---------- */
.card-grid{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
@media (max-width: 980px){ .card-grid{ grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px){ .card-grid{ grid-template-columns: 1fr; } }

.feature-card{
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 28px 26px;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.feature-card:hover{ transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: transparent; }
.feature-card .icon{
  width: 50px; height: 50px;
  border-radius: 14px;
  background: var(--asphalt);
  color: var(--amber);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 18px;
}
.feature-card h3{ font-size: 1.1rem; color: var(--asphalt); margin-bottom: 8px; }
.feature-card p{ font-size: .92rem; margin-bottom: 0; }

/* ---------- Testimonials ---------- */
.testi-grid{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
@media (max-width: 980px){ .testi-grid{ grid-template-columns: 1fr; } }
.testi-card{
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 26px;
  box-shadow: var(--shadow-sm);
}
.testi-stars{ display: flex; gap: 3px; color: var(--amber); margin-bottom: 14px; }
.testi-stars svg{ width: 16px; height: 16px; }
.testi-quote{ font-size: .95rem; color: var(--asphalt); margin-bottom: 18px; }
.testi-person{ display: flex; align-items: center; gap: 12px; }
.testi-avatar{
  width: 42px; height: 42px;
  border-radius: 50%;
  background: var(--fog-deep);
  color: var(--steel);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: .9rem;
  flex-shrink: 0;
}
.testi-person strong{ display: block; font-size: .88rem; color: var(--asphalt); }
.testi-person span{ font-size: .78rem; color: var(--steel-light); }

/* ---------- Markets ---------- */
.markets-panel{
  background: var(--fog-deep);
  border-radius: var(--radius-lg);
  padding: 46px;
  color: var(--asphalt);
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 40px;
  align-items: center;
}
@media (max-width: 860px){ .markets-panel{ grid-template-columns: 1fr; padding: 32px 24px; } }
.market-list{ display: flex; flex-wrap: wrap; gap: 12px; margin-top: 20px; }
.market-chip{
  display: flex; align-items: center; gap: 8px;
  background: var(--white);
  border: 1px solid var(--line);
  padding: 10px 16px;
  border-radius: 999px;
  font-size: .86rem;
  font-weight: 600;
}
.market-chip .flag{
  width: 20px; height: 15px;
  border-radius: 2px;
  box-shadow: 0 0 0 1px rgba(20,22,26,0.15);
  flex-shrink: 0;
  display: block;
}

/* ---------- CTA band ---------- */
.cta-band{
  background: var(--amber);
  color: var(--white);
  border-radius: var(--radius-lg);
  padding: 52px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  flex-wrap: wrap;
}
.cta-band h2{ font-size: clamp(1.5rem, 2.6vw, 2rem); margin-bottom: 8px; }
.cta-band p{ color: rgba(255,255,255,0.82); margin-bottom: 0; font-weight: 500; }
.cta-band .btn-dark:hover{ background: #000; }

/* ---------- FAQ ---------- */
.faq-list{ display: flex; flex-direction: column; gap: 12px; max-width: 800px; }
.faq-item{
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--white);
  overflow: hidden;
}
.faq-item summary{
  list-style: none;
  cursor: pointer;
  padding: 20px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-weight: 600;
  font-size: .98rem;
  color: var(--asphalt);
}
.faq-item summary::-webkit-details-marker{ display: none; }
.faq-item summary .plus{
  width: 26px; height: 26px;
  border-radius: 50%;
  border: 1px solid var(--line);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  transition: transform .2s ease, background .2s ease;
  position: relative;
}
.faq-item summary .plus::before, .faq-item summary .plus::after{
  content: '';
  position: absolute;
  background: var(--asphalt);
}
.faq-item summary .plus::before{ width: 10px; height: 2px; }
.faq-item summary .plus::after{ width: 2px; height: 10px; }
.faq-item[open] summary .plus{ background: var(--amber); transform: rotate(45deg); border-color: var(--amber); }
.faq-item[open] summary .plus::before, .faq-item[open] summary .plus::after{ background: var(--white); }
.faq-answer{ padding: 0 24px 20px; font-size: .92rem; color: var(--steel); max-width: 70ch; }

/* ---------- Product filter + grid ---------- */
.filter-bar{
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 40px;
}
.filter-btn{
  background: var(--white);
  border: 1px solid var(--line);
  color: var(--steel);
  padding: 10px 18px;
  border-radius: 999px;
  font-size: .86rem;
  font-weight: 600;
  transition: all .2s ease;
}
.filter-btn:hover{ border-color: var(--asphalt); color: var(--asphalt); }
.filter-btn.active{ background: var(--asphalt); border-color: var(--asphalt); color: var(--white); }

.product-grid{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}
@media (max-width: 980px){ .product-grid{ grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px){ .product-grid{ grid-template-columns: 1fr; } }

.product-card{
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform .2s ease, box-shadow .2s ease;
  display: flex;
  flex-direction: column;
}
.product-card:hover{ transform: translateY(-5px); box-shadow: var(--shadow-md); }
.product-media{ position: relative; aspect-ratio: 4/3; overflow: hidden; background: var(--fog); }
.product-media img{ width: 100%; height: 100%; object-fit: cover; transition: transform .35s ease; }
.product-card:hover .product-media img{ transform: scale(1.06); }
.product-tag{
  position: absolute;
  top: 12px; left: 12px;
  background: var(--asphalt);
  color: var(--white);
  font-family: var(--font-mono);
  font-size: .68rem;
  font-weight: 600;
  letter-spacing: .05em;
  padding: 5px 10px;
  border-radius: 999px;
  text-transform: uppercase;
}
.product-body{ padding: 22px; display: flex; flex-direction: column; gap: 10px; flex: 1; }
.product-body h3{ font-size: 1.06rem; color: var(--asphalt); margin-bottom: 0; }
.product-specs{ display: flex; flex-wrap: wrap; gap: 6px 14px; font-family: var(--font-mono); font-size: .74rem; color: var(--steel-light); }
.product-body p{ font-size: .88rem; margin-bottom: 0; }
.product-foot{
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
  padding-top: 12px;
}
.product-price{ font-family: var(--font-display); font-size: 1.2rem; color: var(--asphalt); font-weight: 600; }
.product-price span{ font-family: var(--font-body); font-size: .72rem; color: var(--steel-light); font-weight: 500; display: block; }

/* ---------- About page ---------- */
.about-hero-grid{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
@media (max-width: 900px){ .about-hero-grid{ grid-template-columns: 1fr; } }
.about-image{ border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-md); aspect-ratio: 4/3.2; }
.about-image img{ width: 100%; height: 100%; object-fit: cover; }

.stat-row{ display: flex; gap: 40px; flex-wrap: wrap; margin-top: 30px; }
.stat-item strong{ display: block; font-family: var(--font-display); font-size: 2.1rem; color: var(--asphalt); }
.stat-item span{ font-size: .82rem; color: var(--steel); }

.value-grid{ display: grid; grid-template-columns: repeat(4,1fr); gap: 22px; }
@media (max-width: 980px){ .value-grid{ grid-template-columns: repeat(2,1fr); } }
@media (max-width: 560px){ .value-grid{ grid-template-columns: 1fr; } }

/* ---------- Contact page ---------- */
.contact-grid{
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 48px;
  align-items: start;
}
@media (max-width: 940px){ .contact-grid{ grid-template-columns: 1fr; } }

.form-panel{
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 36px;
  box-shadow: var(--shadow-sm);
}
.form-row{ display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
@media (max-width: 560px){ .form-row{ grid-template-columns: 1fr; } }
.field{ margin-bottom: 18px; }
.field label{
  display: block;
  font-size: .82rem;
  font-weight: 600;
  color: var(--asphalt);
  margin-bottom: 7px;
}
.field label .req{ color: var(--amber-dark); }
.field input, .field select, .field textarea{
  width: 100%;
  padding: 13px 15px;
  border-radius: var(--radius-sm);
  border: 1.5px solid var(--line);
  background: var(--fog);
  transition: border-color .2s ease, background .2s ease;
}
.field input:focus, .field select:focus, .field textarea:focus{
  border-color: var(--amber);
  background: var(--white);
  outline: none;
}
.field textarea{ resize: vertical; min-height: 120px; }
.form-note{ font-size: .78rem; color: var(--steel-light); margin-top: 10px; }
.form-success{
  display: none;
  align-items: center;
  gap: 12px;
  background: #EAF6E3;
  border: 1px solid #C7E6B4;
  color: #1D6B03;
  padding: 16px 18px;
  border-radius: var(--radius-md);
  font-size: .9rem;
  font-weight: 600;
  margin-bottom: 20px;
}
.form-success.show{ display: flex; }
.form-success svg{ flex-shrink: 0; }

.contact-side{ display: flex; flex-direction: column; gap: 20px; }
.info-card{
  background: var(--fog-deep);
  color: var(--asphalt);
  border-radius: var(--radius-lg);
  padding: 30px;
}
.info-row{ display: flex; gap: 14px; padding: 14px 0; border-bottom: 1px solid var(--line); }
.info-row:last-child{ border-bottom: none; padding-bottom: 0; }
.info-row:first-child{ padding-top: 0; }
.info-row .icon{
  width: 40px; height: 40px;
  border-radius: 10px;
  background: var(--white);
  color: var(--amber);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.info-row strong{ display: block; font-size: .88rem; margin-bottom: 2px; }
.info-row span, .info-row a{ font-size: .84rem; color: var(--steel); }
.info-row a:hover{ color: var(--amber); }

.social-row{ display: flex; gap: 10px; }
.social-btn{
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--fog);
  border: 1px solid var(--line);
  display: flex; align-items: center; justify-content: center;
  color: var(--asphalt);
  transition: all .2s ease;
}
.social-btn:hover{ background: var(--amber); border-color: var(--amber); color: var(--white); transform: translateY(-3px); }
.social-btn.on-dark{ background: var(--white); border-color: var(--line); color: var(--asphalt); }
.social-btn.on-dark:hover{ background: var(--amber); color: var(--white); }

.hours-badge{
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--fog);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 16px 18px;
  font-size: .86rem;
}
.hours-badge .dot{ width: 8px; height: 8px; border-radius: 50%; background: var(--success); flex-shrink: 0; }

/* ---------- Mission / history split ---------- */
.split{ display: grid; grid-template-columns: repeat(2,1fr); gap: 48px; }
@media (max-width: 860px){ .split{ grid-template-columns: 1fr; } }
.timeline{ display: flex; flex-direction: column; gap: 0; }
.timeline-item{ display: grid; grid-template-columns: 70px 1fr; gap: 18px; padding-bottom: 30px; position: relative; }
.timeline-item::before{
  content: '';
  position: absolute;
  left: 34px; top: 30px; bottom: 0;
  width: 1px;
  background: var(--line);
}
.timeline-item:last-child::before{ display: none; }
.timeline-year{
  font-family: var(--font-mono);
  font-weight: 600;
  font-size: .85rem;
  color: var(--amber-dark);
  background: var(--amber-light);
  border-radius: 999px;
  height: 30px;
  display: flex; align-items: center; justify-content: center;
}
.timeline-item h4{ font-size: 1rem; color: var(--asphalt); margin-bottom: 4px; }
.timeline-item p{ font-size: .9rem; margin-bottom: 0; }

/* ---------- Footer ---------- */
.site-footer{
  background: var(--fog-deep);
  color: var(--steel);
  padding: 64px 0 0;
}
.footer-grid{
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 40px;
  padding-bottom: 48px;
  border-bottom: 1px solid var(--line);
}
.footer-brand{ flex: 1 1 320px; max-width: 380px; }
.footer-col{ flex: 0 0 auto; min-width: 160px; }
@media (max-width: 720px){ .footer-grid{ gap: 40px; } }
@media (max-width: 560px){ .footer-grid{ flex-direction: column; gap: 32px; } .footer-brand{ max-width: none; flex: 0 0 auto; } }
.footer-brand p{ color: var(--steel); font-size: .88rem; max-width: 30ch; margin: 14px 0 20px; }
.footer-col h5{
  font-family: var(--font-mono);
  text-transform: uppercase;
  letter-spacing: .08em;
  font-size: .74rem;
  color: var(--steel-light);
  margin-bottom: 16px;
  font-weight: 600;
}
.footer-col ul{ display: flex; flex-direction: column; gap: 11px; }
.footer-col a{ font-size: .88rem; color: var(--asphalt); transition: color .2s ease; }
.footer-col a:hover{ color: var(--amber); }
.footer-bottom{
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 0;
  flex-wrap: wrap;
  gap: 12px;
  font-size: .8rem;
  color: var(--steel-light);
}
.footer-bottom a{ color: var(--steel-light); }
.footer-bottom a:hover{ color: var(--amber); }
.footer-legal{ display: flex; gap: 18px; flex-wrap: wrap; }

/* ---------- Utility ---------- */
.mt-0{ margin-top: 0; }
.text-center{ text-align: center; }
.visually-hidden{
  position: absolute !important;
  width: 1px; height: 1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
}
.skip-link{
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--amber);
  color: var(--white);
  padding: 12px 18px;
  font-weight: 700;
  z-index: 999;
  border-radius: 0 0 8px 0;
}
.skip-link:focus{ left: 0; }

/* ---------- Responsive: header / nav ---------- */
@media (max-width: 940px){
  .site-header .container{ justify-content: flex-start; }
  .header-actions{ margin-left: auto; }
  .main-nav{
    position: fixed;
    top: 78px;
    left: 0;
    width: min(78%, 340px);
    height: calc(100vh - 78px);
    height: calc(100dvh - 78px);
    background: var(--white);
    display: flex;
    overflow-y: auto;
    transform: translateX(-100%);
    transition: transform .3s ease;
    padding: 32px 22px;
    box-shadow: 12px 0 34px rgba(20,22,26,0.16);
    border-right: 1px solid var(--line);
  }
  .main-nav.open{ transform: translateX(0); }
  .main-nav ul{ flex-direction: column; align-items: stretch; gap: 16px; width: 100%; }
  .main-nav a{ padding: 14px 16px; font-size: 1.05rem; border-radius: var(--radius-md); }
  .main-nav .nav-full{ display: none; }
  .main-nav .nav-short{ display: inline; }
  .header-cta{ display: none; }
  .nav-toggle{ display: flex; margin-right: 12px; }
  .lang-switch{
    order: 2;
    padding-right: 0;
    margin-right: 0;
    border-right: none;
    padding-left: 14px;
    margin-left: 2px;
    border-left: 1px solid var(--line);
  }
}

@media (max-width: 640px){
  section{ padding: 60px 0; }
  .cta-band{ flex-direction: column; text-align: center; padding: 40px 26px; }
  .markets-panel{ text-align: left; }
  .value-grid{ }
}
