/* Autolavix — premium car wash & detailing, Warszawa */

:root {
  --bg: oklch(0.17 0.025 255);
  --bg-alt: oklch(0.14 0.03 255);
  --bg-topbar: oklch(0.12 0.025 255);
  --bg-card: oklch(0.22 0.015 255);
  --bg-chip: oklch(0.24 0.015 255);
  --bg-input: oklch(0.17 0.025 255);

  --border: oklch(0.3 0.015 255);
  --border-light: oklch(0.28 0.015 255);
  --border-lighter: oklch(0.26 0.015 255);
  --border-input: oklch(0.32 0.015 255);
  --border-hover: oklch(0.4 0.015 255);
  --border-photo: oklch(0.35 0.015 255);

  --accent: oklch(0.62 0.16 235);
  --accent-hover: oklch(0.68 0.16 235);
  --accent-light: oklch(0.75 0.13 235);
  --accent-lighter: oklch(0.8 0.13 235);
  --accent-soft-bg: oklch(0.62 0.16 235 / 0.15);
  --accent-soft-border: oklch(0.62 0.16 235 / 0.4);

  --cta-bg-1: oklch(0.24 0.06 240);
  --cta-bg-2: oklch(0.18 0.04 255);
  --cta-border: oklch(0.35 0.05 245);

  --text: oklch(0.95 0.004 255);
  --text-nav: oklch(0.85 0.008 255);
  --text-soft: oklch(0.72 0.01 255);
  --text-soft-2: oklch(0.8 0.008 255);
  --text-muted: oklch(0.65 0.01 255);
  --text-muted-2: oklch(0.6 0.01 255);
  --text-muted-3: oklch(0.55 0.01 255);
  --text-muted-4: oklch(0.48 0.01 255);
  --white: #ffffff;

  --font-heading: Archivo, Arial, Helvetica, sans-serif;
  --font-body: 'Archivo Narrow', Helvetica, Arial, sans-serif;

  --max-width: 1240px;
  --max-width-narrow: 1000px;
  --max-width-copy: 820px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

::selection { background: var(--accent); color: white; }

img { max-width: 100%; display: block; }

a { color: inherit; text-decoration: none; }

h1, h2, h3 {
  font-family: var(--font-heading);
  font-weight: 800;
  margin: 0;
  color: white;
}

p { margin: 0; }

.page-wrap { flex: 1; display: flex; flex-direction: column; }

.container {
  max-width: var(--max-width);
  width: 100%;
  margin: 0 auto;
}
.container-narrow { max-width: var(--max-width-narrow); width: 100%; margin: 0 auto; }
.container-copy { max-width: var(--max-width-copy); width: 100%; margin: 0 auto; }

.row-center { display: flex; justify-content: center; }

/* ===== TOP BAR ===== */
.topbar {
  background: var(--bg-topbar);
  padding: 8px 24px;
  display: flex;
  justify-content: center;
}
.topbar-inner {
  max-width: var(--max-width);
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  color: var(--text-muted);
  flex-wrap: wrap;
  gap: 6px;
}
.topbar-left { display: flex; gap: 18px; flex-wrap: wrap; }

/* ===== HEADER ===== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: oklch(0.17 0.025 255 / 0.97);
  backdrop-filter: blur(6px);
  border-bottom: 1px solid var(--border);
  display: flex;
  justify-content: center;
  padding: 0 24px;
}
.site-header-inner {
  max-width: var(--max-width);
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
  gap: 16px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
}
.brand-mark {
  width: 38px;
  height: 38px;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--accent), oklch(0.4 0.1 250));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: 800;
  color: white;
  font-size: 18px;
  flex-shrink: 0;
}
.brand-name {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 22px;
  letter-spacing: 0.5px;
  color: white;
}
.main-nav {
  display: flex;
  gap: 28px;
  font-size: 15px;
  font-weight: 600;
}
.main-nav a {
  cursor: pointer;
  color: var(--text-nav);
  white-space: nowrap;
}
.main-nav a:hover, .main-nav a[aria-current="page"] { color: var(--accent-light); }

.header-actions { display: flex; align-items: center; gap: 16px; }

.cart-icon {
  position: relative;
  cursor: pointer;
  padding: 8px;
  border-radius: 8px;
  background: var(--bg-chip);
  border: 1px solid var(--border-input);
  display: flex;
  align-items: center;
  justify-content: center;
}
.cart-icon-glyph {
  width: 20px;
  height: 20px;
  border: 2px solid var(--text-nav);
  border-top: none;
  border-radius: 0 0 4px 4px;
}
.cart-badge {
  position: absolute;
  top: -6px;
  right: -6px;
  background: var(--accent);
  color: white;
  font-size: 11px;
  font-weight: 700;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cart-badge[hidden] { display: none; }

.hamburger {
  display: none;
  width: 40px;
  height: 40px;
  border-radius: 8px;
  background: var(--bg-chip);
  border: 1px solid var(--border-input);
  cursor: pointer;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 4px;
}
.hamburger span { display: block; width: 18px; height: 2px; background: var(--text-nav); }

/* ===== BUTTONS ===== */
.btn {
  display: inline-block;
  padding: 16px 28px;
  border-radius: 10px;
  font-weight: 700;
  font-size: 16px;
  cursor: pointer;
  color: white;
  background: var(--accent);
  border: 1px solid transparent;
  text-align: center;
  font-family: inherit;
}
.btn:hover { background: var(--accent-hover); }
.btn-outline {
  background: transparent;
  border: 1px solid var(--border-hover);
  color: oklch(0.9 0.005 255);
}
.btn-outline:hover { border-color: var(--accent); }
.btn-small { padding: 10px 20px; font-size: 14px; border-radius: 8px; }
.btn-block { display: block; width: 100%; }
.btn:disabled { opacity: 0.5; cursor: not-allowed; }

/* ===== HERO ===== */
.hero {
  background: linear-gradient(160deg, var(--bg-alt), oklch(0.2 0.03 250));
  display: flex;
  justify-content: center;
  padding: 80px 24px 60px;
}
.hero-grid {
  max-width: var(--max-width);
  width: 100%;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 56px;
  align-items: center;
}
.eyebrow {
  display: inline-block;
  padding: 6px 14px;
  background: var(--accent-soft-bg);
  border: 1px solid var(--accent-soft-border);
  border-radius: 100px;
  font-size: 13px;
  font-weight: 600;
  color: var(--accent-light);
  margin-bottom: 20px;
}
.hero h1 { font-size: 52px; line-height: 1.08; margin: 0 0 20px; }
.hero-lead { font-size: 18px; line-height: 1.6; color: var(--text-muted); margin: 0 0 32px; max-width: 520px; }
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }
.hero-photo {
  height: 380px;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--border-photo);
}
.hero-photo img { width: 100%; height: 100%; object-fit: cover; }

