/* ============================================================
   register-epr.com – Redesign v3 · March 2026
   Design system: Certify EPR Landing Pages
   Applies to: register-epr.com, epr-obligation.eu, epr-anmeldung.de
   ============================================================ */

/* ── Design Tokens ── */
:root {
  /* Typography */
  --font-body: "Lato", system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
  --font-head: "Lato", system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;

  /* Font sizes – harmonized scale */
  --text-xs: 0.75rem;    /* 12px */
  --text-sm: 0.8125rem;  /* 13px */
  --text-base: 1rem;     /* 16px */
  --text-lg: 1.125rem;   /* 18px */
  --text-xl: 1.25rem;    /* 20px */

  /* Colors */
  --white: #ffffff;
  --gray-50: #f7f8fa;
  --gray-100: #f0f2f5;
  --gray-200: #e7eaee;
  --gray-300: #d1d5db;
  --gray-500: #5d6670;
  --gray-800: #2d3239;
  --gray-900: #101214;

  --accent: #DB20C0;
  --accent-hover: #c01aab;
  --accent-light: rgba(219, 32, 192, 0.08);
  --accent-2: #0f172a;

  --green: #3ecf8e;
  --blue: #4ea8de;
  --yellow: #f6c90e;
  --red: #c0392b;
  --warning-bg: #fef3cd;
  --warning-border: #f0d060;

  /* Surfaces */
  --bg-white: var(--white);
  --bg-gray: var(--gray-50);
  --fg: var(--gray-900);
  --muted: var(--gray-500);
  --border: var(--gray-200);
  --soft: var(--gray-100);

  /* Layout */
  --max: 1060px;
  --pad: 24px;
  --section-py: 64px;
  --section-py-sm: 48px;

  /* Shapes */
  --radius: 16px;
  --radius-sm: 10px;
  --radius-xs: 6px;
  --radius-pill: 999px;
  --shadow-sm: 0 1px 3px rgba(16,18,20,0.06);
  --shadow: 0 4px 24px rgba(16,18,20,0.07);
  --shadow-lg: 0 12px 40px rgba(16,18,20,0.10);

  /* Transitions */
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
  --duration: 0.2s;
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: var(--text-base);
  line-height: 1.65;
  color: var(--fg);
  background: var(--bg-white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  max-width: 100vw;
}

a { color: inherit; text-decoration: none; }
a:hover { text-decoration: underline; }
img { max-width: 100%; height: auto; display: block; }

/* ── Accessibility ── */
.skip {
  position: absolute;
  left: -9999px;
  top: 10px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 10px 14px;
  z-index: 999;
  font-size: var(--text-sm);
}
.skip:focus { left: 12px; }

/* ── Layout ── */
.wrap {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--pad);
}

/* ── Typography ── */
h1, h2, h3, h4 {
  font-family: var(--font-head);
  line-height: 1.2;
  margin: 0 0 16px;
  color: var(--fg);
  letter-spacing: -0.01em;
}
h1 {
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 900;
}
h2 {
  font-size: clamp(1.375rem, 3vw, 1.875rem);
  font-weight: 800;
}
h3 {
  font-size: var(--text-lg);
  font-weight: 700;
  margin-bottom: 8px;
}
h4 {
  font-size: var(--text-base);
  font-weight: 700;
  margin-bottom: 6px;
}

p { margin: 0 0 16px; }
p:last-child { margin-bottom: 0; }

.eyebrow {
  margin: 0 0 10px;
  color: var(--accent);
  font-size: var(--text-sm);
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.lead {
  font-size: var(--text-base);
  color: var(--fg);
  max-width: 68ch;
  margin: 0 0 24px;
  line-height: 1.7;
}
.muted { color: var(--muted); }
.small { font-size: var(--text-sm); }

.list {
  margin: 0;
  padding-left: 20px;
}
.list li {
  margin: 8px 0;
  line-height: 1.55;
}

/* ── Honeypot ── */
.hp {
  position: absolute !important;
  left: -9999px !important;
  opacity: 0 !important;
  height: 0 !important;
  width: 0 !important;
}

/* ══════════════════════════════════════════
   URGENCY BAR
   ══════════════════════════════════════════ */
.urgency-bar {
  background: var(--accent);
  color: var(--white);
  text-align: center;
  padding: 10px 20px;
  font-size: var(--text-sm);
  font-weight: 600;
  letter-spacing: 0.01em;
  line-height: 1.4;
}
.urgency-bar a {
  color: var(--white);
  text-decoration: underline;
  font-weight: 700;
}
.urgency-bar a:hover { opacity: 0.85; }

/* ══════════════════════════════════════════
   HEADER
   ══════════════════════════════════════════ */
.header {
  position: sticky;
  top: 0;
  background: rgba(255,255,255,0.94);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  z-index: 50;
}
.header__row {
  display: flex;
  gap: 16px;
  align-items: center;
  min-height: 64px;
  flex-wrap: nowrap;
  overflow: hidden;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}
.brand:hover { text-decoration: none; }
.brand__logo {
  width: 200px;
  height: 22px;
  object-fit: contain;
}
.brand__text {
  font-family: var(--font-head);
  font-size: var(--text-sm);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted);
}

