@font-face {
  font-family: "Mulish";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("fonts/mulish-400.woff2") format("woff2");
}

@font-face {
  font-family: "Mulish";
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url("fonts/mulish-500.woff2") format("woff2");
}

@font-face {
  font-family: "Mulish";
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url("fonts/mulish-600.woff2") format("woff2");
}

@font-face {
  font-family: "Mulish";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("fonts/mulish-700.woff2") format("woff2");
}

@font-face {
  font-family: "Mulish";
  font-style: normal;
  font-weight: 800;
  font-display: swap;
  src: url("fonts/mulish-800.woff2") format("woff2");
}

@font-face {
  font-family: "Mulish";
  font-style: normal;
  font-weight: 900;
  font-display: swap;
  src: url("fonts/mulish-900.woff2") format("woff2");
}

:root {
  --blue: #1c4a8a;
  --blue-dark: #070b47;
  --blue-soft: #edf3f9;
  --mint: #68d39e;
  --mint-dark: #2ea975;
  --mint-soft: #effaf6;
  --ink: #263345;
  --muted: #707070;
  --line: #dfe6e5;
  --surface: #ffffff;
  --soft: #f6f8f7;
  --danger: #b33030;
  --shadow: 0 22px 58px rgba(7, 11, 71, 0.13);
  --soft-shadow: 0 10px 30px rgba(28, 74, 138, 0.08);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--muted);
  background: #ffffff;
  font-family: "Mulish", Arial, Helvetica, sans-serif;
  font-size: 16px;
  font-synthesis: none;
  line-height: 1.75;
  letter-spacing: 0;
}

body,
input,
select,
textarea,
button {
  font-family: "Mulish", Arial, Helvetica, sans-serif;
}

a {
  color: inherit;
}

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

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  color: var(--blue);
  line-height: 1.25;
  letter-spacing: 0;
}

h1 {
  font-size: 48px;
  font-weight: 800;
}

h2 {
  margin-bottom: 15px;
  font-size: 40px;
  font-weight: 800;
}

h3 {
  margin-bottom: 10px;
  font-size: 21px;
  font-weight: 800;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  background: rgba(255, 255, 255, 0.98);
  border-bottom: 1px solid rgba(28, 74, 138, 0.08);
  box-shadow: 0 3px 18px rgba(7, 11, 71, 0.05);
}

.header-inner {
  position: relative;
  display: flex;
  min-height: 108px;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}

.brand {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 14px;
  text-decoration: none;
}

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

.brand-division {
  padding-left: 14px;
  color: var(--muted);
  border-left: 1px solid var(--line);
  font-size: 13px;
  font-weight: 700;
}

