:root {
  --color-ink: #202124;
  --color-muted: #6f756f;
  --color-line: #e5e0d7;
  --color-bg: #f6f1e8;
  --color-surface: #ffffff;
  --color-red: #cf202f;
  --color-red-dark: #a71622;
  --color-cyan: #2daaa4;
  --color-graphite: #2a2925;
  --color-warm: #efe4d2;
  --shadow-soft: 0 18px 45px rgba(63, 54, 42, 0.13);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  color: var(--color-ink);
  background: var(--color-bg);
  font-family: "Trebuchet MS", Arial, Helvetica, sans-serif;
}

a {
  color: inherit;
  text-decoration: none;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  padding: 14px 0;
  background:
    linear-gradient(90deg, rgba(239, 228, 210, 0.9), rgba(255, 255, 255, 0.72)),
    rgba(246, 241, 232, 0.9);
  backdrop-filter: blur(12px);
}

.header-main {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  width: min(1200px, calc(100% - 32px));
  min-height: 78px;
  margin: 0 auto;
  gap: 24px;
  padding: 12px 14px;
  border: 1px solid rgba(229, 224, 215, 0.95);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--shadow-soft);
}

.header-main::before {
  display: none;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 214px;
}

.brand__mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 74px;
  height: 54px;
  border: 1px solid rgba(227, 233, 240, 0.95);
  border-radius: 10px;
  background: #ffffff;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.brand__logo {
  display: block;
  width: 60px;
  height: auto;
}

.brand__copy {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.brand__name {
  color: var(--color-ink);
  font-size: 18px;
  font-weight: 900;
  line-height: 1;
}

.brand__claim {
  color: var(--color-muted);
  font-size: 12px;
  font-weight: 700;
  line-height: 1.25;
}

.nav-toggle {
  display: none;
}

.nav-toggle-button {
  display: none;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(227, 233, 240, 0.95);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.78);
  cursor: pointer;
}

.nav-toggle-button span,
.nav-toggle-button span::before,
.nav-toggle-button span::after {
  display: block;
  width: 20px;
  height: 2px;
  border-radius: 999px;
  background: var(--color-ink);
  content: "";
}

.nav-toggle-button span {
  position: relative;
}

.nav-toggle-button span::before,
.nav-toggle-button span::after {
  position: absolute;
  left: 0;
}

.nav-toggle-button span::before {
  top: -7px;
}

.nav-toggle-button span::after {
  top: 7px;
}

.primary-nav {
  justify-self: center;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
}

