:root {
  --navy: #002769;
  --navy-deep: #122667;
  --blue: #00b0ff;
  --blue-soft: #e8f4ff;
  --ink: #111827;
  --muted: #5f6b7a;
  --line: #e5e7eb;
  --surface: #ffffff;
  --soft: #f5f8fc;
  --accent: #c23366;
  --shadow: 0 20px 50px rgba(0, 39, 105, 0.14);
  --radius: 8px;
  --radius-sm: 6px;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  max-width: 100%;
  overflow-x: clip;
}

body {
  margin: 0;
  font-family: "DM Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--surface);
  line-height: 1.5;
  max-width: 100%;
  overflow-x: clip;
}

body.modal-open {
  overflow: hidden;
}

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

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

button,
input,
select {
  font: inherit;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 76px;
  padding: 14px clamp(16px, 4vw, 48px);
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid rgba(229, 231, 235, 0.86);
  backdrop-filter: blur(14px);
}

.brand img {
  width: clamp(190px, 24vw, 284px);
  height: auto;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: clamp(10px, 1.45vw, 22px);
  color: var(--navy);
  font-size: 0.9rem;
  font-weight: 800;
}

.main-nav a {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 44px;
  padding: 10px 2px;
  color: rgba(0, 39, 105, 0.78);
  letter-spacing: 0;
  transition:
    color 220ms ease,
    transform 220ms ease;
}

.main-nav a::after {
  position: absolute;
  right: 0;
  bottom: 6px;
  left: 0;
  height: 2px;
  content: "";
  background: linear-gradient(90deg, var(--blue), #53c7ff);
  border-radius: 999px;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 240ms ease;
}

.main-nav a:hover,
.main-nav a:focus-visible,
.main-nav a.is-active {
  color: var(--navy);
  outline: none;
}

.main-nav a:hover::after,
.main-nav a:focus-visible::after,
.main-nav a.is-active::after {
  transform: scaleX(1);
}

.nav-toggle {
  display: none;
  place-items: center;
  width: 44px;
  height: 44px;
  color: var(--navy);
  background: var(--blue-soft);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.hero {
  position: relative;
  min-height: min(760px, calc(100svh - 76px));
  display: grid;
  align-items: center;
  overflow: hidden;
  color: white;
  isolation: isolate;
}

.hero__media {
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    url("assets/showroom-box-06.jfif")
      center / cover no-repeat,
    var(--navy-deep);
}

.hero__overlay {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(0, 22, 61, 0.9), rgba(0, 39, 105, 0.62) 48%, rgba(0, 39, 105, 0.2)),
    linear-gradient(0deg, rgba(0, 0, 0, 0.36), rgba(0, 0, 0, 0.06));
}

.hero__content {
  width: min(100% - 32px, var(--max));
  margin: 0 auto;
  padding: clamp(56px, 9vw, 120px) 0 120px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--blue);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(2.35rem, 6vw, 5.4rem);
  line-height: 0.96;
  letter-spacing: 0;
}

.hero__lead {
  max-width: 650px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(1.03rem, 2vw, 1.3rem);
}

.hero__actions,
.button {
  display: flex;
  align-items: center;
}

.hero__actions {
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.hero__benefits {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  max-width: 760px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.hero__benefits li {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 38px;
  padding: 9px 12px;
  color: white;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: var(--radius);
  font-size: 0.94rem;
  font-weight: 800;
  backdrop-filter: blur(10px);
}

.hero__benefits svg {
  width: 17px;
  height: 17px;
  color: var(--blue);
  flex: 0 0 auto;
  fill: currentColor;
}

.button {
  justify-content: center;
  gap: 10px;
  min-height: 50px;
  padding: 13px 20px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-weight: 800;
  cursor: pointer;
  transition: transform 180ms ease, background 180ms ease, color 180ms ease, border-color 180ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-1px);
  outline: none;
}

.button--primary {
  color: white;
  background: var(--blue);
  box-shadow: 0 16px 34px rgba(0, 176, 255, 0.28);
}

.button--primary:hover,
.button--primary:focus-visible {
  background: #009ee6;
}

.button--ghost {
  color: white;
  border-color: rgba(255, 255, 255, 0.62);
  background: rgba(255, 255, 255, 0.08);
}

.button--ghost:hover,
.button--ghost:focus-visible {
  background: white;
  color: var(--navy);
}

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

.button--light:hover,
.button--light:focus-visible {
  border-color: var(--blue);
}

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

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

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

.hero__quickbar {
  position: absolute;
  right: clamp(16px, 4vw, 48px);
  bottom: 0;
  left: clamp(16px, 4vw, 48px);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  color: var(--navy);
  background: rgba(255, 255, 255, 0.42);
  border-radius: var(--radius) var(--radius) 0 0;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.hero__quickbar div {
  display: flex;
  align-items: center;
  gap: 8px;
  min-height: 58px;
  padding: 12px 16px;
  background: rgba(255, 255, 255, 0.94);
  font-size: 0.9rem;
  font-weight: 700;
}

.hero__quickbar svg,
.button svg,
.main-nav svg,
.tile svg,
.service svg,
.check-list svg,
.contact-list svg {
  width: 20px;
  height: 20px;
  flex: 0 0 auto;
}

.section {
  padding: clamp(64px, 9vw, 108px) 0;
}

.section[id] {
  scroll-margin-top: 88px;
}

.section--tight {
  padding: 36px 0;
}

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

.section--dark {
  color: white;
  background: var(--navy-deep);
}

.intro-strip {
  border-bottom: 1px solid var(--line);
}

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

.stat {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 22px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.stat svg {
  width: 34px;
  height: 34px;
  flex: 0 0 auto;
  color: var(--navy);
  stroke-width: 2.1;
}

.stat span {
  display: block;
  color: var(--navy);
  font-size: clamp(1rem, 1.35vw, 1.18rem);
  font-weight: 900;
  line-height: 1.18;
}

.showroom-teaser {
  position: relative;
  padding: clamp(54px, 7vw, 84px) 0;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(245, 248, 252, 0.94) 0%, rgba(232, 244, 255, 0.92) 100%),
    url("assets/showroom-box-04.jfif") center / cover;
  isolation: isolate;
}

.showroom-teaser::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.88) 0%, rgba(255, 255, 255, 0.42) 52%, rgba(0, 39, 105, 0.12) 100%);
}

.showroom-teaser__head {
  display: grid;
  gap: 22px;
  max-width: 820px;
  margin-bottom: 30px;
}

.showroom-teaser__head h2 {
  max-width: 780px;
  margin: 0;
  color: var(--navy);
  font-size: clamp(2rem, 4.4vw, 3.7rem);
  line-height: 1.02;
  letter-spacing: 0;
}

.showroom-teaser__head p {
  max-width: 720px;
  color: var(--muted);
  font-size: 1.04rem;
}

.showroom-teaser__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  gap: 12px;
}

.teaser-gallery {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 16px;
}

.teaser-feature,
.teaser-card {
  position: relative;
  margin: 0;
  overflow: hidden;
  background: var(--navy);
  border-radius: var(--radius);
  box-shadow: 0 18px 42px rgba(0, 39, 105, 0.14);
}

.teaser-feature {
  height: clamp(430px, 42vw, 500px);
  min-height: 0;
}

.teaser-feature img,
.teaser-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.08) contrast(1.04) brightness(1.03);
  transition: transform 260ms ease, filter 260ms ease;
}

.teaser-feature img {
  min-height: 0;
  object-position: 50% 48%;
}

.teaser-card img {
  min-height: 0;
}

.teaser-card--one img {
  object-position: 52% 48%;
}

.teaser-card--two img {
  object-position: 50% 58%;
}

.teaser-card--three img {
  object-position: 52% 52%;
}

.teaser-card--four img {
  object-position: 54% 55%;
}

.teaser-card--five img {
  object-position: 50% 52%;
}

.teaser-card--six img {
  object-position: 50% 54%;
}

.teaser-feature::after,
.teaser-card::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 48%;
  background: linear-gradient(180deg, transparent 0%, rgba(0, 20, 54, 0.78) 100%);
  pointer-events: none;
}

.teaser-feature:hover img,
.teaser-card:hover img {
  transform: scale(1.035);
  filter: saturate(1.12) contrast(1.06) brightness(1.04);
}

.teaser-feature figcaption,
.teaser-card figcaption {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1;
  color: white;
}

.teaser-feature figcaption {
  padding: 26px;
}

.teaser-feature strong {
  display: block;
}

.teaser-feature strong {
  font-size: clamp(1.35rem, 2vw, 1.8rem);
  line-height: 1.1;
}

.teaser-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.teaser-card {
  height: 242px;
  min-height: 0;
}

.teaser-card figcaption {
  padding: 14px;
  font-weight: 900;
  line-height: 1.18;
}

.teaser-real-note {
  display: flex;
  align-items: center;
  gap: 10px;
  width: fit-content;
  margin: 18px auto 0;
  padding: 12px 14px;
  color: var(--navy);
  background: rgba(255, 255, 255, 0.74);
  border: 1px solid rgba(0, 39, 105, 0.12);
  border-radius: var(--radius);
  font-weight: 800;
  box-shadow: 0 12px 30px rgba(0, 39, 105, 0.08);
}

.teaser-real-note svg {
  width: 20px;
  height: 20px;
  color: var(--blue);
  flex: 0 0 auto;
}

.two-column {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: clamp(28px, 5vw, 70px);
  align-items: start;
}

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

.content-copy h2,
.panel h2,
.section-heading h2,
.contact-copy h2,
.calculator-intro h2,
.showroom-copy h2,
.financing-card h2,
.renovation-copy h2,
.design-process-head h2,
.contractors-copy h2 {
  margin: 0;
  color: var(--navy);
  font-size: clamp(2rem, 4.5vw, 3.8rem);
  line-height: 1.02;
  letter-spacing: 0;
}

.content-copy p,
.panel p,
.section-heading p,
.contact-copy p,
.calculator-intro p,
.showroom-copy p,
.financing-card p,
.renovation-copy p,
.design-process-head p,
.contractors-copy p {
  max-width: 680px;
  color: var(--muted);
  font-size: 1.04rem;
}

.panel {
  padding: clamp(24px, 4vw, 42px);
  border-radius: var(--radius);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.panel--blue {
  color: white;
  background: var(--navy);
  border-color: rgba(255, 255, 255, 0.12);
}

.panel--blue h2,
.panel--blue p,
.panel--blue .eyebrow,
.panel--blue label {
  color: white;
}

.lead-entry-actions {
  display: grid;
  gap: 12px;
  margin-top: 24px;
}

.lead-entry-actions p {
  margin: 0;
  color: rgba(255, 255, 255, 0.78) !important;
  font-size: 0.92rem !important;
  line-height: 1.5;
}

.lead-intent-modal[hidden] {
  display: none;
}

.lead-intent-modal {
  position: fixed;
  inset: 0;
  z-index: 240;
  display: grid;
  place-items: center;
  padding: 24px;
  background: rgba(0, 18, 48, 0.66);
  backdrop-filter: blur(12px);
}

.lead-intent-dialog {
  position: relative;
  width: min(100%, 760px);
  max-height: min(90vh, 860px);
  overflow: auto;
  padding: clamp(22px, 4vw, 38px);
  color: white;
  background:
    radial-gradient(circle at 90% 0%, rgba(14, 165, 233, 0.26), rgba(14, 165, 233, 0) 34%),
    linear-gradient(135deg, rgba(0, 39, 105, 0.99), rgba(0, 71, 156, 0.96));
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  box-shadow: 0 34px 90px rgba(0, 18, 48, 0.42);
}

.lead-intent-close {
  position: absolute;
  top: 16px;
  right: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  color: white;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  cursor: pointer;
  transition: background 180ms ease, transform 180ms ease;
}

.lead-intent-close:hover {
  background: rgba(255, 255, 255, 0.16);
  transform: translateY(-1px);
}

.lead-intent-close svg {
  width: 18px;
  height: 18px;
}

.lead-intent-head {
  display: grid;
  gap: 10px;
  padding-right: 46px;
}

.lead-intent-head h2 {
  margin: 0;
  color: white;
  font-size: clamp(1.8rem, 4vw, 3rem);
  line-height: 1.04;
  letter-spacing: 0;
}

.lead-intent-head p:not(.eyebrow) {
  margin: 0;
  color: rgba(255, 255, 255, 0.78) !important;
  line-height: 1.6;
}

.lead-form {
  display: grid;
  gap: 22px;
  margin-top: 24px;
}

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

.lead-details[hidden],
.lead-fields [hidden] {
  display: none !important;
}

.stage-picker {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin: 0;
  padding: 0;
  border: 0;
}

.stage-option {
  position: relative;
  display: flex !important;
  align-items: center;
  gap: 12px !important;
  min-height: 96px;
  padding: 18px;
  color: white;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  cursor: pointer;
  transition: background 180ms ease, border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.stage-option:hover,
.stage-option:focus-within {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.28);
}

.stage-option:has(input:checked) {
  background: var(--blue);
  border-color: var(--blue);
  box-shadow: 0 18px 34px rgba(0, 176, 255, 0.24);
}

.stage-option input {
  position: absolute;
  width: 1px !important;
  min-height: 1px !important;
  padding: 0 !important;
  opacity: 0;
  pointer-events: none;
}

.stage-option__icon {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  flex: 0 0 auto;
  color: var(--navy);
  background: white;
  border-radius: var(--radius);
}

.stage-option__icon svg {
  width: 20px;
  height: 20px;
}

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

.stage-option strong {
  line-height: 1.18;
}

.stage-option small {
  margin-top: 3px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.84rem;
  font-weight: 600;
}

.lead-details {
  display: grid;
  gap: 18px;
}

.lead-stage-summary {
  display: grid;
  gap: 6px;
  padding: 18px;
  background: rgba(255, 255, 255, 0.09);
  border: 0;
  border-radius: var(--radius);
}

.lead-stage-summary strong {
  color: white;
  font-size: 1rem;
}

.lead-stage-summary p {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.92rem;
}

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

.lead-fields label[data-field="message"],
.lead-fields label[data-field="files"] {
  grid-column: 1 / -1;
}

.lead-form label {
  display: grid;
  gap: 7px;
  font-size: 0.94rem;
  font-weight: 800;
}

.lead-form input,
.lead-form select,
.lead-form textarea {
  width: 100%;
  min-height: 48px;
  padding: 12px 14px;
  color: var(--ink);
  background: white;
  border: 1px solid transparent;
  border-radius: var(--radius);
  transition: border-color 160ms ease, box-shadow 160ms ease, background-color 160ms ease;
}

.lead-form input:focus,
.lead-form select:focus,
.lead-form textarea:focus {
  outline: 3px solid rgba(0, 176, 255, 0.32);
  border-color: var(--blue);
}

.lead-form input.is-valid,
.lead-form select.is-valid,
.lead-form textarea.is-valid,
.photo-quote-form input.is-valid,
.photo-quote-form select.is-valid,
.photo-quote-form textarea.is-valid,
.contractors-form input.is-valid,
.contractors-form select.is-valid,
.contractors-form textarea.is-valid,
.investment-form input.is-valid,
.investment-form select.is-valid,
.investment-form textarea.is-valid {
  border-color: rgba(34, 197, 94, 0.78);
  box-shadow: 0 0 0 4px rgba(34, 197, 94, 0.16);
}

.lead-form input.is-invalid,
.lead-form select.is-invalid,
.lead-form textarea.is-invalid,
.photo-quote-form input.is-invalid,
.photo-quote-form select.is-invalid,
.photo-quote-form textarea.is-invalid,
.contractors-form input.is-invalid,
.contractors-form select.is-invalid,
.contractors-form textarea.is-invalid,
.investment-form input.is-invalid,
.investment-form select.is-invalid,
.investment-form textarea.is-invalid {
  border-color: rgba(239, 68, 68, 0.82);
  box-shadow: 0 0 0 4px rgba(239, 68, 68, 0.18);
}

.lead-form textarea {
  resize: vertical;
  min-height: 86px;
}

.checkbox {
  grid-template-columns: 22px minmax(0, 1fr);
  align-items: start;
  column-gap: 10px !important;
  row-gap: 0;
  font-size: 0.87rem !important;
  line-height: 1.4;
}

.checkbox input {
  flex: 0 0 auto;
  width: 18px;
  height: 18px;
  min-width: 18px;
  min-height: 18px;
  margin: 2px 0 0;
  padding: 0;
  accent-color: var(--blue);
}

.checkbox span {
  min-width: 0;
}

.checkbox a {
  text-decoration: underline;
  text-underline-offset: 3px;
}

.photo-quote-form .checkbox,
.contractors-form .checkbox,
.investment-form .checkbox {
  display: grid;
  grid-template-columns: 28px minmax(0, 1fr);
  align-items: start;
  column-gap: 12px !important;
  padding: 10px 12px;
  color: var(--muted);
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(0, 39, 105, 0.09);
  border-radius: 12px;
  font-size: 0.84rem !important;
  font-weight: 650;
  line-height: 1.42;
}

.contractors-form .checkbox input,
.investment-form .checkbox input,
.photo-quote-form .checkbox input {
  width: 20px;
  height: 20px;
  min-width: 20px;
  min-height: 20px;
  margin: 1px 0 0;
  padding: 0;
}

.contractors-form .checkbox span,
.investment-form .checkbox span,
.photo-quote-form .checkbox span {
  display: block;
  padding-top: 1px;
}

.form-note {
  margin: 0;
  color: rgba(255, 255, 255, 0.78) !important;
  font-size: 0.92rem !important;
  transition: color 160ms ease, background 160ms ease, border-color 160ms ease, box-shadow 160ms ease;
}

.form-note--success,
.form-note--error,
.form-note--pending {
  padding: 13px 15px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  line-height: 1.45;
  font-weight: 800;
}

.form-note--success {
  color: #065f46 !important;
  background: #dcfce7;
  border-color: #86efac;
  box-shadow: 0 12px 26px rgba(34, 197, 94, 0.14);
}

.form-note--error {
  color: #991b1b !important;
  background: #fee2e2;
  border-color: #fca5a5;
  box-shadow: 0 12px 26px rgba(239, 68, 68, 0.12);
}

.form-note--pending {
  color: #075985 !important;
  background: #e0f2fe;
  border-color: #7dd3fc;
}

.panel--blue .form-note--success {
  color: #f0fdf4 !important;
  background: rgba(34, 197, 94, 0.16);
  border-color: rgba(134, 239, 172, 0.42);
}

.panel--blue .form-note--error {
  color: #fff1f2 !important;
  background: rgba(239, 68, 68, 0.18);
  border-color: rgba(252, 165, 165, 0.48);
}

.panel--blue .form-note--pending {
  color: #eff6ff !important;
  background: rgba(14, 165, 233, 0.2);
  border-color: rgba(125, 211, 252, 0.45);
}

.lead-trust {
  display: grid;
  gap: 8px;
  margin: 0;
  padding: 0;
  color: rgba(255, 255, 255, 0.82);
  list-style: none;
  font-size: 0.9rem;
  font-weight: 700;
}

.lead-trust li {
  display: flex;
  align-items: center;
  gap: 8px;
}

.lead-trust svg {
  width: 17px;
  height: 17px;
  color: var(--blue);
  flex: 0 0 auto;
}

.tiles {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 34px;
}

.tile,
.service,
.steps article {
  padding: 22px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.tile svg,
.service svg {
  color: var(--blue);
}

.tile h3,
.service h3,
.steps h3 {
  margin: 16px 0 8px;
  color: var(--navy);
  font-size: 1.05rem;
  line-height: 1.22;
}

.tile p,
.service p,
.steps p {
  margin: 0;
  color: var(--muted);
}

.care-section {
  background:
    linear-gradient(180deg, #f7fbff 0%, #ffffff 100%);
}

.care-head {
  max-width: 780px;
  margin: 0 auto 42px;
  text-align: center;
}

.care-head h2 {
  margin: 0;
  color: var(--navy);
  font-size: clamp(2.15rem, 4.6vw, 4rem);
  line-height: 1.02;
  letter-spacing: 0;
}

.care-head p {
  max-width: 680px;
  margin: 18px auto 0;
  color: var(--muted);
  font-size: 1.08rem;
  font-weight: 700;
}

.care-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(18px, 2.5vw, 28px);
}

.care-card {
  display: grid;
  grid-template-rows: auto auto 1fr auto;
  min-height: 0;
  padding: clamp(20px, 2.4vw, 24px);
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(0, 39, 105, 0.08);
  border-radius: var(--radius);
  color: inherit;
  box-shadow: 0 18px 44px rgba(0, 39, 105, 0.07);
  backdrop-filter: blur(10px);
  transition: transform 200ms ease, background 200ms ease, box-shadow 200ms ease, border-color 200ms ease;
}

.care-card:hover,
.care-card:focus-visible {
  transform: translateY(-4px);
  background: rgba(255, 255, 255, 0.98);
  border-color: rgba(0, 176, 255, 0.34);
  box-shadow:
    0 28px 68px rgba(0, 39, 105, 0.15),
    0 0 34px rgba(0, 176, 255, 0.12);
  outline: none;
}

.care-card__top {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 12px;
}

.care-card__number {
  color: rgba(0, 39, 105, 0.42);
  font-size: 0.86rem;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.care-card__top svg {
  width: 34px;
  height: 34px;
  color: var(--blue);
  stroke-width: 1.7;
  transition: color 200ms ease, transform 200ms ease;
}

.care-card:hover > .care-card__top svg,
.care-card:focus-visible > .care-card__top svg {
  color: var(--navy);
  transform: translateX(2px);
}

.care-card h3 {
  margin: 12px 0 8px;
  color: var(--navy);
  font-size: clamp(1.22rem, 2vw, 1.55rem);
  line-height: 1.16;
}

.care-card p {
  max-width: 520px;
  margin: 0;
  color: var(--muted);
  font-size: 1rem;
}

.care-card__cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
  margin-top: 12px;
  padding: 5px 0;
  color: var(--navy);
  font-size: 0.92rem;
  font-weight: 900;
}

.care-card__cta svg {
  width: 17px;
  height: 17px;
  color: currentColor;
  transition: transform 200ms ease;
}

.care-card:hover .care-card__cta svg,
.care-card:focus-visible .care-card__cta svg {
  transform: translateX(4px);
}

.split-showcase {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: clamp(28px, 5vw, 68px);
  align-items: center;
}

.showcase-image {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.showcase-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.check-list {
  display: grid;
  gap: 12px;
  margin: 26px 0 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: var(--navy);
  font-weight: 700;
}

.check-list svg {
  color: var(--blue);
  margin-top: 2px;
}

.showroom-more {
  margin-top: 24px;
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 14px 32px rgba(0, 39, 105, 0.08);
}

.showroom-more summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  min-height: 58px;
  padding: 16px 18px;
  color: var(--navy);
  cursor: pointer;
  font-weight: 900;
  list-style: none;
}

.showroom-more summary::-webkit-details-marker {
  display: none;
}

.showroom-more summary svg {
  width: 20px;
  height: 20px;
  color: var(--blue);
  transition: transform 180ms ease;
}

.showroom-more[open] summary svg {
  transform: rotate(180deg);
}

.showroom-more__content {
  display: grid;
  gap: 16px;
  padding: 0 18px 18px;
}

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

.showroom-mini-stats div {
  padding: 14px;
  background: var(--blue-soft);
  border-radius: var(--radius);
}

.showroom-mini-stats strong {
  display: block;
  color: var(--navy);
  font-size: 1.35rem;
  line-height: 1;
}

.showroom-mini-stats span {
  display: block;
  margin-top: 6px;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 800;
}

.showroom-mini-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}

.showroom-mini-gallery img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: var(--radius);
}