.nav-links {
  display: flex;
  min-width: 0;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.nav-links a {
  padding: 40px 5px;
  color: var(--blue);
  font-size: 13px;
  font-weight: 800;
  line-height: 1;
  text-decoration: none;
  white-space: nowrap;
}

.nav-links a:hover,
.nav-links a:focus-visible {
  color: var(--mint-dark);
}

.nav-toggle {
  display: none;
  min-height: 44px;
  align-items: center;
  gap: 10px;
  padding: 7px 0;
  color: var(--blue);
  background: transparent;
  border: 0;
  cursor: pointer;
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.nav-toggle-lines,
.nav-toggle-lines::before,
.nav-toggle-lines::after {
  display: block;
  width: 23px;
  height: 2px;
  background: var(--blue);
  content: "";
  transition: transform 180ms ease, opacity 180ms ease;
}

.nav-toggle-lines {
  position: relative;
}

.nav-toggle-lines::before {
  position: absolute;
  top: -7px;
}

.nav-toggle-lines::after {
  position: absolute;
  top: 7px;
}

.site-header.menu-open .nav-toggle-lines {
  background: transparent;
}

.site-header.menu-open .nav-toggle-lines::before {
  top: 0;
  transform: rotate(45deg);
}

.site-header.menu-open .nav-toggle-lines::after {
  top: 0;
  transform: rotate(-45deg);
}

.button {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 11px 24px;
  color: var(--blue);
  background: #ffffff;
  border: 1px solid transparent;
  border-radius: 40px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 800;
  line-height: 1.3;
  text-align: center;
  text-decoration: none;
}

.button span[aria-hidden="true"] {
  font-size: 20px;
  line-height: 1;
}

.gradient-button,
.button.primary,
.header-cta {
  color: #ffffff;
  background: linear-gradient(74deg, var(--mint) 0%, var(--blue) 100%);
  border-color: transparent;
  box-shadow: 0 8px 20px rgba(28, 74, 138, 0.16);
}

.gradient-button:hover,
.gradient-button:focus-visible,
.button.primary:hover,
.button.primary:focus-visible,
.header-cta:hover,
.header-cta:focus-visible {
  color: #ffffff;
  background: linear-gradient(74deg, #4fc98e 0%, #153d78 100%);
  transform: translateY(-1px);
}

.button.secondary {
  color: var(--blue);
  background: #ffffff;
  border-color: #bfd0df;
}

.button.secondary:hover,
.button.secondary:focus-visible {
  color: #ffffff;
  background: var(--blue);
}

.button:disabled {
  cursor: wait;
  opacity: 0.65;
  transform: none;
}

.header-cta {
  min-width: 168px;
  min-height: 44px;
  padding-inline: 22px;
}

.hero {
  position: relative;
  display: grid;
  min-height: 690px;
  align-items: stretch;
  color: #ffffff;
  background-color: #182d46;
  background-image: url("images/serviceaktion-hero.webp");
  background-position: center;
  background-size: cover;
}

.hero::before {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(7, 11, 71, 0.82) 0%, rgba(7, 11, 71, 0.58) 42%, rgba(7, 11, 71, 0.06) 72%);
  content: "";
}

.hero-inner {
  position: relative;
  display: flex;
  align-items: flex-start;
  padding-block: 90px 115px;
}

.hero-content {
  width: min(700px, 66%);
}

.campaign-label,
.eyebrow {
  margin: 0 0 12px;
  color: var(--mint-dark);
  font-size: 13px;
  font-weight: 900;
  line-height: 1.4;
  text-transform: uppercase;
}

.campaign-label {
  color: var(--mint);
  font-size: 14px;
}

.hero h1 {
  max-width: 730px;
  margin-bottom: 23px;
  color: #ffffff;
  font-size: 46px;
  font-weight: 800;
  line-height: 1.3;
  text-transform: uppercase;
}

.hero h1 span {
  position: relative;
  display: block;
  width: fit-content;
}

.hero h1 span::after {
  display: block;
  width: min(260px, 68%);
  height: 4px;
  margin-top: 5px;
  background: linear-gradient(90deg, var(--mint), rgba(104, 211, 158, 0));
  border-radius: 10px;
  content: "";
}

.hero-copy {
  max-width: 625px;
  margin-bottom: 18px;
  color: rgba(255, 255, 255, 0.94);
  font-size: 19px;
  line-height: 1.65;
}

.hero-price-teaser {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 4px 9px;
  margin-bottom: 24px;
  color: #ffffff;
  font-size: 19px;
  font-weight: 700;
}

.hero-price-teaser strong {
  color: var(--mint);
  font-size: 32px;
  font-weight: 900;
  line-height: 1;
}

.hero-price-teaser span {
  color: rgba(255, 255, 255, 0.72);
  font-size: 12px;
  font-weight: 600;
}

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

.hero-cta {
  min-height: 52px;
  padding-inline: 30px;
  font-size: 15px;
}

.hero-validity {
  margin: 15px 0 0;
  color: rgba(255, 255, 255, 0.8);
  font-size: 13px;
  font-weight: 700;
}

.campaign-overview {
  position: relative;
  z-index: 4;
  margin-top: -105px;
  padding-bottom: 18px;
}

.campaign-panel {
  display: grid;
  grid-template-columns: minmax(0, 2.45fr) minmax(275px, 0.95fr);
  min-height: 200px;
  overflow: hidden;
  background: #ffffff;
  border-radius: 18px;
  box-shadow: var(--shadow);
}

.campaign-prices {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  padding-block: 26px;
}

.campaign-price {
  display: grid;
  min-width: 0;
  align-content: center;
  padding: 14px 27px;
  border-right: 1px solid var(--line);
  text-decoration: none;
}

.campaign-price:last-child {
  border-right: 0;
}

.campaign-price span {
  min-height: 46px;
  color: var(--blue);
  font-size: 14px;
  font-weight: 800;
  line-height: 1.45;
}

.campaign-price strong {
  color: var(--blue);
  font-size: 35px;
  font-weight: 900;
  line-height: 1.15;
}

.campaign-price strong sup {
  margin-left: 2px;
  font-size: 0.45em;
  line-height: 1;
  vertical-align: super;
}

.campaign-price small {
  color: var(--muted);
  font-size: 12px;
  text-decoration: line-through;
}

.campaign-price:hover strong,
.campaign-price:focus-visible strong {
  color: var(--mint-dark);
}

.countdown {
  display: grid;
  align-content: center;
  gap: 14px;
  padding: 28px 26px;
  color: var(--ink);
  background: var(--mint-soft);
}

.countdown-copy {
  display: grid;
  gap: 1px;
}

.countdown-copy span {
  color: var(--mint-dark);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.countdown-copy strong {
  color: var(--blue);
  font-size: 17px;
  line-height: 1.35;
}

.countdown-values {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 5px;
}

.countdown-values > span {
  display: grid;
  min-width: 0;
  place-items: center;
  padding: 6px 2px;
  background: rgba(255, 255, 255, 0.72);
  border-radius: 6px;
}

.countdown-values strong {
  color: var(--blue);
  font-size: 20px;
  line-height: 1.15;
}

.countdown-values small {
  color: var(--muted);
  font-size: 9px;
  line-height: 1.3;
}

.countdown > a {
  color: var(--blue);
  font-size: 12px;
  font-weight: 900;
  text-decoration: none;
}

.countdown.expired .countdown-values {
  opacity: 0.5;
}

.campaign-price-note {
  margin: 12px 8px 0;
  color: #8a8a8a;
  font-size: 12px;
  text-align: right;
}

.campaign-price-note strong {
  color: #59636a;
}

.section {
  padding-block: 92px;
  scroll-margin-top: 110px;
}

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

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

.section-heading p:not(.eyebrow) {
  max-width: 730px;
  margin-bottom: 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.7;
}

.process-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  list-style: none;
}

.process-list li {
  min-width: 0;
  padding: 34px 25px 36px;
  border-right: 1px solid var(--line);
}

.process-list li:first-child {
  padding-left: 0;
}

.process-list li:last-child {
  padding-right: 0;
  border-right: 0;
}

.step-number {
  display: grid;
  width: 52px;
  height: 52px;
  margin-bottom: 21px;
  place-items: center;
  color: var(--blue);
  background: var(--mint-soft);
  border: 1px solid rgba(104, 211, 158, 0.65);
  border-radius: 50%;
  font-size: 13px;
  font-weight: 900;
}

.process-list h3 {
  font-size: 18px;
}

.process-list p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.65;
}

.option-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  align-items: stretch;
}

