:root {
  --turquoise: #70BFCB;
  --blue: #003CFF;
  --navy: #123B4E;
  --deep: #071F1E;
  --green: #1E847F;
  --light-blue: #DAEDF6;
  --pale-blue: #F1F8FB;
  --text: #172026;
  --muted: #52616B;
  --border: #C9D8DE;
  --surface: #FFFFFF;
  --background: #F4F7F8;
  --yellow: #9A6B00;
  --yellow-bg: #FFF4CC;
  --red: #A52A2A;
  --red-bg: #FCE8E8;
  --grey: #5C6770;
  --grey-bg: #E9EEF0;
  --green-bg: #E2F3F1;
  --focus: #003CFF;
  --shadow: 0 14px 36px rgba(18, 59, 78, 0.12);
  --radius: 12px;
  --max-width: 1240px;
}

* {
  box-sizing: border-box;
}

html {
  color-scheme: light;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100dvh;
  min-width: 320px;
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.48;
  color: var(--text);
  background: var(--background);
}

button,
a,
input,
textarea {
  font: inherit;
}

a {
  color: #0036D6;
}

a:hover {
  text-decoration-thickness: 2px;
}

:focus-visible {
  outline: 3px solid var(--focus);
  outline-offset: 3px;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  padding: 10px 14px;
  color: #FFFFFF;
  background: var(--blue);
  border-radius: 8px;
  transform: translateY(-180%);
}

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

.shell {
  width: min(calc(100% - 32px), var(--max-width));
  margin-inline: auto;
}

.site-header {
  color: #FFFFFF;
  background: var(--navy);
}

