:root {
  --blue-950: #17233f;
  --blue-900: #1b3159;
  --blue-800: #1f4f8f;
  --blue-700: #2467b9;
  --blue-600: #2f76cf;
  --blue-100: #eaf3ff;
  --blue-50: #f5f9ff;
  --gray-950: #1d2530;
  --gray-700: #526173;
  --gray-500: #7b8797;
  --gray-200: #dde5ee;
  --gray-100: #f4f7fa;
  --gray-50: #fafbfd;
  --white: #ffffff;
  --accent: #e8a941;
  --accent-soft: #fff2d7;
  --green: #31b978;
  --shadow: 0 18px 45px rgba(28, 46, 74, 0.12);
  --shadow-soft: 0 10px 28px rgba(28, 46, 74, 0.08);
  --shadow-strong: 0 24px 70px rgba(23, 35, 63, 0.16);
  --border: 1px solid rgba(31, 79, 143, 0.14);
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--gray-950);
  background: var(--white);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

::selection {
  color: var(--blue-950);
  background: var(--accent-soft);
}

.skip-link {
  position: absolute;
  top: 10px;
  left: 10px;
  z-index: 100;
  padding: 10px 12px;
  border-radius: var(--radius);
  color: var(--white);
  background: var(--blue-950);
  transform: translateY(-160%);
}

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

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

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

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

p {
  color: var(--gray-700);
  font-size: 1rem;
}

.container {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
}

.narrow {
  width: min(820px, calc(100% - 40px));
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: var(--border);
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(18px);
  box-shadow: 0 1px 0 rgba(23, 35, 63, 0.02);
}

.navbar {
  position: relative;
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
  font-weight: 800;
  color: var(--blue-950);
}

.brand-mark {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border-radius: 8px;
  background: var(--blue-100);
  box-shadow: 0 10px 24px rgba(36, 103, 185, 0.25);
  overflow: hidden;
}

.brand-mark img {
  width: 44px;
  height: 44px;
  display: block;
}

.brand-text {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-links a {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 14px;
  border-radius: 8px;
  color: var(--gray-700);
  font-size: 0.95rem;
  font-weight: 700;
  transition: color 160ms ease, background 160ms ease, box-shadow 160ms ease;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--blue-800);
  background: var(--blue-100);
}

.nav-links .nav-cta {
  color: var(--white);
  background: linear-gradient(135deg, var(--blue-800), var(--blue-700));
  box-shadow: 0 10px 20px rgba(36, 103, 185, 0.18);
}

.nav-links .nav-cta:hover,
.nav-links .nav-cta.active {
  color: var(--white);
  background: var(--blue-700);
}

.nav-toggle {
  width: 44px;
  height: 44px;
  display: none;
  place-items: center;
  gap: 5px;
  padding: 10px;
  border: var(--border);
  border-radius: 8px;
  background: var(--white);
  cursor: pointer;
}

.nav-toggle span {
  width: 20px;
  height: 2px;
  display: block;
  border-radius: 999px;
  background: var(--blue-950);
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 92px 0 82px;
  background:
    radial-gradient(circle at 18% 16%, rgba(232, 169, 65, 0.18), transparent 28%),
    linear-gradient(130deg, rgba(234, 243, 255, 0.96), rgba(255, 255, 255, 0.78) 55%),
    linear-gradient(180deg, var(--white), var(--gray-50));
}

.hero::after {
  content: "";
  position: absolute;
  right: -10%;
  bottom: -38%;
  width: 560px;
  height: 560px;
  border-radius: 50%;
  background: rgba(36, 103, 185, 0.08);
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.03fr) minmax(370px, 0.9fr);
  align-items: center;
  gap: 64px;
}

