/* ===================================
   KEMISKVATTENANALYS.SE – Main Styles
   =================================== */

/* --- Reset & Base --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --blue-900: #0a1628;
  --blue-800: #0f2347;
  --blue-700: #1a3a6e;
  --blue-600: #1e4d9e;
  --blue-500: #2563eb;
  --blue-400: #3b82f6;
  --blue-300: #93c5fd;
  --blue-100: #dbeafe;
  --blue-50:  #eff6ff;
  --teal-500: #0d9488;
  --teal-400: #14b8a6;
  --green-500: #16a34a;
  --green-400: #22c55e;
  --neutral-900: #111827;
  --neutral-700: #374151;
  --neutral-500: #6b7280;
  --neutral-300: #d1d5db;
  --neutral-100: #f3f4f6;
  --white: #ffffff;
  --light-bg: #f8faff;
  --shadow-sm: 0 1px 3px rgba(0,0,0,.08), 0 1px 2px rgba(0,0,0,.06);
  --shadow-md: 0 4px 16px rgba(0,0,0,.10);
  --shadow-lg: 0 10px 40px rgba(0,0,0,.14);
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 22px;
  --transition: .25s ease;
  --font-body: 'Inter', sans-serif;
  --font-heading: 'Poppins', sans-serif;
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-body);
  color: var(--neutral-700);
  background: var(--white);
  line-height: 1.65;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
ul { list-style: none; }

h1,h2,h3,h4,h5 { font-family: var(--font-heading); color: var(--neutral-900); line-height: 1.2; }

/* --- Container --- */
.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ===================================
   BUTTONS
   =================================== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-body);
  font-weight: 600;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: all var(--transition);
  border: 2px solid transparent;
  white-space: nowrap;
  text-decoration: none;
}

.btn--primary {
  background: var(--blue-500);
  color: var(--white);
  border-color: var(--blue-500);
  padding: 12px 24px;
  font-size: .95rem;
  box-shadow: 0 4px 14px rgba(37,99,235,.35);
}
.btn--primary:hover {
  background: var(--blue-600);
  border-color: var(--blue-600);
  box-shadow: 0 6px 20px rgba(37,99,235,.45);
  transform: translateY(-1px);
}

.btn--primary-sm {
  background: var(--blue-500);
  color: var(--white);
  border-color: var(--blue-500);
  padding: 8px 18px;
  font-size: .85rem;
  box-shadow: 0 2px 8px rgba(37,99,235,.3);
}
.btn--primary-sm:hover { background: var(--blue-600); border-color: var(--blue-600); }

.btn--outline-sm {
  background: transparent;
  color: var(--neutral-700);
  border-color: var(--neutral-300);
  padding: 8px 18px;
  font-size: .85rem;
}
.btn--outline-sm:hover { border-color: var(--neutral-500); color: var(--neutral-900); }

.btn--ghost {
  background: rgba(255,255,255,.15);
  color: var(--white);
  border-color: rgba(255,255,255,.4);
  padding: 12px 24px;
  font-size: .95rem;
  backdrop-filter: blur(4px);
}
.btn--ghost:hover {
  background: rgba(255,255,255,.25);
  border-color: rgba(255,255,255,.7);
  transform: translateY(-1px);
}

.btn--white {
  background: var(--white);
  color: var(--blue-600);
  border-color: var(--white);
  padding: 14px 28px;
  font-size: 1rem;
  box-shadow: 0 4px 14px rgba(0,0,0,.15);
}
.btn--white:hover {
  background: var(--blue-50);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0,0,0,.2);
}

.btn--nav {
  background: var(--blue-500);
  color: var(--white);
  border-color: var(--blue-500);
  padding: 9px 20px;
  font-size: .88rem;
  box-shadow: 0 2px 10px rgba(37,99,235,.3);
}
.btn--nav:hover { background: var(--blue-600); border-color: var(--blue-600); }

.btn--lg { padding: 15px 30px; font-size: 1rem; }
.btn--xl { padding: 18px 40px; font-size: 1.1rem; border-radius: var(--radius-md); }

/* ===================================
   COOKIE BANNER
   =================================== */