.header-inner {
  min-height: clamp(70px, 9dvh, 90px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding-block: clamp(10px, 1.6dvh, 16px);
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
}

.brand-logo {
  display: block;
  width: clamp(52px, 6.5vw, 72px);
  height: auto;
  border-radius: 10px;
}

.brand-copy {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.brand-name {
  color: #FFFFFF;
  font-size: clamp(1.3rem, 2.2vw, 1.75rem);
  font-weight: 800;
  line-height: 1;
}

.brand-subtitle {
  color: #D6E8EC;
  font-size: clamp(0.82rem, 1.2vw, 0.95rem);
  line-height: 1.2;
}

.pilot-label {
  padding: 7px 12px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 999px;
  font-size: 0.9rem;
}

main {
  padding-top: clamp(14px, 2dvh, 24px);
  padding-bottom: clamp(24px, 4dvh, 48px);
}

.panel {
  margin-top: 0;
  padding: clamp(18px, 3vw, 38px);
  background: var(--surface);
  border: 1px solid rgba(201, 216, 222, 0.85);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.hero {
  padding-top: clamp(22px, 4dvh, 42px);
  padding-bottom: clamp(22px, 4dvh, 42px);
}

.eyebrow {
  margin: 0 0 8px;
  color: #1C6671;
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  color: var(--navy);
  line-height: 1.2;
}

h1 {
  max-width: 830px;
  margin: 0 0 clamp(10px, 1.8dvh, 16px);
  font-size: clamp(1.75rem, 4.1vw, 3rem);
}

h2 {
  margin-top: clamp(20px, 3dvh, 30px);
  font-size: clamp(1.22rem, 2.4vw, 1.65rem);
}

h3 {
  margin: 0;
  font-size: 1.05rem;
}

.lead {
  max-width: 790px;
  margin: 0 0 clamp(14px, 2dvh, 22px);
  color: var(--muted);
  font-size: clamp(1rem, 1.7vw, 1.15rem);
}

.facts {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: clamp(14px, 2.2dvh, 22px) 0;
}

.facts span {
  padding: 7px 12px;
  color: var(--navy);
  background: var(--light-blue);
  border-radius: 999px;
  font-weight: 700;
}

.privacy-box,
.notice,
.details-box {
  margin: clamp(12px, 2dvh, 20px) 0;
  padding: clamp(12px, 2dvh, 17px) clamp(14px, 2vw, 20px);
  border-radius: 12px;
}

.privacy-box {
  background: var(--pale-blue);
  border-left: 5px solid var(--turquoise);
}

.privacy-box h2 {
  margin: 0 0 6px;
  font-size: 1.1rem;
}

.privacy-box p,
.notice p {
  margin: 0;
}

.notice {
  display: grid;
  gap: 4px;
  background: #F5F7F8;
  border: 1px solid var(--border);
}

.notice-error {
  color: #721C24;
  background: #FCE8E8;
  border-color: #E6A5AA;
}

.button {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 19px;
  border: 2px solid transparent;
  border-radius: 10px;
  cursor: pointer;
  font-weight: 700;
  text-align: center;
  text-decoration: none;
  transition: transform 120ms ease, background-color 120ms ease;
}

.button:hover {
  transform: translateY(-1px);
}

.button:disabled,
.button[aria-disabled="true"] {
  cursor: not-allowed;
  opacity: 0.5;
  transform: none;
}

.button-primary {
  color: #FFFFFF;
  background: var(--blue);
}

.button-primary:hover {
  background: #002FCA;
}

.button-secondary {
  color: var(--navy);
  background: #FFFFFF;
  border-color: var(--navy);
}

.button-text {
  margin-top: 26px;
  color: var(--navy);
  background: transparent;
  border-color: var(--border);
}

.progress-wrap {
  margin-bottom: clamp(14px, 2.2dvh, 24px);
}

.progress-meta {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 8px;
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 700;
}

.progress-track {
  height: 9px;
  overflow: hidden;
  background: #E6EDF0;
  border-radius: 999px;
}

.progress-bar {
  width: 12.5%;
  height: 100%;
  background: linear-gradient(90deg, var(--turquoise), var(--blue));
  border-radius: inherit;
  transition: width 200ms ease;
}

.step-intro {
  color: var(--muted);
  margin-bottom: clamp(12px, 2dvh, 22px);
}

#question-container {
  display: grid;
  gap: clamp(14px, 2dvh, 22px);
}

.question-card {
  margin: 0;
  padding: 0;
  border: 0;
}

.question-card legend {
  width: 100%;
  margin-bottom: clamp(8px, 1.3dvh, 12px);
  color: var(--navy);
  font-size: clamp(1rem, 1.4vw, 1.12rem);
  font-weight: 700;
}

.question-help {
  margin: -4px 0 14px;
  color: var(--muted);
  font-size: 0.96rem;
}

.options {
  display: grid;
  gap: clamp(7px, 1.1dvh, 10px);
}

.option {
  position: relative;
}

.option input {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  opacity: 0.001;
}

.option label {
  min-height: 44px;
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: clamp(9px, 1.4dvh, 13px) 14px;
  background: #FFFFFF;
  border: 2px solid var(--border);
  border-radius: 10px;
  cursor: pointer;
}

.option label::before {
  content: "";
  flex: 0 0 20px;
  width: 20px;
  height: 20px;
  margin-top: 1px;
  border: 2px solid #6B7A83;
  border-radius: 50%;
  background: #FFFFFF;
}

.option input:checked + label {
  border-color: var(--blue);
  background: #F0F4FF;
}

.option input:checked + label::before {
  border: 6px solid var(--blue);
}

.option input:focus-visible + label {
  outline: 3px solid var(--focus);
  outline-offset: 3px;
}

.navigation {
  display: flex;
  justify-content: flex-end;
  gap: 16px;
  margin-top: clamp(16px, 2.4dvh, 28px);
}

.overall-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  margin: 26px 0;
  padding: 24px;
  border-radius: 14px;
  border-left: 8px solid var(--grey);
  background: var(--grey-bg);
}

.overall-card.status-green {
  border-left-color: var(--green);
  background: var(--green-bg);
}

.overall-card.status-yellow {
  border-left-color: var(--yellow);
  background: var(--yellow-bg);
}

.overall-card.status-red {
  border-left-color: var(--red);
  background: var(--red-bg);
}

.overall-card.status-grey {
  border-left-color: var(--grey);
  background: var(--grey-bg);
}

.overall-card h2 {
  margin: 4px 0 0;
}

.score-circle {
  flex: 0 0 126px;
  width: 126px;
  height: 126px;
  display: grid;
  place-content: center;
  text-align: center;
  background: #FFFFFF;
  border: 8px solid var(--turquoise);
  border-radius: 50%;
}

.score-circle strong {
  color: var(--navy);
  font-size: 1.8rem;
}

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

.metric-label {
  display: block;
  color: var(--muted);
  font-size: 0.84rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.metrics-grid,
.dimension-grid,
.result-columns {
  display: grid;
  gap: 16px;
}

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

.metric-card {
  padding: 18px;
  background: var(--pale-blue);
  border-radius: 12px;
}

.metric-card strong {
  display: block;
  margin-top: 6px;
  color: var(--navy);
  font-size: 1.35rem;
}

.code-value {
  overflow-wrap: anywhere;
  font-family: Consolas, "Courier New", monospace;
  font-size: 0.95rem !important;
}

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

.dimension-card {
  padding: 18px;
  border: 1px solid var(--border);
  border-left: 7px solid var(--grey);
  border-radius: 12px;
}

.dimension-card.status-green {
  border-left-color: var(--green);
}

.dimension-card.status-yellow {
  border-left-color: var(--yellow);
}

.dimension-card.status-red {
  border-left-color: var(--red);
}

.dimension-card.status-grey {
  border-left-color: var(--grey);
}

.dimension-card p {
  margin: 8px 0 0;
  color: var(--muted);
}

.status-badge {
  display: inline-block;
  margin-top: 10px;
  padding: 5px 9px;
  border-radius: 999px;
  font-size: 0.84rem;
  font-weight: 700;
  background: var(--grey-bg);
}

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

.result-columns > section,
.critical-section,
.summary-section {
  margin-top: 24px;
  padding: 20px;
  background: #FAFCFD;
  border: 1px solid var(--border);
  border-radius: 12px;
}

.critical-section {
  background: var(--red-bg);
  border-color: #E9B1B1;
}

.result-list,
.action-list {
  padding-left: 22px;
}

.result-list li,
.action-list li {
  margin: 8px 0;
}

#result-summary {
  width: 100%;
  min-height: 300px;
  resize: vertical;
  padding: 14px;
  color: var(--text);
  background: #FFFFFF;
  border: 1px solid var(--border);
  border-radius: 10px;
}

.print-summary {
  display: none;
  white-space: pre-wrap;
  overflow-wrap: anywhere;
  margin: 0;
  color: var(--text);
}

.status-message {
  min-height: 24px;
  margin-top: 8px;
  color: var(--green);
  font-weight: 700;
}

.result-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 16px;
}