.eyebrow {
  width: fit-content;
  margin-bottom: 14px;
  padding: 7px 10px;
  border: 1px solid rgba(36, 103, 185, 0.14);
  border-radius: 999px;
  color: var(--blue-700);
  background: rgba(234, 243, 255, 0.72);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1 {
  margin-bottom: 18px;
  color: var(--blue-950);
  font-size: clamp(2.75rem, 5.6vw, 4.95rem);
  line-height: 1;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 14px;
  color: var(--blue-950);
  font-size: clamp(1.72rem, 2.75vw, 2.42rem);
  line-height: 1.12;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 9px;
  color: var(--blue-950);
  font-size: 1.1rem;
  line-height: 1.22;
}

.hero-tagline {
  margin-bottom: 14px;
  color: var(--blue-900);
  font-size: 1.32rem;
  font-weight: 800;
}

.hero-intro {
  max-width: 650px;
  margin-bottom: 28px;
  color: #48576a;
  font-size: 1.1rem;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.button {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 8px;
  font-weight: 800;
  line-height: 1;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease, border-color 160ms ease;
}

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

.button.primary {
  color: var(--white);
  background: linear-gradient(135deg, var(--blue-800), var(--blue-700));
  box-shadow: 0 14px 28px rgba(31, 79, 143, 0.22);
}

.button.primary:hover {
  background: var(--blue-700);
}

.button.secondary {
  color: var(--blue-800);
  border-color: rgba(31, 79, 143, 0.28);
  background: rgba(255, 255, 255, 0.86);
}

.button.secondary:hover {
  box-shadow: 0 10px 20px rgba(31, 79, 143, 0.1);
}

.button:focus-visible,
.nav-links a:focus-visible,
.nav-toggle:focus-visible {
  outline: 3px solid rgba(232, 169, 65, 0.45);
  outline-offset: 3px;
}

.hero-trust-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.hero-trust-list span {
  min-height: 36px;
  display: inline-flex;
  align-items: center;
  padding: 0 12px;
  border: 1px solid rgba(31, 79, 143, 0.13);
  border-radius: 999px;
  color: var(--blue-950);
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 8px 18px rgba(28, 46, 74, 0.05);
  font-size: 0.9rem;
  font-weight: 750;
}

.hero-visual {
  min-height: 456px;
  display: grid;
  place-items: center;
  border: var(--border);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 22% 12%, rgba(232, 169, 65, 0.18), transparent 28%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.82), rgba(234, 243, 255, 0.9)),
    linear-gradient(180deg, var(--white), var(--gray-100));
  box-shadow: var(--shadow-strong);
}

.desk-scene {
  position: relative;
  width: min(430px, 86vw);
  height: 340px;
}

.monitor {
  position: absolute;
  top: 38px;
  left: 30px;
  width: 270px;
  height: 178px;
  padding: 20px;
  border: 10px solid var(--blue-950);
  border-radius: 8px;
  background: linear-gradient(145deg, #f8fbff, #d8e9ff);
  box-shadow: 0 26px 52px rgba(23, 35, 63, 0.2);
}

.screen-bar,
.screen-panel,
.screen-dots span {
  border-radius: 8px;
  background: var(--blue-700);
}

.screen-bar {
  width: 54%;
  height: 16px;
  margin-bottom: 20px;
}

.screen-panel {
  width: 44%;
  height: 38px;
  margin-bottom: 14px;
  background: rgba(36, 103, 185, 0.24);
}

.screen-panel.wide {
  width: 88%;
  height: 42px;
}

.screen-dots {
  display: flex;
  gap: 8px;
}

.screen-dots span {
  width: 12px;
  height: 12px;
  background: var(--accent);
}

.monitor-stand {
  position: absolute;
  top: 226px;
  left: 134px;
  width: 72px;
  height: 54px;
  border-radius: 0 0 8px 8px;
  background: var(--blue-950);
}

.keyboard {
  position: absolute;
  left: 54px;
  bottom: 30px;
  width: 246px;
  height: 58px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px;
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 18px 40px rgba(23, 35, 63, 0.14);
}

.keyboard span {
  height: 14px;
  flex: 1;
  border-radius: 4px;
  background: var(--gray-200);
}

.printer {
  position: absolute;
  right: 18px;
  top: 126px;
  width: 122px;
  height: 86px;
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 18px 40px rgba(23, 35, 63, 0.14);
}

.paper {
  position: absolute;
  top: -34px;
  left: 22px;
  width: 78px;
  height: 52px;
  border-radius: 6px;
  background: #f8fbff;
  border: 1px solid var(--gray-200);
}

.printer-light {
  position: absolute;
  right: 16px;
  bottom: 18px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--green);
}

.check-card {
  position: absolute;
  right: 0;
  bottom: 46px;
  width: 190px;
  padding: 16px;
  border: var(--border);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 18px 40px rgba(23, 35, 63, 0.14);
}

.check-card strong,
.check-card span {
  display: block;
}

