/*
Theme Name: Cabinova
Theme URI: https://www.cabinovas.com/
Author: Cabinova (Quantum Modular Home)
Description: Cabinova marketing site (modular cabins for campgrounds) delivered as a WordPress theme. Wraps the client-rendered app with server-side per-route SEO, JSON-LD, a wp_mail contact/reservation endpoint, and auto-created pages.
Version: 1.0.0
Requires at least: 5.8
Tested up to: 6.7
Requires PHP: 7.4
License: GNU General Public License v2 or later
Text Domain: cabinova
*/

:root {
  --color-bg: #f7f5f0;
  --color-text: #202124;
  --color-muted: #5f666b;
  --color-silver: #d9dde2;
  --color-teal: #00a7a7;
  --color-teal-hover: #008f8f;
  --color-slate: #263238;
  --color-sage: #a8b9a3;
  --color-white: #ffffff;
  --shadow-soft: 0 20px 55px rgba(32, 33, 36, 0.12);
  --container: min(1180px, calc(100vw - 40px));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 106.25%;
}

body {
  margin: 0;
  background: var(--color-bg);
  color: var(--color-text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  letter-spacing: 0;
}

body,
button,
input,
select,
textarea {
  font: inherit;
}

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

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

p {
  color: var(--color-muted);
  line-height: 1.65;
}

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

h1,
h2,
h3 {
  line-height: 1.04;
  letter-spacing: 0;
}

main {
  min-height: 70vh;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: var(--container);
  min-height: 58px;
  margin: 10px auto 0;
  padding: 7px 8px 7px 14px;
  border: 1px solid rgba(255, 255, 255, 0.58);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.66);
  backdrop-filter: blur(18px);
  isolation: isolate;
  transition: border-color 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.site-header.is-scrolled {
  background: rgba(255, 255, 255, 0.8);
  border-color: rgba(217, 221, 226, 0.72);
  box-shadow: 0 10px 26px rgba(32, 33, 36, 0.07);
}

.brand {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
}

.brand img {
  width: auto;
  height: 36px;
  object-fit: contain;
}

.main-nav {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 3px;
}

.main-nav a,
.nav-products summary {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 0 10px;
  border-radius: 12px;
  color: #2e3438;
  font-family: "Manrope", "Avenir Next", "Helvetica Neue", Arial, sans-serif;
  font-size: 14px;
  font-weight: 600;
  white-space: nowrap;
}

.main-nav a:hover,
.main-nav a.active,
.nav-products summary:hover,
.nav-products.active summary,
.nav-products[open] summary {
  background: rgba(217, 221, 226, 0.55);
}

.main-nav .nav-cta {
  min-height: 38px;
  margin-left: 3px;
  padding: 0 14px;
  background: var(--color-teal);
  color: var(--color-white);
  font-weight: 720;
}

.main-nav .nav-cta:hover {
  background: var(--color-teal-hover);
}

.main-nav .nav-secondary-mobile {
  display: none;
}

.nav-products {
  position: relative;
  z-index: 3;
  overflow: visible;
}

.nav-products summary {
  gap: 5px;
  list-style: none;
  cursor: pointer;
}

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

.nav-products summary svg {
  width: 14px;
  height: 14px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
  transition: transform 160ms ease;
}

.nav-products[open] summary svg,
.nav-products:hover summary svg {
  transform: rotate(180deg);
}

.product-menu {
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  z-index: 1001;
  display: grid;
  gap: 4px;
  width: 330px;
  padding: 10px;
  border: 1px solid rgba(217, 221, 226, 0.8);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 22px 52px rgba(32, 33, 36, 0.14);
  backdrop-filter: blur(18px);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-4px);
  pointer-events: none;
  transition: opacity 160ms ease, transform 160ms ease, visibility 160ms ease;
}

.nav-products:hover .product-menu,
.nav-products[open] .product-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}

.product-menu-link {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 12px;
  min-height: 0;
  padding: 11px 12px;
  border-radius: 12px;
}

.main-nav .product-menu-link {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  min-height: 0;
  padding: 11px 12px;
  white-space: normal;
}

.product-menu-link:hover,
.product-menu-link.active {
  background: rgba(0, 167, 167, 0.08);
}

.product-menu-copy {
  display: grid;
  gap: 3px;
}

.product-menu-link strong {
  color: var(--color-text);
  font-size: 0.94rem;
  line-height: 1.18;
}

.product-menu-copy span {
  color: var(--color-muted);
  font-size: 0.78rem;
  font-weight: 500;
  line-height: 1.35;
}

.product-menu-arrow {
  width: 16px;
  height: 16px;
  color: rgba(0, 167, 167, 0.76);
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
  opacity: 0.72;
  transition: transform 160ms ease, opacity 160ms ease;
}

.product-menu-link:hover .product-menu-arrow,
.product-menu-link.active .product-menu-arrow {
  opacity: 1;
  transform: translateX(2px);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid var(--color-silver);
  border-radius: 8px;
  background: var(--color-white);
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: var(--color-text);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 0 18px;
  border: 1px solid transparent;
  border-radius: 8px;
  font-weight: 760;
  line-height: 1;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease, color 180ms ease;
}

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

.btn-primary {
  background: var(--color-teal);
  color: var(--color-white);
  box-shadow: 0 10px 28px rgba(0, 167, 167, 0.28);
}

.btn-primary:hover {
  background: var(--color-teal-hover);
  box-shadow: 0 12px 32px rgba(0, 167, 167, 0.34);
}

.btn-secondary {
  border-color: var(--color-text);
  color: var(--color-text);
}

.btn-secondary:hover {
  background: var(--color-text);
  color: var(--color-white);
}

.btn-secondary-invert {
  border-color: rgba(255, 255, 255, 0.8);
  color: var(--color-white);
}

.btn-secondary-invert:hover {
  background: var(--color-white);
  color: var(--color-text);
}

.btn-light {
  background: var(--color-white);
  color: var(--color-text);
}

.btn-secondary-light {
  border-color: rgba(255, 255, 255, 0.65);
  color: var(--color-white);
}

.btn-secondary-light:hover {
  background: var(--color-white);
  color: var(--color-text);
}

.btn-text {
  min-height: 0;
  justify-content: flex-start;
  padding: 0;
  border: 0;
  color: var(--color-teal);
}

.btn-mark {
  width: 17px;
  height: 17px;
  flex: none;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.home-hero {
  position: relative;
  min-height: 88svh;
  overflow: hidden;
  background: var(--color-slate);
}

.hero-media,
.hero-slide,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-slide {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  filter: brightness(1.1) saturate(1.04);
  transition: opacity 900ms ease;
}

.hero-slide.is-active {
  opacity: 1;
}

.hero-overlay {
  background: rgba(32, 33, 36, 0.22);
}

.hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: end;
  width: var(--container);
  min-height: 88svh;
  margin: 0 auto;
  padding: 124px 0 56px;
}

.hero-panel {
  width: min(46vw, 620px);
  max-width: 620px;
  padding: 42px 44px;
  border: 1px solid rgba(255, 255, 255, 0.58);
  border-radius: 24px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.72), rgba(255, 255, 255, 0.54));
  -webkit-backdrop-filter: blur(22px) saturate(135%);
  backdrop-filter: blur(22px) saturate(135%);
  box-shadow: 0 18px 46px rgba(32, 33, 36, 0.11);
  font-family: "Manrope", "Avenir Next", "Helvetica Neue", Arial, sans-serif;
}

.subpage-hero h1,
.calculator-heading h1,
.consultation-intro h1,
.reservation-intro h1,
.legal-page h1 {
  margin-bottom: 18px;
  font-size: clamp(2.35rem, 5vw, 4.8rem);
}

.hero-panel h1 {
  margin-bottom: 16px;
  font-family: "Manrope", "Avenir Next", "Helvetica Neue", Arial, sans-serif;
  font-size: clamp(2rem, 3.45vw, 3.9rem);
  font-weight: 750;
  line-height: 1.01;
}

.hero-panel p {
  width: 100%;
  margin-bottom: 24px;
  color: rgba(32, 33, 36, 0.82);
  font-size: clamp(1rem, 1.2vw, 1.12rem);
  line-height: 1.55;
}

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

.section,
.subpage-hero,
.calculator-page,
.consultation-page,
.reservation-page,
.legal-page {
  width: var(--container);
  margin: 0 auto;
}

.section {
  padding: 92px 0;
}

.section-heading {
  width: min(760px, 100%);
  margin-bottom: 34px;
}

.section-heading h2,
.split-section h2,
.cta-band h2,
.faq-strip h2,
.revenue-band h2 {
  margin-bottom: 16px;
  font-family: "Manrope", Inter, "Avenir Next", "Helvetica Neue", Arial, sans-serif;
  font-weight: 760;
  font-size: clamp(2rem, 4.4vw, 3.8rem);
  letter-spacing: -0.035em;
}

.eyebrow,
.card-kicker {
  margin-bottom: 12px;
  color: var(--color-teal);
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0;
  text-transform: uppercase;
}

.problem-section {
  display: grid;
  grid-template-columns: minmax(0, 0.38fr) minmax(0, 0.62fr);
  gap: 26px;
  align-items: start;
  width: min(1220px, calc(100vw - 40px));
  padding-top: 60px;
  padding-bottom: 60px;
}

.problem-section .eyebrow {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.problem-copy {
  display: grid;
  gap: 20px;
}

.problem-copy h2 {
  margin-bottom: 0;
  font-family: "Manrope", "Avenir Next", "Helvetica Neue", Arial, sans-serif;
  font-size: clamp(1.85rem, 3vw, 3.05rem);
  font-weight: 760;
  line-height: 1.06;
  letter-spacing: -0.04em;
}

.problem-copy p {
  margin-bottom: 0;
  font-size: 1.04rem;
  line-height: 1.72;
}

.problem-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 10px;
}

.problem-actions .btn {
  min-height: 44px;
  padding-inline: 16px;
}

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

.comparison-cards-wrap {
  display: grid;
  justify-items: center;
  gap: 12px;
}

.comparison-card {
  width: 100%;
  max-width: 720px;
  overflow: hidden;
  border: 1px solid var(--color-silver);
  border-radius: 24px;
  background: var(--color-white);
  box-shadow: 0 18px 45px rgba(32, 33, 36, 0.1);
}

.comparison-card figure {
  position: relative;
  margin: 0;
  overflow: hidden;
  aspect-ratio: 16 / 7;
}

.comparison-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.comparison-card-before img {
  object-position: 42% center;
  filter: saturate(0.88) contrast(0.96) brightness(0.98);
}

.comparison-card-before figure::after {
  position: absolute;
  inset: 0;
  content: "";
  background: rgba(38, 50, 56, 0.08);
  pointer-events: none;
}

.comparison-card-after img {
  filter: brightness(1.05) contrast(1.04) saturate(1.03);
}

.comparison-card figcaption {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 1;
  max-width: calc(100% - 28px);
  display: grid;
  gap: 2px;
  padding: 8px 12px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.78);
  color: var(--color-text);
  font-size: 0.81rem;
  font-weight: 700;
  line-height: 1.2;
  backdrop-filter: blur(12px);
}

.comparison-card figcaption strong {
  font-size: 0.8rem;
  text-transform: uppercase;
}

.comparison-card figcaption span {
  font-size: 0.82rem;
  font-weight: 720;
}

.comparison-card p {
  margin: 0;
  padding: 16px 18px 18px;
  color: var(--color-muted);
  font-size: 0.94rem;
  line-height: 1.55;
}

.comparison-arrow {
  z-index: 3;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 42px;
  padding: 0 16px;
  border: 1px solid rgba(255, 255, 255, 0.75);
  border-radius: 999px;
  background: var(--color-teal);
  color: var(--color-white);
  box-shadow: 0 14px 34px rgba(0, 167, 167, 0.32);
  font-size: 0.84rem;
  font-weight: 780;
  transform: translateY(0);
}

.comparison-arrow svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2.2;
}

.comparison-note {
  width: 100%;
  max-width: 720px;
  margin: 0 auto;
  padding: 14px 18px;
  border: 1px solid var(--color-silver);
  border-left: 3px solid var(--color-teal);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.72);
  color: rgba(38, 50, 56, 0.78);
  font-size: 0.95rem;
  line-height: 1.5;
}

.pain-card-grid {
  display: grid;
  gap: 12px;
  margin-top: 4px;
}

.pain-card {
  position: relative;
  min-height: 0;
  padding: 18px 22px 18px 48px;
  border: 1px solid var(--color-silver);
  border-radius: 18px;
  background: var(--color-white);
  box-shadow: 0 12px 34px rgba(32, 33, 36, 0.06);
}

.pain-card span {
  position: absolute;
  top: 24px;
  left: 22px;
  display: block;
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: var(--color-teal);
  box-shadow: 0 0 0 7px rgba(0, 167, 167, 0.1);
}

.pain-card h3 {
  margin-bottom: 6px;
  font-size: 1.03rem;
}

.pain-card p {
  margin: 0;
  color: var(--color-muted);
  font-size: 0.9rem;
  line-height: 1.53;
}

.solution-section {
  display: grid;
  gap: 24px;
  align-items: stretch;
  width: min(1240px, calc(100vw - 40px));
  padding-top: 76px;
  padding-bottom: 76px;
}

.solution-top {
  display: grid;
  grid-template-columns: minmax(0, 0.38fr) minmax(0, 0.62fr);
  gap: 38px;
  align-items: center;
}

.solution-section .eyebrow {
  margin: 0;
  color: var(--color-teal);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.solution-copy {
  display: grid;
  gap: 20px;
}

.solution-copy h2 {
  margin: 0;
  font-family: "Manrope", "Avenir Next", "Helvetica Neue", Arial, sans-serif;
  font-size: clamp(2rem, 3.35vw, 3.35rem);
  font-weight: 760;
  line-height: 1.06;
  letter-spacing: -0.04em;
}

.solution-copy > p:not(.eyebrow) {
  margin: 0;
  font-size: 1.04rem;
  line-height: 1.7;
}

.solution-card-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
  align-items: stretch;
  margin-top: 4px;
}

.solution-card {
  display: grid;
  grid-template-columns: 1fr;
  gap: 9px;
  align-items: start;
  min-height: 132px;
  padding: 16px 18px;
  border: 1px solid var(--color-silver);
  border-radius: 18px;
  background: var(--color-white);
  box-shadow: 0 12px 34px rgba(32, 33, 36, 0.06);
}

.solution-card-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 999px;
  background: rgba(0, 167, 167, 0.1);
  color: var(--color-teal);
  box-shadow: inset 0 0 0 1px rgba(0, 167, 167, 0.18);
}

.solution-card-icon svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.9;
}

.solution-card h3 {
  margin-bottom: 5px;
  font-size: 0.99rem;
}

.solution-card p {
  margin: 0;
  color: var(--color-muted);
  font-size: 0.84rem;
  line-height: 1.45;
}

.solution-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 4px;
}

.solution-actions .btn {
  min-height: 42px;
  padding-inline: 15px;
}

.solution-visual {
  display: grid;
  gap: 14px;
  width: 100%;
}

.solution-hero-image {
  position: relative;
  justify-self: stretch;
  width: 100%;
  max-width: 760px;
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--color-silver);
  border-radius: 24px;
  background: var(--color-white);
  box-shadow: 0 18px 45px rgba(32, 33, 36, 0.1);
}

.solution-hero-image img {
  width: 100%;
  aspect-ratio: 16 / 8.5;
  border-radius: 0;
  object-fit: cover;
  filter: brightness(1.05) contrast(1.03) saturate(1.03);
}

.solution-image-caption {
  position: absolute;
  left: 18px;
  bottom: 18px;
  display: grid;
  gap: 4px;
  max-width: min(320px, calc(100% - 36px));
  padding: 12px 14px;
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.68);
  color: var(--color-text);
  box-shadow: 0 12px 28px rgba(32, 33, 36, 0.12);
  -webkit-backdrop-filter: blur(14px) saturate(130%);
  backdrop-filter: blur(14px) saturate(130%);
}

.solution-image-caption strong {
  font-size: 0.96rem;
  line-height: 1.2;
}

.solution-image-caption span {
  color: rgba(32, 33, 36, 0.72);
  font-size: 0.84rem;
  font-weight: 720;
  line-height: 1.25;
}

.system-section .section-heading {
  width: min(860px, 100%);
}

.system-subheadline {
  margin: 0;
  font-size: 1.06rem;
  line-height: 1.65;
}

.system-section .system-product-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.system-product-card {
  border-radius: 22px;
  box-shadow: 0 18px 46px rgba(32, 33, 36, 0.08);
}

.system-product-card .product-card-image img {
  aspect-ratio: 16 / 9;
}

.system-product-card .product-card-body {
  gap: 8px;
  padding: 18px;
}

.system-product-heading {
  min-height: 56px;
}

.system-product-card .card-kicker {
  margin-bottom: 6px;
  font-size: 0.68rem;
  line-height: 1.22;
}

.system-product-card h3 {
  margin-bottom: 0;
  font-size: clamp(1.34rem, 2vw, 1.62rem);
  letter-spacing: -0.02em;
  line-height: 1.08;
}

.system-product-card .msrp-block {
  gap: 3px;
  padding: 8px 12px;
}

.system-product-card .msrp-block span {
  font-size: 0.72rem;
  letter-spacing: 0.01em;
  text-transform: none;
}

.system-product-card .msrp-block strong {
  font-size: 1.18rem;
}

.system-product-card dl {
  gap: 5px;
}

.system-product-card dl div {
  padding-top: 5px;
}

.system-next-step {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  width: min(940px, 100%);
  margin-top: 18px;
  padding: 16px 18px;
  border: 1px solid var(--color-silver);
  border-left: 3px solid var(--color-teal);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.76);
  box-shadow: 0 14px 34px rgba(32, 33, 36, 0.06);
}

.system-next-step p {
  margin: 0;
  color: var(--color-text);
  font-weight: 760;
}

.system-next-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.system-next-actions .btn-primary {
  min-height: 42px;
  padding: 0 16px;
}

.metric-row,
.product-grid,
.scenario-grid,
.process-grid,
.comparison-cards,
.tech-grid,
.layout-grid {
  display: grid;
  gap: 18px;
}

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

.metric-row article,
.compact-card,
.goal-card,
.step-card,
.layout-card,
.premium-panel {
  min-height: 150px;
  padding: 24px;
  border: 1px solid var(--color-silver);
  border-radius: 8px;
  background: var(--color-white);
}

.metric-row strong {
  display: block;
  margin-bottom: 8px;
  font-size: 1.24rem;
}

.metric-row span,
.compact-card p,
.goal-card p,
.step-card p {
  color: var(--color-muted);
  line-height: 1.6;
}

.split-section {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: 44px;
  align-items: center;
}

.split-section.reverse {
  grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
}

.split-section p {
  font-size: 1.05rem;
}

.check-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-top: 24px;
}

.check-grid span {
  min-height: 48px;
  padding: 14px;
  border: 1px solid rgba(0, 167, 167, 0.18);
  border-radius: 8px;
  background: rgba(0, 167, 167, 0.07);
  font-weight: 720;
}

.image-frame {
  margin: 0;
}

.image-frame img,
.subpage-hero-image img,
.scenario-card img,
.product-card-image img,
.gallery-grid img {
  width: 100%;
  border-radius: 8px;
  object-fit: cover;
}