.print-advice {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 0.94rem;
}

.review-cta {
  margin-top: 30px;
  padding: clamp(24px, 4vw, 38px);
  color: #FFFFFF;
  background: var(--navy);
  border-radius: 16px;
}

.review-cta h2,
.review-cta .eyebrow {
  color: #FFFFFF;
}

.review-cta .eyebrow {
  opacity: 0.8;
}

.review-cta .small {
  color: #D6E4E8;
}

.cost-note,
.mail-fallback,
.contact-address {
  margin: 12px 0;
}

.cost-note {
  padding: 12px 14px;
  color: #10292D;
  background: #DDF5F7;
  border-radius: 10px;
  font-weight: 700;
}

.contact-address {
  color: #FFFFFF;
  font-weight: 700;
  overflow-wrap: anywhere;
}

.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 14px;
}

.review-cta .button-primary {
  margin-top: 8px;
  color: var(--deep);
  background: var(--turquoise);
}

.review-cta .button-secondary.button-on-dark {
  color: #FFFFFF;
  background: transparent;
  border-color: #D6E4E8;
}

.details-box {
  background: #F5F7F8;
  border: 1px solid var(--border);
}

.details-box summary {
  cursor: pointer;
  color: var(--navy);
  font-weight: 700;
}

.site-footer {
  padding: 36px 0;
  color: #E8F0F2;
  background: var(--deep);
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 28px;
}

.footer-inner p {
  margin: 6px 0 0;
  color: #BFD0D5;
}

.footer-inner nav {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 16px;
}

.footer-inner a {
  color: #FFFFFF;
}

[hidden] {
  display: none !important;
}