.check-card strong {
  margin-bottom: 4px;
  color: var(--blue-950);
}

.check-card span {
  color: var(--gray-700);
  font-size: 0.88rem;
}

.support-card {
  position: absolute;
  left: 0;
  bottom: 100px;
  width: 178px;
  padding: 14px 15px;
  border: 1px solid rgba(232, 169, 65, 0.36);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 18px 40px rgba(23, 35, 63, 0.13);
}

.support-card span,
.support-card strong {
  display: block;
}

.support-card span {
  margin-bottom: 5px;
  color: var(--blue-700);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.support-card strong {
  color: var(--blue-950);
  font-size: 0.95rem;
  line-height: 1.25;
}

.service-wizard-section {
  padding-top: 58px;
}

.wizard-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.35fr);
  align-items: start;
  gap: 34px;
}

.wizard-copy {
  position: sticky;
  top: 104px;
}

.service-wizard {
  overflow: hidden;
  border: var(--border);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
}

.wizard-progress {
  padding: 20px 26px 18px;
  border-bottom: var(--border);
  background: var(--gray-50);
}

.wizard-progress-track {
  height: 5px;
  overflow: hidden;
  border-radius: 999px;
  background: var(--gray-200);
}

.wizard-progress-track span {
  width: 33.333%;
  height: 100%;
  display: block;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--blue-700), var(--accent));
  transition: width 240ms ease;
}

.wizard-progress-labels {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-top: 10px;
}

.wizard-progress-labels span {
  color: var(--gray-500);
  font-size: 0.78rem;
  font-weight: 850;
}

.wizard-progress-labels span:nth-child(2) {
  text-align: center;
}

.wizard-progress-labels span:last-child {
  text-align: right;
}

.wizard-progress-labels span.active {
  color: var(--blue-800);
}

.wizard-step {
  min-height: 510px;
  padding: 30px;
  background:
    radial-gradient(circle at 94% 8%, rgba(232, 169, 65, 0.12), transparent 24%),
    var(--white);
}

.wizard-step[hidden] {
  display: none;
}

.wizard-step-heading {
  max-width: 650px;
  margin-bottom: 24px;
}

.wizard-step-heading > span {
  display: block;
  margin-bottom: 6px;
  color: var(--blue-700);
  font-size: 0.78rem;
  font-weight: 950;
  text-transform: uppercase;
}

.wizard-step-heading h3,
.wizard-result-header h3 {
  margin-bottom: 8px;
  font-size: clamp(1.35rem, 2vw, 1.8rem);
}

.wizard-step-heading p,
.wizard-result-header p {
  margin-bottom: 0;
}

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

.wizard-option {
  min-height: 68px;
  display: flex;
  align-items: center;
  gap: 12px;
  width: 100%;
  padding: 10px 12px;
  border: 1px solid rgba(31, 79, 143, 0.14);
  border-radius: var(--radius);
  color: var(--blue-950);
  background: var(--blue-50);
  font: inherit;
  font-weight: 800;
  text-align: left;
  cursor: pointer;
  transition: border-color 160ms ease, background 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

.wizard-option:hover {
  transform: translateY(-1px);
  border-color: rgba(36, 103, 185, 0.3);
  box-shadow: 0 8px 18px rgba(28, 46, 74, 0.06);
}

.wizard-option.active {
  color: var(--white);
  border-color: transparent;
  background: linear-gradient(135deg, var(--blue-800), var(--blue-700));
  box-shadow: 0 12px 24px rgba(31, 79, 143, 0.18);
}

.wizard-option span {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border-radius: 8px;
  color: var(--blue-800);
  background: var(--white);
  font-size: 0.76rem;
  font-weight: 950;
}

.wizard-step-footer,
.wizard-review-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-top: 26px;
}

.wizard-step-footer p {
  margin: 0;
  color: var(--gray-500);
  font-size: 0.9rem;
}