/* Sub-page header (page hero with breadcrumb) */
.page-hero {
  background: linear-gradient(160deg, var(--bg-alt), oklch(0.2 0.03 250));
  display: flex;
  justify-content: center;
  padding: 64px 24px;
}
.breadcrumb-back {
  font-size: 13px;
  color: var(--text-muted-2);
  margin-bottom: 12px;
  cursor: pointer;
  display: inline-block;
}
.page-hero h1 { font-size: 40px; margin: 0 0 16px; }
.page-hero p { color: var(--text-soft); font-size: 17px; max-width: 680px; margin: 0; }

.page-title-block { padding: 64px 24px 0; display: flex; justify-content: center; }
.page-title-block h1 { font-size: 40px; margin: 0 0 12px; }
.page-title-block p { color: var(--text-muted); font-size: 16px; max-width: 640px; margin: 0; }

/* ===== SECTIONS ===== */
.section { display: flex; justify-content: center; padding: 80px 24px; }
.section-alt { background: var(--bg-alt); }
.section-tight { padding: 64px 24px 80px; }
.section-head { text-align: center; margin-bottom: 48px; }
.section-head h2 { font-size: 36px; margin: 0 0 12px; }
.section-head p { color: var(--text-muted); font-size: 16px; max-width: 560px; margin: 0 auto; }

/* ===== STATS ===== */
.stats {
  background: var(--bg-alt);
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
  padding: 36px 24px;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
}
.stat-num { font-family: var(--font-heading); font-weight: 800; font-size: 34px; color: var(--accent-light); }
.stat-label { font-size: 14px; color: var(--text-muted); margin-top: 4px; }