@media (max-width: 760px) {
  .header-inner {
    min-height: 64px;
    padding-block: 10px;
  }

  .pilot-label {
    display: none;
  }

  .panel {
    padding: 22px 18px;
  }

  h1 {
    font-size: 2rem;
  }

  .metrics-grid,
  .dimension-grid,
  .result-columns {
    grid-template-columns: 1fr;
  }

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

  .score-circle {
    width: 108px;
    height: 108px;
    flex-basis: 108px;
  }

  .navigation,
  .result-actions,
  .cta-actions,
  .footer-inner {
    flex-direction: column;
  }

  .navigation .button,
  .result-actions .button,
  .cta-actions .button {
    width: 100%;
  }

  .footer-inner nav {
    flex-direction: column;
  }
}

@media (min-width: 900px) {
  #question-container {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-items: start;
  }
}

@media (max-height: 900px) and (min-width: 900px) {
  .shell {
    width: min(calc(100% - 28px), var(--max-width));
  }

  .panel {
    padding: 18px 28px;
  }

  .hero {
    padding-top: 24px;
    padding-bottom: 24px;
  }

  .header-inner {
    min-height: 66px;
    padding-block: 10px;
  }

  .brand-logo {
    width: 58px;
  }

  .pilot-label {
    padding: 5px 10px;
  }

  h1 {
    font-size: clamp(1.75rem, 3.4vw, 2.55rem);
  }

  .lead {
    font-size: 1.02rem;
  }

  .facts,
  .privacy-box,
  .notice {
    margin-block: 12px;
  }

  .progress-wrap {
    margin-bottom: 14px;
  }

  .step-intro {
    margin-bottom: 12px;
  }

  .question-card legend {
    font-size: 1rem;
  }

  .option label {
    min-height: 40px;
    padding: 8px 12px;
    font-size: 0.93rem;
  }

  .navigation {
    margin-top: 12px;
  }
}

@media (max-height: 780px) and (min-width: 900px) {
  :root {
    --max-width: 1160px;
  }

  body {
    line-height: 1.38;
  }

  .panel {
    padding: 16px 24px;
  }

  .hero {
    padding-top: 18px;
    padding-bottom: 18px;
  }

  .header-inner {
    min-height: 58px;
    padding-block: 8px;
  }

  .brand-logo {
    width: 50px;
  }

  h1 {
    margin-bottom: 8px;
    font-size: clamp(1.5rem, 3vw, 2.18rem);
  }

  h2 {
    margin-top: 16px;
  }

  .lead,
  .step-intro {
    margin-bottom: 10px;
  }

  .facts {
    gap: 8px;
  }

  .facts span {
    padding: 5px 10px;
  }

  .privacy-box,
  .notice {
    padding: 10px 14px;
  }

  #question-container {
    gap: 12px;
  }

  .options {
    gap: 6px;
  }

  .option label {
    min-height: 36px;
    padding: 6px 10px;
    font-size: 0.88rem;
  }
}

@media (max-width: 380px) {
  .shell {
    width: min(calc(100% - 20px), var(--max-width));
  }

  .panel {
    padding: 20px 14px;
  }

  .option label {
    padding: 12px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition: none !important;
  }
}

