@font-face {
  font-family: 'Manrope';
  src: url('/assets/fonts/manrope-400.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Manrope';
  src: url('/assets/fonts/manrope-500.woff2') format('woff2');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Manrope';
  src: url('/assets/fonts/manrope-600.woff2') format('woff2');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Manrope';
  src: url('/assets/fonts/manrope-700.woff2') format('woff2');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

:root {
  color-scheme: dark;
  --bg: #07111d;
  --surface: #0e1b2a;
  --surface-alt: #15283b;
  --ink: #edf6ff;
  --muted: #a9bdd1;
  --line: #263c52;
  --header-bg: rgba(7, 17, 29, 0.94);
  --nav-color: #cfdeec;
  --nav-active-color: #f7fbff;
  --hero-text: #c3d2e1;
  --panel-bg: #0b2f4a;
  --panel-text: #f7fbff;
  --panel-muted: #d7e6f2;
  --input-bg: #0a1724;
  --button-secondary-bg: #112235;
  --button-secondary-text: #e8f4ff;
  --button-secondary-border: #38546d;
  --button-secondary-hover: #19314a;
  --footer-bg: #06101a;
  --footer-text: #d8e3ec;
  --plain-white: #ffffff;
  --badge-text: #91f0e7;
  --accent-hover: #22aa9d;
  --separator: #8ea0b3;
  --primary: #0b2f4a;
  --primary-2: #123f61;
  --accent: #24c2b3;
  --accent-soft: rgba(36, 194, 179, 0.14);
  --success: #2f7a52;
  --radius: 8px;
  --shadow: 0 18px 42px rgba(0, 0, 0, 0.28);
  --card-shadow: 0 10px 24px rgba(0, 0, 0, 0.18);
  --sticky-shadow: 0 14px 30px rgba(0, 0, 0, 0.32);
}

[data-bs-theme="light"] {
  color-scheme: light;
  --bg: #f6f8fb;
  --surface: #ffffff;
  --surface-alt: #eef4f8;
  --ink: #0c1d2e;
  --muted: #536476;
  --line: #d9e2eb;
  --header-bg: rgba(255, 255, 255, 0.96);
  --nav-color: #33475b;
  --nav-active-color: var(--primary);
  --hero-text: #415367;
  --panel-bg: var(--primary);
  --panel-text: #f7fbff;
  --panel-muted: #d7e6f2;
  --input-bg: #ffffff;
  --button-secondary-bg: #ffffff;
  --button-secondary-text: var(--primary);
  --button-secondary-border: var(--line);
  --button-secondary-hover: var(--surface-alt);
  --footer-bg: var(--primary);
  --footer-text: #d8e3ec;
  --plain-white: #ffffff;
  --badge-text: #0d6f66;
  --accent-hover: #0f7d72;
  --separator: #8ea0b3;
  --primary: #0b2f4a;
  --primary-2: #123f61;
  --accent: #148f82;
  --accent-soft: #e7f6f3;
  --shadow: 0 14px 34px rgba(11, 47, 74, 0.08);
  --card-shadow: 0 8px 22px rgba(11, 47, 74, 0.04);
  --sticky-shadow: 0 14px 30px rgba(11, 47, 74, 0.22);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: clip;
}

body {
  margin: 0;
  font-family: 'Manrope', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.62;
  overflow-x: clip;
}

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

a {
  color: inherit;
  text-decoration: none;
  overflow-wrap: anywhere;
}

p,
li {
  overflow-wrap: anywhere;
}

a:hover {
  color: var(--accent);
}

:focus-visible {
  outline: 3px solid rgba(20, 143, 130, 0.45);
  outline-offset: 3px;
}

.container {
  width: min(1160px, 92%);
  margin: 0 auto;
  padding-right: 0;
  padding-left: 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  background: var(--header-bg);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(8px);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.78rem 0;
}

.brand {
  display: inline-flex;
  align-items: center;
}

.brand img {
  height: 40px;
  width: auto;
}

.nav {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.25rem;
}

.nav a {
  color: var(--nav-color);
  border-radius: var(--radius);
  padding: 0.48rem 0.68rem;
  font-size: 0.91rem;
  font-weight: 700;
}

.nav a:hover,
.nav a.active {
  color: var(--nav-active-color);
  background: var(--surface-alt);
}

.menu-toggle {
  display: none;
  align-items: center;
  gap: 0.45rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  color: var(--nav-color);
  padding: 0.52rem 0.72rem;
  font-weight: 700;
}

.theme-toggle {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
  gap: 0.42rem;
  min-height: 38px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  color: var(--nav-color);
  padding: 0.42rem 0.62rem;
  font-size: 0.9rem;
  font-weight: 800;
}

.theme-toggle:hover {
  color: var(--accent);
  border-color: color-mix(in srgb, var(--accent) 55%, var(--line));
}

.theme-toggle .bi {
  font-size: 1rem;
  line-height: 1;
}

.menu-toggle-icon {
  display: inline-flex;
  flex-direction: column;
  gap: 0.22rem;
}

.menu-toggle-icon span {
  width: 1rem;
  height: 2px;
  background: currentColor;
  border-radius: 2px;
}

main {
  padding: 2rem 0 4rem;
}

.breadcrumbs {
  margin-bottom: 1rem;
  color: var(--muted);
  font-size: 0.92rem;
}

.breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.breadcrumbs li:not(:last-child)::after {
  content: '/';
  margin-left: 0.45rem;
  color: var(--separator);
}

.breadcrumbs a {
  text-decoration: underline;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(0, 0.82fr);
  gap: clamp(1.8rem, 5vw, 4rem);
  align-items: center;
  min-height: 500px;
  padding: clamp(2.6rem, 6vw, 5rem) 0;
}

.hero-panel {
  min-width: 0;
  background: var(--panel-bg);
  color: var(--panel-text);
  border-radius: var(--radius);
  padding: clamp(1.5rem, 3vw, 2.2rem);
  box-shadow: var(--shadow);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  color: var(--accent);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3,
h4 {
  letter-spacing: 0;
  line-height: 1.18;
  overflow-wrap: break-word;
  hyphens: auto;
}

h1 {
  max-width: 860px;
  margin: 0.75rem 0 1rem;
  font-size: clamp(2.1rem, 5vw, 4rem);
}

.hero p {
  max-width: 780px;
  margin: 0;
  color: var(--hero-text);
  font-size: clamp(1.04rem, 2vw, 1.2rem);
}

.hero-panel p {
  color: var(--panel-muted);
}

.hero-panel strong {
  color: var(--plain-white);
}

.section {
  padding: clamp(2.4rem, 5.6vw, 4.6rem) 0;
  border-top: 1px solid var(--line);
}

.section-header {
  display: grid;
  grid-template-columns: minmax(220px, 0.7fr) minmax(0, 1fr);
  gap: clamp(1.1rem, 3vw, 2rem);
  align-items: end;
  margin-bottom: 1.8rem;
}

.section h2 {
  margin: 0;
  font-size: clamp(1.5rem, 3vw, 2.45rem);
}

.section .intro,
.lead {
  margin: 0;
  color: var(--muted);
  font-size: 1.02rem;
}

.grid-2,
.grid-3,
.grid-4 {
  display: grid;
  gap: clamp(1rem, 2.2vw, 1.35rem);
}

.hero > *,
.section-header > *,
.grid-2 > *,
.grid-3 > *,
.grid-4 > *,
.service-columns > *,
.contact-grid > *,
.form-grid > * {
  min-width: 0;
}

.grid-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.grid-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.grid-4 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.card,
.price-card,
.service-block,
.form-card {
  min-width: 0;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(1.15rem, 2.2vw, 1.55rem);
  box-shadow: var(--card-shadow);
}

.card h3,
.price-card h3,
.service-block h2,
.form-card h2 {
  margin-top: 0;
  margin-bottom: 0.55rem;
  font-size: 1.12rem;
}

.card p,
.price-card p,
.service-block p,
.form-card p {
  color: var(--muted);
  overflow-wrap: anywhere;
}

.feature-list,
.check-list {
  margin: 0.9rem 0 0;
  padding: 0;
  list-style: none;
}

.feature-list li,
.check-list li {
  position: relative;
  margin: 0 0 0.48rem;
  padding-left: 1.35rem;
}

.feature-list li::before,
.check-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.68em;
  width: 0.46rem;
  height: 0.46rem;
  border-radius: 50%;
  background: var(--accent);
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.35rem;
}

.cta-note {
  margin-top: 0.75rem;
  color: var(--muted);
  font-size: 0.95rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  padding: 0.78rem 1.08rem;
  font-size: 0.95rem;
  font-weight: 800;
  line-height: 1.2;
  text-align: center;
  white-space: normal;
  overflow-wrap: anywhere;
  transition: background 180ms ease, border-color 180ms ease, color 180ms ease, transform 180ms ease;
}

.btn-primary {
  background: var(--accent);
  color: #04111b;
  border-color: var(--accent);
}

.btn-primary:hover {
  color: #04111b;
  background: var(--accent-hover);
  border-color: var(--accent-hover);
  transform: translateY(-1px);
}

.btn-secondary {
  background: var(--button-secondary-bg);
  color: var(--button-secondary-text);
  border-color: var(--button-secondary-border);
}

.btn-secondary:hover {
  background: var(--button-secondary-hover);
  color: var(--button-secondary-text);
  border-color: color-mix(in srgb, var(--accent) 42%, var(--button-secondary-border));
  transform: translateY(-1px);
}

.btn-dark {
  background: var(--primary);
  color: var(--plain-white);
}

.btn-dark:hover {
  color: var(--plain-white);
  background: var(--primary-2);
}

.stat-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem;
  margin-top: 1.2rem;
}

.stat {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius);
  padding: 0.9rem;
}