.showroom-more__content p {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.showroom-experience {
  background: linear-gradient(180deg, #ffffff 0%, var(--soft) 100%);
}

.showroom-heading {
  max-width: 860px;
  margin: 0 auto clamp(30px, 4vw, 46px);
  text-align: center;
  animation: showroomHeadingFade 520ms ease both;
}

.showroom-heading .eyebrow {
  margin-bottom: 12px;
  color: var(--blue);
}

.showroom-heading h2 {
  margin: 0;
  color: var(--navy);
  font-size: clamp(2rem, 4vw, 3.35rem);
  line-height: 1.04;
}

.showroom-heading p:not(.eyebrow) {
  max-width: 720px;
  margin: 16px auto 0;
  color: var(--muted);
  font-size: clamp(1rem, 1.45vw, 1.12rem);
  line-height: 1.7;
}

@keyframes showroomHeadingFade {
  from {
    opacity: 0;
    transform: translateY(12px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.showroom-banner {
  position: relative;
  display: flex;
  align-items: flex-end;
  min-height: clamp(300px, 29vw, 410px);
  overflow: hidden;
  isolation: isolate;
  border-radius: var(--radius);
  background:
    linear-gradient(90deg, rgba(6, 21, 48, 0.92) 0%, rgba(6, 21, 48, 0.72) 44%, rgba(6, 21, 48, 0.3) 100%),
    image-set(
      url("assets/showroom-exterior.webp") type("image/webp"),
      url("assets/showroom-exterior.png") type("image/png")
    )
      center / cover no-repeat;
  box-shadow: 0 32px 86px rgba(0, 39, 105, 0.2);
}

.showroom-banner::before,
.showroom-banner::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

.showroom-banner::before {
  background:
    radial-gradient(circle at 74% 52%, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0) 34%),
    radial-gradient(ellipse at center, rgba(6, 21, 48, 0) 42%, rgba(4, 13, 30, 0.6) 100%);
}

.showroom-banner::after {
  background: linear-gradient(180deg, rgba(3, 12, 28, 0.18) 0%, rgba(3, 12, 28, 0) 42%, rgba(3, 12, 28, 0.56) 100%);
}

.showroom-banner__content {
  position: relative;
  z-index: 1;
  display: flex;
  width: 100%;
  min-height: inherit;
  align-items: flex-end;
  justify-content: space-between;
  gap: 18px;
  padding: clamp(26px, 4vw, 44px);
  color: white;
}

.showroom-banner__content .eyebrow {
  position: absolute;
  top: clamp(26px, 4vw, 44px);
  left: clamp(26px, 4vw, 44px);
  margin: 0;
  color: var(--blue);
  font-size: clamp(0.96rem, 1.22vw, 1.18rem);
  letter-spacing: 0.1em;
  text-shadow: 0 10px 26px rgba(0, 176, 255, 0.28);
}

.showroom-banner__content h2 {
  margin: 12px 0 0;
  max-width: 660px;
  color: white;
  font-size: clamp(1.95rem, 3.6vw, 3.45rem);
  line-height: 1;
}

.showroom-banner__content p:not(.eyebrow) {
  max-width: 560px;
  margin: 16px 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(1rem, 1.35vw, 1.08rem);
  line-height: 1.6;
}

.showroom-banner__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 0;
}

.showroom-banner .button--ghost {
  color: white;
  border-color: rgba(255, 255, 255, 0.38);
  background: rgba(255, 255, 255, 0.1);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
}

.showroom-banner .button--ghost:hover,
.showroom-banner .button--ghost:focus-visible {
  color: var(--navy);
  border-color: white;
  background: white;
}

.showroom-intro {
  display: grid;
  grid-template-columns: minmax(180px, 0.35fr) minmax(0, 0.65fr);
  gap: clamp(22px, 5vw, 64px);
  align-items: end;
  margin-top: clamp(36px, 5vw, 58px);
}

.showroom-intro .eyebrow {
  margin: 0 0 10px;
}

.showroom-intro h2 {
  margin: 0;
  color: var(--navy);
  font-size: clamp(1.8rem, 3vw, 3rem);
  line-height: 1.06;
}

.showroom-intro p:not(.eyebrow) {
  max-width: 720px;
  margin: 14px 0 0;
  color: var(--muted);
  font-size: clamp(1rem, 1.4vw, 1.12rem);
  line-height: 1.7;
}

.showroom-benefits {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
  margin: -34px clamp(8px, 2vw, 28px) 0;
}

.showroom-benefit {
  display: flex;
  min-height: 144px;
  flex-direction: column;
  justify-content: flex-start;
  gap: 22px;
  padding: 20px;
  border: 1px solid rgba(0, 39, 105, 0.08);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.92) 0%, rgba(255, 255, 255, 0.78) 100%);
  box-shadow: 0 18px 38px rgba(0, 39, 105, 0.08);
  transition:
    transform 220ms ease,
    box-shadow 220ms ease,
    border-color 220ms ease,
    background 220ms ease;
}

.showroom-benefit svg {
  width: 24px;
  height: 24px;
  color: var(--blue);
  opacity: 0.78;
  transition:
    transform 220ms ease,
    opacity 220ms ease;
}

.showroom-benefit strong {
  display: block;
  color: var(--navy);
  font-size: clamp(1.02rem, 1.35vw, 1.24rem);
  line-height: 1.05;
}

.showroom-benefit span {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-size: 0.84rem;
  font-weight: 700;
  line-height: 1.38;
}

.showroom-benefit:hover {
  transform: translateY(-5px);
  border-color: rgba(0, 176, 255, 0.24);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 24px 54px rgba(0, 39, 105, 0.14);
}

.showroom-benefit:hover svg {
  transform: translateY(-2px);
  opacity: 1;
}

.google-reviews-section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 14% 10%, rgba(0, 176, 255, 0.26) 0%, rgba(0, 176, 255, 0) 34%),
    radial-gradient(circle at 90% 12%, rgba(255, 255, 255, 0.12) 0%, rgba(255, 255, 255, 0) 30%),
    linear-gradient(135deg, #001b55 0%, #00337b 52%, #061f4d 100%);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.07), inset 0 -1px 0 rgba(0, 0, 0, 0.12);
}

.google-reviews-shell {
  display: grid;
  grid-template-columns: minmax(300px, 0.74fr) minmax(0, 1.26fr);
  gap: clamp(26px, 4vw, 56px);
  align-items: center;
}

.google-reviews-summary h2 {
  margin-bottom: 16px;
  color: white;
}

.google-reviews-summary p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.76);
  line-height: 1.7;
}

.google-rating-card {
  display: flex;
  align-items: center;
  gap: 16px;
  width: min(100%, 370px);
  margin-top: 24px;
  padding: 18px 20px 18px 18px;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  box-shadow: 0 26px 58px rgba(0, 10, 42, 0.24), inset 0 1px 0 rgba(255, 255, 255, 0.72);
}

.google-g-logo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 46px;
  width: 46px;
  height: 46px;
  background: #ffffff;
  border: 1px solid rgba(0, 39, 105, 0.08);
  border-radius: 14px;
  box-shadow: 0 12px 24px rgba(0, 39, 105, 0.12);
}

.google-g-logo svg {
  width: 28px;
  height: 28px;
  display: block;
}

.google-rating-card strong {
  display: inline-flex;
  color: var(--navy);
  font-size: 2rem;
  line-height: 1;
}

.google-rating-line {
  display: flex;
  align-items: center;
  gap: 8px;
}

.google-rating-line .google-stars svg {
  width: 19px;
  height: 19px;
}

.google-rating-card small {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  font-weight: 800;
}

.google-stars,
.google-review-stars {
  display: inline-flex;
  align-items: center;
  gap: 3px;
  color: #f6b400;
}

.google-stars svg,
.google-review-stars svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
  stroke-width: 1.8;
}

.google-reviews-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.google-reviews-actions .button {
  min-width: 204px;
}

.google-review-cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.google-reviews-list {
  display: grid;
  gap: 12px;
}

.google-reviews-label {
  margin: 0;
  color: #38c8ff;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.google-review-card {
  display: grid;
  align-content: start;
  gap: 15px;
  min-height: 218px;
  padding: 22px;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  box-shadow: 0 24px 54px rgba(0, 10, 42, 0.2);
}

.google-review-card--featured {
  grid-column: 1 / -1;
  min-height: 210px;
  background:
    radial-gradient(circle at 18% 0%, rgba(0, 176, 255, 0.1) 0%, rgba(0, 176, 255, 0) 40%),
    linear-gradient(145deg, #ffffff 0%, #f4fbff 100%);
  border-color: rgba(0, 176, 255, 0.36);
  box-shadow: 0 28px 64px rgba(0, 10, 42, 0.26), 0 0 28px rgba(0, 176, 255, 0.14);
}

.google-review-card__head {
  display: flex;
  align-items: center;
  min-height: 34px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(0, 39, 105, 0.08);
}

.google-review-card__head strong {
  display: block;
}

.google-review-card__head strong {
  color: var(--navy);
  line-height: 1.15;
}

.google-review-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.94rem;
  line-height: 1.62;
}

@media (max-width: 1120px) {
  .showroom-benefits {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    margin-right: 0;
    margin-left: 0;
  }

  .google-reviews-shell {
    grid-template-columns: 1fr;
    align-items: start;
  }
}

@media (max-width: 760px) {
  .showroom-banner {
    min-height: 340px;
    background-position: center;
  }

  .showroom-banner__content {
    align-items: stretch;
    flex-direction: column;
    justify-content: flex-end;
    padding: 24px;
  }

  .showroom-intro {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .showroom-banner__actions,
  .showroom-banner__actions .button {
    width: 100%;
  }

  .visit-info-grid {
    grid-template-columns: 1fr;
  }

  .contact-actions,
  .contact-actions .button {
    width: 100%;
  }

  .contact-showroom-card {
    min-height: 260px;
  }

  .contact-showroom-card img {
    min-height: 260px;
  }

  .showroom-benefits {
    grid-template-columns: 1fr;
    margin-top: 14px;
  }

  .showroom-benefit {
    min-height: auto;
  }

  .google-rating-card,
  .google-reviews-actions,
  .google-reviews-actions .button {
    width: 100%;
  }

  .google-review-cards {
    grid-template-columns: 1fr;
  }

  .google-review-card {
    min-height: auto;
  }

  .google-review-card--featured {
    grid-column: auto;
  }
}

.showroom-section {
  content-visibility: auto;
  contain-intrinsic-size: 980px;
  background:
    linear-gradient(180deg, var(--soft) 0%, #ffffff 62%, var(--soft) 100%);
}

.showroom-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(360px, 1.05fr);
  gap: clamp(28px, 5vw, 68px);
  align-items: center;
}

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

.showroom-stats div {
  padding: 18px;
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 14px 32px rgba(0, 39, 105, 0.08);
}

.showroom-stats strong {
  display: block;
  color: var(--navy);
  font-size: clamp(1.7rem, 3vw, 2.5rem);
  line-height: 1;
}

.showroom-stats span {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 700;
}

.showroom-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.showroom-photo-main {
  position: relative;
  min-height: 520px;
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.showroom-photo-main img {
  width: 100%;
  height: 100%;
  min-height: 520px;
  object-fit: cover;
}

.showroom-photo-main span {
  position: absolute;
  right: 18px;
  bottom: 18px;
  padding: 11px 14px;
  color: white;
  background: rgba(0, 39, 105, 0.82);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: var(--radius);
  font-weight: 900;
}

.showroom-zones {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 34px;
}

.showroom-zones article {
  padding: 22px;
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 14px 32px rgba(0, 39, 105, 0.08);
}

.showroom-zones svg {
  width: 24px;
  height: 24px;
  color: var(--blue);
}

.showroom-zones h3 {
  margin: 16px 0 8px;
  color: var(--navy);
  font-size: 1.05rem;
  line-height: 1.2;
}

.showroom-zones p {
  margin: 0;
  color: var(--muted);
}

.showroom-gallery {
  display: grid;
  grid-template-columns: 1.35fr 1fr;
  gap: 16px;
  margin-top: 16px;
}

.showroom-gallery figure {
  position: relative;
  min-height: 270px;
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--navy);
}

.showroom-gallery__large {
  grid-row: span 2;
}

.showroom-gallery img {
  width: 100%;
  height: 100%;
  min-height: 270px;
  object-fit: cover;
  transition: transform 240ms ease;
}

.showroom-gallery__large img {
  min-height: 556px;
}

.showroom-gallery figure:hover img {
  transform: scale(1.035);
}

.showroom-gallery figcaption {
  position: absolute;
  right: 14px;
  bottom: 14px;
  left: 14px;
  padding: 12px 14px;
  color: white;
  background: rgba(0, 39, 105, 0.78);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  font-weight: 800;
}

.showroom-note {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 16px;
  padding: 20px;
  color: white;
  background: var(--navy);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.showroom-note svg {
  width: 28px;
  height: 28px;
  color: var(--blue);
  flex: 0 0 auto;
}

.showroom-note p {
  margin: 0;
  max-width: 920px;
  color: rgba(255, 255, 255, 0.86);
  font-weight: 700;
}

.calculator-section {
  background:
    radial-gradient(circle at 82% 12%, rgba(0, 176, 255, 0.07) 0%, rgba(0, 176, 255, 0) 34%),
    var(--soft);
}

.financing-section {
  content-visibility: auto;
  contain-intrinsic-size: 1040px;
  color: white;
  background:
    radial-gradient(circle at 18% 12%, rgba(0, 176, 255, 0.22), transparent 34%),
    radial-gradient(circle at 82% 82%, rgba(255, 255, 255, 0.1), transparent 32%),
    linear-gradient(135deg, rgba(0, 39, 105, 0.94), rgba(18, 38, 103, 0.9)),
    var(--navy);
}

.design-budget-module {
  scroll-margin-top: 96px;
  max-width: 1040px;
  margin: 30px auto 0;
  padding: clamp(24px, 3vw, 34px);
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(0, 39, 105, 0.07);
  border-radius: var(--radius);
  box-shadow: 0 18px 46px rgba(0, 39, 105, 0.06);
}

.design-budget-head {
  max-width: 620px;
  margin: 0 auto 26px;
  text-align: center;
}

.design-budget-head h3 {
  margin: 0;
  color: var(--navy);
  font-size: clamp(1.35rem, 2vw, 1.9rem);
  line-height: 1.1;
}

.design-budget-head p:not(.eyebrow) {
  max-width: 560px;
  margin: 10px auto 0;
  color: var(--muted);
}

.budget-cards {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(0, 1.2fr) minmax(0, 0.86fr);
  gap: 18px;
  align-items: end;
}

.budget-card {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 178px;
  padding: 24px;
  background: white;
  border: 1px solid rgba(0, 39, 105, 0.08);
  border-radius: var(--radius);
  box-shadow: 0 10px 26px rgba(0, 39, 105, 0.045);
  transition: transform 190ms ease, box-shadow 190ms ease, border-color 190ms ease;
}

.budget-card:hover {
  transform: translateY(-4px);
  border-color: rgba(0, 39, 105, 0.16);
  box-shadow: 0 18px 42px rgba(0, 39, 105, 0.09);
}

.budget-card--featured {
  z-index: 1;
  min-height: 342px;
  padding: 32px;
  color: white;
  background:
    radial-gradient(circle at 18% 12%, rgba(0, 176, 255, 0.3), transparent 36%),
    radial-gradient(circle at 86% 86%, rgba(255, 255, 255, 0.14), transparent 34%),
    linear-gradient(135deg, rgba(0, 39, 105, 0.98), rgba(0, 89, 174, 0.9)),
    var(--navy);
  border-color: rgba(0, 176, 255, 0.5);
  transform: translateY(-16px);
  box-shadow: 0 34px 84px rgba(0, 39, 105, 0.28), 0 0 36px rgba(0, 176, 255, 0.14);
}

.budget-card--featured:hover {
  transform: translateY(-20px);
  border-color: rgba(0, 176, 255, 0.62);
  box-shadow: 0 36px 88px rgba(0, 39, 105, 0.3), 0 0 0 1px rgba(0, 176, 255, 0.2);
}

.budget-badge {
  align-self: flex-start;
  margin: 0 0 18px;
  padding: 8px 12px;
  color: var(--navy);
  background: white;
  border: 1px solid rgba(0, 176, 255, 0.28);
  border-radius: 999px;
  font-size: 0.76rem;
  font-weight: 900;
  box-shadow: 0 12px 24px rgba(0, 39, 105, 0.08);
}

.budget-badge svg {
  width: 14px;
  height: 14px;
  margin-right: 5px;
  color: var(--blue);
  vertical-align: -2px;
}

.budget-card--featured .budget-badge {
  color: white;
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.26);
  box-shadow: none;
}

.budget-card--featured .budget-badge svg {
  color: #42d5ff;
}

.budget-card h4 {
  order: 1;
  margin: 0 0 10px;
  color: var(--navy);
  font-size: 1.08rem;
  line-height: 1.12;
}

.budget-card strong {
  display: block;
  order: 2;
  margin: 0 0 14px;
  color: var(--navy);
  font-size: 1.28rem;
  line-height: 1.15;
  font-weight: 900;
}

.budget-card--featured strong {
  color: white;
  font-size: 1.44rem;
}

.budget-card p {
  order: 3;
  margin: 0;
  color: var(--muted);
  font-size: 0.96rem;
  line-height: 1.45;
}

.budget-card--featured h4 {
  color: white;
}

.budget-card--featured p {
  color: rgba(255, 255, 255, 0.82);
}

.budget-card small {
  order: 4;
  display: block;
  margin-top: 12px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.82rem;
  font-weight: 900;
  line-height: 1.35;
}

.budget-differences {
  order: 5;
  display: grid;
  gap: 8px;
  margin: 16px 0 0;
  padding: 0;
  list-style: none;
}

.budget-differences li {
  display: flex;
  align-items: flex-start;
  gap: 7px;
  color: rgba(48, 67, 98, 0.76);
  font-size: 0.78rem;
  font-weight: 800;
  line-height: 1.32;
}

.budget-differences svg {
  width: 14px;
  height: 14px;
  color: var(--blue);
  flex: 0 0 auto;
  margin-top: 1px;
}

.budget-card--featured .budget-differences li {
  color: rgba(255, 255, 255, 0.84);
}

.budget-card--featured .budget-differences svg {
  color: #42d5ff;
}

.budget-proof {
  max-width: 780px;
  margin: 24px auto 0;
  color: var(--navy);
  font-size: 0.94rem;
  font-weight: 800;
  text-align: center;
}

.budget-note {
  max-width: 720px;
  margin: 8px auto 0;
  text-align: center;
}

.budget-note p {
  margin: 0;
  color: rgba(95, 107, 122, 0.82);
  font-size: 0.84rem;
  font-weight: 650;
}

.financing-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 1.05fr);
  gap: clamp(24px, 5vw, 64px);
  align-items: center;
}

.financing-card h2,
.financing-card p,
.financing-card .eyebrow {
  color: white;
}

.financing-card p {
  color: rgba(255, 255, 255, 0.82);
}

.financing-proof {
  display: grid;
  gap: 9px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.financing-proof li {
  display: flex;
  align-items: center;
  gap: 9px;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 800;
}

.financing-proof svg {
  width: 18px;
  height: 18px;
  color: var(--blue);
  flex: 0 0 auto;
}

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

.financing-cta {
  min-height: 58px;
  padding-inline: 26px;
  background: linear-gradient(135deg, var(--blue), #47d8ff);
  box-shadow: 0 20px 44px rgba(0, 176, 255, 0.34);
}

.financing-cta:hover,
.financing-cta:focus-visible {
  background: linear-gradient(135deg, #009ee6, #6adfff);
  box-shadow: 0 24px 52px rgba(0, 176, 255, 0.42);
}

.button--finance-secondary {
  min-height: 50px;
  color: white;
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.2);
  box-shadow: none;
}

.button--finance-secondary:hover,
.button--finance-secondary:focus-visible {
  color: white;
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(255, 255, 255, 0.34);
}

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

.financing-points article {
  min-height: 180px;
  padding: 20px;
  background: rgba(255, 255, 255, 0.075);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  backdrop-filter: blur(10px);
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}

.financing-points article:hover {
  transform: translateY(-3px);
  background: rgba(255, 255, 255, 0.11);
  border-color: rgba(0, 176, 255, 0.36);
}

.financing-points svg {
  width: 24px;
  height: 24px;
  color: var(--blue);
}

.financing-points h3 {
  margin: 16px 0 8px;
  color: white;
  font-size: 1.02rem;
  line-height: 1.18;
}

.financing-points p {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.94rem;
  line-height: 1.45;
}

.financing-estimator[hidden] {
  display: none;
}

.financing-estimator {
  grid-column: 1 / -1;
  max-height: 0;
  margin-top: 0;
  opacity: 0;
  overflow: hidden;
  transform: translateY(-8px);
  transition: max-height 320ms ease, opacity 260ms ease, transform 320ms ease, margin-top 320ms ease;
}

.financing-estimator.is-open {
  max-height: 1320px;
  margin-top: clamp(8px, 2vw, 18px);
  opacity: 1;
  transform: translateY(0);
}

.financing-estimator__panel {
  padding: clamp(20px, 3vw, 30px);
  background:
    radial-gradient(circle at 92% 0%, rgba(0, 176, 255, 0.16), transparent 34%),
    rgba(255, 255, 255, 0.09);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  box-shadow: 0 24px 64px rgba(0, 18, 48, 0.22), inset 0 1px 0 rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(14px);
}

.financing-estimator__head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 22px;
}

.financing-estimator__head .eyebrow,
.financing-estimator__head h3 {
  color: white;
}

.financing-estimator__head h3 {
  max-width: 620px;
  margin: 4px 0 0;
  font-size: clamp(1.35rem, 2.4vw, 2rem);
  line-height: 1.1;
}

.financing-estimator__badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  flex: 0 0 auto;
  min-height: 34px;
  padding: 7px 11px;
  color: rgba(255, 255, 255, 0.88);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 900;
}

.financing-estimator__badge svg {
  width: 15px;
  height: 15px;
  color: var(--blue);
}

.financing-estimator__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.8fr);
  gap: 18px;
  align-items: stretch;
}

.financing-controls,
.financing-result,
.finance-example {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: var(--radius);
}

.financing-controls {
  display: grid;
  gap: 14px;
  padding: 18px;
}

.finance-field {
  display: grid;
  gap: 8px;
  color: white;
  font-size: 0.9rem;
  font-weight: 900;
}

.finance-field input,
.finance-field select {
  width: 100%;
  min-height: 46px;
  padding: 10px 12px;
  color: var(--navy);
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: var(--radius);
  font: inherit;
  font-weight: 850;
  outline: none;
  transition: border-color 180ms ease, box-shadow 180ms ease;
}

.finance-field input:focus,
.finance-field select:focus {
  border-color: rgba(0, 176, 255, 0.72);
  box-shadow: 0 0 0 4px rgba(0, 176, 255, 0.16);
}

.finance-range {
  width: 100%;
  accent-color: var(--blue);
  cursor: pointer;
}

.finance-trust-line {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  padding-top: 4px;
}

.finance-trust-line span,
.finance-trust-line small {
  color: rgba(255, 255, 255, 0.82);
  font-weight: 850;
}

.finance-trust-line span {
  font-size: 0.86rem;
}

.finance-trust-line small {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 6px 9px;
  background: rgba(255, 255, 255, 0.075);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  font-size: 0.78rem;
}

.finance-trust-line svg {
  width: 13px;
  height: 13px;
  color: var(--blue);
}

.financing-result {
  display: grid;
  align-content: center;
  gap: 10px;
  padding: clamp(20px, 3vw, 28px);
  background:
    radial-gradient(circle at 92% 8%, rgba(71, 216, 255, 0.22), transparent 36%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.13), rgba(255, 255, 255, 0.07));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.14);
}

.financing-result span {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.financing-result strong {
  color: white;
  font-size: clamp(1.7rem, 2.7vw, 2.55rem);
  line-height: 1.08;
  white-space: normal;
  transition: opacity 180ms ease, transform 180ms ease;
}

.financing-result strong.is-updating {
  opacity: 0.68;
  transform: translateY(-2px);
}

.financing-result p {
  margin: 0;
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.92rem;
  line-height: 1.48;
}

.finance-scenarios,
.finance-legal-details {
  margin-top: 14px;
}

.finance-scenarios {
  padding: 16px;
  background: rgba(255, 255, 255, 0.075);
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: var(--radius);
}

.finance-scenarios__head {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}

.finance-scenarios__head svg {
  width: 20px;
  height: 20px;
  color: var(--blue);
  flex: 0 0 auto;
}

.finance-scenarios__head h4 {
  margin: 0;
  color: white;
  font-size: 0.98rem;
  line-height: 1.2;
}

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

.finance-scenario-grid article {
  padding: 14px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: var(--radius);
  transition: transform 220ms ease, background 220ms ease, border-color 220ms ease;
}

.finance-scenario-grid article:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(0, 176, 255, 0.24);
}

.finance-scenario-grid span,
.finance-scenario-grid strong,
.finance-scenario-grid p {
  display: block;
  margin: 0;
}

.finance-scenario-grid span {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.78rem;
  font-weight: 900;
}

.finance-scenario-grid strong {
  margin-top: 6px;
  color: white;
  font-size: 1.22rem;
  line-height: 1;
}

.finance-scenario-grid p {
  margin-top: 9px;
  color: var(--blue);
  font-size: 0.9rem;
  font-weight: 900;
}

.finance-disclaimer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-top: 12px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.82rem;
  line-height: 1.5;
}

.finance-disclaimer p {
  max-width: 760px;
  margin: 0;
}

.finance-disclaimer button {
  flex: 0 0 auto;
  padding: 0;
  color: rgba(255, 255, 255, 0.9);
  background: transparent;
  border: 0;
  cursor: pointer;
  font: inherit;
  font-weight: 900;
  text-align: left;
  text-decoration: underline;
  text-decoration-color: rgba(0, 176, 255, 0.55);
  text-underline-offset: 4px;
  transition: color 180ms ease, transform 180ms ease;
}