@media print {
  @page {
    margin: 9mm;
  }

  body {
    color: #000000;
    background: #FFFFFF;
    font-size: 8.5pt;
    line-height: 1.18;
  }

  .site-header,
  .site-footer,
  .result-actions,
  .review-cta,
  .button-text,
  .skip-link,
  .print-advice,
  details {
    display: none !important;
  }

  .shell {
    width: 100%;
  }

  .panel {
    margin: 0;
    padding: 0;
    border: 0;
    box-shadow: none;
  }

  .overall-card,
  .metric-card,
  .dimension-card,
  .result-columns > section,
  .critical-section,
  .summary-section {
    break-inside: avoid;
    background: #FFFFFF !important;
  }

  h1 {
    margin-bottom: 4pt;
    font-size: 16pt;
  }

  h2 {
    margin: 7pt 0 3pt;
    font-size: 11.5pt;
  }

  h3 {
    font-size: 10pt;
  }

  .lead,
  .eyebrow {
    margin-bottom: 6pt;
  }

  .overall-card {
    margin: 5pt 0;
    padding: 5pt;
  }

  .score-circle {
    width: auto;
    height: auto;
    flex-basis: auto;
    display: block;
    padding: 0;
    border: 0;
    text-align: left;
  }

  .metrics-grid,
  .dimension-grid,
  .result-columns {
    gap: 4pt;
  }

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

  .metric-card,
  .dimension-card,
  .result-columns > section,
  .critical-section,
  .summary-section {
    padding: 4pt;
    border-radius: 0;
  }

  .dimension-card {
    border-left-width: 3pt;
  }

  .dimension-card p {
    margin-top: 2pt;
    font-size: 8pt;
  }

  .metric-card strong {
    margin-top: 2pt;
    font-size: 10.5pt;
  }

  .status-badge {
    margin-top: 2pt;
    padding: 1pt 3pt;
    border-radius: 0;
    font-size: 7.5pt;
  }

  .result-list,
  .action-list {
    margin: 4pt 0;
    padding-left: 16pt;
  }

  .result-list li,
  .action-list li {
    margin: 2pt 0;
  }

  #result-summary {
    display: none;
  }

  .print-summary {
    display: block;
    max-height: none;
    font-size: 7.5pt;
  }

  .code-value {
    overflow-wrap: anywhere;
    word-break: break-word;
  }

  a {
    color: #000000;
    text-decoration: none;
  }
}