.cookie-banner {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  width: calc(100% - 48px);
  max-width: 780px;
  background: var(--neutral-900);
  color: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  z-index: 9999;
  padding: 18px 24px;
  animation: slideUp .4s ease;
  display: none;
}
.cookie-banner.is-visible { display: block; }

@keyframes slideUp {
  from { opacity: 0; transform: translateX(-50%) translateY(20px); }
  to   { opacity: 1; transform: translateX(-50%) translateY(0); }
}

.cookie-banner__inner {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}
.cookie-banner__text {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  flex: 1;
  min-width: 240px;
}
.cookie-banner__text i { font-size: 1.3rem; color: var(--blue-300); margin-top: 2px; flex-shrink: 0; }
.cookie-banner__text p { font-size: .88rem; color: rgba(255,255,255,.85); line-height: 1.5; }
.cookie-banner__text a { color: var(--blue-300); text-decoration: underline; }
.cookie-banner__text a:hover { color: var(--white); }
.cookie-banner__actions { display: flex; gap: 10px; align-items: center; }

/* ===================================
   HEADER / NAVBAR
   =================================== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 16px 0;
  transition: background var(--transition), box-shadow var(--transition), padding var(--transition);
}
.header.scrolled {
  background: rgba(255,255,255,.96);
  backdrop-filter: blur(12px);
  box-shadow: 0 2px 20px rgba(0,0,0,.09);
  padding: 10px 0;
}
.header.scrolled .nav__logo { color: var(--blue-700); }
.header.scrolled .nav__link { color: var(--neutral-700); }
.header.scrolled .nav__link:hover { color: var(--blue-500); }
.header.scrolled .nav__burger span { background: var(--neutral-700); }

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.nav__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--white);
  transition: color var(--transition);
}
.nav__logo i { color: var(--blue-300); font-size: 1.3rem; }
.nav__logo-dot { color: var(--blue-300); }

.nav__menu {
  display: flex;
  align-items: center;
  gap: 6px;
}
.nav__link {
  color: rgba(255,255,255,.9);
  font-weight: 500;
  font-size: .9rem;
  padding: 6px 12px;
  border-radius: 6px;
  transition: all var(--transition);
}
.nav__link:hover { color: var(--white); background: rgba(255,255,255,.12); }

.nav__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}
.nav__burger span {
  width: 26px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all var(--transition);
  display: block;
}

/* ===================================
   HERO
   =================================== */
.hero {
  min-height: 100vh;
  background: linear-gradient(135deg, var(--blue-900) 0%, var(--blue-700) 50%, #1e5fa6 100%);
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -20%;
  right: -15%;
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(59,130,246,.2) 0%, transparent 70%);
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: 20%;
  left: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(13,148,136,.15) 0%, transparent 70%);
  pointer-events: none;
}

.hero__bg-overlay {
  position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.hero__content {
  position: relative;
  z-index: 2;
  padding: 160px 24px 120px;
  max-width: 780px;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.2);
  color: rgba(255,255,255,.9);
  padding: 6px 16px;
  border-radius: 50px;
  font-size: .82rem;
  font-weight: 500;
  margin-bottom: 24px;
  backdrop-filter: blur(8px);
}
.hero__badge i { color: var(--blue-300); }

.hero__title {
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 20px;
}
.hero__title-accent {
  color: var(--blue-300);
  display: block;
  font-size: .88em;
  font-weight: 600;
}

.hero__sub {
  font-size: 1.1rem;
  color: rgba(255,255,255,.8);
  max-width: 600px;
  margin-bottom: 36px;
  line-height: 1.7;
}

.hero__actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.hero__trust {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
.hero__trust-item {
  display: flex;
  align-items: center;
  gap: 7px;
  color: rgba(255,255,255,.8);
  font-size: .88rem;
  font-weight: 500;
}
.hero__trust-item i { color: var(--green-400); font-size: .9rem; }

.hero__wave {
  position: absolute;
  bottom: -1px;
  left: 0;
  right: 0;
  line-height: 0;
}
.hero__wave svg { width: 100%; }

/* ===================================
   SECTIONS
   =================================== */
.section { padding: 90px 0; }
.section--light { background: var(--light-bg); }
.section--blue {
  background: linear-gradient(135deg, var(--blue-800) 0%, var(--blue-700) 100%);
  color: var(--white);
}

.section__header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 60px;
}
.section__header--white .section__title,
.section__header--white .section__sub { color: var(--white); }

