/* ============================================================
   PPHU Konrad — Redesign 2026
   Self-hosted Plus Jakarta Sans (variable 200–800) — served from
   our own origin so ad/privacy blockers can't strip the brand font.
   ============================================================ */

@font-face {
  font-family: 'Plus Jakarta Sans';
  font-style: normal;
  font-weight: 200 800;
  font-display: swap;
  src: url(/fonts/plus-jakarta/latin-ext.woff2) format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
  font-family: 'Plus Jakarta Sans';
  font-style: normal;
  font-weight: 200 800;
  font-display: swap;
  src: url(/fonts/plus-jakarta/latin.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

/* ============================================================
   Design tokens
   ============================================================ */

:root {
  /* Brand */
  --c-orange: #E76A0E;
  --c-orange-600: #D55B05;
  --c-orange-100: #FCE6D2;
  --c-orange-50: #FDF1E5;

  --c-navy: #1B1F3A;
  --c-navy-700: #15172E;
  --c-navy-800: #10121F;

  /* Neutral / surface */
  --c-bg: #F7F2EB;            /* warm cream page bg */
  --c-bg-alt: #F1EADF;        /* slightly deeper */
  --c-surface: #FFFFFF;
  --c-surface-2: #FAF6F0;
  --c-border: #E5DDD0;
  --c-border-strong: #D6CCB9;

  --c-text: #1B1F3A;
  --c-text-2: #4A4E63;
  --c-muted: #5F6072;        /* bumped for >=4.5:1 contrast on cream */

  /* Effects */
  --shadow-sm: 0 1px 2px rgba(20,18,30,0.04), 0 1px 0 rgba(20,18,30,0.02);
  --shadow-md: 0 8px 24px -8px rgba(20,18,30,0.08), 0 2px 4px rgba(20,18,30,0.04);
  --shadow-lg: 0 24px 48px -16px rgba(20,18,30,0.18), 0 4px 8px rgba(20,18,30,0.04);
  --shadow-card: 0 1px 2px rgba(20,18,30,0.04), 0 12px 28px -16px rgba(20,18,30,0.10);

  /* Radius */
  --r-sm: 10px;
  --r-md: 14px;
  --r-lg: 20px;
  --r-xl: 28px;
  --r-2xl: 36px;
  --r-pill: 999px;

  /* Layout */
  --container: 1240px;
  --container-narrow: 1040px;

  /* Type */
  --font-sans: 'Plus Jakarta Sans', system-ui, -apple-system, 'Segoe UI', sans-serif;
}

/* ============================================================
   Reset & base
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; overflow-x: clip; }
body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.55;
  color: var(--c-text);
  background: var(--c-bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; color: inherit; }
button { background: none; border: 0; cursor: pointer; padding: 0; }
h1, h2, h3, h4, h5 { margin: 0; color: var(--c-text); letter-spacing: -0.02em; line-height: 1.1; font-weight: 700; }
p { margin: 0; }
ul { margin: 0; padding: 0; list-style: none; }
hr { border: 0; border-top: 1px solid var(--c-border); margin: 0; }
::selection { background: var(--c-orange-100); color: var(--c-navy); }

/* Keyboard focus — visible ring on interactive elements */
a:focus-visible,
button:focus-visible,
.btn:focus-visible,
.product-card:focus-visible,
.nav a:focus-visible,
input:focus-visible, select:focus-visible, textarea:focus-visible {
  outline: 2px solid var(--c-orange);
  outline-offset: 2px;
  border-radius: 6px;
}

/* ============================================================
   Layout
   ============================================================ */
.container { max-width: var(--container); margin: 0 auto; padding-inline: 28px; }
.container-narrow { max-width: var(--container-narrow); margin: 0 auto; padding-inline: 28px; }
@media (max-width: 720px) {
  .container, .container-narrow { padding-inline: 20px; }
}

.section { padding-block: 96px; }
.section-sm { padding-block: 64px; }
.section-tight { padding-block: 48px; }
@media (max-width: 720px) {
  .section { padding-block: 56px; }
  .section-sm { padding-block: 40px; }
}

/* ============================================================
   Top bar
   ============================================================ */
.topbar {
  background: var(--c-navy);
  color: rgba(255,255,255,0.78);
  font-size: 13px;
  letter-spacing: 0.01em;
}
.topbar__row {
  display: flex;
  justify-content: flex-end;
  gap: 28px;
  padding-block: 10px;
}
.topbar__row span { display: inline-flex; align-items: center; gap: 8px; }
.topbar__row i { color: var(--c-orange); width: 14px; }
@media (max-width: 900px) { .topbar { display: none; } }

/* ============================================================
   Header
   ============================================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(247, 242, 235, 0.97);
  backdrop-filter: saturate(140%) blur(14px);
  -webkit-backdrop-filter: saturate(140%) blur(14px);
  border-bottom: 1px solid rgba(229, 221, 208, 0.6);
  box-shadow: var(--shadow-sm);
  transition: background 0.3s ease, border-color 0.3s ease;
}
/* Header transparent variant — sits over hero image */
.site-header.is-transparent {
  background: transparent;
  border-bottom: 1px solid transparent;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  box-shadow: none;
}
.site-header.is-transparent .nav a { color: var(--c-navy); }
.site-header.is-transparent .nav a:hover { background: rgba(255,255,255,0.5); }
.site-header.is-transparent .header-phone { color: var(--c-navy); }
.site-header.is-transparent .lang { background: rgba(255,255,255,0.7); }
.site-header.is-transparent.is-scrolled {
  background: rgba(247, 242, 235, 0.97);
  border-bottom-color: rgba(229, 221, 208, 0.6);
  backdrop-filter: saturate(140%) blur(14px);
  -webkit-backdrop-filter: saturate(140%) blur(14px);
  box-shadow: var(--shadow-sm);
}
.site-header__row {
  display: flex;
  align-items: center;
  gap: 24px;
  height: 84px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  font-size: 26px;
  letter-spacing: -0.02em;
  color: var(--c-navy);
}
.brand strong { color: var(--c-orange); font-weight: 800; }
.brand img { height: 38px; width: auto; display: block; }
@media (max-width: 640px) { .brand img { height: 32px; } }
.brand__sep {
  display: inline-block;
  width: 5px; height: 5px; border-radius: 50%;
  background: var(--c-orange);
  margin-inline: 2px;
}

.nav {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-inline: auto;
}
.nav a {
  padding: 10px 16px;
  border-radius: var(--r-pill);
  font-weight: 500;
  font-size: 15px;
  color: var(--c-text-2);
  transition: background 0.15s, color 0.15s;
}
.nav a:hover { background: rgba(231, 106, 14, 0.08); color: var(--c-navy); }
.nav a.is-active { color: var(--c-navy); background: rgba(27, 31, 58, 0.06); }
.nav-dropdown { position: relative; }
.nav-dropdown__panel {
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  min-width: 260px;
  background: #fff;
  border: 1px solid var(--c-border);
  border-radius: var(--r-lg);
  padding: 10px;
  box-shadow: var(--shadow-md);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-4px);
  transition: opacity 0.15s, transform 0.15s, visibility 0.15s;
}
.nav-dropdown:hover .nav-dropdown__panel,
.nav-dropdown:focus-within .nav-dropdown__panel {
  opacity: 1; visibility: visible; transform: translateY(0);
}
.nav-dropdown__panel a {
  display: block;
  padding: 8px 12px;
  border-radius: 10px;
  font-size: 14.5px;
  color: var(--c-text-2);
}
.nav-dropdown__panel a:hover { background: var(--c-orange-50); color: var(--c-navy); }
.nav-dropdown > a::after {
  content: '';
  display: inline-block;
  margin-left: 6px;
  width: 6px; height: 6px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: translateY(-2px) rotate(45deg);
  opacity: 0.6;
}

.header-actions { display: flex; align-items: center; gap: 14px; }
.header-phone {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--c-navy);
  font-weight: 600;
  font-size: 15px;
}
.header-phone i { color: var(--c-orange); }
.lang {
  display: inline-flex;
  width: 44px; height: 44px; /* min touch target */
  border-radius: var(--r-pill);
  border: 1px solid var(--c-border);
  align-items: center; justify-content: center;
  font-size: 12px; font-weight: 700;
  color: var(--c-text-2);
  background: #fff;
}