.option-card,
.metric-card,
.table-panel,
.detail-panel {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 16px;
  box-shadow: var(--soft-shadow);
}

.option-card {
  position: relative;
  display: flex;
  min-width: 0;
  min-height: 520px;
  overflow: hidden;
  flex-direction: column;
  padding: 31px 29px;
}

.option-card::before {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 5px;
  background: #cbd7df;
  content: "";
}

.option-card.highlighted {
  border-color: rgba(104, 211, 158, 0.85);
  box-shadow: var(--shadow);
  transform: translateY(-9px);
}

.option-card.highlighted::before {
  background: linear-gradient(90deg, var(--mint), var(--blue));
}

.tag {
  align-self: flex-start;
  margin-bottom: 17px;
  padding: 5px 11px;
  color: var(--blue);
  background: var(--blue-soft);
  border-radius: 30px;
  font-size: 11px;
  font-weight: 900;
  line-height: 1.4;
  text-transform: uppercase;
}

.option-card.highlighted .tag {
  color: #16704d;
  background: var(--mint-soft);
}

.price-block {
  margin: 6px 0 22px;
}

.old-price {
  color: #9a9a9a;
  font-size: 14px;
  text-decoration: line-through;
}

.price {
  margin: 0;
  color: var(--blue);
  font-size: 39px;
  font-weight: 900;
  line-height: 1.12;
}

.price-block small {
  color: var(--muted);
  font-size: 12px;
}

.option-card > p:not(.tag, .price) {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.65;
}

.option-card ul {
  margin: 8px 0 26px;
  padding: 0;
  color: #4f5a64;
  font-size: 14px;
  list-style: none;
}

.option-card li {
  position: relative;
  padding-left: 22px;
}