.wizard-step-footer .button:disabled {
  opacity: 0.45;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

.wizard-review-actions {
  justify-content: flex-start;
  flex-wrap: wrap;
}

.wizard-review-actions .text-link {
  margin: 0 0 0 auto;
}

.wizard-controls {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 22px;
}

.wizard-fieldset {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0;
  padding: 16px;
  border: 0;
  border-radius: var(--radius);
  background: var(--blue-50);
}

.wizard-fieldset legend,
.wizard-checklist h4 {
  width: 100%;
  margin-bottom: 8px;
  color: var(--blue-950);
  font-size: 0.9rem;
  font-weight: 900;
}

.wizard-choice {
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 11px;
  border: var(--border);
  border-radius: 999px;
  color: var(--blue-950);
  background: var(--white);
  font-size: 0.9rem;
  font-weight: 800;
  cursor: pointer;
}

.wizard-choice input {
  width: 16px;
  min-height: 16px;
  accent-color: var(--blue-700);
}

.wizard-choice.disabled {
  opacity: 0.46;
  cursor: not-allowed;
}

.wizard-fieldset select {
  min-height: 42px;
  max-width: none;
  background: var(--white);
}

.wizard-addons {
  grid-column: 1 / -1;
}

#wizardSelectedService {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 0 12px;
  border: var(--border);
  border-radius: 999px;
  color: var(--blue-800);
  background: var(--blue-50);
  font-size: 0.9rem;
  font-weight: 850;
}

.wizard-summary {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
  margin: 22px 0 0;
  padding: 18px;
  border: 1px solid rgba(232, 169, 65, 0.38);
  border-radius: var(--radius);
  background: rgba(255, 242, 215, 0.62);
}

.wizard-summary span,
.wizard-summary strong {
  display: block;
}

.wizard-summary span {
  margin-bottom: 5px;
  color: var(--gray-700);
  font-size: 0.86rem;
  font-weight: 850;
}

.wizard-summary strong {
  color: var(--blue-950);
  font-size: 2rem;
  line-height: 1;
}

.wizard-summary p {
  max-width: 300px;
  margin: 0;
  font-size: 0.92rem;
}

.estimate-disclaimer {
  margin: 12px 0 0;
  color: var(--gray-500);
  font-size: 0.9rem;
}

.wizard-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 20px 0 24px;
}

.wizard-meta span {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 0 12px;
  border: var(--border);
  border-radius: 999px;
  color: var(--blue-950);
  background: var(--white);
  font-size: 0.9rem;
  font-weight: 850;
}

.wizard-checklist {
  margin-bottom: 24px;
}

.wizard-checklist ul {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px 14px;
  margin: 0;
  padding-left: 20px;
  color: var(--gray-700);
}

.wizard-checklist li::marker {
  color: var(--blue-700);
}

.section {
  padding: 82px 0;
}

.section-muted {
  background: linear-gradient(180deg, var(--gray-50), var(--gray-100));
}

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

.process-grid,
.fit-grid,
.service-preview-grid,
.service-detail-grid {
  display: grid;
  gap: 22px;
}

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

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

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

.mini-card,
.process-card,
.service-card,
.detail-card,
.story-card,
.values-card,
.contact-card,
.contact-form,
.stat-panel {
  border: var(--border);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow-soft);
}

.mini-card,
.process-card,
.service-card,
.detail-card,
.story-card,
.values-card,
.contact-card,
.contact-form,
.stat-panel {
  padding: 28px;
}

.mini-card,
.process-card,
.detail-card,
.story-card,
.values-card,
.contact-card,
.contact-form,
.quote-panel {
  transition: border-color 160ms ease, box-shadow 160ms ease;
}

.mini-card:hover,
.process-card:hover,
.detail-card:hover {
  border-color: rgba(36, 103, 185, 0.28);
  box-shadow: var(--shadow);
}

.process-card {
  position: relative;
  min-height: 228px;
}

.process-card span {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  margin-bottom: 18px;
  border-radius: 8px;
  color: var(--white);
  background: linear-gradient(135deg, var(--blue-800), var(--blue-700));
  font-weight: 950;
  box-shadow: 0 10px 22px rgba(36, 103, 185, 0.22);
}

.process-card p {
  margin-bottom: 0;
}

.service-card {
  position: relative;
  min-height: 262px;
  overflow: hidden;
  transition: transform 160ms ease, box-shadow 160ms ease, border-color 160ms ease;
}

.service-card::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 4px;
  background: linear-gradient(90deg, var(--blue-700), var(--accent));
  opacity: 0;
  transition: opacity 160ms ease;
}

.service-card:hover {
  transform: translateY(-3px);
  border-color: rgba(36, 103, 185, 0.34);
  box-shadow: var(--shadow);
}

.service-card:hover::after {
  opacity: 1;
}