.finance-disclaimer button:hover,
.finance-disclaimer button:focus-visible {
  color: white;
  transform: translateY(-1px);
  outline: none;
}

.finance-legal-modal[hidden] {
  display: none;
}

.finance-legal-modal {
  position: fixed;
  inset: 0;
  z-index: 220;
  display: grid;
  place-items: center;
  padding: 24px;
  background: rgba(0, 18, 48, 0.62);
  backdrop-filter: blur(12px);
  animation: financeModalFade 220ms ease;
}

.finance-legal-dialog {
  position: relative;
  width: min(100%, 760px);
  max-height: min(86vh, 780px);
  overflow: auto;
  padding: clamp(22px, 4vw, 36px);
  background:
    radial-gradient(circle at 92% 0%, rgba(0, 176, 255, 0.08), rgba(0, 176, 255, 0) 34%),
    #ffffff;
  border: 1px solid rgba(0, 39, 105, 0.08);
  border-radius: var(--radius);
  box-shadow: 0 34px 92px rgba(0, 18, 48, 0.36);
  animation: financeModalIn 240ms ease;
}

@keyframes financeModalFade {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes financeModalIn {
  from {
    opacity: 0;
    transform: translateY(8px) scale(0.98);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.finance-legal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  color: var(--navy);
  background: rgba(0, 39, 105, 0.04);
  border: 1px solid rgba(0, 39, 105, 0.08);
  border-radius: 999px;
  cursor: pointer;
}

.finance-legal-close svg {
  width: 18px;
  height: 18px;
}

.finance-legal-head {
  display: grid;
  gap: 10px;
  max-width: 620px;
  padding-right: 42px;
}

.finance-legal-head h2 {
  margin: 0;
  color: var(--navy);
  font-size: clamp(1.65rem, 3vw, 2.35rem);
  line-height: 1.08;
}

.finance-legal-head p:not(.eyebrow) {
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
}

.finance-legal-modal-content {
  display: grid;
  gap: 18px;
  margin-top: 24px;
}

.finance-legal-modal-content section {
  max-width: 660px;
  padding-top: 18px;
  border-top: 1px solid rgba(0, 39, 105, 0.08);
}

.finance-legal-modal-content h3,
.finance-legal-modal-content p {
  margin: 0;
}

.finance-legal-modal-content h3 {
  color: var(--navy);
  font-size: 1rem;
  line-height: 1.2;
}

.finance-legal-modal-content p {
  margin-top: 9px;
  color: rgba(48, 67, 98, 0.78);
  font-size: 0.88rem;
  line-height: 1.75;
}

.design-process-section {
  background: linear-gradient(180deg, #ffffff 0%, var(--soft) 100%);
}

.design-process-section .container {
  width: min(100% - 32px, 1240px);
}

.design-process-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: clamp(24px, 5vw, 60px);
  align-items: start;
}

.design-price-card {
  padding: 24px;
  color: white;
  background: var(--navy);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.design-price-card span {
  color: rgba(255, 255, 255, 0.78);
  font-weight: 800;
}

.design-price-card strong {
  display: block;
  margin: 12px 0;
  font-size: clamp(2.8rem, 5vw, 4.2rem);
  line-height: 1;
}

.design-price-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 9px 12px;
  margin: 0 0 16px;
  padding: 0;
  list-style: none;
}

.design-price-list li {
  display: flex;
  align-items: center;
  gap: 9px;
  color: white;
  font-size: 0.9rem;
  font-weight: 800;
}

.design-price-list svg {
  width: 18px;
  height: 18px;
  color: var(--blue);
  flex: 0 0 auto;
}

.design-price-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
}

.design-timeline {
  position: relative;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
  margin-top: 24px;
}

.design-timeline::before {
  content: "";
  position: absolute;
  top: 52px;
  right: 24px;
  left: 24px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(0, 176, 255, 0.3), transparent);
  pointer-events: none;
}

.design-timeline article {
  position: relative;
  z-index: 1;
  display: grid;
  align-content: start;
  min-height: 240px;
  padding: 20px;
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 14px 32px rgba(0, 39, 105, 0.08);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.design-timeline article:hover {
  transform: translateY(-3px);
  border-color: rgba(0, 176, 255, 0.36);
  box-shadow: 0 18px 42px rgba(0, 39, 105, 0.12);
}

.design-timeline span {
  color: var(--blue);
  font-size: 0.82rem;
  font-weight: 900;
}

.design-timeline svg {
  width: 26px;
  height: 26px;
  margin: 16px 0;
  color: var(--navy);
  transition: color 180ms ease, transform 180ms ease;
}

.design-timeline article:hover svg {
  color: var(--blue);
  transform: translateX(2px);
}

.design-timeline h3 {
  margin: 0 0 10px;
  color: var(--navy);
  font-size: 1.05rem;
  line-height: 1.2;
}

.design-timeline p {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.46;
}

.design-process-note {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  margin-top: 16px;
  padding: 22px;
  color: white;
  background: var(--navy);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.design-process-note > svg {
  width: 30px;
  height: 30px;
  color: var(--blue);
  flex: 0 0 auto;
}

.design-process-note p {
  flex: 1;
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  font-weight: 700;
}

.design-process-note .button--design-cta {
  min-height: 60px;
  padding: 16px 28px;
  font-size: 1.03rem;
  background: linear-gradient(135deg, var(--blue), #42d5ff);
  box-shadow: 0 20px 44px rgba(0, 176, 255, 0.34), 0 0 0 1px rgba(255, 255, 255, 0.12);
}

.design-process-note .button--design-cta:hover,
.design-process-note .button--design-cta:focus-visible {
  transform: translateY(-3px);
  background: linear-gradient(135deg, #009ee6, #6adfff);
  box-shadow: 0 24px 52px rgba(0, 176, 255, 0.42), 0 0 0 1px rgba(255, 255, 255, 0.18);
}

.renovation-section {
  content-visibility: auto;
  contain-intrinsic-size: 1120px;
  background:
    radial-gradient(circle at 82% 18%, rgba(0, 176, 255, 0.08) 0%, rgba(0, 176, 255, 0) 34%),
    linear-gradient(180deg, #ffffff 0%, var(--soft) 100%);
}

.renovation-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(0, 1.12fr);
  gap: clamp(28px, 5vw, 68px);
  align-items: center;
}

.renovation-copy h2 {
  font-size: clamp(2rem, 3.6vw, 3.05rem);
  line-height: 1.04;
}

.renovation-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.renovation-copy p {
  line-height: 1.68;
}

.renovation-checklist {
  display: grid;
  gap: 10px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.renovation-checklist li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--navy);
  font-weight: 800;
  line-height: 1.35;
}

.renovation-checklist svg {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
  color: var(--blue);
}

.renovation-showroom-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: fit-content;
  margin-top: 20px;
  padding: 10px 14px;
  color: var(--navy);
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(0, 176, 255, 0.22);
  border-radius: 999px;
  box-shadow: 0 14px 30px rgba(0, 39, 105, 0.07);
  font-size: 0.88rem;
  font-weight: 850;
  line-height: 1.3;
}

.renovation-showroom-badge svg {
  width: 19px;
  height: 19px;
  flex: 0 0 auto;
  color: var(--blue);
}

.renovation-mini-process {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 16px;
  padding: 12px;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(0, 39, 105, 0.08);
  border-radius: var(--radius);
  box-shadow: 0 16px 34px rgba(0, 39, 105, 0.06);
}

.renovation-process-step {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 38px;
  padding: 8px 10px;
  color: var(--navy);
  background: rgba(248, 250, 252, 0.96);
  border: 1px solid rgba(0, 39, 105, 0.08);
  border-radius: 12px;
  font-size: 0.82rem;
  font-weight: 850;
  line-height: 1.2;
}

.renovation-process-step svg {
  width: 17px;
  height: 17px;
  flex: 0 0 auto;
  color: var(--blue);
}

.renovation-process-arrow {
  width: 16px;
  height: 16px;
  flex: 0 0 auto;
  color: rgba(0, 39, 105, 0.34);
}

.renovation-panel {
  display: grid;
  gap: 16px;
}

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

.renovation-benefits article {
  position: relative;
  display: grid;
  align-content: start;
  gap: 10px;
  min-height: 174px;
  padding: 18px 20px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(0, 39, 105, 0.1);
  border-radius: var(--radius);
  box-shadow: 0 16px 34px rgba(0, 39, 105, 0.07);
  transition: transform 0.26s ease, border-color 0.26s ease, box-shadow 0.26s ease, background 0.26s ease;
}

.renovation-benefits article:hover {
  transform: translateY(-4px);
  background: #ffffff;
  border-color: rgba(0, 176, 255, 0.24);
  box-shadow: 0 22px 48px rgba(0, 39, 105, 0.12), 0 0 22px rgba(0, 176, 255, 0.07);
}

.renovation-benefit--featured {
  background:
    radial-gradient(circle at 14% 0%, rgba(0, 176, 255, 0.1) 0%, rgba(0, 176, 255, 0) 36%),
    linear-gradient(145deg, #ffffff 0%, #f3fbff 100%);
  border-color: rgba(0, 176, 255, 0.32);
  box-shadow: 0 20px 44px rgba(0, 39, 105, 0.1), 0 0 24px rgba(0, 176, 255, 0.09);
}

.renovation-benefits svg {
  width: 28px;
  height: 28px;
  margin-bottom: 2px;
  color: var(--blue);
  transition: transform 0.26s ease, filter 0.26s ease;
}

.renovation-benefits article:hover svg {
  transform: translateY(-2px);
  filter: drop-shadow(0 8px 16px rgba(0, 176, 255, 0.24));
}

.renovation-benefits h3 {
  margin: 0;
  color: var(--navy);
  font-size: 1.04rem;
  line-height: 1.16;
}

.renovation-benefits p {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.48;
}

.renovation-logistics {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 21px 24px;
  color: white;
  background:
    radial-gradient(circle at 10% 0%, rgba(255, 255, 255, 0.18) 0%, rgba(255, 255, 255, 0) 31%),
    radial-gradient(circle at 94% 12%, rgba(0, 176, 255, 0.26) 0%, rgba(0, 176, 255, 0) 38%),
    linear-gradient(135deg, #001f5d 0%, #003f92 58%, #005fbe 128%);
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: var(--radius);
  box-shadow: 0 24px 56px rgba(0, 39, 105, 0.19), inset 0 1px 0 rgba(255, 255, 255, 0.15);
  font-weight: 800;
}

.renovation-logistics-icon {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  flex: 0 0 auto;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 16px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.18);
}

.renovation-logistics-icon svg {
  width: 26px;
  height: 26px;
  color: white;
}

.renovation-logistics-text {
  color: rgba(255, 255, 255, 0.94);
  font-size: 0.98rem;
  line-height: 1.45;
}

.calculator-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(390px, 0.5fr);
  gap: clamp(24px, 4vw, 48px);
  align-items: start;
}

.calculator-trust {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 8px 0 0;
  color: var(--navy);
  font-size: 0.9rem;
  font-weight: 800;
}

.calculator-trust svg {
  width: 18px;
  height: 18px;
  color: var(--blue);
  flex: 0 0 auto;
}

.calculator-configurator {
  display: grid;
  gap: 14px;
  margin-top: 28px;
}

.calculator-step {
  padding: 18px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.9), rgba(244, 250, 255, 0.78));
  border: 1px solid rgba(0, 39, 105, 0.09);
  border-radius: calc(var(--radius) + 4px);
  box-shadow: 0 16px 36px rgba(0, 39, 105, 0.07), inset 0 1px 0 rgba(255, 255, 255, 0.86);
  backdrop-filter: blur(10px);
}

.calculator-step-head {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.calculator-step-head > span {
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
  flex: 0 0 auto;
  color: var(--blue);
  background: rgba(0, 176, 255, 0.1);
  border: 1px solid rgba(0, 176, 255, 0.18);
  border-radius: 999px;
  font-size: 0.76rem;
  font-weight: 900;
}

.calculator-step-head h3 {
  margin: 0;
  color: var(--navy);
  font-size: 1.04rem;
  line-height: 1.16;
}

.calculator-step-head p {
  margin: 5px 0 0;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.45;
}

.calculator-preset {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 28px;
  padding: 18px;
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 14px 34px rgba(0, 39, 105, 0.08);
}

.calculator-preset label,
.calculator-summary label {
  display: grid;
  gap: 8px;
  color: var(--navy);
  font-size: 0.86rem;
  font-weight: 800;
}

.calculator-preset label span {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 8px;
}

.calculator-preset input,
.calculator-preset select,
.calculator-summary select,
.calculator-row input {
  width: 100%;
  min-height: 46px;
  padding: 10px 12px;
  color: var(--ink);
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.calculator-preset input:focus,
.calculator-preset select:focus,
.calculator-summary select:focus,
.calculator-row input:focus {
  border-color: var(--blue);
  outline: 3px solid rgba(0, 176, 255, 0.2);
}

.calculator-preset .button {
  min-height: 46px;
}

.calculator-step .calculator-preset,
.calculator-step .calculator-scope {
  margin-top: 16px;
  padding: 0;
  background: transparent;
  border: 0;
  box-shadow: none;
}

.calculator-scope {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 14px;
  padding: 16px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(0, 39, 105, 0.09);
  border-radius: var(--radius);
  box-shadow: 0 12px 28px rgba(0, 39, 105, 0.06);
}

.calculator-scope > span {
  flex: 1 0 100%;
  color: var(--navy);
  font-size: 0.82rem;
  font-weight: 900;
}

.calculator-scope label {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  min-height: 34px;
  padding: 7px 10px;
  color: var(--navy);
  background: white;
  border: 1px solid rgba(0, 39, 105, 0.1);
  border-radius: 999px;
  font-size: 0.86rem;
  font-weight: 800;
  cursor: pointer;
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.calculator-scope label:hover {
  transform: translateY(-2px);
  border-color: rgba(0, 176, 255, 0.24);
  box-shadow: 0 10px 22px rgba(0, 39, 105, 0.08);
}

.calculator-scope label:has(input:focus-visible) {
  border-color: var(--blue);
  outline: 3px solid rgba(0, 176, 255, 0.16);
}

.calculator-scope label:has(input:checked) {
  color: var(--navy);
  background: linear-gradient(135deg, rgba(0, 176, 255, 0.12), rgba(255, 255, 255, 0.96));
  border-color: rgba(0, 176, 255, 0.38);
  box-shadow: 0 12px 26px rgba(0, 176, 255, 0.12);
}

.calculator-scope input {
  width: 15px;
  height: 15px;
  accent-color: var(--blue);
}

.calculator-config-status {
  display: grid;
  gap: 14px;
  padding: 18px;
  color: var(--navy);
  background:
    radial-gradient(circle at 12% 0%, rgba(0, 176, 255, 0.1) 0%, rgba(0, 176, 255, 0) 34%),
    rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(0, 39, 105, 0.09);
  border-radius: calc(var(--radius) + 2px);
  box-shadow: 0 14px 32px rgba(0, 39, 105, 0.07), inset 0 1px 0 rgba(255, 255, 255, 0.82);
}

.calculator-config-status > div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.calculator-config-status > div > span {
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 900;
}

.calculator-config-status strong {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 7px 10px;
  color: var(--navy);
  background: rgba(0, 176, 255, 0.11);
  border: 1px solid rgba(0, 176, 255, 0.2);
  border-radius: 999px;
  font-size: 0.8rem;
  line-height: 1;
}

.calculator-config-status ul {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.calculator-config-status li {
  display: flex;
  align-items: center;
  gap: 8px;
  min-height: 42px;
  padding: 10px;
  color: var(--navy);
  background: white;
  border: 1px solid rgba(0, 39, 105, 0.08);
  border-radius: 12px;
  font-size: 0.86rem;
  font-weight: 800;
}

.calculator-config-status svg {
  width: 17px;
  height: 17px;
  color: var(--blue);
  flex: 0 0 auto;
}

.calculator-mini-trust {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}

.calculator-mini-trust span {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  min-height: 48px;
  padding: 10px 11px;
  color: var(--navy);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.94), rgba(238, 248, 255, 0.82));
  border: 1px solid rgba(0, 176, 255, 0.16);
  border-radius: 12px;
  box-shadow: 0 12px 28px rgba(0, 39, 105, 0.06);
  font-size: 0.78rem;
  font-weight: 900;
  line-height: 1.18;
}

.calculator-mini-trust svg {
  width: 22px;
  height: 22px;
  padding: 4px;
  color: white;
  background: var(--blue);
  border-radius: 999px;
  flex: 0 0 auto;
}

.calculator-summary {
  position: sticky;
  top: 96px;
  display: grid;
  gap: 14px;
  padding: 22px;
  color: white;
  background:
    radial-gradient(circle at 14% 0%, rgba(255, 255, 255, 0.15) 0%, rgba(255, 255, 255, 0) 32%),
    radial-gradient(circle at 95% 16%, rgba(0, 176, 255, 0.22) 0%, rgba(0, 176, 255, 0) 36%),
    linear-gradient(135deg, #001f5d 0%, #003a88 62%, #005fbe 128%);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  box-shadow: 0 26px 64px rgba(0, 39, 105, 0.24), 0 0 34px rgba(0, 176, 255, 0.08), inset 0 1px 0 rgba(255, 255, 255, 0.14);
}

.calculator-summary .summary-label,
.calculator-summary p,
.calculator-summary label {
  color: rgba(255, 255, 255, 0.78);
}

.calculator-summary > strong {
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  line-height: 1;
}

.calculator-summary > strong.is-placeholder {
  color: rgba(255, 255, 255, 0.92);
  font-size: clamp(1.35rem, 2.2vw, 1.62rem);
  line-height: 1.14;
}

.summary-insight {
  margin: -2px 0 2px;
  padding: 10px 12px;
  color: rgba(255, 255, 255, 0.86);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  font-size: 0.88rem;
  font-weight: 800;
  line-height: 1.35;
}

.summary-row,
.summary-breakdown-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.summary-row {
  padding-top: 12px;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
}

.summary-row span,
.summary-breakdown span {
  color: rgba(255, 255, 255, 0.76);
}

.summary-row strong {
  max-width: 52%;
  font-size: 0.95rem;
  line-height: 1.25;
  text-align: right;
}

.summary-breakdown {
  display: grid;
  gap: 9px;
  padding: 12px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
}

.summary-breakdown-item {
  min-height: 44px;
  padding: 8px 9px;
  border: 1px solid transparent;
  border-radius: 12px;
}

.summary-breakdown-item.is-top {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(0, 176, 255, 0.2);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.summary-breakdown-item > span {
  display: grid;
  flex: 1 1 auto;
  gap: 7px;
}

.summary-breakdown-item em {
  color: rgba(255, 255, 255, 0.86);
  font-style: normal;
  font-weight: 800;
}

.summary-breakdown-item strong {
  flex: 0 0 auto;
  font-size: 0.9rem;
}

.breakdown-bar {
  position: relative;
  display: block;
  width: 100%;
  height: 4px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.14);
  border-radius: 999px;
}

.breakdown-bar b {
  position: absolute;
  inset: 0 auto 0 0;
  width: var(--bar-width, 0%);
  background: linear-gradient(90deg, rgba(0, 176, 255, 0.65), rgba(255, 255, 255, 0.72));
  border-radius: inherit;
}

.summary-breakdown-item--empty strong {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.84rem;
}

.calculator-summary p {
  margin: 0;
  font-size: 0.9rem;
}

.calculator-table-wrap {
  overflow: hidden;
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 14px 34px rgba(0, 39, 105, 0.08);
}

.calculator-details {
  margin-top: 28px;
}

.calculator-details-summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: 66px;
  padding: 16px 20px;
  color: var(--navy);
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(0, 39, 105, 0.1);
  border-radius: var(--radius);
  box-shadow: 0 12px 28px rgba(0, 39, 105, 0.07);
  cursor: pointer;
  list-style: none;
  transition: border-color 0.22s ease, box-shadow 0.22s ease, background 0.22s ease;
}

.calculator-details-summary::-webkit-details-marker {
  display: none;
}

.calculator-details-summary:hover {
  background: #ffffff;
  border-color: rgba(0, 176, 255, 0.2);
  box-shadow: 0 16px 34px rgba(0, 39, 105, 0.09);
}

.calculator-details-summary strong,
.calculator-details-summary small {
  display: block;
}

.calculator-details-summary strong {
  font-size: 1.05rem;
}

.calculator-details-summary small {
  margin-top: 4px;
  color: var(--muted);
  line-height: 1.35;
}

.details-meta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--navy);
  font-weight: 900;
  white-space: nowrap;
}

.details-meta svg {
  width: 20px;
  height: 20px;
  color: var(--blue);
  transition: transform 180ms ease;
}

.calculator-details[open] .details-meta svg {
  transform: rotate(180deg);
}

.calculator-details[open] .calculator-details-summary {
  border-radius: var(--radius) var(--radius) 0 0;
  border-bottom-color: transparent;
}

.calculator-details[open] .calculator-table-wrap {
  border-radius: 0 0 var(--radius) var(--radius);
  box-shadow: 0 18px 38px rgba(0, 39, 105, 0.1);
  animation: calculatorDetailsReveal 0.24s ease both;
}