.option-card li::before {
  position: absolute;
  top: 10px;
  left: 0;
  width: 8px;
  height: 8px;
  background: var(--mint);
  border-radius: 50%;
  content: "";
}

.option-card li + li {
  margin-top: 8px;
}

.text-link {
  display: inline-flex;
  min-height: 45px;
  align-self: flex-start;
  align-items: center;
  justify-content: center;
  margin-top: auto;
  padding: 10px 22px;
  color: #ffffff;
  background: linear-gradient(74deg, var(--mint), var(--blue));
  border-radius: 40px;
  font-size: 13px;
  font-weight: 900;
  text-decoration: none;
  text-transform: uppercase;
}

.text-link:hover,
.text-link:focus-visible {
  background: linear-gradient(74deg, #4fc98e, #153d78);
}

.pickup-explainer {
  margin-top: 52px;
  padding-top: 40px;
  border-top: 1px solid var(--line);
}

.pickup-explainer-heading {
  display: grid;
  max-width: 880px;
  grid-template-columns: minmax(230px, 0.72fr) minmax(0, 1.45fr);
  gap: 8px 42px;
  align-items: start;
}

.pickup-explainer-heading .eyebrow {
  grid-column: 1 / -1;
}

.pickup-explainer-heading h3 {
  margin: 0;
  color: var(--blue);
  font-size: 27px;
}

.pickup-explainer-heading > p:last-child {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.7;
}

.pickup-explainer-steps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin: 31px 0 0;
  padding: 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  list-style: none;
}

.pickup-explainer-steps li {
  min-width: 0;
  padding: 25px 22px 27px;
  border-right: 1px solid var(--line);
}

.pickup-explainer-steps li:first-child {
  padding-left: 0;
}

.pickup-explainer-steps li:last-child {
  padding-right: 0;
  border-right: 0;
}

.pickup-explainer-steps span {
  display: block;
  margin-bottom: 10px;
  color: var(--mint-dark);
  font-size: 12px;
  font-weight: 900;
}

.pickup-explainer-steps strong {
  display: block;
  margin-bottom: 7px;
  color: var(--ink);
  font-size: 15px;
}

.pickup-explainer-steps p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.6;
}

.pickup-explainer-note {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.65;
}

.pickup-explainer-note strong {
  color: var(--ink);
}

.form-section {
  background: #ffffff;
}

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

.form-intro {
  position: sticky;
  top: 138px;
}

.form-intro > p:not(.eyebrow) {
  color: var(--muted);
}

.form-contact {
  display: grid;
  gap: 3px;
  margin-top: 29px;
  padding: 22px 0 0 18px;
  border-top: 1px solid var(--line);
  border-left: 3px solid var(--mint);
}

.form-contact a {
  color: var(--blue);
  font-weight: 700;
  text-decoration: none;
}

.maintenance-form {
  display: grid;
  min-width: 0;
  gap: 22px;
}

.honeypot {
  position: absolute !important;
  left: -10000px !important;
  width: 1px !important;
  height: 1px !important;
  min-height: 0 !important;
  overflow: hidden !important;
  opacity: 0 !important;
  pointer-events: none !important;
}

.maintenance-form > fieldset {
  min-width: 0;
  margin: 0;
  padding: 29px;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 16px;
  box-shadow: var(--soft-shadow);
}

.maintenance-form > fieldset > legend {
  padding: 0 10px;
  color: var(--blue);
  font-size: 19px;
  font-weight: 900;
}

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

label {
  display: grid;
  min-width: 0;
  gap: 7px;
  color: var(--ink);
  font-size: 14px;
  font-weight: 800;
}

input,
select,
textarea {
  width: 100%;
  min-width: 0;
  min-height: 49px;
  padding: 11px 13px;
  color: var(--ink);
  background: #ffffff;
  border: 1px solid #c9d3d6;
  border-radius: 7px;
  font-size: 16px;
}

textarea {
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--blue);
  outline: 3px solid rgba(28, 74, 138, 0.13);
}

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

.choice-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-bottom: 19px;
}

.choice-card {
  min-width: 0;
  padding: 17px;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 10px;
  cursor: pointer;
}

.service-choice {
  display: grid;
  min-height: 163px;
  grid-template-rows: auto auto auto 1fr;
  align-content: start;
}

.choice-card.selected {
  background: var(--mint-soft);
  border-color: var(--mint-dark);
  box-shadow: inset 0 0 0 1px var(--mint-dark);
}

