:root {
  --navy: #0a294f;
  --navy-light: #123b69;
  --red: #c93618;
  --red-dark: #a92812;
  --orange: #ff6b16;
  --cream: #fbf7f2;
  --soft: #f2f5f7;
  --ink: #132638;
  --muted: #596b78;
  --line: #dfe5e9;
  --white: #fff;
  --radius: 12px;
  --shadow: 0 14px 36px rgba(16, 38, 61, 0.11);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 110px;
  overflow-x: clip;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  overflow-x: clip;
}

body.menu-open {
  overflow: hidden;
}

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

a {
  color: inherit;
}

h1,
h2,
h3 {
  margin: 0 0 18px;
  color: var(--navy);
  font-family: Georgia, "Times New Roman", serif;
  line-height: 1.12;
}

h1 {
  max-width: 760px;
  font-size: clamp(2.6rem, 5.5vw, 5.15rem);
  letter-spacing: -0.055em;
}

h2 {
  font-size: clamp(2rem, 3.5vw, 3.25rem);
  letter-spacing: -0.035em;
}

h3 {
  font-size: 1.35rem;
}

p {
  margin: 0 0 18px;
}

.shell {
  width: min(1180px, calc(100% - 40px));
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  z-index: 200;
  top: 10px;
  left: 10px;
  padding: 10px 14px;
  color: var(--white);
  background: var(--navy);
  transform: translateY(-150%);
}

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

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.topbar {
  color: var(--white);
  background: var(--navy);
  font-size: 0.82rem;
  font-weight: 700;
}

.topbar__inner {
  min-height: 36px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.topbar a {
  color: #ffb49f;
  text-decoration: none;
}

.topbar p {
  margin: 0;
}

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  background: rgba(255, 255, 255, 0.98);
  border-bottom: 1px solid var(--line);
}

.site-header.is-scrolled {
  box-shadow: 0 8px 24px rgba(16, 38, 61, 0.08);
}

