:root {
  color-scheme: light;
  --ink: #00305f;
  --ink-2: #064c86;
  --muted: #5d626b;
  --paper: #ffffff;
  --soft: #f2f8fd;
  --soft-2: #eaf5fc;
  --blue: #0076bd;
  --blue-2: #0094d9;
  --blue-3: #66c6f2;
  --heat: #f04a2a;
  --heat-2: #f7ac18;
  --grey: #56585f;
  --line: rgba(0, 48, 95, 0.13);
  --shadow: 0 18px 45px rgba(0, 48, 95, 0.12);
  --star: #f7ac18;
  --success: #0094d9;
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

html,
body {
  width: 100%;
  min-height: 100%;
  margin: 0;
}

body {
  overflow-x: hidden;
  background: var(--paper);
  color: var(--ink);
  font-family: Inter, "Segoe UI", Arial, sans-serif;
  line-height: 1.5;
  letter-spacing: 0;
}

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

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

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

button,
input,
select {
  letter-spacing: 0;
}

.svg-sprite {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid var(--line);
  box-shadow: 0 10px 28px rgba(0, 48, 95, 0.07);
  backdrop-filter: blur(12px);
}

.topbar {
  background: var(--ink);
  color: var(--paper);
  font-size: 14px;
}

.topbar-inner,
.main-nav,
.section-inner,
.brand-band-inner,
.cta-inner,
.footer-inner,
.footer-bottom,
.hero-inner,
.brand-marquee-inner,
.quote-hero-inner {
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
}

.topbar-inner {
  min-height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
}

.topbar-inner span,
.topbar-inner a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
}

.topbar svg {
  width: 16px;
  height: 16px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.topbar-inner a {
  font-weight: 800;
}

.topbar-inner > a:last-child {
  margin-left: auto;
}

.main-nav {
  min-height: 92px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
}

.logo-link {
  display: inline-flex;
  align-items: center;
}

.logo-link img {
  width: 250px;
  height: auto;
}

.nav-menu {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 20px;
  padding: 0;
  margin: 0;
  list-style: none;
  color: var(--ink);
  font-size: 15px;
  font-weight: 750;
}

.nav-menu a {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: 44px;
}

.nav-menu a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 7px;
  width: 100%;
  height: 3px;
  transform: scaleX(0);
  transform-origin: left;
  background: var(--heat);
  transition: transform 180ms ease;
}

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

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  gap: 5px;
  flex-direction: column;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  color: var(--ink);
  cursor: pointer;
}

.nav-toggle span {
  width: 20px;
  height: 2px;
  background: currentColor;
}

.button,
.nav-cta,
.text-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 44px;
  border-radius: var(--radius);
  font-weight: 850;
}

.button,
.nav-cta {
  padding: 12px 22px;
  border: 1px solid transparent;
}

.button-primary,
.nav-cta {
  background: var(--blue-2);
  color: var(--paper);
  box-shadow: 0 14px 26px rgba(0, 148, 217, 0.24);
}

.nav-cta {
  background: var(--heat);
  box-shadow: 0 14px 26px rgba(240, 74, 42, 0.24);
}

.button-secondary,
.button-outline {
  background: var(--paper);
  color: var(--blue);
  border-color: rgba(0, 118, 189, 0.24);
}

.button-icon {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
}

.text-link {
  min-height: 32px;
  color: var(--blue);
  justify-content: flex-start;
}

.hero {
  position: relative;
  min-height: 660px;
  overflow: hidden;
  background: var(--paper);
}

.hero-waves {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  color: rgba(0, 48, 95, 0.12);
  pointer-events: none;
}

.hero-waves path {
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
}

.hero-inner {
  position: relative;
  z-index: 1;
  min-height: 660px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 585px;
  align-items: center;
  gap: 64px;
  padding: 74px 0 90px;
}

.hero-copy {
  max-width: 610px;
}

.hero-brand-logo {
  width: min(300px, 100%);
  height: auto;
  margin: 0 0 20px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--blue);
  font-size: 14px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0;
}

.pill {
  display: inline-flex;
  align-items: center;
  width: max-content;
  min-height: 34px;
  padding: 7px 16px;
  border-radius: 999px;
  background: var(--soft);
  color: var(--ink);
  text-transform: none;
}

.hero h1 {
  margin: 0;
  max-width: 650px;
  color: var(--ink);
  font-size: 64px;
  line-height: 1.02;
  letter-spacing: 0;
}