@keyframes calculatorDetailsReveal {
  from {
    opacity: 0;
    transform: translateY(-6px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.calculator-education {
  display: grid;
  gap: 16px;
  margin-top: 18px;
  padding: 20px;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(0, 39, 105, 0.09);
  border-radius: var(--radius);
  box-shadow: 0 12px 28px rgba(0, 39, 105, 0.06);
}

.calculator-education h3 {
  margin: 0;
  color: var(--navy);
  font-size: 1.08rem;
}

.calculator-education ul {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.calculator-education li {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 46px;
  min-width: 0;
  color: var(--muted);
  font-weight: 800;
  overflow-wrap: anywhere;
  hyphens: auto;
}

.calculator-education svg {
  width: 19px;
  height: 19px;
  color: var(--blue);
  flex: 0 0 auto;
}

.single-install-section {
  background:
    radial-gradient(circle at 12% 10%, rgba(0, 176, 255, 0.06) 0%, rgba(0, 176, 255, 0) 32%),
    linear-gradient(180deg, #ffffff 0%, #f5f9fd 100%);
}

.single-install-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 430px);
  gap: clamp(28px, 5vw, 64px);
  align-items: start;
}

.single-install-copy h2 {
  max-width: 720px;
  margin: 0;
  color: var(--navy);
  font-size: clamp(2rem, 3.7vw, 3.25rem);
  line-height: 1.04;
}

.single-install-copy > p:not(.eyebrow) {
  max-width: 650px;
  color: var(--muted);
  font-size: 1.04rem;
  line-height: 1.65;
}

.single-install-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
}

.single-install-chips button {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 38px;
  padding: 9px 12px;
  color: var(--navy);
  font: inherit;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(0, 39, 105, 0.08);
  border-radius: 999px;
  box-shadow: 0 10px 24px rgba(0, 39, 105, 0.05);
  cursor: pointer;
  font-size: 0.88rem;
  font-weight: 850;
  transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.single-install-chips button:hover,
.single-install-chips button.is-active {
  transform: translateY(-2px);
  border-color: rgba(0, 176, 255, 0.28);
  box-shadow: 0 14px 30px rgba(0, 39, 105, 0.08);
}

.single-install-chips button.is-active {
  color: #002769;
  background: linear-gradient(135deg, rgba(229, 247, 255, 0.98), rgba(255, 255, 255, 0.9));
  border-color: rgba(0, 176, 255, 0.5);
  box-shadow: 0 16px 34px rgba(0, 176, 255, 0.14), 0 0 0 3px rgba(0, 176, 255, 0.08);
}

.single-install-chips svg {
  width: 17px;
  height: 17px;
  color: var(--blue);
}

.single-install-benefits {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 22px;
}

.single-install-benefits article {
  display: grid;
  gap: 12px;
  padding: 16px;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(0, 39, 105, 0.08);
  border-radius: var(--radius);
  box-shadow: 0 12px 28px rgba(0, 39, 105, 0.055);
  transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.single-install-benefits article:hover {
  transform: translateY(-2px);
  border-color: rgba(0, 176, 255, 0.18);
  box-shadow: 0 16px 34px rgba(0, 39, 105, 0.08);
}

.single-install-benefits svg {
  width: 20px;
  height: 20px;
  color: var(--blue);
}

.single-install-benefits h3 {
  margin: 0;
  color: var(--navy);
  font-size: 0.96rem;
  line-height: 1.18;
}

.single-install-benefits p {
  margin: 6px 0 0;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 700;
  line-height: 1.42;
}

.single-install-trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 9px 14px;
  margin: 18px 0 0;
  padding: 0;
  color: rgba(0, 39, 105, 0.72);
  list-style: none;
  font-size: 0.86rem;
  font-weight: 800;
}

.single-install-trust-row li {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: color 200ms ease, transform 200ms ease;
}

.single-install-trust-row li:hover {
  transform: translateY(-1px);
  color: rgba(0, 39, 105, 0.9);
}

.single-install-trust-row svg {
  width: 14px;
  height: 14px;
  color: var(--blue);
  flex: 0 0 auto;
}

.single-install-trust-row__note {
  flex-basis: 100%;
  align-items: flex-start !important;
  max-width: 760px;
  margin-top: 2px;
  padding-top: 2px;
}

.single-install-trust-row__note svg {
  width: 16px;
  height: 16px;
  margin-top: 2px;
}

.single-install-trust-row__note span {
  display: grid;
  gap: 3px;
}

.single-install-trust-row__note small {
  color: rgba(48, 67, 98, 0.62);
  font-size: 0.76rem;
  font-weight: 700;
  line-height: 1.42;
}

.single-install-card {
  display: grid;
  gap: 10px;
  padding: clamp(18px, 2vw, 22px);
  color: var(--ink);
  background:
    radial-gradient(circle at 88% 0%, rgba(0, 176, 255, 0.08), rgba(0, 176, 255, 0) 32%),
    rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(0, 39, 105, 0.08);
  border-radius: var(--radius);
  box-shadow: 0 24px 62px rgba(0, 39, 105, 0.12), inset 0 1px 0 rgba(255, 255, 255, 0.92);
}

.single-install-card-head {
  display: flex;
  align-items: center;
  gap: 12px;
}

.single-install-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  color: white;
  background: linear-gradient(135deg, var(--navy), var(--blue));
  border-radius: 14px;
  box-shadow: 0 14px 30px rgba(0, 176, 255, 0.2);
}

.single-install-icon svg {
  width: 21px;
  height: 21px;
}

.single-install-card-head span:not(.single-install-icon) {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.single-install-card h3 {
  margin: 3px 0 0;
  color: var(--navy);
  font-size: 1.32rem;
  line-height: 1.12;
}

.single-install-field {
  display: grid;
  gap: 6px;
  color: var(--navy);
  font-size: 0.92rem;
  font-weight: 900;
}

.single-install-field select {
  width: 100%;
  min-height: 44px;
  padding: 9px 12px;
  color: var(--ink);
  background: white;
  border: 1px solid rgba(0, 39, 105, 0.12);
  border-radius: var(--radius);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.single-install-field select:focus {
  border-color: var(--blue);
  outline: 3px solid rgba(0, 176, 255, 0.18);
}

.single-install-options {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 6px;
  margin: 0;
  padding: 0;
  border: 0;
}

.single-install-options legend {
  grid-column: 1 / -1;
  margin-bottom: 0;
  color: var(--navy);
  font-size: 0.92rem;
  font-weight: 900;
}

.single-install-options label {
  display: flex;
  align-items: center;
  gap: 8px;
  min-height: 30px;
  padding: 6px 9px;
  color: var(--navy);
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(0, 39, 105, 0.08);
  border-radius: 999px;
  cursor: pointer;
  font-size: 0.74rem;
  font-weight: 800;
  line-height: 1.24;
  transition: transform 200ms ease, border-color 200ms ease, background 200ms ease, box-shadow 200ms ease;
}

.single-install-options label:hover {
  transform: translateY(-1px);
  background: white;
  border-color: rgba(0, 176, 255, 0.22);
  box-shadow: 0 10px 22px rgba(0, 39, 105, 0.06);
}

.single-install-options label:has(input:checked) {
  color: #002769;
  background: rgba(230, 247, 255, 0.9);
  border-color: rgba(0, 176, 255, 0.32);
  box-shadow: 0 10px 24px rgba(0, 176, 255, 0.09);
}

.single-install-options input {
  accent-color: var(--blue);
}

.single-install-result {
  display: grid;
  gap: 5px;
  padding: 15px 16px;
  color: white;
  background:
    radial-gradient(circle at 95% 10%, rgba(0, 176, 255, 0.22), rgba(0, 176, 255, 0) 34%),
    linear-gradient(135deg, #001f5d 0%, #003a88 70%, #0066c9 130%);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  box-shadow: 0 18px 42px rgba(0, 39, 105, 0.18), inset 0 1px 0 rgba(255, 255, 255, 0.14);
}

.single-install-result span,
.single-install-result p,
.single-install-result small {
  color: rgba(255, 255, 255, 0.78);
}

.single-install-result span {
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.single-install-result strong {
  color: white;
  font-size: clamp(1.7rem, 3vw, 2.35rem);
  line-height: 1;
}

.single-install-result strong.is-placeholder {
  font-size: 1.45rem;
}

.single-install-result p,
.single-install-individual,
.single-install-result small,
.single-install-disclaimer {
  margin: 0;
  font-size: 0.86rem;
  line-height: 1.45;
}

.single-install-individual {
  padding-top: 4px;
  color: rgba(255, 255, 255, 0.88) !important;
  font-weight: 850;
}

.single-install-actions {
  display: grid;
  gap: 9px;
}

.single-install-actions .button {
  min-height: 44px;
}

.single-install-disclaimer {
  color: rgba(48, 67, 98, 0.72);
  font-size: 0.8rem;
  font-weight: 700;
  line-height: 1.42;
}

.single-install-photo-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 30px;
  padding: 2px 4px;
  color: rgba(0, 39, 105, 0.78);
  font: inherit;
  font-size: 0.86rem;
  font-weight: 900;
  background: transparent;
  border: 0;
  cursor: pointer;
  transition: color 200ms ease, transform 200ms ease;
}

.single-install-photo-link:hover {
  color: var(--blue);
  transform: translateY(-1px);
}

.single-install-photo-link svg {
  width: 17px;
  height: 17px;
}

.photo-quote-modal[hidden] {
  display: none;
}

.photo-quote-modal {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: grid;
  place-items: center;
  padding: 24px;
  background: rgba(0, 18, 48, 0.58);
  backdrop-filter: blur(10px);
}

.photo-quote-dialog {
  position: relative;
  width: min(100%, 560px);
  max-height: min(86vh, 760px);
  overflow: auto;
  padding: clamp(22px, 4vw, 34px);
  background:
    radial-gradient(circle at 92% 0%, rgba(0, 176, 255, 0.08), rgba(0, 176, 255, 0) 34%),
    #ffffff;
  border: 1px solid rgba(0, 39, 105, 0.08);
  border-radius: var(--radius);
  box-shadow: 0 32px 90px rgba(0, 18, 48, 0.34);
}

.photo-quote-close {
  position: absolute;
  top: 16px;
  right: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  color: var(--navy);
  background: rgba(0, 39, 105, 0.04);
  border: 1px solid rgba(0, 39, 105, 0.08);
  border-radius: 999px;
  cursor: pointer;
}

.photo-quote-close svg {
  width: 18px;
  height: 18px;
}

.photo-quote-head {
  display: grid;
  gap: 10px;
  padding-right: 42px;
}

.photo-quote-head h2 {
  margin: 0;
  color: var(--navy);
  font-size: clamp(1.7rem, 3vw, 2.35rem);
  line-height: 1.06;
}

.photo-quote-head p:not(.eyebrow) {
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
}

.photo-quote-form {
  display: grid;
  gap: 14px;
  margin-top: 22px;
}

.photo-quote-form label {
  display: grid;
  gap: 7px;
  color: var(--navy);
  font-size: 0.9rem;
  font-weight: 900;
}

.photo-quote-form input,
.photo-quote-form textarea {
  width: 100%;
  min-height: 46px;
  padding: 11px 13px;
  color: var(--ink);
  font: inherit;
  background: rgba(248, 251, 255, 0.92);
  border: 1px solid rgba(0, 39, 105, 0.1);
  border-radius: var(--radius);
}

.photo-quote-form textarea {
  min-height: 104px;
  resize: vertical;
}

.photo-quote-form input:focus,
.photo-quote-form textarea:focus {
  border-color: var(--blue);
  outline: 3px solid rgba(0, 176, 255, 0.18);
}

.photo-upload-field span {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 750;
}

.photo-upload-field svg {
  width: 16px;
  height: 16px;
  color: var(--blue);
}

.photo-quote-note {
  margin: 0;
  color: var(--muted);
  font-size: 0.84rem;
  font-weight: 750;
  line-height: 1.45;
}

.calculator-table-head,
.calculator-row {
  display: grid;
  grid-template-columns: minmax(260px, 1fr) 150px 150px 150px;
  gap: 14px;
  align-items: center;
}

.calculator-table-head {
  padding: 14px 18px;
  color: white;
  background: var(--navy);
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
}

.calculator-row {
  padding: 16px 18px;
  border-top: 1px solid var(--line);
}

.calculator-row:nth-child(even) {
  background: #f8fbff;
}

.work-title {
  display: grid;
  gap: 5px;
}

.work-title span {
  width: fit-content;
  padding: 4px 8px;
  color: var(--navy);
  background: var(--blue-soft);
  border-radius: 999px;
  font-size: 0.76rem;
  font-weight: 900;
}

.work-title strong {
  color: var(--ink);
  line-height: 1.2;
}

.work-title small {
  color: var(--muted);
}

.work-rate {
  color: var(--navy);
  font-weight: 900;
}

.work-qty {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 8px;
}

.work-qty input {
  text-align: right;
}

.work-qty span {
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 800;
}

.work-total {
  color: var(--navy);
  font-weight: 900;
  text-align: right;
}

.section-heading {
  max-width: 780px;
  margin-bottom: 34px;
}

.section-heading--light h2,
.section-heading--light p {
  color: white;
}

.brands-section {
  content-visibility: auto;
  contain-intrinsic-size: 760px;
  overflow: hidden;
  background: white;
}

.brand-carousel {
  position: relative;
  margin-top: 36px;
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent 0, #000 8%, #000 92%, transparent 100%);
}

.brand-track {
  display: flex;
  width: max-content;
  gap: 16px;
  animation: brandMarquee 48s linear infinite;
}

.brand-carousel:hover .brand-track {
  animation-play-state: paused;
}

.brand-logo-card {
  display: grid;
  place-items: center;
  width: clamp(190px, 18vw, 245px);
  height: 118px;
  padding: 24px;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 14px 30px rgba(0, 39, 105, 0.08);
}

.brand-logo-card--dark {
  background: #05070c;
  border-color: #05070c;
}

.brand-logo-card--orange {
  background: #f58b21;
  border-color: #f58b21;
}

.brand-logo-card--massi {
  background: #f8fbff;
  border-color: #dce8f4;
}

.brand-logo-card--gante {
  background: #151515;
  border-color: #151515;
}

.brand-logo-card--word {
  background:
    linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
}

.brand-logo-card img {
  width: 100%;
  max-width: 178px;
  max-height: 58px;
  object-fit: contain;
}

.brand-logo-card.is-fallback img {
  display: none;
}

.brand-logo-card.is-fallback::before {
  content: attr(data-brand);
  color: var(--navy);
  font-size: clamp(1.08rem, 1.45vw, 1.45rem);
  font-weight: 900;
  line-height: 1.1;
  text-align: center;
}

.brand-logo-card--dark.is-fallback::before,
.brand-logo-card--orange.is-fallback::before,
.brand-logo-card--gante.is-fallback::before {
  color: white;
}

.mobile-carousel-controls {
  display: none;
}

.mobile-loop-carousel-shell {
  display: contents;
}

.brand-logo-card--dark img,
.brand-logo-card--orange img {
  max-width: 190px;
  max-height: 66px;
}

.brand-wordmark {
  display: grid;
  justify-items: center;
  color: var(--navy);
  line-height: 1;
}

.brand-wordmark--massi {
  font-size: 2.3rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: lowercase;
}

.brand-wordmark--massi small {
  margin-top: 8px;
  color: #52667d;
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: none;
}

.brand-wordmark--simple {
  color: var(--navy);
  font-size: clamp(1.18rem, 1.55vw, 1.55rem);
  font-weight: 900;
  letter-spacing: 0;
  line-height: 1.1;
  text-align: center;
}

@keyframes brandMarquee {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(calc(-50% - 8px));
  }
}

@media (prefers-reduced-motion: reduce) {
  .brand-track {
    animation: none;
  flex-wrap: wrap;
  width: auto;
  }
}

.faq-section {
  content-visibility: auto;
  contain-intrinsic-size: 980px;
  background:
    radial-gradient(circle at 10% 20%, rgba(0, 176, 255, 0.06) 0%, rgba(0, 176, 255, 0) 28%),
    linear-gradient(180deg, #ffffff 0%, #f7fbff 100%);
}

.faq-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.38fr) minmax(0, 0.62fr);
  gap: clamp(34px, 6vw, 82px);
  align-items: start;
}

.faq-copy {
  display: grid;
  gap: 16px;
}

.faq-copy h2 {
  margin: 0;
  color: var(--navy);
  font-size: clamp(1.82rem, 3.8vw, 3.32rem);
  line-height: 0.98;
  letter-spacing: 0;
}

.faq-copy p {
  max-width: 520px;
  margin: 0;
  color: var(--muted);
  font-size: 1.04rem;
  line-height: 1.65;
}

.faq-trust-list {
  display: grid;
  gap: 10px;
  margin: 10px 0 0;
  padding: 0;
  color: var(--navy);
  list-style: none;
}

.faq-trust-list li {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 0.94rem;
  font-weight: 820;
  line-height: 1.35;
}

.faq-trust-list svg {
  width: 16px;
  height: 16px;
  flex: 0 0 auto;
  color: var(--blue);
  opacity: 0.82;
  stroke-width: 2.2;
}

.faq-mini-cta {
  display: grid;
  gap: 12px;
  max-width: 330px;
  margin-top: 8px;
  padding: 18px;
  border: 1px solid rgba(0, 39, 105, 0.08);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.74);
  box-shadow: 0 12px 28px rgba(0, 39, 105, 0.06);
}

.faq-mini-cta span {
  color: var(--navy);
  font-size: 0.98rem;
  font-weight: 900;
}

.faq-mini-cta p {
  margin: -2px 0 2px;
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 700;
  line-height: 1.52;
}

.faq-mini-actions {
  display: grid;
  grid-template-columns: 1fr;
  gap: 8px;
}

.faq-mini-cta .button {
  justify-content: center;
  min-height: 40px;
  padding: 9px 12px;
  font-size: 0.9rem;
  transition:
    transform 200ms ease,
    box-shadow 200ms ease,
    border-color 200ms ease,
    background 200ms ease,
    color 200ms ease;
}

.faq-mini-cta .button:hover,
.faq-mini-cta .button:focus-visible {
  color: var(--navy);
  background: white;
  transform: translateY(-1px);
  border-color: rgba(0, 176, 255, 0.34);
  box-shadow: 0 12px 28px rgba(0, 39, 105, 0.1);
}

.faq-phone-link {
  color: var(--muted);
}

.faq-panel {
  display: grid;
  gap: 14px;
}

.faq-list {
  display: grid;
  gap: 8px;
}

.faq-item {
  overflow: hidden;
  border: 1px solid rgba(0, 39, 105, 0.08);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 8px 20px rgba(0, 39, 105, 0.04);
  transition:
    border-color 180ms ease,
    box-shadow 180ms ease,
    transform 180ms ease,
    background 180ms ease;
}

.faq-item:hover {
  transform: translateY(-1px);
  border-color: rgba(0, 176, 255, 0.2);
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 10px 26px rgba(0, 39, 105, 0.065);
}

.faq-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: 60px;
  padding: 16px 20px;
  color: var(--navy);
  cursor: pointer;
  font-size: 1rem;
  font-weight: 900;
  line-height: 1.28;
  list-style: none;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary svg {
  width: 20px;
  height: 20px;
  flex: 0 0 auto;
  color: var(--blue);
  transition: transform 180ms ease;
}

.faq-item[open] {
  border-color: rgba(0, 176, 255, 0.24);
  background: white;
  box-shadow: 0 12px 30px rgba(0, 39, 105, 0.075);
}

.faq-item[open] summary svg {
  transform: rotate(180deg);
}

.faq-answer {
  padding: 2px 22px 20px;
  animation: faqReveal 180ms ease;
}

.faq-answer p {
  max-width: 680px;
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.64;
}

.faq-final-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 15px 18px;
  border: 1px solid rgba(0, 39, 105, 0.08);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 12px 30px rgba(0, 39, 105, 0.06);
}

.faq-final-cta h3 {
  margin: 0;
  color: var(--navy);
  font-size: clamp(1.12rem, 1.65vw, 1.35rem);
  line-height: 1.1;
}

.faq-final-cta p {
  margin: 6px 0 0;
  color: var(--muted);
  font-size: 0.94rem;
}

.faq-final-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: flex-end;
}

.faq-final-actions .button {
  min-height: 42px;
  padding: 10px 14px;
  font-size: 0.92rem;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    border-color 180ms ease,
    background 180ms ease,
    color 180ms ease;
}

.faq-final-actions .button:hover,
.faq-final-actions .button:focus-visible {
  transform: translateY(-2px);
}

.faq-final-actions .button--primary {
  box-shadow: 0 14px 32px rgba(0, 176, 255, 0.18);
}

.faq-final-actions .button--primary:hover,
.faq-final-actions .button--primary:focus-visible {
  box-shadow: 0 18px 40px rgba(0, 176, 255, 0.24);
}

.faq-final-actions .button--outline:hover,
.faq-final-actions .button--outline:focus-visible {
  color: var(--navy);
  background: white;
  border-color: rgba(0, 176, 255, 0.34);
  box-shadow: 0 12px 26px rgba(0, 39, 105, 0.1);
}

@keyframes faqReveal {
  from {
    opacity: 0;
    transform: translateY(-6px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 980px) {
  .business-paths-grid,
  .business-page-hero .container,
  .business-page-layout {
    grid-template-columns: 1fr;
  }

  .business-page-form {
    position: static;
  }

  .b2b-signal-row,
  .b2b-help-row,
  .b2b-care-cards,
  .b2b-care-flow,
  .b2b-materials-grid,
  .b2b-partner-box {
    grid-template-columns: 1fr;
  }

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

  .faq-mini-cta {
    max-width: none;
  }

  .faq-final-cta {
    align-items: flex-start;
    flex-direction: column;
  }

  .faq-final-actions {
    justify-content: flex-start;
  }
}

@media (max-width: 760px) {
  .faq-layout {
    display: grid;
  }

  .faq-copy {
    display: contents;
  }

  .faq-copy > .eyebrow,
  .faq-copy > h2,
  .faq-copy > p,
  .faq-trust-list {
    order: 1;
  }

  .faq-panel {
    order: 2;
  }

  .faq-mini-cta {
    order: 3;
    margin-top: 4px;
  }

  .faq-final-cta {
    display: none;
  }

  .faq-item summary {
    align-items: flex-start;
    min-height: auto;
    padding: 18px;
  }

  .faq-answer {
    padding: 0 18px 18px;
  }

  .faq-final-actions,
  .faq-mini-actions,
  .faq-final-actions .button {
    width: 100%;
  }

  .faq-mini-actions .button {
    width: 100%;
  }
}

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

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

.gallery-grid figure {
  position: relative;
  min-height: 360px;
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius);
  background: #0d1f55;
}

.gallery-grid img {
  width: 100%;
  height: 100%;
  min-height: 360px;
  object-fit: cover;
  opacity: 0.88;
  transition: transform 240ms ease, opacity 240ms ease;
}

.gallery-grid figure:hover img {
  transform: scale(1.035);
  opacity: 1;
}

.gallery-grid figcaption {
  position: absolute;
  right: 14px;
  bottom: 14px;
  left: 14px;
  padding: 12px 14px;
  color: white;
  background: rgba(0, 39, 105, 0.78);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  font-weight: 800;
}

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

.steps span {
  color: var(--blue);
  font-size: 0.92rem;
  font-weight: 900;
}

.journey-section {
  background:
    linear-gradient(180deg, #ffffff 0%, var(--soft) 100%);
  overflow: hidden;
}

.journey-heading {
  max-width: 860px;
}

.journey-map {
  position: relative;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
  margin-top: 36px;
}

.journey-map::before {
  content: "";
  position: absolute;
  top: 58px;
  right: 9%;
  left: 9%;
  height: 3px;
  background: linear-gradient(90deg, var(--blue), var(--navy), var(--accent));
  opacity: 0.22;
}

.journey-step {
  position: relative;
  display: grid;
  align-content: start;
  min-height: 300px;
  padding: 22px;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  cursor: pointer;
  box-shadow: 0 16px 38px rgba(0, 39, 105, 0.09);
  transition: transform 260ms ease, box-shadow 260ms ease, border-color 260ms ease, background 260ms ease;
}

.journey-step:hover,
.journey-step:focus-visible {
  transform: translateY(-4px);
  background: rgba(255, 255, 255, 0.98);
  border-color: rgba(0, 176, 255, 0.28);
  box-shadow: 0 18px 42px rgba(0, 39, 105, 0.11), 0 0 24px rgba(0, 176, 255, 0.055);
}

.journey-step:focus-visible {
  outline: 3px solid rgba(0, 176, 255, 0.22);
  outline-offset: 4px;
}

.journey-step__number {
  color: var(--blue);
  font-size: 0.82rem;
  font-weight: 900;
}

.journey-step__icon {
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  margin: 16px 0 20px;
  color: white;
  background: var(--navy);
  border: 6px solid var(--blue-soft);
  border-radius: 50%;
  box-shadow: 0 14px 28px rgba(0, 39, 105, 0.2);
  transition: box-shadow 260ms ease, transform 260ms ease;
}

.journey-step:hover .journey-step__icon,
.journey-step:focus-visible .journey-step__icon {
  transform: translateY(-1px);
  box-shadow: 0 16px 32px rgba(0, 39, 105, 0.2), 0 0 24px rgba(0, 176, 255, 0.18);
}

.journey-step:nth-child(even) .journey-step__icon {
  background: var(--blue);
}

.journey-step__icon svg {
  width: 23px;
  height: 23px;
}

.journey-step h3 {
  margin: 0 0 10px;
  color: var(--navy);
  font-size: 1.08rem;
  line-height: 1.18;
}

.journey-step p {
  margin: 0;
  color: var(--muted);
  font-size: 0.96rem;
}

.journey-step__link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  width: fit-content;
  margin-top: 18px;
  color: var(--navy);
  font-size: 0.88rem;
  font-weight: 900;
  opacity: 0.72;
  text-decoration: none;
  transition: color 220ms ease, opacity 220ms ease;
}

.journey-step__link svg {
  width: 15px;
  height: 15px;
  transition: transform 180ms ease;
}

.journey-step__link:hover,
.journey-step__link:focus-visible,
.journey-step:hover .journey-step__link,
.journey-step:focus-visible .journey-step__link {
  color: var(--blue);
  opacity: 1;
  outline: none;
}

.journey-step__link:hover svg,
.journey-step__link:focus-visible svg,
.journey-step:hover .journey-step__link svg,
.journey-step:focus-visible .journey-step__link svg {
  transform: translateX(4px);
}

.journey-result {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-top: 18px;
  padding: 22px;
  color: white;
  background: var(--navy);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.journey-result div {
  display: flex;
  align-items: center;
  gap: 16px;
}

.journey-result div > svg {
  width: 32px;
  height: 32px;
  color: var(--blue);
  flex: 0 0 auto;
}

.journey-result strong,
.journey-result small {
  display: block;
}

.journey-result strong {
  font-size: 1.06rem;
}

.journey-result small {
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.74);
}

.delivery-section {
  background:
    radial-gradient(circle at 16% 20%, rgba(0, 176, 255, 0.08) 0%, rgba(0, 176, 255, 0) 34%),
    linear-gradient(180deg, #ffffff 0%, #eef7ff 100%);
}

.delivery-layout {
  display: grid;
  grid-template-columns: minmax(400px, 1.02fr) minmax(0, 1.08fr);
  gap: clamp(34px, 4.4vw, 56px);
  align-items: center;
}

.delivery-copy h2 {
  margin: 0;
  color: var(--navy);
  max-width: 670px;
  font-size: clamp(1.92rem, 3.65vw, 3.05rem);
  line-height: 1.03;
  letter-spacing: 0;
}

.delivery-copy p {
  max-width: 590px;
  margin-top: 22px;
  color: var(--muted);
  font-size: 1.04rem;
  line-height: 1.68;
}

.delivery-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

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

.delivery-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
  min-height: 32px;
  padding: 6px 12px;
  color: var(--navy);
  background: rgba(255, 255, 255, 0.48);
  border: 1px solid rgba(0, 39, 105, 0.09);
  border-radius: 999px;
  backdrop-filter: blur(14px);
  font-size: 0.82rem;
  font-weight: 900;
  box-shadow: 0 8px 18px rgba(0, 39, 105, 0.05);
}

.delivery-badge svg {
  width: 16px;
  height: 16px;
  color: var(--blue);
  flex: 0 0 auto;
}

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

.delivery-steps::before {
  content: "";
  position: absolute;
  top: 50px;
  right: 8%;
  left: 8%;
  height: 2px;
  background: linear-gradient(90deg, rgba(0, 39, 105, 0), rgba(0, 176, 255, 0.64), rgba(0, 86, 184, 0.44), rgba(0, 39, 105, 0));
  box-shadow: 0 0 18px rgba(0, 176, 255, 0.28);
}

.delivery-steps article {
  position: relative;
  z-index: 1;
  display: grid;
  align-content: start;
  gap: 7px;
  min-height: 174px;
  padding: 16px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(0, 39, 105, 0.1);
  border-radius: var(--radius);
  box-shadow: 0 18px 38px rgba(0, 39, 105, 0.08);
  transition: transform 0.26s ease, border-color 0.26s ease, box-shadow 0.26s ease, background 0.26s ease;
}

.delivery-steps article:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 46px;
  right: -19px;
  width: 9px;
  height: 9px;
  border-top: 1.5px solid rgba(0, 176, 255, 0.78);
  border-right: 1.5px solid rgba(0, 176, 255, 0.78);
  filter: drop-shadow(0 0 8px rgba(0, 176, 255, 0.32));
  transform: rotate(45deg);
}