/* ===== GRIDS ===== */
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.grid-services-overview { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }

/* ===== CARDS ===== */
.card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 28px 22px;
}
.card-photo-top {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
}
.card-photo-top .photo { height: 180px; }
.card-photo-top .photo img { width: 100%; height: 100%; object-fit: cover; }
.card-photo-top .body { padding: 24px; }
.card-photo-top h3 { font-size: 20px; margin-bottom: 10px; }
.card-photo-top p { font-size: 14px; color: var(--text-muted); line-height: 1.6; margin-bottom: 16px; }
.card-link { color: var(--accent-light); font-weight: 700; font-size: 14px; cursor: pointer; }
.card-link:hover { text-decoration: underline; }

.service-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: var(--accent-soft-bg);
  margin-bottom: 16px;
}
.service-card { cursor: pointer; transition: border-color 0.15s ease; }
.service-card:hover { border-color: var(--accent); }
.service-card h3 { font-size: 18px; margin-bottom: 8px; }
.service-card p { font-size: 14px; color: var(--text-muted); line-height: 1.5; }

/* ===== WHY US ===== */
.photo-box {
  height: 340px;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--border-photo);
}
.photo-box img { width: 100%; height: 100%; object-fit: cover; }
.photo-box.tall { height: 420px; }
.value-list { display: flex; flex-direction: column; gap: 20px; }
.value-item { display: flex; gap: 14px; }
.value-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--accent); margin-top: 8px; flex-shrink: 0; }
.value-title { font-weight: 700; color: white; margin-bottom: 4px; }
.value-desc { font-size: 14px; color: var(--text-muted); }

/* ===== PROCESS STEPS ===== */
.step { text-align: center; }
.step-circle {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--bg-chip);
  border: 1px solid var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 20px;
  color: var(--accent-light);
  margin: 0 auto 16px;
}
.step-title { font-weight: 700; color: white; margin-bottom: 6px; }
.step-desc { font-size: 14px; color: var(--text-muted); }

/* ===== TESTIMONIALS ===== */
.testimonial { background: var(--bg-card); border: 1px solid var(--border); border-radius: 14px; padding: 26px; }
.stars { color: var(--accent-light); margin-bottom: 12px; font-size: 14px; letter-spacing: 2px; }
.testimonial-text { font-size: 14px; color: var(--text-soft-2); line-height: 1.6; margin-bottom: 16px; }
.testimonial-author { font-weight: 700; color: white; font-size: 14px; }

/* ===== CTA BANNER ===== */
.cta-banner {
  max-width: var(--max-width);
  width: 100%;
  background: linear-gradient(120deg, var(--cta-bg-1), var(--cta-bg-2));
  border-radius: 20px;
  padding: 56px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 24px;
  border: 1px solid var(--cta-border);
}
.cta-banner h3 { font-size: 28px; margin: 0 0 8px; }
.cta-banner p { margin: 0; color: var(--text-muted); font-size: 15px; }
.cta-banner .btn { white-space: nowrap; }

/* ===== SERVICE DETAIL ===== */
.spec-list { display: flex; flex-direction: column; gap: 14px; }
.spec-row {
  display: flex;
  justify-content: space-between;
  padding: 14px 0;
  border-bottom: 1px solid var(--border-light);
}
.spec-row:last-child { border-bottom: none; }
.spec-row .name { color: var(--text-nav); }
.spec-row .price { color: var(--text-muted); font-size: 14px; }
.spec-note {
  margin-top: 28px;
  padding: 16px 20px;
  background: var(--bg-chip);
  border-radius: 10px;
  font-size: 13px;
  color: var(--text-muted);
}
.spec-note a, .spec-note .link { color: var(--accent-light); cursor: pointer; font-weight: 600; }

.extra-card { background: var(--bg-card); border: 1px solid var(--border); border-radius: 14px; padding: 24px; }
.extra-card .title { font-weight: 700; color: white; margin-bottom: 8px; }
.extra-card .desc { font-size: 14px; color: var(--text-muted); margin-bottom: 12px; }
.extra-card .price { color: var(--accent-light); font-weight: 700; font-size: 14px; }