.stat strong {
  display: block;
  font-size: 1.35rem;
}

.process {
  display: grid;
  gap: 0.8rem;
  counter-reset: process;
}

.process-step {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 0.85rem;
  align-items: start;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1rem;
}

.process-step::before {
  counter-increment: process;
  content: counter(process);
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--accent-soft);
  color: var(--accent);
  font-weight: 800;
}

.process-step strong {
  display: block;
  margin-bottom: 0.15rem;
}

.price {
  display: block;
  margin: 0.7rem 0 0.8rem;
  color: var(--accent);
  font-size: 1.65rem;
  font-weight: 800;
}

.badge-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-top: 1rem;
}

.badge {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  background: var(--accent-soft);
  color: var(--badge-text);
  padding: 0.34rem 0.68rem;
  font-size: 0.84rem;
  font-weight: 800;
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(0.9rem, 2vw, 1.25rem);
  margin-top: 0;
  margin-bottom: clamp(2rem, 4vw, 3rem);
  padding: 0.85rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: var(--card-shadow);
}

.signal-card {
  min-width: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: var(--card-shadow);
}

.trust-item {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  min-width: 0;
  padding: 0.45rem;
}

.trust-item .bi,
.signal-card .bi,
.form-reassurance .bi,
.assurance-list .bi {
  color: var(--accent);
}