.card-icon {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  margin-bottom: 18px;
  border-radius: 8px;
  color: var(--blue-800);
  background: linear-gradient(135deg, var(--blue-100), var(--blue-50));
  box-shadow: inset 0 0 0 1px rgba(36, 103, 185, 0.1);
  font-size: 0.86rem;
  font-weight: 900;
}

.split-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.72fr);
  align-items: center;
  gap: 46px;
}

.town-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.service-area-panel {
  display: grid;
  gap: 18px;
}

.county-grid {
  display: grid;
  gap: 12px;
}

.county-grid article {
  padding: 18px;
  border: var(--border);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow-soft);
}

.county-grid strong {
  display: block;
  margin-bottom: 6px;
  color: var(--blue-950);
}

.county-grid p {
  margin-bottom: 0;
  font-size: 0.94rem;
}

.town-list span {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 13px;
  border: var(--border);
  border-radius: 999px;
  color: var(--blue-950);
  background: var(--white);
  box-shadow: 0 8px 18px rgba(28, 46, 74, 0.05);
  font-size: 0.92rem;
  font-weight: 800;
}

.appointment-section {
  padding-top: 0;
}

.appointment-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1.1fr);
  gap: 34px;
  align-items: center;
  padding: 34px;
  border: var(--border);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(234, 243, 255, 0.88)),
    var(--white);
  box-shadow: var(--shadow-soft);
}

.appointment-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px 18px;
  margin: 0;
  padding-left: 20px;
  color: var(--gray-700);
}

.appointment-list li::marker {
  color: var(--blue-700);
}

.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.feature-item span {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
  margin-top: 4px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: inset 0 0 0 5px var(--accent-soft);
}

.feature-item p {
  margin-bottom: 0;
  color: var(--gray-700);
  font-weight: 650;
}

.stat-panel {
  color: var(--white);
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.18);
  box-shadow: none;
}

.stat-panel.light-panel {
  color: var(--blue-950);
  background: var(--white);
  border-color: rgba(31, 79, 143, 0.14);
  box-shadow: var(--shadow-soft);
}

.stat-panel strong {
  display: block;
  margin-bottom: 12px;
  font-size: 1.42rem;
}

.light-panel p {
  color: var(--gray-700);
  opacity: 1;
}

.text-link {
  display: inline-flex;
  margin-top: 8px;
  color: var(--blue-800);
  font-weight: 900;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.case-study {
  display: grid;
  grid-template-columns: 260px minmax(0, 1fr);
  gap: 34px;
  align-items: start;
  padding: 38px;
  border: var(--border);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(234, 243, 255, 0.88)),
    var(--white);
  box-shadow: var(--shadow);
}

.case-label {
  padding: 16px 18px;
  border-radius: 8px;
  color: var(--blue-950);
  background: var(--accent-soft);
  font-weight: 900;
  line-height: 1.25;
}

.case-steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 22px;
}

.case-steps article {
  padding: 18px;
  border: var(--border);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.72);
}

.case-steps span {
  display: block;
  margin-bottom: 8px;
  color: var(--blue-800);
  font-size: 0.78rem;
  font-weight: 950;
  text-transform: uppercase;
}

.case-steps p {
  margin-bottom: 0;
  font-size: 0.94rem;
}

.case-intro {
  max-width: 760px;
  margin-bottom: 0;
}

.case-services {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.case-services span {
  min-height: 36px;
  display: inline-flex;
  align-items: center;
  padding: 0 12px;
  border: var(--border);
  border-radius: 999px;
  color: var(--blue-950);
  background: var(--white);
  font-size: 0.88rem;
  font-weight: 850;
}

.cta-section {
  padding: 30px 0 82px;
}

.cta-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 38px;
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 90% 20%, rgba(232, 169, 65, 0.22), transparent 28%),
    linear-gradient(135deg, var(--blue-950), var(--blue-900));
  box-shadow: var(--shadow-strong);
}

.cta-box h2,
.cta-box p {
  color: var(--white);
}

.cta-box p {
  margin-bottom: 0;
  opacity: 0.82;
}

.page-hero {
  padding: 80px 0 68px;
  background:
    radial-gradient(circle at 18% 8%, rgba(232, 169, 65, 0.15), transparent 24%),
    linear-gradient(135deg, rgba(234, 243, 255, 0.95), rgba(255, 255, 255, 0.86)),
    var(--gray-100);
  border-bottom: var(--border);
}