.btn-burger {
  display: none;
  order: 99; /* always pinned to the far-right corner, regardless of contact button */
  width: 44px; height: 44px;
  border-radius: var(--r-pill);
  background: var(--c-navy);
  color: #fff;
  align-items: center; justify-content: center;
}
.btn-burger span {
  display: block;
  width: 18px; height: 2px; background: #fff;
  position: relative;
}
.btn-burger span::before, .btn-burger span::after {
  content: ''; position: absolute; left: 0; width: 18px; height: 2px; background: #fff;
}
.btn-burger span::before { top: -6px; }
.btn-burger span::after { top: 6px; }

@media (max-width: 1100px) {
  .nav { display: none; }
  /* nav's auto margin is gone with it — push actions to the right edge instead */
  .header-actions { margin-left: auto; }
  .header-phone span:last-child { display: none; }
  .btn-burger { display: inline-flex; }
}
@media (max-width: 640px) {
  .header-phone { display: none; }
  /* Sticky call bar carries contact on mobile — drop the loud header CTA */
  .header-actions .btn-primary { display: none; }
  .site-header__row { height: 72px; }
  .brand { font-size: 22px; }
}

/* Mobile menu */
.mobile-menu {
  position: fixed;
  inset: 0;
  background: var(--c-bg);
  z-index: 60;
  display: none;
  overflow-y: auto;
}
.mobile-menu.is-open { display: block; animation: menu-in 0.25s ease; }
@keyframes menu-in {
  from { transform: translateY(-12px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}
.mobile-menu__row {
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px 20px;
  border-bottom: 1px solid var(--c-border);
}
.mobile-menu__close {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--c-navy); color: #fff;
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 22px;
}
.mobile-menu ul { padding: 8px 12px 24px; }
.mobile-menu li a {
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px 12px;
  border-bottom: 1px solid var(--c-border);
  font-size: 18px; font-weight: 600; color: var(--c-navy);
}
.mobile-menu li a::after {
  content: ''; width: 8px; height: 8px;
  border-right: 2px solid var(--c-orange);
  border-top: 2px solid var(--c-orange);
  transform: rotate(45deg);
}
.mobile-cta { padding: 24px 20px; display: grid; gap: 12px; }

/* ============================================================
   Buttons
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 24px;
  border-radius: var(--r-pill);
  font-weight: 600;
  font-size: 15px;
  letter-spacing: -0.005em;
  transition: transform 0.12s ease, background 0.15s, color 0.15s, box-shadow 0.15s;
  white-space: nowrap;
}
.btn:active { transform: translateY(1px); }
.btn .arrow { transition: transform 0.18s ease; }
.btn:hover .arrow { transform: translateX(3px); }

.btn-primary {
  background: var(--c-orange);
  color: #fff;
  box-shadow: 0 8px 20px -8px rgba(231, 106, 14, 0.6), inset 0 -1px 0 rgba(0,0,0,0.08);
}
.btn-primary:hover { background: var(--c-orange-600); }

.btn-ghost {
  background: transparent;
  color: var(--c-navy);
  border: 1px solid var(--c-border-strong);
}
.btn-ghost:hover { background: #fff; border-color: var(--c-navy); }

.btn-accent {
  background: transparent;
  color: #B5490A; /* AA 4.8:1 on cream */
  border: 1.5px solid var(--c-orange);
}
.btn-accent:hover { background: var(--c-orange); color: #fff; border-color: var(--c-orange); }

.btn-dark {
  background: var(--c-navy);
  color: #fff;
}
.btn-dark:hover { background: var(--c-navy-700); }

.btn-link {
  display: inline-flex; align-items: center; gap: 8px;
  min-height: 44px; /* min touch target on mobile */
  color: #B5490A; /* AA 4.8:1 on cream/white */
  font-weight: 600;
}
.btn-link:hover { color: var(--c-orange-600); }

.btn-sm { padding: 9px 16px; font-size: 14px; }
.btn-lg { padding: 17px 28px; font-size: 16px; }
@media (pointer: coarse) { .btn-sm { min-height: 44px; } }

/* ============================================================
   Sticky mobile call bar (phone-driven conversion)
   ============================================================ */
.mobile-callbar {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 50;
  display: none;
  gap: 10px;
  padding: 10px 14px calc(10px + env(safe-area-inset-bottom));
  background: rgba(247, 242, 235, 0.97);
  border-top: 1px solid var(--c-border);
  backdrop-filter: saturate(140%) blur(14px);
  -webkit-backdrop-filter: saturate(140%) blur(14px);
  box-shadow: 0 -4px 16px -8px rgba(0,0,0,0.25);
  transform: translateY(120%); /* hidden until scrolled — JS toggles .is-visible */
  transition: transform 0.3s ease;
}
.mobile-callbar.is-visible { transform: translateY(0); }
.mobile-callbar .btn { flex: 1; justify-content: center; min-height: 48px; }
@media (max-width: 640px) {
  .mobile-callbar { display: flex; }
  body { padding-bottom: 72px; } /* clear the fixed bar */
  /* Sticky call bar covers contact on mobile — drop redundant hero contact CTA */
  .hero__cta .btn-primary { display: none; }
  /* Only the sticky "Zadzwoń" stays loud-orange. Hero offer = calm white
     secondary: legible over the busy photo, but not competing for attention. */
  .hero__cta .btn-accent {
    background: #fff;
    color: var(--c-navy);
    border: 1px solid var(--c-border-strong);
    box-shadow: var(--shadow-sm);
  }
  .hero__cta .btn-accent:hover { background: #fff; border-color: var(--c-navy); color: var(--c-navy); }
}

/* ============================================================
   Hero — full-bleed, image edge-to-edge, header overlays
   ============================================================ */
.hero {
  position: relative;
  overflow: hidden;
  /* Pull up to sit under the transparent sticky header */
  margin-top: calc(-1 * var(--header-h, 84px));
  padding-top: var(--header-h, 84px);
  isolation: isolate;
}
.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: var(--c-navy-700);
  overflow: hidden;
}
.hero__bg img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  /* keep image biased to the right so people can read text on left */
  object-position: 70% 50%;
}
.hero__bg::after {
  content: '';
  position: absolute; inset: 0;
  /* Light cream fade from left so left half is highly readable, plus a top
     scrim so the overlaying header links stay legible over the photo */
  background:
    linear-gradient(180deg, rgba(247,242,235,0.80) 0px, rgba(247,242,235,0.30) 96px, rgba(247,242,235,0) 160px),
    linear-gradient(90deg, var(--c-bg) 0%, rgba(247,242,235,0.92) 22%, rgba(247,242,235,0.55) 42%, rgba(247,242,235,0) 60%),
    linear-gradient(180deg, rgba(247,242,235,0) 60%, rgba(247,242,235,0.6) 90%, var(--c-bg) 100%);
  pointer-events: none;
}
.hero__inner {
  position: relative;
  z-index: 2;
  min-height: clamp(560px, 78vh, 760px);
  padding-block: 60px 80px;
  display: flex;
  align-items: center;
}
.hero__copy { max-width: 600px; }
.hero h1 {
  font-size: clamp(44px, 6.4vw, 92px);
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 0.96;
  margin-bottom: 22px;
  color: var(--c-navy);
}
.hero h1 em {
  font-style: normal;
  display: block;
  color: var(--c-text-2);
  font-weight: 700;
  letter-spacing: -0.02em;
  font-size: 0.55em;
  margin-top: 12px;
}
.hero__sub {
  font-size: 19px;
  color: var(--c-text-2);
  max-width: 460px;
  margin-bottom: 32px;
  line-height: 1.55;
}
.hero__meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
  color: var(--c-text-2);
  font-size: 14.5px;
  font-weight: 500;
  margin-bottom: 34px;
}
.hero__meta span { display: inline-flex; align-items: center; gap: 8px; }
.hero__meta .sep { width: 4px; height: 4px; border-radius: 50%; background: var(--c-orange); opacity: 0.7; }