.header__inner {
  min-height: 104px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.brand-logo {
  min-width: 280px;
  display: flex;
  align-items: center;
  color: var(--muted);
  text-decoration: none;
}

.brand-logo img {
  width: 310px;
  height: auto;
  object-fit: contain;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 26px;
}

.desktop-nav a {
  color: var(--navy);
  text-decoration: none;
  font-size: 0.89rem;
  font-weight: 700;
}

.desktop-nav a:hover {
  color: var(--red);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.button {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 13px 22px;
  color: var(--white);
  background: var(--red);
  border: 2px solid var(--red);
  border-radius: 7px;
  box-shadow: none;
  cursor: pointer;
  text-decoration: none;
  font: inherit;
  font-size: 0.92rem;
  font-weight: 800;
  transition: background 160ms ease, border-color 160ms ease;
}

.button:hover {
  background: var(--red-dark);
  border-color: var(--red-dark);
}

.button--small {
  min-height: 43px;
  padding: 9px 17px;
}

.button--outline {
  color: var(--navy);
  background: transparent;
  border-color: #b8c4cc;
}

.button--outline:hover {
  color: var(--white);
  background: var(--navy);
  border-color: var(--navy);
}

.button--light {
  color: var(--navy);
  background: var(--white);
  border-color: var(--white);
}

.button--light:hover {
  color: var(--white);
  background: var(--navy);
  border-color: var(--navy);
}

.button--full {
  width: 100%;
}

.menu-toggle {
  width: 46px;
  height: 46px;
  display: none;
  padding: 11px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 7px;
}

.menu-toggle span:not(.sr-only) {
  width: 100%;
  height: 2px;
  display: block;
  margin: 4px 0;
  background: var(--navy);
}

.mobile-menu {
  border-top: 1px solid var(--line);
  background: var(--white);
}

.mobile-menu .shell {
  display: grid;
  padding-block: 12px 18px;
}

.mobile-menu a {
  padding: 13px 0;
  color: var(--navy);
  border-bottom: 1px solid var(--line);
  text-decoration: none;
  font-weight: 700;
}

.hero {
  padding: 72px 0;
  background: var(--cream);
  border-bottom: 1px solid #eee5db;
}

.hero__grid {
  display: grid;
  grid-template-columns: 1.04fr 0.96fr;
  align-items: center;
  gap: 68px;
}

.kicker {
  margin-bottom: 14px;
  color: var(--red);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.kicker--light {
  color: #ffb49f;
}

.hero h2 {
  max-width: 690px;
  margin-top: 16px;
  color: var(--red);
  font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  font-size: clamp(1.18rem, 2.1vw, 1.65rem);
  letter-spacing: -0.025em;
  line-height: 1.28;
}

.hero__lead {
  max-width: 720px;
  color: #455d6c;
  font-size: 1.03rem;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 30px 0;
}

.hero__facts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid #d9d4cc;
}

.hero__facts div {
  padding: 18px 16px 0 0;
}

.hero__facts strong,
.hero__facts span {
  display: block;
}

.hero__facts strong {
  color: var(--navy);
  font-size: 0.94rem;
}

.hero__facts span {
  color: var(--muted);
  font-size: 0.75rem;
}

.hero__media {
  background: var(--white);
  border: 1px solid #e6ddd3;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.hero__media > img {
  width: 100%;
  height: auto;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  object-position: center;
}

.hero__caption {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 17px 20px;
}

.hero__caption strong,
.hero__caption span {
  display: block;
}

.hero__caption strong {
  color: var(--navy);
}

.hero__caption span {
  color: var(--muted);
  font-size: 0.78rem;
}

.allianz-band {
  padding: 54px 0;
  background: #f3f7fb;
  border-top: 1px solid #d9e3ec;
  border-bottom: 1px solid #d9e3ec;
}

.allianz-band__grid {
  display: grid;
  grid-template-columns: 220px minmax(0, 1fr) 270px;
  align-items: center;
  gap: 44px;
}

.allianz-band__brand {
  min-height: 132px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 16px;
  padding-right: 36px;
  border-right: 1px solid #cbd9e5;
}

.allianz-band__brand img {
  width: 175px;
  height: auto;
}

.allianz-band__brand span {
  color: #003781;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-align: center;
  text-transform: uppercase;
}

.allianz-band__content .kicker {
  color: #003781;
}

.allianz-band__content h2 {
  margin-bottom: 12px;
  font-size: clamp(1.75rem, 2.5vw, 2.35rem);
}

.allianz-band__content p:last-child {
  margin: 0;
  color: #486170;
  font-size: 0.92rem;
}

.allianz-band__facts {
  padding: 0;
  margin: 0;
  list-style: none;
}

.allianz-band__facts li {
  padding: 12px 0;
  border-bottom: 1px solid #cbd9e5;
}

.allianz-band__facts li:last-child {
  border-bottom: 0;
}

.allianz-band__facts strong,
.allianz-band__facts span {
  display: block;
}

.allianz-band__facts strong {
  color: #003781;
  font-size: 0.9rem;
}

.allianz-band__facts span {
  color: var(--muted);
  font-size: 0.75rem;
}

.manufacturers {
  padding: 78px 0 72px;
  background: var(--white);
}

.section-heading {
  max-width: 880px;
  margin-bottom: 42px;
}

.section-heading--center {
  margin-inline: auto;
  text-align: center;
}

.section-heading p:not(.kicker) {
  color: var(--muted);
  font-size: 1.02rem;
}

.logo-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 14px;
}

.logo-grid div {
  min-width: 0;
  height: 112px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 15px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.logo-grid div > a {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 5px;
  transition: transform 180ms ease;
}

.logo-grid div:has(> a):hover {
  border-color: rgba(238, 76, 36, 0.45);
  box-shadow: 0 12px 28px rgba(10, 41, 79, 0.1);
}

.logo-grid div > a:hover {
  transform: translateY(-2px);
}

.logo-grid div > a:focus-visible {
  outline: 3px solid rgba(238, 76, 36, 0.35);
  outline-offset: 3px;
}

.logo-grid img {
  width: 100%;
  height: 72px;
  object-fit: contain;
}

.brand-disclaimer {
  max-width: 860px;
  margin: 24px auto 0;
  color: var(--muted);
  font-size: 0.72rem;
  text-align: center;
}

.action-section {
  padding: 86px 0;
  color: var(--white);
  background: var(--navy);
}

.action__grid {
  display: grid;
  grid-template-columns: 330px 1fr;
  align-items: start;
  gap: 72px;
}

.action__price {
  padding: 34px;
  background: var(--red);
  border-radius: var(--radius);
}

.action__price .kicker {
  color: var(--white);
}

.action__price h2 {
  color: var(--white);
  font-size: 2.25rem;
}

.action__price h2 small {
  display: block;
  margin-top: 8px;
  font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  font-size: 0.92rem;
  font-weight: 800;
  letter-spacing: 0;
}

.price-number {
  margin: 12px 0 0;
  color: var(--white);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 6.5rem;
  font-weight: 800;
  letter-spacing: -0.08em;
  line-height: 1;
}

.price-number span {
  margin-left: 4px;
  font-size: 2.4rem;
}

.action__price .price-net-note {
  margin-bottom: 10px;
}

.action__price .price-gross-note {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin: 0 0 25px;
  padding: 11px 13px;
  color: var(--navy);
  background: var(--white);
  border-radius: 10px;
  line-height: 1.2;
}

.action__price .price-gross-note strong {
  font-size: 1.08rem;
}

.action__price .price-gross-note span {
  font-size: 0.78rem;
  font-weight: 800;
}

.action__copy h2 {
  color: var(--white);
  font-size: clamp(2rem, 3.5vw, 3.2rem);
}

.action__lead {
  color: #d7e0e7;
  font-size: 1.08rem;
}

.action__copy .price-gross-inline--light {
  color: var(--white);
  font-size: 0.95rem;
  letter-spacing: 0;
}

.price-gross-text {
  color: var(--white);
}

.company-clarification {
  margin-top: 26px;
  padding: 17px 19px;
  color: #dbe4ea;
  background: var(--navy-light);
  border-left: 4px solid #ff9c7d;
  font-size: 0.82rem;
}

.section {
  padding: 90px 0;
}

.section--soft {
  background: var(--soft);
}

.text-columns {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 70px;
}

.text-columns article {
  min-width: 0;
}

.text-columns ul {
  padding: 0;
  margin: 0;
  list-style: none;
}

.text-columns li {
  position: relative;
  padding: 14px 0 14px 27px;
  color: #405665;
  border-bottom: 1px solid var(--line);
}

.text-columns li::before {
  position: absolute;
  top: 14px;
  left: 0;
  color: var(--red);
  content: "✓";
  font-weight: 800;
}

.text-link {
  display: inline-block;
  margin-top: 22px;
  color: var(--red-dark);
  font-weight: 800;
}

.service-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 0;
  margin: -15px 0 40px;
  list-style: none;
}

.service-tags + .button {
  margin: -18px 0 40px;
}

.service-tags li {
  padding: 9px 14px;
  color: var(--navy);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 700;
}

.audience-grid,
.benefit-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.audience-grid article,
.benefit-grid article {
  min-width: 0;
  padding: 30px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.audience-grid a {
  color: var(--red);
  font-weight: 800;
}

.service-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0 60px;
  border-top: 1px solid var(--line);
}

.service-list article {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 16px;
  padding: 28px 0;
  border-bottom: 1px solid var(--line);
}

.service-list article > span {
  color: var(--red);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.1rem;
  font-weight: 800;
}

.service-list h3 {
  margin-bottom: 8px;
}

.service-list p {
  margin: 0;
  color: var(--muted);
}

.company-section {
  padding: 90px 0;
  color: var(--white);
  background: var(--navy);
}

.company__grid {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  align-items: center;
  gap: 76px;
}

.company__image img {
  width: 100%;
  max-height: 640px;
  object-fit: cover;
  object-position: center top;
  border-radius: var(--radius);
}

.company__content h2 {
  color: var(--white);
}

.company__content > p:not(.kicker) {
  max-width: 710px;
  color: #d4dfe6;
}

.company__role {
  color: #ffb49f !important;
  font-weight: 700;
}

.company-data {
  margin: 34px 0 0;
  border-top: 1px solid #365069;
}

.company-data div {
  display: grid;
  grid-template-columns: 125px 1fr;
  gap: 20px;
  padding: 13px 0;
  border-bottom: 1px solid #365069;
}

.company-data dt {
  color: #9fb1be;
  font-size: 0.78rem;
}

.company-data dd {
  margin: 0;
  font-weight: 600;
}

.benefit-grid article {
  border-top: 4px solid var(--red);
}

.review-section {
  padding: 86px 0;
  background: var(--cream);
}

.review__grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  align-items: center;
  gap: 72px;
}

.review {
  padding: 38px;
  background: var(--white);
  border: 1px solid #e8dfd6;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.review__rating {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--line);
}

.review__rating span {
  color: #f0a000;
  letter-spacing: 0.08em;
}

.review blockquote {
  margin: 28px 0;
  color: var(--navy);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.35rem;
  line-height: 1.45;
}

.review p {
  margin-bottom: 0;
}

.review p span {
  color: var(--muted);
  font-size: 0.8rem;
}

.contact-section {
  padding: 90px 0;
  color: var(--white);
  background: var(--navy);
  border-top: 1px solid #365069;
}

.contact__grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  align-items: start;
  gap: 84px;
}

.contact__content h2 {
  color: var(--white);
}

.contact__content address {
  margin-bottom: 28px;
  color: #d7e0e7;
  font-style: normal;
}

.contact__content a {
  color: var(--white);
}

.contact__phone {
  font-size: 1.65rem;
  font-weight: 800;
  text-decoration: none;
}

.contact-form {
  padding: 38px;
  color: var(--ink);
  background: var(--white);
  border-radius: var(--radius);
}

.contact-form h3 {
  font-size: 1.8rem;
}

.contact-form label {
  display: block;
  margin-bottom: 17px;
  color: var(--navy);
  font-size: 0.82rem;
  font-weight: 700;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  margin-top: 6px;
  padding: 12px 13px;
  color: var(--ink);
  background: var(--white);
  border: 1px solid #cbd4da;
  border-radius: 6px;
  font: inherit;
  font-size: 0.93rem;
}

.contact-form textarea {
  min-height: 118px;
  resize: vertical;
}

.privacy-check {
  display: flex !important;
  align-items: flex-start;
  gap: 10px;
  font-weight: 500 !important;
}

