@font-face {
  font-family: "Anton";
  src: url("assets/anton-latin-400-normal.woff2") format("woff2");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "CanLabel";
  src: url("assets/can-label-narrow.woff") format("woff");
  font-style: normal;
  font-weight: 700;
  font-display: swap;
}

:root {
  --display-font: "Anton", "Arial Narrow", Impact, sans-serif;
  --navy-950: #031221;
  --navy-900: #061c32;
  --navy-850: #082642;
  --navy-800: #0a3155;
  --blue-500: #3d6e96;
  --orange-500: #ff6b12;
  --orange-600: #e75608;
  --steel-100: #e7edf1;
  --steel-200: #cdd7df;
  --ink: #12263a;
  --white: #fff;
  --off-white: #f3f6f8;
  --green: #25d366;
  --shadow: 0 24px 80px rgba(2, 18, 33, .18);
  --container: 1180px;
  --header-h: 84px;
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 20px);
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 1rem;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

body.menu-open { overflow: hidden; }
p { overflow-wrap: anywhere; }

img { display: block; max-width: 100%; }
a { color: inherit; }
a:focus-visible, button:focus-visible { outline: 2px solid var(--orange-500); outline-offset: 5px; }
button, a { -webkit-tap-highlight-color: transparent; }
button { font: inherit; }

.container {
  width: min(calc(100% - 48px), var(--container));
  margin-inline: auto;
}
.hero-layout > *, .protection-layout > *, .section-heading > *, .faq-layout > *, .guarantee-card > *, .compatibility-layout > * { min-width: 0; }

.skip-link {
  position: fixed;
  left: 16px;
  top: 0;
  z-index: 1000;
  max-width: calc(100% - 32px);
  padding: 12px 18px;
  color: var(--navy-950);
  background: var(--white);
  border-radius: 0 0 8px 8px;
  font-weight: 800;
  transform: translateY(-150%);
  transition: transform .2s ease;
}

.skip-link:focus { transform: translateY(0); }

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  height: var(--header-h);
  color: var(--white);
  border-bottom: 1px solid rgba(255, 255, 255, .14);
  transition: background .25s ease, box-shadow .25s ease, height .25s ease;
}

.site-header.scrolled {
  background: rgba(3, 18, 33, .96);
  box-shadow: 0 10px 35px rgba(0, 0, 0, .22);
  backdrop-filter: blur(14px);
}
.site-header.menu-expanded { backdrop-filter: none; background: var(--navy-950); }

.nav-wrap {
  width: min(calc(100% - 48px), 1320px);
  height: 100%;
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  color: var(--white);
  text-decoration: none;
}

.brand-mark { width: 31px; height: 36px; color: var(--orange-500); }
.brand-copy { display: grid; line-height: 1; }
.brand-name { font-size: 1.02rem; font-weight: 800; letter-spacing: .31em; }
.brand-product { margin-top: 5px; color: var(--orange-500); font-size: .67rem; font-weight: 850; letter-spacing: .28em; }

.site-menu {
  order: 2;
  margin-inline-start: auto;
  display: flex;
  align-items: center;
  gap: 30px;
}

.site-menu > a {
  color: rgba(255, 255, 255, .76);
  text-decoration: none;
  font-size: .875rem;
  font-weight: 750;
  letter-spacing: .08em;
  text-transform: uppercase;
  transition: color .2s ease;
}

.site-menu > a:hover,
.site-menu > a:focus-visible { color: var(--white); }

.site-menu .nav-contact {
  padding: 11px 17px;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, .45);
  border-radius: 2px;
}

.site-menu .nav-contact:hover,
.site-menu .nav-contact:focus-visible { border-color: var(--orange-500); background: var(--orange-500); }

.nav-toggle {
  order: 4;
  display: none;
  width: 44px;
  height: 44px;
  padding: 10px;
  color: var(--white);
  background: transparent;
  border: 0;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  margin: 5px auto;
  background: currentColor;
  transition: transform .25s ease, opacity .25s ease;
}