.section__tag {
  display: inline-block;
  background: var(--blue-100);
  color: var(--blue-600);
  padding: 4px 14px;
  border-radius: 50px;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.section__tag--light {
  background: rgba(255,255,255,.15);
  color: rgba(255,255,255,.9);
}

.section__title {
  font-size: clamp(1.7rem, 3.5vw, 2.4rem);
  font-weight: 700;
  margin-bottom: 16px;
}
.section__sub {
  color: var(--neutral-500);
  font-size: 1rem;
  line-height: 1.7;
}

/* ===================================
   CARDS
   =================================== */
.cards-grid {
  display: grid;
  gap: 24px;
}
.cards-grid--3 { grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }
.cards-grid--4 { grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); }

.card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 30px;
  box-shadow: var(--shadow-md);
  transition: transform var(--transition), box-shadow var(--transition);
  border: 1px solid rgba(0,0,0,.05);
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }

.card--icon { text-align: center; }
.card--icon h3 { font-size: 1.1rem; margin: 16px 0 10px; }
.card--icon p { font-size: .9rem; color: var(--neutral-500); }

.card__icon {
  width: 64px;
  height: 64px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  margin: 0 auto;
}
.card__icon--blue { background: var(--blue-100); color: var(--blue-500); }
.card__icon--green { background: #dcfce7; color: var(--green-500); }
.card__icon--teal { background: #ccfbf1; color: var(--teal-500); }

.card--dark {
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.12);
  color: rgba(255,255,255,.9);
  text-align: center;
  padding: 30px 24px;
}
.card--dark:hover {
  background: rgba(255,255,255,.12);
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(0,0,0,.2);
}
.card--dark h4 { color: var(--white); font-size: 1rem; margin: 14px 0 8px; }
.card--dark p { font-size: .88rem; color: rgba(255,255,255,.7); line-height: 1.6; }

.card__icon-lg {
  font-size: 2rem;
  color: var(--blue-300);
  margin-bottom: 4px;
}

/* ===================================
   PARAMETER SECTION
   =================================== */
.param-category {
  margin-bottom: 64px;
}
.param-category:last-child { margin-bottom: 0; }

.param-category__header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 28px;
  padding-bottom: 16px;
  border-bottom: 2px solid var(--blue-100);
}
.param-category__header h3 {
  font-size: 1.4rem;
  color: var(--blue-800);
}

.param-category__icon {
  width: 48px;
  height: 48px;
  background: var(--blue-100);
  color: var(--blue-500);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}
.param-category__icon--green { background: #dcfce7; color: var(--green-500); }
.param-category__icon--teal { background: #ccfbf1; color: var(--teal-500); }

.param-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 16px;
}

.param-card {
  background: var(--white);
  border: 1px solid var(--neutral-300);
  border-radius: var(--radius-md);
  padding: 20px 22px;
  transition: all var(--transition);
  position: relative;
  overflow: visible; /* ← fixat från hidden */
}
.param-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 4px; height: 100%;
  background: var(--blue-500);
  border-radius: var(--radius-md) 0 0 var(--radius-md);
  opacity: 0;
  transition: opacity var(--transition);
}
.param-card:hover {
  border-color: var(--blue-300);
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}
.param-card:hover::before { opacity: 1; }

.param-card__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;
}
.param-card__name {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1rem;
  color: var(--blue-700);
}
.param-card__unit {
  background: var(--blue-50);
  color: var(--blue-600);
  padding: 2px 10px;
  border-radius: 50px;
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .04em;
  border: 1px solid var(--blue-100);
}
.param-card__desc {
  font-size: .875rem;
  color: var(--neutral-500);
  line-height: 1.65;
}

/* --- Gränsvärdes-badges --- */
.param-limits {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-top: 10px;
  padding-top: 10px;
  border-top: 1px solid #e8eef6;
}