.image-frame img,
.subpage-hero-image img {
  aspect-ratio: 4 / 3;
  box-shadow: var(--shadow-soft);
}

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

.product-card {
  display: flex;
  min-height: 100%;
  overflow: hidden;
  border: 1px solid var(--color-silver);
  border-radius: 8px;
  background: var(--color-white);
}

.product-card {
  flex-direction: column;
}

.product-card-image img {
  aspect-ratio: 1.14 / 1;
}

.product-card-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  gap: 16px;
  padding: 22px;
}

.product-card .card-kicker {
  margin-bottom: 10px;
  font-size: 0.72rem;
  letter-spacing: 0.04em;
  line-height: 1.35;
}

.product-card h3 {
  margin-bottom: 9px;
  font-size: 1.28rem;
}

.product-card-body > div:first-child > p:not(.card-kicker) {
  margin: 0;
  line-height: 1.55;
}

.msrp-block {
  display: grid;
  gap: 4px;
  padding: 12px 14px;
  border: 1px solid rgba(0, 167, 167, 0.22);
  border-radius: 14px;
  background: rgba(0, 167, 167, 0.07);
}

.msrp-block span {
  color: var(--color-teal);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  line-height: 1.2;
  text-transform: uppercase;
}

.msrp-block strong {
  color: var(--color-text);
  font-size: 1.25rem;
  font-weight: 800;
  line-height: 1.18;
  white-space: nowrap;
}

.product-card dl {
  display: grid;
  gap: 9px;
  margin: 0;
}

.product-card dl div {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding-top: 9px;
  border-top: 1px solid rgba(217, 221, 226, 0.7);
}

.product-card dt {
  color: var(--color-muted);
}

.product-card dd {
  margin: 0;
  font-weight: 760;
  text-align: right;
}

.product-card .btn-text {
  margin-top: auto;
}

.system-disclaimer {
  width: min(940px, 100%);
  margin: 22px 0 0;
  color: var(--color-muted);
  font-size: 0.86rem;
  line-height: 1.55;
}

.product-index-hero,
.product-landing-hero {
  display: grid;
  gap: 42px;
  align-items: center;
  padding-top: 150px;
  padding-bottom: 54px;
}

.product-index-hero {
  grid-template-columns: minmax(0, 0.42fr) minmax(0, 0.58fr);
}

.product-landing-hero {
  grid-template-columns: minmax(0, 0.43fr) minmax(0, 0.57fr);
}

.product-index-hero h1,
.product-landing-hero h1,
.product-section-heading h2,
.product-experience-section h2,
.product-requirements-section h2,
.product-deployment-section h2,
.product-gallery-section h2,
.product-revenue-preview h2,
.product-support-role h2 {
  font-family: "Manrope", Inter, "Avenir Next", "Helvetica Neue", Arial, sans-serif;
  font-weight: 760;
  letter-spacing: -0.038em;
}

.product-index-hero h1,
.product-landing-hero h1 {
  margin-bottom: 18px;
  font-size: clamp(2.4rem, 5.2vw, 5.25rem);
  line-height: 0.98;
}

.product-index-hero p:not(.eyebrow),
.product-hero-copy > p:not(.eyebrow) {
  width: min(650px, 100%);
  margin-bottom: 26px;
  font-size: 1.1rem;
  line-height: 1.65;
}

.product-index-hero figure,
.product-hero-media,
.product-image-frame {
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--color-silver);
  border-radius: 24px;
  background: var(--color-white);
  box-shadow: 0 20px 52px rgba(32, 33, 36, 0.1);
}

.product-index-hero figure img,
.product-hero-media img,
.product-hero-media video,
.product-image-frame img {
  width: 100%;
  height: 100%;
  border-radius: 0;
  object-fit: cover;
}

.product-index-hero figure img {
  aspect-ratio: 16 / 9;
  filter: brightness(1.04) contrast(1.03) saturate(1.02);
}

.product-hero-media img,
.product-hero-media video {
  aspect-ratio: 16 / 10;
}

.product-hero-video video {
  aspect-ratio: 16 / 9;
}

.shared-amenities-hero {
  padding: 118px 20px 58px;
  background: var(--color-cream);
}

.shared-amenities-hero-media {
  position: relative;
  width: min(1440px, 100%);
  margin: 0 auto;
  overflow: hidden;
  border: 1px solid rgba(217, 221, 226, 0.82);
  border-radius: 30px;
  background: var(--color-white);
  box-shadow: 0 28px 80px rgba(32, 33, 36, 0.16);
}

.shared-amenities-hero-media img {
  width: 100%;
  aspect-ratio: 16 / 8.4;
  object-fit: cover;
  filter: brightness(1.04) contrast(1.03) saturate(1.03);
}

.shared-amenities-hero-media::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(32, 33, 36, 0.04), rgba(32, 33, 36, 0.2));
  content: "";
  pointer-events: none;
}

.shared-amenities-hero-bar {
  position: absolute;
  right: 32px;
  bottom: 30px;
  left: 32px;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 22px;
  align-items: center;
  padding: 20px 26px;
  border: 1px solid rgba(255, 255, 255, 0.66);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.76);
  -webkit-backdrop-filter: blur(18px) saturate(130%);
  backdrop-filter: blur(18px) saturate(130%);
  box-shadow: 0 18px 48px rgba(32, 33, 36, 0.14);
}

.shared-amenities-hero-bar h1,
.shared-section-heading h2,
.shared-zone-copy h2,
.shared-planning-cta h2,
.shared-amenities-faq h2 {
  font-family: "Manrope", Inter, "Avenir Next", "Helvetica Neue", Arial, sans-serif;
  font-weight: 760;
  letter-spacing: -0.038em;
}

.shared-amenities-hero-bar h1 {
  margin: 0 0 7px;
  font-size: clamp(2rem, 3.6vw, 3.55rem);
  line-height: 1;
}

.shared-amenities-hero-bar p:not(.eyebrow) {
  width: min(660px, 100%);
  margin: 0;
  color: rgba(32, 33, 36, 0.78);
  font-size: 0.98rem;
  line-height: 1.45;
}

.shared-amenities-hero-bar .hero-actions {
  min-width: 310px;
  justify-content: flex-end;
}

.shared-section-heading {
  width: min(850px, 100%);
  margin-bottom: 34px;
}

.shared-section-heading h2,
.shared-zone-copy h2 {
  margin: 0;
  font-size: clamp(2rem, 3.8vw, 3.35rem);
  line-height: 1.04;
}

.shared-section-heading p {
  width: min(620px, 100%);
  margin: 14px 0 0;
  color: var(--color-muted);
  font-size: 1rem;
  line-height: 1.62;
}

.shared-amenity-product-section {
  padding-top: 64px;
}

.shared-amenity-card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.shared-amenity-card {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  overflow: hidden;
  border: 1px solid var(--color-silver);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 20px 54px rgba(32, 33, 36, 0.09);
}

.shared-amenity-card figure {
  margin: 0;
  overflow: hidden;
  border-bottom: 1px solid var(--color-silver);
}

.shared-amenity-card img {
  width: 100%;
  aspect-ratio: 16 / 9.15;
  object-fit: cover;
  transition: transform 220ms ease;
}

.shared-amenity-card:hover img {
  transform: scale(1.018);
}

.shared-amenity-card > div {
  display: flex;
  flex: 1;
  flex-direction: column;
  gap: 11px;
  padding: 22px;
}

.shared-amenity-card span {
  color: var(--color-teal);
  font-size: 0.72rem;
  font-weight: 840;
  letter-spacing: 0.025em;
  text-transform: uppercase;
}

.shared-amenity-card h3 {
  margin: 0;
  font-family: var(--font-sans);
  font-size: clamp(1.45rem, 2vw, 2rem);
  letter-spacing: -0.028em;
  line-height: 1.04;
}

.shared-price-block {
  display: grid;
  gap: 6px;
  padding: 13px 14px;
  border: 1px solid rgba(0, 167, 167, 0.22);
  border-radius: 15px;
  background: rgba(0, 167, 167, 0.07);
}

.shared-price-block small {
  color: var(--color-teal);
  font-size: 0.72rem;
  font-weight: 840;
  letter-spacing: 0.025em;
  text-transform: uppercase;
}

.shared-price-block strong {
  display: grid;
  gap: 2px;
  color: var(--color-text);
  font-size: clamp(1.34rem, 1.9vw, 1.72rem);
  font-weight: 820;
  line-height: 1.12;
}

.shared-amenity-card p {
  margin: 0;
  color: var(--color-muted);
  font-size: 0.9rem;
  line-height: 1.48;
}

.shared-amenity-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: auto;
  color: var(--color-teal);
  font-weight: 800;
}

.shared-amenity-link::after {
  content: "→";
  font-size: 1.1em;
}

.shared-value-section {
  padding-top: 66px;
}

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

.shared-value-grid article {
  display: grid;
  gap: 10px;
  padding: 24px;
  border: 1px solid rgba(217, 221, 226, 0.88);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 16px 40px rgba(32, 33, 36, 0.07);
}

.shared-value-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(0, 167, 167, 0.22);
  border-radius: 999px;
  background: rgba(0, 167, 167, 0.08);
  color: var(--color-teal);
}

.shared-value-icon svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.shared-value-grid h3 {
  margin: 0;
  font-family: var(--font-sans);
  font-size: clamp(1.48rem, 2.15vw, 2rem);
  letter-spacing: -0.018em;
  line-height: 1.02;
}

.shared-value-grid p {
  margin: 0;
  color: var(--color-muted);
  font-size: 0.9rem;
  line-height: 1.5;
}

.shared-zone-experience-section {
  display: grid;
  grid-template-columns: minmax(0, 0.34fr) minmax(0, 0.66fr);
  gap: 34px;
  align-items: center;
  padding-top: 68px;
}

.shared-zone-copy p {
  margin: 18px 0 0;
  color: var(--color-muted);
  font-size: 1.06rem;
  line-height: 1.58;
}

.shared-zone-plan {
  position: relative;
  min-height: 430px;
  overflow: hidden;
  padding: 22px;
  border: 1px solid rgba(217, 221, 226, 0.88);
  border-radius: 26px;
  background:
    radial-gradient(circle at 50% 48%, rgba(0, 167, 167, 0.12), transparent 26%),
    radial-gradient(circle at 18% 18%, rgba(214, 173, 86, 0.16), transparent 30%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.94), rgba(247, 245, 240, 0.82));
  box-shadow: 0 18px 50px rgba(32, 33, 36, 0.08);
}

.shared-zone-plan::before {
  position: absolute;
  inset: 18px;
  border: 1px solid rgba(217, 221, 226, 0.48);
  border-radius: 22px;
  background-image:
    linear-gradient(rgba(32, 33, 36, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(32, 33, 36, 0.035) 1px, transparent 1px);
  background-size: 44px 44px;
  content: "";
}

.shared-plan-path {
  position: relative;
  z-index: 1;
  display: block;
  border-radius: 999px;
  background: rgba(32, 33, 36, 0.12);
}

.shared-plan-path-main,
.shared-plan-path-branch {
  position: absolute;
}

.shared-plan-path-main {
  top: 49%;
  left: 13%;
  width: 74%;
  height: 16px;
  transform: rotate(-7deg);
}

.shared-plan-path-branch {
  width: 12px;
  height: 144px;
  transform-origin: top center;
}

.shared-plan-path-branch-a {
  top: 19%;
  left: 27%;
  transform: rotate(30deg);
}

.shared-plan-path-branch-b {
  top: 28%;
  right: 30%;
  transform: rotate(-25deg);
}

.shared-plan-path-branch-c {
  top: 49%;
  left: 54%;
  height: 128px;
  transform: rotate(18deg);
}

.shared-plan-cabin,
.shared-plan-amenity,
.shared-plan-fire {
  position: absolute;
  z-index: 2;
  box-shadow: 0 12px 28px rgba(32, 33, 36, 0.1);
}

.shared-plan-cabin {
  display: grid;
  place-items: center;
  width: 84px;
  height: 48px;
  border: 1px solid rgba(32, 33, 36, 0.16);
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(229, 218, 200, 0.92));
  color: var(--color-text);
  font-size: 0.78rem;
  font-weight: 840;
  letter-spacing: 0.03em;
}

.shared-plan-cabin::before {
  position: absolute;
  top: 7px;
  right: 9px;
  left: 9px;
  height: 6px;
  border-radius: 999px;
  background: rgba(0, 167, 167, 0.24);
  content: "";
}

.cabin-a {
  top: 16%;
  left: 16%;
  transform: rotate(-7deg);
}

.cabin-b {
  top: 16%;
  left: 37%;
  transform: rotate(6deg);
}

.cabin-c {
  top: 18%;
  right: 20%;
  transform: rotate(-5deg);
}

.cabin-d {
  bottom: 22%;
  left: 20%;
  transform: rotate(6deg);
}

.cabin-e {
  right: 34%;
  bottom: 17%;
  transform: rotate(-7deg);
}

.cabin-f {
  right: 15%;
  bottom: 23%;
  transform: rotate(5deg);
}

.shared-plan-amenity,
.shared-plan-fire {
  display: grid;
  gap: 2px;
  min-width: 132px;
  padding: 10px 12px;
  border: 1px solid rgba(255, 255, 255, 0.68);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.74);
  -webkit-backdrop-filter: blur(12px) saturate(126%);
  backdrop-filter: blur(12px) saturate(126%);
  color: var(--color-text);
  font-size: 0.82rem;
  line-height: 1.1;
}

.shared-plan-amenity::before,
.shared-plan-fire::before {
  width: 9px;
  height: 9px;
  margin-bottom: 3px;
  border-radius: 999px;
  background: var(--color-teal);
  content: "";
}

.shared-plan-amenity strong,
.shared-plan-fire strong {
  font-weight: 840;
}

.shared-plan-fire small {
  color: var(--color-muted);
  font-size: 0.73rem;
}

.amenity-washroom {
  top: 39%;
  left: 10%;
}

.amenity-shower {
  top: 38%;
  right: 10%;
}

.amenity-kitchen {
  top: 57%;
  left: 41%;
}

.shared-plan-fire {
  right: 13%;
  bottom: 9%;
}

.shared-planning-cta {
  display: grid;
  grid-template-columns: minmax(0, 0.6fr) auto;
  gap: 42px;
  align-items: center;
  width: min(1260px, calc(100vw - 40px));
  margin-top: 78px;
  padding: 42px 48px;
  border-radius: 26px;
  background:
    radial-gradient(circle at 84% 16%, rgba(0, 167, 167, 0.24), transparent 30%),
    linear-gradient(135deg, #263238, #20282e);
  color: var(--color-white);
  box-shadow: 0 26px 74px rgba(32, 33, 36, 0.22);
}

.shared-planning-cta .eyebrow {
  color: var(--color-teal);
}

.shared-planning-cta h2 {
  margin: 0 0 12px;
  color: var(--color-white);
  font-size: clamp(2rem, 4.2vw, 3.7rem);
  line-height: 1;
}

.shared-planning-cta p {
  width: min(720px, 100%);
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.05rem;
  line-height: 1.58;
}

.shared-planning-cta small {
  display: block;
  margin-top: 16px;
  color: rgba(255, 255, 255, 0.66);
  font-size: 0.9rem;
  line-height: 1.45;
}

.shared-planning-cta .cta-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 12px;
}

.shared-amenities-faq {
  margin-top: 18px;
}

.product-spec-bar {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  padding-top: 0;
  padding-bottom: 38px;
}

.product-spec-bar article {
  display: grid;
  gap: 8px;
  min-height: 112px;
  padding: 17px 18px;
  border: 1px solid var(--color-silver);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 12px 32px rgba(32, 33, 36, 0.06);
}

.product-spec-bar span,
.product-revenue-card span,
.product-support-role aside span,
.upgrade-path-card span {
  color: var(--color-teal);
  font-size: 0.74rem;
  font-weight: 840;
  letter-spacing: 0.02em;
  line-height: 1.25;
  text-transform: uppercase;
}

.product-spec-bar strong {
  color: var(--color-text);
  font-size: clamp(1.03rem, 1.6vw, 1.38rem);
  font-weight: 820;
  line-height: 1.18;
}

.product-path-section {
  padding-top: 54px;
}

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