/* ===== PRICING PLANS (complex service) ===== */
.plan { background: var(--bg-card); border: 1px solid var(--border); border-radius: 16px; padding: 32px; position: relative; }
.plan.featured { background: var(--cta-bg-1); border-color: var(--accent); }
.plan-badge {
  position: absolute;
  top: -12px;
  right: 24px;
  background: var(--accent);
  color: white;
  font-size: 12px;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 100px;
}
.plan-name { font-family: var(--font-heading); font-weight: 700; font-size: 20px; color: white; margin-bottom: 8px; }
.plan-price { font-family: var(--font-heading); font-weight: 800; font-size: 32px; color: var(--accent-light); margin-bottom: 20px; }
.plan.featured .plan-price { color: var(--accent-lighter); }
.plan-features { display: flex; flex-direction: column; gap: 10px; font-size: 14px; color: var(--text-soft-2); margin-bottom: 24px; }
.plan.featured .plan-features { color: var(--text-nav); }

/* ===== PRICING TABLE (cennik) ===== */
.price-table { background: var(--bg-card); border: 1px solid var(--border); border-radius: 12px; overflow: hidden; }
.price-table-head, .price-table-row {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  padding: 14px 20px;
}
.price-table-head-2, .price-table-row-2 {
  display: grid;
  grid-template-columns: 2fr 1fr;
  padding: 14px 20px;
}
.price-table-head { font-size: 13px; color: var(--text-muted-2); border-bottom: 1px solid var(--border); }
.price-table-head-2 { font-size: 13px; color: var(--text-muted-2); border-bottom: 1px solid var(--border); }
.price-table-row, .price-table-row-2 { font-size: 14px; color: var(--text-nav); border-bottom: 1px solid var(--border-lighter); }
.price-table-row:last-child, .price-table-row-2:last-child { border-bottom: none; }
.price-group { margin-bottom: 40px; }
.price-group h2 { font-size: 20px; margin: 0 0 16px; }

/* ===== TIPS / SHOP ===== */
.tip-card, .product-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 14px;
  overflow: hidden;
}
.tip-card .photo { height: 140px; }
.tip-card .photo img { width: 100%; height: 100%; object-fit: cover; }
.tip-card .body { padding: 22px; }
.tip-tag { font-size: 12px; color: var(--accent-light); font-weight: 700; margin-bottom: 8px; }
.tip-title { font-family: var(--font-heading); font-weight: 700; font-size: 17px; color: white; margin-bottom: 10px; line-height: 1.3; }
.tip-excerpt { font-size: 14px; color: var(--text-muted); line-height: 1.5; }

.product-card { display: flex; flex-direction: column; }
.product-card .photo { height: 160px; }
.product-card .photo img { width: 100%; height: 100%; object-fit: cover; }
.product-card .body { padding: 20px; display: flex; flex-direction: column; flex: 1; }
.product-name { font-family: var(--font-heading); font-weight: 700; font-size: 16px; color: white; margin-bottom: 8px; }
.product-desc { font-size: 13px; color: var(--text-muted); line-height: 1.5; margin-bottom: 16px; flex: 1; }
.product-foot { display: flex; justify-content: space-between; align-items: center; }
.product-price { font-family: var(--font-heading); font-weight: 800; font-size: 18px; color: var(--accent-light); }
.add-to-cart {
  padding: 9px 16px;
  background: var(--accent);
  border: none;
  border-radius: 8px;
  font-weight: 700;
  font-size: 13px;
  cursor: pointer;
  color: white;
  font-family: inherit;
}
.add-to-cart:hover { background: var(--accent-hover); }
.shop-note { margin-top: 32px; font-size: 13px; color: var(--text-muted-3); }
.shop-note .link { color: var(--accent-light); cursor: pointer; font-weight: 600; }