.hero-lede {
  max-width: 520px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.8;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

.hero-showcase {
  position: relative;
  min-height: 500px;
}

.showcase-image,
.showcase-card,
.comfort-card {
  position: absolute;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.showcase-image {
  top: 0;
  left: 0;
  width: 278px;
  height: 278px;
  display: grid;
  place-items: center;
  overflow: hidden;
  background: var(--soft-2);
}

.showcase-image img {
  width: 92%;
  height: 92%;
  object-fit: contain;
}

.showcase-card {
  display: grid;
  align-content: center;
  justify-items: center;
  text-align: center;
  color: var(--paper);
}

.showcase-card svg {
  width: 78px;
  height: 78px;
  margin-bottom: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.65;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.showcase-card span {
  display: block;
  font-size: 16px;
}

.showcase-card strong {
  display: block;
  margin-top: 4px;
  font-size: 22px;
}

.phone-card {
  top: 0;
  right: 0;
  width: 288px;
  height: 278px;
  background: var(--ink);
}

.booking-card {
  left: 0;
  bottom: 0;
  width: 288px;
  height: 278px;
  background: var(--blue);
}

.review-card-mini {
  left: 50%;
  top: 278px;
  z-index: 4;
  width: 168px;
  min-height: 148px;
  padding: 18px;
  background: var(--soft);
  color: var(--ink);
  transform: translate(-50%, -50%);
}

.review-card-mini div {
  display: flex;
  gap: 3px;
  margin: 8px 0;
  color: var(--star);
}

.review-card-mini svg {
  width: 18px;
  height: 18px;
  margin: 0;
  fill: currentColor;
  stroke: currentColor;
}

.review-card-mini span {
  color: var(--muted);
  font-size: 13px;
}

.comfort-card {
  right: 0;
  bottom: 0;
  width: 278px;
  height: 278px;
  display: grid;
  align-items: end;
  padding: 24px;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(0, 48, 95, 0.76)),
    linear-gradient(135deg, #dff2fb 0%, #ffffff 48%, #f7ac18 100%);
  color: var(--paper);
}

.comfort-card::before {
  content: "";
  position: absolute;
  inset: 42px 56px 82px;
  border: 2px solid rgba(0, 48, 95, 0.18);
  border-radius: 50%;
  transform: rotate(-16deg);
}

.comfort-card::after {
  content: "";
  position: absolute;
  left: 58px;
  right: 58px;
  bottom: 100px;
  height: 70px;
  border-radius: 999px 999px 30px 30px;
  background: rgba(0, 148, 217, 0.22);
}

.comfort-card span {
  position: relative;
  z-index: 1;
  font-size: 21px;
  font-weight: 900;
}

.quick-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  width: min(1180px, calc(100% - 48px));
  margin: -56px auto 0;
  position: relative;
  z-index: 2;
  overflow: hidden;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.quick-strip a {
  min-height: 112px;
  display: grid;
  grid-template-columns: 50px 1fr;
  align-items: center;
  gap: 16px;
  padding: 22px;
  color: var(--ink);
  font-size: 18px;
  font-weight: 900;
  border-right: 1px solid var(--line);
}

.quick-strip a:last-child {
  border-right: 0;
}

.quick-icon {
  width: 50px;
  height: 50px;
  display: grid;
  place-items: center;
  border-radius: var(--radius);
  background: var(--soft);
  color: var(--blue);
}

.quick-icon svg,
.service-visual svg,
.proof-icon svg,
.reason-grid svg,
.plan-card li svg,
.guide-visual svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.brand-marquee {
  padding: 38px 0 8px;
  background: var(--paper);
}

.brand-marquee-inner {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: center;
  gap: 24px;
  overflow: hidden;
}

.brand-marquee p {
  margin: 0;
  color: var(--ink);
  font-size: 18px;
  font-weight: 900;
  white-space: nowrap;
}

.brand-track-wrap {
  position: relative;
  overflow: hidden;
  padding: 8px 0;
}

.brand-track-wrap::before,
.brand-track-wrap::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: 1;
  width: 64px;
  pointer-events: none;
}

.brand-track-wrap::before {
  left: 0;
  background: linear-gradient(90deg, var(--paper), rgba(255, 255, 255, 0));
}

.brand-track-wrap::after {
  right: 0;
  background: linear-gradient(270deg, var(--paper), rgba(255, 255, 255, 0));
}

.brand-track {
  display: flex;
  width: max-content;
  align-items: center;
  gap: 18px;
  animation: brand-scroll 26s linear infinite;
}

.brand-logo {
  min-width: 160px;
  height: 64px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  box-shadow: 0 10px 24px rgba(0, 48, 95, 0.07);
  font-size: 26px;
  font-weight: 950;
  text-transform: uppercase;
  white-space: nowrap;
}

.daikin {
  color: #0b96d4;
  font-style: italic;
}

.hitachi {
  color: #1d1d1f;
  letter-spacing: 1px;
}

.toshiba {
  color: #ef1d25;
}

.lg span {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #c60065;
  color: var(--paper);
  font-size: 23px;
}

.panasonic {
  color: #1267b1;
  text-transform: none;
}

.samsung {
  min-width: 190px;
  color: var(--paper);
  background: #145baa;
  border-radius: 50%;
  transform: skew(-10deg);
}

.mitsubishi {
  color: var(--ink);
  font-size: 20px;
}

.gree {
  color: #0c8f59;
}

.portable {
  color: var(--paper);
  background: linear-gradient(135deg, var(--blue), var(--heat));
}

@keyframes brand-scroll {
  from {
    transform: translateX(0);
  }

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

.section {
  padding: 92px 0;
  scroll-margin-top: 126px;
}

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

.section-heading-center {
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.section-heading-center .pill {
  margin-right: auto;
  margin-left: auto;
}

.section-heading-wide {
  max-width: 860px;
}

.section-heading h2,
.section-copy h2,
.cta-band h2 {
  margin: 0;
  color: var(--ink);
  font-size: 42px;
  line-height: 1.1;
}

.section-heading p:not(.eyebrow),
.section-copy > p:not(.eyebrow),
.cta-band p:not(.eyebrow) {
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 18px;
}

.section-heading .button {
  margin-top: 20px;
}

.proof-section {
  background: var(--paper);
  padding-top: 70px;
}

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

.proof-card {
  min-height: 260px;
  display: grid;
  align-content: start;
  gap: 14px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--soft);
}

.proof-card:nth-child(even) {
  background: var(--paper);
  box-shadow: 0 14px 32px rgba(0, 48, 95, 0.07);
}

.proof-icon {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border-radius: var(--radius);
  background: var(--ink);
  color: var(--paper);
}

.proof-card:nth-child(3) .proof-icon {
  background: var(--heat);
}

.proof-card h3,
.process-step h3,
.area-copy h3,
.guidance-card h3 {
  margin: 0;
  color: var(--ink);
  font-size: 21px;
  line-height: 1.2;
}

.proof-card p,
.process-step p,
.area-copy p,
.guidance-card p {
  margin: 0;
  color: var(--muted);
}

.services-section {
  background: var(--paper);
  padding-top: 76px;
}

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

.process-timeline {
  counter-reset: process;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 16px;
}

.process-step {
  position: relative;
  display: grid;
  align-content: start;
  gap: 13px;
  min-height: 250px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  box-shadow: 0 14px 32px rgba(0, 48, 95, 0.07);
}

.process-step::before {
  content: "";
  position: absolute;
  top: 38px;
  right: -18px;
  z-index: 1;
  width: 20px;
  height: 2px;
  background: var(--heat);
}

.process-step:last-child::before {
  display: none;
}

.process-step span {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--ink);
  color: var(--paper);
  font-size: 14px;
  font-weight: 950;
}

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

.product-page-section {
  background: var(--paper);
}

.brand-selector {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
  margin-bottom: 28px;
}

.brand-select-card {
  display: grid;
  gap: 10px;
  align-content: center;
  justify-items: center;
  min-height: 118px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  color: var(--ink);
  box-shadow: 0 12px 28px rgba(0, 48, 95, 0.07);
  cursor: pointer;
}

.brand-select-card[aria-selected="true"] {
  border-color: rgba(240, 74, 42, 0.48);
  background: linear-gradient(180deg, #ffffff 0%, #fff6f2 100%);
  box-shadow: 0 16px 34px rgba(240, 74, 42, 0.16);
}

.brand-select-card .brand-logo {
  min-width: auto;
  width: max-content;
  max-width: 100%;
  height: 42px;
  padding: 0 14px;
  box-shadow: none;
  font-size: 18px;
}

.brand-select-card .mitsubishi {
  font-size: 13px;
}

.brand-select-card small {
  color: var(--muted);
  font-size: 12px;
  font-weight: 850;
  text-align: center;
}

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

.product-panel {
  display: grid;
  gap: 24px;
}

.product-panel-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 18px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--soft);
}

.product-panel-head h2 {
  margin: 0 0 8px;
  color: var(--ink);
  font-size: 30px;
}

.product-panel-head p {
  max-width: 660px;
  margin: 0;
  color: var(--muted);
}

.product-count {
  flex: 0 0 auto;
  color: var(--heat);
  font-weight: 950;
}

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

.product-detail-card {
  display: grid;
  grid-template-rows: 180px 1fr auto;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  box-shadow: 0 14px 32px rgba(0, 48, 95, 0.08);
}

.product-detail-card img {
  width: 100%;
  height: 100%;
  padding: 18px;
  object-fit: contain;
  background: var(--soft);
}

.product-detail-body {
  padding: 20px 20px 8px;
}

.product-detail-body h3 {
  margin: 0 0 10px;
  color: var(--ink);
  font-size: 20px;
  line-height: 1.25;
}

.product-detail-body p {
  margin: 0;
  color: var(--muted);
}

.product-brand-tag {
  display: inline-flex;
  margin: 0 0 10px;
  color: var(--blue);
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
}

.product-detail-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 18px 20px 20px;
}