.hero__cta { display: flex; flex-wrap: wrap; gap: 12px; }

.hero__badge {
  position: absolute;
  right: max(28px, calc((100vw - var(--container)) / 2 + 28px));
  bottom: 32px;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 12px 18px 12px 14px;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.6);
  border-radius: var(--r-pill);
  box-shadow: var(--shadow-md);
  font-size: 13.5px;
  color: var(--c-navy);
  font-weight: 600;
}
.hero__badge .pulse {
  position: relative;
  width: 10px; height: 10px; border-radius: 50%;
  background: var(--c-orange);
}
.hero__badge .pulse::after {
  content: '';
  position: absolute; inset: -4px;
  border-radius: 50%;
  border: 2px solid var(--c-orange);
  opacity: 0;
  animation: pulse-ring 2s ease-out infinite;
}
@keyframes pulse-ring {
  0% { transform: scale(0.6); opacity: 0.9; }
  80%,100% { transform: scale(2.4); opacity: 0; }
}

.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 7px 16px 7px 10px;
  border-radius: var(--r-pill);
  background: rgba(255,255,255,0.7);
  border: 1px solid rgba(255,255,255,0.8);
  font-size: 13px;
  font-weight: 600;
  color: var(--c-navy);
  margin-bottom: 28px;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.hero__eyebrow .dot {
  display: inline-block;
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--c-orange);
  box-shadow: 0 0 0 3px rgba(231,106,14,0.15);
}