/* ===== CART ===== */
.cart-panel { background: var(--bg-card); border: 1px solid var(--border); border-radius: 14px; overflow: hidden; margin-bottom: 24px; }
.cart-line {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px 20px;
  border-bottom: 1px solid var(--border-light);
  flex-wrap: wrap;
}
.cart-line:last-child { border-bottom: none; }
.cart-thumb {
  width: 56px;
  height: 56px;
  border-radius: 8px;
  overflow: hidden;
  flex-shrink: 0;
  background: var(--bg-chip);
}
.cart-thumb img { width: 100%; height: 100%; object-fit: cover; }
.cart-line-info { flex: 1; min-width: 140px; }
.cart-line-name { font-weight: 700; color: white; font-size: 14px; margin-bottom: 4px; }
.cart-line-price { font-size: 13px; color: var(--text-muted-2); }
.qty-controls { display: flex; align-items: center; gap: 10px; }
.qty-btn {
  width: 26px;
  height: 26px;
  border-radius: 6px;
  background: var(--border-light);
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-weight: 700;
  color: var(--text);
  font-family: inherit;
  font-size: 14px;
}
.qty-val { width: 20px; text-align: center; font-weight: 700; }
.cart-line-total { width: 80px; text-align: right; font-weight: 700; color: var(--accent-light); }
.cart-remove { color: var(--text-muted-3); cursor: pointer; font-size: 13px; background: none; border: none; font-family: inherit; }
.cart-remove:hover { color: var(--accent-light); }
.cart-summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 24px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 14px;
  margin-bottom: 24px;
}
.cart-summary .label { font-weight: 700; color: white; font-size: 16px; }
.cart-summary .value { font-family: var(--font-heading); font-weight: 800; font-size: 24px; color: var(--accent-light); }
.empty-panel, .thanks-panel {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 48px;
  text-align: center;
}
.thanks-panel { border-color: var(--accent); padding: 40px; }
.thanks-panel .title { font-family: var(--font-heading); font-weight: 700; font-size: 22px; color: white; margin-bottom: 10px; }
.thanks-panel .desc { font-size: 14px; color: var(--text-muted); margin-bottom: 24px; }

/* ===== FORMS ===== */
.form-stack { display: flex; flex-direction: column; gap: 16px; }
.form-input {
  padding: 14px 16px;
  background: var(--bg-input);
  border: 1px solid var(--border-input);
  border-radius: 8px;
  color: white;
  font-size: 14px;
  font-family: inherit;
  width: 100%;
}
.form-input::placeholder { color: var(--text-muted-3); }
textarea.form-input { resize: vertical; }
.form-fine-print { font-size: 12px; color: var(--text-muted-3); line-height: 1.5; }
.form-fine-print .link { color: var(--accent-light); cursor: pointer; }
.form-panel { background: var(--bg-card); border: 1px solid var(--border); border-radius: 16px; padding: 32px; }
.form-error { font-size: 13px; color: oklch(0.7 0.19 25); margin-top: -6px; }
.checkbox-row { display: flex; align-items: flex-start; gap: 10px; font-size: 12px; color: var(--text-muted-3); line-height: 1.5; }
.checkbox-row input { margin-top: 3px; }

/* ===== CONTACT ===== */
.contact-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 56px; }
.contact-facts { display: flex; flex-direction: column; gap: 20px; margin-bottom: 32px; }
.contact-fact-label { font-size: 12px; color: var(--text-muted-3); margin-bottom: 4px; letter-spacing: 0.5px; }
.contact-fact-value { font-size: 16px; color: white; font-weight: 600; }
.contact-hours { font-size: 14px; color: var(--text-soft-2); line-height: 1.7; }
.map-photo { height: 180px; border-radius: 12px; overflow: hidden; border: 1px solid var(--border-photo); }
.map-photo img { width: 100%; height: 100%; object-fit: cover; }
.form-success { text-align: center; padding: 40px 0; }
.form-success .title { font-family: var(--font-heading); font-weight: 700; font-size: 20px; color: white; margin-bottom: 10px; }
.form-success .desc { font-size: 14px; color: var(--text-muted); }