.product-price {
  color: var(--ink);
  font-size: 22px;
  font-weight: 950;
  white-space: nowrap;
}

.product-page-note {
  margin-top: 24px;
  padding: 18px;
  border-left: 4px solid var(--heat);
  border-radius: var(--radius);
  background: var(--soft);
  color: var(--muted);
}

.product-page-note strong {
  color: var(--ink);
}

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

.product-brand-card {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  box-shadow: 0 14px 32px rgba(0, 48, 95, 0.08);
}

.product-brand-head {
  display: grid;
  gap: 12px;
  margin-bottom: 18px;
}

.product-brand-head .brand-logo {
  min-width: auto;
  width: max-content;
  max-width: 100%;
  height: 48px;
  padding: 0 16px;
  box-shadow: none;
  font-size: 20px;
}

.product-brand-head .samsung {
  min-width: 150px;
  border-radius: 999px;
}

.product-brand-head .mitsubishi {
  font-size: 16px;
}

.product-brand-head p {
  margin: 0;
  color: var(--muted);
  font-weight: 750;
}

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

.product-list li {
  position: relative;
  min-height: 44px;
  display: grid;
  grid-template-columns: 82px 1fr;
  grid-template-rows: auto auto;
  column-gap: 12px;
  row-gap: 5px;
  align-items: center;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fbfdff;
  color: var(--ink-2);
  font-size: 14px;
  font-weight: 750;
}

.product-list img {
  grid-row: 1 / 3;
  width: 82px;
  height: 58px;
  object-fit: contain;
  border-radius: var(--radius);
  background: var(--soft);
}

.product-list span {
  align-self: end;
}

.product-list strong {
  align-self: start;
  color: var(--blue);
  font-size: 16px;
  font-weight: 950;
}

.service-grid,
.plan-grid,
.review-grid,
.guide-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.service-card,
.plan-card,
.review-card,
.guide-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  box-shadow: 0 14px 32px rgba(0, 48, 95, 0.08);
}

.service-card {
  padding: 24px;
}

.service-card-blue {
  background: var(--blue);
  color: var(--paper);
}

.service-card-blue p,
.service-card-blue .text-link {
  color: rgba(255, 255, 255, 0.84);
}

.service-visual {
  height: 210px;
  display: grid;
  place-items: center;
  margin-bottom: 22px;
  border-radius: var(--radius);
  background: var(--soft);
}

.service-photo {
  overflow: hidden;
  padding: 0;
  background: var(--soft-2);
}

.service-photo img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.service-photo-installation img {
  object-position: center 45%;
}

.service-photo-repair img {
  object-position: center 54%;
}

.service-photo-maintenance img {
  object-position: center 48%;
}

.visual-install img {
  width: 94%;
  height: 94%;
  object-fit: contain;
}

.visual-icon {
  color: var(--blue);
}

.visual-icon svg {
  width: 72px;
  height: 72px;
}

.service-card-blue .visual-icon {
  color: var(--paper);
  background: rgba(255, 255, 255, 0.12);
}

.service-card h3,
.reason-grid h3,
.plan-card h3,
.guide-card h3,
.question-panel h3 {
  margin: 0;
  color: inherit;
  font-size: 24px;
  line-height: 1.2;
}

.service-card p,
.reason-grid p,
.plan-card p,
.review-card blockquote,
.guide-card p {
  color: var(--muted);
}

.service-card.service-card-blue p {
  color: rgba(255, 255, 255, 0.86);
}

.service-card.service-card-blue .text-link {
  color: var(--paper);
}

.brand-band {
  background: var(--ink);
  color: var(--paper);
  padding: 28px 0;
}