.upgrade-path-card a {
  display: grid;
  grid-template-columns: minmax(0, 0.55fr) minmax(0, 0.45fr);
  min-height: 292px;
  overflow: hidden;
  border: 1px solid var(--color-silver);
  border-radius: 24px;
  background: var(--color-white);
  box-shadow: 0 18px 46px rgba(32, 33, 36, 0.08);
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.upgrade-path-card a:hover {
  border-color: rgba(0, 167, 167, 0.34);
  box-shadow: 0 22px 54px rgba(32, 33, 36, 0.12);
  transform: translateY(-2px);
}

.upgrade-path-card img {
  width: 100%;
  height: 100%;
  min-height: 292px;
  border-radius: 0;
  object-fit: cover;
}

.upgrade-path-card div {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 10px;
  padding: 24px;
}

.upgrade-path-card h3 {
  margin: 0;
  font-size: clamp(1.42rem, 2.3vw, 2.05rem);
  letter-spacing: -0.025em;
}

.upgrade-path-card p {
  margin: 0;
  line-height: 1.55;
}

.product-section-heading {
  width: min(900px, 100%);
  margin-bottom: 24px;
}

.product-section-heading h2,
.product-experience-section h2,
.product-requirements-section h2,
.product-deployment-section h2,
.product-gallery-section h2 {
  margin-bottom: 14px;
  font-size: clamp(2rem, 4vw, 3.45rem);
  line-height: 1.02;
}

.product-section-heading p,
.product-experience-section p,
.product-requirements-section p,
.product-deployment-section p {
  width: min(760px, 100%);
  margin-bottom: 0;
  font-size: 1.04rem;
}

.product-use-section {
  padding-top: 54px;
}

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

.product-proof-card {
  display: grid;
  gap: 10px;
  min-height: 188px;
  padding: 22px;
  border: 1px solid var(--color-silver);
  border-radius: 20px;
  background: var(--color-white);
  box-shadow: 0 14px 34px rgba(32, 33, 36, 0.06);
}

.product-proof-card > span {
  width: 34px;
  height: 34px;
  border: 1px solid rgba(0, 167, 167, 0.22);
  border-radius: 999px;
  background: radial-gradient(circle at 35% 35%, rgba(0, 167, 167, 0.28), rgba(0, 167, 167, 0.08));
}

.product-proof-card h3 {
  margin-bottom: 0;
  font-size: 1.14rem;
}

.product-proof-card p {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.55;
}

.product-experience-section,
.product-zone-section,
.product-requirements-section {
  display: grid;
  grid-template-columns: minmax(0, 0.42fr) minmax(0, 0.58fr);
  gap: 36px;
  align-items: center;
}

.product-experience-section .product-image-frame img,
.product-zone-section .product-image-frame img {
  aspect-ratio: 16 / 9;
}

.product-chip-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.product-chip-grid span {
  padding: 10px 12px;
  border: 1px solid rgba(0, 167, 167, 0.18);
  border-radius: 999px;
  background: rgba(0, 167, 167, 0.07);
  color: var(--color-text);
  font-size: 0.88rem;
  font-weight: 740;
}

.product-revenue-preview,
.product-support-role {
  display: grid;
  grid-template-columns: minmax(0, 0.44fr) minmax(0, 0.56fr);
  gap: 30px;
  align-items: center;
  width: min(1260px, calc(100vw - 40px));
  padding: 44px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 26px;
  background:
    radial-gradient(circle at 82% 18%, rgba(0, 167, 167, 0.22), transparent 32%),
    linear-gradient(135deg, #263238, #20282e);
  color: var(--color-white);
  box-shadow: 0 24px 64px rgba(32, 33, 36, 0.18);
}

.product-revenue-preview .eyebrow,
.product-support-role .eyebrow {
  color: var(--color-teal);
}

.product-revenue-preview h2 {
  margin: 0 0 10px;
  color: var(--color-white);
  font-size: clamp(3.2rem, 7vw, 6.2rem);
  line-height: 0.96;
}

.product-support-role h2 {
  margin: 0 0 14px;
  color: var(--color-white);
  font-size: clamp(2rem, 4vw, 3.35rem);
}

.product-revenue-preview p,
.product-support-role p {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
}

.product-revenue-preview > *,
.product-support-role > *,
.product-revenue-card > *,
.product-support-role aside > * {
  min-width: 0;
}

.product-revenue-card,
.product-support-role aside {
  display: grid;
  gap: 14px;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.075);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.product-revenue-card strong {
  color: var(--color-white);
  font-size: clamp(1.4rem, 3vw, 2.35rem);
  line-height: 1.12;
  overflow-wrap: break-word;
}

.product-revenue-card .btn {
  justify-self: start;
  margin-top: 4px;
}

.product-zone-section {
  padding: 36px;
  border: 1px solid var(--color-silver);
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 18px 48px rgba(32, 33, 36, 0.07);
}

.product-zone-section .btn {
  margin-top: 22px;
}

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

.product-gallery-grid img {
  width: 100%;
  aspect-ratio: 16 / 11;
  border: 1px solid var(--color-silver);
  border-radius: 22px;
  object-fit: cover;
  box-shadow: 0 14px 36px rgba(32, 33, 36, 0.07);
}

.product-gallery-grid img:first-child {
  grid-column: span 2;
  aspect-ratio: 16 / 8.6;
}

.product-requirements-section {
  align-items: start;
}

.product-requirements-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.product-requirements-list span {
  display: flex;
  min-height: 74px;
  align-items: center;
  padding: 16px 18px;
  border: 1px solid rgba(217, 221, 226, 0.9);
  border-left: 3px solid var(--color-teal);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.82);
  color: var(--color-text);
  font-weight: 720;
  line-height: 1.4;
  box-shadow: 0 12px 30px rgba(32, 33, 36, 0.045);
}

.product-deployment-steps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.product-deployment-steps article {
  display: grid;
  gap: 12px;
  min-height: 126px;
  padding: 18px;
  border: 1px solid var(--color-silver);
  border-radius: 18px;
  background: var(--color-white);
  box-shadow: 0 12px 32px rgba(32, 33, 36, 0.055);
}

.product-deployment-steps span {
  color: var(--color-teal);
  font-size: 0.82rem;
  font-weight: 850;
}

.product-deployment-steps strong {
  color: var(--color-text);
  font-size: 1.05rem;
  line-height: 1.3;
}

.product-faq-section {
  width: min(1180px, calc(100vw - 40px));
}

.product-faq-section .faq-intro h2 {
  font-size: clamp(1.7rem, 3vw, 2.7rem);
}

.product-disclaimer {
  margin: 24px 0 0;
  color: var(--color-muted);
  font-size: 0.88rem;
  line-height: 1.58;
}

.product-disclaimer.section {
  width: min(980px, calc(100vw - 40px));
  margin: 0 auto;
  padding: 0 0 56px;
}

.cabin158-hero {
  width: min(1320px, calc(100vw - 40px));
  margin: 0 auto;
  padding: 112px 0 0;
}

.cabin158-video-shell {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(217, 221, 226, 0.72);
  border-radius: 28px;
  background: var(--color-slate);
  box-shadow: 0 26px 72px rgba(32, 33, 36, 0.16);
  aspect-ratio: 16 / 9;
}

.cabin158-video-shell video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cabin158-video-shell::after {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(32, 33, 36, 0.1), transparent 48%),
    linear-gradient(0deg, rgba(32, 33, 36, 0.14), transparent 44%);
  content: "";
  pointer-events: none;
}

.cabin158-hero-panel {
  z-index: 2;
  padding: 16px 24px;
}

.cabin158-hero-panel h1,
.cabin158-owned-section h2,
.cabin158-packages-section h2,
.cabin158-config-section h2,
.cabin158-deployment-section h2,
.cabin158-shared-section h2,
.cabin158-economics-section h2 {
  font-family: "Manrope", Inter, "Avenir Next", "Helvetica Neue", Arial, sans-serif;
  font-weight: 760;
  letter-spacing: -0.038em;
}

.cabin158-decision-section {
  padding-top: 42px;
  padding-bottom: 40px;
}

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

.cabin158-decision-grid article {
  display: grid;
  gap: 8px;
  min-height: 116px;
  padding: 18px;
  border: 1px solid var(--color-silver);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.84);
  box-shadow: 0 12px 32px rgba(32, 33, 36, 0.06);
}

.cabin158-decision-grid span,
.cabin158-package-card > div > span,
.cabin158-economics-card > span,
.cabin158-scenario-grid span {
  color: var(--color-teal);
  font-size: 0.74rem;
  font-weight: 840;
  letter-spacing: 0.02em;
  line-height: 1.25;
  text-transform: uppercase;
}

.cabin158-decision-grid strong {
  color: var(--color-text);
  font-size: clamp(1rem, 1.5vw, 1.26rem);
  font-weight: 820;
  line-height: 1.18;
}

.cabin158-decision-grid small {
  color: var(--color-muted);
  font-size: 0.82rem;
  line-height: 1.35;
}

.cabin158-owned-section {
  display: grid;
  grid-template-columns: minmax(0, 0.42fr) minmax(0, 0.58fr);
  gap: 28px;
  align-items: center;
}

.cabin158-owned-copy h2,
.cabin158-packages-section h2,
.cabin158-config-copy h2,
.cabin158-deployment-section h2,
.cabin158-economics-copy h2 {
  margin-bottom: 14px;
  font-size: clamp(2.1rem, 4.2vw, 3.6rem);
  line-height: 1.02;
}

.cabin158-owned-copy p {
  margin: 0;
  font-size: 1.04rem;
}

.cabin158-owned-visual {
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--color-silver);
  border-radius: 24px;
  background: var(--color-white);
  box-shadow: 0 20px 52px rgba(32, 33, 36, 0.1);
}

.cabin158-owned-visual img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.cabin158-benefit-grid {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.cabin158-benefit-grid article,
.cabin158-scenario-grid article {
  display: grid;
  gap: 10px;
  padding: 20px;
  border: 1px solid var(--color-silver);
  border-radius: 20px;
  background: var(--color-white);
  box-shadow: 0 14px 34px rgba(32, 33, 36, 0.06);
}

.cabin158-benefit-grid article > span {
  width: 34px;
  height: 34px;
  border: 1px solid rgba(0, 167, 167, 0.22);
  border-radius: 999px;
  background: radial-gradient(circle at 35% 35%, rgba(0, 167, 167, 0.28), rgba(0, 167, 167, 0.08));
}

.cabin158-benefit-grid h3,
.cabin158-scenario-grid h3,
.cabin158-package-card h3,
.cabin158-sensitivity-card h3 {
  margin: 0;
  font-family: var(--font-sans);
  letter-spacing: -0.018em;
}

.cabin158-benefit-grid p,
.cabin158-scenario-grid p,
.cabin158-package-card p {
  margin: 0;
  font-size: 0.94rem;
  line-height: 1.5;
}

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

.cabin158-package-card {
  display: grid;
  overflow: hidden;
  border: 1px solid var(--color-silver);
  border-radius: 24px;
  background: var(--color-white);
  box-shadow: 0 18px 48px rgba(32, 33, 36, 0.08);
}

.cabin158-package-card figure {
  margin: 0;
  overflow: hidden;
  border-bottom: 1px solid var(--color-silver);
}

.cabin158-package-card img {
  width: 100%;
  aspect-ratio: 16 / 8.8;
  object-fit: cover;
}

.cabin158-package-card > div {
  display: grid;
  gap: 12px;
  padding: 24px;
}

.cabin158-package-card ul,
.cabin158-product-faq ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.cabin158-package-card li {
  position: relative;
  padding-left: 22px;
  color: var(--color-muted);
  font-size: 0.94rem;
  line-height: 1.42;
}

.cabin158-package-card li::before,
.cabin158-shared-card li::before {
  position: absolute;
  left: 0;
  color: var(--color-teal);
  font-weight: 840;
  content: "✓";
}

.cabin158-package-note {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-top: 18px;
  padding: 16px 18px;
  border: 1px solid rgba(0, 167, 167, 0.2);
  border-left: 3px solid var(--color-teal);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.72);
}

.cabin158-package-note p {
  margin: 0;
  font-size: 0.92rem;
  line-height: 1.5;
}

.cabin158-package-note .btn {
  flex: 0 0 auto;
}

.cabin158-config-section {
  display: grid;
  grid-template-columns: minmax(0, 0.58fr) minmax(0, 0.42fr);
  gap: 34px;
  align-items: start;
}

.cabin158-config-visual {
  position: sticky;
  top: 112px;
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--color-silver);
  border-radius: 24px;
  background: var(--color-white);
  box-shadow: 0 20px 52px rgba(32, 33, 36, 0.1);
}

.cabin158-config-visual img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.cabin158-plan-visual img {
  box-sizing: border-box;
  object-fit: contain;
  padding: 28px 22px;
  background: #fff;
}

.cabin158-plan-actions {
  position: absolute;
  right: 26px;
  bottom: 24px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding: 0;
  pointer-events: none;
}

.cabin158-plan-actions .floorplan-zoom {
  position: static;
  right: auto;
  bottom: auto;
  flex: 0 0 auto;
  min-height: 56px;
  padding: 0 28px;
  border-color: rgba(217, 221, 226, 0.72);
  background: rgba(255, 255, 255, 0.96);
  color: var(--color-text);
  font-size: 1.04rem;
  font-weight: 820;
  letter-spacing: -0.018em;
  box-shadow: 0 18px 42px rgba(32, 33, 36, 0.12);
  pointer-events: auto;
}

.cabin158-plan-actions .floorplan-zoom svg {
  width: 16px;
  height: 16px;
  flex: none;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.9;
}

.cabin158-full-specs {
  margin-top: 14px;
  padding: 16px;
  border: 1px solid rgba(217, 221, 226, 0.9);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.72);
}

.cabin158-full-specs summary {
  cursor: pointer;
  color: var(--color-text);
  font-weight: 820;
}

.cabin158-full-specs ul {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px 14px;
  margin: 14px 0 0;
  padding: 0;
  list-style: none;
}

.cabin158-full-specs li {
  color: var(--color-muted);
  font-size: 0.9rem;
  line-height: 1.45;
}

.cabin158-deployment-section {
  display: grid;
  gap: 20px;
  padding-bottom: 32px;
}

.cabin158-deployment-visual {
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--color-silver);
  border-radius: 26px;
  background: var(--color-white);
  box-shadow: 0 22px 58px rgba(32, 33, 36, 0.1);
}

.cabin158-deployment-visual img {
  width: 100%;
  aspect-ratio: 16 / 7.6;
  object-fit: cover;
  filter: brightness(1.04) contrast(1.03) saturate(1.02);
}

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

.cabin158-shared-section {
  display: grid;
  grid-template-columns: minmax(0, 0.46fr) minmax(0, 0.54fr);
  gap: 28px;
  align-items: center;
}

.cabin158-shared-banner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  padding: 22px 24px;
  border: 1px solid rgba(0, 167, 167, 0.2);
  border-left: 4px solid var(--color-teal);
  border-radius: 22px;
  background:
    radial-gradient(circle at 88% 24%, rgba(0, 167, 167, 0.12), transparent 28%),
    rgba(255, 255, 255, 0.8);
  box-shadow: 0 18px 48px rgba(32, 33, 36, 0.07);
}

.cabin158-shared-banner span {
  display: block;
  margin-bottom: 7px;
  color: var(--color-teal);
  font-size: 0.72rem;
  font-weight: 840;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.cabin158-shared-banner h3 {
  margin: 0 0 6px;
  font-size: clamp(1.35rem, 2.5vw, 2rem);
  letter-spacing: -0.026em;
  line-height: 1.05;
}

.cabin158-shared-banner p {
  max-width: 760px;
  margin: 0;
  color: var(--color-muted);
  font-size: 0.98rem;
  line-height: 1.55;
}

.cabin158-shared-banner .btn {
  flex: 0 0 auto;
}

.cabin158-shared-copy h2 {
  margin-bottom: 14px;
  font-size: clamp(2.1rem, 4.2vw, 3.55rem);
  line-height: 1.02;
}

.cabin158-shared-copy p {
  margin: 0 0 22px;
  color: var(--color-muted);
  font-size: 1.04rem;
  line-height: 1.65;
}

.cabin158-shared-card {
  padding: 28px;
  border: 1px solid rgba(217, 221, 226, 0.88);
  border-radius: 24px;
  background:
    radial-gradient(circle at 86% 16%, rgba(0, 167, 167, 0.13), transparent 34%),
    rgba(255, 255, 255, 0.82);
  box-shadow: 0 18px 48px rgba(32, 33, 36, 0.08);
}

.cabin158-shared-card h3 {
  margin: 0 0 16px;
  font-size: 1.28rem;
  letter-spacing: -0.02em;
}

.cabin158-shared-card ul {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.cabin158-shared-card li {
  position: relative;
  min-height: 54px;
  padding: 12px 12px 12px 34px;
  border: 1px solid rgba(217, 221, 226, 0.8);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.74);
  color: var(--color-text);
  font-size: 0.94rem;
  font-weight: 720;
  line-height: 1.35;
}

.cabin158-shared-card li::before {
  top: 12px;
  left: 13px;
}

.cabin158-economics-section {
  display: grid;
  grid-template-columns: minmax(0, 0.36fr) minmax(0, 0.64fr);
  gap: 28px;
  align-items: center;
}

.cabin158-economics-copy {
  grid-row: auto;
}

.cabin158-economics-copy p {
  margin-bottom: 0;
}

.cabin158-value-strip {
  display: grid;
  gap: 10px;
  margin-top: 24px;
}

.cabin158-value-strip span {
  padding: 12px 14px;
  border: 1px solid rgba(0, 167, 167, 0.2);
  border-left: 3px solid var(--color-teal);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.75);
  color: var(--color-text);
  font-size: 0.92rem;
  font-weight: 760;
}

.cabin158-economics-card,
.cabin158-sensitivity-card {
  padding: 26px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 24px;
  background:
    radial-gradient(circle at 88% 16%, rgba(0, 167, 167, 0.18), transparent 32%),
    linear-gradient(135deg, #263238, #20282e);
  color: var(--color-white);
  box-shadow: 0 24px 64px rgba(32, 33, 36, 0.16);
}

.cabin158-economics-card p,
.cabin158-sensitivity-card p {
  color: rgba(255, 255, 255, 0.76);
}

.cabin158-noi-metrics {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 18px;
}

.cabin158-noi-metrics div {
  padding: 15px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.06);
}

.cabin158-noi-metrics div.is-large {
  background: rgba(0, 167, 167, 0.1);
}

.cabin158-noi-metrics dt,
.cabin158-noi-metrics dd {
  margin: 0;
}

.cabin158-noi-metrics dt {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.74rem;
  font-weight: 820;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.cabin158-noi-metrics dd {
  margin-top: 6px;
  color: var(--color-white);
  font-size: clamp(1.24rem, 2.4vw, 2.35rem);
  font-weight: 820;
  letter-spacing: -0.04em;
  line-height: 1;
}

.cabin158-economics-card dl {
  display: grid;
  gap: 10px;
  margin: 20px 0 0;
}

.cabin158-economics-card dl div {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 10px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.cabin158-economics-card dt,
.cabin158-economics-card dd {
  margin: 0;
}

.cabin158-economics-card dt {
  color: rgba(255, 255, 255, 0.76);
}

.cabin158-economics-card dd {
  color: var(--color-white);
  font-weight: 780;
  text-align: right;
}

.cabin158-economics-note {
  margin: 18px 0 0;
  padding: 12px 14px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-left: 3px solid var(--color-teal);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.07);
  font-size: 0.82rem;
  line-height: 1.5;
}

.cabin158-economics-card .btn {
  width: fit-content;
  margin-top: 16px;
}

.cabin158-sensitivity-card {
  background: #263238;
}

.cabin158-sensitivity-card h3 {
  color: var(--color-white);
  font-size: 1.38rem;
}

.cabin158-sensitivity-card table {
  width: 100%;
  margin: 16px 0;
  border-collapse: collapse;
}

.cabin158-sensitivity-card th,
.cabin158-sensitivity-card td {
  padding: 12px 8px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.92rem;
  line-height: 1.35;
  text-align: left;
  vertical-align: top;
}

.cabin158-sensitivity-card th {
  color: var(--color-teal);
  font-weight: 820;
}

.cabin158-advanced-costs {
  margin-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding-top: 14px;
}

.cabin158-advanced-costs summary {
  cursor: pointer;
  color: var(--color-white);
  font-weight: 780;
}

.cabin158-advanced-costs ul {
  display: grid;
  gap: 8px;
  margin: 12px 0 0;
  padding: 0;
  list-style: none;
}

.cabin158-advanced-costs li {
  position: relative;
  padding-left: 20px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.9rem;
  line-height: 1.45;
}

.cabin158-advanced-costs li::before {
  position: absolute;
  left: 0;
  color: var(--color-teal);
  content: "+";
}

.cabin158-planning-cta {
  margin-top: 48px;
}

.premium-product-hero {
  width: min(1320px, calc(100vw - 40px));
  margin: 0 auto;
  padding: 112px 0 0;
}

.premium-slider {
  position: relative;
  min-height: 560px;
  overflow: hidden;
  border: 1px solid rgba(217, 221, 226, 0.72);
  border-radius: 28px;
  background: var(--color-slate);
  box-shadow: 0 26px 72px rgba(32, 33, 36, 0.16);
  aspect-ratio: 16 / 9;
}

.premium-slider-track,
.premium-slide {
  position: absolute;
  inset: 0;
}

.premium-slide {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transform: scale(1.015);
  transition: opacity 620ms ease, transform 900ms ease;
}

.premium-slide.is-active {
  opacity: 1;
  transform: scale(1);
}

.premium-slider::after {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(32, 33, 36, 0.12), transparent 48%),
    linear-gradient(0deg, rgba(32, 33, 36, 0.16), transparent 42%);
  content: "";
  pointer-events: none;
}

.premium-hero-panel {
  position: absolute;
  right: 42px;
  bottom: 30px;
  left: 42px;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  column-gap: 20px;
  align-items: center;
  min-height: 0;
  padding: 16px 26px;
  border: 1px solid rgba(255, 255, 255, 0.65);
  border-radius: 22px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.82), rgba(255, 255, 255, 0.72));
  box-shadow: 0 18px 44px rgba(32, 33, 36, 0.16);
  -webkit-backdrop-filter: blur(18px) saturate(130%);
  backdrop-filter: blur(18px) saturate(130%);
}