.site-header .brand { position: relative; z-index: 2; flex-shrink: 0; }
.language-switch { position: relative; z-index: 2; order: 3; display: flex; align-items: center; flex-shrink: 0; border: 1px solid rgba(255,255,255,.3); border-radius: 3px; }
.language-switch a { display: inline-flex; align-items: center; justify-content: center; min-height: 44px; padding: 8px 10px; color: rgba(255,255,255,.8); font-size: .875rem; font-weight: 700; line-height: 1.2; text-decoration: none; }
.language-switch a + a { border-inline-start: 1px solid rgba(255,255,255,.2); }
.language-switch a[aria-current="page"] { color: var(--white); background: rgba(255,107,18,.2); box-shadow: inset 0 -2px var(--orange-500); }
.language-switch a:hover, .language-switch a:focus-visible { color: var(--white); background: rgba(255,255,255,.1); }
.language-short { display: none; }

.hero {
  position: relative;
  min-height: 840px;
  overflow: hidden;
  color: var(--white);
  background: var(--navy-950);
}

.hero-media {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(90deg, rgba(3, 18, 33, .98) 0%, rgba(3, 18, 33, .88) 38%, rgba(3, 18, 33, .32) 76%, rgba(3, 18, 33, .36) 100%), url("assets/winter-service-bay.webp");
  background-size: cover;
  background-position: center;
}

.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(3, 18, 33, .12), transparent 58%, rgba(3, 18, 33, .88));
}

.hero-grid {
  position: absolute;
  inset: 0;
  opacity: .07;
  background-image: linear-gradient(rgba(255,255,255,.6) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.6) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: linear-gradient(90deg, black, transparent 68%);
}

.hero-layout {
  position: relative;
  z-index: 2;
  min-height: 840px;
  padding-top: calc(var(--header-h) + 72px);
  padding-bottom: 132px;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(340px, .85fr);
  align-items: center;
  gap: 30px;
}

.hero-copy { max-width: 700px; }

.eyebrow {
  min-width: 0;
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr);
  align-items: center;
  gap: 12px;
  margin-bottom: 22px;
  color: var(--orange-500);
  font-size: .73rem;
  font-weight: 850;
  letter-spacing: .2em;
  line-height: 1.2;
  text-transform: uppercase;
  overflow-wrap: anywhere;
}

.eyebrow-line { width: 34px; height: 3px; align-self: start; margin-top: .55em; background: currentColor; }
.eyebrow > * { min-width: 0; }
.eyebrow > :not(.eyebrow-line) { overflow-wrap: anywhere; }
.eyebrow.dark { color: var(--orange-600); }

h1, h2, h3, p { margin-top: 0; }
h3 { overflow-wrap: anywhere; }

h1, h2 {
  margin-bottom: 24px;
  font-family: var(--display-font);
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.05;
  overflow-wrap: anywhere;
  text-transform: uppercase;
}

h1 { max-width: 800px; font-size: clamp(3.7rem, 6.4vw, 6.8rem); }
h2 { font-size: clamp(2.8rem, 5.1vw, 5.1rem); }
h1 em, h2 em { color: var(--orange-500); font-style: normal; }
html:lang(sv) h1, html:lang(sv) h2 { line-height: 1.2; }

.hero-lede {
  max-width: 620px;
  margin-bottom: 34px;
  color: rgba(255, 255, 255, .76);
  font-size: clamp(1rem, 1.55vw, 1.22rem);
  line-height: 1.65;
}

.hero-actions { display: flex; flex-wrap: wrap; align-items: center; gap: 14px; }

.button {
  min-height: 54px;
  max-width: 100%;
  padding: 14px 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  border: 1px solid transparent;
  border-radius: 2px;
  text-decoration: none;
  font-size: .8rem;
  font-weight: 850;
  letter-spacing: .08em;
  text-transform: uppercase;
  text-align: center;
  transition: transform .2s ease, background .2s ease, border-color .2s ease, color .2s ease;
}

.button:hover { transform: translateY(-2px); }
.button svg { width: 18px; height: 18px; flex: 0 0 18px; fill: none; stroke: currentColor; stroke-width: 2.5; }
.button-primary { color: var(--white); background: var(--orange-500); border-color: var(--orange-500); box-shadow: 0 12px 32px rgba(255, 107, 18, .25); }
.button-primary:hover { background: var(--orange-600); border-color: var(--orange-600); }
.button-ghost { color: var(--white); border-color: rgba(255,255,255,.48); background: rgba(255,255,255,.03); }
.button-ghost:hover { border-color: var(--white); background: rgba(255,255,255,.1); }
.button-light { color: var(--navy-950); background: var(--white); border-color: var(--white); }
.button-light:hover { color: var(--white); background: var(--navy-900); border-color: var(--navy-900); }