.brand-band-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand-band p {
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  font-weight: 850;
}

.brand-band ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 12px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.brand-band li {
  padding: 9px 13px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: var(--radius);
  color: rgba(255, 255, 255, 0.9);
  font-weight: 800;
}

.areas-section {
  background: var(--paper);
}

.areas-layout {
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  gap: 28px;
  align-items: start;
}

.area-copy {
  position: sticky;
  top: 132px;
  display: grid;
  gap: 16px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--ink);
  color: var(--paper);
}

.area-copy h3,
.area-copy p {
  color: inherit;
}

.area-copy p {
  color: rgba(255, 255, 255, 0.82);
}

.area-copy .button {
  width: max-content;
  background: var(--paper);
  color: var(--ink);
}

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

.area-chip-grid li {
  min-height: 58px;
  display: flex;
  align-items: center;
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--soft);
  color: var(--ink-2);
  font-weight: 850;
}

.why-section,
.plans-section,
.faq-section {
  background: var(--soft);
}

.split-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  align-items: center;
  gap: 54px;
}

.split-layout-reverse {
  grid-template-columns: 1.08fr 0.92fr;
}

.visual-panel {
  position: relative;
  min-height: 500px;
  display: grid;
  place-items: center;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(135deg, #eaf5fc, var(--paper));
}

.visual-panel img {
  width: 90%;
  height: auto;
  object-fit: contain;
}

.visual-caption {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 24px;
  display: grid;
  gap: 4px;
  padding: 18px;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 16px 34px rgba(0, 48, 95, 0.12);
}

.visual-caption strong {
  font-size: 20px;
}

.visual-caption span {
  color: var(--muted);
}

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

.reason-grid article {
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
}

.reason-grid svg {
  color: var(--blue);
  margin-bottom: 14px;
}

.price-section {
  background: var(--paper);
}

.comparison-table-wrap {
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  box-shadow: var(--shadow);
}

.comparison-table {
  width: 100%;
  min-width: 920px;
  border-collapse: collapse;
  text-align: left;
}

.comparison-table th,
.comparison-table td {
  padding: 20px;
  vertical-align: top;
  border-bottom: 1px solid var(--line);
}

.comparison-table thead th {
  background: var(--ink);
  color: var(--paper);
  font-size: 15px;
}

.comparison-table tbody th {
  color: var(--ink);
  font-size: 17px;
}

.comparison-table td strong {
  display: block;
  color: var(--ink);
  font-size: 18px;
}

.comparison-table td span {
  display: block;
  margin-top: 6px;
  color: var(--muted);
}

.comparison-table tbody tr:nth-child(even) {
  background: #fbfdff;
}

.price-note {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  margin-top: 22px;
  padding: 18px;
  border-left: 4px solid var(--heat);
  background: var(--soft);
  border-radius: var(--radius);
  color: var(--muted);
}

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

.plan-card {
  padding: 28px;
}

.plan-card-featured {
  border-color: rgba(240, 74, 42, 0.35);
  background: var(--paper);
  transform: translateY(-12px);
}

.plan-kicker,
.review-label,
.guide-card p {
  margin: 0 0 12px;
  color: var(--blue);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.plan-price {
  margin: 18px 0 8px;
  color: var(--ink);
  font-size: 34px;
  font-weight: 900;
}

.plan-card ul {
  display: grid;
  gap: 12px;
  padding: 0;
  margin: 24px 0;
  list-style: none;
}

.plan-card li {
  display: grid;
  grid-template-columns: 22px 1fr;
  gap: 10px;
  align-items: start;
  color: var(--ink-2);
  font-weight: 750;
}

.plan-card li svg {
  color: var(--success);
}

.reviews-section {
  background: var(--paper);
}

.reviews-section .section-heading {
  max-width: 780px;
}

.review-scroll {
  display: flex;
  grid-template-columns: none;
  gap: 20px;
  overflow-x: auto;
  overflow-y: hidden;
  padding: 4px 4px 24px;
  margin: 0 -4px;
  scroll-snap-type: x mandatory;
  scrollbar-color: var(--heat) var(--soft);
}

.review-scroll::-webkit-scrollbar {
  height: 10px;
}

.review-scroll::-webkit-scrollbar-track {
  border-radius: 999px;
  background: var(--soft);
}

.review-scroll::-webkit-scrollbar-thumb {
  border-radius: 999px;
  background: var(--heat);
}

.review-scroll .review-card {
  flex: 0 0 min(360px, 86vw);
  display: grid;
  grid-template-rows: 190px 1fr;
  padding: 0;
  scroll-snap-align: start;
}

.review-photo {
  overflow: hidden;
  background: var(--soft);
}

.review-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.review-content {
  display: grid;
  align-content: start;
  padding: 24px;
}

.review-head {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 12px;
  align-items: center;
  margin-bottom: 18px;
}

.review-avatar {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--ink);
  color: var(--paper);
  font-size: 14px;
  font-weight: 950;
}

.review-head span:not(.review-avatar) {
  display: block;
  margin-top: 2px;
  color: var(--muted);
  font-size: 13px;
}

.review-card blockquote {
  margin: 0;
  color: var(--ink-2);
  font-size: 18px;
  line-height: 1.52;
}

.review-card cite {
  display: block;
  color: var(--ink);
  font-style: normal;
  font-weight: 900;
}

.blog-section {
  background: var(--paper);
}

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

.blog-card {
  display: grid;
  grid-template-rows: 210px 1fr;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  box-shadow: 0 14px 32px rgba(0, 48, 95, 0.08);
}

.blog-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  background: var(--soft);
}

.blog-card img[src$="ac-unit-web.png"],
.blog-card img[src$="city-air-logo.png"] {
  padding: 24px;
  object-fit: contain;
}

.blog-card-body {
  display: grid;
  align-content: start;
  padding: 24px;
}

.blog-meta {
  margin: 0 0 12px;
  color: var(--blue);
  font-size: 13px;
  font-weight: 950;
  text-transform: uppercase;
}