.price-box { display:grid; gap:3px; width:fit-content; margin:16px 0; padding:14px 18px; color:var(--deep); background:#DDF5F7; border-radius:12px; }
.price-box strong { font-size:1.35rem; }
.price-summary { display:grid; grid-template-columns:repeat(2,minmax(0,1fr)); gap:16px; margin:20px 0; }
.price-summary > div { padding:18px; background:var(--pale-blue); border:1px solid var(--border); border-radius:12px; }
.price-summary strong { display:block; margin-top:6px; color:var(--navy); font-size:1.4rem; }
.form-grid { display:grid; grid-template-columns:repeat(2,minmax(0,1fr)); gap:16px; margin-top:22px; }
.form-field { display:grid; align-content:start; gap:7px; }
.form-field-wide { grid-column:1 / -1; }
.form-field label { color:var(--navy); font-weight:700; }
.form-field input,.form-field select { min-height:46px; width:100%; padding:10px 12px; color:var(--text); background:#FFFFFF; border:1px solid var(--border); border-radius:9px; }
.form-field input:focus,.form-field select:focus { border-color:var(--blue); }
.form-field small { color:var(--muted); }
.confirmation-list { display:grid; gap:12px; margin:22px 0; }
.check-row { display:flex; gap:12px; align-items:flex-start; padding:14px; background:#F7FAFB; border:1px solid var(--border); border-radius:10px; }
.check-row input { flex:0 0 auto; width:20px; height:20px; margin-top:2px; }
.order-actions { margin-top:24px; padding:22px; background:var(--pale-blue); border:1px solid var(--turquoise); border-radius:14px; }
.order-actions h2 { margin-top:0; }
@media (max-width:720px) { .form-grid,.price-summary { grid-template-columns:1fr; } .form-field-wide { grid-column:auto; } }
@media print { #order-view { display:none !important; } }


:root {
  --website-navy: #123B4E;
  --website-petrol: #071F1E;
  --website-turquoise: #70BFCB;
  --website-blue: #227296;
  --website-light: #DAEDF6;
  --website-white: #FFFFFF;
  --content-standard: 1240px;
  --page-gutter: clamp(18px, 3.2vw, 48px);
}

body.menu-open { overflow: hidden; }

.container {
  width: min(var(--content-standard), calc(100% - (2 * var(--page-gutter))));
  margin-inline: auto;
}

.site-header {
  position: fixed;
  z-index: 1500;
  inset: 0 0 auto;
  border-bottom: 1px solid rgba(112, 191, 203, .16);
  background: rgba(18, 59, 78, .96);
  color: var(--website-white);
  backdrop-filter: blur(14px);
  transition: box-shadow .18s ease, background-color .18s ease;
}

.site-header.is-scrolled {
  background: rgba(18, 59, 78, .99);
  box-shadow: 0 12px 30px rgba(7, 31, 30, .22);
}

.site-header .header-inner {
  display: flex;
  min-height: 72px;
  align-items: center;
  gap: clamp(10px, 1.1vw, 18px);
  padding-block: 8px;
}

.site-header .brand,
.mobile-navigation .brand,
.site-footer .brand {
  display: inline-flex;
  width: clamp(96px, 7vw, 128px);
  height: 56px;
  flex: 0 0 auto;
  align-items: center;
  gap: 0;
  color: inherit;
  text-decoration: none;
}

.site-header .brand img,
.mobile-navigation .brand img,
.site-footer .brand img {
  display: block;
  width: auto;
  max-width: 100%;
  height: 52px;
  object-fit: contain;
  border-radius: 0;
}

.desktop-nav--module {
  display: flex;
  flex: 1 1 auto;
  justify-content: flex-end;
  gap: 4px;
}

.desktop-nav--module a,
.header-exit-link {
  display: inline-flex;
  min-height: 40px;
  align-items: center;
  border-radius: 8px;
  padding: 8px 10px;
  color: var(--website-white);
  font-size: .84rem;
  font-weight: 700;
  line-height: 1.25;
  text-decoration: none;
}

.desktop-nav--module a:hover,
.desktop-nav--module a[aria-current="page"] {
  background: rgba(112, 191, 203, .12);
  color: var(--website-turquoise);
}

.header-exit-link {
  flex: 0 0 auto;
  border: 1px solid rgba(112,191,203,.45);
  background: rgba(255,255,255,.06);
}

.header-exit-link:hover,
.mobile-exit-link:hover {
  background: var(--website-turquoise);
  color: var(--website-petrol);
}

.menu-button {
  display: none;
  width: 46px;
  height: 46px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  margin-left: auto;
  border: 1px solid rgba(255,255,255,.28);
  border-radius: 10px;
  background: transparent;
  cursor: pointer;
}

.menu-button span {
  width: 21px;
  height: 2px;
  border-radius: 999px;
  background: var(--website-white);
}

.mobile-navigation {
  position: fixed;
  z-index: 3000;
  inset: 0;
  padding: 16px;
  background: rgba(7,31,30,.98);
}

.mobile-navigation[hidden] { display: none; }

.mobile-navigation__panel {
  overflow-y: auto;
  max-height: calc(100vh - 32px);
  border: 1px solid rgba(112,191,203,.3);
  border-radius: 22px;
  padding: 22px;
  background: var(--website-navy);
}

.mobile-navigation__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}

.menu-close {
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 10px;
  background: rgba(255,255,255,.1);
  color: var(--website-white);
  font-size: 1.45rem;
  cursor: pointer;
}

.mobile-navigation nav {
  display: grid;
  gap: 5px;
  margin-bottom: 22px;
}

.mobile-navigation nav a,
.mobile-exit-link {
  border-radius: 10px;
  padding: 12px 13px;
  color: var(--website-white);
  font-size: 1.02rem;
  font-weight: 700;
  text-decoration: none;
}

.mobile-navigation nav a:hover,
.mobile-navigation nav a[aria-current="page"] {
  background: rgba(112,191,203,.13);
}

.mobile-exit-link {
  display: inline-flex;
  border: 1px solid rgba(112,191,203,.45);
}

main.shell {
  padding-top: calc(86px + clamp(14px, 2dvh, 24px));
}

.module-breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 16px;
}

.module-breadcrumb a {
  display: inline-flex;
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 8px 12px;
  background: rgba(255,255,255,.9);
  color: var(--navy);
  font-size: .9rem;
  font-weight: 700;
  text-decoration: none;
}

.module-breadcrumb a:hover {
  border-color: var(--turquoise);
  color: var(--blue);
}

.case-number-box {
  display: grid;
  gap: 4px;
  margin: 12px 0 18px;
  padding: 14px 16px;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: #FFFFFF;
}

.case-number-box strong {
  color: var(--navy);
  overflow-wrap: anywhere;
  font-family: Consolas, "Courier New", monospace;
}

.site-footer {
  margin-top: clamp(34px, 5vw, 64px);
  padding: 68px 0 26px;
  background: var(--website-petrol);
  color: #EAF7F9;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.15fr repeat(3,minmax(0,.9fr));
  gap: 40px;
}

.footer-brand p { max-width: 36ch; color: #C6E2E7; }
.footer-title {
  margin: 0 0 15px;
  color: var(--website-white);
  font-size: .86rem;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
}
.footer-links { display: grid; gap: 9px; }
.footer-links a { color: #EAF7F9; font-size: .91rem; text-decoration: none; }
.footer-links a:hover { color: var(--website-turquoise); }
.footer-bottom {
  display: flex;
  justify-content: flex-start;
  gap: 22px;
  margin-top: 48px;
  border-top: 1px solid rgba(112,191,203,.18);
  padding-top: 22px;
  color: #A9CDD4;
  font-size: .82rem;
}

@media (max-width: 1280px) {
  .desktop-nav--module,
  .header-exit-link { display: none; }
  .menu-button { display: inline-flex; }
}

@media (max-width: 900px) {
  .footer-grid { grid-template-columns: repeat(2,minmax(0,1fr)); }
}

@media (max-width: 680px) {
  .site-header .brand,
  .mobile-navigation .brand,
  .site-footer .brand { width: 96px; height: 52px; }
  .site-header .brand img,
  .mobile-navigation .brand img,
  .site-footer .brand img { height: 48px; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { display: grid; }
}

@media print {
  .mobile-navigation,
  .module-breadcrumb,
  .site-header,
  .site-footer {
    display: none !important;
  }
  main.shell { padding-top: 0; }
}


/* R3 – kompaktere Ergebnis- und Bestellansicht */
#result-view.panel { padding: clamp(18px, 2.2vw, 28px); }
#result-view h1 { font-size: clamp(1.8rem, 3vw, 2.45rem); margin-bottom: 8px; }
#result-view .lead { margin-bottom: 14px; font-size: 1rem; }
#result-view h2 { margin-top: 16px; margin-bottom: 8px; font-size: clamp(1.05rem, 1.8vw, 1.32rem); }
#result-view .overall-card { margin: 14px 0; padding: 16px 20px; }
#result-view .score-circle { width: 110px; height: 110px; flex-basis: 110px; }
.metrics-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; }
.metric-card { padding: 12px 14px; }
.dimension-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 10px; }
.dimension-card { padding: 11px 12px; border-left-width: 5px; }
.dimension-card h3 { font-size: 0.93rem; line-height: 1.25; }
.dimension-card p { margin: 4px 0; font-size: 0.86rem; }
.status-badge { margin-top: 4px; padding: 3px 8px; font-size: 0.76rem; }
.result-columns { gap: 12px; margin-top: 14px; }
.critical-section { margin-top: 14px; padding: 12px 16px; }
.result-list li, .action-list li { margin: 4px 0; }
.review-cta { margin-top: 18px; padding: 22px 26px; }
.price-box { width: min(100%, 620px); padding: 12px 14px; }
.price-box strong { font-size: 1.18rem; }
.price-detail, .tax-summary { font-size: 0.94rem; line-height: 1.35; font-weight: 600; }
.price-summary strong.tax-summary { font-size: 1rem; }
@media (max-width: 1120px) { .dimension-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (max-width: 640px) { .dimension-grid, .metrics-grid { grid-template-columns: 1fr; } }
/* iOS/mobile safe-area root background correction */
html {
  min-height: 100%;
  background: #123B4E;
  background-color: #123B4E;
  overscroll-behavior-y: none;
}

body {
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  background: #123B4E;
  background-color: #123B4E;
}

main,
.site-main,
.page-main {
  flex: 1 0 auto;
  background: #FFFFFF;
}

.site-header,
.mobile-header,
.mobile-navigation,
.mobile-navigation__panel,
.mobile-navigation__header,
.site-footer {
  background: #123B4E;
  background-color: #123B4E;
}

.mobile-navigation,
.mobile-navigation__panel,
.site-footer {
  padding-bottom: calc(24px + env(safe-area-inset-bottom, 0px));
}