.page-hero h1 {
  font-size: clamp(2.2rem, 5vw, 4.2rem);
  line-height: 1.03;
}

.page-hero-actions {
  margin-top: 28px;
}

.detail-card {
  scroll-margin-top: 100px;
}

.detail-card ul {
  margin: 20px 0 0;
  padding-left: 20px;
  color: var(--gray-700);
}

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

.detail-card li::marker {
  color: var(--blue-700);
}

.quote-panel {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  padding: 38px;
  border: var(--border);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  margin-bottom: 26px;
}

.pricing-card {
  min-height: 280px;
  padding: 28px;
  border: var(--border);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow-soft);
}

.pricing-card.featured,
.pricing-card.package-card {
  background:
    linear-gradient(135deg, rgba(234, 243, 255, 0.92), rgba(255, 255, 255, 0.96)),
    var(--white);
  border-color: rgba(36, 103, 185, 0.24);
}

.pricing-label {
  display: inline-flex;
  margin-bottom: 14px;
  padding: 6px 9px;
  border-radius: 999px;
  color: var(--blue-800);
  background: var(--blue-100);
  font-size: 0.75rem;
  font-weight: 900;
  text-transform: uppercase;
}

.price {
  margin-bottom: 12px;
  color: var(--blue-950);
  font-size: 2.45rem;
  line-height: 1;
  font-weight: 900;
}

.price span {
  color: var(--gray-500);
  font-size: 1rem;
  font-weight: 800;
}

.quote-price {
  max-width: 14ch;
  color: var(--blue-800);
  font-size: 1.22rem;
  line-height: 1.25;
}

.pricing-note {
  color: var(--blue-800);
  font-weight: 850;
}

.pricing-note-panel {
  margin-top: 8px;
}

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

.content-block p {
  font-size: 1.03rem;
}

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

.contact-form {
  display: grid;
  gap: 21px;
}

.form-row {
  display: grid;
  gap: 8px;
}