.blog-card h3 {
  margin: 0 0 12px;
  color: var(--ink);
  font-size: 23px;
  line-height: 1.2;
}

.blog-card p:not(.blog-meta) {
  margin: 0 0 18px;
  color: var(--muted);
}

.guidance-section {
  background: var(--paper);
}

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

.guidance-card {
  display: grid;
  align-content: start;
  gap: 12px;
  min-height: 190px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--soft);
}

.guidance-card:nth-child(2),
.guidance-card:nth-child(5) {
  background: var(--paper);
  box-shadow: 0 14px 32px rgba(0, 48, 95, 0.07);
}

.contact-layout {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 26px;
  align-items: start;
}

.contact-panel {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  box-shadow: 0 14px 32px rgba(0, 48, 95, 0.08);
}

.contact-panel h2,
.contact-panel h3 {
  margin: 0 0 12px;
  color: var(--ink);
}

.contact-panel p {
  color: var(--muted);
}

.contact-list {
  display: grid;
  gap: 14px;
  padding: 0;
  margin: 24px 0 0;
  list-style: none;
}

.contact-list li {
  padding: 14px;
  border-radius: var(--radius);
  background: var(--soft);
  color: var(--ink-2);
  font-weight: 850;
}

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

.contact-form label {
  display: grid;
  gap: 8px;
  color: var(--ink);
  font-size: 14px;
  font-weight: 850;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  min-height: 48px;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  color: var(--ink);
}

.contact-form textarea {
  min-height: 130px;
  padding-top: 12px;
  resize: vertical;
}

.contact-form button {
  border: 0;
  cursor: pointer;
}

.faq-list {
  display: grid;
  gap: 12px;
  margin-top: 30px;
}

.faq-list details {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
}

.faq-list summary {
  cursor: pointer;
  padding: 18px 20px;
  color: var(--ink);
  font-size: 18px;
  font-weight: 900;
}

.faq-list p {
  margin: 0;
  padding: 0 20px 20px;
  color: var(--muted);
}

.question-panel {
  display: grid;
  gap: 28px;
  padding: 34px;
  border-radius: var(--radius);
  background: var(--ink);
  color: var(--paper);
}

.question-panel img {
  width: 100%;
  height: 230px;
  object-fit: contain;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.08);
}

.question-panel .eyebrow {
  color: var(--paper);
}

.question-panel h3 {
  margin-bottom: 20px;
}

.guide-section {
  background: var(--paper);
}

.guide-card {
  padding: 24px;
}

.guide-visual {
  height: 166px;
  display: grid;
  place-items: center;
  margin: -24px -24px 22px;
  background: var(--soft);
  color: var(--blue);
}

.guide-visual svg {
  width: 70px;
  height: 70px;
}

.guide-card h3 {
  margin-bottom: 18px;
}

.quote-hero {
  position: relative;
  min-height: 560px;
  overflow: hidden;
  background: var(--paper);
}

.quote-hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 430px;
  gap: 58px;
  align-items: center;
  padding: 82px 0 78px;
}

.quote-hero-copy {
  max-width: 690px;
}

.quote-hero h1 {
  margin: 0;
  color: var(--ink);
  font-size: 58px;
  line-height: 1.04;
}

.quote-hero-copy p:not(.eyebrow) {
  max-width: 620px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.75;
}

.quote-hero-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  box-shadow: var(--shadow);
}

.quote-hero-card img {
  width: 100%;
  height: 290px;
  object-fit: contain;
  padding: 22px;
  background: var(--soft-2);
}

.page-hero {
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, #ffffff 0%, #f2f8fd 100%);
}

.page-hero-inner {
  width: min(1180px, calc(100% - 48px));
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.78fr);
  gap: 54px;
  align-items: center;
  min-height: 460px;
  padding: 78px 0;
  margin: 0 auto;
}

.page-hero-copy {
  position: relative;
  z-index: 1;
}

.page-hero-logo {
  width: min(260px, 100%);
  margin-bottom: 22px;
}

.page-hero h1 {
  max-width: 760px;
  margin: 20px 0 18px;
  color: var(--ink);
  font-size: 56px;
  line-height: 1.02;
}

.page-hero p:not(.eyebrow) {
  max-width: 680px;
  margin: 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.75;
}

.page-hero-media {
  position: relative;
  z-index: 1;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--paper);
  box-shadow: var(--shadow);
}

.page-hero-media img {
  width: 100%;
  height: 340px;
  object-fit: cover;
}

.page-hero-media .visual-caption {
  position: static;
  border-radius: 0;
  background: var(--ink);
}

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

.quote-stat-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid var(--line);
}

.quote-stat-grid div {
  min-height: 100px;
  display: grid;
  align-content: center;
  gap: 2px;
  padding: 16px;
  border-right: 1px solid var(--line);
}

.quote-stat-grid div:last-child {
  border-right: 0;
}

.quote-stat-grid strong {
  color: var(--blue);
  font-size: 25px;
  line-height: 1;
}

.quote-stat-grid span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.calculator-section {
  padding: 92px 0;
  scroll-margin-top: 126px;
  background: var(--soft);
}

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

.calculator-form,
.result-panel {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 16px 36px rgba(0, 48, 95, 0.08);
}

.calculator-form {
  display: grid;
  gap: 18px;
  padding: 28px;
  background: var(--paper);
}

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

.calculator-form label {
  display: grid;
  gap: 8px;
  color: var(--ink);
  font-size: 14px;
  font-weight: 850;
}

.calculator-form input,
.calculator-form select {
  width: 100%;
  min-height: 50px;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  color: var(--ink);
}

.calculator-form input:focus,
.calculator-form select:focus {
  outline: 3px solid rgba(0, 148, 217, 0.24);
  border-color: var(--blue-2);
}