@media (max-width: 880px) {
  .hero__bg::after {
    /* copy is full-width on mobile — keep a strong cream veil behind all of it */
    background:
      linear-gradient(180deg, rgba(247,242,235,0.96) 0%, rgba(247,242,235,0.90) 50%, rgba(247,242,235,0.80) 74%, rgba(247,242,235,0.45) 90%, var(--c-bg) 100%);
  }
  .hero__bg img { object-position: 60% 50%; }
  .hero__inner { min-height: 540px; padding-block: 32px 56px; }
  .hero__badge { display: none; }
}
@media (max-width: 540px) {
  .hero__inner { min-height: 460px; }
  .hero h1 { font-size: 44px; }
  .hero__cta { flex-direction: column; align-items: stretch; }
  .hero__cta .btn { width: 100%; justify-content: center; }
}

/* ============================================================
   Stat strip
   ============================================================ */
.stats {
  background: var(--c-surface);
  border: 1px solid var(--c-border);
  border-radius: var(--r-2xl);
  padding: 14px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  box-shadow: var(--shadow-card);
  margin-top: -56px;
  position: relative;
  z-index: 5;
}
.stat {
  padding: 22px 26px;
  border-right: 1px solid var(--c-border);
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.stat:last-child { border-right: 0; }
.stat__value {
  font-size: 44px;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--c-navy);
  line-height: 1;
  display: inline-flex;
  align-items: baseline;
  gap: 6px;
}
.stat__value sup { font-size: 22px; font-weight: 700; color: var(--c-orange); top: -0.6em; }
.stat__value span.unit { font-size: 20px; color: var(--c-text-2); font-weight: 600; }
.stat__label { color: var(--c-muted); font-size: 14px; font-weight: 500; }
.stat__sub { color: var(--c-text-2); font-size: 13px; }

@media (max-width: 880px) {
  .stats { grid-template-columns: repeat(2, 1fr); gap: 4px; margin-top: -36px; }
  .stat { padding: 18px; border-right: 0; border-bottom: 1px solid var(--c-border); }
  .stat:nth-child(odd) { border-right: 1px solid var(--c-border); }
  .stat:nth-last-child(-n+2) { border-bottom: 0; }
  .stat__value { font-size: 34px; }
}

/* ============================================================
   Section heads
   ============================================================ */
.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 40px;
}
.section-head__title { max-width: 720px; }
.eyebrow {
  display: inline-block;
  padding: 4px 12px;
  border-radius: var(--r-pill);
  background: var(--c-orange-50);
  color: #B5490A; /* darker orange — 4.8:1 on orange-50 (AA for small text) */
  font-size: 12.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 14px;
}
.section-head h2 {
  font-size: clamp(28px, 3.4vw, 44px);
  font-weight: 800;
  letter-spacing: -0.025em;
  line-height: 1.04;
}
.section-head p {
  margin-top: 14px;
  color: var(--c-text-2);
  font-size: 17px;
  max-width: 620px;
}
@media (max-width: 720px) {
  .section-head { flex-direction: column; align-items: flex-start; gap: 14px; }
}

/* ============================================================
   Product cards
   ============================================================ */
.products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
@media (max-width: 1100px) { .products-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .products-grid { grid-template-columns: 1fr; } }

/* 2-up variant (e.g. fuel page with 2 cards) — centered, collapses on small screens */
.products-grid--2 { grid-template-columns: repeat(2, 1fr); max-width: 860px; margin-inline: auto; }
@media (max-width: 520px) { .products-grid--2 { grid-template-columns: 1fr; } }

/* 3-up variant (e.g. offer page with 6 cards) — responsive, collapses on small screens */
.products-grid--3 { grid-template-columns: repeat(3, 1fr); }
@media (max-width: 900px) { .products-grid--3 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .products-grid--3 { grid-template-columns: 1fr; } }

/* Catalog two-column layout (sidebar + content) */
.catalog-layout { display: grid; grid-template-columns: 280px 1fr; gap: 40px; align-items: start; }
@media (max-width: 900px) { .catalog-layout { grid-template-columns: 1fr; gap: 28px; } }
@media (max-width: 900px) { .catalog-layout .sidebar { position: static; top: auto; } }