.hero-specs {
  margin-top: 38px;
  display: flex;
  flex-wrap: wrap;
  gap: 11px 25px;
  color: rgba(255,255,255,.63);
  font-size: .7rem;
  font-weight: 750;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.hero-specs span::before { content: ""; display: inline-block; width: 6px; height: 6px; margin: 0 9px 1px 0; background: var(--orange-500); border-radius: 50%; }

.hero-product {
  position: relative;
  align-self: end;
  justify-self: end;
  width: min(100%, 410px);
  transform: translate(12px, 34px);
}

.hero-product img {
  position: relative;
  z-index: 2;
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 28px 34px rgba(0,0,0,.52));
}

.can-stage { position: relative; z-index: 2; aspect-ratio: 1156 / 1361; }
.can-stage img { height: 100%; }
.can-viewport { position: absolute; inset: 0; border-radius: 8px; touch-action: pan-y pinch-zoom; cursor: grab; }
.can-viewport[hidden], .can-interaction[hidden], .can-controls[hidden] { display: none; }
.can-viewport canvas { display: block; width: 100%; height: 100%; filter: drop-shadow(0 28px 34px rgba(0,0,0,.52)); }
.can-viewport:focus-visible { outline: 2px solid var(--orange-500); outline-offset: 4px; }
.can-viewport.is-dragging { cursor: grabbing; }
.can-stage.is-interactive img { visibility: hidden; }
.can-interaction { position: relative; z-index: 3; margin: 14px auto 0; display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 8px; text-align: center; }
.can-start, .can-controls button { min-height: 44px; padding: 9px 13px; color: var(--white); background: rgba(3,18,33,.75); border: 1px solid rgba(255,255,255,.35); border-radius: 4px; font-size: .8125rem; line-height: 1.2; font-weight: 650; cursor: pointer; }
.can-start:hover, .can-controls button:hover { border-color: var(--orange-500); background: var(--navy-800); }
.can-start:disabled { cursor: wait; opacity: .65; }
.can-start[aria-expanded="true"] { color: var(--steel-200); }
.can-controls { display: inline-flex; gap: 6px; }
.can-controls button { display: inline-flex; align-items: center; justify-content: center; }
.can-controls [data-can-left], .can-controls [data-can-right] { width: 44px; padding: 10px; }
.can-controls svg { width: 18px; height: 18px; fill: none; stroke: currentColor; stroke-width: 2; }
.can-hint, .can-status { flex-basis: 100%; margin: 0; color: var(--steel-200); font-size: .75rem; line-height: 1.4; }
.can-hint { max-width: 100%; }
.can-status:empty { display: none; }

.product-halo {
  position: absolute;
  z-index: 1;
  width: 78%;
  height: 78%;
  right: 0;
  bottom: 2%;
  background: var(--orange-500);
  border-radius: 50%;
  filter: blur(70px);
  opacity: .12;
}

.product-stamp {
  position: relative;
  z-index: 3;
  margin: 20px auto 0;
  width: fit-content;
  max-width: 100%;
  min-height: 60px;
  padding: 13px 16px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--white);
  background: var(--orange-500);
  box-shadow: 0 15px 35px rgba(0,0,0,.3);
  text-transform: uppercase;
  font-size: .64rem;
  line-height: 1.3;
  letter-spacing: .1em;
}

.product-stamp svg { width: 32px; flex: 0 0 auto; fill: none; stroke: currentColor; stroke-width: 1.7; }
.product-stamp strong { display: block; font-size: .83rem; }

.hero-rail {
  position: absolute;
  z-index: 3;
  left: 50%;
  bottom: 35px;
  width: min(calc(100% - 48px), var(--container));
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 18px;
  color: rgba(255,255,255,.48);
  font-size: .68rem;
  font-weight: 800;
  letter-spacing: .24em;
  text-transform: uppercase;
}

.hero-rail i { width: 4px; height: 4px; background: var(--orange-500); border-radius: 50%; }