.calc-addons {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  padding: 16px;
  margin: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.calc-addons legend {
  padding: 0 8px;
  color: var(--ink);
  font-size: 14px;
  font-weight: 900;
}

.calc-addons label {
  grid-template-columns: auto minmax(0, 1fr);
  align-items: start;
  gap: 10px;
  min-height: 54px;
  padding: 12px;
  border-radius: var(--radius);
  background: var(--soft);
  color: var(--muted);
}

.calc-addons input {
  width: 18px;
  min-height: 18px;
  height: 18px;
  margin-top: 2px;
  padding: 0;
  accent-color: var(--blue);
}

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

.result-panel {
  position: sticky;
  top: 134px;
  padding: 28px;
  background: var(--ink);
  color: var(--paper);
}

.result-logo {
  width: min(230px, 100%);
  height: auto;
  margin: 0 0 20px;
  padding: 8px;
  border-radius: var(--radius);
  background: var(--paper);
}

.result-panel .pill {
  background: rgba(255, 255, 255, 0.13);
  color: var(--paper);
}

.estimate-number {
  display: block;
  margin: 16px 0 0;
  color: var(--paper);
  font-size: 36px;
  font-weight: 950;
  line-height: 1.12;
}

.estimate-saving {
  margin: 12px 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 15px;
}

.breakdown-list {
  display: grid;
  gap: 0;
  padding: 0;
  margin: 22px 0 0;
  list-style: none;
}

.breakdown-list li {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 11px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  color: rgba(255, 255, 255, 0.8);
  font-size: 14px;
}

.breakdown-list strong {
  color: var(--paper);
  text-align: right;
}

.result-next {
  margin-top: 22px;
  padding: 18px;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.1);
}

.result-next h3 {
  margin: 0 0 10px;
  color: var(--paper);
  font-size: 20px;
}

.result-next ol {
  display: grid;
  gap: 8px;
  padding-left: 20px;
  margin: 0;
  color: rgba(255, 255, 255, 0.84);
}

.calculator-note {
  margin: 16px 0 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 13px;
}

.quote-process-section {
  background: var(--paper);
}

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

.quote-step-card {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  box-shadow: 0 14px 32px rgba(0, 48, 95, 0.08);
}

.quote-step-card h3 {
  margin: 0 0 10px;
  color: var(--ink);
}

.quote-step-card p {
  margin: 0;
  color: var(--muted);
}

.cta-band {
  background: var(--ink);
  color: var(--paper);
  padding: 74px 0;
  scroll-margin-top: 126px;
}

.cta-inner {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 42px;
  align-items: start;
}

.cta-band .eyebrow {
  color: rgba(255, 255, 255, 0.9);
}

.cta-band p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.78);
}

.quote-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.08);
}

.quote-form label {
  display: grid;
  gap: 8px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 14px;
  font-weight: 800;
}

.quote-form input,
.quote-form select {
  width: 100%;
  min-height: 48px;
  padding: 0 14px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.96);
  color: var(--ink);
}

.quote-form button {
  grid-column: 1 / -1;
  border: 0;
  cursor: pointer;
}

.site-footer {
  background: #00264b;
  color: rgba(255, 255, 255, 0.78);
}

.footer-inner {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 1fr);
  gap: 34px;
  padding: 58px 0 38px;
}

.footer-brand img {
  width: 220px;
  padding: 10px;
  border-radius: var(--radius);
  background: var(--paper);
}

.footer-brand p {
  max-width: 360px;
}

.site-footer h2 {
  margin: 0 0 16px;
  color: var(--paper);
  font-size: 18px;
}

.site-footer ul {
  display: grid;
  gap: 10px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.site-footer a:hover,
.site-footer a:focus-visible {
  color: var(--heat-2);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 20px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 14px;
}

.footer-bottom p {
  margin: 0;
}

.whatsapp-float {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 65;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 54px;
  padding: 10px 18px 10px 10px;
  border-radius: 999px;
  background: #18b35f;
  color: var(--paper);
  box-shadow: 0 16px 30px rgba(24, 179, 95, 0.32);
  font-weight: 900;
}

.whatsapp-mark {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  overflow: hidden;
  padding: 2px;
  border-radius: 50%;
  background: var(--paper);
}

.whatsapp-mark img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
}

.discount-popup[hidden] {
  display: none;
}

body.logged-in .discount-popup,
body.logged-in #chatbot-float-box {
  display: none !important;
}

.discount-popup {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: grid;
  place-items: center;
  padding: 24px;
  overflow-y: auto;
}

.discount-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 38, 75, 0.6);
  backdrop-filter: blur(5px);
}

.discount-dialog {
  position: relative;
  z-index: 1;
  width: min(880px, 100%);
  display: grid;
  grid-template-columns: 1fr 1fr;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--paper);
  box-shadow: 0 28px 70px rgba(0, 38, 75, 0.34);
}

.popup-close {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 2;
  width: 40px;
  height: 40px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 50%;
  background: rgba(0, 48, 95, 0.72);
  color: var(--paper);
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
}

.discount-video {
  min-height: 400px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, #eaf5fc 0%, #ffffff 100%);
}

.discount-video video {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
  object-position: center;
}

.discount-copy {
  display: grid;
  align-content: center;
  padding: 42px;
}

.discount-logo {
  width: min(260px, 100%);
  height: auto;
  margin: 0 0 22px;
}

.discount-copy h2 {
  margin: 0;
  color: var(--ink);
  font-size: 38px;
  line-height: 1.08;
}

.discount-copy p:not(.eyebrow) {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 18px;
}

.discount-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
}

.whatsapp-button {
  background: #18b35f;
  color: var(--paper);
}

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

  .brand-track {
    animation: none;
  }
}

@media (max-width: 1120px) {
  .hero-inner {
    grid-template-columns: minmax(0, 1fr) 480px;
    gap: 34px;
  }

  .showcase-image,
  .comfort-card {
    width: 230px;
    height: 230px;
  }

  .phone-card,
  .booking-card {
    width: 238px;
    height: 230px;
  }

  .review-card-mini {
    left: 50%;
    top: 240px;
  }
}