.premium-hero-panel h1,
.premium-config-copy h2,
.premium-trim-section h2,
.premium-product-cta h2 {
  font-family: "Manrope", Inter, "Avenir Next", "Helvetica Neue", Arial, sans-serif;
  font-weight: 760;
  letter-spacing: -0.038em;
}

.premium-hero-panel h1 {
  grid-column: 1;
  margin: 0 0 6px;
  font-size: clamp(34px, 2.65vw, 46px);
  line-height: 0.95;
}

.premium-hero-panel p:not(.eyebrow) {
  grid-column: 1;
  margin: 0;
  color: rgba(32, 33, 36, 0.8);
  font-size: clamp(15px, 1.08vw, 17px);
  line-height: 1.35;
}

.premium-hero-panel .eyebrow {
  grid-column: 1;
  margin-bottom: 5px;
}

.premium-hero-panel .hero-actions {
  grid-column: 2;
  grid-row: 1 / span 3;
  align-self: center;
  justify-content: flex-end;
  min-width: max-content;
}

.premium-hero-panel .btn {
  min-height: 38px;
  padding: 0 13px;
}

.premium-slider-controls {
  position: absolute;
  top: 50%;
  right: 18px;
  left: 18px;
  z-index: 3;
  display: flex;
  justify-content: space-between;
  gap: 8px;
  pointer-events: none;
  transform: translateY(-50%);
}

.premium-slider-controls button,
.premium-slider-dots button,
.floorplan-zoom,
.product-lightbox-close {
  border: 0;
  font: inherit;
  cursor: pointer;
}

.premium-slider-controls button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.62);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.7);
  color: var(--color-text);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  box-shadow: 0 10px 24px rgba(32, 33, 36, 0.14);
  pointer-events: auto;
}

.premium-slider-controls svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2.2;
}

.premium-slider-dots {
  position: absolute;
  bottom: 198px;
  left: 50%;
  z-index: 3;
  display: flex;
  gap: 7px;
  transform: translateX(-50%);
}

.premium-slider-dots button {
  width: 8px;
  height: 8px;
  padding: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.66);
  transition: width 180ms ease, background 180ms ease;
}

.premium-slider-dots button.is-active {
  width: 28px;
  background: var(--color-teal);
}

.premium-decision-section {
  padding-top: 64px;
  padding-bottom: 58px;
}

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

.premium-decision-card {
  display: grid;
  align-content: center;
  gap: 9px;
  min-height: 132px;
  padding: 22px;
  border: 1px solid rgba(217, 221, 226, 0.92);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 16px 40px rgba(32, 33, 36, 0.07);
}

.premium-decision-card.is-prominent {
  border-color: rgba(0, 167, 167, 0.28);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(0, 167, 167, 0.075));
}

.premium-decision-card span {
  font-family: "Manrope", Inter, "Avenir Next", "Helvetica Neue", Arial, sans-serif;
  color: var(--color-teal);
  font-size: 0.76rem;
  font-weight: 840;
  letter-spacing: 0.025em;
  text-transform: uppercase;
}

.premium-decision-card strong {
  font-family: "Manrope", Inter, "Avenir Next", "Helvetica Neue", Arial, sans-serif;
  color: var(--color-text);
  font-size: clamp(1.36rem, 2.3vw, 2.04rem);
  font-weight: 790;
  letter-spacing: -0.02em;
  line-height: 1.08;
}

.premium-product-note {
  max-width: 1040px;
  margin: 18px 0 0;
  color: var(--color-muted);
  font-size: 0.88rem;
  line-height: 1.58;
}

.premium-config-section {
  display: grid;
  grid-template-columns: minmax(0, 0.52fr) minmax(0, 0.48fr);
  gap: 36px;
  align-items: start;
}

.premium-floorplan-card {
  position: sticky;
  top: 104px;
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--color-silver);
  border-radius: 26px;
  background: var(--color-white);
  box-shadow: 0 20px 56px rgba(32, 33, 36, 0.1);
}

.premium-floorplan-card img {
  width: 100%;
  aspect-ratio: 16 / 10.2;
  border-radius: 0;
  object-fit: cover;
}

.floorplan-zoom {
  position: absolute;
  right: 18px;
  bottom: 18px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 42px;
  padding: 0 14px;
  border: 1px solid rgba(255, 255, 255, 0.65);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.74);
  color: var(--color-text);
  font-weight: 760;
  box-shadow: 0 12px 28px rgba(32, 33, 36, 0.12);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
}

.premium-config-copy h2 {
  margin-bottom: 14px;
  font-size: clamp(2rem, 4vw, 3.45rem);
  line-height: 1.02;
}

.premium-config-copy > p:not(.eyebrow) {
  margin-bottom: 22px;
  font-size: 1.04rem;
}

.config-accordion {
  display: grid;
  gap: 10px;
}

.config-accordion details {
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 10px 28px rgba(32, 33, 36, 0.045);
}

.config-accordion summary {
  min-height: 54px;
  padding: 15px 18px;
}

.config-accordion ul {
  margin: 0;
  padding: 0 20px 18px 38px;
  color: var(--color-muted);
  line-height: 1.58;
}

.premium-trim-section {
  padding-top: 72px;
}

.premium-trim-section .section-heading p {
  width: min(760px, 100%);
  margin: 0;
}

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

.trim-card {
  overflow: hidden;
  border: 1px solid var(--color-silver);
  border-radius: 22px;
  background: var(--color-white);
  box-shadow: 0 14px 38px rgba(32, 33, 36, 0.07);
}

.trim-image-wrap {
  position: relative;
  margin: 0;
  overflow: hidden;
}

.trim-image-wrap img {
  width: 100%;
  aspect-ratio: 16 / 10.4;
  border-radius: 0;
  object-fit: cover;
  filter: brightness(1.03) contrast(1.02) saturate(0.98);
}

.trim-card > div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 16px 18px;
}

.trim-card strong {
  color: var(--color-text);
  font-size: 1.02rem;
}

.trim-card div span {
  color: var(--color-muted);
  font-weight: 740;
}

.premium-product-cta {
  display: grid;
  grid-template-columns: minmax(0, 0.52fr) minmax(320px, 0.38fr);
  gap: 10%;
  align-items: center;
  width: min(1260px, calc(100vw - 40px));
  margin: 28px auto 0;
  padding: 72px 80px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 28px;
  background:
    radial-gradient(circle at 86% 18%, rgba(0, 167, 167, 0.22), transparent 34%),
    linear-gradient(135deg, #263238, #20282e);
  color: var(--color-white);
  box-shadow: 0 24px 64px rgba(32, 33, 36, 0.17);
}

.premium-product-cta .eyebrow {
  color: rgba(0, 167, 167, 0.92);
}

.premium-product-cta h2 {
  margin-bottom: 14px;
  color: var(--color-white);
  font-size: clamp(2.625rem, 5vw, 4.5rem);
  line-height: 0.98;
}

.premium-product-cta-body {
  width: min(680px, 100%);
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.02rem;
  line-height: 1.62;
}

.premium-product-review-card {
  display: grid;
  gap: 20px;
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 22px 58px rgba(0, 0, 0, 0.18);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
}

.premium-product-review-card h3 {
  margin: 0;
  color: var(--color-white);
  font-family: var(--font-sans);
  font-size: clamp(1.25rem, 1.8vw, 1.62rem);
  font-weight: 780;
  letter-spacing: -0.02em;
}

.premium-product-review-card ul {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.premium-product-review-card li {
  position: relative;
  padding-left: 28px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.98rem;
  line-height: 1.42;
}

.premium-product-review-card li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--color-teal);
  font-weight: 840;
}

.premium-product-review-card .cta-actions {
  gap: 10px;
  padding-top: 2px;
}

.premium-product-review-card .btn {
  min-height: 46px;
  padding-inline: 16px;
}

.premium-product-qa {
  margin-top: 72px;
}

.product-final-mini-cta {
  padding: 38px 44px;
}

.product-final-mini-cta h2 {
  font-size: clamp(1.8rem, 3.6vw, 3.1rem);
}

.product-lightbox {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: grid;
  place-items: center;
  padding: 28px;
  background: rgba(32, 33, 36, 0.82);
}

.product-lightbox[hidden] {
  display: none;
}

.product-lightbox img {
  max-width: min(1280px, 90vw);
  max-height: 85vh;
  border-radius: 18px;
  object-fit: contain;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.32);
}

.product-lightbox-close {
  position: absolute;
  top: 18px;
  right: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.88);
  color: var(--color-text);
  font-size: 1.5rem;
  line-height: 1;
}

.roi-preview,
.tech-preview,
.faq-strip,
.cta-band,
.revenue-band {
  display: grid;
  align-items: center;
  gap: 32px;
  padding: 54px;
  border-radius: 8px;
}

.roi-preview {
  grid-template-columns: minmax(0, 0.44fr) minmax(0, 0.56fr);
  gap: 38px;
  padding: 46px;
  background: var(--color-white);
  border: 1px solid var(--color-silver);
}

.roi-preview-copy {
  max-width: 520px;
}

.roi-preview-copy h2 {
  margin-bottom: 16px;
}

.roi-preview-copy > p {
  margin-bottom: 22px;
}

.roi-actions {
  display: grid;
  justify-items: start;
  gap: 12px;
}

.roi-helper {
  max-width: 500px;
  margin: 0;
  font-size: 0.92rem;
  line-height: 1.55;
}

.roi-preview-stack {
  display: grid;
  gap: 14px;
}

.roi-impact-card {
  position: relative;
  isolation: isolate;
  display: grid;
  gap: 22px;
  overflow: hidden;
  min-height: 460px;
  padding: clamp(26px, 3.2vw, 38px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 24px;
  background:
    radial-gradient(circle at 85% 8%, rgba(0, 167, 167, 0.34), rgba(0, 167, 167, 0) 34%),
    linear-gradient(145deg, #263238 0%, #1f2a2f 58%, #263238 100%);
  color: var(--color-white);
  box-shadow: 0 28px 70px rgba(38, 50, 56, 0.32);
}

.roi-impact-card::after {
  position: absolute;
  inset: auto -15% -35% 32%;
  z-index: -1;
  height: 240px;
  border-radius: 999px;
  background: rgba(0, 167, 167, 0.14);
  filter: blur(48px);
  content: "";
}

.roi-impact-eyebrow,
.roi-impact-payback span,
.roi-impact-main span {
  color: var(--color-teal);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.roi-impact-main {
  display: grid;
  gap: 8px;
}

.roi-impact-main strong {
  color: var(--color-white);
  font-size: clamp(52px, 5.7vw, 90px);
  font-weight: 850;
  letter-spacing: -0.04em;
  line-height: 0.92;
  white-space: nowrap;
}

.roi-impact-main small {
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.34em;
  font-weight: 780;
  letter-spacing: 0;
}

.roi-impact-main span {
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.95rem;
  letter-spacing: 0.08em;
}

.roi-impact-payback {
  display: grid;
  gap: 6px;
  width: min(390px, 100%);
  padding: 18px 20px;
  border: 1px solid rgba(0, 167, 167, 0.5);
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(0, 167, 167, 0.2), rgba(255, 255, 255, 0.07));
}

.roi-impact-payback span {
  color: var(--color-teal);
}

.roi-impact-payback strong {
  color: var(--color-white);
  font-size: clamp(1.85rem, 3vw, 2.7rem);
  letter-spacing: -0.03em;
  line-height: 1;
}

.roi-impact-payback sup {
  position: relative;
  top: -0.45em;
  font-size: 0.48em;
  line-height: 0;
}

.roi-assumption-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.roi-assumption-chips span {
  padding: 9px 12px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.82rem;
  font-weight: 720;
  line-height: 1.2;
}

.roi-calculation {
  margin: 0;
  padding: 12px 14px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.9rem;
  font-weight: 740;
  line-height: 1.55;
}

.roi-preview-disclaimer {
  margin: 0;
  padding: 11px 13px;
  border: 1px solid var(--color-silver);
  border-left: 3px solid var(--color-teal);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.54);
  color: var(--color-muted);
  font-size: 0.78rem;
  line-height: 1.5;
}

.quick-roi-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.quick-roi-tabs button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 9px 13px;
  border: 1px solid rgba(217, 221, 226, 0.9);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.86);
  color: var(--color-text);
  font-family: var(--font-sans);
  font-size: 0.82rem;
  font-weight: 780;
  cursor: pointer;
  transition: background 160ms ease, border-color 160ms ease, color 160ms ease, transform 160ms ease;
}

.quick-roi-tabs button:hover,
.quick-roi-tabs button.is-active {
  border-color: var(--color-teal);
  background: var(--color-teal);
  color: var(--color-white);
  transform: translateY(-1px);
}

.quick-roi-impact-card {
  min-height: 420px;
}

.quick-roi-impact-card .btn {
  justify-self: start;
}

.quick-roi-disclaimer {
  margin: 0;
  padding: 12px 14px;
  border: 1px solid var(--color-silver);
  border-left: 3px solid var(--color-teal);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.74);
  color: var(--color-muted);
  font-size: 0.78rem;
  line-height: 1.5;
}

.site-planning-section {
  display: grid;
  grid-template-columns: minmax(0, 0.44fr) minmax(0, 0.56fr);
  gap: 38px;
  align-items: center;
  padding-top: 82px;
  padding-bottom: 82px;
}

.site-planning-copy {
  max-width: 520px;
}

.site-planning-copy h2 {
  margin-bottom: 18px;
  font-family: "Manrope", Inter, "Avenir Next", "Helvetica Neue", Arial, sans-serif;
  font-size: clamp(1.72rem, 3.24vw, 2.86rem);
  font-weight: 760;
  letter-spacing: -0.02em;
}

.site-planning-copy > p:not(.eyebrow) {
  margin-bottom: 26px;
  line-height: 1.7;
}

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

.site-map-card {
  margin: 0;
  padding: 12px;
  border: 1px solid rgba(217, 221, 226, 0.86);
  border-radius: 24px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.92), rgba(255, 255, 255, 0.72));
  box-shadow: 0 24px 58px rgba(32, 33, 36, 0.1);
  backdrop-filter: blur(16px) saturate(128%);
}

.site-map-image-wrap {
  position: relative;
  overflow: hidden;
  border-radius: 18px;
  background: var(--color-slate);
}

.site-map-image {
  width: 100%;
  aspect-ratio: 16 / 8.6;
  border-radius: 0;
  filter: brightness(1.06) contrast(1.03) saturate(1.02);
  object-fit: cover;
  object-position: center;
}

.site-map-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(32, 33, 36, 0.26), rgba(32, 33, 36, 0.04) 42%, rgba(32, 33, 36, 0.32)),
    linear-gradient(90deg, rgba(32, 33, 36, 0.2), rgba(32, 33, 36, 0));
  pointer-events: none;
}

.site-map-title {
  position: absolute;
  top: 16px;
  left: 16px;
  padding: 10px 13px;
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  color: var(--color-text);
  font-size: 0.82rem;
  font-weight: 820;
  letter-spacing: 0.02em;
  backdrop-filter: blur(14px) saturate(130%);
}

.site-map-marker {
  position: absolute;
  left: var(--x);
  top: var(--y);
  display: inline-flex;
  align-items: center;
  gap: 7px;
  max-width: 180px;
  padding: 8px 10px;
  border: 1px solid rgba(255, 255, 255, 0.65);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  color: var(--color-text);
  font-size: 0.75rem;
  font-weight: 800;
  line-height: 1;
  white-space: nowrap;
  box-shadow: 0 10px 24px rgba(32, 33, 36, 0.12);
  transform: translate(-50%, -50%);
  backdrop-filter: blur(12px) saturate(130%);
}

.site-map-marker::before {
  width: 9px;
  height: 9px;
  flex: none;
  border-radius: 999px;
  background: var(--color-teal);
  box-shadow: 0 0 0 5px rgba(0, 167, 167, 0.16);
  content: "";
}

.site-map-card figcaption {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 6px 2px;
}

.site-review-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  flex: none;
  border: 1px solid rgba(0, 167, 167, 0.2);
  border-radius: 14px;
  background: rgba(0, 167, 167, 0.1);
  color: var(--color-teal);
}

.site-review-icon svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.site-map-card figcaption p {
  margin: 0;
  color: var(--color-muted);
  font-size: 0.92rem;
  line-height: 1.55;
}

.calculator-mini,
.premium-panel {
  background: var(--color-slate);
  color: var(--color-white);
}

.calculator-mini {
  padding: 28px;
  border-radius: 8px;
}

.calculator-mini span,
.premium-panel span,
.revenue-band span {
  display: block;
  margin-bottom: 8px;
  color: var(--color-sage);
  font-weight: 850;
}

.calculator-mini strong,
.premium-panel strong {
  display: block;
  margin-bottom: 8px;
  font-size: clamp(2.2rem, 5vw, 4rem);
}

.calculator-mini p,
.premium-panel p,
.revenue-band p,
.cta-band p {
  color: rgba(255, 255, 255, 0.78);
}

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

.scenario-card {
  overflow: hidden;
  border: 1px solid var(--color-silver);
  border-radius: 8px;
  background: var(--color-white);
}

.scenario-card img {
  aspect-ratio: 16 / 10;
}

.scenario-card div {
  padding: 22px;
}

.cta-band,
.revenue-band {
  grid-template-columns: minmax(0, 1fr) auto;
  background: var(--color-slate);
  color: var(--color-white);
}

.cta-band h2,
.revenue-band h2 {
  color: var(--color-white);
}

.home-final-cta {
  margin-top: 38px;
  padding: 62px;
}

.home-final-cta .btn {
  min-height: 54px;
  padding: 0 22px;
  font-size: 1rem;
}

.home-final-cta .btn-primary {
  background: var(--color-teal);
  color: var(--color-white);
  box-shadow: 0 10px 28px rgba(0, 167, 167, 0.28);
}

.home-final-cta .btn-primary:hover {
  background: var(--color-teal-hover);
  box-shadow: 0 12px 32px rgba(0, 167, 167, 0.34);
}

.home-final-cta .btn-secondary-light {
  background: rgba(255, 255, 255, 0.04);
}

.tech-proof-section {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
  padding: 56px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  background:
    radial-gradient(circle at 85% 5%, rgba(0, 167, 167, 0.18), rgba(0, 167, 167, 0) 33%),
    linear-gradient(145deg, #263238 0%, #1f2a2f 62%, #263238 100%);
  color: var(--color-white);
  box-shadow: 0 24px 70px rgba(38, 50, 56, 0.16);
}

.tech-proof-intro {
  max-width: 900px;
}

.tech-proof-intro h2 {
  margin-bottom: 16px;
  color: var(--color-white);
  font-family: "Manrope", "Avenir Next", "Helvetica Neue", Arial, sans-serif;
  font-size: clamp(2rem, 4vw, 3.65rem);
  font-weight: 760;
  letter-spacing: -0.02em;
}

.tech-proof-intro > p:not(.eyebrow) {
  max-width: 840px;
  margin: 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: 1.02rem;
  line-height: 1.65;
}

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

.tech-proof-tile {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 14px;
  min-height: 214px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.065);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.tech-proof-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(0, 167, 167, 0.36);
  border-radius: 14px;
  background: rgba(0, 167, 167, 0.12);
  color: var(--color-teal);
}

.tech-proof-icon svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.tech-proof-tile h3 {
  margin-bottom: 8px;
  color: rgba(255, 255, 255, 0.94);
  font-size: 1rem;
  letter-spacing: -0.01em;
  line-height: 1.16;
}