.product-card {
  background: var(--c-surface);
  border: 1px solid var(--c-border);
  border-radius: var(--r-xl);
  padding: 14px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s;
}
.product-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: var(--c-border-strong);
}
.product-card__media {
  aspect-ratio: 4 / 3;
  border-radius: var(--r-lg);
  overflow: hidden;
  background: var(--c-bg-alt);
  position: relative;
}
.product-card__media img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.4s ease;
  /* subtle lift for existing product photos */
  filter: saturate(1.04) contrast(1.02);
}
.product-card:hover .product-card__media img { transform: scale(1.04); }
.product-card__media .tag {
  position: absolute; top: 12px; left: 12px;
  background: rgba(255,255,255,0.94);
  color: var(--c-navy);
  font-size: 12px; font-weight: 600;
  padding: 6px 10px;
  border-radius: var(--r-pill);
}
.product-card__body { padding: 4px 8px 14px; display: flex; flex-direction: column; gap: 10px; flex: 1; }
.product-card h3 {
  font-size: 21px;
  font-weight: 700;
  letter-spacing: -0.015em;
}
.product-card p {
  font-size: 14.5px;
  color: var(--c-text-2);
  line-height: 1.5;
  flex: 1;
}
.product-card__cta {
  display: flex; align-items: center; justify-content: space-between;
  padding: 10px 4px 4px;
  border-top: 1px dashed var(--c-border);
  margin-top: auto;
  color: var(--c-navy);
  font-weight: 600;
}
.product-card__cta .arrow-circle {
  width: 36px; height: 36px; border-radius: 50%;
  background: var(--c-orange-50);
  color: var(--c-orange);
  display: inline-flex; align-items: center; justify-content: center;
  transition: background 0.15s, color 0.15s, transform 0.18s;
}
.product-card:hover .arrow-circle { background: var(--c-orange); color: #fff; transform: rotate(-15deg); }

/* ============================================================
   Why us — split
   ============================================================ */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
.split--reverse { direction: rtl; }
.split--reverse > * { direction: ltr; }
@media (max-width: 900px) {
  .split { grid-template-columns: 1fr; gap: 32px; }
  .split--reverse { direction: ltr; }
}

.split__media {
  position: relative;
  border-radius: var(--r-2xl);
  overflow: hidden;
  aspect-ratio: 5/6;
  background: var(--c-bg-alt);
}
.split__media img { width: 100%; height: 100%; object-fit: cover; }

.split__media-decor {
  position: absolute;
  right: -20px; bottom: -20px;
  width: 180px; height: 180px;
  background: var(--c-orange);
  border-radius: var(--r-xl);
  display: flex; align-items: center; justify-content: center;
  color: #fff;
  text-align: center;
  padding: 24px;
}
.split__media-decor strong { display: block; font-size: 44px; font-weight: 800; letter-spacing: -0.02em; line-height: 1; }
.split__media-decor span { font-size: 13px; font-weight: 500; margin-top: 4px; }

/* Certificate slider (EPAL) — click-through gallery, lazy older certs */
.cert-slider { position: absolute; inset: 0; }
.cert-slide { position: absolute; inset: 0; opacity: 0; visibility: hidden; transition: opacity .35s ease; }
.cert-slide.is-active { opacity: 1; visibility: visible; }
.cert-slide img { width: 100%; height: 100%; object-fit: contain; padding: 12px; }
.cert-nav {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 44px; height: 44px; border-radius: 50%;
  border: none; background: rgba(255,255,255,.9); color: var(--c-navy);
  display: flex; align-items: center; justify-content: center; cursor: pointer;
  box-shadow: var(--shadow-sm); z-index: 3; transition: background .2s ease;
}
.cert-nav:hover { background: #fff; }
.cert-nav svg { width: 20px; height: 20px; }
.cert-nav--prev { left: 12px; }
.cert-nav--prev svg { transform: rotate(180deg); }
.cert-nav--next { right: 12px; }
.cert-dots { position: absolute; left: 12px; bottom: 12px; display: flex; gap: 8px; z-index: 3; }
.cert-dot {
  width: 10px; height: 10px; border-radius: 50%; border: none; cursor: pointer;
  background: rgba(0, 0, 0, .25); padding: 0; transition: background .2s ease;
}
.cert-dot.is-active { background: var(--c-orange); }

.checklist { display: grid; gap: 14px; margin-block: 22px; }
.checklist li {
  display: flex; align-items: flex-start; gap: 14px;
  font-size: 17px; color: var(--c-text);
  font-weight: 500;
}
.checklist .check {
  flex: none;
  width: 26px; height: 26px;
  border-radius: 50%;
  background: var(--c-orange);
  color: #fff;
  display: inline-flex; align-items: center; justify-content: center;
  margin-top: 2px;
}
.checklist .check svg { width: 14px; height: 14px; }
.checklist--minimal .check {
  background: transparent;
  color: var(--c-orange);
  width: 20px; height: 20px;
  margin-top: 4px;
}

/* ============================================================
   Feature cards
   ============================================================ */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
@media (max-width: 880px) { .feature-grid { grid-template-columns: 1fr; } }

.feature-card {
  background: var(--c-surface);
  border: 1px solid var(--c-border);
  border-radius: var(--r-xl);
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.feature-card__icon {
  width: 52px; height: 52px;
  border-radius: 14px;
  background: var(--c-navy);
  color: var(--c-orange);
  display: inline-flex; align-items: center; justify-content: center;
  margin-bottom: 8px;
}
.feature-card__icon svg { width: 24px; height: 24px; }
.feature-card h3 { font-size: 20px; font-weight: 700; letter-spacing: -0.01em; }
.feature-card p { font-size: 15px; color: var(--c-text-2); }

/* ============================================================
   CTA banner
   ============================================================ */
.cta-banner {
  position: relative;
  border-radius: var(--r-2xl);
  overflow: hidden;
  background: var(--c-navy);
  color: #fff;
  padding: 64px 56px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 32px;
  align-items: center;
}
.cta-banner::before {
  content: '';
  position: absolute; inset: 0;
  /* orange glow only — no external spark image (reuse existing assets policy) */
  background:
    radial-gradient(circle at 92% 30%, rgba(231,106,14,0.45), transparent 50%),
    radial-gradient(circle at 70% 100%, rgba(231,106,14,0.25), transparent 60%);
  pointer-events: none;
}
.cta-banner > * { position: relative; z-index: 1; }
.cta-banner h2 {
  font-size: clamp(28px, 3.4vw, 42px);
  color: #fff;
  letter-spacing: -0.025em;
  line-height: 1.05;
  font-weight: 800;
}
.cta-banner p { color: rgba(255,255,255,0.78); margin-top: 12px; font-size: 17px; max-width: 600px; }
@media (max-width: 760px) {
  .cta-banner { grid-template-columns: 1fr; padding: 40px 28px; }
}

/* ============================================================
   Process steps (Services)
   ============================================================ */
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  counter-reset: step;
}
@media (max-width: 1000px) { .steps { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px) { .steps { grid-template-columns: 1fr; } }

.step-card {
  background: var(--c-surface);
  border: 1px solid var(--c-border);
  border-radius: var(--r-xl);
  padding: 14px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.step-card__media {
  aspect-ratio: 4/3;
  border-radius: var(--r-lg);
  overflow: hidden;
  background: var(--c-bg-alt);
  position: relative;
}
.step-card__media img { width: 100%; height: 100%; object-fit: cover; }
.step-card__media::before {
  counter-increment: step;
  content: counter(step, decimal-leading-zero);
  position: absolute; top: 12px; left: 12px;
  background: var(--c-orange);
  color: #fff;
  font-size: 13px; font-weight: 700;
  padding: 6px 10px;
  border-radius: var(--r-pill);
}
.step-card__body { padding: 4px 12px 12px; }
.step-card h3 { font-size: 19px; font-weight: 700; margin-bottom: 12px; }
.step-card ul { display: grid; gap: 8px; }
.step-card li {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 14.5px; color: var(--c-text-2);
}
.step-card li::before {
  content: ''; flex: none;
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--c-orange);
  margin-top: 7px;
}

/* ============================================================
   Page header (inner pages)
   ============================================================ */
.page-hero {
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--c-border);
}
.page-hero__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  padding-block: 80px;
}
.page-hero__media {
  height: 420px;
  border-radius: var(--r-2xl);
  overflow: hidden;
  position: relative;
  background: var(--c-navy);
}
.page-hero__media img { width: 100%; height: 100%; object-fit: cover; }
.page-hero h1 {
  font-size: clamp(40px, 5vw, 64px);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1;
  margin-bottom: 18px;
}
.page-hero__lead {
  font-size: 18px;
  color: var(--c-text-2);
  max-width: 460px;
  margin-bottom: 26px;
}
.crumbs {
  display: flex; gap: 8px;
  font-size: 13px;
  color: var(--c-muted);
  margin-bottom: 22px;
}
.crumbs a:hover { color: var(--c-orange); }
.crumbs .sep { color: var(--c-border-strong); }
@media (max-width: 900px) {
  .page-hero__inner { grid-template-columns: 1fr; padding-block: 48px; }
  .page-hero__media { height: 280px; }
}

/* ============================================================
   Contact page
   ============================================================ */
.contact-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 40px;
}
@media (max-width: 900px) { .contact-grid { grid-template-columns: 1fr; } }