.trust-bar { position: relative; z-index: 3; background: var(--white); border-bottom: 1px solid var(--steel-200); }
.trust-grid { min-height: 124px; display: grid; grid-template-columns: repeat(4, 1fr); align-items: stretch; }
.trust-item { min-width: 0; padding: 28px 26px; display: flex; align-items: center; gap: 14px; border-right: 1px solid var(--steel-200); }
.trust-item:first-child { border-left: 1px solid var(--steel-200); }
.trust-item svg { width: 34px; flex: 0 0 auto; fill: none; stroke: var(--orange-500); stroke-width: 1.6; }
.trust-item span { min-width: 0; color: #627383; font-size: .73rem; line-height: 1.4; overflow-wrap: anywhere; }
.trust-item strong { display: block; margin-bottom: 4px; color: var(--navy-900); font-size: .76rem; letter-spacing: .08em; text-transform: uppercase; }

.section { padding: 124px 0; }

.protection {
  position: relative;
  overflow: hidden;
  background: var(--off-white);
}

.protection::before {
  content: "S";
  position: absolute;
  right: 0;
  top: -145px;
  color: rgba(6, 28, 50, .035);
  font-family: Impact, sans-serif;
  font-size: 660px;
  line-height: 1;
}

.protection-layout { position: relative; display: grid; grid-template-columns: .8fr 1.2fr; gap: 90px; }
.section-intro { position: sticky; top: 130px; align-self: start; }
.section-intro h2 { color: var(--navy-900); }
.section-intro > p { max-width: 460px; color: #5b6c7b; font-size: 1.03rem; }

.process-list { border-top: 1px solid var(--steel-200); }
.process-item { min-height: 190px; padding: 32px 0; display: grid; grid-template-columns: 56px 1fr 70px; align-items: center; gap: 24px; border-bottom: 1px solid var(--steel-200); }
.process-number { align-self: start; color: var(--orange-600); font-family: "Arial Narrow", Impact, sans-serif; font-size: .78rem; font-weight: 900; letter-spacing: .1em; }
.process-item h3 { margin-bottom: 10px; color: var(--navy-900); font-family: var(--display-font); font-weight: 400; font-size: 2rem; line-height: 1.15; text-transform: uppercase; }
.process-item p { max-width: 500px; margin-bottom: 0; color: #647584; }
.process-item > svg { width: 58px; fill: none; stroke: var(--blue-500); stroke-width: 1.45; }

.environments { position: relative; color: var(--white); background: var(--navy-900); overflow: hidden; }
.environments::before { content: ""; position: absolute; inset: 0; opacity: .09; background-image: linear-gradient(rgba(255,255,255,.45) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.45) 1px, transparent 1px); background-size: 70px 70px; }
.environments .container { position: relative; }
.section-heading { margin-bottom: 58px; display: grid; grid-template-columns: 1.25fr .75fr; align-items: end; gap: 70px; }
.section-heading h2 { margin-bottom: 0; }
.section-heading > p { margin-bottom: 8px; color: rgba(255,255,255,.64); }

.climate-grid { display: grid; grid-template-columns: repeat(4, 1fr); border: 1px solid rgba(255,255,255,.17); }
.climate-card { position: relative; min-width: 0; min-height: 430px; padding: 28px; display: flex; flex-direction: column; overflow: hidden; overflow-wrap: anywhere; background: rgba(255,255,255,.025); border-right: 1px solid rgba(255,255,255,.17); transition: background .25s ease, transform .25s ease; }
.climate-card:last-child { border-right: 0; }
.climate-card::after { content: ""; position: absolute; inset: auto 0 0; height: 4px; background: var(--orange-500); transform: scaleX(0); transform-origin: left; transition: transform .3s ease; }
.climate-card:hover { background: rgba(255,255,255,.07); transform: translateY(-5px); }
.climate-card:hover::after { transform: scaleX(1); }
.card-topline { display: flex; justify-content: space-between; color: rgba(255,255,255,.5); font-size: .65rem; font-weight: 800; letter-spacing: .15em; text-transform: uppercase; }
.card-topline span:first-child { color: var(--orange-500); }
.climate-icon { width: 70px; margin: 68px 0 45px; fill: none; stroke: var(--orange-500); stroke-width: 1.45; }
.climate-card h3 { margin-bottom: 14px; font-family: var(--display-font); font-weight: 400; font-size: 1.55rem; line-height: 1.15; text-transform: uppercase; }
.climate-card p { margin-bottom: 0; color: rgba(255,255,255,.62); font-size: .9rem; }

.applications { background: var(--white); }
.applications-heading { max-width: 850px; margin-bottom: 62px; }
.applications-heading h2 { color: var(--navy-900); }
.applications-heading > p { max-width: 660px; color: #657786; font-size: 1.04rem; }
.application-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.application-card { position: relative; min-width: 0; min-height: 330px; padding: 30px 26px; overflow-wrap: anywhere; background: var(--off-white); border-top: 4px solid var(--navy-900); transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease; }
.application-card:hover { transform: translateY(-6px); border-color: var(--orange-500); box-shadow: var(--shadow); }
.application-index { position: absolute; top: 24px; right: 24px; color: #9baab5; font-size: .68rem; font-weight: 800; letter-spacing: .1em; }
.application-card > svg { width: 66px; margin: 30px 0 48px; fill: none; stroke: var(--orange-600); stroke-width: 1.65; }
.application-card h3 { margin-bottom: 13px; color: var(--navy-900); font-family: var(--display-font); font-weight: 400; font-size: 1.45rem; line-height: 1.15; text-transform: uppercase; }
.application-card p { margin-bottom: 0; color: #637483; font-size: .88rem; }

.compatibility { padding: 94px 0; color: var(--white); background: var(--orange-500); }
.compatibility-layout { display: grid; grid-template-columns: .95fr 1.05fr; align-items: center; gap: 80px; }
.compatibility .eyebrow { color: var(--navy-900); }
.compatibility h2 { margin-bottom: 18px; font-size: clamp(3.2rem, 6vw, 6.5rem); }
.compatibility h2 em { color: var(--navy-900); }
.compatibility-copy > p { max-width: 460px; margin-bottom: 0; color: var(--navy-950); }
.material-list { display: grid; grid-template-columns: 1fr 1fr; border-top: 1px solid rgba(255,255,255,.43); border-left: 1px solid rgba(255,255,255,.43); }
.material-chip { min-height: 108px; padding: 22px; display: flex; flex-direction: column; justify-content: space-between; border-right: 1px solid rgba(255,255,255,.43); border-bottom: 1px solid rgba(255,255,255,.43); }
.material-chip span { color: var(--navy-900); font-size: .66rem; font-weight: 900; letter-spacing: .1em; }
.material-chip strong { font-family: var(--display-font); font-weight: 400; font-size: 1.35rem; letter-spacing: .02em; text-transform: uppercase; }

.guarantee { padding-top: 106px; padding-bottom: 106px; background: var(--off-white); }
.guarantee-card { min-height: 310px; padding: 55px 64px; display: grid; grid-template-columns: 160px 1fr auto; align-items: center; gap: 48px; color: var(--white); background: var(--navy-900); box-shadow: var(--shadow); }
.guarantee-card h2 { margin-bottom: 15px; font-size: clamp(2.7rem, 4.5vw, 4.5rem); }
.guarantee-card p { max-width: 610px; margin-bottom: 0; color: rgba(255,255,255,.65); }
.guarantee-seal svg { width: 140px; fill: none; stroke: var(--orange-500); stroke-width: 2; }
.guarantee-seal svg path:nth-of-type(1) { fill: rgba(255,107,18,.08); }

.faq { background: var(--white); }
.faq-layout { display: grid; grid-template-columns: .74fr 1.26fr; gap: 100px; }
.faq-heading { align-self: start; }
.faq-heading h2 { color: var(--navy-900); }
.faq-heading p { max-width: 360px; color: #647584; }
.text-link { display: inline-flex; gap: 12px; color: var(--orange-600); font-size: .78rem; font-weight: 850; letter-spacing: .07em; text-decoration: none; text-transform: uppercase; border-bottom: 1px solid currentColor; }
.whatsapp-inline {
  min-height: 44px;
  max-width: 100%;
  margin-top: 8px;
  padding: 9px 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: var(--white);
  background: var(--green);
  border: 1px solid var(--green);
  border-radius: 999px;
  box-shadow: 0 4px 12px rgba(0,0,0,.12);
  font-size: .875rem;
  font-weight: 600;
  letter-spacing: 0;
  text-decoration: none;
  text-transform: none;
  transition: transform .2s ease, background .2s ease, border-color .2s ease, box-shadow .2s ease;
}
.whatsapp-inline:hover { color: var(--white); background: var(--green); border-color: var(--green); box-shadow: 0 6px 16px rgba(0,0,0,.18); transform: translateY(-1px); }
.whatsapp-inline:focus-visible { outline: 3px solid rgba(37,211,102,.35); outline-offset: 4px; }
.whatsapp-inline svg { width: 17px; height: 17px; flex: 0 0 auto; }
.accordion { border-top: 1px solid var(--steel-200); }
.faq-item { border-bottom: 1px solid var(--steel-200); }
.faq-item h3 { margin: 0; }
.faq-item button { width: 100%; padding: 27px 0; display: flex; align-items: center; justify-content: space-between; gap: 20px; color: var(--navy-900); background: none; border: 0; text-align: left; cursor: pointer; font-family: var(--display-font); font-size: 1.25rem; font-weight: 400; letter-spacing: .01em; text-transform: uppercase; }
.faq-item button span { min-width: 0; overflow-wrap: anywhere; }
.faq-item button i { position: relative; width: 22px; height: 22px; flex: 0 0 auto; }
.faq-item button i::before, .faq-item button i::after { content: ""; position: absolute; left: 2px; top: 10px; width: 18px; height: 2px; background: var(--orange-500); transition: transform .2s ease; }
.faq-item button i::after { transform: rotate(90deg); }
.faq-item button[aria-expanded="true"] i::after { transform: rotate(0); }
.faq-answer { overflow: hidden; }
.faq-answer p { max-width: 680px; padding: 0 45px 26px 0; margin-bottom: 0; color: #627482; }

.cta-section { position: relative; min-height: 590px; padding: 88px 0; display: flex; align-items: center; overflow: hidden; color: var(--white); background: var(--navy-950); }
.cta-photo { position: absolute; inset: 0; background-image: linear-gradient(90deg, rgba(3,18,33,.98) 0%, rgba(3,18,33,.88) 45%, rgba(3,18,33,.35) 100%), url("assets/winter-service-bay.webp"); background-position: center; background-size: cover; }
.cta-photo::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(3,18,33,.3), transparent); }
.cta-content { position: relative; z-index: 1; }
.cta-content h2 { max-width: 850px; }
.cta-content p { max-width: 570px; margin-bottom: 33px; color: rgba(255,255,255,.7); font-size: 1.03rem; }

.site-footer { padding: 62px 0 90px; color: rgba(255,255,255,.72); background: #020d17; }
.footer-top { padding-bottom: 44px; display: grid; grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr); align-items: start; gap: clamp(40px, 7vw, 100px); border-bottom: 1px solid rgba(255,255,255,.12); }
.footer-brand-column { min-width: 0; }
.footer-brand-column > p { max-width: 340px; margin: 22px 0 0; font-size: 1rem; }
.footer-contact { margin-top: 24px; }
.footer-email-block { min-width: 0; }
.footer-email-heading { margin: 0 0 22px; color: var(--white); font-family: inherit; font-size: 1.125rem; font-weight: 650; line-height: 1.4; letter-spacing: 0; text-transform: none; }
.footer-email-block address { font-style: normal; }
.footer-email-list { margin: 0; padding: 0; list-style: none; }
.footer-email-list li { margin: 0; }
.footer-email-list li + li { border-bottom: 1px solid rgba(255,255,255,.12); }
.footer-email { min-width: 0; padding: 17px 20px; display: flex; flex-direction: column; align-items: flex-start; gap: 5px; border-left: 3px solid transparent; color: var(--steel-100); text-decoration: none; transition: color .2s ease, background .2s ease; }
.footer-email:hover { color: var(--white); background: rgba(255,255,255,.045); }
.footer-email:focus-visible { outline: 2px solid var(--orange-500); outline-offset: 3px; border-radius: 2px; }
.footer-email.is-primary { margin-bottom: 6px; padding-block: 20px; border-left-color: var(--orange-500); background: rgba(255,255,255,.055); color: var(--white); }
.footer-email-label { display: block; color: #acbac6; font-size: .875rem; font-weight: 500; line-height: 1.4; letter-spacing: .01em; }
.footer-email.is-primary .footer-email-label { color: var(--orange-500); }
.footer-email-address { display: block; max-width: 100%; font-size: 1rem; font-weight: 500; line-height: 1.5; letter-spacing: 0; overflow-wrap: anywhere; }
.footer-email:hover .footer-email-address { text-decoration: underline; text-decoration-color: rgba(255,255,255,.4); text-underline-offset: 4px; }
.footer-bottom { padding-top: 24px; display: flex; justify-content: space-between; gap: 30px; font-size: .68rem; letter-spacing: .08em; text-transform: uppercase; }

.whatsapp-float {
  position: fixed;
  z-index: 150;
  right: 26px;
  bottom: calc(26px + env(safe-area-inset-bottom, 0px));
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  color: var(--white);
  background: var(--green);
  border: 1px solid rgba(255,255,255,.85);
  border-radius: 50%;
  box-shadow: 0 5px 18px rgba(0,0,0,.2);
  transition: transform .2s ease, box-shadow .2s ease;
}
.whatsapp-float:hover { transform: translateY(-4px) scale(1.04); box-shadow: 0 17px 42px rgba(0,0,0,.36); }
body.menu-open .whatsapp-float { visibility: hidden; }
.whatsapp-float svg { width: 28px; height: 28px; }
.wa-tooltip { position: absolute; right: 64px; padding: 8px 12px; color: var(--navy-950); background: var(--white); border-radius: 4px; box-shadow: 0 8px 24px rgba(0,0,0,.18); font-size: .72rem; font-weight: 800; white-space: nowrap; opacity: 0; transform: translateX(6px); pointer-events: none; transition: opacity .2s ease, transform .2s ease; }
.whatsapp-float:hover .wa-tooltip, .whatsapp-float:focus-visible .wa-tooltip { opacity: 1; transform: translateX(0); }

.reveal { transition: opacity .65s ease, transform .65s ease; }
.reveal-ready .reveal:not(.visible) { opacity: 0; transform: translateY(24px); }
.reveal.visible { opacity: 1; transform: translateY(0); }

@keyframes pulse {
  0% { opacity: .7; transform: scale(.9); }
  70%, 100% { opacity: 0; transform: scale(1.25); }
}

@media (max-width: 1050px) {
  .site-menu { gap: 20px; }
  .hero-layout { grid-template-columns: 1.12fr .88fr; }
  .hero-product { width: min(100%, 370px); transform: translate(0, 30px); }
  .trust-grid { grid-template-columns: 1fr 1fr; }
  .trust-item:nth-child(2) { border-right: 1px solid var(--steel-200); }
  .trust-item:nth-child(-n+2) { border-bottom: 1px solid var(--steel-200); }
  .climate-grid, .application-grid { grid-template-columns: 1fr 1fr; }
  .climate-card:nth-child(2) { border-right: 0; }
  .climate-card:nth-child(-n+2) { border-bottom: 1px solid rgba(255,255,255,.17); }
  .guarantee-card { grid-template-columns: 140px 1fr; }
  .guarantee-card .button { grid-column: 2; justify-self: start; }
}

@media (max-width: 1050px) {
  :root { --header-h: 74px; }
  .nav-wrap { width: min(calc(100% - 36px), var(--container)); gap: 12px; }
  .language-switch { margin-inline-start: auto; }
  .nav-toggle { display: block; position: relative; z-index: 2; }
  .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); }
  .site-menu { position: fixed; inset: 0; margin-inline-start: 0; padding: 115px 24px 40px; display: flex; flex-direction: column; align-items: stretch; gap: 0; overflow-y: auto; background: var(--navy-950); visibility: hidden; transform: translateX(100%); transition: transform .3s ease, visibility .3s ease; }
  .site-menu.open { visibility: visible; transform: translateX(0); }
  .site-menu > a { padding: 18px 4px; font-size: 1rem; overflow-wrap: anywhere; border-bottom: 1px solid rgba(255,255,255,.13); }
  .site-menu .nav-contact { margin-top: 22px; text-align: center; border: 1px solid var(--orange-500); background: var(--orange-500); }
}

@media (max-width: 820px) {
  .container { width: min(calc(100% - 36px), var(--container)); }
  .hero, .hero-layout { min-height: auto; }
  .hero-layout { padding-top: 150px; padding-bottom: 115px; grid-template-columns: 1fr; }
  .hero-media { background-image: linear-gradient(180deg, rgba(3,18,33,.78), rgba(3,18,33,.94) 62%, rgba(3,18,33,1)), url("assets/winter-service-bay.webp"); background-position: 66% center; }
  .hero-copy { max-width: 660px; }
  .hero-product { width: min(78%, 400px); margin-top: 20px; justify-self: center; transform: none; }
  .hero-rail { display: none; }
  .section { padding: 92px 0; }
  .protection-layout, .section-heading, .compatibility-layout, .faq-layout { grid-template-columns: 1fr; gap: 52px; }
  .section-intro { position: static; }
  .section-heading { align-items: start; }
  .climate-card { min-height: 390px; }
  .compatibility { padding: 80px 0; }
  .guarantee-card { padding: 45px; grid-template-columns: 110px 1fr; gap: 30px; }
  .guarantee-seal svg { width: 110px; }
  .footer-top { grid-template-columns: 1fr; gap: 42px; }
}

@media (max-width: 570px) {
  .container, .nav-wrap { width: min(calc(100% - 28px), var(--container)); }
  .brand { min-width: 0; gap: 8px; }
  .brand-mark { width: clamp(22px, 7vw, 28px); height: auto; }
  .brand-name { font-size: clamp(12px, 4vw, 16px); letter-spacing: .2em; }
  .brand-product { margin-top: 3px; font-size: clamp(9px, 2.8vw, 11px); letter-spacing: .17em; }
  h1 { font-size: clamp(32px, 12vw, 68px); }
  h2 { font-size: clamp(28px, 10vw, 58px); }
  .hero-layout { padding-top: 130px; padding-bottom: 76px; }
  .hero-actions { align-items: stretch; flex-direction: column; }
  .button { width: 100%; }
  .hero-specs { display: grid; gap: 9px; }
  .hero-product { width: min(92%, 360px); margin-top: 14px; }
  .product-stamp { min-height: 56px; padding: 10px 14px; }
  .product-stamp svg { width: 27px; }
  .trust-grid { grid-template-columns: 1fr; }
  .trust-item, .trust-item:nth-child(2) { border-right: 1px solid var(--steel-200); border-bottom: 1px solid var(--steel-200); }
  .trust-item:last-child { border-bottom: 0; }
  .section { padding: 76px 0; }
  .process-item { grid-template-columns: 42px 1fr; gap: 16px; }
  .process-item > svg { display: none; }
  .climate-grid, .application-grid { grid-template-columns: 1fr; }
  .climate-card { min-height: 360px; border-right: 0; border-bottom: 1px solid rgba(255,255,255,.17); }
  .climate-card:last-child { border-bottom: 0; }
  .protection::before { display: none; }
  .climate-icon { margin: 50px 0 35px; }
  .application-grid { gap: 12px; }
  .material-list { grid-template-columns: 1fr; }
  .material-chip { min-height: 92px; }
  .guarantee-card { width: min(calc(100% - 28px), var(--container)); padding: 38px 28px; grid-template-columns: 1fr; }
  .guarantee-seal svg { width: 100px; }
  .guarantee-card .button { grid-column: 1; }
  .faq-layout { gap: 42px; }
  .cta-section { min-height: 620px; }
  .footer-top { grid-template-columns: 1fr; gap: 42px; }
  .footer-contact { justify-self: start; }
  .footer-email { padding-inline: 12px; }
  .footer-bottom { flex-direction: column; gap: 10px; }
  .whatsapp-float { right: 18px; bottom: calc(18px + env(safe-area-inset-bottom, 0px)); width: 50px; height: 50px; }
  .whatsapp-float svg { width: 25px; height: 25px; }
  .wa-tooltip { display: none; }
}

@media (max-width: 420px) {
  .nav-wrap { gap: 8px; }
  .language-full { display: none; }
  .language-short { display: inline; }
  .language-switch a { min-width: 38px; padding-inline: 8px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .reveal { opacity: 1; transform: none; }
}