@media (max-width: 940px) {
  .topbar-inner,
  .main-nav,
  .section-inner,
  .brand-band-inner,
  .cta-inner,
  .footer-inner,
  .footer-bottom,
  .hero-inner,
  .brand-marquee-inner,
  .quote-hero-inner {
    width: min(100% - 32px, 1180px);
  }

  .topbar-inner span:nth-child(2) {
    display: none;
  }

  .main-nav {
    grid-template-columns: auto auto;
    justify-content: space-between;
  }

  .logo-link img {
    width: 172px;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .nav-menu,
  .nav-cta {
    display: none;
  }

  .site-header.nav-open .nav-menu {
    position: absolute;
    left: 16px;
    right: 16px;
    top: calc(100% + 8px);
    display: grid;
    gap: 0;
    padding: 10px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--paper);
    box-shadow: var(--shadow);
  }

  .site-header.nav-open .nav-menu a {
    min-height: 48px;
    padding: 0 12px;
  }

  .hero,
  .hero-inner {
    min-height: auto;
  }

  .hero-inner {
    grid-template-columns: 1fr;
    padding: 56px 0 92px;
  }

  .hero h1 {
    font-size: 48px;
  }

  .page-hero-inner {
    grid-template-columns: 1fr;
    gap: 32px;
    width: min(100% - 32px, 1180px);
    min-height: auto;
    padding: 62px 0 72px;
  }

  .page-hero h1 {
    font-size: 46px;
  }

  .page-hero-media {
    max-width: 560px;
  }

  .quote-hero-inner {
    grid-template-columns: 1fr;
    gap: 34px;
    padding: 62px 0 72px;
  }

  .quote-hero h1 {
    font-size: 46px;
  }

  .quote-hero-card {
    max-width: 520px;
  }

  .calculator-shell,
  .quote-step-grid {
    grid-template-columns: 1fr;
  }

  .result-panel {
    position: static;
  }

  .calc-addons {
    grid-template-columns: 1fr;
  }

  .hero-showcase {
    min-height: 410px;
  }

  .showcase-image {
    left: 0;
  }

  .review-card-mini {
    left: 256px;
    top: 238px;
    transform: none;
  }

  .quick-strip,
  .proof-grid,
  .process-timeline,
  .areas-layout,
  .product-brand-grid,
  .product-page-grid,
  .blog-grid,
  .service-grid,
  .plan-grid,
  .review-grid,
  .guide-grid,
  .reason-grid,
  .guidance-grid,
  .contact-layout,
  .cta-inner,
  .footer-inner {
    grid-template-columns: 1fr;
  }

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

  .product-panel-head {
    display: grid;
    align-items: start;
  }

  .quick-strip {
    width: 100%;
    margin-top: 0;
    border-radius: 0;
  }

  .quick-strip a {
    min-height: 88px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .brand-marquee-inner {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .section {
    padding: 72px 0;
  }

  .section-heading h2,
  .section-copy h2,
  .cta-band h2 {
    font-size: 36px;
  }

  .split-layout,
  .split-layout-reverse {
    grid-template-columns: 1fr;
  }

  .visual-panel {
    min-height: 420px;
  }

  .plan-card-featured {
    transform: none;
  }

  .brand-band-inner {
    display: grid;
    justify-items: start;
  }

  .brand-band ul {
    justify-content: flex-start;
  }

  .proof-grid,
  .guidance-grid,
  .area-chip-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .process-timeline {
    gap: 14px;
  }

  .process-step {
    min-height: auto;
  }

  .process-step::before {
    display: none;
  }

  .area-copy {
    position: static;
  }
}

@media (max-width: 640px) {
  .discount-popup {
    justify-items: start;
    padding: 12px;
  }

  .topbar {
    display: none;
  }

  .main-nav {
    min-height: 68px;
  }

  .logo-link img {
    width: 156px;
  }

  .hero-inner {
    padding: 42px 0 46px;
  }

  .hero h1 {
    font-size: 38px;
  }

  .page-hero-inner {
    width: min(100% - 32px, 1180px);
    padding: 42px 0 52px;
  }

  .page-hero-logo {
    width: min(230px, 100%);
  }

  .page-hero h1 {
    font-size: 38px;
  }

  .page-hero p:not(.eyebrow) {
    font-size: 16px;
    line-height: 1.65;
  }

  .page-hero-actions {
    display: grid;
  }

  .page-hero-media img {
    height: 240px;
  }

  .hero-brand-logo {
    width: min(230px, 100%);
  }

  .quote-hero-inner {
    padding: 42px 0 52px;
  }

  .quote-hero h1 {
    font-size: 38px;
  }

  .quote-hero-copy p:not(.eyebrow) {
    font-size: 16px;
    line-height: 1.65;
  }

  .quote-hero-card img {
    height: 220px;
  }

  .quote-stat-grid {
    grid-template-columns: 1fr;
  }

  .quote-stat-grid div {
    min-height: 72px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .quote-stat-grid div:last-child {
    border-bottom: 0;
  }

  .calculator-section {
    padding: 72px 0;
  }

  .calculator-form,
  .result-panel {
    padding: 20px;
  }

  .calc-field-grid {
    grid-template-columns: 1fr;
  }

  .calculator-actions {
    display: grid;
  }

  .estimate-number {
    font-size: 31px;
  }

  .hero-lede {
    font-size: 16px;
    line-height: 1.65;
  }

  .hero-actions {
    display: grid;
    margin-top: 24px;
  }

  .button,
  .nav-cta {
    width: 100%;
  }

  .hero-showcase {
    min-height: 560px;
  }

  .showcase-image {
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 190px;
  }

  .phone-card {
    top: 208px;
    left: 0;
    width: calc(50% - 8px);
    height: 170px;
  }

  .booking-card {
    top: 208px;
    right: 0;
    left: auto;
    width: calc(50% - 8px);
    height: 170px;
  }

  .showcase-card svg {
    width: 52px;
    height: 52px;
    margin-bottom: 12px;
  }

  .showcase-card strong {
    font-size: 16px;
  }

  .showcase-card span {
    font-size: 13px;
  }

  .review-card-mini {
    top: 396px;
    left: 0;
    width: calc(50% - 8px);
    min-height: 142px;
    transform: none;
  }

  .comfort-card {
    top: 396px;
    right: 0;
    bottom: auto;
    width: calc(50% - 8px);
    height: 142px;
    padding: 16px;
  }

  .comfort-card span {
    font-size: 15px;
  }

  .brand-logo {
    min-width: 142px;
    height: 56px;
    font-size: 21px;
  }

  .mitsubishi {
    font-size: 16px;
  }

  .samsung {
    min-width: 160px;
  }

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

  .brand-selector {
    grid-template-columns: 1fr;
  }

  .brand-select-card {
    min-height: 92px;
  }

  .product-detail-card {
    grid-template-rows: 170px 1fr auto;
  }

  .product-detail-footer {
    display: grid;
  }

  .blog-card {
    grid-template-rows: 190px 1fr;
  }

  .proof-grid,
  .guidance-grid,
  .area-chip-grid {
    grid-template-columns: 1fr;
  }

  .proof-card,
  .guidance-card {
    min-height: auto;
  }

  .area-copy .button {
    width: 100%;
  }

  .discount-dialog {
    grid-template-columns: 1fr;
    width: min(342px, calc(100vw - 24px));
    max-width: calc(100vw - 24px);
    max-height: calc(100vh - 24px);
    overflow-y: auto;
  }

  .popup-close {
    position: absolute;
    top: 10px;
    right: 10px;
  }

  .discount-video {
    min-height: 188px;
    max-height: 230px;
  }

  .discount-copy {
    min-width: 0;
    padding: 22px;
  }

  .discount-logo {
    width: min(220px, 100%);
  }

  .discount-copy h2 {
    overflow-wrap: anywhere;
    font-size: 25px;
    line-height: 1.13;
  }

  .discount-copy p:not(.eyebrow) {
    font-size: 16px;
  }

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

  .discount-actions .button {
    width: 100%;
    min-width: 0;
  }

  .section-heading h2,
  .section-copy h2,
  .cta-band h2 {
    font-size: 31px;
  }

  .service-card,
  .plan-card,
  .review-card,
  .guide-card {
    padding: 22px;
  }

  .quote-form {
    grid-template-columns: 1fr;
    padding: 18px;
  }

  .footer-bottom {
    display: grid;
  }

  .price-note {
    display: grid;
  }

  .whatsapp-float {
    right: 10px;
    bottom: 12px;
    min-height: 46px;
    width: 46px;
    justify-content: center;
    gap: 0;
    padding: 6px;
  }

  .whatsapp-mark {
    width: 32px;
    height: 32px;
  }

  .whatsapp-label {
    display: none;
  }
}

@media (max-width: 430px) {
  .discount-popup {
    justify-items: start;
    padding: 12px;
  }

  .discount-dialog {
    width: calc(100vw - 24px);
    max-width: calc(100vw - 24px);
  }

  .popup-close {
    position: absolute;
    top: 10px;
    right: 10px;
  }
}

.woocommerce .woocommerce-result-count,
.woocommerce .woocommerce-ordering,
.woocommerce .woocommerce-breadcrumb {
  color: var(--muted);
  font-weight: 750;
}

.woocommerce .woocommerce-ordering select,
.woocommerce form .form-row input.input-text,
.woocommerce form .form-row textarea,
.woocommerce form .form-row select {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 12px 14px;
  background: var(--paper);
  color: var(--ink);
}

.woocommerce ul.products {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  padding: 0;
  margin: 26px 0;
}

.woocommerce ul.products::before,
.woocommerce ul.products::after {
  display: none;
}

.woocommerce ul.products li.product {
  width: auto !important;
  float: none !important;
  margin: 0 !important;
  padding: 0 0 22px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  box-shadow: 0 14px 32px rgba(0, 48, 95, 0.08);
}

.woocommerce ul.products li.product a img {
  width: 100%;
  height: 240px;
  object-fit: contain;
  padding: 18px;
  margin: 0;
  background: var(--soft);
}

.woocommerce ul.products li.product .woocommerce-loop-product__title,
.woocommerce div.product .product_title {
  color: var(--ink);
  font-weight: 950;
  line-height: 1.2;
}

.woocommerce ul.products li.product .woocommerce-loop-product__title {
  padding: 20px 20px 0;
  font-size: 20px;
}

.woocommerce ul.products li.product .price,
.woocommerce div.product p.price,
.woocommerce div.product span.price {
  color: var(--blue);
  font-size: 22px;
  font-weight: 950;
}

.woocommerce ul.products li.product .price {
  display: block;
  padding: 0 20px;
}

.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button,
.woocommerce #respond input#submit,
.woocommerce .cart .button,
.woocommerce .checkout-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  border: 0;
  border-radius: var(--radius);
  padding: 12px 18px;
  background: var(--blue);
  color: var(--paper);
  font-weight: 900;
  line-height: 1.1;
}

.woocommerce ul.products li.product .button {
  margin: 18px 20px 0;
}

.woocommerce a.button:hover,
.woocommerce button.button:hover,
.woocommerce input.button:hover,
.woocommerce #respond input#submit:hover,
.woocommerce .checkout-button:hover {
  background: var(--ink);
  color: var(--paper);
}

.woocommerce div.product {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 34px;
  align-items: start;
}

.woocommerce div.product div.images,
.woocommerce div.product div.summary {
  width: auto !important;
  float: none !important;
}

.woocommerce div.product div.images {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--soft);
}

.woocommerce div.product form.cart {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.woocommerce .quantity .qty {
  min-height: 44px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--ink);
}

.woocommerce table.shop_table,
.woocommerce-checkout #payment {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
}

.woocommerce table.shop_table th,
.woocommerce table.shop_table td {
  border-color: var(--line);
}

@media (max-width: 760px) {
  .woocommerce ul.products,
  .woocommerce div.product {
    grid-template-columns: 1fr;
  }

  .woocommerce ul.products li.product a img {
    height: 210px;
  }
}