.contact-card {
  background: var(--c-surface);
  border: 1px solid var(--c-border);
  border-radius: var(--r-xl);
  padding: 22px;
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.contact-card__icon {
  flex: none;
  width: 44px; height: 44px;
  border-radius: 12px;
  background: var(--c-orange-50);
  color: var(--c-orange);
  display: inline-flex; align-items: center; justify-content: center;
}
.contact-card h4 { font-size: 14px; font-weight: 600; color: var(--c-muted); margin-bottom: 4px; text-transform: uppercase; letter-spacing: 0.06em; }
.contact-card p { font-size: 16px; color: var(--c-navy); font-weight: 500; line-height: 1.5; }
.contact-card a:hover { color: var(--c-orange); }

.hours-card {
  background: var(--c-navy);
  color: #fff;
  border-radius: var(--r-xl);
  padding: 28px;
}
.hours-card h3 { color: #fff; font-size: 22px; margin-bottom: 10px; }
.hours-card p { color: rgba(255,255,255,0.7); font-size: 14.5px; margin-bottom: 20px; }
.hours-list { display: grid; gap: 8px; }
.hours-list li {
  display: flex; justify-content: space-between;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  font-size: 15px;
}
.hours-list li:last-child { border-bottom: 0; }
.hours-list .day { color: rgba(255,255,255,0.7); }
.hours-list .time { font-weight: 600; }
.hours-list .time.closed { color: var(--c-orange); }

/* ============================================================
   Product detail
   ============================================================ */
.product-detail {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 40px;
  align-items: start;
}
@media (max-width: 980px) { .product-detail { grid-template-columns: 1fr; } }

.spec-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  background: var(--c-surface);
  border: 1px solid var(--c-border);
  border-radius: var(--r-xl);
  overflow: hidden;
}
.spec-table thead th {
  text-align: left;
  padding: 14px 18px;
  font-size: 13px; font-weight: 600;
  color: var(--c-muted);
  text-transform: uppercase; letter-spacing: 0.05em;
  background: var(--c-bg-alt);
  border-bottom: 1px solid var(--c-border);
}
.spec-table tbody td {
  padding: 16px 18px;
  font-size: 15px;
  border-bottom: 1px solid var(--c-border);
  color: var(--c-text);
}
.spec-table tbody tr:last-child td { border-bottom: 0; }
.spec-table tbody tr:hover { background: var(--c-orange-50); }
.spec-table tbody tr.is-selected { background: var(--c-orange-50); }
.spec-table tbody tr.is-selected td:first-child { font-weight: 700; color: var(--c-navy); position: relative; }
.spec-table tbody tr.is-selected td:first-child::before {
  content: ''; position: absolute; left: 0; top: 8px; bottom: 8px;
  width: 3px; background: var(--c-orange); border-radius: 2px;
}

.buy-card {
  background: var(--c-surface);
  border: 1px solid var(--c-border);
  border-radius: var(--r-xl);
  padding: 24px;
  position: sticky;
  top: 100px;
}
.buy-card__tag {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--c-orange-50);
  color: var(--c-orange);
  padding: 6px 12px;
  border-radius: var(--r-pill);
  font-size: 13px; font-weight: 600;
  margin-bottom: 16px;
}