.delivery-steps article:hover {
  transform: translateY(-5px);
  background: #ffffff;
  border-color: rgba(0, 176, 255, 0.3);
  box-shadow: 0 26px 58px rgba(0, 39, 105, 0.14), 0 0 26px rgba(0, 176, 255, 0.08);
}

.delivery-step-number {
  width: fit-content;
  color: var(--blue);
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0;
}

.delivery-steps svg {
  width: 27px;
  height: 27px;
  color: var(--blue);
  transition: transform 0.26s ease, color 0.26s ease, filter 0.26s ease;
}

.delivery-steps article:hover svg {
  transform: translateY(-2px);
  filter: drop-shadow(0 8px 16px rgba(0, 176, 255, 0.24));
}

.delivery-steps h3 {
  margin: 0;
  color: var(--navy);
  font-size: 0.98rem;
  line-height: 1.12;
}

.delivery-steps p {
  margin: 0;
  color: var(--muted);
  font-size: 0.86rem;
  line-height: 1.4;
}

.delivery-note {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 22px 24px;
  color: white;
  background:
    radial-gradient(circle at 12% 10%, rgba(255, 255, 255, 0.24) 0%, rgba(255, 255, 255, 0) 32%),
    radial-gradient(circle at 88% 0%, rgba(0, 176, 255, 0.46) 0%, rgba(0, 176, 255, 0) 36%),
    linear-gradient(135deg, #001f5d 0%, #0057ba 54%, #00a8f0 128%);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  box-shadow: 0 26px 62px rgba(0, 39, 105, 0.22), inset 0 1px 0 rgba(255, 255, 255, 0.18);
}

.delivery-note-icon {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  flex: 0 0 auto;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 16px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.18);
}

.delivery-note-icon svg {
  width: 27px;
  height: 27px;
  color: white;
  flex: 0 0 auto;
}

.delivery-note-text {
  display: grid;
  gap: 4px;
}

.delivery-note strong {
  font-size: 0.98rem;
  line-height: 1.35;
}

.delivery-note small {
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.86rem;
  line-height: 1.35;
}

@media (max-width: 980px) {
  .delivery-steps::before,
  .delivery-steps article:not(:last-child)::after {
    display: none;
  }
}

.contact-section {
  content-visibility: auto;
  contain-intrinsic-size: 980px;
  background:
    radial-gradient(circle at 82% 12%, rgba(0, 176, 255, 0.08) 0%, rgba(0, 176, 255, 0) 32%),
    linear-gradient(180deg, #ffffff 0%, var(--blue-soft) 100%);
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.94fr) minmax(380px, 1.06fr);
  gap: clamp(24px, 4vw, 54px);
  align-items: center;
}

.visit-info-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 30px;
}

.visit-info-card {
  display: flex;
  gap: 14px;
  min-height: 128px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 16px 36px rgba(0, 39, 105, 0.07);
}

.visit-info-card svg {
  width: 23px;
  height: 23px;
  flex: 0 0 auto;
  color: var(--blue);
}

.visit-info-card span {
  display: block;
  margin-bottom: 8px;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  line-height: 1;
  text-transform: uppercase;
}

.visit-info-card strong {
  display: block;
  color: var(--navy);
  font-size: 0.98rem;
  line-height: 1.38;
}

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.contact-small {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  margin-top: 18px;
}

.contact-small a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--muted);
  font-size: 0.94rem;
  font-weight: 800;
}

.contact-small a:hover,
.contact-small a:focus-visible {
  color: var(--navy);
  outline: none;
}

.contact-small svg {
  width: 17px;
  height: 17px;
  color: var(--blue);
}

.contact-map-stack {
  display: grid;
  gap: 14px;
}

.contact-showroom-card {
  position: relative;
  min-height: 210px;
  overflow: hidden;
  border: 1px solid rgba(0, 39, 105, 0.1);
  border-radius: calc(var(--radius) + 10px);
  background: var(--navy);
  box-shadow: 0 22px 52px rgba(0, 39, 105, 0.13);
}

.contact-showroom-card picture {
  display: block;
  width: 100%;
  height: 100%;
}

.contact-showroom-card img {
  width: 100%;
  height: 100%;
  min-height: 210px;
  object-fit: cover;
  opacity: 0.82;
}

.contact-showroom-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(0, 18, 48, 0.78) 0%, rgba(0, 18, 48, 0.2) 62%),
    linear-gradient(180deg, rgba(0, 18, 48, 0) 40%, rgba(0, 18, 48, 0.66) 100%);
}

.contact-showroom-card div {
  position: absolute;
  right: 24px;
  bottom: 24px;
  left: 24px;
  z-index: 1;
  display: grid;
  gap: 8px;
  color: white;
}

.contact-showroom-card span {
  color: var(--blue);
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.contact-showroom-card strong {
  max-width: 520px;
  font-size: clamp(1.08rem, 1.8vw, 1.45rem);
  line-height: 1.18;
}

.visit-info-card:hover,
.visit-info-card:focus-within {
  border-color: var(--blue);
  box-shadow: 0 20px 44px rgba(0, 39, 105, 0.11);
}

.map-panel {
  min-height: 430px;
  overflow: hidden;
  border: 1px solid rgba(0, 39, 105, 0.1);
  border-radius: calc(var(--radius) + 10px);
  background: white;
  box-shadow: 0 24px 58px rgba(0, 39, 105, 0.13);
}

.map-panel--premium {
  padding: 10px;
}

.map-panel iframe {
  width: 100%;
  height: 100%;
  min-height: 420px;
  border: 0;
  border-radius: var(--radius);
}

@media (max-width: 760px) {
  .visit-info-grid {
    grid-template-columns: 1fr;
  }

  .contact-actions,
  .contact-actions .button {
    width: 100%;
  }

  .contact-showroom-card,
  .contact-showroom-card img {
    min-height: 260px;
  }
}

.business-paths-section {
  background:
    radial-gradient(circle at 14% 8%, rgba(0, 176, 255, 0.08) 0%, rgba(0, 176, 255, 0) 32%),
    linear-gradient(180deg, #ffffff 0%, #f5f9ff 100%);
}

.business-paths-shell {
  display: grid;
  gap: 28px;
}

.business-paths-head {
  max-width: 760px;
}

.business-paths-head h2 {
  margin: 0;
  color: var(--navy);
  font-size: clamp(2rem, 4vw, 3.5rem);
  line-height: 1.02;
}

.business-paths-head p:not(.eyebrow) {
  max-width: 720px;
  color: var(--muted);
  font-size: 1.04rem;
  line-height: 1.68;
}

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

.business-path-card {
  display: grid;
  align-content: start;
  gap: 13px;
  min-height: 320px;
  padding: clamp(22px, 3vw, 30px);
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(0, 39, 105, 0.09);
  border-radius: var(--radius);
  box-shadow: 0 18px 42px rgba(0, 39, 105, 0.07);
}

.business-path-card > svg {
  width: 34px;
  height: 34px;
  color: var(--blue);
}

.business-path-card > span {
  color: var(--blue);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.business-path-card h3 {
  margin: 0;
  color: var(--navy);
  font-size: 1.42rem;
  line-height: 1.12;
}

.business-path-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.58;
}

.business-path-card .button {
  align-self: end;
  margin-top: 8px;
  width: 100%;
}

.business-path-card--dark {
  color: white;
  background:
    radial-gradient(circle at 16% 0%, rgba(0, 176, 255, 0.28), transparent 34%),
    linear-gradient(135deg, rgba(0, 39, 105, 0.98), rgba(0, 88, 174, 0.92));
  border-color: rgba(0, 176, 255, 0.34);
  box-shadow: 0 26px 64px rgba(0, 39, 105, 0.22);
}

.business-path-card--dark h3,
.business-path-card--dark p,
.business-path-card--dark > span,
.business-path-card--dark > svg {
  color: white;
}

.business-page-hero {
  color: white;
  background:
    linear-gradient(135deg, rgba(0, 20, 54, 0.94), rgba(0, 62, 138, 0.9)),
    var(--navy);
}

.business-page-hero .container {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(280px, 0.5fr);
  gap: clamp(28px, 5vw, 70px);
  align-items: end;
}

.business-page-hero h1 {
  margin: 0;
  max-width: 760px;
  color: white;
  font-size: clamp(2.25rem, 5vw, 4.7rem);
  line-height: 0.98;
}

.business-page-hero p {
  max-width: 700px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.08rem;
  line-height: 1.66;
}

.business-hero-card {
  display: grid;
  gap: 12px;
  padding: 22px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

.business-hero-card span {
  color: rgba(229, 246, 255, 0.86);
  font-size: 0.88rem;
  font-weight: 850;
}

.business-page-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 430px);
  gap: clamp(30px, 5vw, 76px);
  align-items: start;
}

.business-page-copy h2 {
  margin: 0;
  color: var(--navy);
  font-size: clamp(2rem, 3.8vw, 3.45rem);
  line-height: 1.04;
}

.business-page-copy > p {
  max-width: 760px;
  color: var(--muted);
  font-size: 1.04rem;
  line-height: 1.68;
}

.business-benefits {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-top: 28px;
}

.business-benefits article {
  display: grid;
  gap: 10px;
  min-height: 166px;
  padding: 22px;
  background: white;
  border: 1px solid rgba(0, 39, 105, 0.08);
  border-radius: var(--radius);
  box-shadow: 0 14px 34px rgba(0, 39, 105, 0.055);
}

.business-benefits svg {
  width: 28px;
  height: 28px;
  color: var(--blue);
}

.business-benefits h3 {
  margin: 0;
  color: var(--navy);
  font-size: 1.08rem;
  line-height: 1.18;
}

.business-benefits p {
  margin: 0;
  color: var(--muted);
  line-height: 1.56;
}

.business-benefits .b2b-referral-benefit {
  grid-template-columns: auto minmax(0, 1fr);
  grid-column: 1 / -1;
  align-items: center;
  min-height: auto;
  padding: 20px;
  background:
    linear-gradient(135deg, rgba(0, 39, 105, 0.96), rgba(0, 83, 164, 0.92)),
    var(--navy);
  border-color: rgba(14, 165, 233, 0.24);
  box-shadow: 0 24px 62px rgba(0, 39, 105, 0.18);
}

.business-benefits .b2b-referral-benefit svg {
  width: 46px;
  height: 46px;
  padding: 11px;
  color: white;
  background: linear-gradient(135deg, var(--blue), #38c7ff);
  border-radius: 16px;
  box-shadow: 0 18px 36px rgba(14, 165, 233, 0.24);
}

.business-benefits .b2b-referral-benefit h3 {
  color: white;
  font-size: 1.18rem;
}

.business-benefits .b2b-referral-benefit p {
  color: rgba(255, 255, 255, 0.78);
}

.business-process {
  display: grid;
  gap: 12px;
  margin-top: 28px;
}

.business-process li {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 13px;
  padding: 15px;
  color: var(--muted);
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(0, 39, 105, 0.07);
  border-radius: var(--radius);
  line-height: 1.55;
}

.business-process strong {
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  color: white;
  background: var(--navy);
  border-radius: 999px;
  font-size: 0.78rem;
}

.business-note-panel {
  margin-top: 28px;
  padding: 18px;
  color: var(--navy);
  background: rgba(14, 165, 233, 0.09);
  border: 1px solid rgba(14, 165, 233, 0.18);
  border-radius: var(--radius);
  font-weight: 850;
  line-height: 1.52;
}

.business-page-form {
  position: sticky;
  top: 96px;
}

.b2b-hero {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(110deg, rgba(0, 20, 54, 0.96) 0%, rgba(0, 47, 112, 0.92) 48%, rgba(0, 108, 177, 0.82) 100%),
    radial-gradient(circle at 76% 12%, rgba(14, 165, 233, 0.22), transparent 34%),
    var(--navy);
}

.b2b-hero::after {
  position: absolute;
  right: max(18px, 8vw);
  bottom: -90px;
  width: min(360px, 58vw);
  aspect-ratio: 1;
  content: "";
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 999px;
  box-shadow:
    inset 0 0 0 38px rgba(255, 255, 255, 0.035),
    inset 0 0 0 86px rgba(14, 165, 233, 0.035);
  pointer-events: none;
}

.b2b-hero .container {
  position: relative;
  z-index: 1;
}

.b2b-hero-card {
  justify-self: end;
  gap: 14px;
  align-self: center;
  width: min(100%, 390px);
  padding: clamp(18px, 2.4vw, 24px);
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.2);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.12),
    0 26px 66px rgba(0, 20, 54, 0.28);
}

.b2b-hero-card__intro {
  display: grid;
  gap: 8px;
}

.b2b-hero-card__intro span {
  width: fit-content;
  padding: 7px 10px;
  color: #dff5ff;
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
  background: rgba(14, 165, 233, 0.18);
  border: 1px solid rgba(14, 165, 233, 0.3);
  border-radius: 999px;
}

.b2b-hero-card__intro strong {
  color: white;
  font-size: clamp(1.15rem, 2.2vw, 1.55rem);
  line-height: 1.16;
}

.b2b-hero-badges {
  display: grid;
  gap: 10px;
}

.b2b-hero-badges span {
  display: flex;
  gap: 10px;
  align-items: center;
  min-height: 48px;
  padding: 10px 12px;
  color: rgba(255, 255, 255, 0.88);
  background: rgba(255, 255, 255, 0.09);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-sm);
  font-weight: 850;
}

.b2b-hero-badges svg {
  flex: 0 0 auto;
  width: 20px;
  height: 20px;
  color: var(--blue);
}

.b2b-content-section {
  background:
    linear-gradient(180deg, #f7fbff 0%, #ffffff 34%, #f8fbff 100%);
}

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

.b2b-signal-row article {
  display: grid;
  gap: 10px;
  min-height: 112px;
  padding: 18px;
  background: white;
  border: 1px solid rgba(0, 39, 105, 0.08);
  border-radius: var(--radius);
  box-shadow: 0 12px 28px rgba(0, 39, 105, 0.055);
}

.b2b-signal-row svg {
  width: 26px;
  height: 26px;
  color: var(--blue);
}

.b2b-signal-row strong {
  color: var(--navy);
  font-size: 1.06rem;
}

.b2b-signal-row span {
  color: var(--muted);
  line-height: 1.5;
}

.b2b-problem-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-top: 28px;
}

.b2b-problem-grid article {
  display: grid;
  gap: 10px;
  min-height: 210px;
  padding: 22px;
  color: white;
  background:
    radial-gradient(circle at 14% 8%, rgba(14, 165, 233, 0.24), transparent 36%),
    linear-gradient(135deg, rgba(0, 39, 105, 0.98), rgba(0, 75, 150, 0.92));
  border: 1px solid rgba(14, 165, 233, 0.24);
  border-radius: var(--radius);
  box-shadow: 0 18px 40px rgba(0, 39, 105, 0.13);
}

.b2b-problem-grid svg {
  width: 30px;
  height: 30px;
  color: var(--blue);
}

.b2b-problem-grid h3 {
  margin: 0;
  color: white;
  font-size: 1.12rem;
}

.b2b-problem-grid p {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.58;
}

.b2b-help-map {
  display: grid;
  gap: 12px;
  margin-top: 42px;
  padding: clamp(20px, 3vw, 28px);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(245, 249, 255, 0.98)),
    #f8fbff;
  border: 1px solid rgba(0, 39, 105, 0.08);
  border-radius: var(--radius);
  box-shadow: 0 18px 44px rgba(0, 39, 105, 0.06);
}

.b2b-help-head {
  margin-bottom: 8px;
}

.b2b-help-head h2 {
  margin-bottom: 12px;
}

.b2b-help-head p:not(.eyebrow) {
  margin: 0;
}

.b2b-help-row {
  position: relative;
  display: grid;
  grid-template-columns: minmax(160px, 0.82fr) minmax(0, 1.18fr);
  gap: 18px;
  align-items: start;
  padding: 18px 18px 18px 22px;
  background: white;
  border: 1px solid rgba(0, 39, 105, 0.07);
  border-radius: var(--radius-sm);
}

.b2b-help-row::before {
  position: absolute;
  top: 18px;
  bottom: 18px;
  left: 10px;
  width: 3px;
  content: "";
  background: linear-gradient(180deg, var(--blue), rgba(14, 165, 233, 0.1));
  border-radius: 999px;
}

.b2b-help-row strong {
  color: var(--navy);
  line-height: 1.35;
}

.b2b-help-row span {
  color: var(--muted);
  line-height: 1.58;
}

.b2b-materials-panel {
  display: grid;
  gap: 20px;
  margin-top: 42px;
  padding: clamp(22px, 3.2vw, 32px);
  background:
    radial-gradient(circle at 90% 10%, rgba(14, 165, 233, 0.1), transparent 34%),
    linear-gradient(135deg, #ffffff 0%, #f1f8ff 100%);
  border: 1px solid rgba(0, 39, 105, 0.08);
  border-radius: var(--radius);
  box-shadow: 0 22px 58px rgba(0, 39, 105, 0.08);
}

.b2b-materials-head {
  display: grid;
  gap: 12px;
  max-width: 790px;
}

.b2b-materials-head h2 {
  margin: 0;
}

.b2b-materials-head p:not(.eyebrow) {
  margin: 0;
  color: var(--muted);
  line-height: 1.66;
}

.b2b-materials-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.b2b-materials-grid article {
  display: grid;
  gap: 10px;
  min-height: 208px;
  padding: 18px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(0, 39, 105, 0.08);
  border-radius: var(--radius);
  box-shadow: 0 14px 32px rgba(0, 39, 105, 0.055);
}

.b2b-materials-grid svg {
  width: 30px;
  height: 30px;
  color: var(--blue);
}

.b2b-materials-grid h3 {
  margin: 0;
  color: var(--navy);
  font-size: 1.04rem;
  line-height: 1.18;
}

.b2b-materials-grid p {
  margin: 0;
  color: var(--muted);
  line-height: 1.52;
}

.b2b-materials-note {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 15px 16px;
  color: var(--navy);
  background: rgba(14, 165, 233, 0.09);
  border: 1px solid rgba(14, 165, 233, 0.18);
  border-radius: var(--radius-sm);
  font-weight: 850;
  line-height: 1.48;
}

.b2b-materials-note svg {
  flex: 0 0 auto;
  width: 21px;
  height: 21px;
  color: var(--blue);
}

.b2b-benefits {
  margin-top: 34px;
}

.b2b-client-care {
  display: grid;
  gap: 20px;
  margin-top: 42px;
  padding: clamp(22px, 3.5vw, 34px);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(236, 248, 255, 0.94)),
    #f8fbff;
  border: 1px solid rgba(14, 165, 233, 0.18);
  border-radius: var(--radius);
  box-shadow: 0 24px 64px rgba(0, 39, 105, 0.09);
}

.b2b-client-care__head {
  display: grid;
  gap: 12px;
  max-width: 760px;
}

.b2b-client-care__head h2 {
  margin: 0;
}

.b2b-client-care__head p:not(.eyebrow) {
  margin: 0;
  color: var(--muted);
  line-height: 1.64;
}

.b2b-care-cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.b2b-care-cards article {
  display: grid;
  gap: 10px;
  min-height: 220px;
  padding: 20px;
  background: white;
  border: 1px solid rgba(0, 39, 105, 0.08);
  border-radius: var(--radius);
  box-shadow: 0 16px 36px rgba(0, 39, 105, 0.065);
}

.b2b-care-cards svg {
  width: 30px;
  height: 30px;
  color: var(--blue);
}

.b2b-care-cards h3 {
  margin: 0;
  color: var(--navy);
  font-size: 1.06rem;
  line-height: 1.18;
}

.b2b-care-cards p {
  margin: 0;
  color: var(--muted);
  line-height: 1.56;
}

.b2b-care-flow {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  padding: 12px;
  background: rgba(0, 39, 105, 0.04);
  border: 1px solid rgba(0, 39, 105, 0.06);
  border-radius: var(--radius);
}

.b2b-care-flow span {
  display: flex;
  gap: 10px;
  align-items: center;
  min-height: 58px;
  padding: 12px;
  color: var(--navy);
  background: white;
  border-radius: var(--radius-sm);
  font-weight: 850;
  line-height: 1.28;
}

.b2b-care-flow i,
.b2b-care-flow svg {
  display: grid;
  flex: 0 0 auto;
  place-items: center;
  width: 34px;
  height: 34px;
  padding: 8px;
  color: white;
  background: linear-gradient(135deg, var(--navy), var(--blue));
  border-radius: 12px;
  box-shadow: 0 10px 22px rgba(14, 165, 233, 0.16);
  stroke-width: 2.35;
}

.b2b-partner-box {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.72fr);
  gap: 22px;
  align-items: center;
  margin-top: 36px;
  padding: clamp(22px, 3vw, 30px);
  color: white;
  background:
    radial-gradient(circle at 86% 12%, rgba(14, 165, 233, 0.2), transparent 34%),
    linear-gradient(135deg, #002769, #004b96);
  border-radius: var(--radius);
  box-shadow: 0 22px 56px rgba(0, 39, 105, 0.18);
}

.b2b-partner-box h2,
.b2b-partner-box .eyebrow {
  color: white;
}

.b2b-partner-box p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.78);
}

.b2b-pill-list {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.b2b-pill-list li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  padding: 12px 14px;
  color: rgba(255, 255, 255, 0.86);
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: var(--radius-sm);
  line-height: 1.42;
}

.b2b-pill-list svg {
  flex: 0 0 auto;
  width: 18px;
  height: 18px;
  color: var(--blue);
}

.b2b-process-panel {
  position: relative;
  overflow: hidden;
  margin-top: 36px;
  padding: clamp(20px, 3vw, 28px);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(248, 251, 255, 0.96)),
    linear-gradient(135deg, rgba(14, 165, 233, 0.1), rgba(0, 39, 105, 0.04));
  border: 1px solid rgba(0, 39, 105, 0.09);
  border-radius: 24px;
  box-shadow: 0 22px 60px rgba(0, 39, 105, 0.11);
}

.b2b-process-panel::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 5px;
  background: linear-gradient(90deg, var(--navy), var(--blue), rgba(14, 165, 233, 0.2));
}

.b2b-process-head {
  position: relative;
  display: grid;
  gap: 10px;
  max-width: 680px;
}

.b2b-mini-badge {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  width: fit-content;
  padding: 8px 12px;
  color: var(--blue);
  background: rgba(14, 165, 233, 0.1);
  border: 1px solid rgba(14, 165, 233, 0.2);
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.b2b-mini-badge svg {
  width: 16px;
  height: 16px;
}

.b2b-process-head h2 {
  margin: 0;
  color: var(--navy);
  font-size: clamp(1.35rem, 3vw, 2rem);
  line-height: 1.08;
}

.b2b-process-head p {
  max-width: 620px;
  margin: 0;
  color: var(--muted);
  line-height: 1.62;
}

.b2b-process {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
  counter-reset: b2b-step;
}

.b2b-process li {
  position: relative;
  overflow: hidden;
  display: grid;
  gap: 8px;
  min-height: 178px;
  padding: 18px;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(0, 39, 105, 0.08);
  border-radius: 18px;
  box-shadow: 0 14px 34px rgba(0, 39, 105, 0.08);
  counter-increment: b2b-step;
}

.b2b-process li::before {
  content: counter(b2b-step, decimal-leading-zero);
  position: absolute;
  top: 16px;
  right: 16px;
  color: rgba(0, 39, 105, 0.14);
  font-size: 2.35rem;
  font-weight: 950;
  line-height: 1;
}

.b2b-process li::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--blue), rgba(14, 165, 233, 0));
}