/* ===== ABOUT ===== */
.about-values { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.about-value { text-align: center; padding: 24px; }
.about-value-title { font-family: var(--font-heading); font-weight: 800; font-size: 18px; color: white; margin-bottom: 8px; }
.about-value-desc { font-size: 13px; color: var(--text-muted-2); }

/* ===== LEGAL ===== */
.legal-copy { font-size: 14px; color: var(--text-soft); line-height: 1.8; }
.legal-copy p { margin: 0 0 16px; }
.legal-copy p:last-child { margin-bottom: 0; }
.legal-copy strong { color: white; }

/* ===== FOOTER ===== */
.site-footer {
  background: var(--bg-topbar);
  border-top: 1px solid var(--border-lighter);
  display: flex;
  justify-content: center;
  padding: 64px 24px 0;
}
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 40px; padding-bottom: 48px; }
.footer-brand-row { display: flex; align-items: center; gap: 10px; margin-bottom: 16px; }
.footer-mark {
  width: 32px; height: 32px; border-radius: 7px;
  background: linear-gradient(135deg, var(--accent), oklch(0.4 0.1 250));
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-heading); font-weight: 800; color: white; font-size: 15px;
}
.footer-brand-name { font-family: var(--font-heading); font-weight: 800; font-size: 18px; color: white; }
.footer-desc { font-size: 13px; color: var(--text-muted-3); line-height: 1.7; max-width: 280px; }
.footer-social { display: flex; gap: 10px; margin-top: 20px; }
.footer-social a {
  width: 34px; height: 34px; border-radius: 8px;
  background: oklch(0.2 0.015 255); border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  font-size: 12px; font-weight: 700; color: var(--text-muted-2); cursor: pointer;
}
.footer-col-title { font-weight: 700; color: white; font-size: 14px; margin-bottom: 16px; }
.footer-links { display: flex; flex-direction: column; gap: 10px; font-size: 14px; color: var(--text-muted-2); }
.footer-links a:hover { color: var(--accent-light); }
.footer-bottom {
  border-top: 1px solid var(--bg-chip);
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  font-size: 12px;
  color: var(--text-muted-4);
}

/* ===== MOBILE MENU OVERLAY ===== */
.mobile-menu {
  position: fixed;
  inset: 0;
  background: oklch(0.12 0.025 255 / 0.98);
  z-index: 100;
  display: none;
  flex-direction: column;
  padding: 24px;
  gap: 20px;
}
.mobile-menu.open { display: flex; }
.mobile-menu-close { display: flex; justify-content: flex-end; }
.mobile-menu-close span { cursor: pointer; color: white; font-size: 24px; background: none; border: none; }
.mobile-menu-links { display: flex; flex-direction: column; gap: 22px; font-size: 20px; font-weight: 700; color: white; align-items: center; margin-top: 20px; }

/* ===== COOKIE BANNER ===== */
.cookie-banner {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 200;
  background: var(--bg-topbar);
  border-top: 1px solid var(--border);
  display: none;
  justify-content: center;
  padding: 20px 24px;
}
.cookie-banner.show { display: flex; }
.cookie-banner-inner {
  max-width: var(--max-width);
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.cookie-banner-text { font-size: 13px; color: var(--text-muted); max-width: 700px; line-height: 1.6; }
.cookie-banner-text .link { color: var(--accent-light); cursor: pointer; font-weight: 600; }
.cookie-banner-actions { display: flex; gap: 12px; flex-shrink: 0; }

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--accent);
  color: white;
  padding: 10px 16px;
  z-index: 300;
  border-radius: 0 0 8px 0;
}
.skip-link:focus { left: 0; }

/* ===== RESPONSIVE ===== */
@media (max-width: 980px) {
  .main-nav { display: none; }
  .hamburger { display: flex; }
  .hero-grid, .grid-2, .contact-grid { grid-template-columns: 1fr; gap: 32px; }
  .stats-grid, .grid-4, .about-values { grid-template-columns: repeat(2, 1fr); }
  .grid-3, .grid-services-overview { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .hero h1 { font-size: 38px; }
  .cta-banner { padding: 36px; }
}

@media (max-width: 620px) {
  .stats-grid, .grid-4, .about-values, .footer-grid { grid-template-columns: 1fr; }
  .hero { padding: 48px 16px 40px; }
  .hero h1 { font-size: 30px; }
  .price-table-head, .price-table-row { grid-template-columns: 1.4fr 1fr 1fr 1fr; font-size: 12px; padding: 12px; }
  .cart-line { justify-content: space-between; }
  .cart-line-total { width: auto; }
  .section { padding: 56px 16px; }
  .page-title-block, .page-hero, .section-tight { padding-left: 16px; padding-right: 16px; }
}