.input, .select, .textarea {
  width: 100%;
  padding: 14px 16px;
  border-radius: var(--r-md);
  border: 1px solid var(--c-border);
  background: #fff;
  font-size: 15px;
  color: var(--c-text);
  transition: border-color 0.15s, box-shadow 0.15s;
}
.input:focus, .select:focus, .textarea:focus {
  outline: none;
  border-color: var(--c-orange);
  box-shadow: 0 0 0 3px rgba(231,106,14,0.12);
}
.textarea { resize: vertical; min-height: 96px; }
.field { display: grid; gap: 6px; }
.field label { font-size: 13px; font-weight: 600; color: var(--c-muted); text-transform: uppercase; letter-spacing: 0.05em; }
.form-grid { display: grid; gap: 12px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
@media (max-width: 420px) { .form-row { grid-template-columns: 1fr; } }

/* Consent / checkbox row */
.consent { display: grid; grid-template-columns: auto 1fr; gap: 10px; align-items: start; margin-top: 2px; }
.consent input[type="checkbox"] { width: 18px; height: 18px; margin-top: 2px; accent-color: var(--c-orange); cursor: pointer; flex: none; }
.consent label { font-size: 12.5px; line-height: 1.5; color: var(--c-text-2); text-transform: none; letter-spacing: 0; font-weight: 400; }
.consent label a { color: var(--c-orange); font-weight: 600; }
.hp-field { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

/* ============================================================
   Prose — rich text from DB (product description + own_code spec tables)
   Bootstrap is not loaded here, so style .table markup ourselves.
   ============================================================ */
.prose { color: var(--c-text-2); font-size: 16px; line-height: 1.7; }
.prose p { margin-bottom: 14px; }
.prose b, .prose strong { color: var(--c-text); font-weight: 700; }
.prose a { color: #B5490A; font-weight: 600; }
.prose ul { display: grid; gap: 8px; margin: 14px 0; }
.prose li { position: relative; padding-left: 22px; font-size: 15px; }
.prose li::before {
  content: ''; position: absolute; left: 0; top: 9px;
  width: 8px; height: 8px; border-radius: 50%; background: var(--c-orange);
}
.prose table {
  width: 100%; border-collapse: separate; border-spacing: 0;
  background: var(--c-surface); border: 1px solid var(--c-border);
  border-radius: var(--r-xl); overflow: hidden; margin: 16px 0; font-size: 14.5px;
}
.prose thead th {
  padding: 13px 16px; font-weight: 700; color: #fff; background: var(--c-navy);
  text-align: center; letter-spacing: -0.01em;
}
.prose tbody td {
  padding: 13px 16px; color: var(--c-text-2); vertical-align: top;
  border-bottom: 1px solid var(--c-border); border-right: 1px solid var(--c-border);
}
.prose tbody tr:last-child td { border-bottom: 0; }
.prose tbody td:last-child { border-right: 0; }
.prose tbody tr:nth-child(even) td { background: var(--c-surface-2); }

/* ============================================================
   Sidebar
   ============================================================ */
/* One sticky wrapper so the category list + quote card don't both stick
   to the same offset and overlap each other */
.catalog-aside { position: sticky; top: 100px; }
@media (max-width: 900px) { .catalog-aside { position: static; top: auto; } }

.sidebar {
  background: var(--c-surface);
  border: 1px solid var(--c-border);
  border-radius: var(--r-xl);
  padding: 20px;
}
.sidebar h4 { font-size: 16px; margin-bottom: 14px; }
.sidebar ul { display: grid; gap: 4px; }
.sidebar li a {
  display: flex; align-items: center; justify-content: space-between;
  padding: 10px 12px;
  border-radius: 10px;
  font-size: 14.5px;
  color: var(--c-text-2);
  font-weight: 500;
}
.sidebar li a:hover, .sidebar li a.is-active {
  background: var(--c-orange-50);
  color: var(--c-orange);
}
.sidebar li a::after {
  content: ''; width: 6px; height: 6px;
  border-right: 1.5px solid currentColor;
  border-top: 1.5px solid currentColor;
  transform: rotate(45deg);
  opacity: 0.5;
}

/* ============================================================
   Footer
   ============================================================ */
.site-footer {
  background: var(--c-navy-800);
  color: rgba(255,255,255,0.7);
  padding: 80px 0 28px;
  margin-top: 80px;
}
.footer-top {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 40px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
@media (max-width: 900px) {
  .footer-top { grid-template-columns: 1fr 1fr; gap: 32px; }
}
@media (max-width: 540px) {
  .footer-top { grid-template-columns: 1fr; }
}
.footer-brand .brand { color: #fff; }
.footer-brand p { color: rgba(255,255,255,0.55); font-size: 14.5px; margin: 16px 0 24px; max-width: 320px; }
.footer-socials { display: flex; gap: 10px; }
.footer-socials a {
  width: 40px; height: 40px; border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.14);
  display: inline-flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.7);
}
.footer-socials a:hover { background: var(--c-orange); border-color: var(--c-orange); color: #fff; }

.footer-col h5 { color: #fff; font-size: 14px; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; margin-bottom: 18px; }
.footer-col ul { display: grid; gap: 10px; }
.footer-col li a { font-size: 14.5px; color: rgba(255,255,255,0.65); transition: color 0.15s; }
.footer-col li a:hover { color: var(--c-orange); }

.footer-contact-item {
  display: grid;
  grid-template-columns: 36px 1fr;
  gap: 12px;
  align-items: start;
  margin-bottom: 16px;
}
.footer-contact-item .ico {
  width: 36px; height: 36px; border-radius: 10px;
  background: rgba(255,255,255,0.06);
  color: var(--c-orange);
  display: inline-flex; align-items: center; justify-content: center;
}
.footer-contact-item p { font-size: 14.5px; color: #fff; line-height: 1.45; }
.footer-contact-item small { display: block; font-size: 12.5px; color: rgba(255,255,255,0.5); margin-bottom: 2px; }

.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 28px;
  font-size: 13.5px;
  color: rgba(255,255,255,0.45);
  flex-wrap: wrap; gap: 12px;
}
.footer-bottom a:hover { color: var(--c-orange); }

/* ============================================================
   Utility
   ============================================================ */
.text-orange { color: var(--c-orange); }
.text-navy { color: var(--c-navy); }
.text-muted { color: var(--c-muted); }
.text-center { text-align: center; }
.mt-0 { margin-top: 0; }
.mt-1 { margin-top: 8px; }
.mt-2 { margin-top: 16px; }
.mt-3 { margin-top: 24px; }
.mt-4 { margin-top: 32px; }
.mt-5 { margin-top: 48px; }
.mb-0 { margin-bottom: 0; }
.mb-2 { margin-bottom: 16px; }
.mb-3 { margin-bottom: 24px; }
.mb-4 { margin-bottom: 32px; }
.mb-5 { margin-bottom: 48px; }
.flex { display: flex; }
.grid { display: grid; }
.gap-2 { gap: 16px; }
.gap-3 { gap: 24px; }
.bg-cream { background: var(--c-bg); }
.bg-cream-alt { background: var(--c-bg-alt); }
.bg-white { background: var(--c-surface); }
.bg-navy { background: var(--c-navy); color: #fff; }

/* For inline SVG icons */
.icon { width: 1em; height: 1em; vertical-align: middle; }
.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}

/* ============================================================
   Cookie consent (cookies_eu gem) — branded for redesign layout
   (the gem's own SCSS lives in application.scss, not loaded here)
   ============================================================ */
.cookies-eu {
  position: fixed !important;
  left: 0; right: 0; bottom: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  gap: 24px;
  margin: 0;
  /* full-bleed bar, content aligned to the page container */
  padding-block: 16px;
  padding-inline: max(28px, calc((100vw - var(--container)) / 2 + 28px));
  background: var(--c-navy);
  color: rgba(255,255,255,0.82);
  border: 0;
  border-top: 1px solid rgba(255,255,255,0.10);
  box-shadow: 0 -8px 24px -12px rgba(20,18,30,0.35);
  font-size: 14px;
  line-height: 1.5;
}
.cookies-eu-content-holder { flex: 1; }
.cookies-eu-content-holder a { color: var(--c-orange); font-weight: 600; }
.cookies-eu-button-holder { flex: none; }
.cookies-eu-ok {
  background: var(--c-orange);
  color: #fff;
  font-weight: 600;
  font-size: 14px;
  padding: 11px 28px;
  border-radius: var(--r-pill);
  white-space: nowrap;
  transition: background 0.15s;
}
.cookies-eu-ok:hover { background: var(--c-orange-600); }
@media (max-width: 600px) {
  .cookies-eu { flex-direction: column; align-items: stretch; text-align: center; gap: 12px; padding-inline: 20px; }
  .cookies-eu-ok { width: 100%; }
}

/* ============================================================
   Inner pages — about / services / epal / pellet / contact
   ============================================================ */
/* Page-hero CTA row */
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; }
@media (max-width: 480px) {
  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-actions .btn { width: 100%; justify-content: center; }
}

/* 4-up product grid (services why-cards) */
.products-grid--4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 1100px) { .products-grid--4 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px)  { .products-grid--4 { grid-template-columns: 1fr; } }

/* Non-link card (marketing cards rendered as <div>) */
.product-card--static { cursor: default; }
.product-card--static:hover { transform: none; }
.product-card--static:hover .product-card__media img { transform: none; }

/* Orange tag variant */
.tag--orange { background: var(--c-orange); color: #fff; }

/* Spec callout (galvanizing max dimensions) */
.spec-callout {
  margin-top: 36px;
  background: var(--c-surface);
  border: 1px solid var(--c-border);
  border-radius: var(--r-xl);
  padding: 28px;
}
.spec-callout .eyebrow { display: block; margin-bottom: 16px; }
.spec-callout__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.spec-callout__grid > div { display: flex; flex-direction: column; gap: 4px; }
.spec-callout__grid strong { font-size: 26px; font-weight: 700; color: var(--c-navy); letter-spacing: -0.02em; }
.spec-callout__grid span { font-size: 13.5px; color: var(--c-muted); }
@media (max-width: 760px) { .spec-callout__grid { grid-template-columns: repeat(2, 1fr); } }

/* Contact info cards grid */
.contact-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
@media (max-width: 520px) { .contact-cards { grid-template-columns: 1fr; } }

/* Register data / bank info box */
.info-box {
  margin-top: 32px;
  background: var(--c-surface);
  border: 1px solid var(--c-border);
  border-radius: var(--r-xl);
  padding: 24px;
}
.info-box__title {
  font-size: 13px; color: var(--c-muted);
  text-transform: uppercase; letter-spacing: 0.06em;
  margin-bottom: 14px;
}
.info-box__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  font-size: 14.5px;
}
.info-box__grid span { color: var(--c-muted); }
.bank-row {
  display: flex; justify-content: space-between; align-items: center;
  gap: 12px; flex-wrap: wrap;
}

/* Contact form box */
.form-box {
  margin-top: 16px;
  background: var(--c-surface);
  border: 1px solid var(--c-border);
  border-radius: var(--r-xl);
  padding: 24px;
}

/* ============================================================
   Reduced motion — respect user preference
   ============================================================ */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
  .product-card:hover { transform: none; }
  .product-card:hover .product-card__media img { transform: none; }
  .hero__badge .pulse::after { animation: none; }
}