.privacy-check input {
  width: 18px;
  height: 18px;
  margin: 3px 0 0;
  flex: 0 0 auto;
}

.form-status {
  display: none;
  margin: 15px 0 0;
  padding: 12px;
  color: var(--navy);
  background: #edf5f0;
  border-left: 4px solid #32825b;
  font-size: 0.8rem;
}

.form-status.is-visible {
  display: block;
}

.form-status.is-error {
  color: #7c1d0e;
  background: #fff0ec;
  border-left-color: var(--red);
}

.contact-form button:disabled {
  cursor: wait;
  opacity: 0.7;
}

.form-honeypot {
  position: absolute !important;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

.form-note {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 0.72rem;
}

.footer {
  padding: 58px 0 20px;
  color: #c8d3db;
  background: #0a1c2d;
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.1fr 0.7fr 1fr 1.2fr;
  gap: 40px;
  padding-bottom: 40px;
}

.footer__logo {
  width: 270px;
  height: auto;
  padding: 8px;
  background: var(--white);
  border-radius: 6px;
}

.footer h3 {
  margin-bottom: 13px;
  color: var(--white);
  font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  font-size: 0.85rem;
}

.footer__grid a {
  display: block;
  margin: 7px 0;
  color: #c8d3db;
  text-decoration: none;
  font-size: 0.82rem;
}

.footer__grid p {
  margin: 0;
  font-size: 0.78rem;
}

.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding-top: 20px;
  border-top: 1px solid #2b4154;
  font-size: 0.72rem;
}

.footer__bottom div {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.footer__bottom a {
  color: #c8d3db;
  text-decoration: none;
}

.mobile-sticky {
  display: none;
}

.legal-page {
  min-height: 70vh;
  padding: 72px 0 90px;
  background: var(--cream);
}

.legal-page__inner {
  max-width: 840px;
}

.legal-page h1 {
  font-size: clamp(2.6rem, 6vw, 4.8rem);
}

.legal-page h2 {
  margin-top: 34px;
  font-size: 1.55rem;
}

.legal-page a {
  color: var(--red-dark);
}

.legal-notice {
  padding: 18px;
  background: #fff3df;
  border-left: 4px solid #c96b00;
}

.legal-table-wrap {
  max-width: 100%;
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: 10px;
}

.legal-table {
  width: 100%;
  min-width: 620px;
  border-collapse: collapse;
  background: var(--white);
  font-size: 0.88rem;
}

.legal-table th,
.legal-table td {
  padding: 13px 15px;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}

.legal-table th {
  color: var(--navy);
  background: #eef3f7;
}

.legal-table tbody tr:last-child td {
  border-bottom: 0;
}

.legal-list {
  padding-left: 22px;
}

.legal-list li + li {
  margin-top: 8px;
}

.consent-banner {
  position: fixed;
  z-index: 10000;
  right: 20px;
  bottom: 20px;
  left: 20px;
  width: min(1180px, calc(100% - 40px));
  max-height: calc(100vh - 40px);
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(250px, 0.42fr);
  align-items: center;
  gap: 34px;
  padding: 25px;
  margin-inline: auto;
  overflow-y: auto;
  color: var(--ink);
  background: var(--white);
  border: 1px solid #ccd6de;
  border-radius: 14px;
  box-shadow: 0 22px 70px rgba(7, 26, 44, 0.3);
}

.consent-banner h2,
.consent-modal h2 {
  margin-bottom: 8px;
  font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  font-size: 1.45rem;
  letter-spacing: -0.025em;
}

.consent-banner p,
.consent-modal p {
  margin-bottom: 10px;
}

.consent-kicker {
  margin: 0 0 5px !important;
  color: var(--red-dark);
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.consent-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin: 12px 0 0 !important;
  font-size: 0.75rem;
}

.consent-links a {
  color: var(--navy);
  font-weight: 750;
}

.consent-actions {
  display: grid;
  grid-template-columns: 1fr;
  gap: 9px;
}

.consent-actions button {
  min-height: 44px;
  padding: 10px 14px;
  color: var(--white);
  background: var(--navy);
  border: 2px solid var(--navy);
  border-radius: 7px;
  cursor: pointer;
  font: inherit;
  font-size: 0.8rem;
  font-weight: 850;
}

.consent-actions button:hover,
.consent-actions button:focus-visible {
  background: var(--navy-light);
  border-color: var(--navy-light);
}

.consent-actions [data-consent-settings],
.consent-actions [data-consent-save] {
  color: var(--navy);
  background: var(--white);
  border-color: #9cabb7;
}

.consent-actions [data-consent-settings]:hover,
.consent-actions [data-consent-settings]:focus-visible,
.consent-actions [data-consent-save]:hover,
.consent-actions [data-consent-save]:focus-visible {
  color: var(--white);
  background: var(--navy);
  border-color: var(--navy);
}

.consent-modal {
  position: fixed;
  z-index: 10001;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 20px;
  overflow-y: auto;
  background: rgba(5, 22, 38, 0.72);
}

.consent-modal__panel {
  position: relative;
  width: min(620px, 100%);
  max-height: calc(100vh - 40px);
  padding: 30px;
  overflow-y: auto;
  background: var(--white);
  border-radius: 14px;
  box-shadow: 0 22px 80px rgba(0, 0, 0, 0.35);
}

.consent-modal__close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  color: var(--navy);
  background: var(--soft);
  border: 1px solid var(--line);
  border-radius: 50%;
  cursor: pointer;
  font-size: 1.45rem;
  line-height: 1;
}

.consent-option {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 15px 0;
  border-top: 1px solid var(--line);
  cursor: pointer;
}

.consent-option strong,
.consent-option small {
  display: block;
}

.consent-option strong {
  color: var(--navy);
}

.consent-option small {
  margin-top: 3px;
  color: var(--muted);
}

.consent-option input {
  width: 22px;
  height: 22px;
  flex: 0 0 auto;
  accent-color: var(--red);
}

.consent-option--fixed {
  cursor: default;
}

.consent-actions--stack {
  grid-template-columns: repeat(3, 1fr);
  margin-top: 20px;
}

@media (max-width: 760px) {
  .consent-banner {
    right: 12px;
    bottom: 76px;
    left: 12px;
    width: calc(100% - 24px);
    max-height: calc(100vh - 100px);
    grid-template-columns: 1fr;
    gap: 16px;
    padding: 20px;
  }

  .consent-banner h2,
  .consent-modal h2 {
    padding-right: 28px;
    font-size: 1.2rem;
  }

  .consent-actions--stack {
    grid-template-columns: 1fr;
  }

  .consent-modal__panel {
    padding: 25px 20px;
  }
}