.param-limit {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 0.78rem;
  line-height: 1.4;
}

.param-limit__badge {
  flex-shrink: 0;
  display: inline-block;
  padding: 2px 8px;
  border-radius: 20px;
  font-weight: 600;
  font-size: 0.70rem;
  letter-spacing: 0.02em;
  white-space: nowrap;
}

.param-limit__badge--warning {
  background-color: #fff4cc;
  color: #7a5700;
  border: 1px solid #f0cc55;
}

.param-limit__badge--danger {
  background-color: #ffe4e4;
  color: #8b1a1a;
  border: 1px solid #f5a0a0;
}

.param-limit__text {
  color: #556677;
  padding-top: 1px;
}

/* ===================================
   CTA CENTER
   =================================== */
.cta-center {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  margin-top: 48px;
}
.cta-center--top-margin { margin-top: 64px; }
.cta-center__label {
  font-size: .95rem;
  color: var(--neutral-500);
  text-align: center;
}
.cta-center__note {
  font-size: .82rem;
  color: var(--neutral-500);
  text-align: center;
}
.cta-center__note a { color: var(--blue-500); }

/* ===================================
   STEPS
   =================================== */
.steps {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
}
.step {
  flex: 1;
  min-width: 180px;
  max-width: 220px;
  text-align: center;
}
.step__number {
  width: 52px;
  height: 52px;
  background: var(--blue-500);
  color: var(--white);
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.3rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  box-shadow: 0 4px 14px rgba(37,99,235,.35);
}
.step h4 { font-size: .95rem; margin-bottom: 8px; color: var(--blue-800); }
.step p { font-size: .85rem; color: var(--neutral-500); line-height: 1.6; }
.step__arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue-300);
  font-size: 1.2rem;
  margin-top: 14px;
  flex-shrink: 0;
}

/* ===================================
   CTA BANNER
   =================================== */
.cta-banner {
  background: linear-gradient(135deg, var(--blue-500) 0%, var(--teal-500) 100%);
  padding: 70px 0;
}
.cta-banner__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}
.cta-banner__text h2 {
  font-size: clamp(1.4rem, 3vw, 2rem);
  color: var(--white);
  margin-bottom: 8px;
}
.cta-banner__text p {
  color: rgba(255,255,255,.85);
  font-size: .95rem;
}

/* ===================================
   FOOTER
   =================================== */
.footer {
  background: var(--blue-900);
  color: rgba(255,255,255,.75);
  padding: 70px 0 0;
}

.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px;
  margin-bottom: 56px;
}
.footer__brand .footer__logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--white);
  margin-bottom: 14px;
}
.footer__brand .footer__logo i { color: var(--blue-300); }
.footer__brand p { font-size: .875rem; line-height: 1.7; }

.footer__links h5 {
  color: var(--white);
  font-size: .9rem;
  margin-bottom: 16px;
}
.footer__links ul { display: flex; flex-direction: column; gap: 10px; }
.footer__links a {
  font-size: .875rem;
  color: rgba(255,255,255,.65);
  transition: color var(--transition);
}
.footer__links a:hover { color: var(--blue-300); }

.footer__partner h5 { color: var(--white); font-size: .9rem; margin-bottom: 16px; }
.footer__partner-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.15);
  padding: 10px 18px;
  border-radius: var(--radius-sm);
  color: var(--white);
  font-weight: 600;
  font-size: .9rem;
  margin-bottom: 14px;
  transition: all var(--transition);
}
.footer__partner-link i { color: var(--blue-300); }
.footer__partner-link:hover { background: rgba(255,255,255,.14); border-color: var(--blue-300); }
.footer__partner p { font-size: .83rem; color: rgba(255,255,255,.5); line-height: 1.6; }