.nav {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 20px;
}
.nav__link {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--muted);
  text-decoration: none;
  transition: color var(--duration) var(--ease);
}
.nav__link:hover { color: var(--fg); text-decoration: none; }

.navtoggle {
  display: none;
  margin-left: auto;
  border: 1px solid var(--border);
  background: var(--white);
  border-radius: var(--radius-pill);
  padding: 8px 16px;
  font-weight: 700;
  font-size: 0.875rem;
  cursor: pointer;
  transition: background var(--duration) var(--ease);
}
.navtoggle:hover { background: var(--soft); }

.mobile {
  display: none;
  gap: 8px;
  padding: 12px var(--pad) 16px;
}
.mobile a {
  padding: 12px 14px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.875rem;
  text-align: center;
  transition: background var(--duration) var(--ease);
}
.mobile a:hover { background: var(--soft); text-decoration: none; }
.mobile:not([hidden]) { display: grid; }

/* ══════════════════════════════════════════
   HERO
   ══════════════════════════════════════════ */
.hero {
  padding: 56px 0 40px;
  background-color: transparent;
  background-image: url("../assets/img/hero.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border-bottom: 1px solid var(--border);
}
.hero__ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 8px;
}

/* Hero consultation card */
.hero-card {
  display: inline-block;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: 0 8px 32px rgba(16, 18, 20, 0.14);
  padding: 24px 28px;
  margin-top: 28px;
  max-width: 420px;
}
.hero-card h3 {
  font-size: var(--text-base);
  margin-bottom: 8px;
}
.hero-card p {
  color: var(--muted);
  font-size: 0.9375rem;
  margin-bottom: 16px;
  line-height: 1.55;
}
.hero-card__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
}
.hero-card__link {
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--muted);
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

/* Category pills (centered below hero) */
.cat-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  padding: 28px var(--pad) 8px;
}
.cat-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255, 255, 255, 0.92);
  border: 2px solid var(--border);
  border-radius: var(--radius-pill);
  padding: 10px 20px;
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--fg);
  text-decoration: none;
  transition: border-color var(--duration) var(--ease), box-shadow var(--duration) var(--ease);
  box-shadow: var(--shadow-sm);
}
.cat-pill:hover {
  box-shadow: var(--shadow);
  text-decoration: none;
}
.cat-pill--weee { border-color: var(--green); color: #2a9d6a; }
.cat-pill--weee:hover { border-color: #2a9d6a; }
.cat-pill--pack { border-color: var(--blue); color: #3a8bbe; }
.cat-pill--pack:hover { border-color: #3a8bbe; }
.cat-pill--batt { border-color: var(--yellow); color: #c4a00a; }
.cat-pill--batt:hover { border-color: #c4a00a; }

/* ══════════════════════════════════════════
   TRUST BAR
   ══════════════════════════════════════════ */
.trust-bar {
  padding: 20px 0;
}
.trust-bar__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 10px 28px;
  font-size: var(--text-sm);
  font-weight: 700;
  color: var(--gray-500);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.trust-bar__item {
  display: flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
}
.trust-bar__item span {
  color: var(--accent);
  font-size: 1rem;
}

/* ══════════════════════════════════════════
   SECTIONS (alternating bands)
   ══════════════════════════════════════════ */
.section {
  padding: var(--section-py) 0;
}
.section--white { background: var(--bg-white); }
.section--gray { background: var(--bg-gray); }

/* ══════════════════════════════════════════
   TWO-COLUMN GRID
   ══════════════════════════════════════════ */
.grid-2col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}
.grid-2col--narrow-right {
  grid-template-columns: 1fr 420px;
}

/* ══════════════════════════════════════════
   ABOUT / WHO WE ARE SECTION
   ══════════════════════════════════════════ */
.about-card {
  padding: 32px;
  border-radius: var(--radius);
  background: var(--white);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  height: 100%;
}
.about-card h2 {
  font-size: clamp(1.125rem, 2.5vw, 1.375rem);
  color: var(--accent) !important;
}
.about-card p {
  color: var(--muted);
  line-height: 1.7;
}

/* ══════════════════════════════════════════
   FLAGS STRIP
   ══════════════════════════════════════════ */
.flags-strip {
  padding: 20px 0 8px;
}
.flags-strip__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px 18px;
  justify-content: center;
}
.flags-strip__label {
  font-size: var(--text-xs);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--muted);
  width: 100%;
  text-align: center;
  margin-bottom: 4px;
}
.mflag {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--gray-800);
}

/* ══════════════════════════════════════════
   CONTENT + FORM SIDEBAR LAYOUT
   ══════════════════════════════════════════ */
.content-form-layout {
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 48px;
  align-items: start;
}
.content-form-layout__sidebar {
  position: sticky;
  top: 84px;
}

/* ══════════════════════════════════════════
   STEPS (How it works – 3 steps)
   ══════════════════════════════════════════ */
.steps-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 20px;
}
.step-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}
.step-num {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--accent);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--text-xl);
  font-weight: 900;
  line-height: 1;
  box-shadow: 0 4px 12px rgba(219, 32, 192, 0.25);
}
.step-content h3 {
  margin-bottom: 4px;
}
.step-content p {
  color: var(--muted);
  margin: 0;
  line-height: 1.6;
}
.step-content .btn {
  margin-top: 12px;
}