.b2b-process-icon {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  color: white;
  background: linear-gradient(135deg, var(--navy), var(--blue));
  border-radius: 14px;
  box-shadow: 0 14px 28px rgba(14, 165, 233, 0.2);
}

.b2b-process-icon svg {
  width: 21px;
  height: 21px;
}

.b2b-process span {
  color: var(--blue);
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
}

.b2b-process h3 {
  position: relative;
  z-index: 1;
  margin: 0;
  color: var(--navy);
  font-size: 1.02rem;
  line-height: 1.2;
}

.b2b-process p {
  position: relative;
  z-index: 1;
  margin: 0;
  color: var(--muted);
  line-height: 1.52;
}

.b2b-process-assurance {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 14px;
  align-items: center;
  margin-top: 16px;
  padding: 16px;
  color: var(--navy);
  background: rgba(14, 165, 233, 0.1);
  border: 1px solid rgba(14, 165, 233, 0.2);
  border-radius: 18px;
}

.b2b-process-assurance > svg {
  width: 38px;
  height: 38px;
  padding: 9px;
  color: var(--blue);
  background: white;
  border: 1px solid rgba(14, 165, 233, 0.18);
  border-radius: 14px;
  box-shadow: 0 12px 28px rgba(0, 39, 105, 0.09);
}

.b2b-process-assurance div {
  display: grid;
  gap: 4px;
}

.b2b-process-assurance strong {
  color: var(--navy);
  font-size: 1rem;
  line-height: 1.25;
}

.b2b-process-assurance span {
  color: var(--muted);
  line-height: 1.45;
}

.contractors-form.business-page-form {
  border-color: rgba(14, 165, 233, 0.18);
  box-shadow: 0 24px 70px rgba(0, 39, 105, 0.14);
}

@media (max-width: 980px) {
  .business-page-hero .container,
  .business-page-layout {
    grid-template-columns: 1fr;
  }

  .business-page-form {
    position: static;
    top: auto;
  }

  .b2b-signal-row,
  .b2b-help-row,
  .b2b-partner-box {
    grid-template-columns: 1fr;
  }

  .b2b-hero::after {
    right: -120px;
    bottom: -120px;
  }
}

@media (max-width: 720px) {
  .b2b-process-panel {
    margin-top: 28px;
    padding: 18px 14px;
    border-radius: 20px;
  }

  .b2b-mini-badge {
    padding: 7px 10px;
    font-size: 0.72rem;
  }

  .b2b-process {
    grid-template-columns: 1fr;
    gap: 10px;
    margin-top: 18px;
  }

  .b2b-process li {
    min-height: auto;
    padding: 16px;
  }

  .b2b-process li::before {
    top: 14px;
    right: 14px;
    font-size: 1.85rem;
  }

  .b2b-process-assurance {
    grid-template-columns: 1fr;
    align-items: flex-start;
    padding: 15px;
  }
}

.contractors-section {
  content-visibility: auto;
  contain-intrinsic-size: 980px;
  color: white;
  background:
    linear-gradient(135deg, rgba(0, 20, 54, 0.96), rgba(0, 39, 105, 0.92)),
    var(--navy);
}

.contractors-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 430px);
  gap: clamp(28px, 5vw, 70px);
  align-items: start;
}

.contractors-copy h2,
.contractors-copy p,
.contractors-copy .eyebrow {
  color: white;
}

.contractors-copy p {
  color: rgba(255, 255, 255, 0.82);
}

.contractors-intro-row {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  gap: 11px;
  margin-top: 18px;
}

.contractors-badge {
  display: inline-flex;
  align-items: center;
  width: max-content;
  max-width: 100%;
  min-height: 28px;
  padding: 5px 11px;
  color: rgba(218, 243, 255, 0.94);
  background: rgba(0, 39, 105, 0.24);
  border: 1px solid rgba(133, 219, 255, 0.2);
  border-radius: 999px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  transition: transform 220ms ease, border-color 220ms ease, background 220ms ease;
}

.contractors-badge:hover {
  transform: translateY(-1px) scale(1.01);
  background: rgba(0, 55, 122, 0.3);
  border-color: rgba(133, 219, 255, 0.32);
}

.contractors-mini-benefits {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.contractors-mini-benefits span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  min-height: 30px;
  padding: 6px 10px;
  color: rgba(232, 248, 255, 0.9);
  background: rgba(255, 255, 255, 0.065);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  font-size: 0.76rem;
  font-weight: 800;
  transition: transform 220ms ease, border-color 220ms ease, background 220ms ease;
}

.contractors-mini-benefits span:hover {
  transform: translateY(-1px) scale(1.01);
  background: rgba(255, 255, 255, 0.085);
  border-color: rgba(133, 219, 255, 0.2);
}

.contractors-mini-benefits svg {
  width: 13px;
  height: 13px;
  color: #79dfff;
}

.contractors-benefits {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  align-items: start;
  gap: 18px;
  margin-top: 24px;
}

.contractors-benefits article {
  display: grid;
  align-content: start;
  gap: 13px;
  min-height: 136px;
  padding: 17px;
  background: rgba(255, 255, 255, 0.072);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius);
  box-shadow: 0 16px 38px rgba(0, 0, 0, 0.07);
  transition: transform 260ms ease, border-color 260ms ease, background 260ms ease, box-shadow 260ms ease;
}

.contractors-benefits article:hover {
  transform: translateY(-3px) scale(1.01);
  background: rgba(255, 255, 255, 0.092);
  border-color: rgba(133, 219, 255, 0.22);
  box-shadow: 0 22px 54px rgba(0, 0, 0, 0.13);
}

.contractors-benefits .contractors-benefit--featured {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  min-height: 182px;
  padding: 22px;
  background:
    radial-gradient(circle at 88% 8%, rgba(117, 221, 255, 0.24), rgba(117, 221, 255, 0) 34%),
    linear-gradient(145deg, rgba(0, 176, 255, 0.19), rgba(255, 255, 255, 0.11));
  border-color: rgba(132, 220, 255, 0.35);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.16),
    inset 0 -18px 42px rgba(0, 20, 54, 0.18),
    0 26px 70px rgba(0, 176, 255, 0.12),
    0 18px 48px rgba(0, 0, 0, 0.16);
}

.contractors-benefits .contractors-benefit--featured::before,
.contractors-benefits .contractors-benefit--featured::after {
  content: "";
  position: absolute;
  pointer-events: none;
  z-index: 0;
}

.contractors-benefits .contractors-benefit--featured::before {
  top: -54px;
  right: -58px;
  width: 170px;
  height: 120px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.22), rgba(255, 255, 255, 0) 68%);
  transform: rotate(-18deg);
}

.contractors-benefits .contractors-benefit--featured::after {
  top: 62px;
  left: 10px;
  width: 70px;
  height: 70px;
  background: radial-gradient(circle, rgba(126, 222, 255, 0.27), rgba(126, 222, 255, 0) 66%);
  filter: blur(3px);
}

.contractors-benefits .contractors-benefit--featured > * {
  position: relative;
  z-index: 1;
}

.contractors-benefits .contractors-benefit--featured:hover {
  transform: translateY(-4px) scale(1.012);
  border-color: rgba(149, 226, 255, 0.48);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.2),
    inset 0 -18px 42px rgba(0, 20, 54, 0.16),
    0 30px 78px rgba(0, 176, 255, 0.16),
    0 20px 52px rgba(0, 0, 0, 0.18);
}

.contractors-benefits .contractors-benefit--featured h3 {
  font-size: 1.08rem;
}

.contractors-benefits .contractors-benefit--featured p {
  color: rgba(255, 255, 255, 0.78);
}

.contractors-benefits .contractors-benefit--featured svg {
  color: #b9efff;
  filter: drop-shadow(0 0 20px rgba(126, 222, 255, 0.34));
}

.contractors-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.contractors-benefits .contractors-benefit--medium {
  min-height: 150px;
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.13);
}

.contractors-card-badge {
  justify-self: start;
  padding: 5px 9px;
  color: rgba(2, 27, 65, 0.94);
  background: rgba(226, 247, 255, 0.95);
  border-radius: 999px;
  box-shadow: 0 10px 28px rgba(0, 176, 255, 0.16);
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.contractors-benefit--featured:hover .contractors-card-badge {
  transform: translateY(-1px) scale(1.02);
  box-shadow: 0 12px 32px rgba(0, 176, 255, 0.24);
}

.contractors-benefits .contractors-benefit--small {
  gap: 11px;
  min-height: 118px;
  padding: 15px;
  background: rgba(255, 255, 255, 0.055);
}

.contractors-benefits .contractors-benefit--small svg {
  width: 22px;
  height: 22px;
}

.contractors-benefits .contractors-benefit--small h3 {
  font-size: 0.9rem;
  line-height: 1.18;
}

.contractors-benefits .contractors-benefit--small p {
  margin-top: 6px;
  font-size: 0.76rem;
  line-height: 1.42;
}

.contractors-benefits svg {
  width: 25px;
  height: 25px;
  color: var(--blue);
  filter: drop-shadow(0 8px 18px rgba(0, 176, 255, 0.18));
  transition: color 240ms ease, transform 240ms ease, filter 240ms ease;
}

.contractors-benefits article:hover svg {
  color: #7edcff;
  transform: translateY(-1px);
  filter: drop-shadow(0 10px 22px rgba(0, 176, 255, 0.28));
}

.contractors-benefits h3 {
  margin: 0;
  color: white;
  font-size: 0.98rem;
  font-weight: 900;
  line-height: 1.2;
}

.contractors-benefits p {
  margin: 8px 0 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.82rem;
  font-weight: 600;
  line-height: 1.5;
}

.contractors-benefits article:not(.contractors-benefit--featured) p {
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

.contractors-proof-strip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 26px;
  margin-top: 22px;
  padding: 17px 18px;
  background:
    radial-gradient(circle at 10% 0%, rgba(126, 222, 255, 0.08), rgba(126, 222, 255, 0) 38%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.034)),
    rgba(0, 39, 105, 0.1);
  border: 1px solid rgba(168, 229, 255, 0.18);
  border-radius: var(--radius);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.12),
    inset 0 -18px 36px rgba(0, 20, 54, 0.12),
    0 0 0 1px rgba(126, 222, 255, 0.035),
    0 18px 46px rgba(0, 0, 0, 0.08);
  backdrop-filter: blur(12px);
}

.contractors-proof-strip p {
  margin: 0;
  max-width: 360px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.88rem;
  font-weight: 750;
  line-height: 1.4;
}

.contractors-proof-strip div {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 12px;
}

.contractors-proof-strip span {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 6px 10px;
  color: rgba(230, 247, 255, 0.86);
  background: rgba(255, 255, 255, 0.065);
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 900;
  white-space: nowrap;
  transition: transform 220ms ease, border-color 220ms ease, background 220ms ease;
}

.contractors-proof-strip span:hover {
  transform: translateY(-1px) scale(1.01);
  background: rgba(255, 255, 255, 0.085);
  border-color: rgba(133, 219, 255, 0.24);
}

.contractors-form {
  display: grid;
  gap: 15px;
  padding: clamp(24px, 4vw, 34px);
  color: var(--ink);
  background: linear-gradient(145deg, #ffffff 0%, #f7fbff 100%);
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: var(--radius);
  box-shadow: 0 28px 80px rgba(0, 12, 34, 0.28);
}

.contractors-form .button {
  transition: transform 220ms ease, box-shadow 220ms ease, filter 220ms ease;
}

.contractors-form .button:hover {
  transform: translateY(-2px) scale(1.01);
  filter: saturate(1.04);
}

.contractors-form h3 {
  margin: 0;
  color: var(--navy);
  font-size: 1.55rem;
  line-height: 1.1;
}

.contractors-form label {
  display: grid;
  gap: 7px;
  color: var(--navy);
  font-size: 0.94rem;
  font-weight: 800;
}

.contractors-form input,
.contractors-form textarea {
  width: 100%;
  min-height: 48px;
  padding: 12px 14px;
  color: var(--ink);
  font: inherit;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(0, 39, 105, 0.12);
  border-radius: var(--radius);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.9);
  transition: border-color 180ms ease, box-shadow 180ms ease, outline-color 180ms ease;
}

.contractors-form textarea {
  min-height: 104px;
  resize: vertical;
}

.contractors-form input:focus,
.contractors-form textarea:focus {
  border-color: var(--blue);
  outline: 3px solid rgba(0, 176, 255, 0.22);
  box-shadow: 0 0 0 5px rgba(0, 176, 255, 0.08);
}

.contractors-extra {
  padding: 11px 12px;
  background: rgba(0, 39, 105, 0.035);
  border: 1px solid rgba(0, 39, 105, 0.08);
  border-radius: var(--radius);
}

.contractors-extra summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  color: var(--navy);
  cursor: pointer;
  font-size: 0.9rem;
  font-weight: 900;
  list-style: none;
}

.contractors-extra summary::-webkit-details-marker {
  display: none;
}

.contractors-extra summary::after {
  content: "+";
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  color: var(--blue);
  background: rgba(0, 176, 255, 0.08);
  border-radius: 999px;
  font-weight: 900;
}

.contractors-extra[open] summary::after {
  content: "-";
}

.contractors-extra > div {
  display: grid;
  gap: 14px;
  margin-top: 14px;
}

.contractors-form small,
.contractors-form .form-note {
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 600;
}

.contractors-form .form-note {
  color: rgba(0, 39, 105, 0.74) !important;
  font-size: 0.88rem !important;
  line-height: 1.45;
  font-weight: 750;
}

.contractors-form .form-note--success {
  color: #065f46 !important;
}

.contractors-form .form-note--error {
  color: #991b1b !important;
}

.contractors-form .form-note--pending {
  color: #075985 !important;
}

.contractors-form small.is-valid {
  color: #047857;
}

.contractors-form small.is-invalid {
  color: #b91c1c;
}

.investment-section {
  content-visibility: auto;
  contain-intrinsic-size: 980px;
  background:
    radial-gradient(circle at 86% 10%, rgba(0, 176, 255, 0.06) 0%, rgba(0, 176, 255, 0) 34%),
    linear-gradient(180deg, #ffffff 0%, #f4f8fc 100%);
}

.investment-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 440px);
  gap: clamp(34px, 5vw, 78px);
  align-items: start;
}

.investment-copy h2 {
  max-width: 720px;
  margin: 0;
  color: var(--navy);
  font-size: clamp(2rem, 3.85vw, 3.35rem);
  line-height: 1.04;
  letter-spacing: 0;
}

.investment-copy > p:not(.eyebrow) {
  max-width: 720px;
  color: var(--muted);
  font-size: 1.04rem;
  line-height: 1.68;
}

.investment-key-benefit {
  display: block;
  max-width: 680px;
  margin-top: 18px;
  color: var(--navy);
  font-size: 1.02rem;
  line-height: 1.45;
}

.investment-benefits {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-top: 38px;
}

.investment-benefits article {
  display: flex;
  gap: 16px;
  min-height: 154px;
  padding: 24px;
  background: rgba(255, 255, 255, 0.84);
  border: 1px solid rgba(0, 39, 105, 0.09);
  border-radius: var(--radius);
  box-shadow: 0 12px 30px rgba(0, 39, 105, 0.055);
  transition: transform 0.26s cubic-bezier(0.22, 1, 0.36, 1), border-color 0.26s ease, box-shadow 0.26s ease, background 0.26s ease;
}

.investment-benefits article:hover {
  transform: translateY(-4px);
  background: #ffffff;
  border-color: rgba(0, 176, 255, 0.22);
  box-shadow: 0 20px 44px rgba(0, 39, 105, 0.095), 0 0 24px rgba(0, 176, 255, 0.055);
}

.investment-benefits .investment-benefit--featured {
  background: #ffffff;
  border-color: rgba(0, 39, 105, 0.18);
  box-shadow: 0 22px 50px rgba(0, 39, 105, 0.105);
}

.investment-benefits svg {
  width: 27px;
  height: 27px;
  flex: 0 0 auto;
  color: var(--blue);
  transition: transform 0.26s ease, filter 0.26s ease;
}

.investment-benefits article:hover svg {
  transform: translateY(-2px);
  filter: drop-shadow(0 8px 15px rgba(0, 176, 255, 0.18));
}

.investment-benefits h3 {
  margin: 0 0 8px;
  color: var(--navy);
  font-size: 1.08rem;
  line-height: 1.18;
  font-weight: 900;
}

.investment-benefits p {
  margin: 0;
  color: rgba(54, 67, 92, 0.78);
  font-size: 0.92rem;
  line-height: 1.55;
}

.investment-proof-strip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  margin-top: 18px;
  padding: 11px 16px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.72), rgba(245, 251, 255, 0.54));
  border: 1px solid rgba(0, 39, 105, 0.075);
  border-radius: var(--radius);
  box-shadow: 0 10px 24px rgba(0, 39, 105, 0.04);
  backdrop-filter: blur(10px);
}

.investment-proof-strip p {
  display: grid;
  gap: 3px;
  margin: 0;
  max-width: 470px;
}

.investment-proof-strip strong {
  color: var(--navy);
  font-size: 0.88rem;
  font-weight: 850;
  line-height: 1.35;
}

.investment-proof-strip small {
  color: rgba(54, 67, 92, 0.62);
  font-size: 0.76rem;
  font-weight: 700;
  line-height: 1.35;
}

.investment-proof-strip div {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 7px;
}

.investment-proof-strip span {
  display: inline-flex;
  align-items: center;
  min-height: 25px;
  padding: 5px 9px;
  color: var(--navy);
  background: rgba(255, 255, 255, 0.58);
  border: 1px solid rgba(0, 39, 105, 0.08);
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 900;
}

.investment-form {
  display: grid;
  gap: 17px;
  padding: clamp(26px, 3vw, 34px);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.98), rgba(247, 251, 255, 0.94));
  border: 1px solid rgba(0, 39, 105, 0.105);
  border-radius: calc(var(--radius) + 6px);
  box-shadow: 0 20px 50px rgba(0, 39, 105, 0.095), inset 0 1px 0 rgba(255, 255, 255, 0.92);
}

.investment-form-head {
  display: grid;
  gap: 8px;
  margin-bottom: 4px;
}

.investment-form-head h3 {
  margin: 0;
  color: var(--navy);
  font-size: 1.5rem;
  line-height: 1.12;
}

.investment-form-badge {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  min-height: 28px;
  padding: 6px 10px;
  color: var(--blue);
  background: rgba(0, 176, 255, 0.07);
  border: 1px solid rgba(0, 176, 255, 0.18);
  border-radius: 999px;
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.investment-form label {
  display: grid;
  gap: 7px;
  color: var(--navy);
  font-size: 0.9rem;
  font-weight: 850;
}

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

.investment-form input,
.investment-form select,
.investment-form textarea {
  width: 100%;
  min-height: 46px;
  padding: 11px 13px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(0, 39, 105, 0.11);
  border-radius: var(--radius);
  font: inherit;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.investment-form textarea {
  min-height: 112px;
  resize: vertical;
}

.investment-form input:focus,
.investment-form select:focus,
.investment-form textarea:focus {
  background: #ffffff;
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(0, 176, 255, 0.16);
  outline: none;
}

.investment-form .button--primary {
  background: linear-gradient(135deg, #0068d7 0%, #00a7ef 100%);
  box-shadow: 0 16px 34px rgba(0, 99, 190, 0.22);
  transition: transform 0.24s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.24s ease, filter 0.24s ease;
}

.investment-form .button--primary:hover,
.investment-form .button--primary:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 20px 42px rgba(0, 99, 190, 0.26);
  filter: saturate(0.96);
}

.investment-trust {
  margin: 0;
  padding-top: 2px;
  color: rgba(54, 67, 92, 0.72);
  font-size: 0.84rem;
  line-height: 1.45;
}

.investment-page-hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 78% 18%, rgba(14, 165, 233, 0.28), rgba(14, 165, 233, 0) 32%),
    linear-gradient(135deg, rgba(0, 20, 54, 0.96), rgba(0, 62, 138, 0.92)),
    var(--navy);
}

.investment-page-hero::after {
  content: "";
  position: absolute;
  right: -160px;
  bottom: -190px;
  width: 420px;
  height: 420px;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 50%;
}

.investment-page-hero .container {
  position: relative;
  z-index: 1;
}

.investment-hero-card {
  align-self: center;
  justify-self: end;
  width: min(100%, 430px);
  padding: clamp(18px, 2.4vw, 25px);
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.18);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.12),
    0 26px 66px rgba(0, 20, 54, 0.28);
}

.investment-hero-card__head {
  display: grid;
  gap: 8px;
}

.investment-hero-card__head span {
  width: fit-content;
  padding: 7px 10px;
  color: #dff5ff;
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
  background: rgba(14, 165, 233, 0.18);
  border: 1px solid rgba(14, 165, 233, 0.3);
  border-radius: 999px;
}

.investment-hero-card__head strong {
  color: white;
  font-size: clamp(1.16rem, 2.1vw, 1.55rem);
  line-height: 1.16;
}

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

.investment-hero-grid span {
  display: grid;
  gap: 8px;
  min-height: 96px;
  padding: 13px;
  color: rgba(255, 255, 255, 0.9);
  background: rgba(255, 255, 255, 0.09);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-sm);
  font-weight: 850;
  line-height: 1.28;
}

.investment-hero-grid span:hover {
  background: rgba(255, 255, 255, 0.13);
  border-color: rgba(14, 165, 233, 0.28);
}

.investment-hero-grid svg {
  width: 22px;
  height: 22px;
  color: var(--blue);
}

.investment-page-section {
  background:
    radial-gradient(circle at 88% 12%, rgba(14, 165, 233, 0.08), rgba(14, 165, 233, 0) 28%),
    linear-gradient(180deg, #f7fbff 0%, #ffffff 34%, #f8fbff 100%);
}

.investment-page-layout {
  align-items: start;
}

.investment-page-copy {
  min-width: 0;
}

.investment-page-copy > h2 {
  max-width: 780px;
  font-size: clamp(1.85rem, 3.2vw, 3rem);
}

.investment-signal-row,
.investment-audience-grid,
.investment-control-grid,
.investment-standard-grid,
.investment-document-grid {
  display: grid;
  gap: 14px;
}

.investment-signal-row {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-bottom: 34px;
}

.investment-signal-row article {
  position: relative;
  overflow: hidden;
  display: grid;
  gap: 10px;
  min-height: 122px;
  padding: 18px;
  background: white;
  border: 1px solid rgba(0, 39, 105, 0.08);
  border-radius: var(--radius);
  box-shadow: 0 12px 28px rgba(0, 39, 105, 0.055);
}

.investment-signal-row article::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--blue), rgba(14, 165, 233, 0));
}

.investment-signal-row svg {
  width: 25px;
  height: 25px;
  color: var(--blue);
}

.investment-signal-row strong {
  color: var(--navy);
  font-weight: 950;
}

.investment-signal-row span {
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.42;
}

.investment-audience-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 30px;
}

.investment-audience-grid article {
  position: relative;
  overflow: hidden;
  display: grid;
  gap: 10px;
  min-height: 184px;
  padding: 22px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(0, 39, 105, 0.08);
  border-radius: var(--radius);
  box-shadow: 0 14px 34px rgba(0, 39, 105, 0.055);
}

.investment-audience-grid article::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 4px;
  background: linear-gradient(90deg, rgba(14, 165, 233, 0.9), rgba(14, 165, 233, 0));
}

.investment-audience-grid svg,
.investment-control-grid svg {
  width: 28px;
  height: 28px;
  color: var(--blue);
}

.investment-audience-grid h3,
.investment-control-grid h3 {
  margin: 0;
  color: var(--navy);
  font-size: 1.06rem;
  line-height: 1.18;
}

.investment-audience-grid p,
.investment-control-grid p {
  margin: 0;
  color: var(--muted);
  line-height: 1.56;
}

.investment-control-panel,
.investment-standards,
.investment-ops-panel,
.investment-process-panel {
  position: relative;
  margin-top: 34px;
  padding: clamp(20px, 3vw, 28px);
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(0, 39, 105, 0.085);
  border-radius: 24px;
  box-shadow: 0 22px 60px rgba(0, 39, 105, 0.095);
}

.investment-az-panel {
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1fr);
  gap: 22px;
  align-items: stretch;
  padding: clamp(20px, 3vw, 30px);
  background:
    radial-gradient(circle at 98% 10%, rgba(14, 165, 233, 0.13), rgba(14, 165, 233, 0) 34%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(246, 250, 255, 0.94));
}

.investment-az-panel::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 5px;
  background: linear-gradient(90deg, var(--navy), var(--blue), rgba(14, 165, 233, 0.12));
}