.choice-card input {
  width: 18px;
  min-height: 18px;
  margin: 0 0 5px;
  accent-color: var(--blue);
}

.choice-card > span {
  color: var(--ink);
  font-size: 15px;
}

.service-choice > strong {
  color: var(--blue);
  font-size: 23px;
}

.choice-card small {
  color: var(--muted);
  font-weight: 500;
  line-height: 1.5;
}

.shipping-note {
  display: grid;
  gap: 3px;
  margin-bottom: 20px;
  padding: 16px 18px;
  color: var(--ink);
  background: var(--mint-soft);
  border-left: 4px solid var(--mint);
  border-radius: 0 8px 8px 0;
}

.shipping-note span {
  color: var(--muted);
  font-size: 14px;
}

.service-selection-hint {
  margin: 0 0 20px;
  padding: 14px 0;
  color: var(--blue);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  font-size: 14px;
  font-weight: 800;
}

.premium-note {
  background: #eef4fb;
  border-left-color: var(--blue);
}

.pickup-fields {
  margin: 10px 0 20px;
  padding: 22px;
  background: var(--soft);
  border: 1px solid var(--line);
  border-radius: 12px;
}

.pickup-heading h3 {
  margin-bottom: 4px;
  font-size: 18px;
}

.pickup-heading p {
  margin-bottom: 18px;
  color: var(--muted);
  font-size: 14px;
}

.pickup-time-grid {
  max-width: 660px;
}

.carton-fieldset {
  min-width: 0;
  margin: 18px 0;
  padding: 16px 0 8px;
  border: 0;
  border-top: 1px solid var(--line);
}

.carton-fieldset legend {
  padding: 0 10px 0 0;
  color: var(--ink);
  font-size: 14px;
  font-weight: 800;
}

.inline-options {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 28px;
}

.inline-options label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.inline-options input {
  width: 18px;
  min-height: 18px;
  accent-color: var(--blue);
}

.form-hint {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 12px;
}

.fieldset-copy {
  margin: 0 0 18px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
}

.notes-field {
  margin-top: 4px;
}

.consent-option {
  display: grid;
  grid-template-columns: 24px minmax(0, 1fr);
  gap: 12px;
  align-items: start;
}

.consent-option input {
  margin-top: 4px;
}

.consent-option > span {
  display: grid;
  gap: 3px;
}

.privacy-option a {
  color: var(--blue);
  font-weight: 800;
}

.order-summary {
  margin-bottom: 22px;
  padding: 2px 0 20px;
  border-bottom: 1px solid var(--line);
}

.order-summary h3 {
  margin-bottom: 14px;
  color: var(--blue);
  font-size: 18px;
}

.order-summary dl {
  display: grid;
  gap: 0;
  margin: 0;
}

.order-summary dl > div {
  display: grid;
  grid-template-columns: minmax(150px, 0.65fr) minmax(0, 1fr);
  gap: 20px;
  padding: 11px 0;
  border-top: 1px solid var(--line);
}