.tech-proof-tile strong {
  display: block;
  margin-bottom: 10px;
  color: var(--color-teal);
  font-size: clamp(1.42rem, 2vw, 1.9rem);
  font-weight: 850;
  letter-spacing: -0.02em;
  line-height: 1.12;
}

.tech-proof-tile p {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.92rem;
  line-height: 1.48;
}

.tech-proof-note {
  max-width: 1040px;
  margin: 0;
  padding: 14px 16px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-left: 3px solid var(--color-teal);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.055);
  color: rgba(255, 255, 255, 0.78);
  font-size: 13px;
  line-height: 1.55;
}

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

.process-section {
  width: min(1320px, calc(100vw - 40px));
}

.process-section .section-heading {
  margin-bottom: 28px;
}

.process-section .section-heading h2 {
  max-width: 840px;
}

.process-section .process-grid {
  position: relative;
  gap: 18px;
}

.process-section .process-grid::before {
  position: absolute;
  top: 52px;
  right: 9%;
  left: 9%;
  height: 1px;
  background: linear-gradient(90deg, rgba(0, 167, 167, 0.1), rgba(0, 167, 167, 0.38), rgba(0, 167, 167, 0.1));
  content: "";
}

.process-section .step-card {
  position: relative;
  z-index: 1;
  min-height: 0;
  padding: 26px 24px;
  border-radius: 20px;
  box-shadow: 0 16px 36px rgba(32, 33, 36, 0.06);
}

.step-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 18px;
}

.step-card .step-number,
.step-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
}

.step-card .step-number {
  width: 42px;
  height: 42px;
  border: 1px solid rgba(0, 167, 167, 0.22);
  background: var(--color-white);
  color: var(--color-teal);
  font-weight: 850;
  box-shadow: 0 0 0 8px rgba(0, 167, 167, 0.08);
}

.step-icon {
  width: 44px;
  height: 44px;
  border: 1px solid rgba(0, 167, 167, 0.16);
  background: rgba(0, 167, 167, 0.08);
  color: var(--color-teal);
}

.step-icon svg {
  width: 21px;
  height: 21px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.9;
}

.process-section .step-card h3 {
  margin-bottom: 10px;
  font-size: 1.18rem;
  letter-spacing: -0.01em;
}

.process-section .step-card p {
  margin: 0;
  font-size: 0.98rem;
  line-height: 1.55;
}

.faq-strip {
  align-items: start;
  grid-template-columns: minmax(0, 0.28fr) minmax(0, 0.72fr);
  gap: 36px;
  background: var(--color-white);
  border: 1px solid var(--color-silver);
}

.faq-intro {
  max-width: 315px;
}

.faq-intro h2 {
  font-size: clamp(1.42rem, 2.32vw, 2.55rem);
  line-height: 1.08;
}

.faq-intro p {
  margin: 0;
  line-height: 1.7;
}

.faq-mini {
  display: grid;
  gap: 12px;
}

details {
  overflow: hidden;
  border: 1px solid var(--color-silver);
  border-radius: 14px;
  background: rgba(247, 245, 240, 0.46);
}

summary {
  min-height: 56px;
  padding: 16px 18px;
  cursor: pointer;
  font-weight: 800;
  line-height: 1.35;
}

.faq-mini summary {
  min-height: 64px;
  padding: 18px 20px;
  font-size: 1.02rem;
}

details p {
  margin: 0;
  padding: 0 18px 18px;
  line-height: 1.6;
}

.faq-mini details p {
  padding: 0 20px 20px;
  font-size: 0.96rem;
}

.subpage-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 42px;
  align-items: center;
  padding: 150px 0 70px;
}

.subpage-hero p,
.calculator-heading p,
.consultation-intro p,
.reservation-lede {
  width: min(720px, 100%);
  font-size: 1.08rem;
}

.stacked-cards {
  display: grid;
  gap: 14px;
}

.comparison-cards,
.tech-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

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

.goal-card span {
  color: var(--color-teal);
  font-weight: 850;
}

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

.compare-table {
  width: 100%;
  min-width: 780px;
  border-collapse: collapse;
  overflow: hidden;
  border: 1px solid var(--color-silver);
  border-radius: 8px;
  background: var(--color-white);
}

.compare-table th,
.compare-table td {
  padding: 18px;
  border-bottom: 1px solid var(--color-silver);
  text-align: left;
  vertical-align: middle;
}

.compare-table th {
  background: #eef2ef;
  font-size: 0.82rem;
  text-transform: uppercase;
}

.compare-table a {
  color: var(--color-teal);
  font-weight: 820;
}

.video-hero {
  position: relative;
  min-height: 90svh;
  overflow: hidden;
  background: var(--color-slate);
}

.video-hero video,
.video-hero-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.video-hero video {
  object-fit: cover;
}

.video-hero-overlay {
  background: rgba(32, 33, 36, 0.42);
}

.video-hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  width: var(--container);
  min-height: 90svh;
  margin: 0 auto;
  padding: 140px 0 76px;
  color: var(--color-white);
}

.video-hero-content h1 {
  width: min(760px, 100%);
  margin-bottom: 18px;
  font-size: clamp(2.4rem, 6vw, 5.3rem);
}

.video-hero-content p {
  width: min(650px, 100%);
  color: rgba(255, 255, 255, 0.84);
  font-size: 1.18rem;
}

.revenue-band {
  width: var(--container);
  margin: 0 auto;
}

.revenue-band h2 {
  margin-bottom: 8px;
}

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

.gallery-grid img {
  aspect-ratio: 4 / 3;
}

.gallery-five {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.calculator-page,
.consultation-page,
.reservation-page,
.legal-page {
  padding: 150px 0 90px;
}

.calculator-heading {
  width: min(860px, 100%);
  margin-bottom: 30px;
}

.calculator-heading h1 {
  font-family: var(--font-sans);
  font-weight: 790;
  letter-spacing: -0.045em;
}

.calculator-heading-note {
  margin-top: 12px;
  padding-left: 14px;
  border-left: 3px solid var(--color-teal);
  color: var(--color-muted);
  font-size: 0.95rem;
  line-height: 1.55;
}

.calculator-shell {
  display: grid;
  grid-template-columns: minmax(0, 0.52fr) minmax(380px, 0.48fr);
  gap: 24px;
  align-items: start;
}

.calculator-form,
.lead-form {
  display: grid;
  gap: 16px;
  padding: 24px;
  border: 1px solid var(--color-silver);
  border-radius: 8px;
  background: var(--color-white);
}

#site-upload {
  scroll-margin-top: 96px;
}

.calculator-form {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  padding: 28px;
  border-radius: 24px;
  box-shadow: 0 22px 58px rgba(32, 33, 36, 0.08);
}

.calculator-fieldset,
.calculator-optional-costs,
.calculator-advanced-grid,
.calculator-cost,
.calculator-form .full {
  grid-column: 1 / -1;
}

.calculator-cost {
  display: grid;
  gap: 10px;
  padding: 16px;
  border: 1px solid rgba(217, 221, 226, 0.86);
  border-radius: 16px;
  background: rgba(247, 245, 240, 0.5);
}

.calculator-cost-head {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.calculator-cost-title {
  color: var(--color-text);
  font-family: var(--font-sans);
  font-size: 0.95rem;
  font-weight: 800;
}

.calculator-cost-mode {
  margin: 0;
}

.calculator-cost-mode select {
  min-height: 40px;
  padding: 8px 12px;
  border-radius: 10px;
  font-size: 0.84rem;
  font-weight: 720;
}

.calculator-cost-display {
  margin: 0;
  color: var(--color-muted);
  font-family: var(--font-sans);
  font-size: 0.88rem;
  font-weight: 680;
}

.calculator-cost-display strong {
  color: var(--color-teal);
  font-weight: 840;
}

.calculator-cost-display span {
  color: var(--color-text);
  font-weight: 760;
}

.calculator-cost small {
  color: var(--color-muted);
  font-size: 0.8rem;
  font-weight: 640;
  line-height: 1.45;
}

.calculator-fieldset {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-top: 6px;
  padding-top: 18px;
  border-top: 1px solid rgba(217, 221, 226, 0.82);
}

.calculator-fieldset:first-child {
  margin-top: 0;
  padding-top: 0;
  border-top: 0;
}

.calculator-fieldset > span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  flex: 0 0 30px;
  border-radius: 999px;
  background: rgba(0, 167, 167, 0.1);
  color: var(--color-teal);
  font-size: 0.76rem;
  font-weight: 850;
}

.calculator-fieldset strong {
  display: block;
  color: var(--color-text);
  font-family: var(--font-sans);
  font-size: 1.05rem;
  font-weight: 820;
  letter-spacing: -0.02em;
}

.calculator-fieldset p {
  margin: 3px 0 0;
  color: var(--color-muted);
  font-size: 0.88rem;
  line-height: 1.45;
}

label {
  display: grid;
  gap: 8px;
  color: var(--color-text);
  font-weight: 740;
}

label span {
  display: flex;
  justify-content: space-between;
  gap: 8px;
}

.calculator-form label {
  align-content: start;
  color: var(--color-text);
  font-family: var(--font-sans);
  font-size: 0.92rem;
  font-weight: 760;
}

.calculator-form label span {
  align-items: baseline;
  line-height: 1.25;
}

.calculator-form label small {
  color: var(--color-muted);
  font-size: 0.8rem;
  font-weight: 640;
  line-height: 1.4;
}

.calculator-form label strong {
  color: var(--color-teal);
  font-weight: 840;
}

input,
select,
textarea {
  width: 100%;
  min-height: 48px;
  padding: 12px 14px;
  border: 1px solid var(--color-silver);
  border-radius: 8px;
  background: var(--color-white);
  color: var(--color-text);
}

.calculator-form input,
.calculator-form select {
  min-height: 50px;
  border-radius: 12px;
  font-family: var(--font-sans);
  font-size: 1rem;
  font-weight: 720;
}

.calculator-form input[readonly] {
  background: #f3f5f3;
  color: var(--color-text);
}

textarea {
  resize: vertical;
}

input[type="range"] {
  padding: 0;
  accent-color: var(--color-teal);
}

.calculator-toggle {
  align-self: end;
  display: flex;
  align-items: center;
  min-height: 50px;
  padding: 12px 14px;
  border: 1px solid rgba(217, 221, 226, 0.86);
  border-radius: 14px;
  background: rgba(247, 245, 240, 0.5);
  cursor: pointer;
}

.calculator-toggle input {
  width: 18px;
  min-height: 18px;
  margin: 0;
  accent-color: var(--color-teal);
}

.calculator-toggle span {
  display: inline;
  color: var(--color-text);
  font-size: 0.9rem;
  font-weight: 760;
}

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

.is-hidden {
  display: none !important;
}

.calculator-optional-costs {
  border-radius: 18px;
  background: rgba(247, 245, 240, 0.58);
}

.calculator-optional-costs summary {
  min-height: 52px;
  padding: 14px 16px;
  color: var(--color-text);
  font-family: var(--font-sans);
  font-size: 0.94rem;
  font-weight: 800;
}

.calculator-optional-grid {
  padding: 0 16px 16px;
}

.calculator-results-wrap {
  position: sticky;
  top: 104px;
  display: grid;
  gap: 12px;
}

.calculator-results {
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 24px;
  background:
    radial-gradient(circle at 90% 8%, rgba(0, 167, 167, 0.27), transparent 34%),
    linear-gradient(145deg, #1e2a30 0%, #183b3d 100%);
  color: var(--color-white);
  box-shadow: 0 28px 78px rgba(24, 59, 61, 0.28);
}

.calculator-result-eyebrow {
  display: block;
  margin-bottom: 14px;
  color: var(--color-teal);
  font-size: 0.74rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.result-main {
  display: grid;
  gap: 8px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
}

.result-main span,
.result-grid span,
.result-mini-grid span {
  display: block;
  margin-bottom: 8px;
  color: rgba(255, 255, 255, 0.67);
  font-family: var(--font-sans);
  font-size: 0.78rem;
  font-weight: 780;
  letter-spacing: 0.04em;
  line-height: 1.25;
  text-transform: uppercase;
}

.result-main strong {
  display: block;
  color: var(--color-white);
  font-family: var(--font-sans);
  font-size: clamp(3.1rem, 6.8vw, 5.8rem);
  font-weight: 840;
  letter-spacing: -0.055em;
  line-height: 0.92;
}

.result-main p {
  max-width: 430px;
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 1rem;
  font-weight: 720;
  line-height: 1.45;
}

.calculator-formula {
  margin: 16px 0 0;
  padding: 12px 14px;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.82);
  font-family: var(--font-sans);
  font-size: 0.88rem;
  font-weight: 720;
  line-height: 1.45;
}

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

.result-grid div {
  min-height: 96px;
  padding: 15px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.06);
}

.result-grid div.is-highlight {
  border-color: rgba(0, 167, 167, 0.48);
  background: rgba(0, 167, 167, 0.13);
}

.result-grid strong {
  color: var(--color-white);
  font-family: var(--font-sans);
  font-size: clamp(1.2rem, 2vw, 1.55rem);
  font-weight: 830;
  letter-spacing: -0.03em;
}

.result-mini-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
  margin-top: 12px;
}

.result-mini-grid div {
  padding: 12px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.055);
}

.result-mini-grid span {
  margin-bottom: 6px;
  font-size: 0.68rem;
}

.result-mini-grid strong {
  color: var(--color-white);
  font-family: var(--font-sans);
  font-size: 0.92rem;
  font-weight: 780;
  line-height: 1.2;
}

.calculator-breakdown {
  margin-top: 14px;
  border-color: rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.06);
}

.calculator-breakdown summary {
  min-height: 48px;
  padding: 13px 15px;
  color: rgba(255, 255, 255, 0.9);
  font-family: var(--font-sans);
  font-size: 0.9rem;
  font-weight: 800;
}

.calculator-breakdown dl {
  display: grid;
  gap: 0;
  margin: 0;
  padding: 0 15px 15px;
}

.calculator-breakdown dl div {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  padding: 9px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.calculator-breakdown dt,
.calculator-breakdown dd {
  margin: 0;
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.84rem;
  line-height: 1.35;
}

.calculator-breakdown dd {
  color: var(--color-white);
  font-weight: 780;
  text-align: right;
}

.calculator-breakdown .is-total dt,
.calculator-breakdown .is-total dd {
  color: var(--color-teal);
  font-weight: 850;
}

.calculator-reset {
  min-height: 46px;
  border: 1px solid var(--color-silver);
  border-radius: 999px;
  background: var(--color-white);
  color: var(--color-text);
  font-family: var(--font-sans);
  font-size: 0.9rem;
  font-weight: 800;
  cursor: pointer;
}

.calculator-project-note,
.calculator-disclaimer-note {
  margin: 0;
  padding: 14px 16px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.7);
  color: var(--color-muted);
  font-size: 0.84rem;
  line-height: 1.55;
}

.calculator-disclaimer-note {
  font-style: italic;
}

.disclaimer {
  margin: 20px 0 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.86rem;
}

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

.layout-diagram {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
  height: 150px;
  margin: 22px 0;
  padding: 14px;
  border: 1px solid var(--color-silver);
  border-radius: 8px;
  background: #eef2ef;
}

.layout-diagram span {
  border-radius: 6px;
  background: var(--color-white);
  box-shadow: inset 0 0 0 1px rgba(0, 167, 167, 0.22);
}

.layout-card ul {
  margin: 0;
  padding-left: 18px;
  color: var(--color-muted);
  line-height: 1.7;
}

.consultation-page {
  display: grid;
  grid-template-columns: minmax(280px, 0.62fr) minmax(0, 1fr);
  gap: 36px;
  align-items: start;
}

.reservation-page {
  display: grid;
  grid-template-columns: minmax(300px, 0.58fr) minmax(0, 1fr);
  gap: 36px;
  align-items: start;
}

.consultation-intro,
.reservation-intro {
  position: sticky;
  top: 120px;
}

.reservation-intro h1 {
  font-family: var(--font-sans);
  font-size: clamp(3rem, 6vw, 5.7rem);
  font-weight: 780;
  letter-spacing: -0.045em;
  line-height: 0.95;
}

.reservation-lede {
  max-width: 560px;
  margin: 18px 0 0;
  font-size: 1.12rem;
  line-height: 1.65;
}

.reservation-offer-card {
  display: grid;
  gap: 10px;
  margin-top: 26px;
  padding: 24px;
  border: 1px solid rgba(0, 167, 167, 0.2);
  border-radius: 22px;
  background: rgba(0, 167, 167, 0.07);
  box-shadow: 0 18px 46px rgba(32, 33, 36, 0.07);
}

.reservation-offer-card strong {
  color: var(--color-text);
  font-size: clamp(1.45rem, 2.4vw, 2.25rem);
  font-weight: 820;
  letter-spacing: -0.03em;
}

.reservation-offer-card p,
.reservation-offer-card span {
  margin: 0;
  color: var(--color-muted);
  line-height: 1.55;
}

.reservation-offer-card span {
  font-size: 0.9rem;
  font-weight: 760;
}

.reservation-benefit-grid {
  display: grid;
  gap: 12px;
  margin-top: 18px;
}

.reservation-benefit-card {
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr);
  gap: 12px;
  align-items: start;
  padding: 16px;
  border: 1px solid var(--color-silver);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.74);
  box-shadow: 0 12px 32px rgba(32, 33, 36, 0.045);
}

.reservation-benefit-card > span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 999px;
  background: rgba(0, 167, 167, 0.1);
  color: var(--color-teal);
  font-weight: 860;
}

.reservation-benefit-card h2 {
  margin: 0 0 5px;
  font-family: var(--font-sans);
  font-size: 1rem;
  font-weight: 820;
  letter-spacing: -0.01em;
}

.reservation-benefit-card p {
  margin: 0;
  color: var(--color-muted);
  font-size: 0.92rem;
  line-height: 1.5;
}

.lead-form fieldset {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin: 0;
  padding: 0 0 22px;
  border: 0;
  border-bottom: 1px solid var(--color-silver);
}

.lead-form legend {
  grid-column: 1 / -1;
  margin-bottom: 4px;
  font-size: 1.25rem;
  font-weight: 850;
}

.lead-form .full,
.wide-fieldset {
  grid-column: 1 / -1;
}