/* ══════════════════════════════════════════
   BUTTONS
   ══════════════════════════════════════════ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  border-radius: var(--radius-pill);
  border: 1px solid var(--border);
  padding: 11px 22px;
  font-size: 0.9375rem;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
  transition: all var(--duration) var(--ease);
  line-height: 1.3;
  font-family: inherit;
}
.btn:hover { text-decoration: none; }

.btn--primary {
  background: var(--accent);
  color: var(--white);
  border-color: var(--accent);
  box-shadow: 0 2px 8px rgba(219, 32, 192, 0.20);
}
.btn--primary:hover {
  background: var(--accent-hover);
  border-color: var(--accent-hover);
  box-shadow: 0 4px 16px rgba(219, 32, 192, 0.30);
}
.btn--ghost {
  background: var(--white);
  color: var(--fg);
  border-color: var(--border);
}
.btn--ghost:hover {
  background: var(--soft);
  border-color: var(--gray-300);
}
.btn--sm {
  padding: 8px 16px;
  font-size: var(--text-sm);
}

/* ══════════════════════════════════════════
   ACCORDION
   ══════════════════════════════════════════ */
.accordion {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--white);
  overflow: hidden;
}
details {
  border-top: 1px solid var(--border);
  padding: 0;
}
details:first-child { border-top: none; }
summary {
  cursor: pointer;
  font-weight: 700;
  font-size: var(--text-base);
  list-style: none;
  padding: 16px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  transition: background var(--duration) var(--ease);
  user-select: none;
}
summary:hover { background: var(--gray-50); }
summary::-webkit-details-marker { display: none; }
summary::after {
  content: "+";
  font-size: 1.25rem;
  font-weight: 400;
  color: var(--muted);
  flex-shrink: 0;
  transition: transform var(--duration) var(--ease);
}
details[open] > summary::after {
  content: "−";
}
.acc__body {
  padding: 0 20px 18px;
  color: var(--fg);
  line-height: 1.7;
}
.acc__body p { margin: 0 0 12px; }
.acc__body ul { margin: 0 0 12px; padding-left: 20px; }
.acc__body li { margin: 6px 0; }

/* ══════════════════════════════════════════
   CALLOUT
   ══════════════════════════════════════════ */
.callout {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  margin-top: 20px;
}
.callout h3 { margin-bottom: 10px; }
.callout p { color: var(--muted); }

/* ══════════════════════════════════════════
   PILLARS (3 EPR categories)
   ══════════════════════════════════════════ */
.pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 28px;
}
.pillar {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 24px;
  background: var(--white);
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--duration) var(--ease), border-color var(--duration) var(--ease);
}
.pillar:hover {
  box-shadow: var(--shadow);
  border-color: var(--gray-300);
}
.pillar__icon {
  font-size: 2rem;
  margin-bottom: 12px;
}
.pillar__sub {
  font-size: var(--text-xs);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--muted);
  margin-bottom: 6px;
}
.pillar__title {
  font-size: var(--text-lg);
  font-weight: 800;
  margin: 0 0 10px;
}
.pillar__title--weee { color: var(--green); }
.pillar__title--pack { color: var(--blue); }
.pillar__title--batt { color: var(--yellow); }
.pillar p {
  font-size: 0.9375rem;
  color: var(--muted);
  line-height: 1.6;
  margin: 0 0 16px;
}
.pillar__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 18px;
}
.pillar__tag {
  font-size: var(--text-xs);
  font-weight: 700;
  padding: 3px 8px;
  border-radius: var(--radius-xs);
  background: var(--gray-100);
  color: var(--gray-800);
}

/* ══════════════════════════════════════════
   URGENCY CALLOUT (Amazon warning)
   ══════════════════════════════════════════ */
.urgency-callout {
  background: var(--warning-bg);
  border-top: 3px solid var(--warning-border);
  border-bottom: 3px solid var(--warning-border);
  padding: 40px 0;
}
.urgency-callout__inner {
  display: flex;
  align-items: center;
  gap: 40px;
}
.urgency-callout__text {
  flex: 1;
}
.urgency-callout__text h3 {
  font-size: var(--text-xl);
  margin-bottom: 12px;
}
.urgency-callout__text p {
  color: var(--gray-800);
  margin-bottom: 16px;
}
.urgency-callout__img {
  width: 180px;
  height: auto;
  flex-shrink: 0;
}

/* ══════════════════════════════════════════
   FORMS
   ══════════════════════════════════════════ */
.form {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
  padding: 28px;
}
.form--compact {
  padding: 24px;
}
.form--compact .form-grid {
  grid-template-columns: 1fr;
}
.form h3 {
  font-size: var(--text-lg);
  margin-bottom: 20px;
  color: var(--accent);
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-bottom: 14px;
}
.form-grid--full {
  grid-template-columns: 1fr;
}

label {
  display: grid;
  gap: 5px;
  font-weight: 600;
  font-size: 0.875rem;
  color: var(--gray-800);
}
input, select, textarea {
  font: inherit;
  font-size: 0.9375rem;
  padding: 10px 14px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  background: var(--white);
  color: var(--fg);
  transition: border-color var(--duration) var(--ease), box-shadow var(--duration) var(--ease);
}
input:focus, select:focus, textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-light);
}
textarea { resize: vertical; min-height: 80px; }

.check {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-weight: 500;
  font-size: var(--text-sm);
  margin: 14px 0 16px;
  line-height: 1.5;
  color: var(--muted);
}
.check input { margin-top: 3px; flex-shrink: 0; }

.form__actions {
  display: flex;
  gap: 12px;
  align-items: center;
  flex-wrap: wrap;
}

/* ══════════════════════════════════════════
   ADVANTAGES
   ══════════════════════════════════════════ */
.advantages-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 24px;
}
.advantage-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 16px 20px;
  border-radius: var(--radius-sm);
  background: var(--white);
  border: 1px solid var(--border);
}
.advantage-item__icon {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--accent-light);
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.875rem;
  font-weight: 700;
}
.advantage-item p {
  font-size: 0.9375rem;
  margin: 0;
  line-height: 1.5;
  color: var(--gray-800);
}

/* ══════════════════════════════════════════
   EU SERVICES (cards / badges)
   ══════════════════════════════════════════ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 28px;
}
.service-card {
  text-align: center;
  padding: 28px 20px;
  border-radius: var(--radius);
  background: var(--white);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--duration) var(--ease), transform var(--duration) var(--ease);
}
.service-card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-2px);
}
.service-card__icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--accent-light);
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin: 0 auto 14px;
}
.service-card h4 {
  font-size: 0.9375rem;
  margin-bottom: 6px;
}
.service-card p {
  font-size: var(--text-sm);
  color: var(--muted);
  margin: 0;
  line-height: 1.5;
}

/* ══════════════════════════════════════════
   COMPLIANCE STEPS (bottom numbered steps)
   ══════════════════════════════════════════ */
.compliance-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 36px;
  text-align: center;
}
.compliance-step {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.compliance-step__num {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), #e84ccf);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  font-weight: 900;
  margin-bottom: 18px;
  box-shadow: 0 6px 20px rgba(219, 32, 192, 0.25);
}
.compliance-step h3 {
  font-size: var(--text-base);
  margin-bottom: 8px;
}
.compliance-step p {
  font-size: 0.9375rem;
  color: var(--muted);
  margin: 0;
  line-height: 1.55;
  max-width: 28ch;
}