.primary-nav__list {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.primary-nav__link {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 0 14px;
  border-radius: 8px;
  color: #394354;
  font-size: 14px;
  font-weight: 800;
  transition: color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.primary-nav__link:hover,
.primary-nav__link.is-active {
  color: var(--color-red-dark);
  background: #fff1ec;
  box-shadow: none;
}

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

.header-badge {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 12px;
  border: 1px solid rgba(227, 233, 240, 0.95);
  border-radius: 999px;
  color: #4d596a;
  background: #fff8ef;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 18px;
  border-radius: 8px;
  background: var(--color-red);
  color: #ffffff;
  font-size: 14px;
  font-weight: 800;
  box-shadow: 0 15px 32px rgba(207, 32, 47, 0.26);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.button:hover {
  transform: translateY(-1px);
  box-shadow: 0 19px 38px rgba(207, 32, 47, 0.32);
}

.button--ghost {
  border: 1px solid rgba(255, 255, 255, 0.72);
  background: rgba(255, 255, 255, 0.2);
  box-shadow: none;
}

.button--ghost:hover {
  box-shadow: 0 16px 34px rgba(255, 255, 255, 0.12);
}

.page-placeholder {
  width: min(1180px, calc(100% - 32px));
  margin: 64px auto;
}

.page-hero {
  position: relative;
  display: grid;
  align-items: end;
  min-height: 560px;
  overflow: hidden;
  color: #ffffff;
  background: var(--color-graphite);
}

.page-hero__media {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}

.page-hero--servizi .page-hero__media {
  background-image:
    linear-gradient(90deg, rgba(35, 31, 27, 0.9), rgba(35, 31, 27, 0.55), rgba(35, 31, 27, 0.18)),
    url("/images/rimessaggio.jpeg");
}

.page-hero--contatti .page-hero__media {
  background-image:
    linear-gradient(90deg, rgba(35, 31, 27, 0.9), rgba(35, 31, 27, 0.5), rgba(35, 31, 27, 0.18)),
    url("/images/home-hero.jpg");
}

.page-hero--vendi .page-hero__media {
  background-image:
    linear-gradient(90deg, rgba(35, 31, 27, 0.92), rgba(35, 31, 27, 0.52), rgba(35, 31, 27, 0.16)),
    url("/images/acquisto-camper.jpg");
}

.page-hero--policy .page-hero__media {
  background-image:
    linear-gradient(90deg, rgba(35, 31, 27, 0.92), rgba(35, 31, 27, 0.56), rgba(35, 31, 27, 0.2)),
    url("/images/home-hero.jpg");
}

.page-hero__content {
  position: relative;
  width: min(1200px, calc(100% - 32px));
  margin: 0 auto;
  padding: 118px 0 86px;
}

.page-hero .section-kicker {
  border-color: rgba(255, 255, 255, 0.32);
  color: #ffffff;
  background: rgba(207, 32, 47, 0.82);
}

.page-hero h1 {
  max-width: 840px;
  margin: 18px 0;
  font-size: clamp(42px, 6.5vw, 78px);
  line-height: 0.98;
}

.page-hero p {
  max-width: 620px;
  margin: 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: 19px;
  line-height: 1.6;
}

.home-hero {
  position: relative;
  display: grid;
  align-items: end;
  min-height: calc(100vh - 112px);
  overflow: hidden;
  color: #ffffff;
  background:
    linear-gradient(135deg, rgba(42, 41, 37, 0.96), rgba(77, 58, 42, 0.86)),
    var(--color-graphite);
}

.home-hero__media,
.home-hero__overlay {
  position: absolute;
  inset: 0;
}

.home-hero__media {
  background:
    linear-gradient(135deg, rgba(42, 41, 37, 0.96), rgba(77, 58, 42, 0.86)),
    var(--color-graphite);
}

.home-hero__media img,
.home-hero__media iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.home-hero__media img {
  opacity: 0.52;
  transition: opacity 1.2s ease;
}

.home-hero__media iframe {
  left: 50%;
  top: 50%;
  width: 177.78vh;
  min-width: 100%;
  height: 56.25vw;
  min-height: 100%;
  border: 0;
  opacity: 0;
  transform: translate(-50%, -50%);
  transition: opacity 1.2s ease;
}

.home-hero.is-video-ready .home-hero__media img {
  opacity: 0.04;
}

.home-hero.is-video-ready .home-hero__media iframe {
  opacity: 0.72;
}

.home-hero__overlay {
  background:
    linear-gradient(90deg, rgba(35, 31, 27, 0.9), rgba(35, 31, 27, 0.48) 58%, rgba(35, 31, 27, 0.14)),
    linear-gradient(0deg, rgba(35, 31, 27, 0.74), transparent 48%);
}

.home-hero__content {
  position: relative;
  width: min(1200px, calc(100% - 32px));
  margin: 0 auto;
  padding: 120px 0 148px;
}

.section-kicker {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 11px;
  border: 1px solid rgba(207, 32, 47, 0.2);
  border-radius: 8px;
  color: var(--color-red);
  background: rgba(255, 255, 255, 0.72);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.home-hero .section-kicker {
  border-color: rgba(255, 255, 255, 0.32);
  color: #ffffff;
  background: rgba(207, 32, 47, 0.82);
}

.home-hero h1 {
  max-width: 820px;
  margin: 18px 0 18px;
  font-size: clamp(44px, 7vw, 82px);
  line-height: 0.98;
  letter-spacing: 0;
}

.home-hero p {
  max-width: 620px;
  margin: 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: 19px;
  line-height: 1.6;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.hero-status {
  position: absolute;
  right: max(16px, calc((100vw - 1200px) / 2));
  bottom: 32px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.hero-status span {
  min-height: 38px;
  padding: 10px 13px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  color: rgba(255, 255, 255, 0.78);
  background: rgba(255, 255, 255, 0.14);
  font-size: 13px;
  font-weight: 800;
  backdrop-filter: blur(12px);
}

.section {
  width: min(1200px, calc(100% - 32px));
  margin: 86px auto 0;
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(260px, 0.55fr);
  align-items: end;
  gap: 32px;
  margin-bottom: 34px;
}

.section-heading h2,
.trust-panel h2,
.home-final-cta h2 {
  margin: 14px 0 0;
  font-size: clamp(32px, 4.6vw, 54px);
  line-height: 1.06;
  letter-spacing: 0;
}

.section-heading p,
.trust-panel p,
.home-final-cta p {
  margin: 0;
  color: var(--color-muted);
  font-size: 17px;
  line-height: 1.65;
}

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

.service-card {
  overflow: hidden;
  border: 1px solid rgba(227, 233, 240, 0.9);
  border-radius: 12px;
  background: #ffffff;
  box-shadow: 0 14px 34px rgba(63, 54, 42, 0.1);
}

.service-card--dark {
  background: #3a332d;
  color: #ffffff;
}

.service-card__media {
  min-height: 240px;
  background-size: cover;
  background-position: center;
}

.service-card__media--rimessaggio {
  background-image:
    linear-gradient(135deg, rgba(35, 31, 27, 0.04), rgba(207, 32, 47, 0.12)),
    url("/images/rimessaggio.jpeg");
}

.service-card__media--usato {
  background-image:
    linear-gradient(135deg, rgba(35, 31, 27, 0.04), rgba(207, 32, 47, 0.12)),
    url("/images/camper-usati.jpg");
}

.service-card__media--acquisto {
  background-image:
    linear-gradient(135deg, rgba(35, 31, 27, 0.12), rgba(207, 32, 47, 0.22)),
    url("/images/acquisto-camper.jpg");
}

.service-card__body {
  padding: 24px;
}

.service-card__body span {
  color: var(--color-red);
  font-size: 12px;
  font-weight: 900;
}

.service-card--dark .service-card__body span {
  color: #f6d0b6;
}

.service-card h3 {
  margin: 10px 0 10px;
  font-size: 26px;
  line-height: 1.08;
}

.service-card p {
  margin: 0 0 18px;
  color: var(--color-muted);
  line-height: 1.55;
}

.service-card--dark p {
  color: rgba(255, 255, 255, 0.72);
}

.service-card a {
  color: var(--color-red-dark);
  font-weight: 900;
}

.service-card--dark a {
  color: #ffffff;
}

.services-anchor-nav {
  position: sticky;
  top: 126px;
  z-index: 10;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  width: min(1200px, calc(100% - 32px));
  margin: -30px auto 0;
  padding: 12px;
  border: 1px solid rgba(229, 224, 215, 0.95);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: var(--shadow-soft);
}

.services-anchor-nav a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 0 14px;
  border-radius: 8px;
  color: #394354;
  background: #fff8ef;
  font-size: 13px;
  font-weight: 900;
}

.services-anchor-nav a:hover {
  color: var(--color-red-dark);
  background: #fff1ec;
}

.service-detail,
.service-cta-strip {
  width: min(1200px, calc(100% - 32px));
  margin: 86px auto 0;
}

.service-detail {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 0;
  overflow: hidden;
  border: 1px solid rgba(227, 233, 240, 0.9);
  border-radius: 12px;
  background: #ffffff;
  box-shadow: var(--shadow-soft);
  scroll-margin-top: 170px;
}

.service-detail--image-right {
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
}

.service-detail--dark {
  color: #ffffff;
  background: #3a332d;
}

.service-detail__media {
  min-height: 520px;
  background-size: cover;
  background-position: center;
}

.service-detail__media--rimessaggio {
  background-image:
    linear-gradient(135deg, rgba(35, 31, 27, 0.08), rgba(207, 32, 47, 0.14)),
    url("/images/rimessaggio.jpeg");
}

.service-detail__media--usato {
  background-image:
    linear-gradient(135deg, rgba(35, 31, 27, 0.08), rgba(207, 32, 47, 0.14)),
    url("/images/camper-usati.jpg");
}

.service-detail__media--acquisto {
  background-image:
    linear-gradient(135deg, rgba(35, 31, 27, 0.16), rgba(207, 32, 47, 0.22)),
    url("/images/acquisto-camper.jpg");
}

.service-detail__content {
  display: grid;
  align-content: center;
  padding: clamp(28px, 5vw, 54px);
}

.service-detail h2,
.service-cta-strip h2 {
  margin: 14px 0 16px;
  font-size: clamp(32px, 4.5vw, 54px);
  line-height: 1.06;
}

.service-detail p,
.service-cta-strip p {
  margin: 0;
  color: var(--color-muted);
  font-size: 17px;
  line-height: 1.65;
}

.service-detail--dark p {
  color: rgba(255, 255, 255, 0.74);
}

.benefit-list {
  display: grid;
  gap: 12px;
  margin: 24px 0 28px;
  padding: 0;
  list-style: none;
}

.benefit-list li {
  position: relative;
  padding-left: 28px;
  color: #3d453d;
  font-weight: 800;
  line-height: 1.45;
}

.service-detail--dark .benefit-list li {
  color: rgba(255, 255, 255, 0.86);
}

.benefit-list li::before {
  position: absolute;
  left: 0;
  top: 0.2em;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  color: #ffffff;
  background: var(--color-red);
  font-size: 12px;
  font-weight: 900;
  content: "✓";
}

.service-detail .button {
  justify-self: start;
}

.service-cta-strip {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 24px;
  padding: 34px;
  border: 1px solid rgba(227, 233, 240, 0.9);
  border-radius: 12px;
  background: #ffffff;
  box-shadow: var(--shadow-soft);
}

.sell-intro,
.sell-steps,
.sell-benefits,
.sell-form-cta {
  width: min(1200px, calc(100% - 32px));
  margin: 86px auto 0;
}

.sell-intro {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(260px, 0.58fr);
  gap: 34px;
  align-items: end;
}

.sell-intro h2,
.sell-benefits h2,
.sell-form-cta h2 {
  margin: 14px 0 0;
  font-size: clamp(32px, 4.6vw, 56px);
  line-height: 1.06;
}

.sell-intro p,
.sell-form-cta p {
  margin: 0;
  color: var(--color-muted);
  font-size: 17px;
  line-height: 1.65;
}

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

.step-card {
  display: grid;
  align-content: start;
  min-height: 260px;
  padding: 24px;
  border: 1px solid rgba(227, 233, 240, 0.9);
  border-radius: 12px;
  background: #ffffff;
  box-shadow: 0 14px 34px rgba(63, 54, 42, 0.08);
}

.step-card span {
  color: var(--color-red);
  font-size: 12px;
  font-weight: 900;
}

.step-card h3 {
  margin: 12px 0 10px;
  font-size: 25px;
  line-height: 1.08;
}

.step-card p {
  margin: 0;
  color: var(--color-muted);
  line-height: 1.55;
}

.sell-benefits {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  overflow: hidden;
  border: 1px solid rgba(227, 233, 240, 0.9);
  border-radius: 12px;
  background: #ffffff;
  box-shadow: var(--shadow-soft);
}

.sell-benefits__media {
  min-height: 520px;
  background-image:
    linear-gradient(135deg, rgba(35, 31, 27, 0.08), rgba(207, 32, 47, 0.14)),
    url("/images/acquisto-camper.jpg");
  background-size: cover;
  background-position: center;
}

.sell-benefits__content {
  display: grid;
  align-content: center;
  padding: clamp(28px, 5vw, 54px);
}

.sell-benefits .button {
  justify-self: start;
}

.sell-form-cta {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: center;
  padding: 34px;
  border: 1px solid rgba(227, 233, 240, 0.9);
  border-radius: 12px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(255, 248, 239, 0.94)),
    #ffffff;
  box-shadow: var(--shadow-soft);
}

.contact-layout,
.contact-map {
  width: min(1200px, calc(100% - 32px));
  margin: 86px auto 0;
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.42fr) minmax(0, 1fr);
  gap: 24px;
  align-items: start;
}

.contact-info,
.contact-forms {
  border: 1px solid rgba(227, 233, 240, 0.9);
  border-radius: 12px;
  background: #ffffff;
  box-shadow: var(--shadow-soft);
}

.contact-info {
  position: sticky;
  top: 126px;
  display: grid;
  gap: 22px;
  padding: 30px;
}

.contact-info h2,
.contact-forms h2 {
  margin: 14px 0 0;
  font-size: clamp(30px, 4vw, 46px);
  line-height: 1.08;
}

.contact-info__group {
  display: grid;
  gap: 7px;
  padding-top: 18px;
  border-top: 1px solid var(--color-line);
}

.contact-info__group strong {
  color: var(--color-ink);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.contact-info__group a,
.contact-info__group span {
  color: var(--color-muted);
  line-height: 1.5;
}

.contact-info__group a {
  font-weight: 800;
}

.contact-forms {
  padding: 30px;
}

.contact-forms__heading {
  max-width: 720px;
}

.contact-forms__heading p {
  margin: 12px 0 0;
  color: var(--color-muted);
  font-size: 16px;
  line-height: 1.6;
}

.contact-switcher {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin: 28px 0;
  padding: 8px;
  border: 1px solid var(--color-line);
  border-radius: 12px;
  background: #fff8ef;
}

.contact-switcher__button {
  min-height: 48px;
  padding: 0 14px;
  border: 0;
  border-radius: 8px;
  color: #4d596a;
  background: transparent;
  font: inherit;
  font-size: 13px;
  font-weight: 900;
  cursor: pointer;
}

.contact-switcher__button.is-active {
  color: #ffffff;
  background: var(--color-red);
  box-shadow: 0 12px 26px rgba(207, 32, 47, 0.24);
}

.form-alert {
  display: grid;
  gap: 5px;
  margin-top: 22px;
  padding: 15px 16px;
  border-radius: 10px;
  font-size: 14px;
  line-height: 1.45;
}

.form-alert strong {
  color: var(--color-ink);
  font-size: 15px;
}

.form-alert span {
  color: var(--color-muted);
}

.form-alert--success {
  border: 1px solid rgba(45, 170, 164, 0.28);
  background: rgba(45, 170, 164, 0.1);
}

.form-alert--error {
  border: 1px solid rgba(207, 32, 47, 0.28);
  background: rgba(207, 32, 47, 0.08);
}

.contact-form {
  display: none;
}

.contact-form.is-active {
  display: grid;
  gap: 24px;
}

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

.form-grid label {
  display: grid;
  gap: 8px;
  color: #394354;
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

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

.form-grid input,
.form-grid select,
.form-grid textarea {
  width: 100%;
  min-height: 48px;
  border: 1px solid var(--color-line);
  border-radius: 8px;
  padding: 12px 13px;
  color: var(--color-ink);
  background: #fffdf9;
  font: inherit;
  font-size: 15px;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.form-grid textarea {
  resize: vertical;
}

.form-grid input:focus,
.form-grid select:focus,
.form-grid textarea:focus {
  border-color: rgba(207, 32, 47, 0.55);
  background: #ffffff;
  box-shadow: 0 0 0 4px rgba(207, 32, 47, 0.1);
}

.privacy-field {
  grid-template-columns: auto 1fr;
  align-items: start;
  gap: 10px;
  padding: 13px;
  border: 1px solid var(--color-line);
  border-radius: 8px;
  background: #fff8ef;
  color: var(--color-muted);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.45;
  text-transform: none;
}

.privacy-field input {
  width: 18px;
  min-height: 18px;
  margin-top: 1px;
  padding: 0;
}

.privacy-field a {
  color: var(--color-red-dark);
  font-weight: 900;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.contact-form .button {
  justify-self: start;
}

.contact-map {
  overflow: hidden;
  border: 1px solid rgba(227, 233, 240, 0.9);
  border-radius: 12px;
  background: #ffffff;
  box-shadow: var(--shadow-soft);
}

.contact-map iframe {
  display: block;
  width: 100%;
  height: 420px;
  border: 0;
}

.policy-layout {
  display: grid;
  grid-template-columns: minmax(240px, 0.32fr) minmax(0, 1fr);
  gap: 24px;
  width: min(1200px, calc(100% - 32px));
  margin: 86px auto 0;
  align-items: start;
}

.policy-index,
.policy-content {
  border: 1px solid rgba(227, 233, 240, 0.9);
  border-radius: 12px;
  background: #ffffff;
  box-shadow: var(--shadow-soft);
}

.policy-index {
  position: sticky;
  top: 126px;
  display: grid;
  gap: 10px;
  padding: 22px;
}

.policy-index strong {
  margin-bottom: 4px;
  color: var(--color-ink);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.policy-index a {
  padding: 10px 11px;
  border-radius: 8px;
  color: #394354;
  background: #fff8ef;
  font-size: 13px;
  font-weight: 900;
}

.policy-index a:hover {
  color: var(--color-red-dark);
  background: #fff1ec;
}

.policy-content {
  padding: clamp(26px, 4vw, 48px);
}

.policy-note {
  margin: 0 0 30px;
  padding: 16px 18px;
  border-left: 4px solid var(--color-red);
  border-radius: 8px;
  color: #4f554f;
  background: #fff8ef;
  line-height: 1.55;
}

.policy-content section {
  scroll-margin-top: 150px;
}

.policy-content section + section {
  margin-top: 38px;
  padding-top: 34px;
  border-top: 1px solid var(--color-line);
}

.policy-content h2 {
  margin: 0 0 14px;
  font-size: clamp(28px, 3.5vw, 42px);
  line-height: 1.08;
}

.policy-content p,
.policy-content li {
  color: #4f554f;
  font-size: 16px;
  line-height: 1.7;
}

.policy-content p {
  margin: 0 0 14px;
}

.policy-content ul {
  display: grid;
  gap: 8px;
  margin: 0;
  padding-left: 20px;
}

.policy-content a {
  color: var(--color-red-dark);
  font-weight: 900;
}

.policy-table-wrap {
  overflow-x: auto;
  margin-top: 18px;
}

.policy-table {
  width: 100%;
  min-width: 680px;
  border-collapse: collapse;
  overflow: hidden;
  border: 1px solid var(--color-line);
  border-radius: 10px;
}

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

.policy-table th {
  color: var(--color-ink);
  background: #fff8ef;
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.policy-table td {
  color: #4f554f;
  line-height: 1.5;
}

.trust-section,
.reviews-section,
.home-final-cta,
.quote-band {
  width: min(1200px, calc(100% - 32px));
  margin: 96px auto 0;
}

.trust-panel {
  display: grid;
  grid-template-columns: 1fr 0.85fr;
  gap: 40px;
  padding: 38px;
  border: 1px solid rgba(255, 255, 255, 0.75);
  border-radius: 12px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(255, 250, 242, 0.9)),
    var(--color-surface);
  box-shadow: var(--shadow-soft);
}

.trust-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.trust-stats div {
  display: grid;
  align-content: center;
  min-height: 150px;
  padding: 18px;
  border: 1px solid var(--color-line);
  border-radius: 10px;
  background: #fff8ef;
}

.trust-stats strong {
  font-size: 30px;
  line-height: 1;
}

.google-stars {
  position: relative;
  display: inline-block;
  width: max-content;
  margin-top: 10px;
  font-size: 19px;
  letter-spacing: 0;
  line-height: 1;
}

.google-stars__base {
  color: #d9d3c8;
}

.google-stars__fill {
  position: absolute;
  inset: 0 auto 0 0;
  overflow: hidden;
  color: #f4b400;
  white-space: nowrap;
}

.trust-stats span {
  margin-top: 8px;
  color: var(--color-muted);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.reviews-panel {
  display: grid;
  grid-template-columns: minmax(280px, 0.78fr) minmax(0, 1.22fr);
  gap: 28px;
  align-items: stretch;
  padding: 38px;
  border: 1px solid rgba(227, 233, 240, 0.9);
  border-radius: 12px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(255, 248, 239, 0.94)),
    #ffffff;
  box-shadow: var(--shadow-soft);
}

.reviews-summary {
  display: grid;
  align-content: start;
}

.reviews-summary h2 {
  margin: 14px 0 24px;
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.08;
}

.reviews-score {
  display: grid;
  justify-items: start;
  gap: 10px;
}

.reviews-score strong {
  color: var(--color-ink);
  font-size: clamp(54px, 8vw, 86px);
  line-height: 0.95;
}

.google-stars--large {
  margin-top: 0;
  font-size: clamp(28px, 4vw, 38px);
}

.reviews-score > span {
  color: var(--color-muted);
  font-size: 14px;
  font-weight: 900;
  text-transform: uppercase;
}

.reviews-link {
  display: inline-flex;
  justify-self: start;
  margin-top: 28px;
  color: var(--color-red-dark);
  font-weight: 900;
}

.reviews-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.review-card,
.reviews-empty {
  border: 1px solid rgba(229, 224, 215, 0.92);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.82);
}

.review-card {
  display: grid;
  align-content: start;
  gap: 14px;
  min-height: 220px;
  padding: 18px;
}

.review-card__head {
  display: grid;
  grid-template-columns: 44px 1fr;
  align-items: center;
  gap: 12px;
}

.review-card__avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
}

.review-card__avatar {
  position: relative;
  display: grid;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border: 2px solid rgba(255, 255, 255, 0.92);
  color: #ffffff;
  background:
    linear-gradient(135deg, rgba(207, 32, 47, 0.95), rgba(42, 41, 37, 0.96));
  box-shadow: 0 8px 18px rgba(63, 54, 42, 0.16);
  font-weight: 900;
}

.review-card__avatar img {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.review-card__avatar span {
  position: relative;
  font-size: 15px;
  line-height: 1;
}

.review-card__head a,
.review-card__head strong {
  display: block;
  color: var(--color-ink);
  font-size: 15px;
  font-weight: 900;
}

.review-card__head span {
  display: block;
  margin-top: 3px;
  color: var(--color-muted);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.review-card__stars {
  margin-top: 0;
  font-size: 17px;
}

.review-card p {
  display: -webkit-box;
  margin: 0;
  overflow: hidden;
  color: #4f554f;
  font-size: 14px;
  line-height: 1.55;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 6;
}

.reviews-empty {
  display: grid;
  align-content: center;
  min-height: 220px;
  padding: 24px;
  color: var(--color-muted);
}

.reviews-empty strong {
  display: block;
  color: var(--color-ink);
  font-size: 18px;
}

.reviews-empty span {
  display: block;
  margin-top: 8px;
  line-height: 1.5;
}

.quote-band {
  padding: 42px;
  border-radius: 12px;
  background:
    linear-gradient(135deg, #cf202f, #8f1720);
  color: #ffffff;
  text-align: center;
  box-shadow: 0 20px 55px rgba(207, 32, 47, 0.22);
}

.quote-band p {
  max-width: 820px;
  margin: 0 auto 12px;
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 900;
  line-height: 1.08;
}

.quote-band span {
  color: rgba(255, 255, 255, 0.72);
  font-weight: 800;
}

.home-final-cta {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 24px;
  padding: 34px;
  border: 1px solid rgba(227, 233, 240, 0.9);
  border-radius: 12px;
  background: #ffffff;
  box-shadow: var(--shadow-soft);
}

.site-footer {
  margin-top: 90px;
  padding: 18px 0 26px;
  background:
    linear-gradient(90deg, rgba(52, 213, 209, 0.12), transparent 30%, rgba(207, 32, 47, 0.12)),
    var(--color-bg);
}

.footer-shell {
  position: relative;
  width: min(1200px, calc(100% - 32px));
  margin: 0 auto;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 24px;
  background:
    linear-gradient(145deg, rgba(32, 40, 56, 0.98), rgba(18, 23, 34, 0.98)),
    var(--color-graphite);
  color: #ffffff;
  box-shadow: 0 22px 70px rgba(18, 23, 34, 0.2);
}

.footer-shell::before {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 8% 8%, rgba(52, 213, 209, 0.28), transparent 28%),
    radial-gradient(circle at 92% 14%, rgba(207, 32, 47, 0.3), transparent 26%);
  content: "";
  pointer-events: none;
}

.footer-cta,
.footer-grid,
.footer-bottom {
  position: relative;
}

.footer-cta {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 28px;
  padding: 34px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.footer-eyebrow {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 10px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  color: var(--color-cyan);
  background: rgba(255, 255, 255, 0.06);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.footer-cta h2 {
  max-width: 720px;
  margin: 14px 0 10px;
  font-size: clamp(28px, 4vw, 46px);
  line-height: 1.02;
  letter-spacing: 0;
}

.footer-cta p {
  max-width: 680px;
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 16px;
  line-height: 1.6;
}

.footer-cta__button {
  white-space: nowrap;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr repeat(4, 1fr);
  gap: 26px;
  padding: 34px;
}

.footer-brand p,
.footer-column,
.footer-column address,
.footer-list {
  color: rgba(255, 255, 255, 0.7);
}

.footer-logo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 96px;
  height: 70px;
  margin-bottom: 16px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.92);
}

.footer-logo img {
  display: block;
  width: 74px;
  height: auto;
}

.footer-brand p {
  max-width: 270px;
  margin: 0 0 10px;
  line-height: 1.55;
}

.footer-column h3 {
  margin: 0 0 14px;
  color: #ffffff;
  font-size: 14px;
  font-weight: 900;
  text-transform: uppercase;
}

.footer-list {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
  line-height: 1.45;
}

.footer-list a,
.footer-map {
  color: rgba(255, 255, 255, 0.82);
  transition: color 0.2s ease;
}

.footer-list a:hover,
.footer-map:hover {
  color: #ffffff;
}

.footer-column address {
  font-style: normal;
  line-height: 1.55;
}

.footer-map {
  display: inline-flex;
  margin-top: 12px;
  font-weight: 800;
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  justify-content: space-between;
  padding: 18px 34px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.58);
  font-size: 13px;
}

@media (max-width: 980px) {
  .header-main {
    grid-template-columns: auto auto;
    min-height: 72px;
  }

  .header-actions {
    display: none;
  }

  .nav-toggle-button {
    display: inline-flex;
    justify-self: end;
  }

  .primary-nav {
    grid-column: 1 / -1;
    justify-self: stretch;
    display: none;
    padding: 8px;
    border-radius: 14px;
  }

  .nav-toggle:checked ~ .primary-nav {
    display: block;
  }

  .primary-nav__list {
    display: grid;
    gap: 6px;
  }

  .primary-nav__link {
    min-height: 46px;
    justify-content: center;
    background: rgba(255, 255, 255, 0.72);
  }

  .footer-cta,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    gap: 30px;
  }

  .footer-cta__button {
    justify-self: start;
  }

  .home-hero {
    min-height: 760px;
  }

  .page-hero {
    min-height: 620px;
  }

  .home-hero__content {
    padding: 96px 0 150px;
  }

  .section-heading,
  .service-grid,
  .service-detail,
  .service-detail--image-right,
  .sell-intro,
  .sell-benefits,
  .sell-form-cta,
  .contact-layout,
  .policy-layout,
  .trust-panel,
  .reviews-panel,
  .service-cta-strip,
  .home-final-cta {
    grid-template-columns: 1fr;
  }

  .service-grid {
    gap: 18px;
  }

  .services-anchor-nav {
    position: static;
    margin-top: 18px;
  }

  .contact-info {
    position: static;
  }

  .policy-index {
    position: static;
  }

  .contact-switcher {
    grid-template-columns: 1fr;
  }

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

  .service-detail__media {
    min-height: 330px;
  }

  .sell-benefits__media {
    min-height: 330px;
  }

  .trust-stats {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 640px) {
  .header-main {
    width: min(100% - 20px, 1200px);
    gap: 12px;
    padding: 10px;
  }

  .brand {
    min-width: 0;
  }

  .brand__mark {
    width: 64px;
    height: 48px;
  }

  .brand__logo {
    width: 52px;
  }

  .brand__name {
    font-size: 16px;
  }

  .brand__claim {
    max-width: 118px;
  }

  .site-footer {
    margin-top: 64px;
  }

  .footer-shell {
    width: min(100% - 20px, 1200px);
    border-radius: 20px;
  }

  .footer-cta,
  .footer-grid {
    padding: 24px;
  }

  .footer-cta h2 {
    font-size: 30px;
  }

  .footer-bottom {
    display: grid;
    padding: 18px 24px;
  }

  .home-hero {
    min-height: 720px;
  }

  .page-hero {
    min-height: 560px;
  }

  .home-hero__content {
    width: min(100% - 24px, 1200px);
    padding: 82px 0 160px;
  }

  .page-hero__content {
    width: min(100% - 24px, 1200px);
    padding: 76px 0 64px;
  }

  .home-hero h1 {
    font-size: 48px;
  }

  .page-hero h1 {
    font-size: 44px;
  }

  .hero-status {
    left: 12px;
    right: 12px;
    bottom: 22px;
  }

  .section,
  .services-anchor-nav,
  .service-detail,
  .service-cta-strip,
  .sell-intro,
  .sell-steps,
  .sell-benefits,
  .sell-form-cta,
  .contact-layout,
  .contact-map,
  .policy-layout,
  .trust-section,
  .reviews-section,
  .home-final-cta,
  .quote-band {
    width: min(100% - 24px, 1200px);
    margin-top: 68px;
  }

  .trust-panel,
  .reviews-panel,
  .service-cta-strip,
  .sell-form-cta,
  .contact-info,
  .contact-forms,
  .policy-content,
  .policy-index,
  .home-final-cta,
  .quote-band {
    padding: 24px;
  }

  .service-card__media {
    min-height: 170px;
  }

  .service-detail__media {
    min-height: 250px;
  }

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

  .step-card {
    min-height: auto;
  }

  .sell-benefits__media {
    min-height: 250px;
  }

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

  .contact-map iframe {
    height: 320px;
  }
}