.checkbox-grid {
  display: grid;
  grid-column: 1 / -1;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.checkbox-grid label,
.consent {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 48px;
  padding: 12px;
  border: 1px solid var(--color-silver);
  border-radius: 8px;
  background: #fbfbfa;
}

.checkbox-grid input,
.consent input {
  width: 18px;
  min-height: 18px;
  accent-color: var(--color-teal);
}

.checkbox-grid span,
.consent span {
  display: inline;
}

.form-status {
  margin: 0;
  font-weight: 740;
}

.form-status[data-state="pending"] {
  color: var(--color-muted);
}

.form-status[data-state="success"] {
  color: var(--color-teal);
}

.form-status[data-state="error"] {
  color: #c0392b;
}

/* Honeypot anti-spam field — hidden from humans and assistive tech. */
.hp-field {
  position: absolute !important;
  left: -9999px !important;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.reservation-payment {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 18px;
  align-items: center;
  padding: 22px;
  border: 1px solid rgba(0, 167, 167, 0.22);
  border-radius: 18px;
  background: rgba(0, 167, 167, 0.07);
}

.reservation-payment span {
  display: block;
  margin-bottom: 7px;
  color: var(--color-teal);
  font-size: 0.78rem;
  font-weight: 820;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.reservation-payment strong {
  display: block;
  color: var(--color-text);
  font-size: clamp(1.6rem, 3vw, 2.45rem);
  font-weight: 820;
  letter-spacing: -0.035em;
}

.reservation-payment p,
.reservation-confirmation,
.reservation-legal,
.reservation-refund-note {
  margin: 0;
  color: var(--color-muted);
  line-height: 1.58;
}

.reservation-payment p {
  margin-top: 8px;
  font-size: 0.93rem;
}

.reservation-confirmation {
  padding: 16px 18px;
  border: 1px solid var(--color-silver);
  border-left: 3px solid var(--color-teal);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.72);
  font-weight: 720;
}

.reservation-legal,
.reservation-refund-note {
  font-size: 0.86rem;
}

.reservation-refund-note {
  font-weight: 740;
}

.reservation-page {
  display: block;
  width: min(1220px, calc(100vw - 40px));
  padding-top: 142px;
}

.reservation-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.52fr) minmax(360px, 0.43fr);
  grid-template-areas:
    "copy guide"
    "actions guide";
  gap: 24px clamp(48px, 5vw, 64px);
  align-items: center;
  padding-bottom: 52px;
}

.reservation-hero-copy {
  grid-area: copy;
}

.reservation-hero-copy h1 {
  margin-bottom: 20px;
  font-family: var(--font-sans);
  font-size: clamp(3rem, 6vw, 5.5rem);
  font-weight: 780;
  letter-spacing: -0.05em;
  line-height: 0.95;
}

.reservation-lede {
  max-width: 650px;
  font-size: clamp(1.04rem, 1.35vw, 1.18rem);
  line-height: 1.7;
}

.reservation-hero-actions {
  grid-area: actions;
  display: grid;
  justify-items: start;
  gap: 13px;
  max-width: 560px;
}

.reservation-hero-actions p {
  margin: 0;
  color: rgba(32, 33, 36, 0.72);
  font-size: 0.94rem;
  line-height: 1.55;
}

.reservation-guide-card {
  grid-area: guide;
  display: grid;
  gap: 18px;
  padding: clamp(22px, 3vw, 32px);
  border: 1px solid rgba(217, 221, 226, 0.9);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 24px 70px rgba(32, 33, 36, 0.12);
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
}

.reservation-guide-copy span {
  display: block;
  margin-bottom: 8px;
  color: var(--color-text);
  font-size: clamp(1.28rem, 2vw, 1.74rem);
  font-weight: 820;
  letter-spacing: -0.03em;
}

.reservation-guide-copy p,
.reservation-guide-support {
  margin: 0;
  color: var(--color-muted);
  font-size: 0.95rem;
  line-height: 1.55;
}

.reservation-guide-media {
  display: grid;
  place-items: center;
  margin: 0;
  padding: 18px;
  overflow: hidden;
  border: 1px solid rgba(0, 167, 167, 0.14);
  border-radius: 20px;
  background:
    linear-gradient(135deg, rgba(0, 167, 167, 0.08), rgba(255, 255, 255, 0.9)),
    var(--color-white);
  aspect-ratio: 4 / 3;
}

.reservation-guide-media img {
  width: auto;
  max-width: 82%;
  max-height: 100%;
  border-radius: 12px;
  object-fit: contain;
  box-shadow: 0 18px 46px rgba(32, 33, 36, 0.18);
}

.reservation-guide-checklist {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.reservation-guide-checklist li {
  position: relative;
  padding-left: 24px;
  color: var(--color-text);
  font-size: 0.92rem;
  font-weight: 720;
  line-height: 1.45;
}

.reservation-guide-checklist li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--color-teal);
  font-weight: 880;
}

.reservation-benefits {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-bottom: 44px;
}

.reservation-benefits .reservation-benefit-card {
  min-height: 168px;
  padding: 22px;
  border-radius: 20px;
}

.reservation-benefits .reservation-benefit-card h2 {
  font-size: 1.1rem;
}

.reservation-form.lead-form {
  max-width: 1040px;
  margin: 0 auto;
  gap: 0;
  padding: clamp(24px, 3vw, 38px);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 24px 68px rgba(32, 33, 36, 0.11);
}

#reservation-form {
  scroll-margin-top: 112px;
}

.reservation-form-heading {
  padding-bottom: 24px;
  border-bottom: 1px solid var(--color-silver);
}

.reservation-form-heading h2 {
  margin-bottom: 8px;
  font-family: var(--font-sans);
  font-size: clamp(2rem, 4vw, 3.15rem);
  font-weight: 780;
  letter-spacing: -0.04em;
}

.reservation-form-heading p {
  max-width: 680px;
  margin: 0;
}

.lead-form .reservation-form-section {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  padding: 28px 0;
  border-bottom: 1px solid var(--color-silver);
}

.lead-form .reservation-form-section legend {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 2px;
  font-family: var(--font-sans);
  font-size: 1.16rem;
  font-weight: 820;
}

.lead-form .reservation-form-section legend span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 999px;
  background: rgba(0, 167, 167, 0.1);
  color: var(--color-teal);
  font-size: 0.78rem;
}

.reservation-form-section label span small {
  color: var(--color-muted);
  font-size: 0.82rem;
  font-weight: 680;
}

.reservation-mini-summary {
  grid-column: 1 / -1;
  display: grid;
  gap: 5px;
  padding: 16px 18px;
  border: 1px solid rgba(0, 167, 167, 0.22);
  border-radius: 16px;
  background: rgba(0, 167, 167, 0.07);
}

.reservation-mini-summary span,
.reservation-payment span {
  display: block;
  margin-bottom: 0;
  color: var(--color-teal);
  font-size: 0.78rem;
  font-weight: 820;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.reservation-mini-summary strong {
  color: var(--color-text);
  font-size: clamp(1.28rem, 2vw, 1.74rem);
  font-weight: 820;
  letter-spacing: -0.025em;
}

.reservation-payment {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 20px;
  align-items: center;
  margin-top: 30px;
  padding: 24px;
  border-radius: 20px;
  background: rgba(0, 167, 167, 0.08);
}

.reservation-payment strong {
  font-size: clamp(1.6rem, 3vw, 2.35rem);
}

.reservation-payment .btn {
  min-height: 52px;
  padding-inline: 22px;
}

.reservation-form .form-status {
  margin-top: 18px;
  color: var(--color-teal);
}

.reservation-terms {
  max-width: 1040px;
  margin: 22px auto 0;
  overflow: hidden;
  border: 1px solid var(--color-silver);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.74);
}

.reservation-terms summary {
  display: grid;
  gap: 5px;
  padding: 18px 22px;
  cursor: pointer;
  list-style: none;
}

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

.reservation-terms summary span {
  color: var(--color-text);
  font-weight: 820;
}

.reservation-terms summary small {
  color: var(--color-muted);
  font-size: 0.9rem;
  line-height: 1.45;
}

.reservation-terms p {
  margin: 0;
  padding: 0 22px 18px;
  color: var(--color-muted);
  font-size: 0.9rem;
  line-height: 1.58;
}

@media (max-width: 900px) {
  .reservation-hero {
    grid-template-columns: 1fr;
    grid-template-areas:
      "copy"
      "guide"
      "actions";
    gap: 22px;
    padding-bottom: 38px;
  }

  .reservation-guide-card {
    padding: 20px;
  }

  .reservation-guide-media {
    aspect-ratio: 16 / 10;
  }

  .reservation-benefits {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .reservation-benefits .reservation-benefit-card {
    min-height: 0;
  }

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

  .reservation-payment {
    grid-template-columns: 1fr;
  }

  .reservation-payment .btn {
    width: 100%;
  }
}

@media (max-width: 560px) {
  .reservation-page {
    width: min(100% - 28px, 1220px);
  }

  .reservation-hero-copy h1 {
    font-size: clamp(2.65rem, 13vw, 4rem);
  }

  .reservation-guide-checklist {
    grid-template-columns: 1fr;
  }

  .reservation-form.lead-form {
    padding: 20px;
    border-radius: 22px;
  }

  .reservation-form-heading {
    padding-bottom: 20px;
  }

  .lead-form .reservation-form-section {
    padding: 24px 0;
  }

  .reservation-payment {
    padding: 20px;
  }
}

.legal-page {
  width: min(850px, calc(100vw - 40px));
}

.legal-page p {
  font-size: 1.06rem;
}

.faq-page {
  width: min(920px, calc(100vw - 40px));
}

.site-footer {
  background: var(--color-slate);
  color: var(--color-white);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.8fr repeat(4, 1fr);
  gap: 36px;
  width: var(--container);
  margin: 0 auto;
  padding: 60px 0 36px;
}

@media (max-width: 1080px) {
  .footer-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
  }
}

.footer-grid h2 {
  font-size: 0.9rem;
  text-transform: uppercase;
}

.footer-grid a {
  display: block;
  margin-bottom: 10px;
  color: rgba(255, 255, 255, 0.76);
}

.footer-grid p,
.footer-bottom {
  color: rgba(255, 255, 255, 0.72);
}

.footer-logo {
  width: auto;
  height: 48px;
  margin-bottom: 18px;
  object-fit: contain;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  width: var(--container);
  margin: 0 auto;
  padding: 22px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  font-size: 0.9rem;
}

/* Follow Cabinova — social icons sit inline on the contact-email row */
.footer-contact-row {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 14px;
}

.footer-social {
  display: flex;
  gap: 10px;
}

.footer-social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  margin: 0;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: rgba(255, 255, 255, 0.76);
  transition: color 0.2s ease, border-color 0.2s ease, background-color 0.2s ease;
}

.footer-social-link svg {
  width: 19px;
  height: 19px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.footer-social-link:hover,
.footer-social-link:focus-visible {
  color: var(--color-teal);
  border-color: var(--color-teal);
  background-color: rgba(255, 255, 255, 0.04);
}

.footer-social-link:focus-visible {
  outline: 2px solid var(--color-teal);
  outline-offset: 2px;
}

@media (max-width: 1080px) {
  .site-header {
    width: calc(100vw - 24px);
  }

  .menu-toggle {
    display: block;
  }

  .main-nav {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    display: none;
    width: min(420px, calc(100vw - 24px));
    padding: 12px;
    border: 1px solid var(--color-silver);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.96);
    box-shadow: var(--shadow-soft);
    backdrop-filter: blur(18px);
  }

  .main-nav.is-open {
    display: grid;
    gap: 4px;
  }

  .nav-products {
    width: 100%;
  }

  .nav-products summary,
  .main-nav a {
    justify-content: space-between;
    width: 100%;
    min-height: 44px;
    padding: 0 12px;
    border-radius: 12px;
    font-size: 0.95rem;
  }

  .product-menu {
    position: static;
    display: none;
    width: 100%;
    margin: 2px 0 6px;
    padding: 4px 0 0 10px;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    backdrop-filter: none;
    opacity: 1;
    visibility: visible;
    transform: none;
    pointer-events: auto;
  }

  .nav-products[open] .product-menu {
    display: grid;
  }

  .main-nav .product-menu-link {
    grid-template-columns: minmax(0, 1fr) auto;
    min-height: 54px;
    padding: 9px 12px;
    border-left: 2px solid rgba(0, 167, 167, 0.22);
    border-radius: 12px;
  }

  .product-menu-copy span {
    font-size: 13px;
  }

  .nav-products:hover .product-menu {
    transform: none;
  }

  .main-nav .nav-cta {
    justify-content: center;
    margin-top: 6px;
    margin-left: 0;
    background: var(--color-teal);
    color: var(--color-white);
  }

  .main-nav .nav-secondary-mobile {
    display: inline-flex;
    justify-content: center;
    color: var(--color-muted);
    background: rgba(217, 221, 226, 0.32);
  }

  .product-grid,
  .process-grid,
  .layout-grid,
  .tech-grid,
  .tech-proof-grid,
  .product-spec-bar,
  .product-proof-grid,
  .shared-amenity-card-grid,
  .shared-value-grid,
  .premium-decision-grid,
  .trim-grid,
  .product-deployment-steps,
  .product-requirements-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .product-index-hero,
  .product-landing-hero {
    gap: 30px;
  }

  .shared-amenities-hero-bar {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .shared-amenities-hero-bar .hero-actions {
    min-width: 0;
    justify-content: flex-start;
  }

  .shared-zone-experience-section,
  .shared-planning-cta {
    grid-template-columns: 1fr;
  }

  .shared-zone-plan {
    min-height: 400px;
  }

  .shared-planning-cta .cta-actions {
    justify-content: flex-start;
  }

  .premium-slider {
    min-height: 500px;
  }

  .premium-config-section {
    grid-template-columns: 1fr;
  }

  .premium-floorplan-card {
    position: static;
  }

  .upgrade-path-card a {
    grid-template-columns: 1fr;
  }

  .upgrade-path-card img {
    min-height: 0;
    aspect-ratio: 16 / 8.5;
  }

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

  .solution-section {
    gap: 30px;
  }

  .solution-top {
    grid-template-columns: minmax(0, 0.42fr) minmax(0, 0.58fr);
    gap: 28px;
  }

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

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

  .consultation-page,
  .reservation-page {
    grid-template-columns: 1fr;
  }

  .consultation-intro,
  .reservation-intro,
  .calculator-results-wrap,
  .calculator-results {
    position: static;
  }
}

@media (max-width: 820px) {
  :root {
    --container: min(100vw - 28px, 1180px);
  }

  .site-header {
    min-height: 58px;
    margin-top: 8px;
  }

  .brand {
    min-height: 38px;
  }

  .brand img {
    height: 34px;
  }

  .home-hero,
  .hero-content {
    min-height: 84svh;
  }

  .hero-slide {
    object-position: center;
  }

  .hero-content {
    padding: 110px 0 34px;
  }

  .hero-panel {
    width: 100%;
    max-width: none;
    padding: 22px;
    border-radius: 22px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.76), rgba(255, 255, 255, 0.68));
  }

  .hero-panel h1,
  .subpage-hero h1,
  .calculator-heading h1,
  .consultation-intro h1,
  .reservation-intro h1,
  .legal-page h1 {
    font-size: clamp(2.15rem, 11vw, 3.7rem);
  }

  .section {
    padding: 64px 0;
  }

  .problem-section {
    grid-template-columns: 1fr;
    gap: 24px;
    align-items: stretch;
    padding-top: 64px;
    padding-bottom: 64px;
  }

  .problem-copy {
    display: contents;
  }

  .problem-copy .eyebrow {
    display: none;
  }

  .problem-copy h2 {
    order: 1;
    font-size: clamp(1.9rem, 9vw, 2.8rem);
  }

  .problem-copy > p:not(.eyebrow) {
    order: 2;
  }

  .comparison-panel {
    order: 3;
    grid-template-columns: 1fr;
  }

  .pain-card-grid {
    order: 4;
  }

  .problem-actions {
    order: 5;
  }

  .solution-section {
    gap: 26px;
    align-items: stretch;
    width: var(--container);
    padding-top: 64px;
    padding-bottom: 64px;
  }

  .solution-top {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .solution-copy {
    display: grid;
    gap: 20px;
  }

  .solution-copy .eyebrow {
    order: 1;
    margin-bottom: 0;
  }

  .solution-copy h2 {
    order: 2;
    font-size: clamp(1.9rem, 9vw, 2.8rem);
  }

  .solution-copy > p:not(.eyebrow) {
    order: 3;
  }

  .solution-visual {
    order: 2;
  }

  .solution-card-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-top: 0;
  }

  .solution-actions {
    order: 4;
  }

  .comparison-cards-wrap {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .comparison-card figure {
    min-height: 0;
  }

  .comparison-arrow {
    min-height: 40px;
    padding: 0 14px;
  }

  .metric-row,
  .split-section,
  .split-section.reverse,
  .roi-preview,
  .site-planning-section,
  .scenario-grid,
  .tech-preview,
  .faq-strip,
  .subpage-hero,
  .product-index-hero,
  .product-landing-hero,
  .premium-product-cta,
  .product-experience-section,
  .product-revenue-preview,
  .product-support-role,
  .product-zone-section,
  .product-requirements-section,
  .shared-zone-experience-section,
  .shared-planning-cta,
  .calculator-shell,
  .cta-band,
  .revenue-band {
    grid-template-columns: 1fr;
  }

  .subpage-hero,
  .product-index-hero,
  .product-landing-hero,
  .calculator-page,
  .consultation-page,
  .reservation-page,
  .legal-page {
    padding-top: 118px;
  }

  .comparison-cards,
  .product-grid,
  .process-grid,
  .layout-grid,
  .tech-grid,
  .tech-proof-grid,
  .gallery-grid,
  .gallery-five,
  .upgrade-path-grid,
  .product-gallery-grid,
  .shared-amenity-card-grid,
  .shared-value-grid {
    grid-template-columns: 1fr;
  }

  .shared-amenities-hero {
    padding-top: 94px;
    padding-bottom: 40px;
  }

  .shared-amenities-hero-media {
    display: grid;
    overflow: visible;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
  }

  .shared-amenities-hero-media::after {
    display: none;
  }

  .shared-amenities-hero-media img {
    overflow: hidden;
    border: 1px solid rgba(217, 221, 226, 0.72);
    border-radius: 22px;
    background: var(--color-white);
    box-shadow: 0 18px 48px rgba(32, 33, 36, 0.12);
    aspect-ratio: 16 / 10;
  }

  .shared-amenities-hero-bar {
    position: static;
    padding: 20px 0 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    -webkit-backdrop-filter: none;
    backdrop-filter: none;
  }

  .shared-amenities-hero-bar h1 {
    font-size: clamp(2rem, 8.8vw, 3rem);
  }

  .shared-zone-plan {
    min-height: 520px;
    padding: 16px;
  }

  .shared-plan-path-main {
    top: 48%;
    left: 12%;
    width: 76%;
    height: 14px;
    transform: rotate(82deg);
  }

  .shared-plan-path-branch {
    height: 108px;
  }

  .shared-plan-path-branch-a {
    top: 21%;
    left: 44%;
    transform: rotate(62deg);
  }

  .shared-plan-path-branch-b {
    top: 42%;
    right: 44%;
    transform: rotate(-58deg);
  }

  .shared-plan-path-branch-c {
    top: 58%;
    left: 49%;
    height: 105px;
    transform: rotate(68deg);
  }

  .shared-plan-cabin {
    width: 68px;
    height: 42px;
    font-size: 0.72rem;
  }

  .cabin-a {
    top: 10%;
    left: 13%;
  }

  .cabin-b {
    top: 11%;
    right: 13%;
    left: auto;
  }

  .cabin-c {
    top: 29%;
    right: 8%;
  }

  .cabin-d {
    bottom: 32%;
    left: 8%;
  }

  .cabin-e {
    right: 12%;
    bottom: 15%;
  }

  .cabin-f {
    bottom: 12%;
    left: 15%;
    right: auto;
  }

  .shared-plan-amenity,
  .shared-plan-fire {
    min-width: 118px;
    padding: 9px 10px;
    font-size: 0.76rem;
  }

  .amenity-washroom {
    top: 30%;
    left: 10%;
  }

  .amenity-shower {
    top: 48%;
    right: 8%;
  }

  .amenity-kitchen {
    top: 58%;
    left: 10%;
  }

  .shared-plan-fire {
    right: 10%;
    bottom: 3%;
  }

  .shared-planning-cta {
    width: var(--container);
    padding: 30px;
  }

  .product-index-hero,
  .product-landing-hero {
    padding-bottom: 34px;
  }

  .premium-product-hero {
    width: var(--container);
    padding-top: 96px;
    padding-bottom: 22px;
  }

  .premium-slider {
    display: grid;
    gap: 14px;
    min-height: 0;
    overflow: visible;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    aspect-ratio: auto;
  }

  .premium-slider::after {
    display: none;
  }

  .premium-slider-track {
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(217, 221, 226, 0.72);
    border-radius: 22px;
    background: var(--color-slate);
    box-shadow: 0 18px 48px rgba(32, 33, 36, 0.12);
    aspect-ratio: 16 / 9;
  }

  .premium-hero-panel {
    position: static;
    display: block;
    width: auto;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    -webkit-backdrop-filter: none;
    backdrop-filter: none;
  }

  .premium-hero-panel h1 {
    margin-bottom: 10px;
    font-size: clamp(2rem, 8vw, 3.05rem);
  }

  .premium-hero-panel p:not(.eyebrow) {
    margin-bottom: 18px;
    font-size: 0.98rem;
    line-height: 1.5;
  }

  .premium-hero-panel .hero-actions {
    min-width: 0;
    justify-content: flex-start;
  }

  .premium-slider-controls {
    top: calc((100vw - 28px) * 9 / 32);
    right: 12px;
    bottom: auto;
    left: 12px;
    transform: translateY(-50%);
  }

  .premium-slider-dots {
    top: calc((100vw - 28px) * 9 / 16 - 24px);
    bottom: auto;
  }

  .premium-decision-section {
    padding-top: 36px;
    padding-bottom: 44px;
  }

  .premium-config-section,
  .premium-trim-section {
    padding-top: 54px;
    padding-bottom: 54px;
  }

  .premium-config-copy h2,
  .premium-trim-section h2,
  .premium-product-cta h2 {
    font-size: clamp(1.85rem, 8vw, 2.85rem);
  }

  .premium-product-cta {
    width: var(--container);
    gap: 22px;
    padding: 30px;
    margin-top: 10px;
  }

  .premium-product-review-card {
    gap: 18px;
    padding: 24px;
  }

  .product-index-hero h1,
  .product-landing-hero h1 {
    font-size: clamp(2.18rem, 11vw, 3.7rem);
  }

  .product-hero-media img,
  .product-hero-media video,
  .product-index-hero figure img {
    aspect-ratio: 16 / 10;
  }

  .product-spec-bar {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    padding-top: 0;
    padding-bottom: 22px;
  }

  .product-spec-bar article {
    min-height: 104px;
    padding: 15px;
  }

  .product-use-section {
    padding-top: 44px;
  }

  .product-proof-grid,
  .product-requirements-list,
  .product-deployment-steps {
    grid-template-columns: 1fr;
  }

  .product-proof-card,
  .product-deployment-steps article {
    min-height: 0;
  }

  .product-revenue-preview,
  .product-support-role,
  .product-zone-section {
    width: var(--container);
    padding: 28px;
  }

  .product-revenue-preview h2 {
    font-size: clamp(2rem, 8.4vw, 2.75rem);
    overflow-wrap: break-word;
  }

  .product-gallery-grid img:first-child {
    grid-column: auto;
    aspect-ratio: 16 / 10;
  }

  .system-section .system-product-grid {
    grid-template-columns: 1fr;
  }

  .system-product-card .product-card-image img {
    aspect-ratio: 16 / 9;
  }

  .process-section .process-grid::before {
    display: none;
  }

  .tech-proof-tile {
    min-height: 0;
  }

  .system-next-step {
    align-items: flex-start;
    flex-direction: column;
    gap: 12px;
  }

  .roi-preview,
  .tech-preview,
  .faq-strip,
  .cta-band,
  .revenue-band {
    padding: 28px;
  }

  .calculator-form,
  .calculator-advanced-grid,
  .calculator-optional-grid,
  .result-grid,
  .result-mini-grid,
  .lead-form fieldset,
  .checkbox-grid {
    grid-template-columns: 1fr;
  }

  .video-hero,
  .video-hero-content {
    min-height: 84svh;
  }

  .video-hero-content {
    padding: 118px 0 44px;
  }

  .check-grid,
  .tech-list {
    grid-template-columns: 1fr;
  }

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

  .footer-bottom {
    flex-direction: column;
  }
}