/* Connector lines between steps */
.compliance-steps--connected {
  position: relative;
}

/* ══════════════════════════════════════════
   STATS
   ══════════════════════════════════════════ */
.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin: 0;
}
.stat {
  text-align: center;
  padding: 20px 16px;
  background: var(--white);
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}
.stat__number {
  font-size: 1.75rem;
  font-weight: 900;
  line-height: 1;
  margin-bottom: 6px;
  color: var(--accent);
}
.stat__label {
  font-size: var(--text-xs);
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  line-height: 1.3;
}

/* ══════════════════════════════════════════
   FOOTER
   ══════════════════════════════════════════ */
.footer {
  border-top: 1px solid var(--border);
  padding: 20px 0;
  background: var(--bg-white);
}
.footer__row {
  display: flex;
  gap: 18px;
  align-items: center;
  flex-wrap: wrap;
  font-size: 0.875rem;
}
.footer__row a {
  color: var(--muted);
  text-decoration: none;
  font-weight: 600;
}
.footer__row a:hover {
  color: var(--fg);
  text-decoration: underline;
}

/* ══════════════════════════════════════════
   CONSENT BANNER
   ══════════════════════════════════════════ */
.consent {
  position: fixed;
  left: 12px;
  right: 12px;
  bottom: 12px;
  z-index: 1000;
}
.consent__inner {
  max-width: var(--max);
  margin: 0 auto;
  border: 1px solid var(--border);
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  padding: 16px 20px;
  display: flex;
  gap: 16px;
  align-items: center;
  justify-content: space-between;
}
.consent__text {
  margin: 0;
  color: var(--muted);
  font-size: var(--text-sm);
  max-width: 72ch;
  line-height: 1.5;
}
.consent__actions {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  flex-shrink: 0;
}

/* ══════════════════════════════════════════
   RESPONSIVE
   ══════════════════════════════════════════ */

/* Large tablets */
@media (max-width: 960px) {
  .content-form-layout {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .content-form-layout__sidebar {
    position: static;
  }
  .pillars {
    grid-template-columns: 1fr;
  }
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .compliance-steps {
    grid-template-columns: 1fr;
    gap: 24px;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
  }
  .stats {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Tablet / small */
@media (max-width: 880px) {
  :root {
    --section-py: 48px;
    --pad: 20px;
  }
  .nav { display: none; }
  .navtoggle { display: inline-flex; }

  .grid-2col,
  .grid-2col--narrow-right {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .form-grid {
    grid-template-columns: 1fr;
  }
  .advantages-grid {
    grid-template-columns: 1fr;
  }
  .urgency-callout__inner {
    flex-direction: column;
    text-align: center;
  }
  .urgency-callout__img {
    width: 140px;
    order: -1;
  }
  .brand__text {
    font-size: 0.6875rem;
    letter-spacing: 0.05em;
    max-width: 120px;
    line-height: 1.25;
  }
  .brand__logo { width: 160px; }
  .navtoggle {
    font-size: var(--text-sm);
    padding: 8px 14px;
    white-space: nowrap;
  }
}

/* Mobile */
@media (max-width: 600px) {
  :root {
    --section-py: 40px;
    --pad: 16px;
  }
  .hero { padding: 36px 0 28px; }
  .hero__ctas { flex-direction: column; }
  .hero__ctas .btn { width: 100%; text-align: center; }
  .hero-card { max-width: 100%; padding: 20px; }
  .cat-pills { gap: 8px; }
  .cat-pill { padding: 8px 14px; font-size: var(--text-sm); }

  .trust-bar__inner {
    gap: 6px 16px;
    font-size: var(--text-xs);
  }
  .flags-strip__inner {
    gap: 6px 12px;
  }
  .services-grid {
    grid-template-columns: 1fr;
  }
  .stats {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }
  .stat { padding: 16px 12px; }
  .stat__number { font-size: 1.5rem; }

  .form { padding: 20px 16px; }
  .consent__inner {
    flex-direction: column;
    align-items: flex-start;
  }
  .consent__actions {
    width: 100%;
  }
  .consent__actions .btn { flex: 1 1 auto; }
}

/* Desktop: force nav visible, mobile menu hidden */
@media (min-width: 881px) {
  .mobile { display: none !important; }
  .nav { display: flex !important; }
}