.order-summary dt {
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.order-summary dd {
  margin: 0;
  color: var(--ink);
  font-size: 15px;
  font-weight: 900;
}

.order-summary p {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.6;
}

.form-actions {
  display: grid;
  min-width: 0;
  grid-template-columns: max-content minmax(0, 1fr);
  align-items: center;
  gap: 13px;
  padding-top: 5px;
}

.form-actions .button {
  min-height: 51px;
  padding-inline: 29px;
  text-transform: uppercase;
}

.submit-note {
  min-width: 0;
  max-width: 450px;
  margin: 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.6;
  overflow-wrap: anywhere;
}

.form-status {
  min-width: 0;
  width: 100%;
  min-height: 24px;
  grid-column: 1 / -1;
  margin: 2px 0 0;
  color: var(--muted);
  font-weight: 800;
  line-height: 1.55;
  overflow-wrap: anywhere;
}

.form-status[data-type="success"] {
  color: var(--mint-dark);
}

.form-status[data-type="error"] {
  color: var(--danger);
}

.booking-success {
  min-width: 0;
  padding: 34px;
  background: var(--mint-soft);
  border: 1px solid rgba(46, 169, 117, 0.34);
  border-top: 5px solid var(--mint);
  border-radius: 16px;
  box-shadow: var(--soft-shadow);
}

.booking-success:focus {
  outline: 3px solid rgba(28, 74, 138, 0.18);
  outline-offset: 4px;
}

.booking-success h3 {
  max-width: 690px;
  margin-bottom: 16px;
  font-size: 30px;
}

.booking-success-message {
  max-width: 760px;
  margin: 0;
  color: var(--ink);
  font-size: 17px;
  line-height: 1.75;
  overflow-wrap: anywhere;
}

.booking-success-note {
  max-width: 760px;
  margin: 24px 0 0;
  padding-top: 18px;
  color: var(--muted);
  border-top: 1px solid rgba(46, 169, 117, 0.3);
  font-size: 14px;
  line-height: 1.65;
  overflow-wrap: anywhere;
}

.compact-note {
  padding-top: 4px;
  background: #ffffff;
}

.compact-note details {
  max-width: 950px;
  padding: 24px 0;
  border-top: 1px solid var(--line);
}

.compact-note summary {
  color: var(--blue);
  cursor: pointer;
  font-weight: 800;
}

.detail-content {
  max-width: 850px;
  margin-top: 16px;
  color: var(--muted);
  font-size: 14px;
}

.site-footer {
  color: #ffffff;
  background: var(--blue-dark);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.05fr 1.05fr 0.8fr 1.45fr;
  gap: 42px;
  padding-block: 70px 58px;
}

.footer-grid section {
  display: grid;
  align-content: start;
  gap: 8px;
}

.footer-grid h2 {
  margin-bottom: 12px;
  color: var(--mint);
  font-size: 20px;
  font-weight: 800;
}

.footer-grid p,
.footer-grid address {
  margin-bottom: 5px;
  color: #d3d6e5;
  font-size: 14px;
  font-style: normal;
  line-height: 1.75;
}

.footer-grid strong {
  color: #ffffff;
}

.footer-grid a {
  color: #ffffff;
  font-size: 14px;
  text-decoration: none;
}

.footer-grid a:hover,
.footer-grid a:focus-visible {
  color: var(--mint);
}

.footer-action {
  margin-top: 5px;
  color: var(--mint) !important;
  font-weight: 800;
}

.footer-notice {
  padding-left: 28px;
  border-left: 1px solid rgba(255, 255, 255, 0.18);
}

.footer-legal {
  border-top: 1px solid rgba(255, 255, 255, 0.16);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding-block: 21px;
  color: #aeb5d0;
  font-size: 12px;
}

.footer-bottom nav {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 20px;
}

.footer-bottom a {
  color: #c8ccdc;
  text-decoration: none;
}

.footer-bottom a:hover,
.footer-bottom a:focus-visible {
  color: var(--mint);
}

[hidden] {
  display: none !important;
}

.dashboard-body {
  background: #f3f6f5;
}

.dashboard-header .header-inner {
  min-height: 88px;
}

.dashboard-header .brand img {
  width: 180px;
}

.dashboard-header .nav-links a {
  padding-block: 34px;
}

.dashboard-main {
  width: min(1540px, calc(100% - 40px));
  margin-inline: auto;
  padding-block: 42px 72px;
}

.dashboard-title {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 28px;
}

.dashboard-title h1 {
  margin-bottom: 8px;
  color: var(--blue);
  font-size: 40px;
}

.dashboard-title p:last-child {
  color: var(--muted);
}

.metric-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-bottom: 20px;
}

.metric-card {
  padding: 21px;
  border-top: 4px solid var(--blue);
}

.metric-card:nth-child(3) {
  border-top-color: var(--mint);
}

.metric-card:nth-child(4) {
  border-top-color: var(--mint-dark);
}

.metric-card span {
  display: block;
  color: var(--blue);
  font-size: 32px;
  font-weight: 900;
}

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

.dashboard-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.65fr) minmax(330px, 0.75fr);
  gap: 18px;
  align-items: start;
}

.table-panel,
.detail-panel {
  min-width: 0;
  overflow: hidden;
}

.detail-panel {
  position: sticky;
  top: 108px;
}

.panel-heading {
  display: flex;
  min-height: 64px;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 16px 19px;
  border-bottom: 1px solid var(--line);
}

.panel-heading h2 {
  margin: 0;
  font-size: 20px;
}

.panel-heading span {
  color: var(--muted);
  font-size: 14px;
}

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

table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}

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