.investment-az-main {
  position: relative;
  display: grid;
  gap: 14px;
  align-content: center;
  min-height: 360px;
  padding: clamp(20px, 3vw, 28px);
  color: white;
  background:
    radial-gradient(circle at 88% 14%, rgba(14, 165, 233, 0.32), rgba(14, 165, 233, 0) 34%),
    linear-gradient(135deg, rgba(0, 39, 105, 0.98), rgba(0, 86, 164, 0.92)),
    var(--navy);
  border-radius: 20px;
  box-shadow: 0 22px 48px rgba(0, 39, 105, 0.18);
}

.investment-az-badge {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  width: fit-content;
  padding: 8px 12px;
  color: #dff5ff;
  background: rgba(14, 165, 233, 0.2);
  border: 1px solid rgba(14, 165, 233, 0.28);
  border-radius: 999px;
  font-size: 0.76rem;
  font-weight: 950;
  text-transform: uppercase;
}

.investment-az-badge svg {
  width: 16px;
  height: 16px;
}

.investment-az-main h2 {
  margin: 0;
  color: white;
  font-size: clamp(1.65rem, 3.1vw, 2.65rem);
  line-height: 1.04;
}

.investment-az-main p {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.62;
}

.investment-az-highlight {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 12px;
  align-items: center;
  margin-top: 6px;
  padding: 14px;
  color: white;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 16px;
  line-height: 1.38;
}

.investment-az-highlight svg {
  width: 36px;
  height: 36px;
  padding: 9px;
  color: white;
  background: rgba(14, 165, 233, 0.28);
  border-radius: 14px;
}

.investment-az-steps {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.investment-az-steps article {
  position: relative;
  overflow: hidden;
  display: grid;
  gap: 9px;
  align-content: start;
  min-height: 176px;
  padding: 18px;
  background: white;
  border: 1px solid rgba(0, 39, 105, 0.08);
  border-radius: 18px;
  box-shadow: 0 14px 34px rgba(0, 39, 105, 0.055);
}

.investment-az-steps article::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--blue), rgba(14, 165, 233, 0));
}

.investment-az-steps svg {
  width: 34px;
  height: 34px;
  padding: 8px;
  color: white;
  background: linear-gradient(135deg, var(--navy), var(--blue));
  border-radius: 14px;
}

.investment-az-steps span {
  position: absolute;
  top: 14px;
  right: 16px;
  color: rgba(0, 39, 105, 0.13);
  font-size: 1.8rem;
  font-weight: 950;
  line-height: 1;
}

.investment-az-steps h3 {
  margin: 0;
  color: var(--navy);
  font-size: 1.06rem;
  line-height: 1.18;
}

.investment-az-steps p {
  margin: 0;
  color: var(--muted);
  line-height: 1.48;
}

.investment-control-panel {
  overflow: hidden;
  color: white;
  background:
    radial-gradient(circle at 90% 16%, rgba(14, 165, 233, 0.22), rgba(14, 165, 233, 0) 34%),
    linear-gradient(135deg, rgba(0, 39, 105, 0.98), rgba(0, 86, 164, 0.92)),
    var(--navy);
  border-color: rgba(14, 165, 233, 0.22);
}

.investment-control-panel::after {
  content: "";
  position: absolute;
  right: -120px;
  bottom: -130px;
  width: 300px;
  height: 300px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 50%;
}

.investment-control-head,
.investment-standards-head,
.investment-process-head {
  position: relative;
  display: grid;
  gap: 10px;
  max-width: 700px;
  z-index: 1;
}

.investment-control-head h2,
.investment-control-head .eyebrow {
  color: white;
}

.investment-control-head p:not(.eyebrow) {
  margin: 0;
  color: rgba(255, 255, 255, 0.76);
  line-height: 1.62;
}

.investment-control-grid {
  position: relative;
  z-index: 1;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 22px;
}

.investment-control-grid article {
  display: grid;
  gap: 12px;
  align-content: start;
  min-height: 238px;
  padding: 19px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.13), rgba(255, 255, 255, 0.08));
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.investment-risk-icon {
  display: flex;
  gap: 10px;
  align-items: center;
}

.investment-risk-icon svg {
  width: 38px;
  height: 38px;
  padding: 9px;
  color: white;
  background: linear-gradient(135deg, var(--blue), #38c7ff);
  border-radius: 14px;
  box-shadow: 0 14px 30px rgba(14, 165, 233, 0.2);
}

.investment-risk-icon span {
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.72rem;
  font-weight: 950;
  text-transform: uppercase;
}

.investment-control-grid h3 {
  color: white;
}

.investment-control-grid p {
  color: rgba(255, 255, 255, 0.76);
}

.investment-control-grid strong {
  display: block;
  margin-top: auto;
  padding: 12px;
  color: #e5f7ff;
  background: rgba(14, 165, 233, 0.13);
  border: 1px solid rgba(14, 165, 233, 0.2);
  border-radius: 14px;
  font-size: 0.86rem;
  line-height: 1.42;
}

.investment-control-summary {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 14px;
  align-items: center;
  margin-top: 16px;
  padding: 17px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
}

.investment-control-summary > svg {
  width: 42px;
  height: 42px;
  padding: 10px;
  color: white;
  background: rgba(14, 165, 233, 0.22);
  border: 1px solid rgba(14, 165, 233, 0.26);
  border-radius: 14px;
}

.investment-control-summary div {
  display: grid;
  gap: 4px;
}

.investment-control-summary strong {
  color: white;
  line-height: 1.28;
}

.investment-control-summary span {
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.45;
}

.investment-standards-head h2,
.investment-ops-panel h2,
.investment-process-head h2 {
  margin: 0;
  color: var(--navy);
  font-size: clamp(1.45rem, 3vw, 2.25rem);
  line-height: 1.08;
}

.investment-standards-head p:not(.eyebrow),
.investment-ops-panel p:not(.eyebrow) {
  margin: 0;
  color: var(--muted);
  line-height: 1.62;
}

.investment-standard-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 24px;
}

.investment-standard-grid article {
  position: relative;
  overflow: hidden;
  display: grid;
  gap: 12px;
  align-content: start;
  min-height: 288px;
  padding: 22px;
  background: white;
  border: 1px solid rgba(0, 39, 105, 0.09);
  border-radius: var(--radius);
  box-shadow: 0 14px 34px rgba(0, 39, 105, 0.055);
}

.investment-standard-grid article::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 4px;
  background: linear-gradient(90deg, rgba(14, 165, 233, 0.85), rgba(14, 165, 233, 0));
}

.investment-standard-grid .investment-standard-featured {
  color: white;
  background:
    linear-gradient(135deg, rgba(0, 39, 105, 0.98), rgba(14, 165, 233, 0.86)),
    var(--navy);
  border-color: rgba(14, 165, 233, 0.28);
  box-shadow: 0 24px 60px rgba(0, 39, 105, 0.16);
}

.investment-standard-grid span {
  color: var(--blue);
  font-size: 0.78rem;
  font-weight: 950;
}

.investment-standard-grid h3 {
  margin: 0;
  color: var(--navy);
  font-size: 1.24rem;
  line-height: 1.12;
}

.investment-standard-grid p {
  margin: 0;
  color: var(--muted);
  line-height: 1.52;
}

.investment-standard-grid ul {
  display: grid;
  gap: 8px;
  margin: 4px 0 0;
  padding: 0;
  list-style: none;
}

.investment-standard-grid li {
  display: flex;
  gap: 8px;
  align-items: flex-start;
  color: var(--navy);
  font-size: 0.88rem;
  font-weight: 850;
  line-height: 1.35;
}

.investment-standard-grid li svg {
  flex: 0 0 auto;
  width: 16px;
  height: 16px;
  color: var(--blue);
}

.investment-standard-featured span,
.investment-standard-featured h3,
.investment-standard-featured li {
  color: white;
}

.investment-standard-featured p {
  color: rgba(255, 255, 255, 0.8);
}

.investment-standard-featured li svg {
  color: #bdf0ff;
}

.investment-ops-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1fr);
  gap: 24px;
  align-items: center;
  overflow: hidden;
}

.investment-ops-panel::after {
  content: "";
  position: absolute;
  top: -80px;
  right: -90px;
  width: 220px;
  height: 220px;
  background: radial-gradient(circle, rgba(14, 165, 233, 0.12), rgba(14, 165, 233, 0));
  border-radius: 50%;
}

.investment-document-grid {
  position: relative;
  z-index: 1;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.investment-document-grid article {
  display: flex;
  gap: 10px;
  align-items: center;
  min-height: 62px;
  padding: 13px;
  color: var(--navy);
  background: rgba(14, 165, 233, 0.07);
  border: 1px solid rgba(14, 165, 233, 0.15);
  border-radius: var(--radius-sm);
  font-size: 0.88rem;
  font-weight: 900;
  line-height: 1.3;
}

.investment-document-grid svg {
  flex: 0 0 auto;
  width: 20px;
  height: 20px;
  color: var(--blue);
}

.investment-process {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
}

.investment-process li {
  position: relative;
  display: grid;
  gap: 8px;
  min-height: 190px;
  padding: 18px;
  background: white;
  border: 1px solid rgba(0, 39, 105, 0.08);
  border-radius: var(--radius);
  box-shadow: 0 14px 34px rgba(0, 39, 105, 0.055);
}

.investment-process li::after {
  content: "";
  position: absolute;
  top: 32px;
  right: -12px;
  width: 12px;
  height: 1px;
  background: rgba(14, 165, 233, 0.35);
}

.investment-process li:last-child::after {
  display: none;
}

.investment-process span {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  color: white;
  background: linear-gradient(135deg, var(--navy), var(--blue));
  border-radius: 12px;
  font-size: 0.78rem;
  font-weight: 950;
}

.investment-process h3 {
  margin: 0;
  color: var(--navy);
  font-size: 1rem;
  line-height: 1.18;
}

.investment-process p {
  margin: 0;
  color: var(--muted);
  line-height: 1.5;
}

.investment-final-note {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 14px;
  align-items: center;
  margin-top: 28px;
  padding: 18px;
  color: var(--navy);
  background: rgba(14, 165, 233, 0.1);
  border: 1px solid rgba(14, 165, 233, 0.2);
  border-radius: var(--radius);
}

.investment-final-note > svg {
  width: 40px;
  height: 40px;
  padding: 9px;
  color: var(--blue);
  background: white;
  border: 1px solid rgba(14, 165, 233, 0.18);
  border-radius: 14px;
  box-shadow: 0 12px 28px rgba(0, 39, 105, 0.09);
}

.investment-final-note div {
  display: grid;
  gap: 4px;
}

.investment-final-note strong {
  color: var(--navy);
  line-height: 1.28;
}

.investment-final-note span,
.investment-form-head p {
  margin: 0;
  color: var(--muted);
  line-height: 1.45;
}

.architect-page-hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 82% 14%, rgba(14, 165, 233, 0.26), rgba(14, 165, 233, 0) 34%),
    linear-gradient(135deg, rgba(0, 20, 54, 0.96), rgba(0, 62, 138, 0.92)),
    var(--navy);
}

.architect-page-hero::after {
  content: "";
  position: absolute;
  right: -150px;
  bottom: -190px;
  width: 430px;
  height: 430px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50%;
}

.architect-page-hero .container {
  position: relative;
  z-index: 1;
}

.architect-hero-card {
  align-self: center;
  justify-self: end;
  width: min(100%, 430px);
  padding: clamp(18px, 2.4vw, 25px);
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.18);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.12),
    0 26px 66px rgba(0, 20, 54, 0.28);
}

.architect-hero-card__head {
  display: grid;
  gap: 8px;
}

.architect-hero-card__head span {
  width: fit-content;
  padding: 7px 10px;
  color: #dff5ff;
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
  background: rgba(14, 165, 233, 0.18);
  border: 1px solid rgba(14, 165, 233, 0.3);
  border-radius: 999px;
}

.architect-hero-card__head strong {
  color: white;
  font-size: clamp(1.16rem, 2.1vw, 1.55rem);
  line-height: 1.16;
}

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

.architect-hero-grid span {
  display: grid;
  gap: 8px;
  min-height: 96px;
  padding: 13px;
  color: rgba(255, 255, 255, 0.9);
  background: rgba(255, 255, 255, 0.09);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-sm);
  font-weight: 850;
  line-height: 1.28;
}

.architect-hero-grid svg {
  width: 22px;
  height: 22px;
  color: var(--blue);
}

.architect-page-section {
  background:
    radial-gradient(circle at 88% 12%, rgba(14, 165, 233, 0.08), rgba(14, 165, 233, 0) 28%),
    linear-gradient(180deg, #f7fbff 0%, #ffffff 34%, #f8fbff 100%);
}

.architect-page-copy {
  min-width: 0;
}

.architect-page-copy > h2 {
  max-width: 800px;
  font-size: clamp(1.85rem, 3.2vw, 3rem);
}

.architect-signal-row,
.architect-problem-grid,
.architect-showroom-cards,
.architect-benefits,
.architect-flow {
  display: grid;
  gap: 14px;
}

.architect-signal-row {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-bottom: 34px;
}

.architect-signal-row article {
  position: relative;
  overflow: hidden;
  display: grid;
  gap: 10px;
  min-height: 134px;
  padding: 18px;
  background: white;
  border: 1px solid rgba(0, 39, 105, 0.08);
  border-radius: var(--radius);
  box-shadow: 0 12px 28px rgba(0, 39, 105, 0.055);
}

.architect-signal-row article::after,
.architect-showroom-cards article::after,
.architect-benefits article::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--blue), rgba(14, 165, 233, 0));
}

.architect-signal-row svg {
  width: 25px;
  height: 25px;
  color: var(--blue);
}

.architect-signal-row strong {
  color: var(--navy);
  font-weight: 950;
}

.architect-signal-row span {
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.42;
}

.architect-promise-panel,
.architect-showroom-panel,
.architect-benefits-panel,
.architect-flow-panel {
  position: relative;
  overflow: hidden;
  margin-top: 34px;
  padding: clamp(20px, 3vw, 28px);
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(0, 39, 105, 0.085);
  border-radius: 24px;
  box-shadow: 0 22px 60px rgba(0, 39, 105, 0.095);
}

.architect-promise-panel {
  color: white;
  background:
    radial-gradient(circle at 90% 16%, rgba(14, 165, 233, 0.24), rgba(14, 165, 233, 0) 34%),
    linear-gradient(135deg, rgba(0, 39, 105, 0.98), rgba(0, 86, 164, 0.92)),
    var(--navy);
  border-color: rgba(14, 165, 233, 0.22);
}

.architect-promise-panel::after {
  content: "";
  position: absolute;
  right: -120px;
  bottom: -130px;
  width: 300px;
  height: 300px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 50%;
}

.architect-promise-head,
.architect-showroom-copy,
.architect-benefits-head,
.architect-flow-head {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 10px;
  max-width: 720px;
}

.architect-promise-head h2,
.architect-promise-head .eyebrow {
  color: white;
}

.architect-promise-head p:not(.eyebrow) {
  margin: 0;
  color: rgba(255, 255, 255, 0.76);
  line-height: 1.62;
}

.architect-problem-grid {
  position: relative;
  z-index: 1;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 22px;
}

.architect-problem-grid article {
  display: grid;
  gap: 11px;
  align-content: start;
  min-height: 206px;
  padding: 19px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.13), rgba(255, 255, 255, 0.08));
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.architect-problem-grid svg {
  width: 38px;
  height: 38px;
  padding: 9px;
  color: white;
  background: linear-gradient(135deg, var(--blue), #38c7ff);
  border-radius: 14px;
  box-shadow: 0 14px 30px rgba(14, 165, 233, 0.2);
}

.architect-problem-grid h3 {
  margin: 0;
  color: white;
  font-size: 1.05rem;
  line-height: 1.2;
}

.architect-problem-grid p {
  margin: 0;
  color: rgba(255, 255, 255, 0.76);
  line-height: 1.5;
}

.architect-showroom-panel {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(24px, 3.2vw, 36px);
  align-items: stretch;
  background:
    radial-gradient(circle at 92% 8%, rgba(14, 165, 233, 0.14), rgba(14, 165, 233, 0) 34%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(246, 250, 255, 0.94));
}

.architect-showroom-panel::after {
  content: "";
  position: absolute;
  top: -90px;
  right: -100px;
  width: 250px;
  height: 250px;
  background: radial-gradient(circle, rgba(14, 165, 233, 0.16), rgba(14, 165, 233, 0));
  border-radius: 50%;
}

.architect-showroom-panel::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 5px;
  background: linear-gradient(90deg, var(--navy), var(--blue), rgba(14, 165, 233, 0.12));
}

.architect-showroom-copy {
  align-content: center;
  max-width: 760px;
  min-height: auto;
  padding: clamp(10px, 1.2vw, 14px) 0;
}

.architect-mini-badge {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  width: fit-content;
  max-width: 100%;
  padding: 7px 10px;
  color: var(--navy);
  background: rgba(14, 165, 233, 0.12);
  border: 1px solid rgba(14, 165, 233, 0.22);
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 950;
  text-transform: uppercase;
}

.architect-mini-badge svg {
  width: 16px;
  height: 16px;
}

.architect-showroom-copy h2,
.architect-benefits-head h2,
.architect-flow-head h2 {
  margin: 0;
  color: var(--navy);
  font-size: clamp(1.65rem, 2.45vw, 2.35rem);
  line-height: 1.06;
}

.architect-showroom-copy p,
.architect-benefits-head p,
.architect-flow-head p {
  margin: 0;
  color: var(--muted);
  line-height: 1.62;
}

.architect-showroom-cards {
  position: relative;
  z-index: 1;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-content: center;
  gap: 12px;
}

.architect-showroom-cards article,
.architect-benefits article {
  position: relative;
  overflow: hidden;
  display: grid;
  gap: 10px;
  align-content: start;
  min-height: 188px;
  padding: 20px;
  background: white;
  border: 1px solid rgba(0, 39, 105, 0.08);
  border-radius: var(--radius);
  box-shadow: 0 14px 34px rgba(0, 39, 105, 0.055);
}

.architect-showroom-cards article {
  min-height: 170px;
  padding: 18px;
}

.architect-showroom-cards .architect-showroom-card--featured {
  grid-column: 1 / -1;
  grid-template-columns: auto minmax(0, 1fr);
  column-gap: 16px;
  align-items: center;
  min-height: 128px;
  background:
    linear-gradient(135deg, rgba(0, 39, 105, 0.98), rgba(0, 86, 164, 0.9)),
    var(--navy);
  border-color: rgba(14, 165, 233, 0.24);
  box-shadow: 0 22px 52px rgba(0, 39, 105, 0.16);
}