@media (max-width: 1050px) {
  .desktop-nav {
    display: none;
  }

  .menu-toggle {
    display: block;
  }

  .hero__grid {
    gap: 42px;
  }

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

@media (max-width: 820px) {
  .shell {
    width: min(100% - 30px, 680px);
  }

  .topbar__inner span {
    display: none;
  }

  .topbar__inner {
    justify-content: center;
  }

  .header__inner {
    min-height: 88px;
  }

  .brand-logo img {
    width: 220px;
    height: auto;
  }

  .header-actions .button {
    display: none;
  }

  .hero,
  .section,
  .manufacturers,
  .action-section,
  .company-section,
  .review-section,
  .contact-section {
    padding-block: 64px;
  }

  .hero__grid,
  .action__grid,
  .text-columns,
  .company__grid,
  .review__grid,
  .contact__grid {
    grid-template-columns: 1fr;
    gap: 38px;
  }

  .hero__media {
    box-shadow: none;
  }

  .hero__media > img {
    height: auto;
  }

  .allianz-band__grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .allianz-band__brand {
    min-height: 0;
    align-items: flex-start;
    padding: 0 0 28px;
    border-right: 0;
    border-bottom: 1px solid #cbd9e5;
  }

  .allianz-band__brand span {
    text-align: left;
  }

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

  .action__price {
    max-width: 420px;
  }

  .audience-grid,
  .benefit-grid {
    grid-template-columns: 1fr;
  }

  .service-list {
    grid-template-columns: 1fr;
  }

  .company__image img {
    max-height: 560px;
  }

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

  .mobile-sticky {
    position: fixed;
    z-index: 120;
    right: 0;
    bottom: 0;
    left: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    padding: 8px;
    background: var(--white);
    border-top: 1px solid var(--line);
    box-shadow: 0 -8px 24px rgba(16, 38, 61, 0.12);
  }

  .mobile-sticky a {
    min-width: 0;
    padding: 11px 8px;
    color: var(--navy);
    text-align: center;
    text-decoration: none;
    font-size: 0.8rem;
  }

  .mobile-sticky a:last-child {
    color: var(--white);
    background: var(--red);
    border-radius: 6px;
    font-weight: 800;
  }

  .footer {
    padding-bottom: 86px;
  }
}

@media (max-width: 520px) {
  body {
    font-size: 15px;
  }

  h1 {
    font-size: 2.75rem;
  }

  h2 {
    font-size: 2.05rem;
  }

  .hero {
    padding-top: 46px;
  }

  .hero__actions {
    display: grid;
  }

  .hero__facts {
    grid-template-columns: 1fr;
  }

  .hero__facts div {
    padding: 12px 0;
    border-bottom: 1px solid #d9d4cc;
  }

  .hero__media > img {
    height: auto;
  }

  .hero__caption {
    display: block;
  }

  .hero__caption span {
    margin-top: 3px;
  }

  .logo-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }

  .logo-grid div {
    height: 96px;
    padding: 11px;
  }

  .logo-grid img {
    height: 62px;
  }

  .action__price,
  .contact-form,
  .review,
  .audience-grid article,
  .benefit-grid article {
    padding: 25px;
  }

  .price-number {
    font-size: 5.6rem;
  }

  .company-data div {
    grid-template-columns: 1fr;
    gap: 3px;
  }

  .footer__grid {
    grid-template-columns: 1fr;
  }

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

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
}