th {
  color: var(--blue);
  background: #f8faf9;
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

td span {
  color: var(--muted);
}

.selected-row {
  background: var(--mint-soft);
}

.link-button {
  padding: 0;
  color: var(--blue);
  background: none;
  border: 0;
  cursor: pointer;
  font: inherit;
  font-weight: 900;
}

.status-select {
  min-width: 150px;
  min-height: 39px;
  font-size: 14px;
}

.empty-cell {
  height: 120px;
  color: var(--muted);
  text-align: center;
  vertical-align: middle;
}

.request-detail {
  padding: 19px;
}

.detail-list {
  display: grid;
  gap: 14px;
  margin: 0;
}

.detail-list div {
  display: grid;
  gap: 4px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--line);
}

.detail-list dt {
  color: var(--blue);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.detail-list dd {
  margin: 0;
  color: var(--ink);
}

.muted {
  color: var(--muted);
}

@media (max-width: 1120px) {
  .brand img {
    width: 188px;
  }

  .nav-links {
    gap: 5px;
  }

  .nav-links a {
    font-size: 12px;
  }

  .header-cta {
    min-width: 145px;
  }

  .campaign-price {
    padding-inline: 21px;
  }
}

@media (max-width: 940px) {
  .header-inner {
    min-height: 86px;
  }

  .brand img {
    width: 180px;
  }

  .nav-toggle {
    display: inline-flex;
    margin-left: auto;
  }

  .site-header:not(.dashboard-header) .nav-links {
    position: absolute;
    top: 100%;
    right: -20px;
    left: -20px;
    display: grid;
    max-height: 0;
    justify-content: stretch;
    gap: 0;
    overflow: hidden;
    background: #ffffff;
    border-bottom: 1px solid var(--line);
    box-shadow: 0 16px 28px rgba(7, 11, 71, 0.11);
    opacity: 0;
    pointer-events: none;
    transition: max-height 220ms ease, opacity 180ms ease;
  }

  .site-header:not(.dashboard-header) .nav-links a {
    padding: 16px 20px;
    border-top: 1px solid var(--line);
    font-size: 13px;
  }

  .site-header.menu-open .nav-links {
    max-height: 260px;
    opacity: 1;
    pointer-events: auto;
  }

  .header-cta {
    display: none;
  }

  .hero {
    min-height: 650px;
  }

  .hero-inner {
    padding-block: 82px 115px;
  }

  .hero-content {
    width: min(670px, 76%);
  }

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

  .countdown {
    grid-template-columns: minmax(200px, 1fr) minmax(280px, 1.25fr) auto;
    align-items: center;
    gap: 18px;
  }

  .countdown > a {
    white-space: nowrap;
  }

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

  .process-list li:nth-child(2) {
    padding-right: 0;
    border-right: 0;
  }

  .process-list li:nth-child(-n + 2) {
    border-bottom: 1px solid var(--line);
  }

  .process-list li:nth-child(3) {
    padding-left: 0;
  }

  .option-grid,
  .choice-grid {
    grid-template-columns: 1fr 1fr;
  }

  .option-card:last-child,
  .service-choice:last-child {
    grid-column: 1 / -1;
  }

  .option-card:last-child {
    min-height: 430px;
  }

  .pickup-explainer-heading {
    grid-template-columns: 1fr;
    gap: 7px;
  }

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

  .pickup-explainer-steps li:nth-child(2) {
    padding-right: 0;
    border-right: 0;
  }

  .pickup-explainer-steps li:nth-child(-n + 2) {
    border-bottom: 1px solid var(--line);
  }

  .pickup-explainer-steps li:nth-child(3) {
    padding-left: 0;
  }

  .form-layout {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .form-intro {
    position: static;
    max-width: 760px;
  }

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

  .footer-notice {
    padding-left: 0;
    border-left: 0;
  }

  .dashboard-layout {
    grid-template-columns: 1fr;
  }

  .detail-panel {
    position: static;
  }
}

@media (max-width: 700px) {
  .page-width,
  .dashboard-main {
    width: min(100% - 32px, 1068px);
  }

  .site-header:not(.dashboard-header) .nav-links {
    right: -16px;
    left: -16px;
  }

  .hero {
    min-height: 610px;
    background-position: 47% center;
  }

  .hero::before {
    background: linear-gradient(90deg, rgba(7, 11, 71, 0.9), rgba(7, 11, 71, 0.61) 74%, rgba(7, 11, 71, 0.22));
  }

  .hero-inner {
    padding-block: 66px 95px;
  }

  .hero-content {
    width: 100%;
  }

  .hero h1,
  h1 {
    font-size: 39px;
  }

  h2 {
    font-size: 32px;
  }

  .hero-copy {
    font-size: 17px;
  }

  .campaign-overview {
    margin-top: -76px;
  }

  .campaign-panel {
    border-radius: 14px;
  }

  .campaign-prices {
    grid-template-columns: 1fr;
    padding-block: 8px;
  }

  .campaign-price {
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    gap: 1px 14px;
    padding: 14px 18px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .campaign-price:last-child {
    border-bottom: 0;
  }

  .campaign-price span {
    min-height: 0;
  }

  .campaign-price strong {
    grid-row: 1 / 3;
    grid-column: 2;
    font-size: 30px;
  }

  .campaign-price small {
    grid-column: 1;
  }

  .countdown {
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 22px 19px;
  }

  .countdown > a {
    white-space: normal;
  }

  .campaign-price-note {
    text-align: left;
  }

  .section {
    padding-block: 65px;
  }

  .section-heading {
    margin-bottom: 32px;
  }

  .process-list,
  .option-grid,
  .choice-grid,
  .form-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .process-list li,
  .process-list li:first-child,
  .process-list li:nth-child(2),
  .process-list li:nth-child(3) {
    padding: 24px 0;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .process-list li:last-child {
    border-bottom: 0;
  }

  .step-number {
    width: 46px;
    height: 46px;
    margin-bottom: 15px;
  }

  .option-card,
  .option-card:last-child {
    min-height: 0;
  }

  .option-card.highlighted {
    transform: none;
  }

  .option-card:last-child,
  .service-choice:last-child {
    grid-column: auto;
  }

  .pickup-explainer {
    margin-top: 42px;
    padding-top: 32px;
  }

  .pickup-explainer-heading h3 {
    font-size: 24px;
  }

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

  .pickup-explainer-steps li,
  .pickup-explainer-steps li:first-child,
  .pickup-explainer-steps li:nth-child(2),
  .pickup-explainer-steps li:nth-child(3) {
    padding: 21px 0;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .pickup-explainer-steps li:last-child {
    border-bottom: 0;
  }

  .maintenance-form > fieldset {
    padding: 22px 19px;
  }

  .service-choice {
    min-height: 132px;
  }

  .pickup-fields {
    padding: 17px;
  }

  .order-summary dl > div {
    grid-template-columns: 1fr;
    gap: 4px;
  }

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

  .booking-success {
    padding: 25px 21px;
  }

  .booking-success h3 {
    font-size: 25px;
  }

  .booking-success-message {
    font-size: 16px;
  }

  .footer-grid {
    gap: 31px;
    padding-block: 54px 44px;
  }

  .footer-bottom,
  .dashboard-title {
    align-items: flex-start;
    flex-direction: column;
  }

  .dashboard-title > div {
    width: 100%;
    min-width: 0;
  }

  .dashboard-title h1 {
    max-width: 100%;
    font-size: 31px;
    overflow-wrap: anywhere;
  }

  .dashboard-header .header-inner {
    min-height: 80px;
    flex-wrap: wrap;
    gap: 5px 15px;
    padding-block: 10px;
  }

  .dashboard-header .brand img {
    width: 150px;
  }

  .dashboard-header .nav-links {
    width: 100%;
    justify-content: flex-start;
    overflow-x: auto;
  }

  .dashboard-header .nav-links a {
    padding: 8px 4px;
  }

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

@media (max-width: 440px) {
  .brand img {
    width: 154px;
  }

  .nav-toggle > span:last-child {
    display: none;
  }

  .hero {
    min-height: 590px;
  }

  .hero-inner {
    padding-block: 54px 84px;
  }

  .hero h1,
  h1 {
    font-size: 34px;
  }

  .hero-copy {
    font-size: 16px;
    line-height: 1.55;
  }

  .hero-price-teaser {
    font-size: 16px;
  }

  .hero-price-teaser strong {
    font-size: 28px;
  }

  .hero-cta,
  .form-actions .button {
    width: 100%;
  }

  .campaign-label {
    font-size: 11px;
  }

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

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

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}