.two-fields {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

label {
  color: var(--blue-950);
  font-weight: 800;
}

input,
select,
textarea {
  width: 100%;
  min-height: 48px;
  padding: 12px 14px;
  border: 1px solid rgba(82, 97, 115, 0.24);
  border-radius: 8px;
  color: var(--gray-950);
  background: var(--white);
  font: inherit;
  transition: border-color 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

input:hover,
select:hover,
textarea:hover {
  border-color: rgba(36, 103, 185, 0.35);
}

textarea {
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  outline: 3px solid rgba(36, 103, 185, 0.18);
  border-color: var(--blue-700);
}

.form-button {
  width: fit-content;
}

.form-status {
  display: none;
  margin: 0;
  padding: 14px 16px;
  border-radius: 8px;
  color: #175936;
  background: #e7f7ee;
  font-weight: 750;
}

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

.prepared-email-link {
  display: none;
  width: fit-content;
}

.prepared-email-link.visible {
  display: inline-flex;
}

.privacy-note {
  margin: -4px 0 0;
  color: var(--gray-500);
  font-size: 0.9rem;
}

.contact-card {
  position: sticky;
  top: 100px;
}

.contact-detail {
  padding: 16px 0;
  border-top: 1px solid var(--gray-200);
}

.contact-detail span,
.contact-detail strong {
  display: block;
}

.contact-detail span {
  color: var(--gray-500);
  font-size: 0.86rem;
  font-weight: 800;
  text-transform: uppercase;
}

.contact-detail strong {
  color: var(--blue-950);
  overflow-wrap: anywhere;
}

.small-note {
  margin: 8px 0 0;
  color: var(--blue-800);
  font-weight: 800;
}

.site-footer {
  padding: 50px 0;
  color: rgba(255, 255, 255, 0.82);
  background: linear-gradient(135deg, var(--blue-950), #111a30);
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) repeat(2, minmax(180px, 0.5fr));
  gap: 30px;
}

.footer-brand {
  display: inline-block;
  margin-bottom: 10px;
  color: var(--white);
  font-size: 1.12rem;
  font-weight: 900;
}

.site-footer h2 {
  margin-bottom: 12px;
  color: var(--white);
  font-size: 0.95rem;
}

.site-footer p,
.site-footer a {
  display: block;
  margin-bottom: 8px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.95rem;
}

.site-footer a:hover {
  color: var(--white);
}

.mobile-request-bar {
  display: none;
}

@media (max-width: 980px) {
  .hero-grid,
  .split-layout,
  .wizard-layout,
  .appointment-panel,
  .story-layout,
  .contact-layout,
  .case-study {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 66px;
  }

  .hero-visual {
    min-height: 388px;
  }

  .process-grid,
  .fit-grid,
  .service-preview-grid,
  .service-detail-grid,
  .pricing-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .contact-card {
    position: static;
  }

  .wizard-copy {
    position: static;
  }

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

@media (max-width: 760px) {
  body.has-mobile-request {
    padding-bottom: 86px;
  }

  .container,
  .narrow {
    width: min(100% - 28px, 1120px);
  }

  .navbar {
    min-height: 68px;
  }

  .brand-text {
    max-width: 220px;
  }

  .nav-toggle {
    display: grid;
  }

  .nav-links {
    position: absolute;
    top: 68px;
    left: 14px;
    right: 14px;
    display: none;
    grid-template-columns: 1fr;
    padding: 12px;
    border: var(--border);
    border-radius: var(--radius);
    background: var(--white);
    box-shadow: var(--shadow);
  }

  .nav-links.open {
    display: grid;
  }

  .nav-links a {
    justify-content: flex-start;
  }

  .hero,
  .section,
  .page-hero {
    padding: 54px 0;
  }

  h1 {
    font-size: clamp(2.18rem, 12vw, 3.2rem);
  }

  .hero-grid {
    gap: 34px;
  }

  .hero-visual {
    min-height: 318px;
  }

  .desk-scene {
    transform: scale(0.78);
    transform-origin: center;
  }

  .process-grid,
  .fit-grid,
  .service-preview-grid,
  .service-detail-grid,
  .pricing-grid {
    grid-template-columns: 1fr;
  }

  .wizard-controls {
    grid-template-columns: 1fr;
  }

  .wizard-addons {
    grid-column: auto;
  }

  .wizard-summary {
    flex-direction: column;
  }

  .wizard-summary p {
    max-width: none;
  }

  .wizard-checklist ul {
    grid-template-columns: 1fr;
  }

  .wizard-step-footer {
    align-items: stretch;
    flex-direction: column;
  }

  .wizard-step-footer .button,
  .wizard-review-actions .button {
    width: 100%;
  }

  .wizard-review-actions .text-link {
    width: 100%;
    margin-left: 0;
    justify-content: center;
  }

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

  .quote-panel,
  .cta-box {
    align-items: flex-start;
    flex-direction: column;
  }

  .cta-box .button,
  .quote-panel .button {
    width: 100%;
  }

  .two-fields {
    grid-template-columns: 1fr;
  }

  .form-button {
    width: 100%;
  }

  .prepared-email-link {
    width: 100%;
  }

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

  .mobile-request-bar {
    position: fixed;
    left: 12px;
    right: 12px;
    bottom: 12px;
    z-index: 30;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 10px 10px 10px 14px;
    border: 1px solid rgba(255, 255, 255, 0.28);
    border-radius: var(--radius);
    background: rgba(23, 35, 63, 0.96);
    box-shadow: 0 18px 45px rgba(23, 35, 63, 0.24);
    backdrop-filter: blur(12px);
  }

  .mobile-request-bar span {
    color: var(--white);
    font-weight: 900;
  }

  .mobile-request-bar .button {
    width: auto;
    min-height: 42px;
    padding: 0 14px;
    white-space: nowrap;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}

@media (max-width: 430px) {
  .brand-text {
    max-width: 172px;
  }

  .button-row,
  .button {
    width: 100%;
  }

  .mini-card,
  .service-card,
  .detail-card,
  .story-card,
  .values-card,
  .contact-card,
  .contact-form,
  .appointment-panel,
  .quote-panel,
  .case-study,
  .cta-box {
    padding: 22px;
  }

  .wizard-progress {
    padding: 16px 18px;
  }

  .wizard-step {
    min-height: 0;
    padding: 22px;
  }

  .wizard-options {
    grid-template-columns: 1fr;
  }

  .hero-trust-list span {
    width: 100%;
    justify-content: center;
  }

  .desk-scene {
    transform: scale(0.66);
  }
}