.trust-item strong,
.trust-item span span {
  display: block;
}

.trust-item strong {
  color: var(--ink);
  font-size: 0.92rem;
}

.trust-item span {
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.4;
}

.signal-card {
  padding: clamp(1.2rem, 2.2vw, 1.55rem);
}

.signal-card .bi {
  display: inline-flex;
  margin-bottom: 0.75rem;
  font-size: 1.35rem;
}

.signal-card h3 {
  margin: 0 0 0.45rem;
  font-size: 1.08rem;
}

.signal-card p {
  margin: 0;
  color: var(--muted);
}

.conversion-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: clamp(1rem, 3vw, 1.8rem);
  align-items: center;
  margin-top: clamp(1.1rem, 2.4vw, 1.5rem);
  padding: clamp(1.25rem, 2.8vw, 1.8rem);
  border: 1px solid color-mix(in srgb, var(--accent) 35%, var(--line));
  border-radius: var(--radius);
  background: var(--surface-alt);
}

.conversion-panel .btn {
  min-width: min(260px, 100%);
}

.conversion-panel h3 {
  margin: 0.35rem 0 0.45rem;
  font-size: clamp(1.18rem, 2vw, 1.55rem);
}

.conversion-panel p {
  margin: 0;
  color: var(--muted);
}

.assurance-list {
  display: grid;
  gap: 0.55rem;
  margin-top: 1rem;
}

.assurance-list span {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--panel-muted);
  font-weight: 700;
}

.label-note {
  color: var(--muted);
  font-weight: 600;
  font-size: 0.82rem;
}

.form-reassurance {
  display: flex;
  gap: 0.55rem;
  align-items: flex-start;
  margin-top: 1rem;
  padding: 0.75rem;
  color: var(--muted);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface-alt);
  font-size: 0.92rem;
}

.mini-steps {
  display: grid;
  gap: 0.75rem;
  margin: 0 0 1.25rem;
  padding: 0;
  list-style: none;
  counter-reset: mini-steps;
}

.mini-steps li {
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 0.65rem;
  align-items: start;
  color: var(--muted);
}

.mini-steps li::before {
  counter-increment: mini-steps;
  content: counter(mini-steps);
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--accent-soft);
  color: var(--accent);
  font-weight: 800;
}

.mini-steps strong,
.mini-steps span {
  display: block;
}

.mini-steps strong {
  color: var(--ink);
}

.reveal-on-scroll {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 420ms ease, transform 420ms ease;
}