@media (max-width: 480px) {
  .hero-actions,
  .cta-actions,
  .solution-actions {
    display: grid;
  }

  .btn {
    width: 100%;
  }

  .product-spec-bar {
    grid-template-columns: 1fr;
  }

  .premium-product-hero {
    padding-top: 86px;
  }

  .premium-slider {
    gap: 12px;
  }

  .premium-hero-panel {
    padding: 0;
  }

  .premium-hero-panel h1 {
    font-size: clamp(1.74rem, 8.8vw, 2.56rem);
  }

  .premium-slider-controls button {
    width: 38px;
    height: 38px;
  }

  .premium-slider-dots {
    top: calc((100vw - 28px) * 9 / 16 - 22px);
  }

  .premium-decision-grid,
  .trim-grid {
    grid-template-columns: 1fr;
  }

  .premium-decision-card {
    min-height: 116px;
    padding: 18px;
  }

  .premium-floorplan-card img,
  .trim-image-wrap img {
    aspect-ratio: 16 / 11;
  }

  .floorplan-zoom {
    right: 12px;
    bottom: 12px;
    min-height: 38px;
    padding: 0 12px;
    font-size: 0.86rem;
  }

  .trim-card > div {
    align-items: flex-start;
    flex-direction: column;
    gap: 5px;
  }

  .premium-product-cta,
  .product-final-mini-cta {
    padding: 24px;
  }

  .premium-product-review-card {
    padding: 20px;
  }

  .reservation-payment {
    grid-template-columns: 1fr;
  }

  .reservation-payment .btn {
    width: 100%;
  }

  .upgrade-path-card div,
  .product-zone-section,
  .product-revenue-preview,
  .product-support-role {
    padding: 22px;
  }

  .product-revenue-card,
  .product-support-role aside {
    padding: 18px;
  }

  .product-section-heading h2,
  .product-experience-section h2,
  .product-requirements-section h2,
  .product-deployment-section h2,
  .product-gallery-section h2 {
    font-size: clamp(1.85rem, 9vw, 2.75rem);
  }

  .roi-impact-card {
    min-height: 0;
    padding: 20px;
  }

  .roi-impact-main strong {
    font-size: clamp(2.16rem, 9vw, 2.45rem);
  }

  .roi-impact-payback {
    padding: 16px;
  }

  .site-planning-actions {
    display: grid;
  }

  .site-map-card {
    padding: 10px;
    border-radius: 20px;
  }

  .site-map-image {
    aspect-ratio: 16 / 10.2;
  }

  .site-map-title {
    top: 12px;
    left: 12px;
    padding: 8px 10px;
    font-size: 0.74rem;
  }

  .site-map-marker {
    padding: 7px 8px;
    font-size: 0.66rem;
  }

  .site-map-card figcaption {
    align-items: flex-start;
    padding-top: 12px;
  }

  .hero-panel {
    padding: 18px;
  }

  .hero-panel p,
  .video-hero-content p {
    font-size: 1rem;
  }

  .solution-image-caption {
    left: 12px;
    bottom: 12px;
    max-width: calc(100% - 24px);
    padding: 10px 12px;
    border-radius: 14px;
  }

  .solution-card-grid {
    grid-template-columns: 1fr;
  }

  .solution-card {
    min-height: 137px;
  }

  .section-heading h2,
  .split-section h2,
  .cta-band h2,
  .faq-strip h2,
  .revenue-band h2 {
    font-size: clamp(1.85rem, 9vw, 2.75rem);
  }
}

@media (max-width: 1080px) {
  .cabin158-decision-grid,
  .cabin158-benefit-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .cabin158-owned-section,
  .cabin158-config-section,
  .cabin158-shared-section,
  .cabin158-economics-section {
    grid-template-columns: 1fr;
  }

  .cabin158-owned-copy,
  .cabin158-economics-copy {
    grid-row: auto;
  }

  .cabin158-config-visual {
    position: static;
  }

  .cabin158-deployment-visual img {
    aspect-ratio: 16 / 9;
  }
}

@media (max-width: 820px) {
  .cabin158-hero {
    width: var(--container);
    padding-top: 96px;
    padding-bottom: 22px;
  }

  .cabin158-video-shell {
    display: grid;
    gap: 14px;
    overflow: visible;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    aspect-ratio: auto;
  }

  .cabin158-video-shell::after {
    display: none;
  }

  .cabin158-video-shell video {
    overflow: hidden;
    border: 1px solid rgba(217, 221, 226, 0.72);
    border-radius: 22px;
    background: var(--color-slate);
    box-shadow: 0 18px 48px rgba(32, 33, 36, 0.12);
    aspect-ratio: 16 / 9;
  }

  .cabin158-hero-panel {
    position: static;
    display: block;
    width: auto;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    -webkit-backdrop-filter: none;
    backdrop-filter: none;
  }

  .cabin158-hero-panel h1,
  .cabin158-owned-copy h2,
  .cabin158-packages-section h2,
  .cabin158-config-copy h2,
  .cabin158-deployment-section h2,
  .cabin158-economics-copy h2 {
    font-size: clamp(2rem, 8.5vw, 3rem);
  }

  .cabin158-hero-panel p:not(.eyebrow) {
    margin-bottom: 18px;
    font-size: 0.98rem;
    line-height: 1.5;
  }

  .cabin158-hero-panel .hero-actions {
    min-width: 0;
    justify-content: flex-start;
  }

  .cabin158-package-grid,
  .cabin158-scenario-grid,
  .cabin158-shared-card ul,
  .cabin158-full-specs ul {
    grid-template-columns: 1fr;
  }

  .cabin158-shared-banner {
    align-items: flex-start;
    flex-direction: column;
  }

  .cabin158-shared-banner .btn {
    width: 100%;
    justify-content: center;
  }

  .cabin158-package-note {
    align-items: flex-start;
    flex-direction: column;
  }

  .cabin158-package-note .btn {
    width: 100%;
    justify-content: center;
  }

  .cabin158-deployment-visual img {
    aspect-ratio: 16 / 10;
  }

  .cabin158-sensitivity-card {
    overflow-x: auto;
  }

  .cabin158-sensitivity-card table {
    min-width: 640px;
  }

  .cabin158-planning-cta {
    margin-top: 20px;
  }
}

@media (max-width: 480px) {
  .cabin158-hero {
    padding-top: 86px;
  }

  .cabin158-decision-grid,
  .cabin158-benefit-grid {
    grid-template-columns: 1fr;
  }

  .cabin158-decision-grid article,
  .cabin158-benefit-grid article,
  .cabin158-scenario-grid article,
  .cabin158-package-card > div,
  .cabin158-shared-card,
  .cabin158-economics-card,
  .cabin158-sensitivity-card {
    padding: 20px;
  }

  .cabin158-plan-actions {
    position: static;
    display: flex;
    padding: 0 12px 12px;
    pointer-events: auto;
  }

  .cabin158-plan-actions .floorplan-zoom {
    justify-content: center;
    width: 100%;
    min-height: 46px;
    font-size: 0.86rem;
  }

  .cabin158-noi-metrics {
    grid-template-columns: 1fr;
  }

  .cabin158-economics-card dl div {
    display: grid;
    gap: 4px;
  }

  .cabin158-economics-card dd {
    text-align: left;
  }
}

/* ===== Why Upgrade page ===== */
.why-hero .subpage-hero-image img {
  aspect-ratio: 16 / 11;
}

.why-cost-grid,
.why-outcome-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  align-items: stretch;
}

.why-cost-grid .pain-card,
.why-outcome-grid .solution-card {
  height: 100%;
}

.why-paths {
  display: grid;
  gap: 22px;
}

.why-path-card {
  display: grid;
  gap: 22px;
  padding: clamp(22px, 2.6vw, 34px);
  border: 1px solid var(--color-silver);
  border-radius: 24px;
  background: var(--color-white);
  box-shadow: var(--shadow-soft);
}

.why-path-head .card-kicker {
  margin-bottom: 8px;
}

.why-path-head h3 {
  margin: 0;
  font-family: "Manrope", Inter, "Avenir Next", "Helvetica Neue", Arial, sans-serif;
  font-size: clamp(1.5rem, 2.4vw, 2.1rem);
  font-weight: 760;
  letter-spacing: -0.03em;
  line-height: 1.05;
}

.why-path-flow {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr) auto minmax(0, 1fr);
  gap: 16px;
  align-items: stretch;
}

.why-path-stage {
  display: grid;
  align-content: start;
  gap: 8px;
  padding: 16px;
  border: 1px solid var(--color-silver);
  border-radius: 18px;
  background: var(--color-bg);
}

.why-path-stage figure {
  margin: 0 0 4px;
  overflow: hidden;
  border-radius: 12px;
}

.why-path-stage figure img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  border-radius: 12px;
}

.why-stage-label {
  color: var(--color-muted);
  font-size: 0.72rem;
  font-weight: 850;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.why-path-upgrade .why-stage-label,
.why-path-outcome .why-stage-label {
  color: var(--color-teal);
}

.why-path-stage strong {
  color: var(--color-text);
  font-size: 1.02rem;
  font-weight: 800;
  line-height: 1.2;
}

.why-path-stage p {
  margin: 0;
  font-size: 0.88rem;
  line-height: 1.5;
}

.why-path-outcome {
  border-color: rgba(0, 167, 167, 0.22);
  background: rgba(0, 167, 167, 0.07);
}

.why-path-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  align-self: center;
  color: var(--color-teal);
}