.architect-showroom-cards .architect-showroom-card--featured svg {
  width: 46px;
  height: 46px;
  padding: 12px;
  color: white;
  background: linear-gradient(135deg, var(--blue), #38c7ff);
  border-radius: 16px;
  box-shadow: 0 18px 36px rgba(14, 165, 233, 0.22);
}

.architect-showroom-cards .architect-showroom-card--featured h3,
.architect-showroom-cards .architect-showroom-card--featured p {
  grid-column: 2;
}

.architect-showroom-cards .architect-showroom-card--featured h3 {
  color: white;
}

.architect-showroom-cards .architect-showroom-card--featured p {
  color: rgba(255, 255, 255, 0.78);
}

.architect-showroom-cards svg,
.architect-benefits svg {
  width: 30px;
  height: 30px;
  color: var(--blue);
}

.architect-showroom-cards h3,
.architect-benefits h3 {
  margin: 0;
  color: var(--navy);
  font-size: 1.04rem;
  line-height: 1.18;
}

.architect-showroom-cards p,
.architect-benefits p {
  margin: 0;
  color: var(--muted);
  line-height: 1.5;
}

.architect-benefits {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 22px;
}

.architect-flow {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
}

.architect-flow li {
  position: relative;
  display: grid;
  gap: 8px;
  min-height: 190px;
  padding: 18px;
  background: white;
  border: 1px solid rgba(0, 39, 105, 0.08);
  border-radius: var(--radius);
  box-shadow: 0 14px 34px rgba(0, 39, 105, 0.055);
}

.architect-flow li::after {
  content: "";
  position: absolute;
  top: 32px;
  right: -12px;
  width: 12px;
  height: 1px;
  background: rgba(14, 165, 233, 0.35);
}

.architect-flow li:last-child::after {
  display: none;
}

.architect-flow span {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  color: white;
  background: linear-gradient(135deg, var(--navy), var(--blue));
  border-radius: 12px;
  font-size: 0.78rem;
  font-weight: 950;
}

.architect-flow h3 {
  margin: 0;
  color: var(--navy);
  font-size: 1rem;
  line-height: 1.18;
}

.architect-flow p {
  margin: 0;
  color: var(--muted);
  line-height: 1.5;
}

.architect-final-note {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 14px;
  align-items: center;
  margin-top: 28px;
  padding: 18px;
  color: var(--navy);
  background: rgba(14, 165, 233, 0.1);
  border: 1px solid rgba(14, 165, 233, 0.2);
  border-radius: var(--radius);
}

.architect-final-note > svg {
  width: 40px;
  height: 40px;
  padding: 9px;
  color: var(--blue);
  background: white;
  border: 1px solid rgba(14, 165, 233, 0.18);
  border-radius: 14px;
  box-shadow: 0 12px 28px rgba(0, 39, 105, 0.09);
}

.architect-final-note div {
  display: grid;
  gap: 4px;
}

.architect-final-note strong {
  color: var(--navy);
  line-height: 1.28;
}

.architect-final-note span {
  color: var(--muted);
  line-height: 1.45;
}

.architect-form {
  border-color: rgba(14, 165, 233, 0.18);
  box-shadow: 0 24px 70px rgba(0, 39, 105, 0.14);
}

@media (max-width: 1280px) {
  .business-page-layout .architect-showroom-panel {
    grid-template-columns: 1fr;
  }

  .business-page-layout .architect-showroom-copy {
    min-height: auto;
    max-width: 760px;
  }

  .business-page-layout .architect-showroom-cards {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .business-page-layout .architect-showroom-cards .architect-showroom-card--featured {
    grid-column: auto;
    grid-template-columns: 1fr;
  }

  .business-page-layout .architect-showroom-cards .architect-showroom-card--featured h3,
  .business-page-layout .architect-showroom-cards .architect-showroom-card--featured p {
    grid-column: auto;
  }
}

@media (max-width: 980px) {
  .investment-hero-card {
    justify-self: stretch;
    width: 100%;
  }

  .architect-hero-card {
    justify-self: stretch;
    width: 100%;
  }

  .investment-ops-panel,
  .investment-control-grid,
  .investment-az-panel,
  .investment-standard-grid,
  .investment-process,
  .architect-showroom-panel,
  .architect-problem-grid,
  .architect-showroom-cards,
  .architect-benefits,
  .architect-flow {
    grid-template-columns: 1fr;
  }

  .investment-process li::after,
  .architect-flow li::after {
    display: none;
  }

  .architect-showroom-copy {
    min-height: auto;
  }

  .architect-showroom-cards .architect-showroom-card--featured {
    grid-column: auto;
  }
}

@media (max-width: 720px) {
  .investment-hero-grid {
    grid-template-columns: 1fr;
  }

  .architect-hero-grid,
  .investment-hero-grid {
    grid-template-columns: 1fr;
  }

  .architect-hero-grid span,
  .investment-hero-grid span {
    min-height: auto;
  }

  .architect-showroom-cards .architect-showroom-card--featured {
    grid-template-columns: 1fr;
  }

  .architect-showroom-cards .architect-showroom-card--featured h3,
  .architect-showroom-cards .architect-showroom-card--featured p {
    grid-column: auto;
  }

  .investment-control-panel,
  .investment-standards,
  .investment-ops-panel,
  .investment-process-panel,
  .architect-promise-panel,
  .architect-showroom-panel,
  .architect-benefits-panel,
  .architect-flow-panel {
    padding: 18px 14px;
    border-radius: 20px;
  }

  .investment-final-note {
    grid-template-columns: 1fr;
    align-items: flex-start;
  }

  .investment-control-summary {
    grid-template-columns: 1fr;
    align-items: flex-start;
  }

  .architect-final-note {
    grid-template-columns: 1fr;
    align-items: flex-start;
  }

  .investment-az-main {
    min-height: auto;
    padding: 20px 16px;
  }

  .investment-az-highlight {
    grid-template-columns: 1fr;
    align-items: flex-start;
  }
}

.site-footer {
  padding: 34px 0 24px;
  color: white;
  background: var(--navy);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.legal-page {
  background: var(--soft);
}

.legal-shell {
  width: min(100% - 32px, 1120px);
  margin: 0 auto;
  padding: clamp(44px, 7vw, 82px) 0;
}

.legal-shell h1 {
  margin: 0;
  color: var(--navy);
  font-size: clamp(2rem, 4vw, 3.45rem);
  line-height: 1.04;
}

.legal-shell h2 {
  margin: 0 0 12px;
  color: var(--navy);
  font-size: clamp(1.18rem, 2vw, 1.48rem);
  line-height: 1.18;
}

.legal-shell h3 {
  margin: 26px 0 10px;
  color: var(--navy);
  font-size: 1.05rem;
  line-height: 1.25;
}

.legal-shell p {
  margin: 0 0 14px;
  color: var(--muted);
  font-size: 0.98rem;
  line-height: 1.72;
}

.legal-shell a:not(.button) {
  color: var(--navy);
  font-weight: 900;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.legal-hero {
  max-width: 820px;
  margin-bottom: 28px;
}

.legal-hero p:not(.eyebrow) {
  margin-top: 14px;
  font-size: 1.04rem;
}

.legal-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.legal-meta span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 8px 12px;
  color: var(--navy);
  font-size: 0.78rem;
  font-weight: 900;
  background: rgba(14, 165, 233, 0.09);
  border: 1px solid rgba(14, 165, 233, 0.18);
  border-radius: 999px;
}

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

.legal-sidebar {
  position: sticky;
  top: 92px;
  align-self: start;
  max-height: calc(100vh - 112px);
  overflow-y: auto;
  display: grid;
  gap: 18px;
  padding: 18px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(0, 39, 105, 0.08);
  border-radius: var(--radius);
  box-shadow: 0 18px 40px rgba(0, 39, 105, 0.06);
}

.legal-sidebar strong {
  color: var(--navy);
  font-size: 0.82rem;
  text-transform: uppercase;
}

.legal-sidebar nav,
.legal-sidebar__group {
  display: grid;
  gap: 8px;
}

.legal-sidebar a,
.legal-sidebar span {
  display: block;
  padding: 9px 10px;
  color: rgba(15, 23, 42, 0.76);
  font-size: 0.88rem;
  font-weight: 800;
  line-height: 1.25;
  text-decoration: none;
  background: rgba(248, 250, 252, 0.9);
  border: 1px solid rgba(0, 39, 105, 0.07);
  border-radius: 10px;
}

.legal-sidebar a:hover,
.legal-sidebar a.is-active {
  color: var(--navy);
  background: rgba(14, 165, 233, 0.1);
  border-color: rgba(14, 165, 233, 0.2);
}

.legal-sidebar span {
  opacity: 0.56;
}

.legal-document {
  display: grid;
  gap: 16px;
}

.legal-card,
.legal-section {
  padding: clamp(20px, 3vw, 28px);
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(0, 39, 105, 0.08);
  border-radius: var(--radius);
  box-shadow: 0 16px 40px rgba(0, 39, 105, 0.05);
}

.legal-card {
  border-color: rgba(14, 165, 233, 0.16);
  box-shadow: 0 20px 48px rgba(0, 39, 105, 0.07);
}

.legal-list {
  display: grid;
  gap: 8px;
  margin: 12px 0 0;
  padding-left: 20px;
  color: var(--muted);
}

.legal-list li {
  line-height: 1.55;
}

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

.legal-contact-grid span,
.legal-contact-grid a {
  min-width: 0;
  padding: 12px;
  color: var(--navy);
  font-size: 0.9rem;
  font-weight: 850;
  background: rgba(248, 250, 252, 0.9);
  border: 1px solid rgba(0, 39, 105, 0.07);
  border-radius: 12px;
}

.legal-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
}

@media (max-width: 760px) {
  .legal-shell {
    width: min(100% - 24px, 1120px);
    padding: 34px 0 56px;
  }

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

  .legal-sidebar {
    position: static;
    gap: 14px;
  }

  .legal-sidebar nav,
  .legal-sidebar__group {
    grid-template-columns: 1fr;
  }

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

  .legal-actions,
  .legal-actions .button {
    width: 100%;
  }
}

.footer-shell {
  display: grid;
  gap: 24px;
}

.footer-main {
  display: grid;
  grid-template-columns: minmax(230px, 320px) minmax(0, 1fr) minmax(180px, 240px);
  gap: clamp(22px, 4vw, 48px);
  align-items: flex-start;
}

.footer-identity {
  display: grid;
  gap: 16px;
  justify-items: flex-start;
}

.footer-brand {
  display: inline-flex;
  width: fit-content;
  padding: 8px 10px;
  background: white;
  border-radius: var(--radius);
  box-shadow: 0 18px 38px rgba(0, 18, 48, 0.22);
}

.footer-brand img {
  width: 190px;
  display: block;
}

.footer-company {
  display: grid;
  gap: 7px;
  max-width: 310px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.8rem;
  line-height: 1.36;
}

.footer-company strong {
  color: white;
  font-size: 0.9rem;
  line-height: 1.2;
}

.footer-company a {
  color: rgba(255, 255, 255, 0.84);
  font-weight: 900;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px 18px;
  padding-top: 6px;
}

.footer-nav a,
.footer-regulations {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.88rem;
  font-weight: 800;
  line-height: 1.2;
  transition:
    color 180ms ease,
    transform 180ms ease;
}

.footer-nav a:hover,
.footer-nav a:focus-visible,
.footer-regulations:hover,
.footer-regulations:focus-visible {
  color: white;
  outline: none;
  transform: translateY(-1px);
}

.footer-side {
  display: grid;
  justify-items: flex-end;
  gap: 14px;
}

.footer-legal {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px 16px;
}

.footer-socials {
  display: flex;
  gap: 8px;
}

.footer-socials a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  color: rgba(255, 255, 255, 0.76);
  background: rgba(255, 255, 255, 0.055);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  transition:
    color 180ms ease,
    background 180ms ease,
    border-color 180ms ease,
    transform 180ms ease;
}

.footer-socials a:hover,
.footer-socials a:focus-visible {
  color: white;
  background: rgba(0, 176, 255, 0.12);
  border-color: rgba(0, 176, 255, 0.42);
  outline: none;
  transform: translateY(-2px);
}

.footer-socials svg {
  width: 17px;
  height: 17px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.footer-socials svg path {
  fill: none;
}

.footer-bottom {
  padding-top: 18px;
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
  margin: 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.84rem;
  font-weight: 700;
}

@media (max-width: 980px) {
  .footer-main {
    grid-template-columns: 1fr;
    justify-items: flex-start;
  }

  .footer-company {
    max-width: 520px;
  }

  .footer-nav {
    justify-content: flex-start;
  }

  .footer-side {
    justify-items: flex-start;
  }

  .footer-legal {
    justify-content: flex-start;
  }

  .footer-bottom {
    text-align: left;
  }
}

@media (max-width: 980px) {
  .nav-toggle {
    display: grid;
  }

  .main-nav {
    position: absolute;
    top: calc(100% + 1px);
    right: 16px;
    left: 16px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 14px;
    background: white;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
  }

  .main-nav.is-open {
    display: flex;
  }

  .main-nav a {
    min-height: 52px;
    justify-content: flex-start;
    padding: 14px 16px;
    color: var(--navy);
    border-radius: var(--radius-sm);
  }

  .main-nav a::after {
    right: 16px;
    bottom: 10px;
    left: 16px;
  }

  .main-nav a:hover,
  .main-nav a:focus-visible,
  .main-nav a.is-active {
    background: var(--blue-soft);
  }

  .hero {
    min-height: 760px;
  }

  .hero__quickbar,
  .stats-grid,
  .two-column,
  .two-column--reverse,
  .split-showcase,
  .showroom-hero-grid,
  .teaser-gallery,
  .financing-layout,
  .design-process-head,
  .renovation-layout,
  .delivery-layout,
  .contractors-layout,
  .investment-layout,
  .contact-layout,
  .single-install-layout,
  .calculator-layout {
    grid-template-columns: 1fr;
  }

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

  .showroom-teaser__actions {
    justify-content: flex-start;
  }

  .calculator-summary {
    position: static;
  }

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

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

  .financing-estimator__grid {
    grid-template-columns: 1fr;
  }

  .tiles,
  .stage-picker,
  .lead-fields,
  .care-grid,
  .services-grid,
  .budget-cards,
  .financing-points,
  .design-timeline,
  .teaser-grid,
  .renovation-benefits,
  .delivery-steps,
  .contractors-benefits,
  .investment-benefits,
  .investment-signal-row,
  .investment-audience-grid,
  .investment-control-grid,
  .investment-standard-grid,
  .investment-document-grid,
  .investment-az-steps,
  .investment-process,
  .architect-signal-row,
  .architect-problem-grid,
  .architect-showroom-cards,
  .architect-benefits,
  .architect-flow,
  .gallery-grid,
  .showroom-zones,
  .single-install-benefits,
  .steps,
  .journey-map {
    grid-template-columns: repeat(2, 1fr);
  }

  .showroom-photo-main,
  .showroom-photo-main img {
    min-height: 420px;
  }

  .journey-map::before {
    display: none;
  }

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

  .journey-result .button {
    width: 100%;
  }

  .hero__content {
    padding-bottom: 260px;
  }
}

@media (max-width: 640px) {
  .lead-intent-modal {
    align-items: start;
    padding: 10px;
  }

  .lead-intent-dialog {
    width: 100%;
    max-height: calc(100vh - 20px);
    padding: 22px 16px;
    border-radius: 18px;
  }

  .lead-intent-head {
    padding-right: 42px;
  }

  .lead-intent-head h2 {
    font-size: clamp(1.7rem, 8vw, 2.35rem);
  }

  .lead-form {
    gap: 16px;
  }

  .container {
    width: min(100% - 24px, var(--max));
  }

  .site-header {
    min-height: 68px;
    padding: 10px 12px;
  }

  .brand img {
    width: min(62vw, 226px);
  }

  .hero {
    min-height: 760px;
  }

  .hero__content {
    width: min(100% - 24px, var(--max));
    padding-top: 40px;
    padding-bottom: 224px;
  }

  .hero h1 {
    font-size: clamp(2.1rem, 11vw, 3rem);
    line-height: 1.02;
  }

  .hero__actions,
  .button {
    width: 100%;
  }

  .hero__benefits {
    display: grid;
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .hero__benefits li {
    width: 100%;
    min-height: 36px;
    font-size: 0.88rem;
  }

  .hero__quickbar {
    right: 12px;
    left: 12px;
  }

  .hero__quickbar div {
    min-height: 52px;
    padding: 10px 12px;
    font-size: 0.82rem;
  }

  .stats-grid,
  .showroom-stats,
  .business-paths-grid,
  .business-benefits,
  .b2b-signal-row,
  .b2b-problem-grid,
  .tiles,
  .stage-picker,
  .lead-fields,
  .care-grid,
  .services-grid,
  .financing-points,
  .budget-cards,
  .design-timeline,
  .renovation-benefits,
  .delivery-steps,
  .contractors-benefits,
  .investment-benefits,
  .investment-signal-row,
  .investment-audience-grid,
  .investment-control-grid,
  .investment-standard-grid,
  .investment-document-grid,
  .investment-az-steps,
  .investment-process,
  .architect-signal-row,
  .architect-problem-grid,
  .architect-showroom-cards,
  .architect-benefits,
  .architect-flow,
  .gallery-grid,
  .showroom-zones,
  .showroom-gallery,
  .steps,
  .journey-map,
  .calculator-preset,
  .single-install-benefits,
  .single-install-options,
  .single-install-actions {
    grid-template-columns: 1fr;
  }

  .stats-grid,
  .business-paths-grid,
  .b2b-signal-row,
  .b2b-problem-grid,
  .b2b-materials-grid,
  .b2b-care-cards,
  .b2b-benefits,
  .tiles,
  .care-grid,
  .services-grid,
  .teaser-grid,
  .financing-points,
  .budget-cards,
  .design-timeline,
  .renovation-benefits,
  .delivery-steps,
  .contractors-benefits,
  .investment-benefits,
  .investment-signal-row,
  .investment-audience-grid,
  .investment-control-grid,
  .investment-standard-grid,
  .investment-document-grid,
  .investment-az-steps,
  .investment-process,
  .architect-signal-row,
  .architect-problem-grid,
  .architect-showroom-cards,
  .architect-benefits,
  .architect-flow,
  .showroom-benefits,
  .showroom-zones,
  .steps,
  .journey-map,
  .visit-info-grid,
  .single-install-benefits {
    --mobile-carousel-card-width: min(100%, calc(100vw - 48px));
    --mobile-carousel-side-pad: max(2px, calc((100% - var(--mobile-carousel-card-width)) / 2));
    display: flex;
    flex-wrap: nowrap;
    align-items: stretch;
    width: 100%;
    max-width: 100%;
    min-width: 0;
    gap: 12px;
    overflow-x: auto;
    overflow-y: hidden;
    overscroll-behavior-x: contain;
    scroll-padding-inline: var(--mobile-carousel-side-pad);
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    padding: 2px var(--mobile-carousel-side-pad) 14px;
    margin-right: 0;
    scrollbar-width: none;
  }

  .content-copy,
  .design-budget-module,
  .financing-layout,
  .delivery-panel,
  .contractors-copy,
  .investment-copy,
  .contact-copy,
  .business-page-copy,
  .single-install-copy {
    min-width: 0;
  }

  .stats-grid::-webkit-scrollbar,
  .business-paths-grid::-webkit-scrollbar,
  .b2b-signal-row::-webkit-scrollbar,
  .b2b-problem-grid::-webkit-scrollbar,
  .b2b-materials-grid::-webkit-scrollbar,
  .b2b-care-cards::-webkit-scrollbar,
  .b2b-benefits::-webkit-scrollbar,
  .tiles::-webkit-scrollbar,
  .care-grid::-webkit-scrollbar,
  .services-grid::-webkit-scrollbar,
  .teaser-grid::-webkit-scrollbar,
  .financing-points::-webkit-scrollbar,
  .budget-cards::-webkit-scrollbar,
  .design-timeline::-webkit-scrollbar,
  .renovation-benefits::-webkit-scrollbar,
  .delivery-steps::-webkit-scrollbar,
  .contractors-benefits::-webkit-scrollbar,
  .investment-benefits::-webkit-scrollbar,
  .investment-signal-row::-webkit-scrollbar,
  .investment-audience-grid::-webkit-scrollbar,
  .investment-control-grid::-webkit-scrollbar,
  .investment-standard-grid::-webkit-scrollbar,
  .investment-document-grid::-webkit-scrollbar,
  .investment-az-steps::-webkit-scrollbar,
  .investment-process::-webkit-scrollbar,
  .architect-signal-row::-webkit-scrollbar,
  .architect-problem-grid::-webkit-scrollbar,
  .architect-showroom-cards::-webkit-scrollbar,
  .architect-benefits::-webkit-scrollbar,
  .architect-flow::-webkit-scrollbar,
  .showroom-benefits::-webkit-scrollbar,
  .showroom-zones::-webkit-scrollbar,
  .steps::-webkit-scrollbar,
  .journey-map::-webkit-scrollbar,
  .visit-info-grid::-webkit-scrollbar,
  .single-install-benefits::-webkit-scrollbar {
    display: none;
  }

  .stats-grid > *,
  .business-paths-grid > *,
  .b2b-signal-row > *,
  .b2b-problem-grid > *,
  .b2b-materials-grid > *,
  .b2b-care-cards > *,
  .b2b-benefits > *,
  .tiles > *,
  .care-grid > *,
  .services-grid > *,
  .teaser-grid > *,
  .financing-points > *,
  .budget-cards > *,
  .design-timeline > *,
  .renovation-benefits > *,
  .delivery-steps > *,
  .contractors-benefits > *,
  .investment-benefits > *,
  .investment-signal-row > *,
  .investment-audience-grid > *,
  .investment-control-grid > *,
  .investment-standard-grid > *,
  .investment-document-grid > *,
  .investment-az-steps > *,
  .investment-process > *,
  .architect-signal-row > *,
  .architect-problem-grid > *,
  .architect-showroom-cards > *,
  .architect-benefits > *,
  .architect-flow > *,
  .showroom-benefits > *,
  .showroom-zones > *,
  .steps > *,
  .journey-map > *,
  .visit-info-grid > *,
  .single-install-benefits > * {
    flex: 0 0 var(--mobile-carousel-card-width);
    width: var(--mobile-carousel-card-width);
    min-width: 0;
    scroll-snap-align: center;
    scroll-snap-stop: always;
  }

  .design-budget-module {
    padding: 22px 0 20px;
    overflow: hidden;
  }

  .design-budget-head {
    margin-bottom: 18px;
    padding: 0 18px;
  }

  .design-budget-head h3 {
    font-size: 1.32rem;
  }

  .design-budget-head p:not(.eyebrow) {
    font-size: 0.94rem;
    line-height: 1.45;
  }

  .budget-cards {
    --mobile-carousel-card-width: min(100%, 292px);
    align-items: flex-start;
    gap: 12px;
    padding: 4px var(--mobile-carousel-side-pad) 14px;
    scroll-padding-inline: var(--mobile-carousel-side-pad);
  }

  .budget-cards > * {
    flex-basis: var(--mobile-carousel-card-width);
    width: var(--mobile-carousel-card-width);
  }

  .mobile-loop-carousel-shell {
    position: relative;
    display: block;
    width: 100%;
    max-width: 100%;
    min-width: 0;
  }

  .mobile-carousel-controls {
    position: absolute;
    top: 50%;
    right: 4px;
    left: 4px;
    z-index: 4;
    display: flex;
    justify-content: space-between;
    gap: 10px;
    pointer-events: none;
    transform: translateY(-50%);
  }

  .mobile-carousel-button {
    display: inline-grid;
    place-items: center;
    width: 24px;
    height: 24px;
    color: rgba(0, 39, 105, 0.68);
    background: rgba(255, 255, 255, 0.7);
    border: 1px solid rgba(14, 165, 233, 0.22);
    border-radius: 999px;
    box-shadow: 0 8px 20px rgba(0, 20, 54, 0.12);
    cursor: pointer;
    opacity: 0.66;
    pointer-events: auto;
    touch-action: manipulation;
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    transition: opacity 180ms ease, background 180ms ease, transform 180ms ease;
  }

  .mobile-carousel-button--prev {
    transform: translateX(-10px);
  }

  .mobile-carousel-button--next {
    transform: translateX(10px);
  }

  .mobile-carousel-button:hover,
  .mobile-carousel-button:focus-visible {
    opacity: 0.98;
    background: rgba(255, 255, 255, 0.92);
    border-color: rgba(14, 165, 233, 0.34);
  }

  .mobile-carousel-button--prev:active {
    transform: translateX(-10px) scale(0.94);
  }

  .mobile-carousel-button--next:active {
    transform: translateX(10px) scale(0.94);
  }

  .mobile-carousel-button svg {
    width: 13px;
    height: 13px;
    stroke-width: 2.65;
  }

  .mobile-loop-carousel-shell--budget .mobile-carousel-controls {
    right: 4px;
    left: 4px;
  }

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

  .investment-proof-strip {
    align-items: flex-start;
    flex-direction: column;
  }

  .contractors-proof-strip {
    align-items: flex-start;
    flex-direction: column;
  }

  .contractors-proof-strip div {
    justify-content: flex-start;
  }

  .investment-proof-strip div {
    justify-content: flex-start;
  }

  .calculator-step {
    padding: 16px;
  }

  .calculator-config-status > div {
    align-items: flex-start;
    flex-direction: column;
  }

  .calculator-config-status ul,
  .calculator-education ul {
    grid-template-columns: 1fr;
  }

  .calculator-mini-trust {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 9px;
  }

  .calculator-mini-trust span {
    min-height: 58px;
    padding: 10px;
    font-size: 0.74rem;
  }

  .calculator-mini-trust svg {
    width: 21px;
    height: 21px;
  }

  .calculator-education li {
    align-items: flex-start;
    min-height: auto;
    padding: 8px 0;
  }

  .financing-estimator.is-open {
    max-height: 1800px;
  }

  .financing-estimator__head {
    flex-direction: column;
  }

  .financing-estimator__badge {
    width: fit-content;
  }

  .finance-trust-line {
    align-items: flex-start;
    flex-direction: column;
  }

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

  .finance-scenario-grid {
    grid-template-columns: 1fr;
  }

  .financing-result strong {
    white-space: normal;
  }

  .showroom-actions,
  .showroom-actions .button,
  .showroom-teaser__actions,
  .showroom-teaser__actions .button,
  .budget-note,
  .financing-actions,
  .financing-actions .button,
  .renovation-actions,
  .renovation-actions .button,
  .delivery-actions,
  .delivery-actions .button,
  .design-process-note .button {
    width: 100%;
  }

  .financing-points article {
    min-height: auto;
  }

  .budget-card,
  .budget-card--featured {
    justify-content: flex-start;
    min-height: 302px;
    padding: 22px 20px;
  }

  .budget-card--featured,
  .budget-card--featured:hover {
    transform: none;
  }

  .budget-card--featured {
    min-height: 324px;
  }

  .budget-badge {
    margin-bottom: 14px;
    padding: 7px 10px;
    font-size: 0.7rem;
  }

  .budget-card h4 {
    margin-bottom: 8px;
    font-size: 1.02rem;
  }

  .budget-card strong {
    margin-bottom: 10px;
    font-size: 1.2rem;
  }

  .budget-card--featured strong {
    font-size: 1.32rem;
  }

  .budget-card p {
    font-size: 0.9rem;
    line-height: 1.4;
  }

  .budget-card small {
    margin-top: 10px;
    font-size: 0.78rem;
  }

  .budget-differences {
    gap: 7px;
    margin-top: 14px;
  }

  .budget-differences li {
    font-size: 0.73rem;
    line-height: 1.28;
  }

  .budget-proof,
  .budget-note {
    padding: 0 18px;
  }

  .budget-proof {
    margin-top: 18px;
    font-size: 0.88rem;
    line-height: 1.48;
  }

  .budget-note p {
    font-size: 0.78rem;
    line-height: 1.45;
  }

  .design-timeline article {
    min-height: auto;
  }

  .renovation-benefits article {
    min-height: auto;
  }

  .renovation-logistics {
    align-items: flex-start;
  }

  .renovation-showroom-badge {
    width: 100%;
    align-items: flex-start;
    border-radius: 14px;
  }

  .renovation-mini-process {
    flex-direction: column;
    align-items: stretch;
  }

  .renovation-process-step {
    justify-content: flex-start;
    width: 100%;
  }

  .renovation-process-arrow {
    align-self: center;
    transform: rotate(90deg);
  }

  .delivery-steps article {
    min-height: auto;
  }

  .delivery-note {
    align-items: flex-start;
  }

  .design-process-note {
    align-items: flex-start;
    flex-direction: column;
  }

  .showroom-photo-main,
  .showroom-photo-main img,
  .teaser-feature,
  .teaser-feature img,
  .showroom-gallery__large img,
  .showroom-gallery img {
    min-height: 300px;
  }

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

  .teaser-feature {
    height: 360px;
  }

  .teaser-card,
  .teaser-card img {
    height: 240px;
    min-height: 0;
  }

  .teaser-real-note {
    align-items: flex-start;
    width: 100%;
    margin-right: 0;
    margin-left: 0;
  }

  .showroom-note {
    align-items: flex-start;
  }

  .showroom-mini-stats,
  .showroom-mini-gallery {
    grid-template-columns: 1fr;
  }

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

  .journey-result div {
    align-items: flex-start;
  }

  .calculator-table-head {
    display: none;
  }

  .calculator-table-wrap {
    margin-top: 0;
    background: transparent;
    border: 0;
    box-shadow: none;
  }

  .calculator-details-summary {
    align-items: flex-start;
    flex-direction: column;
  }

  .details-meta {
    width: 100%;
    justify-content: space-between;
  }

  .calculator-details[open] .calculator-details-summary {
    border-radius: var(--radius);
    border-bottom-color: var(--line);
    margin-bottom: 12px;
  }

  .calculator-table {
    display: grid;
    gap: 12px;
  }

  .calculator-row {
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 18px;
    background: white !important;
    border: 1px solid var(--line);
    border-radius: var(--radius);
  }

  .work-total {
    text-align: left;
  }

  .brand-carousel {
    margin-right: -12px;
    margin-left: -12px;
    mask-image: linear-gradient(90deg, transparent 0, #000 12%, #000 88%, transparent 100%);
  }

  .brand-logo-card {
    width: 180px;
    height: 104px;
    padding: 18px;
  }

  .section {
    padding: 54px 0;
  }

  .panel,
  .tile,
  .service,
  .steps article {
    padding: 20px;
  }

  .care-card {
    min-height: 0;
    padding: 20px;
  }

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

  .design-timeline::before {
    display: none;
  }

  .gallery-grid figure,
  .gallery-grid img {
    min-height: 300px;
  }

  .footer-nav {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px 16px;
    width: 100%;
  }

  .footer-socials {
    flex-wrap: wrap;
  }

  .b2b-client-care {
    padding: 20px 14px;
  }

  .b2b-care-flow {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .b2b-care-flow span {
    min-height: auto;
  }
}