.reveal-on-scroll.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  .reveal-on-scroll {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

.service-block {
  margin-bottom: 1rem;
}

.service-block h2 {
  font-size: clamp(1.08rem, 1.6vw, 1.32rem);
}

.service-columns {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin: 1rem 0;
}

.service-columns h3 {
  margin: 0 0 0.25rem;
  font-size: 0.95rem;
}

.faq-item {
  min-width: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  padding: 1rem;
  margin: 0;
  box-shadow: var(--card-shadow);
}

.faq-list {
  display: grid;
  gap: 0.85rem;
}

.faq-item h2,
.faq-item h3 {
  margin: 0;
  font-size: clamp(1rem, 1.8vw, 1.18rem);
  line-height: 1.25;
}

.faq-item p {
  margin: 0.55rem 0 0;
  color: var(--muted);
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(300px, 0.72fr);
  gap: clamp(1.1rem, 3vw, 1.8rem);
  align-items: start;
}

.contact-grid .form-card,
.hero-panel,
.assurance-list,
.assurance-list span,
.mini-steps,
.mini-steps li,
.form-card p,
.form-card li {
  overflow-wrap: anywhere;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.field-full {
  grid-column: 1 / -1;
}

label {
  display: grid;
  gap: 0.32rem;
  color: var(--ink);
  font-weight: 700;
  font-size: 0.93rem;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--input-bg);
  color: var(--ink);
  padding: 0.78rem 0.85rem;
  font: inherit;
}

input:focus,
select:focus,
textarea:focus {
  border-color: color-mix(in srgb, var(--accent) 65%, var(--line));
  outline: 3px solid rgba(36, 194, 179, 0.18);
  outline-offset: 0;
}

::placeholder {
  color: color-mix(in srgb, var(--muted) 72%, transparent);
}

textarea {
  min-height: 170px;
  resize: vertical;
}

.checkbox {
  display: flex;
  align-items: flex-start;
  gap: 0.55rem;
  color: var(--muted);
  font-weight: 500;
}

.checkbox input {
  width: auto;
  margin-top: 0.32rem;
}

.hp-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.note {
  color: var(--muted);
  font-size: 0.92rem;
}

.table-wrap {
  overflow-x: auto;
}

table {
  width: 100%;
  border-collapse: collapse;
  background: var(--surface);
}

th,
td {
  border: 1px solid var(--line);
  padding: 0.78rem;
  text-align: left;
  vertical-align: top;
}

th {
  background: var(--surface-alt);
}

.site-footer {
  padding: 1.4rem 0 1.9rem;
  color: var(--footer-text);
  background: var(--footer-bg);
}

.footer-grid {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.9rem;
  font-size: 0.91rem;
}

.site-footer a {
  color: var(--plain-white);
  text-decoration: underline;
}

.mobile-sticky {
  display: none;
}

.cookie-consent {
  position: fixed;
  right: clamp(0.75rem, 3vw, 1.5rem);
  bottom: clamp(0.75rem, 3vw, 1.5rem);
  z-index: 80;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 1rem;
  width: min(760px, calc(100vw - 1.5rem));
  padding: clamp(1rem, 2vw, 1.25rem);
  color: var(--ink);
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.cookie-consent h2 {
  margin: 0 0 0.35rem;
  font-size: 1.08rem;
}

.cookie-consent p {
  margin: 0;
  color: var(--muted);
  font-size: 0.94rem;
}

.cookie-consent__details {
  display: none;
  margin: 0.8rem 0;
  padding: 0.75rem;
  color: var(--muted);
  background: var(--surface-alt);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  font-size: 0.9rem;
}

.cookie-consent__details.is-open {
  display: grid;
  gap: 0.25rem;
}

.cookie-consent__details strong {
  color: var(--ink);
}

.cookie-consent__links {
  margin-top: 0.65rem;
}

.cookie-consent__links a {
  color: var(--accent);
  text-decoration: underline;
}

.cookie-consent__actions {
  display: grid;
  gap: 0.5rem;
  min-width: 210px;
  align-content: center;
}

.cookie-settings-button {
  position: fixed;
  left: 0.8rem;
  bottom: 0.8rem;
  z-index: 39;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  color: var(--muted);
  padding: 0.5rem 0.7rem;
  font: inherit;
  font-size: 0.82rem;
  font-weight: 700;
  box-shadow: var(--card-shadow);
}

.cookie-settings-button:hover {
  color: var(--accent);
}

body.menu-open {
  overflow: auto;
}

@media (max-width: 1020px) {
  .hero,
  .section-header,
  .contact-grid,
  .conversion-panel {
    grid-template-columns: 1fr;
  }

  .service-columns {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .grid-3,
  .trust-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero {
    min-height: auto;
    padding-bottom: 2.4rem;
  }
}

@media (max-width: 760px) {
  main {
    padding-top: 1.2rem;
  }

  .menu-toggle {
    display: inline-flex;
    order: 2;
  }

  .nav-wrap {
    flex-wrap: wrap;
    gap: 0.55rem;
  }

  .brand {
    order: 1;
  }

  .theme-toggle {
    order: 3;
    margin-left: auto;
  }

  .nav {
    order: 4;
    display: none;
    position: fixed;
    top: 70px;
    right: 1rem;
    left: 1rem;
    z-index: 60;
    width: auto;
    max-height: calc(100vh - 90px);
    overflow-y: auto;
    flex-direction: column;
    align-items: stretch;
    gap: 0.2rem;
    padding: 0.45rem;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--surface);
    box-shadow: var(--shadow);
  }

  .site-header.nav-open .nav {
    display: flex;
  }

  .nav a {
    padding: 0.64rem 0.7rem;
  }

  .grid-2,
  .grid-3,
  .grid-4,
  .trust-strip,
  .service-columns,
  .form-grid,
  .stat-grid {
    grid-template-columns: 1fr;
  }

  .conversion-panel {
    grid-template-columns: 1fr;
  }

  .hero {
    padding: 1.8rem 0 2rem;
  }

  .hero.container {
    width: 100vw;
    max-width: 100vw;
    padding-right: 1rem;
    padding-left: 1rem;
  }

  .hero > *,
  .hero h1,
  .hero p,
  .hero .cta-row,
  .hero .badge-row,
  .hero-panel {
    width: 100%;
    max-width: min(calc(100vw - 2rem), 22.5rem);
  }

  .faq-list.container,
  .contact-grid.container {
    width: 100%;
    max-width: min(calc(100vw - 2rem), 22.5rem);
    margin-right: 0;
    margin-left: 0;
    padding-right: 1rem;
    padding-left: 1rem;
  }

  .service-block h2 {
    font-size: clamp(1.05rem, 4.6vw, 1.24rem);
  }

  .hero-panel,
  .card,
  .price-card,
  .service-block,
  .form-card {
    padding: 1.1rem;
  }

  .cta-row {
    flex-direction: column;
  }

  .btn {
    width: 100%;
  }

  h1 {
    max-width: 100%;
    font-size: clamp(1.9rem, 8.5vw, 2.25rem);
    line-height: 1.08;
  }

  .hero p {
    font-size: 1rem;
  }

  .trust-strip {
    margin-bottom: 1.5rem;
  }

  .trust-item,
  .signal-card,
  .conversion-panel {
    padding: 1rem;
  }

  .cookie-consent {
    left: 0.75rem;
    right: 0.75rem;
    bottom: 0.75rem;
    grid-template-columns: 1fr;
    width: auto;
    max-height: min(560px, calc(100vh - 1.5rem));
    padding: 0.9rem;
    overflow: auto;
  }

  .cookie-consent h2 {
    font-size: 1rem;
  }

  .cookie-consent p,
  .cookie-consent__details {
    font-size: 0.86rem;
  }

  .cookie-consent__actions {
    min-width: 0;
  }

  .cookie-settings-button {
    bottom: 4.5rem;
    max-width: calc(100vw - 7rem);
  }

  .mobile-sticky {
    position: fixed;
    right: 0.8rem;
    bottom: 0.8rem;
    z-index: 40;
    display: inline-flex;
    width: auto;
    box-shadow: var(--sticky-shadow);
  }
}

@media (max-width: 520px) {
  body,
  main,
  .site-header,
  .site-footer {
    max-width: 100vw;
    overflow-x: clip;
  }

  .container {
    width: 100%;
    max-width: 100vw;
    padding-right: 1rem;
    padding-left: 1rem;
  }

  .hero.container,
  .trust-strip.container {
    width: 100vw;
    margin-right: 0;
    margin-left: 0;
  }

  .brand img {
    height: 36px;
  }

  .theme-toggle span {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
    white-space: nowrap;
  }

  h1 {
    font-size: clamp(1.85rem, 8.2vw, 2.15rem);
    overflow-wrap: anywhere;
  }

  .hero p,
  .cta-note,
  .badge,
  .hero-panel,
  .cookie-consent {
    overflow-wrap: anywhere;
  }

  .section {
    padding: 1.7rem 0;
  }
}