.why-path-arrow svg {
  width: 26px;
  height: 26px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.why-path-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  overflow: hidden;
  border-radius: 18px;
  background:
    radial-gradient(circle at 90% 0%, rgba(0, 167, 167, 0.28), rgba(0, 167, 167, 0) 42%),
    linear-gradient(145deg, #263238 0%, #1f2a2f 60%, #263238 100%);
  box-shadow: 0 18px 44px rgba(38, 50, 56, 0.22);
}

.why-path-metrics div {
  display: grid;
  gap: 6px;
  padding: 18px 20px;
}

.why-path-metrics div + div {
  border-left: 1px solid rgba(255, 255, 255, 0.1);
}

.why-path-metrics span {
  color: var(--color-teal);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.why-path-metrics strong {
  color: var(--color-white);
  font-size: clamp(1.15rem, 1.7vw, 1.5rem);
  font-weight: 850;
  letter-spacing: -0.02em;
  white-space: nowrap;
}

.why-path-metrics sup {
  position: relative;
  top: -0.55em;
  font-size: 0.5em;
}

.why-path-foot {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.why-path-footnote {
  max-width: 620px;
  margin: 0;
  font-size: 0.82rem;
  line-height: 1.5;
}

.why-path-foot .btn-text {
  font-weight: 800;
  white-space: nowrap;
}

.why-paths-disclaimer {
  margin-top: 24px;
}

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

.why-scale-note {
  width: min(760px, 100%);
  margin: 24px auto 0;
  font-size: 0.98rem;
  line-height: 1.6;
}

.why-value-section {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 38px;
  align-items: center;
}

.why-value-copy {
  display: grid;
  gap: 18px;
}

.why-value-copy h2 {
  margin: 0;
  font-family: "Manrope", Inter, "Avenir Next", "Helvetica Neue", Arial, sans-serif;
  font-size: clamp(1.8rem, 3vw, 3rem);
  font-weight: 760;
  letter-spacing: -0.035em;
  line-height: 1.05;
}

.why-value-copy > p:not(.eyebrow) {
  margin: 0;
  font-size: 1.04rem;
  line-height: 1.7;
}

.why-value-cluster {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 34px 28px;
  border: 1px solid var(--color-silver);
  border-radius: 24px;
  background: var(--color-white);
  box-shadow: var(--shadow-soft);
}

.why-cluster-node {
  padding: 13px 18px;
  border: 1px solid rgba(0, 167, 167, 0.22);
  border-radius: 999px;
  background: rgba(0, 167, 167, 0.07);
  color: var(--color-text);
  font-size: 0.95rem;
  font-weight: 800;
}

.why-value-cluster .why-path-arrow svg {
  width: 22px;
  height: 22px;
}

@media (max-width: 1080px) {
  .why-cost-grid,
  .why-outcome-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 820px) {
  .why-value-section {
    grid-template-columns: 1fr;
    gap: 26px;
  }

  .why-scale-grid {
    grid-template-columns: 1fr;
  }

  .why-path-flow {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .why-path-arrow svg {
    transform: rotate(90deg);
  }

  .why-path-metrics {
    grid-template-columns: 1fr;
  }

  .why-path-metrics div + div {
    border-left: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
  }

  .why-path-foot {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 560px) {
  .why-cost-grid,
  .why-outcome-grid {
    grid-template-columns: 1fr;
  }

  .why-path-card {
    border-radius: 20px;
  }
}

.why-outcome-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
  gap: 24px;
  align-items: stretch;
}

.why-outcome-figure {
  margin: 0;
  overflow: hidden;
  border-radius: 24px;
  box-shadow: var(--shadow-soft);
}

.why-outcome-figure img {
  width: 100%;
  height: 100%;
  min-height: 340px;
  object-fit: cover;
  border-radius: 24px;
}

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

@media (max-width: 820px) {
  .why-outcome-layout {
    grid-template-columns: 1fr;
  }

  .why-outcome-figure img {
    min-height: 0;
    aspect-ratio: 16 / 11;
  }
}

@media (max-width: 560px) {
  .why-outcome-layout .why-outcome-grid {
    grid-template-columns: 1fr;
  }
}

/* Upgrade-path outcome tags + simplified footer */
.why-path-foot {
  justify-content: flex-end;
}

.why-outcome-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-top: 6px;
}

.why-outcome-tag {
  padding: 6px 11px;
  border: 1px solid rgba(0, 167, 167, 0.28);
  border-radius: 999px;
  background: rgba(0, 167, 167, 0.09);
  color: var(--color-teal);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.01em;
  line-height: 1.2;
}

/* Section 7 — ROI bridge (contained deep-slate card) */
.why-roi-strip {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 32px;
  padding: clamp(28px, 3.4vw, 48px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 24px;
  background:
    radial-gradient(circle at 88% 6%, rgba(0, 167, 167, 0.26), rgba(0, 167, 167, 0) 38%),
    linear-gradient(145deg, #263238 0%, #1f2a2f 60%, #263238 100%);
  color: var(--color-white);
  box-shadow: 0 24px 60px rgba(38, 50, 56, 0.24);
}

.why-roi-strip .eyebrow {
  margin-bottom: 12px;
}

.why-roi-strip h2 {
  margin: 0 0 14px;
  max-width: 640px;
  font-family: "Manrope", Inter, "Avenir Next", "Helvetica Neue", Arial, sans-serif;
  font-size: clamp(1.7rem, 2.8vw, 2.6rem);
  font-weight: 760;
  letter-spacing: -0.035em;
  line-height: 1.05;
  color: var(--color-white);
}

.why-roi-strip p {
  margin: 0;
  max-width: 620px;
  color: rgba(255, 255, 255, 0.78);
}

.why-roi-strip-actions {
  display: grid;
  gap: 12px;
  justify-items: stretch;
  min-width: 230px;
}

@media (max-width: 820px) {
  .why-roi-strip {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .why-roi-strip-actions {
    min-width: 0;
  }
}

/* ===== Technology page ===== */
.tech-proof-tile p:empty { display: none; }

.tech-fineprint {
  width: min(820px, 100%);
  margin: 18px auto 0;
  color: var(--color-muted);
  font-size: 0.84rem;
  line-height: 1.55;
}

.tech-supporting {
  width: min(820px, 100%);
  margin: 22px auto 0;
  color: var(--color-muted);
  font-size: 0.98rem;
  line-height: 1.6;
}

.tech-compare {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  gap: 18px;
  align-items: stretch;
}

.tech-compare-card {
  display: grid;
  align-content: start;
  gap: 10px;
  padding: 26px;
  border: 1px solid var(--color-silver);
  border-radius: 24px;
  background: var(--color-white);
  box-shadow: 0 12px 34px rgba(32, 33, 36, 0.06);
}

.tech-compare-after {
  border-color: rgba(0, 167, 167, 0.22);
  background: rgba(0, 167, 167, 0.06);
}

.tech-compare-label {
  font-size: 0.72rem;
  font-weight: 850;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--color-muted);
}

.tech-compare-after .tech-compare-label { color: var(--color-teal); }

.tech-compare-card h3 {
  margin: 0;
  font-size: 1.12rem;
  letter-spacing: -0.01em;
}

.tech-compare-list {
  display: grid;
  gap: 9px;
  margin: 4px 0 0;
  padding: 0;
  list-style: none;
}

.tech-compare-list li {
  position: relative;
  padding-left: 26px;
  color: var(--color-muted);
  font-size: 0.92rem;
  line-height: 1.45;
}

.tech-compare-list li::before {
  position: absolute;
  left: 0;
  top: 1px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 17px;
  height: 17px;
  border-radius: 999px;
  background: rgba(0, 167, 167, 0.12);
  color: var(--color-teal);
  font-size: 0.7rem;
  font-weight: 900;
  content: "\2713";
}

.tech-compare-before .tech-compare-list li::before {
  background: rgba(95, 102, 107, 0.12);
  color: var(--color-muted);
  content: "\2022";
}

/* 3D model embed */
.tech-model-frame {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  border: 1px solid var(--color-silver);
  border-radius: 24px;
  background: var(--color-slate);
  box-shadow: var(--shadow-soft);
}

.tech-model-poster {
  position: absolute;
  inset: 0;
  cursor: pointer;
  border: 0;
  padding: 0;
}

.tech-model-poster img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.tech-model-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(38, 50, 56, 0.18), rgba(38, 50, 56, 0.52));
}

.tech-model-play {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 22px;
  border-radius: 999px;
  background: var(--color-teal);
  color: var(--color-white);
  font-family: var(--font-sans);
  font-size: 1rem;
  font-weight: 800;
  box-shadow: 0 12px 32px rgba(0, 167, 167, 0.34);
  transition: transform 180ms ease, background 180ms ease;
}

.tech-model-poster:hover .tech-model-play { transform: translate(-50%, -50%) translateY(-1px); background: var(--color-teal-hover); }

.tech-model-play svg { width: 20px; height: 20px; fill: currentColor; }

.tech-model-iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

.tech-model-foot {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-top: 18px;
}

.tech-model-foot .tech-fineprint { margin: 0; flex: 1 1 420px; text-align: left; }

.tech-outcome-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  align-items: stretch;
}

.tech-outcome-grid .solution-card { height: 100%; }

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

.tech-warranty-card {
  display: grid;
  gap: 10px;
  justify-items: start;
  padding: 28px;
  border: 1px solid var(--color-silver);
  border-radius: 18px;
  background: var(--color-white);
  box-shadow: 0 12px 34px rgba(32, 33, 36, 0.06);
}

.tech-warranty-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 999px;
  background: rgba(0, 167, 167, 0.1);
  color: var(--color-teal);
  box-shadow: inset 0 0 0 1px rgba(0, 167, 167, 0.18);
}

.tech-warranty-icon svg { width: 20px; height: 20px; fill: none; stroke: currentColor; stroke-linecap: round; stroke-linejoin: round; stroke-width: 1.9; }

.tech-warranty-card h3 { margin: 0; font-size: 1.05rem; }

.tech-warranty-card strong {
  color: var(--color-teal);
  font-size: 0.95rem;
  font-weight: 850;
  letter-spacing: 0.01em;
}

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

@media (max-width: 820px) {
  .tech-compare { grid-template-columns: 1fr; }
  .tech-compare .why-path-arrow svg { transform: rotate(90deg); }
  .tech-warranty-grid { grid-template-columns: 1fr; }
  .tech-model-frame { aspect-ratio: auto; height: 600px; }
  .tech-model-foot { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 560px) {
  .tech-outcome-grid { grid-template-columns: 1fr; }
}

.tech-flatpack-figure {
  margin: 0 0 26px;
  overflow: hidden;
  border-radius: 24px;
  box-shadow: var(--shadow-soft);
}

.tech-flatpack-figure img {
  width: 100%;
  aspect-ratio: 16 / 7;
  object-fit: cover;
}

@media (max-width: 760px) {
  .tech-flatpack-figure img { aspect-ratio: 16 / 10; }
}

/* ===== About Us page ===== */
.tech-proof-tile h3:empty { display: none; }

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

.about-why-grid .pain-card { height: 100%; }

.about-supporting {
  width: min(820px, 100%);
  margin: 24px auto 0;
  font-size: 1.02rem;
  line-height: 1.6;
}

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

.about-brand-card {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 28px;
  border: 1px solid var(--color-silver);
  border-radius: 24px;
  background: var(--color-white);
  box-shadow: 0 12px 34px rgba(32, 33, 36, 0.06);
}

.about-brand-card--focus {
  border-color: rgba(0, 167, 167, 0.3);
  box-shadow: 0 18px 44px rgba(0, 167, 167, 0.14);
}

.about-brand-card h3 {
  margin: 0;
  font-size: 1.3rem;
  letter-spacing: -0.02em;
}

.about-brand-body {
  margin: 0;
  color: var(--color-muted);
  font-size: 0.92rem;
  line-height: 1.55;
}

.about-brand-list { margin: 2px 0 0; }

.about-brand-cta {
  margin-top: auto;
  padding-top: 6px;
}

.about-foundation {
  width: min(900px, 100%);
  margin: 26px auto 0;
  padding: 16px 22px;
  border: 1px solid rgba(0, 167, 167, 0.2);
  border-radius: 16px;
  background: rgba(0, 167, 167, 0.06);
  color: var(--color-text);
  font-size: 0.92rem;
  line-height: 1.55;
  text-align: center;
}

.about-foundation strong { color: var(--color-teal); }

.about-tech-cta { margin-top: 6px; }

@media (max-width: 820px) {
  .about-why-grid { grid-template-columns: 1fr; }
  .about-brand-grid { grid-template-columns: 1fr; }
}

/* ===== Terms & Conditions ===== */
.terms-page {
  width: var(--container);
  margin: 0 auto;
  padding: 150px 0 90px;
}

.terms-head {
  width: min(820px, 100%);
  margin-bottom: 40px;
}

.terms-head h1 { margin: 6px 0 14px; }

.terms-sub {
  margin: 0;
  font-size: 1.08rem;
  color: var(--color-muted);
}

.terms-dates {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 24px;
  margin: 18px 0 0;
  font-size: 0.9rem;
  font-weight: 760;
  color: var(--color-text);
}

.terms-counsel-note {
  margin: 16px 0 0;
  padding: 12px 16px;
  border: 1px solid rgba(0, 167, 167, 0.2);
  border-radius: 12px;
  background: rgba(0, 167, 167, 0.06);
  font-size: 0.9rem;
  line-height: 1.55;
  color: var(--color-text);
}

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

.terms-toc {
  position: sticky;
  top: 96px;
  align-self: start;
  max-height: calc(100vh - 120px);
  overflow-y: auto;
  padding: 22px;
  border: 1px solid var(--color-silver);
  border-radius: 16px;
  background: var(--color-white);
  box-shadow: 0 12px 34px rgba(32, 33, 36, 0.06);
}

.terms-toc-title {
  margin: 0 0 12px;
  font-size: 0.72rem;
  font-weight: 850;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--color-muted);
}

.terms-toc-list {
  margin: 0;
  padding-left: 20px;
  display: grid;
  gap: 8px;
}

.terms-toc-list a {
  color: var(--color-text);
  font-size: 0.86rem;
  line-height: 1.4;
  transition: color 160ms ease;
}

.terms-toc-list a:hover { color: var(--color-teal); }

.terms-toc-mobile { display: none; }

.terms-content { width: min(760px, 100%); }

.legal-section {
  padding: 28px 0;
  border-top: 1px solid var(--color-silver);
  scroll-margin-top: 100px;
}

.legal-section:first-of-type { padding-top: 0; border-top: 0; }

.legal-section h2 {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 14px;
  font-family: "Manrope", Inter, "Avenir Next", "Helvetica Neue", Arial, sans-serif;
  font-size: 1.4rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.2;
}

.legal-section-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  flex: 0 0 30px;
  border-radius: 999px;
  background: rgba(0, 167, 167, 0.1);
  color: var(--color-teal);
  font-size: 0.82rem;
  font-weight: 850;
}

.legal-section p {
  margin: 0 0 12px;
  font-size: 1rem;
  line-height: 1.7;
}

.legal-section p:last-child { margin-bottom: 0; }

.legal-section a { color: var(--color-teal); font-weight: 720; }

.terms-list {
  margin: 0 0 12px;
  padding-left: 22px;
  display: grid;
  gap: 7px;
}

.terms-list li {
  color: var(--color-muted);
  font-size: 1rem;
  line-height: 1.55;
}

@media (max-width: 900px) {
  .terms-page { padding-top: 118px; }

  .terms-layout { grid-template-columns: 1fr; gap: 0; }

  .terms-toc { display: none; }

  .terms-toc-mobile {
    display: block;
    margin-bottom: 26px;
    border: 1px solid var(--color-silver);
    border-radius: 14px;
    background: var(--color-white);
    box-shadow: 0 12px 34px rgba(32, 33, 36, 0.06);
  }

  .terms-toc-mobile summary {
    padding: 15px 18px;
    font-family: var(--font-sans);
    font-weight: 800;
    cursor: pointer;
  }

  .terms-toc-mobile .terms-toc-list { padding: 0 18px 18px 38px; }

  .terms-content { width: 100%; }
}

/* ===== Q&A page ===== */
.faq-search {
  display: flex;
  align-items: center;
  gap: 10px;
  width: min(440px, 100%);
  margin: 8px 0 4px;
  padding: 0 16px;
  border: 1px solid var(--color-silver);
  border-radius: 999px;
  background: var(--color-white);
  box-shadow: 0 8px 24px rgba(32, 33, 36, 0.05);
}

.faq-search svg {
  width: 18px;
  height: 18px;
  flex: none;
  fill: none;
  stroke: var(--color-muted);
  stroke-width: 1.9;
  stroke-linecap: round;
}

.faq-search input {
  width: 100%;
  min-height: 50px;
  padding: 0;
  border: 0;
  background: transparent;
  font-family: var(--font-sans);
  font-size: 0.98rem;
}

.faq-search input:focus { outline: none; }

.faq-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 32px;
}

.faq-chip {
  min-height: 40px;
  padding: 0 16px;
  border: 1px solid var(--color-silver);
  border-radius: 999px;
  background: var(--color-white);
  color: var(--color-text);
  font-family: var(--font-sans);
  font-weight: 760;
  font-size: 0.88rem;
  cursor: pointer;
  transition: background 160ms ease, color 160ms ease, border-color 160ms ease;
}

.faq-chip:hover { border-color: var(--color-teal); color: var(--color-teal); }
.faq-chip.is-active { background: var(--color-teal); border-color: var(--color-teal); color: var(--color-white); }

.faq-groups { display: grid; gap: 42px; }

.faq-group-title {
  margin: 0 0 14px;
  font-family: "Manrope", Inter, "Avenir Next", "Helvetica Neue", Arial, sans-serif;
  font-size: 1.35rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.faq-group-items { display: grid; gap: 10px; }

.faq-item.is-match { border-color: rgba(0, 167, 167, 0.45); }

.faq-answer { padding: 2px 18px 18px; }
.faq-answer p { margin: 0; padding: 0; line-height: 1.6; }
.faq-answer p + p { margin-top: 12px; }
.faq-answer a { color: var(--color-teal); font-weight: 780; }

.faq-inline-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 20px;
}

.faq-back-top { display: none; }

.faq-no-results {
  margin: 26px 0 0;
  padding: 24px;
  border: 1px dashed var(--color-silver);
  border-radius: 14px;
  text-align: center;
  color: var(--color-muted);
}

.faq-contact-section { width: min(820px, calc(100vw - 40px)); }

.faq-contact-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  padding: 30px;
  border: 1px solid var(--color-silver);
  border-radius: 24px;
  background: var(--color-white);
  box-shadow: var(--shadow-soft);
}

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

.faq-contact-form label {
  display: grid;
  gap: 6px;
  font-family: var(--font-sans);
  font-size: 0.88rem;
  font-weight: 760;
}

.faq-contact-form label span { justify-content: flex-start; }

.faq-contact-submit {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 18px;
}

.faq-contact-submit .form-status { margin: 0; color: var(--color-teal); font-weight: 720; }

/* Keep error/pending state colors authoritative over context-specific teal. */
.faq-contact-submit .form-status[data-state="error"],
.reservation-form .form-status[data-state="error"] { color: #c0392b; }
.faq-contact-submit .form-status[data-state="pending"],
.reservation-form .form-status[data-state="pending"] { color: var(--color-muted); }

@media (max-width: 820px) {
  .faq-back-top {
    display: inline-block;
    margin-top: 16px;
    color: var(--color-teal);
    font-weight: 760;
    font-size: 0.88rem;
  }
  .faq-chips {
    flex-wrap: nowrap;
    overflow-x: auto;
    margin-inline: calc(-1 * (100vw - var(--container)) / 2);
    padding: 2px 20px 10px;
    scrollbar-width: none;
  }
  .faq-chips::-webkit-scrollbar { display: none; }
  .faq-chip { flex: 0 0 auto; }
}

@media (max-width: 640px) {
  .faq-contact-form { grid-template-columns: 1fr; }
}

/* ===== Content-quality pass ===== */
.home-paths-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.home-path-card {
  display: grid;
  gap: 10px;
  align-content: start;
  padding: 26px;
  border: 1px solid var(--color-silver);
  border-radius: 18px;
  background: var(--color-white);
  box-shadow: 0 12px 34px rgba(32, 33, 36, 0.06);
}

.home-path-card h3 { margin: 0; font-size: 1.12rem; letter-spacing: -0.01em; }
.home-path-card p { margin: 0; color: var(--color-muted); font-size: 0.94rem; line-height: 1.5; }
.home-path-card .btn-text { margin-top: 2px; }

.product-msrp-note {
  margin: 0 auto;
  color: var(--color-muted);
  font-size: 0.9rem;
  line-height: 1.55;
}

.calculator-clarity-note {
  margin: 2px 0 0;
  padding: 13px 15px;
  border: 1px solid rgba(0, 167, 167, 0.4);
  border-radius: 14px;
  background: rgba(0, 167, 167, 0.12);
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.82rem;
  line-height: 1.55;
}

.reservation-next-steps {
  counter-reset: rnext;
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.reservation-next-steps li {
  position: relative;
  display: grid;
  gap: 3px;
  padding: 18px 18px 18px 60px;
  border: 1px solid var(--color-silver);
  border-radius: 16px;
  background: var(--color-white);
  box-shadow: 0 12px 34px rgba(32, 33, 36, 0.05);
}

.reservation-next-steps li::before {
  counter-increment: rnext;
  content: counter(rnext);
  position: absolute;
  left: 18px;
  top: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border-radius: 999px;
  background: rgba(0, 167, 167, 0.12);
  color: var(--color-teal);
  font-weight: 850;
  font-size: 0.86rem;
}

.reservation-next-steps li strong { color: var(--color-text); font-size: 1.02rem; }
.reservation-next-steps li span { color: var(--color-muted); font-size: 0.92rem; line-height: 1.5; }

.reservation-next-note {
  width: min(820px, 100%);
  margin: 18px 0 0;
  color: var(--color-muted);
  font-size: 0.9rem;
  line-height: 1.55;
}

.tech-scope-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  align-items: stretch;
}

@media (max-width: 820px) {
  .home-paths-grid { grid-template-columns: 1fr; }
  .tech-scope-grid { grid-template-columns: 1fr; }
}

.footer-grid .footer-contact-email,
.footer-grid .footer-contact-phone {
  display: inline-block;
  color: var(--color-teal);
  font-weight: 760;
}

.footer-grid .footer-contact-email:hover,
.footer-grid .footer-contact-phone:hover { color: var(--color-white); }

/* ===== Readability pass (typography) ===== */
/* Card / description body text -> >=16px with comfortable line-height */
.pain-card p,
.solution-card p,
.step-card p,
.compact-card p,
.goal-card p,
.why-path-stage p,
.tech-proof-tile p,
.home-path-card p,
.about-brand-body,
.scenario-card p,
.product-card p,
.faq-answer p,
.reservation-next-steps li span,
.why-outcome-grid .solution-card p {
  font-size: 0.95rem;
  line-height: 1.55;
}

/* Card headings -> ~20px, with a touch more space below */
.pain-card h3,
.solution-card h3,
.step-card h3,
.compact-card h3,
.goal-card h3,
.tech-proof-tile h3,
.home-path-card h3,
.scenario-card h3,
.product-card h3 {
  font-size: 1.18rem;
  line-height: 1.18;
  margin-bottom: 8px;
}

/* FAQ: slightly larger question + more breathing room */
.faq-item summary { font-size: 1.05rem; line-height: 1.4; }
.faq-group-items { gap: 12px; }
.faq-answer { line-height: 1.62; }

/* Reservation step title clarity */
.reservation-next-steps li strong { font-size: 1.05rem; }

/* Cabinova 158 Zone site-map image (replaces CSS mini-plan) */
.shared-zone-map {
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(217, 221, 226, 0.88);
  border-radius: 26px;
  background: var(--color-white);
  box-shadow: 0 18px 50px rgba(32, 33, 36, 0.08);
}

.shared-zone-map img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 26px;
}

/* Early-reservation 10% off callout (hero) */
.reservation-offer{margin-top:14px;padding:12px 16px;border-radius:10px;background:rgba(0,167,167,0.10);border:1px solid rgba(0,167,167,0.35);color:#0f3b3b;font-size:0.95rem;line-height:1.5;}
.reservation-offer strong{color:#00a7a7;}

.reservation-offer p{margin:0 0 8px;}
.reservation-offer p:last-child{margin-bottom:0;}
.reservation-offer-title strong{font-size:1.05rem;letter-spacing:0.01em;}
.reservation-offer-risk{color:#0f3b3b;}

.footer-address{font-style:normal;margin:14px 0 0;line-height:1.5;font-size:0.9rem;opacity:0.8;}
.footer-addr-line{display:block;margin-top:6px;}
.footer-addr-region{display:block;font-size:0.68rem;font-weight:800;letter-spacing:0.08em;text-transform:uppercase;opacity:0.7;}