/* Relaunch v4: conversion-focused opening inspired by established heating services. */
.topbar {
  background: linear-gradient(100deg, #ff6418 0%, #ef3f1d 65%, #db2d13 100%);
  box-shadow: 0 4px 18px rgba(239, 75, 35, 0.2);
  font-size: 0.86rem;
  letter-spacing: 0.02em;
}

.topbar__inner {
  min-height: 48px;
}

.topbar a {
  color: var(--white);
  border-bottom: 1px solid rgba(255, 255, 255, 0.72);
  font-size: 1rem;
}

.site-header {
  box-shadow: 0 8px 28px rgba(10, 41, 79, 0.06);
}

.header__inner {
  min-height: 92px;
}

.brand-logo img {
  width: 300px;
}

.button {
  background: linear-gradient(135deg, #ff6418, #eb3e1e);
  border-color: #ef4b23;
  box-shadow: 0 10px 24px rgba(239, 75, 35, 0.2);
}

.button:hover {
  background: linear-gradient(135deg, #f35218, #d93413);
  border-color: #d93413;
}

.button--outline {
  color: var(--navy);
  background: var(--white);
  border-color: #cad4df;
  box-shadow: none;
}

.hero-v4 {
  position: relative;
  overflow: hidden;
  padding-top: 20px;
  background:
    radial-gradient(circle at 78% 14%, rgba(216, 226, 237, 0.62), transparent 32%),
    linear-gradient(120deg, #fff 0%, #f8fafc 56%, #eef2f6 100%);
}

.hero-v4__main {
  min-width: 0;
  min-height: 590px;
  display: grid;
  grid-template-columns: minmax(0, 0.96fr) minmax(0, 1.04fr);
  align-items: stretch;
  gap: 42px;
}

.hero-v4__content {
  position: relative;
  z-index: 3;
  min-width: 0;
  align-self: center;
  padding: 46px 0 82px;
}

.hero-v4__eyebrow {
  margin-bottom: 18px;
  color: #52677d;
  font-size: 0.83rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero-v4__badge {
  width: max-content;
  margin-bottom: 17px;
  padding: 7px 17px;
  color: var(--white);
  background: linear-gradient(135deg, #ff6418, #ed3c1d);
  border-radius: 999px;
  box-shadow: 0 8px 16px rgba(239, 75, 35, 0.24);
  font-size: 1rem;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.hero-v4 h1 {
  max-width: 620px;
  margin-bottom: 23px;
  font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  font-size: clamp(3.5rem, 4.4vw, 4.35rem);
  font-weight: 850;
  line-height: 0.98;
  letter-spacing: -0.06em;
}

.hero-v4 h1 .hero-v4__service,
.hero-v4 h1 .hero-v4__offer {
  display: block;
}

.hero-v4 h1 .hero-v4__offer {
  margin-top: 9px;
  color: #ed421f;
  font-size: 0.79em;
  letter-spacing: -0.045em;
}

.hero-v4 h1 .price-gross-inline,
.location-hero__content h1 .price-gross-inline {
  display: block;
  margin-top: 12px;
  color: var(--navy);
  font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  font-size: 1rem;
  font-weight: 850;
  letter-spacing: 0;
  line-height: 1.25;
}

.hero-v4__lead {
  max-width: 560px;
  margin-bottom: 29px;
  color: #405671;
  font-size: 1.1rem;
  line-height: 1.58;
}

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

.hero-v4__actions .button {
  min-height: 54px;
}

.hero-v4__visual {
  position: relative;
  min-width: 0;
  overflow: hidden;
  align-self: end;
  height: 590px;
  background: #e8edf2;
  border-radius: 26px 26px 0 0;
  box-shadow: 0 28px 70px rgba(10, 41, 79, 0.17);
}

.hero-v4__visual::after {
  position: absolute;
  inset: 0;
  content: "";
  pointer-events: none;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.3), transparent 24%);
}

.hero-v4__visual > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 64% center;
}

.hero-v4__price {
  position: absolute;
  z-index: 2;
  right: 23px;
  bottom: 122px;
  width: 156px;
  aspect-ratio: 1;
  display: grid;
  place-content: center;
  color: var(--white);
  background: linear-gradient(145deg, #ff6019, #d92e12);
  border: 7px solid var(--white);
  border-radius: 50%;
  box-shadow: 0 18px 32px rgba(10, 41, 79, 0.25);
  text-align: center;
  transform: rotate(-2deg);
}

.hero-v4__price span,
.hero-v4__price small {
  font-weight: 900;
  letter-spacing: 0.08em;
}

.hero-v4__price span {
  font-size: 0.78rem;
}

.hero-v4__price strong {
  margin: 0;
  font-size: 2.8rem;
  line-height: 1.05;
}

.hero-v4__price small {
  font-size: 0.74rem;
}

.hero-v4__price em {
  position: absolute;
  top: calc(100% + 8px);
  left: 50%;
  display: block;
  min-width: 190px;
  padding: 9px 12px;
  color: var(--navy);
  background: var(--white);
  border: 2px solid #f04b22;
  border-radius: 999px;
  box-shadow: 0 10px 24px rgba(10, 41, 79, 0.2);
  font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  font-size: 0.76rem;
  font-style: normal;
  font-weight: 900;
  line-height: 1.15;
  white-space: nowrap;
  transform: translateX(-50%);
}

.hero-v4__price em i {
  margin-left: 3px;
  color: #52667d;
  font-size: 0.64rem;
  font-style: normal;
  font-weight: 800;
}

.hero-v4__photo-label {
  position: absolute;
  z-index: 2;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 22px 185px 20px 26px;
  color: var(--white);
  background: linear-gradient(180deg, transparent, rgba(4, 24, 48, 0.9));
}

.hero-v4__photo-label strong,
.hero-v4__photo-label span {
  display: block;
}

.hero-v4__photo-label strong {
  font-size: 0.94rem;
}

.hero-v4__photo-label span {
  color: #dce7f1;
  font-size: 0.78rem;
}

.hero-v4__benefits {
  position: relative;
  z-index: 4;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: -38px;
  overflow: hidden;
  background: var(--white);
  border: 1px solid #e4eaf0;
  border-radius: 19px;
  box-shadow: 0 18px 46px rgba(10, 41, 79, 0.13);
}

.hero-v4__benefits > div {
  min-width: 0;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 22px 24px;
}

.hero-v4__benefits > div + div {
  border-left: 1px solid #e4eaf0;
}

.hero-v4__benefit-icon {
  width: 42px;
  height: 42px;
  flex: 0 0 42px;
  display: grid;
  place-items: center;
  color: #ef4b23;
  border: 2px solid #ef4b23;
  border-radius: 12px;
  font-size: 1.2rem;
  font-weight: 900;
}

.hero-v4__benefits p {
  min-width: 0;
  margin: 0;
  line-height: 1.3;
}

.hero-v4__benefits strong,
.hero-v4__benefits small {
  display: block;
}

.hero-v4__benefits strong {
  color: var(--navy);
  font-size: 0.87rem;
}

.hero-v4__benefits small {
  margin-top: 3px;
  color: #617386;
  font-size: 0.75rem;
}

.hero-v4__trust {
  display: grid;
  grid-template-columns: 0.95fr 0.95fr 1.5fr;
  gap: 16px;
  padding-top: 19px;
  padding-bottom: 25px;
}

.hero-v4__trust-card {
  min-width: 0;
  min-height: 104px;
  display: flex;
  align-items: center;
  gap: 17px;
  padding: 18px 22px;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid #e4eaf0;
  border-radius: 17px;
  box-shadow: 0 10px 30px rgba(10, 41, 79, 0.08);
}

.hero-v4__trust-card > img {
  width: 60px;
  max-height: 55px;
  flex: 0 0 auto;
  object-fit: contain;
}

.hero-v4__trust-card--allianz > img {
  width: 125px;
}

.hero-v4__trust-card p {
  min-width: 0;
  margin: 0;
  line-height: 1.25;
}

.hero-v4__trust-card small,
.hero-v4__trust-card strong {
  display: block;
}

.hero-v4__trust-card small {
  margin-bottom: 4px;
  color: var(--red);
  font-size: 0.67rem;
  font-weight: 900;
  letter-spacing: 0.05em;
}

.hero-v4__trust-card strong {
  color: var(--navy);
  font-size: 1rem;
}

.hero-v4__trust-card--google p > span {
  display: block;
  color: #ffaf00;
  letter-spacing: 0.08em;
}

.google-g {
  width: 56px;
  height: 56px;
  flex: 0 0 56px;
  display: grid;
  place-items: center;
  color: #4285f4;
  background: var(--white);
  border: 1px solid #d6dde4;
  border-radius: 50%;
  font-size: 2.1rem;
  font-weight: 900;
}

.hero-v4__bottom {
  color: var(--white);
  background: linear-gradient(110deg, #061d3d, #0c3466);
}

.hero-v4__bottom .shell {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.hero-v4__bottom a,
.hero-v4__bottom .shell > div {
  min-width: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 21px 28px;
  color: var(--white);
  text-decoration: none;
}

.hero-v4__bottom .shell > * + * {
  border-left: 1px solid rgba(255, 255, 255, 0.17);
}

.hero-v4__bottom .shell > * > span {
  width: 45px;
  height: 45px;
  flex: 0 0 45px;
  display: grid;
  place-items: center;
  color: var(--white);
  background: linear-gradient(135deg, #ff6418, #e23618);
  border-radius: 50%;
  font-size: 1.25rem;
  font-weight: 900;
}

.hero-v4__bottom p {
  margin: 0;
  line-height: 1.3;
}

.hero-v4__bottom strong,
.hero-v4__bottom small {
  display: block;
}

.hero-v4__bottom small {
  margin-top: 3px;
  color: #d6e1ec;
}

.seo-intro {
  padding: 50px 0;
  background: var(--white);
  border-bottom: 1px solid var(--line);
}

.seo-intro__grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  align-items: start;
  gap: 56px;
}

.seo-intro h2 {
  margin: 0;
  font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  font-size: clamp(1.6rem, 2.6vw, 2.45rem);
  font-weight: 800;
  line-height: 1.16;
}

.seo-intro p {
  margin: 0;
  color: var(--muted);
  font-size: 1rem;
}

.company__grid {
  grid-template-columns: 1.15fr 0.85fr;
  gap: 56px;
}

.company__image img {
  width: 100%;
  height: auto;
  max-height: none;
  aspect-ratio: auto;
  object-fit: contain;
  object-position: center;
}

@media (max-width: 1080px) {
  .hero-v4__main {
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
    gap: 24px;
  }

  .hero-v4 h1 {
    font-size: clamp(3.2rem, 5.8vw, 4.1rem);
  }

  .hero-v4__benefits > div {
    padding: 18px 15px;
  }

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

  .hero-v4__trust-card--allianz {
    grid-column: 1 / -1;
  }
}

@media (max-width: 820px) {
  .topbar__inner {
    min-height: 45px;
    justify-content: center;
    gap: 10px;
    text-align: center;
  }

  .topbar__inner span {
    display: block;
    font-size: 0.72rem;
  }

  .topbar a {
    font-size: 0.8rem;
  }

  .brand-logo {
    min-width: 0;
  }

  .brand-logo img {
    width: 250px;
  }

  .hero-v4 {
    padding-top: 0;
  }

  .hero-v4__main {
    min-height: 0;
    grid-template-columns: 1fr;
    gap: 0;
  }

  .hero-v4__content {
    padding: 42px 0 32px;
  }

  .hero-v4__visual {
    width: 100%;
    height: auto;
    aspect-ratio: 4 / 3;
    border-radius: 20px;
  }

  .hero-v4__visual > img {
    object-position: 62% center;
  }

  .hero-v4__benefits {
    grid-template-columns: repeat(2, 1fr);
    margin-top: 18px;
  }

  .hero-v4__benefits > div + div {
    border-left: 0;
  }

  .hero-v4__benefits > div:nth-child(even) {
    border-left: 1px solid #e4eaf0;
  }

  .hero-v4__benefits > div:nth-child(n + 3) {
    border-top: 1px solid #e4eaf0;
  }

  .hero-v4__bottom .shell {
    grid-template-columns: 1fr 1fr;
  }

  .hero-v4__bottom .shell > div {
    display: none;
  }

  .seo-intro__grid,
  .company__grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }
}

@media (max-width: 560px) {
  .shell {
    width: min(100% - 28px, 1180px);
  }

  .topbar__inner {
    min-height: 56px;
    flex-direction: column;
    justify-content: center;
    gap: 0;
    line-height: 1.35;
  }

  .topbar__inner span {
    font-size: 0.68rem;
  }

  .topbar a {
    font-size: 0.8rem;
  }

  .header__inner {
    min-height: 78px;
  }

  .brand-logo img {
    width: 245px;
  }

  .hero-v4__content {
    padding: 34px 0 25px;
  }

  .hero-v4__eyebrow {
    margin-bottom: 14px;
  }

  .hero-v4__badge {
    margin-bottom: 13px;
    padding: 6px 14px;
    font-size: 0.85rem;
  }

  .hero-v4 h1 {
    margin-bottom: 17px;
    max-width: 100%;
    font-size: clamp(2.75rem, 13vw, 3.4rem);
  }

  .hero-v4 h1 .hero-v4__service {
    overflow-wrap: anywhere;
    hyphens: auto;
  }

  .hero-v4__lead {
    margin-bottom: 22px;
    font-size: 1rem;
  }

  .hero-v4__actions {
    display: none;
  }

  .hero-v4__visual {
    aspect-ratio: 1 / 1.02;
  }

  .hero-v4__visual > img {
    object-position: right center;
  }

  .hero-v4__price {
    right: 36px;
    bottom: 103px;
    width: 125px;
    border-width: 5px;
  }

  .hero-v4__price strong {
    font-size: 2.25rem;
  }

  .hero-v4__photo-label {
    padding: 32px 137px 14px 17px;
  }

  .hero-v4__benefits {
    grid-template-columns: 1fr;
  }

  .hero-v4__benefits > div:nth-child(even) {
    border-left: 0;
  }

  .hero-v4__benefits > div:nth-child(n + 2) {
    border-top: 1px solid #e4eaf0;
  }

  .hero-v4__benefits > div {
    padding: 14px 17px;
  }

  .hero-v4__trust {
    grid-template-columns: 1fr;
    padding-top: 14px;
  }

  .hero-v4__trust-card--allianz {
    grid-column: auto;
    align-items: flex-start;
    flex-direction: column;
  }

  .hero-v4__trust-card--allianz > img {
    width: 142px;
  }

  .hero-v4__bottom .shell {
    width: 100%;
  }

  .hero-v4__bottom a {
    gap: 9px;
    padding: 16px 10px;
    text-align: left;
  }

  .hero-v4__bottom .shell > * > span {
    width: 36px;
    height: 36px;
    flex-basis: 36px;
    font-size: 1rem;
  }

  .hero-v4__bottom strong {
    font-size: 0.78rem;
  }

  .hero-v4__bottom small {
    font-size: 0.7rem;
  }

  .seo-intro {
    padding: 38px 0;
  }
}

/* Regional SEO hubs and location pages */
.service-area-section {
  padding: 86px 0;
  background:
    radial-gradient(circle at 90% 15%, rgba(255, 107, 22, 0.08), transparent 26%),
    var(--soft);
}

.service-area__regions {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 36px;
}

.service-area__region {
  padding: 32px;
  color: var(--white);
  background: linear-gradient(135deg, #08234a, #12477f);
  border-radius: 18px;
  box-shadow: var(--shadow);
  text-decoration: none;
}

.service-area__region span,
.service-area__region strong {
  display: block;
}

.service-area__region span {
  margin-bottom: 8px;
  color: #ffb28c;
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.service-area__region strong {
  margin-bottom: 8px;
  font-size: 1.55rem;
}

.service-area__region small {
  color: #dbe7f3;
  font-size: 0.9rem;
}

.service-area__cities {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
}

.service-area__cities a {
  padding: 10px 15px;
  color: var(--navy);
  background: var(--white);
  border: 1px solid #dce4ec;
  border-radius: 999px;
  box-shadow: 0 6px 18px rgba(10, 41, 79, 0.05);
  text-decoration: none;
  font-size: 0.88rem;
  font-weight: 800;
}

.service-area__cities a:hover {
  color: var(--white);
  background: var(--navy);
  border-color: var(--navy);
}

.breadcrumbs {
  padding: 15px 0;
  color: #617386;
  background: #f6f8fa;
  border-bottom: 1px solid #e3e8ed;
  font-size: 0.78rem;
}

.breadcrumbs a {
  color: var(--navy);
  font-weight: 800;
  text-decoration: none;
}

.breadcrumbs span {
  padding: 0 7px;
  color: #99a6b2;
}

.location-hero {
  overflow: hidden;
  padding: 58px 0 0;
  background:
    radial-gradient(circle at 82% 17%, rgba(205, 217, 230, 0.8), transparent 30%),
    linear-gradient(120deg, #fff 0%, #f6f9fb 58%, #eef3f7 100%);
}

.location-hero__grid {
  min-height: 555px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(430px, 0.82fr);
  align-items: stretch;
  gap: 42px;
}

.location-hero__content {
  align-self: center;
  padding: 18px 0 72px;
}

.location-hero__content h1 {
  max-width: 700px;
  font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  font-size: clamp(3rem, 4.8vw, 4.65rem);
  font-weight: 850;
  line-height: 1;
  letter-spacing: -0.055em;
}

.location-hero__content h1 span {
  display: block;
  margin-top: 10px;
  color: var(--red);
  font-size: 0.62em;
  letter-spacing: -0.035em;
}

.location-hero__lead {
  max-width: 650px;
  color: #41566e;
  font-size: 1.1rem;
}

.location-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.location-hero__visual {
  position: relative;
  align-self: end;
  height: 510px;
  overflow: hidden;
  background: #e5ebf0;
  border-radius: 24px 24px 0 0;
  box-shadow: 0 28px 60px rgba(10, 41, 79, 0.16);
}

.location-hero__visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 68% center;
}

.manufacturer-hero__visual > img {
  object-position: 64% center;
}

.manufacturer-hero__brand {
  position: absolute;
  top: 24px;
  left: 24px;
  width: min(210px, 44%);
  height: 82px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(10, 41, 79, 0.12);
  border-radius: 12px;
  box-shadow: 0 12px 30px rgba(10, 41, 79, 0.18);
}

.manufacturer-hero__brand img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.manufacturer-links {
  grid-template-columns: repeat(4, 1fr);
}

.location-hero__price {
  position: absolute;
  right: 28px;
  bottom: 62px;
  width: 142px;
  aspect-ratio: 1;
  display: grid;
  place-content: center;
  color: var(--white);
  background: linear-gradient(145deg, #f85a1b, #c72d12);
  border: 6px solid var(--white);
  border-radius: 50%;
  box-shadow: 0 15px 30px rgba(10, 41, 79, 0.22);
  text-align: center;
}

.location-hero__price strong,
.location-hero__price span,
.location-hero__price small,
.location-hero__price em {
  display: block;
}

.location-hero__price strong {
  font-size: 2.5rem;
  line-height: 1;
}

.location-hero__price span,
.location-hero__price small {
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.location-hero__price em {
  position: absolute;
  top: calc(100% + 7px);
  left: 50%;
  min-width: 184px;
  padding: 8px 11px;
  color: var(--navy);
  background: var(--white);
  border: 2px solid #e64b23;
  border-radius: 999px;
  box-shadow: 0 9px 20px rgba(10, 41, 79, 0.2);
  font-size: 0.7rem;
  font-style: normal;
  font-weight: 900;
  line-height: 1.15;
  white-space: nowrap;
  transform: translateX(-50%);
}

.location-hero__price em i {
  margin-left: 3px;
  color: #52667d;
  font-size: 0.59rem;
  font-style: normal;
  font-weight: 800;
}

.location-proof {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: -22px;
  overflow: hidden;
  background: var(--white);
  border: 1px solid #e1e7ed;
  border-radius: 16px;
  box-shadow: var(--shadow);
}

.location-proof div {
  padding: 20px;
  text-align: center;
}

.location-proof div + div {
  border-left: 1px solid #e1e7ed;
}

.location-proof strong,
.location-proof span {
  display: block;
}

.location-proof strong {
  color: var(--navy);
}

.location-proof span {
  margin-top: 2px;
  color: #66788a;
  font-size: 0.78rem;
}

.location-section {
  padding: 78px 0;
}

.location-section--soft {
  background: var(--soft);
}

.location-section--navy {
  color: #dce7f2;
  background: linear-gradient(135deg, #071f42, #103d70);
}

.location-section--navy h2,
.location-section--navy h3 {
  color: var(--white);
}

.location-section__heading {
  max-width: 820px;
  margin-bottom: 36px;
}

.location-section__heading > p:last-child {
  color: var(--muted);
}

.location-section--navy .location-section__heading > p:last-child {
  color: #d0ddea;
}

.location-answer {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 42px;
  align-items: start;
}

.location-answer__box {
  padding: 30px;
  background: #fff7f2;
  border: 1px solid #ffd5c2;
  border-radius: 16px;
}

.location-answer__box h2 {
  font-size: clamp(1.75rem, 3vw, 2.6rem);
}

.location-facts {
  display: grid;
  gap: 12px;
}

.location-facts div {
  padding: 19px 21px;
  background: var(--white);
  border: 1px solid #e0e7ed;
  border-radius: 13px;
  box-shadow: 0 7px 22px rgba(10, 41, 79, 0.06);
}

.location-facts strong,
.location-facts span {
  display: block;
}

.location-facts strong {
  color: var(--navy);
}

.location-facts span {
  color: #657689;
  font-size: 0.87rem;
}

.location-content-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(280px, 0.75fr);
  align-items: start;
  gap: 54px;
}

.location-copy h2 {
  margin-top: 44px;
  font-size: clamp(1.75rem, 3vw, 2.55rem);
}

.location-copy h2:first-child {
  margin-top: 0;
}

.location-copy h3 {
  margin-top: 28px;
}

.location-copy p,
.location-copy li {
  color: #4e6276;
}

.location-copy ul,
.location-copy ol {
  padding-left: 22px;
}

.location-copy li + li {
  margin-top: 9px;
}

.location-aside {
  position: sticky;
  top: 125px;
  display: grid;
  gap: 17px;
}

.location-card {
  padding: 25px;
  background: var(--white);
  border: 1px solid #dfe6ec;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(10, 41, 79, 0.07);
}

.location-card h3 {
  margin-bottom: 12px;
}

.location-card p:last-child {
  margin-bottom: 0;
}

.location-card--cta {
  color: var(--white);
  background: linear-gradient(145deg, #ef4a1c, #be2b12);
  border: 0;
}

.location-card--cta h3 {
  color: var(--white);
}

.location-card--cta a {
  display: block;
  margin-top: 14px;
  color: var(--white);
  font-size: 1.35rem;
  font-weight: 900;
  text-decoration: none;
}

.location-process {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.location-process article {
  padding: 26px;
  background: var(--white);
  border: 1px solid #dfe6ec;
  border-radius: 15px;
}

.location-process article > span {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  margin-bottom: 17px;
  color: var(--white);
  background: var(--red);
  border-radius: 10px;
  font-weight: 900;
}

.location-scenarios {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.location-scenarios article {
  padding: 27px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 15px;
}

.location-scenarios p {
  margin: 0;
  color: #d6e2ed;
}

.location-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 13px;
}

.location-links a {
  padding: 18px 20px;
  color: var(--navy);
  background: var(--white);
  border: 1px solid #dce4ea;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 850;
}

.location-links a span {
  display: block;
  margin-top: 2px;
  color: #5d6e7f;
  font-size: 0.76rem;
  font-weight: 600;
}

.location-faq {
  display: grid;
  gap: 11px;
}

.location-faq details {
  padding: 20px 22px;
  background: var(--white);
  border: 1px solid #dce4ea;
  border-radius: 12px;
}

.location-faq summary {
  color: var(--navy);
  cursor: pointer;
  font-weight: 850;
}

.location-faq details p {
  margin: 14px 0 0;
  color: #53677b;
}

.location-final-cta {
  padding: 76px 0;
  color: var(--white);
  background:
    radial-gradient(circle at 85% 10%, rgba(255, 112, 33, 0.35), transparent 24%),
    var(--navy);
}

.location-final-cta__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 35px;
}

.location-final-cta h2 {
  max-width: 760px;
  margin-bottom: 9px;
  color: var(--white);
}

.location-final-cta p {
  margin: 0;
  color: #d3e0ec;
}

.location-final-cta .button {
  flex: 0 0 auto;
}

.guide-preview-section {
  padding: 88px 0;
  background:
    radial-gradient(circle at 88% 18%, rgba(238, 68, 31, 0.09), transparent 28%),
    #f4f7f9;
}

.guide-preview-grid,
.guide-index-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.guide-preview-grid a,
.guide-card {
  display: flex;
  min-height: 210px;
  padding: 27px;
  color: var(--navy);
  background: var(--white);
  border: 1px solid #dce4ea;
  border-radius: 17px;
  box-shadow: 0 14px 34px rgba(10, 41, 79, 0.07);
  flex-direction: column;
  text-decoration: none;
  transition: transform 160ms ease, border-color 160ms ease, box-shadow 160ms ease;
}

.guide-preview-grid a:hover,
.guide-card:hover {
  border-color: rgba(238, 68, 31, 0.55);
  box-shadow: 0 18px 42px rgba(10, 41, 79, 0.12);
  transform: translateY(-3px);
}

.guide-preview-grid span,
.guide-card > span {
  margin-bottom: 13px;
  color: var(--red);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.guide-preview-grid strong,
.guide-card > strong {
  font-size: 1.17rem;
  line-height: 1.28;
}

.guide-preview-grid small,
.guide-card > small {
  margin-top: 13px;
  color: #5a6e81;
  font-size: 0.9rem;
  line-height: 1.62;
}

.guide-preview-more {
  display: inline-flex;
  margin-top: 25px;
  color: var(--navy);
  font-weight: 900;
}

.guide-hero .location-hero__content h1 {
  max-width: 820px;
  font-size: clamp(2.7rem, 4.35vw, 4.4rem);
  line-height: 0.99;
}

.guide-hero__visual img {
  object-position: center;
}

.guide-hero__label {
  position: absolute;
  right: 22px;
  bottom: 22px;
  max-width: calc(100% - 44px);
  padding: 15px 18px;
  color: var(--navy);
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: 12px;
  box-shadow: 0 12px 32px rgba(10, 41, 79, 0.18);
  font-size: 0.78rem;
  line-height: 1.45;
  backdrop-filter: blur(8px);
}

.guide-hero__label strong {
  font-size: 0.95rem;
}

.guide-toc {
  align-self: stretch;
  padding: 28px;
  background: var(--navy);
  border-radius: 16px;
}

.guide-toc > strong {
  display: block;
  margin-bottom: 13px;
  color: var(--white);
  font-size: 1.05rem;
}

.guide-toc a {
  display: block;
  padding: 8px 0;
  color: #d8e5f0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.86rem;
  text-decoration: none;
}

.guide-toc a:hover {
  color: var(--white);
}

.guide-article {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 54px;
}

.guide-article .location-copy {
  max-width: 820px;
}

.guide-article .location-copy h2 {
  scroll-margin-top: 120px;
}

.guide-article .location-copy a,
.guide-hub-copy a {
  color: #b82f14;
  font-weight: 750;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

.guide-table-wrap {
  margin: 28px 0;
  overflow-x: auto;
  border: 1px solid #d8e2ea;
  border-radius: 14px;
}

.guide-table {
  width: 100%;
  min-width: 650px;
  border-collapse: collapse;
  background: var(--white);
}

.guide-table th,
.guide-table td {
  padding: 16px 17px;
  border-bottom: 1px solid #e2e8ed;
  text-align: left;
  vertical-align: top;
}

.guide-table th {
  color: var(--white);
  background: var(--navy);
  font-size: 0.82rem;
}

.guide-table td {
  color: #42586d;
  font-size: 0.9rem;
  line-height: 1.55;
}

.guide-table tr:last-child td {
  border-bottom: 0;
}

.error-table td:first-child {
  color: var(--red);
  font-size: 1.1rem;
}

.guide-checklist,
.guide-link-list,
.guide-steps {
  display: grid;
  gap: 11px;
  margin: 24px 0 30px;
  padding: 0;
  list-style: none;
}

.guide-checklist li,
.guide-link-list li,
.guide-steps li {
  padding: 17px 19px;
  color: #42586d;
  background: var(--white);
  border: 1px solid #dce4ea;
  border-radius: 11px;
  line-height: 1.55;
}

.guide-steps {
  counter-reset: guide-steps;
}

.guide-steps li {
  position: relative;
  padding-left: 62px;
  counter-increment: guide-steps;
}

.guide-steps li::before {
  position: absolute;
  top: 14px;
  left: 16px;
  width: 31px;
  height: 31px;
  display: grid;
  place-items: center;
  color: var(--white);
  background: var(--red);
  border-radius: 9px;
  content: counter(guide-steps);
  font-weight: 900;
}

.guide-link-list a {
  color: var(--navy);
  text-decoration: none;
}

.guide-source,
.safety-banner,
.guide-inline-promo {
  margin: 30px 0;
  padding: 23px 25px;
  background: #fff7f2;
  border: 1px solid #f3c6b8;
  border-left: 5px solid var(--red);
  border-radius: 12px;
}

.guide-source h3 {
  margin-bottom: 8px;
}

.guide-source p,
.safety-banner,
.guide-inline-promo span {
  color: #4c6073;
}

.guide-inline-promo {
  display: grid;
  gap: 8px;
}

.guide-inline-promo a {
  color: #a92b13;
  font-weight: 900;
}

.guide-info-grid,
.guide-hub-copy {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 17px;
  margin: 25px 0 35px;
}

.guide-info-grid article,
.guide-hub-copy article {
  padding: 25px;
  background: var(--white);
  border: 1px solid #dce4ea;
  border-radius: 14px;
}

.guide-info-grid p,
.guide-hub-copy p {
  margin-bottom: 0;
  color: #52677b;
}

@media (max-width: 900px) {
  .service-area__regions,
  .location-hero__grid,
  .location-answer,
  .location-content-grid,
  .guide-article {
    grid-template-columns: 1fr;
  }

  .location-hero__content {
    padding-bottom: 32px;
  }

  .location-hero__visual {
    height: auto;
    aspect-ratio: 4 / 3;
    border-radius: 20px;
  }

  .location-proof,
  .location-process {
    grid-template-columns: repeat(2, 1fr);
  }

  .location-proof div:nth-child(3) {
    border-left: 0;
  }

  .location-proof div:nth-child(n + 3) {
    border-top: 1px solid #e1e7ed;
  }

  .location-aside {
    position: static;
    grid-template-columns: repeat(2, 1fr);
  }

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

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

  .guide-preview-grid,
  .guide-index-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .guide-article .location-copy {
    max-width: none;
  }
}

@media (max-width: 620px) {
  .service-area-section,
  .guide-preview-section,
  .location-section,
  .location-final-cta {
    padding: 55px 0;
  }

  .service-area__regions,
  .location-scenarios,
  .location-aside,
  .location-links {
    grid-template-columns: 1fr;
  }

  .guide-preview-grid,
  .guide-index-grid,
  .guide-info-grid,
  .guide-hub-copy {
    grid-template-columns: 1fr;
  }

  .location-hero {
    padding-top: 38px;
  }

  .location-hero__grid {
    min-height: 0;
  }

  .location-hero__content h1 {
    font-size: clamp(2.55rem, 12vw, 3.4rem);
    overflow-wrap: anywhere;
    hyphens: auto;
  }

  .guide-hero .location-hero__content h1 {
    font-size: clamp(2.3rem, 10.2vw, 2.65rem);
    overflow-wrap: normal;
    hyphens: none;
  }

  .location-hero__actions {
    display: grid;
  }

  .location-hero__actions .button {
    width: 100%;
  }

  .location-hero__visual {
    aspect-ratio: 1 / 1.05;
  }

  .location-hero__visual img {
    object-position: right center;
  }

  .manufacturer-hero__visual > img {
    object-position: 64% center;
  }

  .guide-hero__visual > img {
    object-position: 55% center;
  }

  .manufacturer-hero__brand {
    top: 16px;
    left: 16px;
    width: min(180px, 48%);
    height: 68px;
    padding: 10px 14px;
  }

  .location-hero__price {
    right: 38px;
    bottom: 61px;
    width: 120px;
  }

  .location-proof,
  .location-process {
    grid-template-columns: 1fr;
  }

  .location-proof div + div,
  .location-proof div:nth-child(3) {
    border-left: 0;
    border-top: 1px solid #e1e7ed;
  }

  .location-final-cta__inner {
    align-items: flex-start;
    flex-direction: column;
  }
}