.footer__bottom {
  border-top: 1px solid rgba(255,255,255,.1);
  padding: 24px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.footer__bottom p { font-size: .82rem; color: rgba(255,255,255,.45); }
.footer__bottom a { color: var(--blue-300); }
.footer__legal-links {
  display: flex;
  gap: 20px;
}
.footer__legal-links a {
  font-size: .82rem;
  color: rgba(255,255,255,.5);
  transition: color var(--transition);
}
.footer__legal-links a:hover { color: var(--blue-300); }

/* ===================================
   POLICY PAGES
   =================================== */
.policy-hero {
  background: linear-gradient(135deg, var(--blue-900) 0%, var(--blue-700) 100%);
  padding: 140px 0 80px;
  text-align: center;
}
.policy-hero h1 { color: var(--white); font-size: 2.2rem; margin-bottom: 12px; }
.policy-hero p { color: rgba(255,255,255,.75); font-size: 1rem; }

.policy-content {
  max-width: 760px;
  margin: 0 auto;
  padding: 70px 24px;
}
.policy-content h2 {
  font-size: 1.3rem;
  color: var(--blue-800);
  margin: 36px 0 12px;
  padding-bottom: 8px;
  border-bottom: 2px solid var(--blue-100);
}
.policy-content h2:first-child { margin-top: 0; }
.policy-content p { font-size: .93rem; color: var(--neutral-700); margin-bottom: 14px; line-height: 1.75; }
.policy-content ul { margin: 12px 0 16px 20px; }
.policy-content li { font-size: .93rem; color: var(--neutral-700); margin-bottom: 8px; line-height: 1.65; list-style: disc; }
.policy-content a { color: var(--blue-500); text-decoration: underline; }
.policy-content .last-updated {
  display: inline-block;
  background: var(--blue-50);
  color: var(--blue-600);
  padding: 4px 14px;
  border-radius: 50px;
  font-size: .8rem;
  font-weight: 600;
  margin-bottom: 28px;
}
.policy-content .back-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--blue-500);
  font-weight: 600;
  font-size: .9rem;
  margin-bottom: 36px;
  text-decoration: none;
  transition: gap var(--transition);
}
.policy-content .back-link:hover { gap: 12px; }
.policy-content .back-link i { font-size: .8rem; }

/* ===================================
   RESPONSIVE
   =================================== */
@media (max-width: 1024px) {
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .steps { gap: 8px; }
  .step { min-width: 150px; }
  .step__arrow { display: none; }
}

@media (max-width: 768px) {
  .nav__menu {
    position: fixed;
    top: 0; right: -100%;
    width: min(320px, 100vw);
    height: 100vh;
    background: var(--blue-900);
    flex-direction: column;
    justify-content: center;
    gap: 8px;
    padding: 40px 24px;
    transition: right .35s ease;
    z-index: 999;
    box-shadow: -10px 0 40px rgba(0,0,0,.3);
  }
  .nav__menu.is-open { right: 0; }
  .nav__link { color: rgba(255,255,255,.85); font-size: 1rem; padding: 10px 14px; display: block; width: 100%; }
  .nav__burger { display: flex; z-index: 1001; position: relative; }
  .nav__burger.is-active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .nav__burger.is-active span:nth-child(2) { opacity: 0; }
  .nav__burger.is-active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

  .hero__content { padding: 130px 24px 100px; }
  .hero__actions { flex-direction: column; align-items: flex-start; }
  .hero__trust { gap: 12px; }

  .section { padding: 60px 0; }
  .section__header { margin-bottom: 40px; }

  .param-grid { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr; gap: 32px; }
  .footer__bottom { flex-direction: column; align-items: flex-start; }

  .cta-banner__inner { flex-direction: column; align-items: flex-start; }

  .steps { flex-direction: column; align-items: center; }
  .step { max-width: 300px; }

  .cookie-banner { width: calc(100% - 32px); bottom: 16px; padding: 16px; }
  .cookie-banner__inner { flex-direction: column; gap: 14px; }
  .cookie-banner__text { align-items: flex-start; }
}

@media (max-width: 480px) {
  .hero__title { font-size: 2rem; }
  .cards-grid--3, .cards-grid--4 { grid-template-columns: 1fr; }
  .param-category__header { flex-direction: column; align-items: flex-start; gap: 10px; }
  .btn--xl { padding: 14px 28px; font-size: 1rem; }
}

/* Smooth scroll offset for fixed header */
section[id], div[id] { scroll-margin-top: 90px; }
