@import url("https://fonts.googleapis.com/css2?family=Inter:ital,wght@0,400;0,500;0,700;0,900;1,400&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Inter:ital,wght@0,400;0,500;0,700;0,900;1,400&family=Nothing+You+Could+Do&display=swap");

:root {
  --nav: #04383f;
  --nav2: #012d33;
  --teal: #007b83;
  --teal2: #00a6ad;
  --deep: #00373d;
  --deep2: #005961;
  --yellow: #ffc52e;
  --ink: #071113;
  --muted: #5f7077;
  --soft: #eef7f7;
  --card: #ffffff;
  --line: rgba(0, 36, 42, 0.12);
  --shadow: 0 18px 48px rgba(0, 44, 50, 0.16);
  --radius: 22px;

  --font-sans: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  --font-signature: "Nothing You Could Do", Inter, system-ui, -apple-system, "Segoe UI", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-sans);
  color: var(--ink);
  background: #f2f8f8;
}

a {
  color: inherit;
  text-decoration: none;
}
img {
  max-width: 100%;
  display: block;
}

.site {
  width: min(1440px, 100%);
  margin: 0 auto;
  background: #fff;
  box-shadow: 0 0 80px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}

/* Header */
.header {
  height: 78px;
  padding: 0 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: linear-gradient(90deg, var(--nav2), var(--nav));
  color: white;
  position: sticky;
  top: 0;
  z-index: 100;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 950;
  font-size: 25px;
  letter-spacing: -0.045em;
}

.brand-mark {
  width: 80px;
  height: 80px;
  background: transparent;
  border-radius: 0;
  box-shadow: none;
  display: grid;
  place-items: center;
}

.brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.brand small {
  display: block;
  color: var(--yellow);
  font-size: 12px;
  letter-spacing: 0.02em;
  margin-top: -5px;
  text-align: right;
}

.nav {
  display: flex;
  align-items: center;
  gap: 32px;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.nav a {
  opacity: 0.93;
}
.nav a:hover {
  color: var(--yellow);
  opacity: 1;
}

.nav a[aria-current] {
  color: var(--yellow);
  opacity: 1;
  border-bottom: 2px solid var(--yellow);
  padding-bottom: 2px;
}

.nav-toggle {
  display: none;
  background: transparent;
  border: 1.5px solid rgba(255, 255, 255, 0.4);
  border-radius: 8px;
  color: white;
  font-size: 22px;
  padding: 4px 11px;
  cursor: pointer;
  line-height: 1.2;
  margin-left: auto;
}

.nav-toggle:hover {
  background: rgba(255, 255, 255, 0.1);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 0 24px;
  border-radius: 999px;
  border: 2px solid rgba(255, 255, 255, 0.4);
  background: var(--yellow);
  color: #111;
  font-weight: 950;
  font-size: 13px;
  text-transform: uppercase;
  box-shadow: 0 12px 24px rgba(255, 197, 46, 0.28);
}

.btn-outline {
  background: white;
  border: 2px solid var(--line);
  box-shadow: none;
}

.btn-dark {
  background: var(--deep);
  color: white;
  box-shadow: none;
}

.btn-small {
  min-height: 42px;
  padding: 0 19px;
  font-size: 12px;
}

.btn:hover {
  filter: brightness(1.1);
  transform: translateY(-1px);
  transition:
    filter 0.15s,
    transform 0.15s;
}

.btn-dark:hover {
  background: var(--deep2);
  filter: none;
}

/* Universal page hero layout */
.hero {
  position: relative;
  min-height: 560px;
  padding: 40px 70px 0;
  display: grid;
  grid-template-columns: 38% 62%;
  align-items: center;
  overflow: hidden;
  background:
    radial-gradient(circle at 72% 18%, rgba(0, 166, 173, 0.2), transparent 32%),
    linear-gradient(110deg, rgba(255, 255, 255, 0.96) 0%, rgba(246, 250, 250, 0.92) 45%, rgba(226, 239, 240, 0.9) 100%);
}

.hero.dark {
  color: white;
  background:
    linear-gradient(90deg, rgba(0, 29, 34, 0.92), rgba(0, 63, 70, 0.72)),
    radial-gradient(circle at 70% 25%, rgba(0, 166, 173, 0.38), transparent 36%),
    linear-gradient(135deg, #062f35, #075d66);
}

.hero h1 {
  margin: 0 0 22px;
  font-size: 56px;
  line-height: 0.98;
  letter-spacing: -0.064em;
  font-weight: 950;
}

.hero h1 span {
  color: var(--teal);
}
.hero.dark h1 span {
  color: var(--yellow);
}

.kicker {
  display: block;
  color: var(--teal);
  font-size: 13px;
  font-weight: 950;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  margin-bottom: 18px;
}

.hero.dark .kicker {
  color: var(--yellow);
}

.lead {
  font-size: 19px;
  line-height: 1.25;
  margin: 0 0 10px;
  max-width: 540px;
}

.strongline {
  font-size: 21px;
  line-height: 1.35;
  font-weight: 950;
  margin: 34px 0 30px;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}

/* Mascot staging */
.mascot-stage {
  position: relative;
  min-height: 500px;
}

.mascot-stage .duck {
  position: absolute;
  bottom: -65px;
  object-fit: contain;
  filter: drop-shadow(0 28px 28px rgba(0, 0, 0, 0.24));
}

.duck.white {
  height: 520px;
  left: -145px;
  z-index: 3;
}
.duck.blue {
  height: 535px;
  left: 25px;
  z-index: 4;
}
.duck.red {
  height: 505px;
  left: 205px;
  z-index: 3;
}
.duck.black {
  height: 330px;
  left: 470px;
  z-index: 2;
}

.hero.single .mascot-stage .duck {
  height: 560px;
  left: 190px;
  bottom: -70px;
}

.hero .mascot-stage {
  z-index: 0;
}

.hero > div:not(.mascot-stage) {
  position: relative;
  z-index: 5;
}

.mascot-stage .quote {
  z-index: 1;
  pointer-events: auto;
}

.mascot-stage .icon-card {
  z-index: 4;
  pointer-events: auto;
}

.mascot-side {
  width: 100%;
  max-height: 500px;
  object-fit: contain;
  align-self: end;
  justify-self: center;
  display: block;
  filter: drop-shadow(0 24px 20px rgba(0, 0, 0, 0.15));
}

.quote {
  position: absolute;
  right: 0;
  top: 20px;
  width: 297px;
  padding: 27px 31px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.88);
  border: 2px solid rgba(255, 255, 255, 0.4);
  box-shadow: var(--shadow);
  backdrop-filter: blur(12px);
  overflow: hidden;
}

.dark .quote {
  background: rgba(0, 44, 50, 0.74);
  border-color: rgba(255, 255, 255, 0.4);
}

.quote:before {
  content: "\201C";
  position: absolute;
  top: 14px;
  left: 16px;
  font-family: var(--font-sans);
  font-size: 165px;
  line-height: 1;
  color: var(--teal);
  font-weight: 900;
  pointer-events: none;
  z-index: 0;
}

.quote p,
.quote .signature {
  position: relative;
  z-index: 1;
}

.quote p {
  margin: 8px 0 0;
  line-height: 1.55;
}

.signature {
  font-family: var(--font-signature);
  color: var(--teal);
  font-size: 32px;
  text-align: right;
  margin-top: 10px;
}

.dark .signature {
  color: var(--teal2);
}

.icon-card {
  position: absolute;
  right: 0;
  bottom: 40px;
  width: 465px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  padding: 24px;
  border-radius: 24px;
  background: #ffffff;
  box-shadow: var(--shadow);
  border: 2px solid rgba(255, 255, 255, 0.4);
}

.icon-card > .icon-card-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  text-align: center;
  color: #fff;
  font-size: 11px;
  font-weight: 900;
  line-height: 1.1;
  gap: 2px;
}

.icon-card .label-line {
  display: block;
  font-size: 11px;
  color: #fff;
  margin: 0;
  line-height: 1.1;
}

.icon-card .stat-icon {
  width: 52px;
  height: 52px;
  flex: 0 0 52px;
  margin: 0 auto 4px;
}

.icon-card .stat-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: brightness(0) saturate(100%) invert(80%) sepia(64%) saturate(932%) hue-rotate(344deg) brightness(102%)
    contrast(101%) drop-shadow(0 2px 4px rgba(0, 0, 0, 0.18));
}

.hero.dark .icon-card {
  background: rgba(0, 44, 50, 0.74);
  border-color: rgba(255, 255, 255, 0.4);
  color: #fff;
}

/* Stats band */
.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: linear-gradient(90deg, #00343a, #005961);
  color: white;
  padding: 30px 62px;
  margin-top: -36px;
  position: relative;
  z-index: 20;
}

.stat {
  min-height: 120px;
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 0 24px;
  border-right: 4px solid rgba(255, 255, 255, 0.4);
}

.stat:last-child {
  border-right: none;
}

.stat-icon {
  width: 104px;
  height: 104px;
  flex: 0 0 104px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.stat-icon img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.18));
}

.stat strong {
  font-size: 26px;
  display: block;
  line-height: 1;
}

.stat span {
  font-size: 14px;
  font-weight: 800;
  line-height: 1.25;
}

/* Sections / panels */
.section {
  padding: 72px 64px;
}
.section.tight {
  padding-top: 52px;
  padding-bottom: 52px;
}

.section-title {
  font-size: 42px;
  line-height: 1.02;
  letter-spacing: -0.055em;
  margin: 0 0 20px;
}

/* Problem panel */
.grid-problem {
  display: grid;
  grid-template-columns: 320px 1fr 220px;
  gap: 24px;
  align-items: center;
}

.balance-demo-card {
  min-height: 420px;
  overflow: hidden;
}

.balance-demo-copy h3 span {
  color: #777;
  font-size: 0.75em;
}

.balance-demo {
  position: relative;
  min-height: 330px;
  margin-top: 18px;
  border-radius: 20px;
  overflow: hidden;
  background:
    radial-gradient(circle at 20% 25%, rgba(241, 92, 37, 0.25), transparent 24%),
    radial-gradient(circle at 82% 22%, rgba(45, 138, 224, 0.26), transparent 24%),
    radial-gradient(circle at 18% 78%, rgba(45, 138, 224, 0.3), transparent 26%),
    radial-gradient(circle at 82% 78%, rgba(241, 92, 37, 0.23), transparent 24%),
    linear-gradient(135deg, #eaf4f4, #ffffff);
  border: 1px solid rgba(0, 36, 42, 0.12);
}

.balance-room {
  position: absolute;
}

.room-master {
  top: 12%;
  left: 22%;
}
.room-living {
  top: 58%;
  left: 13%;
}
.room-kitchen {
  top: 31%;
  left: 76%;
}
.room-basement {
  top: 68%;
  left: 66%;
}

.room-label {
  display: block;
  margin-bottom: 6px;
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #31515a;
}

.sensor-bubble {
  display: inline-block;
  min-width: 92px;
  padding: 10px 12px;
  border-radius: 14px;
  background: rgba(0, 66, 89, 0.88);
  color: white;
  text-align: center;
  font-size: 20px;
  font-weight: 950;
  line-height: 1.05;
  border: 1px solid rgba(255, 255, 255, 0.25);
  box-shadow: 0 12px 28px rgba(0, 45, 55, 0.22);
  backdrop-filter: blur(8px);
  transition: all 0.6s ease;
}

.sensor-bubble small {
  display: block;
  margin-top: 5px;
  color: #ffc52e;
  font-size: 12px;
  font-weight: 900;
}

.sensor-bubble.is-balanced {
  background: rgba(0, 123, 131, 0.92);
  box-shadow: 0 0 24px rgba(0, 166, 173, 0.55);
}

.balance-center {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 180px;
  height: 180px;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(0, 123, 131, 0.18);
  box-shadow: 0 20px 45px rgba(0, 55, 61, 0.16);
}

.balance-center strong {
  font-size: 22px;
  color: #007b83;
}

.balance-center span {
  max-width: 130px;
  margin-top: 6px;
  font-size: 12px;
  font-weight: 800;
  color: #50646a;
}

.text-panel {
  padding: 10px 0;
}

.text-panel p {
  color: #273b42;
  line-height: 1.55;
}

.card {
  background: white;
  border: 2px solid var(--line);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow);
}

.card h3 {
  margin: 0 0 10px;
  font-size: 25px;
  line-height: 1.08;
  letter-spacing: -0.045em;
}

.card p {
  color: var(--muted);
  line-height: 1.48;
}

.house {
  min-height: 305px;
  border-radius: 18px;
  background: linear-gradient(180deg, #fff, #edf4f4);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  padding: 12px;
  box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.08);
}

.room {
  border-radius: 13px;
  display: grid;
  place-items: center;
  min-height: 82px;
  background: linear-gradient(145deg, #fff, #dce7e8);
  position: relative;
  overflow: hidden;
}

.room:after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 34px;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.07), transparent);
}

.pill {
  z-index: 2;
  border-radius: 999px;
  color: white;
  font-weight: 950;
  padding: 8px 11px;
  font-size: 15px;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.18);
}

.hot {
  background: #f15c25;
}
.cold {
  background: #2d8ae0;
}
.good {
  background: #00a09b;
}
.mid {
  background: #202020;
}
.ai {
  background: var(--teal);
}

.network .room:before {
  content: "";
  position: absolute;
  top: 4px;
  right: 4px;
  width: 40px;
  height: 40px;
  background-image: url("assets/SmartDucksFeetLogoColour.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  z-index: 2;
}

.network .room:nth-child(5):before {
  content: "";
  background-image: none;
}

.side-duck {
  align-self: end;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  overflow: hidden;
  border-radius: var(--radius);
}

.side-duck img {
  height: 390px;
  max-width: none;
  filter: drop-shadow(0 20px 20px rgba(0, 0, 0, 0.15));
}

/* Our System panel */
.deep-section {
  position: relative;
  min-height: 620px;
  overflow: hidden;
  color: white;
  display: block;
  background: linear-gradient(120deg, #00333a, #005f67);
  padding: 72px 64px;
}

.system-copy {
  position: relative;
  z-index: 5;
  width: 36%;
  max-width: 540px;
}

.deep-section p {
  color: rgba(255, 255, 255, 0.82);
}

.our-system {
  position: absolute;
  top: 0;
  right: -120px;
  bottom: 0;
  width: 72%;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  pointer-events: none;
}

.our-system img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center right;
  filter: drop-shadow(0 28px 42px rgba(0, 0, 0, 0.24));
}

.bullets {
  margin: 22px 0;
}

.bullet {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  margin: 10px 0;
  font-weight: 750;
}

.bullet:before {
  content: "✓";
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--yellow);
  color: #111;
  display: grid;
  place-items: center;
  font-size: 13px;
  font-weight: 950;
  flex: 0 0 auto;
  margin-top: 1px;
}

.deep-duck img {
  height: 420px;
  object-fit: contain;
  filter: drop-shadow(0 24px 20px rgba(0, 0, 0, 0.18));
}

.quote-big {
  font-size: 25px;
  line-height: 1.3;
  font-weight: 850;
}

.quote-big:before {
  content: "\201C";
  display: block;
  font-size: 82px;
  line-height: 0.4;
  color: white;
}

/* Solutions */
.solutions-section {
  background: #f7fbfb;
  padding-top: 68px;
  padding-bottom: 76px;
}

.solutions-section .section-title {
  max-width: 900px;
  margin-bottom: 32px;
}

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

.solution {
  min-height: 260px;
  padding: 30px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  overflow: hidden;
  transition:
    transform 0.18s ease,
    box-shadow 0.18s ease;
}

.solution:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 60px rgba(0, 44, 50, 0.18);
}

.solution-visual.clean-card-icon {
  width: 76px;
  height: 76px;
  border-radius: 24px;
  display: grid;
  place-items: center;
  font-size: 38px;
  background: linear-gradient(135deg, #eaf4f4, #fff);
  border: 1px solid rgba(0, 36, 42, 0.1);
}

.solution-body {
  padding: 0;
}

.solution-body h3 {
  margin: 0 0 10px;
  font-size: 30px;
  line-height: 1.05;
  letter-spacing: -0.045em;
}

.solution-body p {
  margin: 0 0 20px;
  color: var(--muted);
  line-height: 1.5;
}

.solution-body a {
  color: var(--teal);
  font-weight: 950;
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: 0.04em;
}

/* Footer */
.final-cta {
  padding: 76px 64px 84px;
  background:
    radial-gradient(circle at 50% 15%, rgba(0, 166, 173, 0.18), transparent 42%),
    linear-gradient(120deg, #004951, #00737b);
  color: white;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 26px;
}

.final-cta h2 {
  max-width: 760px;
  font-size: 52px;
  line-height: 0.98;
  letter-spacing: -0.06em;
  margin: 0;
}

.final-cta p {
  max-width: 560px;
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 18px;
  line-height: 1.45;
}

.final-cta .btn {
  min-width: 0;
  width: auto;
  padding: 0 34px;
}

.footer {
  background: #002d33;
  color: white;
  padding: 42px 64px;
  display: grid;
  grid-template-columns: 2.1fr repeat(4, 1fr) 1.5fr;
  gap: 30px;
}

.footer p,
.footer a {
  display: block;
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
  line-height: 1.5;
  margin: 7px 0;
}

.footer h4 {
  font-size: 13px;
  text-transform: uppercase;
  margin: 0 0 12px;
}

.email {
  display: flex;
  background: white;
  border-radius: 999px;
  overflow: hidden;
  height: 42px;
}

.email input {
  border: 0;
  padding: 0 14px;
  flex: 1;
}

.email button {
  width: 46px;
  border: 0;
  background: var(--teal);
  color: white;
  font-size: 20px;
}
/* Page-specific layouts */
.problem-icons {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
}

.problem-icons .card {
  text-align: center;
  box-shadow: none;
}

.problem-icons .bigicon {
  font-size: 34px;
  color: var(--teal);
  margin-bottom: 8px;
}

.full-width-house {
  max-width: 900px;
  margin: 28px auto 0;
}

.dark-band {
  background: linear-gradient(90deg, #00363d, #005e66);
  color: white;
  border-radius: 26px;
  padding: 34px;
  margin-top: 34px;
}

.dark-band .cards {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
}

.dark-band .mini {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 18px;
  padding: 18px;
  text-align: center;
  font-weight: 850;
}

.system-page {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 38px;
  align-items: center;
}

.how-list {
  display: grid;
  gap: 18px;
}

.how-item {
  display: grid;
  grid-template-columns: 62px 1fr;
  gap: 16px;
  align-items: start;
}

.how-item .num {
  width: 52px;
  height: 52px;
  border-radius: 17px;
  background: #d8f3f4;
  color: var(--teal);
  display: grid;
  place-items: center;
  font-size: 28px;
}

.benefit-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
}

.benefit-grid .card {
  text-align: center;
  padding: 22px;
  box-shadow: none;
}

.tech-panel {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 30px;
  align-items: center;
}

.device {
  width: 230px;
  height: 230px;
  border-radius: 50%;
  margin: auto;
  background: radial-gradient(circle at 35% 30%, #fff, #dce6e8);
  display: grid;
  place-items: center;
  font-size: 70px;
  box-shadow:
    inset 0 0 0 18px rgba(255, 255, 255, 0.55),
    0 24px 48px rgba(0, 0, 0, 0.15);
}

.tech-stack {
  display: grid;
  gap: 24px;
}

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

.step-num {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: #d8f3f4;
  color: var(--teal);
  font-size: 25px;
  font-weight: 950;
  display: grid;
  place-items: center;
  margin-bottom: 18px;
}

.expect-grid {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: 26px;
}

/* Responsive */
@media (max-width: 1100px) {
  .nav-toggle {
    display: flex;
    align-items: center;
  }

  .nav {
    display: none;
  }

  .nav.open {
    display: flex;
    position: fixed;
    inset: 78px 0 0 0;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 40px;
    font-size: 18px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    background: var(--nav2);
    z-index: 99;
  }

  .nav.open a {
    opacity: 0.85;
  }

  .nav.open a:hover,
  .nav.open a[aria-current] {
    color: var(--yellow);
    opacity: 1;
  }

  .hero,
  .hero.dark {
    grid-template-columns: 1fr;
    padding: 54px 28px 0;
  }

  .mascot-stage {
    min-height: 440px;
  }

  .duck {
    bottom: auto;
    top: 0;
  }

  .duck.white {
    height: 420px;
    left: -20px;
  }
  .duck.blue {
    height: 430px;
    left: 120px;
  }
  .duck.red {
    height: 400px;
    left: 260px;
  }

  .mascot-stage .quote,
  .mascot-stage .icon-card {
    position: static;
    width: auto;
    margin-top: 12px;
  }

  .mascot-stage .quote {
    margin-top: 440px;
  }

  .mascot-side {
    max-height: 320px;
    margin: 24px auto 0;
  }

  .stats,
  .grid-problem,
  .solution-grid,
  .final-cta,
  .footer,
  .problem-icons,
  .benefit-grid,
  .buy-steps,
  .expect-grid,
  .system-page {
    grid-template-columns: 1fr;
  }

  .stats {
    margin-top: -22px;
  }

  .stat {
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.4);
  }

  .section {
    padding: 48px 28px;
  }

  .deep-section {
    display: block;
    min-height: auto;
    padding: 48px 28px;
  }

  .system-copy {
    width: 100%;
    max-width: none;
  }

  .deep-section > div:first-child {
    max-width: none;
  }

  .our-system {
    position: relative;
    inset: auto;
    width: 100%;
    margin-top: 34px;
    display: block;
  }

  .our-system:before {
    display: none;
  }

  .our-system img {
    width: 100%;
    height: auto;
    max-height: 560px;
    object-fit: contain;
    object-position: center;
  }

  .tech-panel {
    grid-template-columns: 1fr;
  }

  .side-duck {
    display: none;
  }
}

/* Final mobile fixes */
@media (max-width: 600px) {
  .hero,
  .hero.dark {
    padding: 30px 18px 0;
  }

  .mascot-stage {
    display: flex;
    flex-direction: column;
    min-height: auto;
    margin-top: 20px;
  }

  .duck.white,
  .duck.blue,
  .duck.red,
  .duck.black {
    position: absolute;
  }

  .duck.white {
    height: 238px;
    left: -18px;
    top: 0;
  }
  .duck.blue {
    height: 258px;
    left: 72px;
    top: 0;
  }
  .duck.red {
    height: 238px;
    left: 158px;
    top: 0;
  }
  .duck.black {
    height: 160px;
    left: 242px;
    top: 48px;
  }

  .mascot-stage:before {
    content: "";
    display: block;
    height: 300px;
  }

  .mascot-stage .quote {
    order: 2;
    position: relative;
    z-index: 6;
    width: 100%;
    margin: 0;
    padding: 20px;
    background: rgba(0, 44, 50, 0.72);
  }

  .mascot-stage .icon-card {
    order: 3;
    position: relative;
    z-index: 6;
    width: 100%;
    margin-top: 16px;
    padding: 14px 10px;
    gap: 8px;
    border-radius: 18px;
  }

  .icon-card .stat-icon {
    width: 36px;
    height: 36px;
    flex: 0 0 36px;
  }

  .icon-card .label-line {
    font-size: 10px;
  }

  .stats {
    margin-top: 0;
    padding-bottom: 22px;
  }

  .stat {
    min-height: 76px;
    padding: 12px 24px;
  }

  .stat strong {
    font-size: 20px;
    line-height: 1.05;
  }

  .stat-icon {
    width: 50px;
    height: 50px;
    flex: 0 0 50px;
  }

  .balance-demo-card {
    padding: 20px 18px;
  }

  .balance-demo-copy h3 {
    font-size: 31px;
    line-height: 1.06;
  }

  .balance-demo-copy p {
    font-size: 17px;
    line-height: 1.45;
  }

  .balance-demo {
    min-height: 390px;
  }

  .balance-center {
    width: 128px;
    height: 128px;
  }

  .sensor-bubble {
    min-width: 76px;
    font-size: 16px;
    padding: 8px 10px;
  }

  .room-master {
    top: 11%;
    left: 24%;
  }
  .room-living {
    top: 61%;
    left: 22%;
  }
  .room-kitchen {
    top: 34%;
    left: 75%;
  }
  .room-basement {
    top: 75%;
    left: 67%;
  }

  .deep-section {
    padding-bottom: 0;
  }

  .final-cta {
    padding: 60px 24px 70px;
  }

  .final-cta h2 {
    font-size: 34px;
    line-height: 1.02;
  }
}


/* Reusable inner page hero */
.page-hero {
  min-height: 500px;
  grid-template-columns: 46% 54%;
  padding-bottom: 0;
}

.page-hero-duck {
  align-self: end;
  justify-self: center;
  position: relative;
  z-index: 2;
}

.page-hero-duck img {
  max-height: 520px;
  object-fit: contain;
  filter: drop-shadow(0 28px 28px rgba(0, 0, 0, 0.24));
}

/* Reusable card grids */
.theme-card-grid {
  display: grid;
  gap: 24px;
  margin-top: 30px;
}

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

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

.theme-card-grid.four {
  grid-template-columns: repeat(4, 1fr);
}

/* Reusable split section */
.theme-split {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 42px;
  align-items: center;
}

.theme-split.reverse {
  grid-template-columns: 1.1fr 0.9fr;
}

/* Reusable dark panel */
.theme-dark-panel {
  background: linear-gradient(120deg, #00333a, #005f67);
  color: white;
  border-radius: 28px;
  padding: 42px;
  box-shadow: var(--shadow);
}

.theme-dark-panel p {
  color: rgba(255, 255, 255, 0.82);
}

/* Mobile */
@media (max-width: 1100px) {
  .page-hero {
    grid-template-columns: 1fr;
  }

  .page-hero-duck img {
    max-height: 360px;
    margin: 20px auto 0;
  }

  .theme-card-grid.two,
  .theme-card-grid.three,
  .theme-card-grid.four,
  .theme-split,
  .theme-split.reverse {
    grid-template-columns: 1fr;
  }
}

.theme-card-grid.five {
  grid-template-columns: repeat(5, 1fr);
}

.dark-mini-grid {
  margin-top: 28px;
}

.dark-mini-grid .mini {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 18px;
  padding: 20px;
  text-align: center;
  font-weight: 900;
}

.problem-next-section {
  margin-top: 0;
}

@media (max-width: 1100px) {
  .theme-card-grid.five {
    grid-template-columns: 1fr;
  }
}

/* Problem page */
.problem-page .hero {
  padding-bottom: 70px;
}

.problem-page .stats {
  margin-top: 0;
}

.problem-hero.no-hero-image {
  grid-template-columns: 1fr;
  min-height: 560px;
  padding: 72px 86px 90px;
}

.problem-hero.no-hero-image > div {
  max-width: 860px;
}

.problem-hero.no-hero-image h1 {
  max-width: 920px;
}

.problem-hero.no-hero-image .lead {
  max-width: 760px;
}

.problem-hero.no-hero-image .strongline {
  max-width: 720px;
  color: rgba(255, 255, 255, 0.92);
}

.problem-failure,
.problem-cost {
  background: #f7fbfb;
}

.problem-failure .section-title,
.problem-cost .section-title {
  max-width: 900px;
}

.failure-flow,
.cost-question-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  margin-top: 34px;
}

.failure-step,
.cost-question {
  min-height: 260px;
  padding: 30px 26px;
  border-radius: 24px;
  background: white;
  border: 2px solid var(--line);
  box-shadow: var(--shadow);
}

.failure-step strong {
  width: 52px;
  height: 52px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  background: var(--yellow);
  color: #111;
  font-size: 24px;
  font-weight: 950;
  margin-bottom: 26px;
}

.failure-step h3,
.cost-question h3 {
  margin: 0 0 12px;
  font-size: 28px;
  line-height: 1.02;
  letter-spacing: -0.045em;
}

.cost-question h3 {
  font-size: 34px;
  color: var(--teal);
}

.failure-step p,
.cost-question p {
  margin: 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.45;
}

.problem-reality,
.problem-shift {
  background: #fff;
}

.false-average-card {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 22px;
  align-items: stretch;
}

.average-reading {
  border-radius: 22px;
  background: linear-gradient(160deg, #00343a, #005961);
  color: white;
  padding: 26px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
}

.average-reading span {
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--yellow);
}

.average-reading strong {
  display: block;
  margin: 14px 0 8px;
  font-size: 58px;
  line-height: 1;
  letter-spacing: -0.06em;
}

.average-reading small {
  color: rgba(255, 255, 255, 0.75);
  font-weight: 800;
}

.room-reality-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.room-reality {
  min-height: 110px;
  border-radius: 18px;
  padding: 18px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  font-weight: 950;
  background: #eef7f7;
  border: 1px solid var(--line);
}

.room-reality b {
  font-size: 30px;
  letter-spacing: -0.04em;
}

.room-reality.cold b {
  color: #2d6cdf;
}

.room-reality.hot b {
  color: #d9431f;
}

.room-reality.damp b {
  color: var(--teal);
}

.room-reality.good b {
  color: #111;
}

.problem-turning-point {
  background:
    radial-gradient(circle at 80% 20%, rgba(0, 166, 173, 0.18), transparent 34%),
    linear-gradient(120deg, #00333a, #005f67);
  color: white;
}

.problem-turning-point > div,
.problem-turning-point .section-title {
  max-width: 850px;
}

.problem-turning-point p {
  max-width: 720px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 19px;
  line-height: 1.5;
}

.problem-turning-point .btn {
  margin-top: 20px;
}

.problem-shift .section-title {
  max-width: 920px;
}

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

.problem-shift .shift-card {
  min-height: 280px;
  padding: 34px;
}

.problem-shift .shift-card h3 {
  font-size: 34px;
}

.problem-shift .shift-card strong {
  display: block;
  margin-top: 24px;
  font-size: 24px;
  line-height: 1.15;
  letter-spacing: -0.04em;
}

.problem-shift .old-way {
  background: linear-gradient(145deg, #ffffff, #eef3f3);
}

.problem-shift .new-way {
  background: linear-gradient(145deg, #00343a, #005961);
  color: white;
}

.problem-shift .new-way p {
  color: rgba(255, 255, 255, 0.8);
}

.problem-shift .new-way strong {
  color: var(--yellow);
}

/* System page */
.system-page-site .stats {
  margin-top: 0;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  padding: 24px 42px;
  overflow: hidden;
}

.system-page-site .stat {
  min-width: 0;
  gap: 14px;
  padding: 0 18px;
}

.system-page-site .stat-icon {
  width: 74px;
  height: 74px;
  flex: 0 0 74px;
}

.system-page-site .stat strong {
  font-size: 21px;
  line-height: 1.05;
  letter-spacing: -0.035em;
}

.system-hero {
  grid-template-columns: 46% 54%;
  padding-bottom: 80px;
}

.system-network-card {
  position: relative;
  min-height: 420px;
  border-radius: 30px;
  background:
    radial-gradient(circle at 20% 20%, rgba(255, 197, 46, 0.18), transparent 28%),
    radial-gradient(circle at 80% 25%, rgba(0, 166, 173, 0.22), transparent 30%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.04));
  border: 1px solid rgba(255, 255, 255, 0.22);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.system-node {
  position: absolute;
  min-width: 118px;
  padding: 14px 16px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.92);
  color: var(--ink);
  font-weight: 950;
  line-height: 1.15;
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.2);
}

.system-node b {
  display: block;
  margin-top: 6px;
  color: var(--teal);
  font-size: 24px;
}

.node-one {
  top: 38px;
  left: 42px;
}

.node-two {
  top: 62px;
  right: 54px;
}

.node-three {
  bottom: 52px;
  left: 78px;
}

.node-four {
  bottom: 74px;
  right: 76px;
}

.system-core {
  position: absolute;
  inset: 50% auto auto 50%;
  transform: translate(-50%, -50%);
  width: 190px;
  height: 190px;
  border-radius: 50%;
  background: linear-gradient(145deg, #ffc52e, #fff1a8);
  color: #111;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 24px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.28);
}

.system-core strong {
  font-size: 24px;
  letter-spacing: -0.045em;
}

.system-core span {
  margin-top: 8px;
  font-size: 12px;
  font-weight: 900;
  line-height: 1.25;
}

.system-flow-section,
.system-benefits {
  background: #f7fbfb;
}

.system-principle,
.system-result {
  background: #fff;
}

.system-flow-section .section-title,
.system-benefits .section-title,
.system-result .section-title,
.system-next .section-title {
  max-width: 920px;
}

.system-flow-grid,
.benefit-system-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  margin-top: 34px;
}

.system-flow-step {
  min-height: 280px;
  padding: 30px 26px;
  border-radius: 24px;
  background: white;
  border: 2px solid var(--line);
  box-shadow: var(--shadow);
}

.system-flow-step strong {
  width: 52px;
  height: 52px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  background: var(--yellow);
  color: #111;
  font-size: 24px;
  font-weight: 950;
  margin-bottom: 26px;
}

.system-flow-step h3,
.benefit-system-grid h3 {
  margin: 0 0 12px;
  font-size: 28px;
  line-height: 1.02;
  letter-spacing: -0.045em;
}

.system-flow-step p,
.benefit-system-grid p,
.system-principle p,
.system-result p,
.system-next p {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.45;
}

.system-rule-card {
  background: linear-gradient(145deg, #00343a, #005961);
  color: white;
}

.system-rule-card h3 {
  font-size: 34px;
}

.system-rule-card p {
  color: rgba(255, 255, 255, 0.8);
}

.benefit-system-grid .card {
  min-height: 245px;
}

.system-result > div,
.system-next > div {
  max-width: 900px;
}

.system-result p {
  max-width: 720px;
  font-size: 21px;
  font-weight: 750;
}

.system-next {
  background:
    radial-gradient(circle at 80% 20%, rgba(0, 166, 173, 0.18), transparent 34%),
    linear-gradient(120deg, #00333a, #005f67);
  color: white;
}

.system-next p {
  max-width: 700px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 19px;
}

.system-next .btn {
  margin-top: 20px;
}

/* Solutions page */
.solutions-hero-wide {
  padding: 86px 64px 64px;
  color: white;
  background:
    radial-gradient(circle at 78% 18%, rgba(255, 197, 46, 0.22), transparent 28%),
    radial-gradient(circle at 88% 72%, rgba(0, 166, 173, 0.28), transparent 34%),
    linear-gradient(135deg, #002d33, #00616a);
}

.solutions-hero-copy {
  max-width: 940px;
}

.solutions-hero-copy h1 {
  margin: 0 0 22px;
  font-size: 72px;
  line-height: 0.92;
  letter-spacing: -0.07em;
  font-weight: 950;
}

.solutions-hero-copy p {
  max-width: 760px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 21px;
  line-height: 1.4;
}

.solutions-hero-banner {
  margin-top: 48px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.solutions-hero-banner div {
  min-height: 150px;
  border-radius: 28px;
  padding: 24px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.22);
  box-shadow: var(--shadow);
}

.solutions-hero-banner strong {
  display: block;
  color: var(--yellow);
  font-size: 34px;
  line-height: 1;
  letter-spacing: -0.055em;
}

.solutions-hero-banner span {
  display: block;
  margin-top: 12px;
  color: rgba(255, 255, 255, 0.82);
  font-weight: 850;
}

.solutions-showcase {
  display: grid;
  grid-template-columns: 1fr;
}

.solution-showcase-card {
  min-height: 430px;
  padding: 70px 64px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  background: #f7fbfb;
}

.solution-showcase-card:nth-child(even) {
  background: #fff;
}

.solution-showcase-card span,
.solutions-impact-band .kicker {
  color: var(--teal);
  font-size: 13px;
  font-weight: 950;
  text-transform: uppercase;
  letter-spacing: 0.09em;
}

.solution-showcase-card h2 {
  max-width: 850px;
  margin: 18px 0 20px;
  font-size: 56px;
  line-height: 0.96;
  letter-spacing: -0.065em;
}

.solution-showcase-card p {
  max-width: 760px;
  color: var(--muted);
  font-size: 20px;
  line-height: 1.45;
}

.solution-showcase-card .btn {
  margin-top: 22px;
}

.solution-showcase-card.hospitality {
  color: white;
  background:
    radial-gradient(circle at 82% 18%, rgba(255, 197, 46, 0.18), transparent 30%),
    linear-gradient(120deg, #00333a, #005f67);
}

.solution-showcase-card.hospitality p {
  color: rgba(255, 255, 255, 0.82);
}

.solutions-proof {
  background: #fff;
}

.solutions-proof .section-title {
  max-width: 920px;
}

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

.solutions-proof-grid article {
  min-height: 280px;
  padding: 32px;
  border-radius: 26px;
  background: white;
  border: 2px solid var(--line);
  box-shadow: var(--shadow);
}

.solutions-proof-grid strong {
  color: var(--yellow);
  font-size: 42px;
  font-weight: 950;
}

.solutions-proof-grid h3 {
  margin: 22px 0 12px;
  font-size: 31px;
  line-height: 1.02;
  letter-spacing: -0.05em;
}

.solutions-proof-grid p {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.45;
}

.solutions-impact-band {
  padding: 78px 64px;
  color: white;
  background:
    radial-gradient(circle at 18% 22%, rgba(255, 197, 46, 0.16), transparent 28%),
    linear-gradient(120deg, #00333a, #00737b);
}

.solutions-impact-band h2 {
  max-width: 950px;
  margin: 16px 0 34px;
  font-size: 54px;
  line-height: 0.98;
  letter-spacing: -0.06em;
}

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

.impact-list div {
  border-radius: 999px;
  padding: 18px 22px;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.22);
  font-weight: 950;
  text-align: center;
}

.solutions-tech-bridge {
  padding: 72px 64px;
  display: grid;
  grid-template-columns: 1fr 0.85fr;
  gap: 44px;
  align-items: center;
  background:
    radial-gradient(circle at 82% 18%, rgba(0, 166, 173, 0.14), transparent 34%),
    linear-gradient(135deg, #ffffff, #f7fbfb);
}

.tech-bridge-copy h2 {
  max-width: 780px;
  margin: 0 0 20px;
  font-size: 52px;
  line-height: 0.98;
  letter-spacing: -0.06em;
}

.tech-bridge-copy p {
  max-width: 680px;
  color: var(--muted);
  font-size: 19px;
  line-height: 1.5;
}

.tech-bridge-copy .btn {
  margin-top: 20px;
}

.tech-bridge-stack {
  display: grid;
  gap: 14px;
}

.tech-bridge-stack div {
  border-radius: 22px;
  padding: 22px 24px;
  background: linear-gradient(145deg, #00343a, #005961);
  color: white;
  font-size: 24px;
  font-weight: 950;
  letter-spacing: -0.045em;
  box-shadow: var(--shadow);
}

.tech-bridge-stack div:nth-child(even) {
  background: linear-gradient(145deg, var(--yellow), #fff1a8);
  color: #111;
}

/* Technology page */
.tech-hero {
  padding: 86px 64px 76px;
  color: white;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 44px;
  align-items: center;
  background:
    radial-gradient(circle at 78% 18%, rgba(255, 197, 46, 0.2), transparent 28%),
    radial-gradient(circle at 85% 78%, rgba(0, 166, 173, 0.34), transparent 34%),
    linear-gradient(135deg, #002d33, #005f67);
}

.tech-hero-copy h1 {
  max-width: 760px;
  margin: 0 0 22px;
  font-size: 68px;
  line-height: 0.92;
  letter-spacing: -0.07em;
  font-weight: 950;
}

.tech-hero-copy p {
  max-width: 720px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 21px;
  line-height: 1.4;
}

.tech-stack-showcase {
  display: grid;
  grid-template-columns: 1fr;
}

.tech-layer {
  min-height: 380px;
  padding: 70px 64px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: #f7fbfb;
}

.tech-layer:nth-child(odd) {
  background: #fff;
}

.tech-layer span {
  color: var(--teal);
  font-size: 13px;
  font-weight: 950;
  text-transform: uppercase;
  letter-spacing: 0.09em;
}

.tech-layer h2 {
  max-width: 900px;
  margin: 18px 0 20px;
  font-size: 56px;
  line-height: 0.96;
  letter-spacing: -0.065em;
}

.tech-layer p {
  max-width: 760px;
  color: var(--muted);
  font-size: 20px;
  line-height: 1.45;
}

.tech-layer.dark {
  color: white;
  background:
    radial-gradient(circle at 82% 18%, rgba(255, 197, 46, 0.18), transparent 30%),
    linear-gradient(120deg, #00333a, #005f67);
}

.tech-layer.dark p {
  color: rgba(255, 255, 255, 0.82);
}

.tech-layer.yellow {
  background: linear-gradient(145deg, var(--yellow), #fff1a8);
}

.tech-layer.yellow span,
.tech-layer.yellow p {
  color: #111;
}

.tech-principle {
  background: #fff;
}

.tech-principle .section-title {
  max-width: 900px;
}

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

.tech-principle-grid .card {
  min-height: 270px;
}

.tech-principle-grid h3 {
  font-size: 31px;
}

.tech-hardware-band {
  padding: 78px 64px;
  color: white;
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  gap: 44px;
  align-items: center;
  background:
    radial-gradient(circle at 18% 22%, rgba(255, 197, 46, 0.16), transparent 28%),
    linear-gradient(120deg, #00333a, #00737b);
}

.tech-hardware-band h2 {
  max-width: 880px;
  margin: 16px 0 20px;
  font-size: 54px;
  line-height: 0.98;
  letter-spacing: -0.06em;
}

.tech-hardware-band p {
  max-width: 720px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 19px;
  line-height: 1.5;
}

.hardware-points {
  display: grid;
  gap: 14px;
}

.hardware-points div {
  border-radius: 22px;
  padding: 22px 24px;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.22);
  color: white;
  font-size: 24px;
  font-weight: 950;
  letter-spacing: -0.045em;
}

.hardware-points div:nth-child(even) {
  background: linear-gradient(145deg, var(--yellow), #fff1a8);
  color: #111;
}

.tech-next {
  background: #f7fbfb;
}

.tech-next > div {
  max-width: 900px;
}

.tech-next p {
  max-width: 700px;
  color: var(--muted);
  font-size: 19px;
  line-height: 1.5;
}

.tech-next .btn {
  margin-top: 20px;
}

/* Technology orbit graphic */
.tech-orbit-panel {
  position: relative;
  min-height: 560px;
  border-radius: 34px;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 50%, rgba(255, 197, 46, 0.12), transparent 28%),
    radial-gradient(circle at 50% 50%, rgba(0, 166, 173, 0.22), transparent 58%);
}

.orbit-ring {
  position: absolute;
  left: 50%;
  top: 50%;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.ring-1 {
  width: 320px;
  height: 200px;
}

.ring-2 {
  width: 520px;
  height: 310px;
  opacity: 0.75;
}

.ring-3 {
  width: 720px;
  height: 420px;
  opacity: 0.5;
}

.ring-4 {
  width: 900px;
  height: 520px;
  opacity: 0.32;
}

.orbit-core {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 210px;
  height: 210px;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: linear-gradient(145deg, #ffc52e, #fff1a8);
  color: #111;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  box-shadow:
    0 0 38px rgba(255, 197, 46, 0.55),
    0 24px 56px rgba(0, 0, 0, 0.32);
  z-index: 5;
}

.orbit-core strong {
  font-size: 30px;
  letter-spacing: -0.055em;
}

.orbit-core span {
  margin-top: 8px;
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.orbit-major {
  position: absolute;
  z-index: 6;
  min-width: 150px;
  padding: 18px 22px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.94);
  color: #111;
  text-align: center;
  font-size: 22px;
  font-weight: 950;
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.22);
}

.major-temp {
  left: 18%;
  top: 27%;
}

.major-humidity {
  right: 18%;
  top: 27%;
}

.major-airflow {
  left: 18%;
  bottom: 27%;
}

.major-logic {
  right: 18%;
  bottom: 27%;
}

.orbit-cloud {
  position: absolute;
  inset: 28px;
  z-index: 3;
}

.orbit-cloud span {
  position: absolute;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(0, 80, 88, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.86);
  font-size: 11px;
  font-weight: 850;
  white-space: nowrap;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.16);
}

.orbit-cloud span:nth-child(1) { left: 13%; top: 19%; }
.orbit-cloud span:nth-child(2) { left: 5%; top: 30%; }
.orbit-cloud span:nth-child(3) { left: 6%; top: 42%; }
.orbit-cloud span:nth-child(4) { left: 8%; top: 54%; }
.orbit-cloud span:nth-child(5) { left: 17%; top: 67%; }
.orbit-cloud span:nth-child(6) { left: 29%; top: 13%; }
.orbit-cloud span:nth-child(7) { left: 39%; top: 23%; }
.orbit-cloud span:nth-child(8) { left: 31%; top: 36%; }
.orbit-cloud span:nth-child(9) { right: 29%; top: 13%; }
.orbit-cloud span:nth-child(10) { right: 18%; top: 20%; }
.orbit-cloud span:nth-child(11) { right: 9%; top: 31%; }
.orbit-cloud span:nth-child(12) { right: 7%; top: 43%; }
.orbit-cloud span:nth-child(13) { right: 26%; top: 37%; }
.orbit-cloud span:nth-child(14) { right: 28%; top: 48%; }
.orbit-cloud span:nth-child(15) { right: 29%; top: 59%; }
.orbit-cloud span:nth-child(16) { right: 34%; top: 70%; }
.orbit-cloud span:nth-child(17) { right: 5%; top: 56%; }
.orbit-cloud span:nth-child(18) { right: 6%; top: 66%; }
.orbit-cloud span:nth-child(19) { left: 31%; bottom: 17%; }
.orbit-cloud span:nth-child(20) { left: 42%; bottom: 13%; }
.orbit-cloud span:nth-child(21) { left: 22%; bottom: 10%; }
.orbit-cloud span:nth-child(22) { left: 9%; bottom: 19%; }
.orbit-cloud span:nth-child(23) { left: 5%; bottom: 30%; }
.orbit-cloud span:nth-child(24) { left: 39%; bottom: 24%; }
.orbit-cloud span:nth-child(25) { left: 3%; top: 67%; }
.orbit-cloud span:nth-child(26) { left: 4%; top: 76%; }
.orbit-cloud span:nth-child(27) { left: 10%; top: 84%; }
.orbit-cloud span:nth-child(28) { left: 22%; top: 78%; }
.orbit-cloud span:nth-child(29) { left: 24%; top: 5%; }
.orbit-cloud span:nth-child(30) { left: 42%; top: 5%; }
.orbit-cloud span:nth-child(31) { right: 42%; top: 5%; }
.orbit-cloud span:nth-child(32) { right: 24%; top: 5%; }
.orbit-cloud span:nth-child(33) { right: 8%; bottom: 21%; }
.orbit-cloud span:nth-child(34) { right: 15%; bottom: 10%; }
.orbit-cloud span:nth-child(35) { right: 29%; bottom: 7%; }
.orbit-cloud span:nth-child(36) { right: 4%; bottom: 32%; }
.orbit-cloud span:nth-child(37) { right: 5%; bottom: 43%; }
.orbit-cloud span:nth-child(38) { right: 22%; bottom: 22%; }
.orbit-cloud span:nth-child(39) { right: 36%; bottom: 21%; }
.orbit-cloud span:nth-child(40) { left: 48%; bottom: 5%; }

/* Page-specific responsive cleanup */
@media (max-width: 1100px) {
  .failure-flow,
  .cost-question-grid,
  .system-flow-grid,
  .benefit-system-grid,
  .solutions-hero-banner,
  .solutions-proof-grid,
  .impact-list,
  .tech-principle-grid {
    grid-template-columns: 1fr;
  }

  .system-hero,
  .tech-hero,
  .tech-hardware-band,
  .solutions-tech-bridge {
    grid-template-columns: 1fr;
  }

  .system-network-card {
    min-height: 430px;
    margin-top: 32px;
  }

  .solutions-hero-copy h1,
  .solution-showcase-card h2,
  .solutions-impact-band h2,
  .tech-hero-copy h1,
  .tech-layer h2,
  .tech-hardware-band h2 {
    font-size: 44px;
  }

  .system-page-site .stats {
    grid-template-columns: 1fr;
    padding: 24px 28px;
  }

  .system-page-site .stat {
    min-height: 86px;
  }

  .failure-step,
  .cost-question,
  .system-flow-step,
  .benefit-system-grid .card,
  .solution-showcase-card,
  .solutions-proof-grid article {
    min-height: auto;
  }
}

@media (max-width: 900px) {
  .false-average-card,
  .room-reality-grid,
  .problem-shift .shift-grid {
    grid-template-columns: 1fr;
  }

  .solutions-tech-bridge {
    padding: 52px 24px;
  }

  .tech-bridge-copy h2 {
    font-size: 38px;
  }
}

@media (max-width: 600px) {
  .problem-hero.no-hero-image,
  .solutions-hero-wide,
  .solution-showcase-card,
  .solutions-impact-band,
  .tech-hero,
  .tech-layer,
  .tech-hardware-band {
    padding: 52px 24px;
  }

  .system-network-card {
    min-height: 500px;
  }

  .system-node {
    min-width: 104px;
    font-size: 13px;
  }

  .system-node b {
    font-size: 20px;
  }

  .node-one {
    top: 28px;
    left: 20px;
  }

  .node-two {
    top: 88px;
    right: 18px;
  }

  .node-three {
    bottom: 80px;
    left: 22px;
  }

  .node-four {
    bottom: 32px;
    right: 22px;
  }

  .system-core {
    width: 154px;
    height: 154px;
  }

  .tech-orbit-panel {
    min-height: 620px;
  }

  .ring-3,
  .ring-4 {
    display: none;
  }

  .orbit-core {
    width: 160px;
    height: 160px;
  }

  .orbit-core strong {
    font-size: 24px;
  }

  .orbit-major {
    min-width: 118px;
    font-size: 16px;
    padding: 14px 16px;
  }

  .major-temp {
    left: 6%;
    top: 24%;
  }

  .major-humidity {
    right: 6%;
    top: 24%;
  }

  .major-airflow {
    left: 6%;
    bottom: 24%;
  }

  .major-logic {
    right: 6%;
    bottom: 24%;
  }

  .orbit-cloud span {
    font-size: 9px;
    padding: 6px 8px;
  }
}

/* Mobile polish pass */
@media (max-width: 600px) {
  .header {
    height: 82px;
    padding: 0 10px 0 14px;
    gap: 8px;
  }

  .brand {
    gap: 8px;
    font-size: 24px;
    letter-spacing: -0.06em;
    min-width: 0;
  }

  .brand-mark {
    width: 62px;
    height: 62px;
    flex: 0 0 62px;
  }

  .brand small {
    font-size: 12px;
    margin-top: -6px;
  }

  .header > .btn-small {
    min-height: 48px;
    padding: 0 16px;
    font-size: 0;
    flex: 0 0 auto;
  }

  .header > .btn-small::before {
    content: "Start →";
    font-size: 12px;
  }

  .nav-toggle {
    flex: 0 0 auto;
    width: 54px;
    height: 54px;
    justify-content: center;
    font-size: 28px;
    padding: 0;
  }

  .nav.open {
    inset: 82px 0 0 0;
  }

  .hero h1,
  .problem-hero.no-hero-image h1,
  .tech-hero-copy h1,
  .solutions-hero-copy h1 {
    font-size: 40px;
    line-height: 0.98;
    letter-spacing: -0.065em;
  }

  .lead,
  .tech-hero-copy p,
  .solutions-hero-copy p {
    font-size: 18px;
    line-height: 1.45;
  }

  .strongline {
    font-size: 18px;
    margin: 24px 0 24px;
  }

  .hero-actions {
    gap: 12px;
  }

  .hero-actions .btn {
    width: 100%;
  }

  .section-title,
  .tech-layer h2,
  .solution-showcase-card h2,
  .solutions-impact-band h2,
  .tech-hardware-band h2,
  .tech-bridge-copy h2 {
    font-size: 34px;
    line-height: 1.02;
    letter-spacing: -0.055em;
  }

  .section {
    padding: 44px 22px;
  }

  .card,
  .failure-step,
  .cost-question,
  .system-flow-step,
  .solution-showcase-card,
  .solutions-proof-grid article {
    padding: 24px 20px;
    border-radius: 20px;
  }

  .stats {
    padding: 18px 22px;
  }

  .stat {
    gap: 14px;
    padding: 12px 0;
  }

  .stat-icon {
    width: 48px;
    height: 48px;
    flex: 0 0 48px;
  }

  .stat strong {
    font-size: 19px;
  }

  .final-cta {
    padding: 54px 22px 64px;
  }

  .final-cta h2 {
    font-size: 32px;
  }

  .footer {
    padding: 36px 24px;
    gap: 24px;
  }
}


/* FINAL: Technology SmartDuck orbit */
.technology-page-site .smartduck-orbit {
  position: relative;
  min-height: 560px;
  border-radius: 34px;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 50%, rgba(255, 197, 46, 0.12), transparent 28%),
    radial-gradient(circle at 50% 50%, rgba(0, 166, 173, 0.22), transparent 58%);
}

.technology-page-site .smartduck-orbit .orbit-tags span {
  position: absolute;
  left: var(--x);
  top: var(--y);
  transform: translate(-50%, -50%);
  z-index: 3;
  padding: 7px 10px;
  border-radius: 999px;
  background: rgba(0, 80, 88, 0.72);
  border: 1px solid rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.88);
  font-weight: 850;
  white-space: nowrap;
}

.technology-page-site .layer-1 span { font-size: 11px; opacity: .9; }
.technology-page-site .layer-2 span { font-size: 10px; opacity: .72; }
.technology-page-site .layer-3 span { font-size: 9px; opacity: .56; }
.technology-page-site .layer-4 span { font-size: 8px; opacity: .42; }

@media (max-width: 600px) {
  .technology-page-site .tech-hero {
    display: flex;
    flex-direction: column;
    gap: 30px;
    padding: 44px 22px 52px;
  }

  .technology-page-site .smartduck-orbit {
    min-height: 520px;
  }

  .technology-page-site .smartduck-orbit .orbit-tags span {
    display: none;
  }

  .technology-page-site .smartduck-orbit .layer-1 span,
  .technology-page-site .smartduck-orbit .layer-2 span:nth-child(-n + 4) {
    display: block;
    font-size: 8px;
    padding: 5px 7px;
    max-width: 92px;
    white-space: normal;
    text-align: center;
    line-height: 1.1;
  }

  .technology-page-site .smartduck-orbit .ring-1 {
    width: 260px;
    height: 170px;
  }

  .technology-page-site .smartduck-orbit .ring-2 {
    width: 370px;
    height: 240px;
  }

  .technology-page-site .smartduck-orbit .ring-3,
  .technology-page-site .smartduck-orbit .ring-4 {
    display: none;
  }

  .technology-page-site .smartduck-orbit .orbit-core {
    width: 145px;
    height: 145px;
    z-index: 20;
  }

  .technology-page-site .smartduck-orbit .orbit-major {
    min-width: 108px;
    font-size: 15px;
    padding: 12px 12px;
    z-index: 18;
  }

  .technology-page-site .smartduck-orbit .major-temp { left: 4%; top: 8%; }
  .technology-page-site .smartduck-orbit .major-humidity { right: 4%; top: 8%; }
  .technology-page-site .smartduck-orbit .major-airflow { left: 4%; bottom: 8%; }
  .technology-page-site .smartduck-orbit .major-logic { right: 4%; bottom: 8%; }
}

/* FINAL: Technology mobile orbit should look like the desktop graphic, scaled down */
@media (max-width: 600px) {
  .technology-page-site .tech-hero {
    padding: 44px 22px 38px !important;
    gap: 26px !important;
  }

  .technology-page-site .smartduck-orbit {
    width: calc(100vw - 44px) !important;
    height: 520px !important;
    min-height: 0 !important;
    margin: 0 auto !important;
    overflow: hidden !important;
    border-radius: 0 !important;
  }

  .technology-page-site .smartduck-orbit .orbit-tags {
    display: block !important;
  }

  .technology-page-site .smartduck-orbit .orbit-tags span {
    display: block !important;
    font-size: 7px !important;
    padding: 4px 6px !important;
    line-height: 1 !important;
    white-space: nowrap !important;
    opacity: 0.58 !important;
  }

  .technology-page-site .smartduck-orbit .layer-1 span {
    font-size: 8px !important;
    opacity: 0.78 !important;
  }

  .technology-page-site .smartduck-orbit .layer-2 span {
    font-size: 7px !important;
    opacity: 0.62 !important;
  }

  .technology-page-site .smartduck-orbit .layer-3 span,
  .technology-page-site .smartduck-orbit .layer-4 span {
    display: none !important;
  }

  .technology-page-site .smartduck-orbit .ring-1 {
    width: 250px !important;
    height: 155px !important;
  }

  .technology-page-site .smartduck-orbit .ring-2 {
    width: 390px !important;
    height: 245px !important;
  }

  .technology-page-site .smartduck-orbit .ring-3 {
    display: block !important;
    width: 520px !important;
    height: 330px !important;
    opacity: 0.28 !important;
  }

  .technology-page-site .smartduck-orbit .ring-4 {
    display: block !important;
    width: 660px !important;
    height: 410px !important;
    opacity: 0.16 !important;
  }

  .technology-page-site .smartduck-orbit .orbit-core {
    width: 132px !important;
    height: 132px !important;
  }

  .technology-page-site .smartduck-orbit .orbit-core strong {
    font-size: 22px !important;
  }

  .technology-page-site .smartduck-orbit .orbit-core span {
    font-size: 9px !important;
    line-height: 1.15 !important;
    max-width: 96px !important;
    text-align: center !important;
  }

  .technology-page-site .smartduck-orbit .orbit-major {
    min-width: 94px !important;
    padding: 10px 11px !important;
    font-size: 14px !important;
    border-radius: 16px !important;
  }

  .technology-page-site .smartduck-orbit .major-temp {
    left: 8% !important;
    top: 18% !important;
  }

  .technology-page-site .smartduck-orbit .major-humidity {
    right: 8% !important;
    top: 18% !important;
  }

  .technology-page-site .smartduck-orbit .major-airflow {
    left: 8% !important;
    bottom: 16% !important;
  }

  .technology-page-site .smartduck-orbit .major-logic {
    right: 8% !important;
    bottom: 16% !important;
  }
}

@media (max-width: 600px) {
  .technology-page-site .smartduck-orbit .layer-3 span {
    display: block !important;
    font-size: 6.5px !important;
    padding: 3px 5px !important;
    opacity: 0.34 !important;
    line-height: 1 !important;
    white-space: nowrap !important;
  }

  .technology-page-site .smartduck-orbit .layer-4 span {
    display: block !important;
    font-size: 6px !important;
    padding: 3px 5px !important;
    opacity: 0.24 !important;
    line-height: 1 !important;
    white-space: nowrap !important;
  }

  .technology-page-site .smartduck-orbit .orbit-tags span {
    background: rgba(0, 80, 88, 0.62) !important;
  }
}

@media (max-width: 600px) {
  /* Pull center-line tags away from the major labels */
  .technology-page-site .smartduck-orbit .layer-1 span:nth-child(1) {
    top: 28% !important;
    left: 44% !important;
  }

  .technology-page-site .smartduck-orbit .layer-1 span:nth-child(2) {
    top: 25% !important;
    left: 52% !important;
  }

  .technology-page-site .smartduck-orbit .layer-2 span:nth-child(2) {
    top: 31% !important;
    left: 75% !important;
  }

  /* Move side tags away from the SmartDuck core */
  .technology-page-site .smartduck-orbit .layer-1 span:nth-child(5) {
    left: 20% !important;
    top: 51% !important;
  }

  .technology-page-site .smartduck-orbit .layer-1 span:nth-child(6) {
    left: 80% !important;
    top: 51% !important;
  }

  /* Split the bottom temp pair */
  .technology-page-site .smartduck-orbit .layer-1 span:nth-child(7) {
    left: 38% !important;
    top: 72% !important;
  }

  .technology-page-site .smartduck-orbit .layer-1 span:nth-child(8) {
    left: 62% !important;
    top: 72% !important;
  }

  /* Fade anything sitting behind the four big category pills */
  .technology-page-site .smartduck-orbit .layer-3 span:nth-child(1),
  .technology-page-site .smartduck-orbit .layer-3 span:nth-child(6),
  .technology-page-site .smartduck-orbit .layer-4 span:nth-child(1),
  .technology-page-site .smartduck-orbit .layer-4 span:nth-child(2) {
    opacity: 0.16 !important;
  }
}

@media (max-width: 600px) {
  /* Clear the new collisions */
  .technology-page-site .smartduck-orbit .layer-1 span:nth-child(4) {
    left: 58% !important;
    top: 37% !important;
  }

  .technology-page-site .smartduck-orbit .layer-2 span:nth-child(2) {
    left: 74% !important;
    top: 36% !important;
  }

  .technology-page-site .smartduck-orbit .layer-2 span:nth-child(4) {
    left: 74% !important;
    top: 44% !important;
  }

  .technology-page-site .smartduck-orbit .layer-1 span:nth-child(5) {
    left: 21% !important;
    top: 53% !important;
  }

  .technology-page-site .smartduck-orbit .layer-1 span:nth-child(6) {
    left: 79% !important;
    top: 53% !important;
  }

  .technology-page-site .smartduck-orbit .layer-2 span:nth-child(8),
  .technology-page-site .smartduck-orbit .layer-4 span:nth-child(8) {
    opacity: 0.12 !important;
  }

  .technology-page-site .smartduck-orbit .layer-1 span:nth-child(7) {
    left: 38% !important;
    top: 72% !important;
  }

  .technology-page-site .smartduck-orbit .layer-1 span:nth-child(8) {
    left: 62% !important;
    top: 72% !important;
  }
}

@media (max-width: 600px) {
  .header {
    height: 76px;
    padding: 0 10px;
    gap: 6px;
  }

  .brand {
    gap: 6px;
    font-size: 19px;
    flex: 1 1 auto;
    min-width: 0;
  }

  .brand-mark {
    width: 48px;
    height: 48px;
    flex: 0 0 48px;
  }

  .brand small {
    font-size: 10px;
    margin-top: -5px;
  }

  .nav-toggle {
    width: 44px;
    height: 44px;
    flex: 0 0 44px;
    font-size: 24px;
    border-radius: 12px;
    margin-left: 0;
  }

  .header > .btn-small {
    min-height: 44px;
    padding: 0 14px;
    font-size: 0;
    flex: 0 0 auto;
  }

  .header > .btn-small::before {
    content: "Start →";
    font-size: 12px;
  }
}

/* SOLUTIONS PAGE -- outcome / possibility version */

.solutions-page-site .solutions-hero-wide {
  min-height: 650px;
  padding: 92px 64px 72px;
  color: white;
  background:
    radial-gradient(circle at 78% 16%, rgba(255, 197, 46, 0.28), transparent 30%),
    radial-gradient(circle at 85% 82%, rgba(0, 166, 173, 0.36), transparent 36%),
    linear-gradient(135deg, #002d33, #00616a);
}

.solutions-hero-copy {
  max-width: 980px;
}

.solutions-hero-copy h1 {
  margin: 0 0 24px;
  max-width: 980px;
  font-size: 78px;
  line-height: 0.9;
  letter-spacing: -0.075em;
  font-weight: 950;
}

.solutions-hero-copy h1 span {
  color: var(--yellow);
}

.solutions-hero-copy p {
  max-width: 740px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 22px;
  line-height: 1.42;
}

.solutions-hero-banner {
  margin-top: 58px;
  display: grid;
  grid-template-columns: 1.35fr 1fr 1fr 1fr;
  gap: 18px;
}

.solutions-hero-banner div {
  min-height: 175px;
  border-radius: 30px;
  padding: 28px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.22);
  box-shadow: var(--shadow);
}

.solutions-hero-banner div:first-child {
  background: linear-gradient(145deg, var(--yellow), #fff1a8);
  color: #111;
}

.solutions-hero-banner strong {
  display: block;
  font-size: 34px;
  line-height: 1;
  letter-spacing: -0.055em;
}

.solutions-hero-banner span {
  display: block;
  margin-top: 12px;
  color: rgba(255, 255, 255, 0.82);
  font-weight: 850;
}

.solutions-hero-banner div:first-child span {
  color: rgba(0, 0, 0, 0.68);
}

.solutions-showcase {
  display: grid;
  grid-template-columns: 1fr;
}

.solution-showcase-card {
  min-height: 500px;
  padding: 82px 64px;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(280px, 0.55fr);
  gap: 48px;
  align-items: center;
  background: #f7fbfb;
}

.solution-showcase-card:nth-child(even) {
  background: #fff;
}

.solution-showcase-card.hospitality {
  color: white;
  background:
    radial-gradient(circle at 84% 18%, rgba(255, 197, 46, 0.18), transparent 30%),
    linear-gradient(120deg, #00333a, #005f67);
}

.solution-showcase-card span {
  color: var(--teal);
  font-size: 13px;
  font-weight: 950;
  text-transform: uppercase;
  letter-spacing: 0.09em;
}

.solution-showcase-card.hospitality span {
  color: var(--yellow);
}

.solution-showcase-card h2 {
  max-width: 820px;
  margin: 18px 0 22px;
  font-size: 58px;
  line-height: 0.95;
  letter-spacing: -0.068em;
}

.solution-showcase-card p {
  max-width: 720px;
  color: var(--muted);
  font-size: 20px;
  line-height: 1.48;
}

.solution-showcase-card.hospitality p {
  color: rgba(255, 255, 255, 0.82);
}

.solution-result-card {
  border-radius: 30px;
  padding: 30px;
  background: white;
  border: 2px solid var(--line);
  box-shadow: var(--shadow);
}

.solution-showcase-card.hospitality .solution-result-card {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.2);
}

.solution-result-card strong {
  display: block;
  color: var(--teal);
  font-size: 46px;
  line-height: 0.95;
  letter-spacing: -0.06em;
}

.solution-showcase-card.hospitality .solution-result-card strong {
  color: var(--yellow);
}

.solution-result-card small {
  display: block;
  margin-top: 14px;
  color: var(--muted);
  font-size: 15px;
  font-weight: 850;
  line-height: 1.35;
}

.solution-showcase-card.hospitality .solution-result-card small {
  color: rgba(255, 255, 255, 0.78);
}

.solutions-proof {
  background: white;
}

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

.solutions-proof-grid article {
  min-height: 300px;
  padding: 34px;
  border-radius: 28px;
  background: white;
  border: 2px solid var(--line);
  box-shadow: var(--shadow);
}

.solutions-proof-grid strong {
  color: var(--yellow);
  font-size: 46px;
  font-weight: 950;
}

.solutions-proof-grid h3 {
  margin: 22px 0 12px;
  font-size: 32px;
  line-height: 1.02;
  letter-spacing: -0.055em;
}

.solutions-proof-grid p {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.45;
}

.solutions-impact-band {
  padding: 86px 64px;
  color: white;
  background:
    radial-gradient(circle at 18% 22%, rgba(255, 197, 46, 0.16), transparent 28%),
    linear-gradient(120deg, #00333a, #00737b);
}

.solutions-impact-band h2 {
  max-width: 950px;
  margin: 16px 0 36px;
  font-size: 56px;
  line-height: 0.96;
  letter-spacing: -0.065em;
}

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

.impact-list div {
  border-radius: 999px;
  padding: 18px 22px;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.22);
  font-weight: 950;
  text-align: center;
}

.solutions-tech-bridge {
  padding: 82px 64px;
  display: grid;
  grid-template-columns: 1fr 0.85fr;
  gap: 44px;
  align-items: center;
  background:
    radial-gradient(circle at 82% 18%, rgba(0, 166, 173, 0.14), transparent 34%),
    linear-gradient(135deg, #ffffff, #f7fbfb);
}

.tech-bridge-copy h2 {
  max-width: 780px;
  margin: 0 0 20px;
  font-size: 54px;
  line-height: 0.97;
  letter-spacing: -0.065em;
}

.tech-bridge-copy p {
  max-width: 680px;
  color: var(--muted);
  font-size: 19px;
  line-height: 1.5;
}

.tech-bridge-stack {
  display: grid;
  gap: 14px;
}

.tech-bridge-stack div {
  border-radius: 22px;
  padding: 22px 24px;
  background: linear-gradient(145deg, #00343a, #005961);
  color: white;
  font-size: 24px;
  font-weight: 950;
  letter-spacing: -0.045em;
  box-shadow: var(--shadow);
}

.tech-bridge-stack div:nth-child(even) {
  background: linear-gradient(145deg, var(--yellow), #fff1a8);
  color: #111;
}

@media (max-width: 1100px) {
  .solutions-hero-banner,
  .solutions-proof-grid,
  .impact-list,
  .solutions-tech-bridge,
  .solution-showcase-card {
    grid-template-columns: 1fr;
  }

  .solutions-hero-copy h1,
  .solution-showcase-card h2,
  .solutions-impact-band h2,
  .tech-bridge-copy h2 {
    font-size: 46px;
  }
}

@media (max-width: 600px) {
  .solutions-page-site .solutions-hero-wide,
  .solution-showcase-card,
  .solutions-impact-band,
  .solutions-tech-bridge {
    padding: 52px 24px;
  }

  .solutions-page-site .solutions-hero-wide {
    min-height: auto;
  }

  .solutions-hero-copy h1,
  .solution-showcase-card h2,
  .solutions-impact-band h2,
  .tech-bridge-copy h2 {
    font-size: 40px;
    line-height: 0.98;
  }

  .solutions-hero-copy p,
  .solution-showcase-card p {
    font-size: 18px;
  }

  .solutions-hero-banner div {
    min-height: 130px;
  }

  .solution-result-card strong {
    font-size: 36px;
  }
}

/* SOLUTIONS VISUAL FIXES */

/* Homes card should not be yellow on yellow */
.solutions-page-site .solutions-hero-banner div:first-child {
  background: linear-gradient(145deg, #00343a, #005961);
  color: white;
}

.solutions-page-site .solutions-hero-banner div:first-child span {
  color: rgba(255, 255, 255, 0.82);
}

/* Make Residential / Hospitality / Commercial feel designed, not floating */
@media (min-width: 901px) {
  .solutions-page-site .solution-showcase-card > div:first-child {
    position: relative;
    padding-left: 112px;
  }

  .solutions-page-site .solution-showcase-card > div:first-child > span {
    position: absolute;
    left: 0;
    top: 2px;
    width: 82px;
    min-height: 260px;
    border-radius: 999px;
    display: flex;
    align-items: center;
    justify-content: center;
    writing-mode: vertical-rl;
    text-orientation: mixed;
    background: linear-gradient(180deg, #00343a, #005961);
    color: white;
    box-shadow: var(--shadow);
    letter-spacing: 0.14em;
  }

  .solutions-page-site .solution-showcase-card.hospitality > div:first-child > span {
    background: linear-gradient(180deg, var(--yellow), #fff1a8);
    color: #111;
  }

  .solutions-page-site .solution-showcase-card.commercial > div:first-child > span {
    background: linear-gradient(180deg, #007b83, #00a6ad);
    color: white;
  }
}

.solution-showcase-card{

    display:grid;
    grid-template-columns:1fr 520px;
    gap:80px;
    align-items:center;

}

.solution-copy{

    max-width:760px;

}

.solution-tag{

    display:inline-flex;
    align-items:center;
    gap:14px;

    padding:10px 18px;

    border-radius:999px;

    background:#00454d;

    color:white;

    font-weight:900;

    text-transform:uppercase;

    letter-spacing:.08em;

    margin-bottom:34px;

}

.solution-icon{

    font-size:28px;

}

.solution-points{

    list-style:none;

    margin:42px 0;

    padding:0;

    display:grid;

    gap:18px;

}

.solution-points li{

    font-size:20px;

    font-weight:700;

    color:#234;

    position:relative;

    padding-left:36px;

}

.solution-points li::before{

    content:"✓";

    position:absolute;

    left:0;

    color:var(--teal2);

    font-weight:900;

}

.solution-visual{

    position:relative;

    min-height:420px;

    display:flex;

    align-items:center;

    justify-content:center;

}

.ghost-word{

    position:absolute;

    inset:0;

    display:flex;

    align-items:center;

    justify-content:center;

    font-size:180px;

    font-weight:900;

    letter-spacing:-.08em;

    color:rgba(255,255,255,.06);

    user-select:none;

}

.outcome-card{

    position:relative;

    z-index:2;

    width:320px;

    padding:38px;

    border-radius:28px;

    background:white;

    box-shadow:0 25px 60px rgba(0,0,0,.18);

}

.outcome-card strong{

    display:block;

    font-size:42px;

    line-height:.95;

    margin-bottom:16px;

}

.outcome-card span{

    color:var(--muted);

    font-size:18px;

    line-height:1.45;

}

/* SOLUTIONS FINAL: replace weak text cards with actual use-case visuals */

.solutions-page-site .solution-result-card {
  min-height: 360px;
  position: relative;
  overflow: hidden;
  display: block;
  background:
    radial-gradient(circle at 50% 35%, rgba(255,197,46,.16), transparent 34%),
    linear-gradient(145deg, #00343a, #005961);
  border: 1px solid rgba(255,255,255,.18);
}

.solution-result-card strong,
.solution-result-card small {
  display: none;
}

/* Residential visual */
.solution-showcase-card.residential .solution-result-card::before {
  content: "Bedroom\A 23°\A\A Kitchen\A 21°\A\A Basement\A 19°\A\A Living Room\A 22°";
  white-space: pre;
  position: absolute;
  inset: 34px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  color: white;
  font-weight: 950;
  font-size: 18px;
  line-height: 1.15;
}

.solution-showcase-card.residential .solution-result-card::after {
  content: "One SmartDuck per vent.\A The home balances room by room.";
  white-space: pre;
  position: absolute;
  left: 34px;
  right: 34px;
  bottom: 28px;
  padding: 18px;
  border-radius: 20px;
  background: var(--yellow);
  color: #111;
  font-weight: 950;
  text-transform: uppercase;
  letter-spacing: .04em;
}

/* Hospitality visual */
.solution-showcase-card.hospitality .solution-result-card::before {
  content: "Room 204  OK\A Room 207  Warm\A Room 211  Low Airflow\A Room 216  Humid";
  white-space: pre;
  position: absolute;
  inset: 38px;
  color: white;
  font-size: 24px;
  font-weight: 950;
  line-height: 1.9;
}

.solution-showcase-card.hospitality .solution-result-card::after {
  content: "Visible before complaints reach the desk.";
  position: absolute;
  left: 38px;
  right: 38px;
  bottom: 34px;
  padding: 18px;
  border-radius: 20px;
  background: rgba(255,255,255,.92);
  color: #111;
  font-weight: 950;
}

/* Commercial visual */
.solution-showcase-card.commercial .solution-result-card::before {
  content: "Office Zone\A Boardroom\A Reception\A Open Area\A Server Room";
  white-space: pre;
  position: absolute;
  inset: 36px;
  color: white;
  font-size: 24px;
  font-weight: 950;
  line-height: 1.65;
}

.solution-showcase-card.commercial .solution-result-card::after {
  content: "Each air opening gets its own SmartDuck.";
  position: absolute;
  left: 36px;
  right: 36px;
  bottom: 34px;
  padding: 18px;
  border-radius: 20px;
  background: var(--yellow);
  color: #111;
  font-weight: 950;
}

/* make text column less cramped */
.solutions-page-site .solution-showcase-card p {
  max-width: 660px;
}

@media (max-width: 900px) {
  .solutions-page-site .solution-result-card {
    min-height: 300px;
  }
}

/* ==========================================================================
   FINAL CLEAN SOLUTIONS PAGE OVERRIDE
   Paste-safe: this block is intentionally scoped to .solutions-page-site.
   It overrides older duplicate Solutions CSS above without hunting.
   ========================================================================== */

.solutions-page-site .solutions-hero-wide {
  min-height: 650px !important;
  padding: 92px 64px 72px !important;
  color: white !important;
  background:
    radial-gradient(circle at 78% 16%, rgba(255, 197, 46, 0.24), transparent 30%),
    radial-gradient(circle at 85% 82%, rgba(0, 166, 173, 0.36), transparent 36%),
    linear-gradient(135deg, #002d33, #00616a) !important;
}

.solutions-page-site .solutions-hero-copy {
  max-width: 980px !important;
}

.solutions-page-site .solutions-hero-copy h1 {
  margin: 0 0 24px !important;
  max-width: 980px !important;
  font-size: 76px !important;
  line-height: 0.9 !important;
  letter-spacing: -0.075em !important;
  font-weight: 950 !important;
}

.solutions-page-site .solutions-hero-copy p {
  max-width: 760px !important;
  color: rgba(255, 255, 255, 0.86) !important;
  font-size: 22px !important;
  line-height: 1.42 !important;
}

.solutions-page-site .solutions-hero-banner {
  margin-top: 58px !important;
  display: grid !important;
  grid-template-columns: 1.2fr 1fr 1fr 1fr !important;
  gap: 18px !important;
}

.solutions-page-site .solutions-hero-banner div {
  min-height: 120px !important;
  border-radius: 30px !important;
  padding: 24px 28px !important;
  display: flex !important;
  flex-direction: column !important;
  justify-content: center !important;
  background: rgba(255, 255, 255, 0.12) !important;
  border: 1px solid rgba(255, 255, 255, 0.22) !important;
  box-shadow: var(--shadow) !important;
  color: white !important;
}

.solutions-page-site .solutions-hero-banner div:first-child {
  background: linear-gradient(145deg, #00343a, #005961) !important;
  color: white !important;
}

.solutions-page-site .solutions-hero-banner strong {
  display: block !important;
  color: var(--yellow) !important;
  font-size: 34px !important;
  line-height: 1 !important;
  letter-spacing: -0.055em !important;
}

.solutions-page-site .solutions-hero-banner span {
  display: block !important;
  margin-top: 12px !important;
  color: rgba(255, 255, 255, 0.82) !important;
  font-weight: 850 !important;
}

.solutions-page-site .solutions-showcase {
  display: grid !important;
  grid-template-columns: 1fr !important;
}

.solutions-page-site .solution-showcase-card {
  min-height: 560px !important;
  padding: 86px 64px !important;
  display: grid !important;
  grid-template-columns: minmax(0, 1fr) minmax(330px, 430px) !important;
  gap: 70px !important;
  align-items: center !important;
  background:
    radial-gradient(circle at 78% 18%, rgba(0, 166, 173, 0.09), transparent 28%),
    linear-gradient(145deg, #ffffff, #f7fbfb) !important;
}

.solutions-page-site .solution-showcase-card:nth-child(even) {
  background:
    radial-gradient(circle at 82% 18%, rgba(255, 197, 46, 0.18), transparent 30%),
    linear-gradient(120deg, #00333a, #005f67) !important;
}

.solutions-page-site .solution-copy {
  max-width: 760px !important;
}

.solutions-page-site .solution-pill {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  margin: 0 0 30px !important;
  padding: 10px 18px !important;
  border-radius: 999px !important;
  background: linear-gradient(145deg, #00343a, #005961) !important;
  color: white !important;
  font-size: 12px !important;
  font-weight: 950 !important;
  line-height: 1 !important;
  text-transform: uppercase !important;
  letter-spacing: 0.09em !important;
  writing-mode: horizontal-tb !important;
  min-height: 0 !important;
  width: auto !important;
  position: static !important;
}

.solutions-page-site .solution-showcase-card.hospitality .solution-pill {
  background: linear-gradient(145deg, var(--yellow), #fff1a8) !important;
  color: #111 !important;
}

.solutions-page-site .solution-showcase-card.commercial .solution-pill {
  background: linear-gradient(145deg, #007b83, #00a6ad) !important;
  color: white !important;
}

.solutions-page-site .solution-showcase-card h2 {
  max-width: 760px !important;
  margin: 0 0 22px !important;
  font-size: 58px !important;
  line-height: 0.96 !important;
  letter-spacing: -0.068em !important;
  color: #071113 !important;
}

.solutions-page-site .solution-showcase-card.hospitality h2 {
  color: white !important;
}

.solutions-page-site .solution-showcase-card p {
  max-width: 720px !important;
  margin: 0 !important;
  color: var(--muted) !important;
  font-size: 20px !important;
  line-height: 1.48 !important;
}

.solutions-page-site .solution-showcase-card.hospitality p {
  color: rgba(255, 255, 255, 0.84) !important;
}

.solutions-page-site .solution-points {
  list-style: none !important;
  margin: 34px 0 36px !important;
  padding: 0 !important;
  display: grid !important;
  gap: 14px !important;
}

.solutions-page-site .solution-points li {
  position: relative !important;
  padding-left: 34px !important;
  color: #21383d !important;
  font-size: 17px !important;
  font-weight: 850 !important;
  line-height: 1.35 !important;
}

.solutions-page-site .solution-showcase-card.hospitality .solution-points li {
  color: rgba(255, 255, 255, 0.9) !important;
}

.solutions-page-site .solution-points li::before {
  content: "✓" !important;
  position: absolute !important;
  left: 0 !important;
  top: 0 !important;
  color: var(--teal) !important;
  font-weight: 950 !important;
}

.solutions-page-site .solution-showcase-card.hospitality .solution-points li::before {
  color: var(--yellow) !important;
}

.solutions-page-site .solution-panel {
  position: relative !important;
  min-height: 430px !important;
  padding: 42px !important;
  border-radius: 34px !important;
  display: flex !important;
  flex-direction: column !important;
  justify-content: center !important;
  overflow: hidden !important;
  background:
    radial-gradient(circle at 80% 20%, rgba(0, 166, 173, 0.18), transparent 34%),
    linear-gradient(145deg, #00343a, #005961) !important;
  color: white !important;
  border: 1px solid rgba(0, 36, 42, 0.1) !important;
  box-shadow: var(--shadow) !important;
}

.solutions-page-site .solution-showcase-card.hospitality .solution-panel {
  background: rgba(255, 255, 255, 0.12) !important;
  border-color: rgba(255, 255, 255, 0.2) !important;
}

.solutions-page-site .panel-label {
  display: block !important;
  margin: 0 0 24px !important;
  color: var(--yellow) !important;
  font-size: 13px !important;
  font-weight: 950 !important;
  text-transform: uppercase !important;
  letter-spacing: 0.12em !important;
}

.solutions-page-site .solution-panel h3 {
  max-width: 340px !important;
  margin: 0 0 16px !important;
  color: white !important;
  font-size: 42px !important;
  line-height: 0.95 !important;
  letter-spacing: -0.06em !important;
}

.solutions-page-site .solution-panel p {
  max-width: 340px !important;
  color: rgba(255, 255, 255, 0.82) !important;
  font-size: 18px !important;
  line-height: 1.42 !important;
}

.solutions-page-site .panel-lines {
  margin-top: 34px !important;
  display: grid !important;
  gap: 12px !important;
}

.solutions-page-site .panel-lines span {
  display: block !important;
  padding: 13px 16px !important;
  border-radius: 999px !important;
  background: rgba(255, 255, 255, 0.13) !important;
  border: 1px solid rgba(255, 255, 255, 0.16) !important;
  color: rgba(255, 255, 255, 0.88) !important;
  font-size: 13px !important;
  font-weight: 950 !important;
  line-height: 1.15 !important;
  text-transform: uppercase !important;
  letter-spacing: 0.04em !important;
}

.solutions-page-site .solutions-proof {
  background: white !important;
}

.solutions-page-site .solutions-proof-grid {
  display: grid !important;
  grid-template-columns: repeat(3, 1fr) !important;
  gap: 24px !important;
  margin-top: 34px !important;
}

.solutions-page-site .solutions-proof-grid article {
  min-height: 300px !important;
  padding: 34px !important;
  border-radius: 28px !important;
  background: white !important;
  border: 2px solid var(--line) !important;
  box-shadow: var(--shadow) !important;
}

.solutions-page-site .solutions-proof-grid strong {
  color: var(--yellow) !important;
  font-size: 46px !important;
  font-weight: 950 !important;
}

.solutions-page-site .solutions-proof-grid h3 {
  margin: 22px 0 12px !important;
  font-size: 32px !important;
  line-height: 1.02 !important;
  letter-spacing: -0.055em !important;
}

.solutions-page-site .solutions-proof-grid p {
  color: var(--muted) !important;
  font-size: 17px !important;
  line-height: 1.45 !important;
}

.solutions-page-site .solutions-impact-band {
  padding: 86px 64px !important;
  color: white !important;
  background:
    radial-gradient(circle at 18% 22%, rgba(255, 197, 46, 0.16), transparent 28%),
    linear-gradient(120deg, #00333a, #00737b) !important;
}

.solutions-page-site .solutions-impact-band h2 {
  max-width: 950px !important;
  margin: 16px 0 36px !important;
  font-size: 56px !important;
  line-height: 0.96 !important;
  letter-spacing: -0.065em !important;
}

.solutions-page-site .impact-list {
  display: grid !important;
  grid-template-columns: repeat(4, 1fr) !important;
  gap: 16px !important;
}

.solutions-page-site .impact-list div {
  border-radius: 999px !important;
  padding: 18px 22px !important;
  background: rgba(255, 255, 255, 0.14) !important;
  border: 1px solid rgba(255, 255, 255, 0.22) !important;
  color: white !important;
  font-weight: 950 !important;
  text-align: center !important;
}

.solutions-page-site .solutions-tech-bridge {
  padding: 82px 64px !important;
  display: grid !important;
  grid-template-columns: 1fr 0.85fr !important;
  gap: 44px !important;
  align-items: center !important;
  background:
    radial-gradient(circle at 82% 18%, rgba(0, 166, 173, 0.14), transparent 34%),
    linear-gradient(135deg, #ffffff, #f7fbfb) !important;
}

.solutions-page-site .tech-bridge-copy h2 {
  max-width: 780px !important;
  margin: 0 0 20px !important;
  font-size: 54px !important;
  line-height: 0.97 !important;
  letter-spacing: -0.065em !important;
}

.solutions-page-site .tech-bridge-copy p {
  max-width: 680px !important;
  color: var(--muted) !important;
  font-size: 19px !important;
  line-height: 1.5 !important;
}

.solutions-page-site .tech-bridge-stack {
  display: grid !important;
  gap: 14px !important;
}

.solutions-page-site .tech-bridge-stack div {
  border-radius: 22px !important;
  padding: 22px 24px !important;
  background: linear-gradient(145deg, #00343a, #005961) !important;
  color: white !important;
  font-size: 24px !important;
  font-weight: 950 !important;
  letter-spacing: -0.045em !important;
  box-shadow: var(--shadow) !important;
}

.solutions-page-site .tech-bridge-stack div:nth-child(even) {
  background: linear-gradient(145deg, var(--yellow), #fff1a8) !important;
  color: #111 !important;
}

@media (max-width: 1100px) {
  .solutions-page-site .solutions-hero-banner,
  .solutions-page-site .solutions-proof-grid,
  .solutions-page-site .impact-list,
  .solutions-page-site .solutions-tech-bridge,
  .solutions-page-site .solution-showcase-card {
    grid-template-columns: 1fr !important;
  }

  .solutions-page-site .solutions-hero-copy h1,
  .solutions-page-site .solution-showcase-card h2,
  .solutions-page-site .solutions-impact-band h2,
  .solutions-page-site .tech-bridge-copy h2 {
    font-size: 46px !important;
  }

  .solutions-page-site .solution-panel {
    min-height: auto !important;
  }
}

@media (max-width: 600px) {
  .solutions-page-site .solutions-hero-wide,
  .solutions-page-site .solution-showcase-card,
  .solutions-page-site .solutions-impact-band,
  .solutions-page-site .solutions-tech-bridge {
    padding: 52px 24px !important;
  }

  .solutions-page-site .solutions-hero-wide {
    min-height: auto !important;
  }

  .solutions-page-site .solutions-hero-copy h1,
  .solutions-page-site .solution-showcase-card h2,
  .solutions-page-site .solutions-impact-band h2,
  .solutions-page-site .tech-bridge-copy h2 {
    font-size: 40px !important;
    line-height: 0.98 !important;
  }

  .solutions-page-site .solutions-hero-copy p,
  .solutions-page-site .solution-showcase-card p {
    font-size: 18px !important;
  }

  .solutions-page-site .solutions-hero-banner div {
    min-height: 130px !important;
  }

  .solutions-page-site .solution-panel {
    padding: 30px 24px !important;
    border-radius: 26px !important;
  }

  .solutions-page-site .solution-panel h3 {
    font-size: 34px !important;
  }

  .solutions-page-site .panel-lines span {
    white-space: normal !important;
  }
}

/* =========================================================
   SOLUTIONS PAGE POLISH -- FINAL OVERRIDE
   Put at very bottom of styles.css
   ========================================================= */

.solutions-page-site .solutions-showcase,
.solutions-page-site .solution-showcase-card,
.solutions-page-site .solutions-impact-band,
.solutions-page-site .solutions-tech-bridge {
  background-color: #050909;
}

.solutions-page-site .solution-showcase-card {
  min-height: auto;
  padding: 92px 64px;
  gap: 64px;
}

.solutions-page-site .solution-showcase-card h2,
.solutions-page-site .solutions-impact-band h2,
.solutions-page-site .solutions-tech-bridge h2 {
  color: #fff;
}

.solutions-page-site .solution-showcase-card p,
.solutions-page-site .solutions-tech-bridge p {
  color: rgba(255,255,255,.78);
}

.solutions-page-site .solution-showcase-card:not(.hospitality) {
  color: white;
  background:
    radial-gradient(circle at 78% 42%, rgba(0,166,173,.34), transparent 32%),
    linear-gradient(135deg, #030707, #071515);
}

.solutions-page-site .solution-showcase-card.hospitality {
  background:
    radial-gradient(circle at 80% 42%, rgba(255,197,46,.32), transparent 34%),
    linear-gradient(135deg, #061213, #003f46);
}

.solutions-page-site .solution-showcase-card .solution-points li,
.solutions-page-site .solution-showcase-card .solution-points {
  color: rgba(255,255,255,.88);
}

.solutions-page-site .solution-showcase-card .solution-points li {
  font-size: 16px;
  line-height: 1.35;
}

.solutions-page-site .solution-showcase-card .solution-points li::before {
  color: var(--yellow);
}

.solutions-page-site .solution-tag {
  background: rgba(0,123,131,.95);
  color: white;
  box-shadow: none;
}

.solutions-page-site .solution-showcase-card.hospitality .solution-tag {
  background: var(--yellow);
  color: #111;
}

.solutions-page-site .outcome-card {
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.18);
  color: white;
  backdrop-filter: blur(10px);
}

.solutions-page-site .outcome-card strong,
.solutions-page-site .outcome-card span,
.solutions-page-site .outcome-card small {
  color: white;
}

.solutions-page-site .outcome-card span,
.solutions-page-site .outcome-card small {
  color: rgba(255,255,255,.82);
}

.solutions-page-site .ghost-word {
  display: none;
}

/* Fix proof section readability */
.solutions-page-site .solutions-proof {
  background: #f7fbfb;
}

.solutions-page-site .solutions-proof h2,
.solutions-page-site .solutions-proof h3 {
  color: #071113;
}

.solutions-page-site .solutions-proof p {
  color: var(--muted);
}

/* Mobile polish */
@media (max-width: 700px) {
  .solutions-page-site .solutions-hero-wide {
    padding: 46px 20px 42px;
  }

  .solutions-page-site .solutions-hero-copy h1 {
    font-size: 36px;
    line-height: .96;
  }

  .solutions-page-site .solutions-hero-copy p {
    font-size: 16px;
    line-height: 1.45;
  }

  .solutions-page-site .solutions-hero-banner {
    gap: 12px;
  }

  .solutions-page-site .solutions-hero-banner div {
    min-height: 96px;
    padding: 18px;
    border-radius: 18px;
  }

  .solutions-page-site .solutions-hero-banner strong {
    font-size: 22px;
  }

  .solutions-page-site .solution-showcase-card {
    padding: 58px 20px;
    gap: 34px;
  }

  .solutions-page-site .solution-showcase-card h2 {
    font-size: 34px;
    line-height: .98;
  }

  .solutions-page-site .solution-showcase-card p {
    font-size: 16px;
    line-height: 1.45;
  }

  .solutions-page-site .solution-points {
    margin: 28px 0;
    gap: 12px;
  }

  .solutions-page-site .solution-points li {
    font-size: 15px;
  }

  .solutions-page-site .solution-visual {
    min-height: 0;
  }

  .solutions-page-site .outcome-card {
    width: 100%;
    padding: 24px;
    border-radius: 22px;
  }

  .solutions-page-site .outcome-card strong {
    font-size: 28px;
  }

  .solutions-page-site .solutions-proof {
    padding: 48px 20px;
  }

  .solutions-page-site .solutions-proof-grid {
    gap: 14px;
  }

  .solutions-page-site .solutions-proof-grid article {
    min-height: auto;
    padding: 22px;
  }

  .solutions-page-site .solutions-impact-band,
  .solutions-page-site .solutions-tech-bridge {
    padding: 54px 20px;
  }

  .solutions-page-site .solutions-impact-band h2,
  .solutions-page-site .solutions-tech-bridge h2 {
    font-size: 32px;
    line-height: 1;
  }

  .solutions-page-site .impact-list {
    gap: 10px;
  }

  .solutions-page-site .impact-list div {
    padding: 14px 16px;
    font-size: 13px;
  }

  .solutions-page-site .tech-bridge-stack div {
    font-size: 17px;
    padding: 18px;
  }
}

/* SOLUTIONS MOBILE CLEANUP -- append last */

@media (max-width: 700px) {
  .solutions-page-site .solutions-hero-wide {
    padding: 40px 20px 34px !important;
  }

  .solutions-page-site .solutions-hero-copy h1 {
    font-size: 34px !important;
    line-height: .96 !important;
    max-width: 330px;
  }

  .solutions-page-site .solutions-hero-copy p {
    font-size: 15px !important;
    line-height: 1.42 !important;
  }

  .solutions-page-site .solutions-hero-banner {
    margin-top: 28px !important;
    grid-template-columns: 1fr !important;
  }

  .solutions-page-site .solutions-hero-banner div {
    min-height: auto !important;
    padding: 16px 18px !important;
  }

  .solutions-page-site .solution-showcase-card {
    padding: 46px 20px !important;
    display: block !important;
  }

  .solutions-page-site .solution-tag {
    margin-bottom: 20px !important;
  }

  .solutions-page-site .solution-showcase-card h2 {
    font-size: 31px !important;
    line-height: .98 !important;
    color: #fff !important;
  }

  .solutions-page-site .solution-showcase-card p {
    font-size: 15px !important;
    line-height: 1.42 !important;
    color: rgba(255,255,255,.82) !important;
  }

  .solutions-page-site .solution-points {
    margin: 24px 0 !important;
    gap: 10px !important;
  }

  .solutions-page-site .solution-points li {
    font-size: 14px !important;
    line-height: 1.3 !important;
    color: rgba(255,255,255,.9) !important;
  }

  .solutions-page-site .solution-visual {
    margin-top: 28px !important;
  }

  .solutions-page-site .outcome-card {
    width: 100% !important;
    padding: 22px !important;
    background: rgba(255,255,255,.12) !important;
  }

  .solutions-page-site .outcome-card strong {
    font-size: 27px !important;
    color: #fff !important;
  }

  .solutions-page-site .outcome-card span,
  .solutions-page-site .outcome-card small {
    color: rgba(255,255,255,.84) !important;
  }

  .solutions-page-site .solutions-proof {
    padding: 44px 20px !important;
  }

  .solutions-page-site .solutions-proof .section-title {
    font-size: 27px !important;
    line-height: 1.05 !important;
  }

  .solutions-page-site .solutions-proof-grid article {
    padding: 20px !important;
  }

  .solutions-page-site .solutions-impact-band,
  .solutions-page-site .solutions-tech-bridge {
    padding: 46px 20px !important;
  }

  .solutions-page-site .solutions-impact-band h2,
  .solutions-page-site .tech-bridge-copy h2 {
    font-size: 30px !important;
    line-height: 1 !important;
  }

  .solutions-page-site .impact-list {
    grid-template-columns: 1fr !important;
  }

  .solutions-page-site .tech-bridge-stack div {
    font-size: 16px !important;
    padding: 16px 18px !important;
  }

  .solutions-page-site .final-cta {
    padding: 44px 20px 50px !important;
  }

  .solutions-page-site .final-cta h2 {
    font-size: 28px !important;
    line-height: 1 !important;
  }
  
    .solutions-page-site .solution-showcase-card .btn {
    margin: 20px 0 36px !important;
  }

  .solutions-page-site .solution-showcase-card + .solution-showcase-card {
    padding-top: 64px !important;
  }

  .solutions-page-site .outcome-card {
    margin-top: 26px !important;
  }

  .solutions-page-site .solution-showcase-card h2,
  .solutions-page-site .solution-showcase-card p,
  .solutions-page-site .solution-points {
    max-width: 100% !important;
  }
}

/* =========================================================
   EMERGENCY SOLUTIONS CONTAINMENT
   Bottom of styles.css
   ========================================================= */

/* Kill the accidental global-looking solution card styling */
.solutions-page-site .solution-showcase-card {
  color: white;
}

.solutions-page-site .solution-showcase-card h2,
.solutions-page-site .solution-showcase-card p,
.solutions-page-site .solution-showcase-card li {
  color: white !important;
}

/* Keep proof cards readable */
.solutions-page-site .solutions-proof,
.solutions-page-site .solutions-proof * {
  color: var(--ink) !important;
}

.solutions-page-site .solutions-proof p {
  color: var(--muted) !important;
}

/* Fix ONLY the NEXT bridge text */
.solutions-page-site .solutions-tech-bridge {
  background:
    radial-gradient(circle at 82% 18%, rgba(0,166,173,.16), transparent 34%),
    linear-gradient(135deg, #ffffff, #f7fbfb) !important;
}

.solutions-page-site .solutions-tech-bridge h2,
.solutions-page-site .solutions-tech-bridge .kicker {
  color: var(--ink) !important;
}

.solutions-page-site .solutions-tech-bridge .kicker {
  color: var(--teal) !important;
}

.solutions-page-site .solutions-tech-bridge p {
  color: var(--muted) !important;
}

/* Do NOT recolor all stack blocks globally */
.solutions-page-site .solutions-tech-bridge .tech-bridge-stack div {
  color: white !important;
}

.solutions-page-site .solutions-tech-bridge .tech-bridge-stack div:nth-child(even) {
  color: #111 !important;
}

/* =========================================================
   SOLUTIONS PAGE -- HARD LEGIBILITY FIX
   append at very bottom of styles.css
   ========================================================= */

/* Showcase cards: dark sections need readable white text */
.solutions-page-site .solutions-showcase .solution-showcase-card {
  color: #ffffff !important;
}

.solutions-page-site .solutions-showcase .solution-showcase-card h2,
.solutions-page-site .solutions-showcase .solution-showcase-card p,
.solutions-page-site .solutions-showcase .solution-showcase-card li,
.solutions-page-site .solutions-showcase .solution-showcase-card .solution-points li {
  color: rgba(255,255,255,.92) !important;
}

.solutions-page-site .solutions-showcase .solution-showcase-card h2 {
  color: #ffffff !important;
}

.solutions-page-site .solutions-showcase .solution-showcase-card .solution-tag {
  color: #ffffff !important;
  background: #007b83 !important;
}

.solutions-page-site .solutions-showcase .solution-showcase-card.hospitality .solution-tag {
  color: #111111 !important;
  background: var(--yellow) !important;
}

/* Outcome cards on dark/colored sections */
.solutions-page-site .solutions-showcase .outcome-card {
  background: rgba(255,255,255,.14) !important;
  border: 1px solid rgba(255,255,255,.22) !important;
}

.solutions-page-site .solutions-showcase .outcome-card strong {
  color: #ffffff !important;
}

.solutions-page-site .solutions-showcase .outcome-card span,
.solutions-page-site .solutions-showcase .outcome-card small {
  color: rgba(255,255,255,.84) !important;
}

/* Proof section is light: keep it dark text */
.solutions-page-site .solutions-proof,
.solutions-page-site .solutions-proof h2,
.solutions-page-site .solutions-proof h3,
.solutions-page-site .solutions-proof strong {
  color: var(--ink) !important;
}

.solutions-page-site .solutions-proof p {
  color: var(--muted) !important;
}

/* NEXT bridge is light: readable dark text */
.solutions-page-site .solutions-tech-bridge {
  background:
    radial-gradient(circle at 82% 18%, rgba(0,166,173,.16), transparent 34%),
    radial-gradient(circle at 18% 88%, rgba(255,197,46,.14), transparent 32%),
    linear-gradient(135deg, #ffffff, #f7fbfb) !important;
  color: var(--ink) !important;
}

.solutions-page-site .solutions-tech-bridge .kicker {
  color: var(--teal) !important;
}

.solutions-page-site .solutions-tech-bridge h2,
.solutions-page-site .solutions-tech-bridge .tech-bridge-copy h2 {
  color: var(--ink) !important;
}

.solutions-page-site .solutions-tech-bridge p,
.solutions-page-site .solutions-tech-bridge .tech-bridge-copy p {
  color: #30484f !important;
}

/* Only bridge stack blocks, not global stack blocks */
.solutions-page-site .solutions-tech-bridge .tech-bridge-stack div {
  background: linear-gradient(145deg, #00343a, #005961) !important;
  color: #ffffff !important;
}

.solutions-page-site .solutions-tech-bridge .tech-bridge-stack div:nth-child(even) {
  background: linear-gradient(145deg, var(--yellow), #fff1a8) !important;
  color: #111111 !important;
}

/* FINAL FIX -- NEXT SECTION ONLY */

.solutions-tech-bridge {
  background:
    radial-gradient(circle at 78% 28%, rgba(0,166,173,.22), transparent 36%),
    radial-gradient(circle at 18% 80%, rgba(255,197,46,.16), transparent 30%),
    linear-gradient(135deg, #f7fbfb, #eef7f7) !important;
}

.solutions-tech-bridge .tech-bridge-copy,
.solutions-tech-bridge .tech-bridge-copy *,
.solutions-tech-bridge h2,
.solutions-tech-bridge p,
.solutions-tech-bridge .kicker {
  opacity: 1 !important;
  visibility: visible !important;
  text-shadow: none !important;
}

.solutions-tech-bridge .kicker {
  color: #007b83 !important;
}

.solutions-tech-bridge h2,
.solutions-tech-bridge .tech-bridge-copy h2 {
  color: #071113 !important;
}

.solutions-tech-bridge p,
.solutions-tech-bridge .tech-bridge-copy p {
  color: #30484f !important;
}

.solutions-tech-bridge .btn {
  background: #ffc52e !important;
  color: #111 !important;
  border-color: rgba(0,36,42,.12) !important;
}

.solutions-tech-bridge .tech-bridge-stack div {
  color: white !important;
  background: linear-gradient(145deg, #00343a, #005961) !important;
}

.solutions-tech-bridge .tech-bridge-stack div:nth-child(even) {
  color: #111 !important;
  background: linear-gradient(145deg, #ffc52e, #fff1a8) !important;
}

/* FIX: Residential + Commercial text invisible on light cards */

.solutions-page-site .solutions-showcase .solution-showcase-card.residential h2,
.solutions-page-site .solutions-showcase .solution-showcase-card.commercial h2 {
  color: var(--ink) !important;
}

.solutions-page-site .solutions-showcase .solution-showcase-card.residential p,
.solutions-page-site .solutions-showcase .solution-showcase-card.commercial p {
  color: #30484f !important;
}

.solutions-page-site .solutions-showcase .solution-showcase-card.residential .solution-points li,
.solutions-page-site .solutions-showcase .solution-showcase-card.commercial .solution-points li {
  color: #21383d !important;
}

.solutions-page-site .solutions-showcase .solution-showcase-card.residential .solution-points li::before,
.solutions-page-site .solutions-showcase .solution-showcase-card.commercial .solution-points li::before {
  color: var(--teal) !important;
}

/* Hospitality stays dark */
.solutions-page-site .solutions-showcase .solution-showcase-card.hospitality h2,
.solutions-page-site .solutions-showcase .solution-showcase-card.hospitality p,
.solutions-page-site .solutions-showcase .solution-showcase-card.hospitality .solution-points li {
  color: rgba(255,255,255,.92) !important;
}

/* TECHNOLOGY PANELS - stable big-image layout */

.technology-page-site .tech-layer {
  display: grid;
  grid-template-columns: minmax(0, 48%) minmax(0, 52%);
  gap: 28px;
  align-items: center;
  min-height: 380px;
  padding: 18px 64px;
  overflow: hidden;
}

.technology-page-site .tech-copy {
  align-self: center;
  max-width: 620px;
  position: relative;
  z-index: 2;
}

.technology-page-site .tech-panel-image {
  height: 390px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: visible;
}

.technology-page-site .tech-panel-image img {
  width: auto;
  height: 150%;
  max-width: none;
  max-height: none;
  object-fit: contain;
  object-position: center;
  background: transparent;
  filter: drop-shadow(0 24px 34px rgba(0,0,0,.22));
}

.technology-page-site .tech-layer:nth-child(1) .tech-panel-image img {
  height: 160%;
}

@media (max-width: 700px) {
  .technology-page-site .tech-layer {
    display: block !important;
    min-height: auto !important;
    padding: 48px 28px !important;
  }

  .technology-page-site .tech-panel-image {
    display: none !important;
  }
}

/* SOLUTIONS MOBILE FINAL */

@media (max-width: 700px) {
  .solutions-page-site .solution-showcase-card {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 36px !important;
    padding: 56px 20px 68px !important;
  }

  .solutions-page-site .solution-showcase-card .btn {
    margin-top: 8px !important;
  }

  .solutions-page-site .solution-panel {
    margin-top: 0 !important;
    padding: 34px 24px !important;
    border-radius: 28px !important;
  }

  .solutions-page-site .panel-lines {
    margin-top: 28px !important;
    gap: 14px !important;
  }

  .solutions-page-site .panel-lines span {
    padding: 15px 18px !important;
    white-space: normal !important;
  }
}

/* FIX dark text inside green solution panels */

@media (max-width: 700px) {
  .solutions-page-site .solution-panel,
  .solutions-page-site .solution-panel * {
    color: rgba(255,255,255,.9) !important;
  }

  .solutions-page-site .solution-panel h3 {
    color: #fff !important;
  }

  .solutions-page-site .solution-panel .panel-label {
    color: var(--yellow) !important;
  }

  .solutions-page-site .solution-panel .panel-lines span {
    color: #fff !important;
  }
}


/* FIX all solution panel body text contrast */

.solutions-page-site .solution-panel p,
.solutions-page-site .solution-panel .panel-lines span {
  color: rgba(255,255,255,.88) !important;
  opacity: 1 !important;
}

.solutions-page-site .solution-panel h3 {
  color: #fff !important;
}

.solutions-page-site .solution-panel .panel-label {
  color: var(--yellow) !important;
}

/* FIX: solution panel text inside Residential / Commercial cards */

.solutions-page-site .solutions-showcase .solution-showcase-card.residential .solution-panel p,
.solutions-page-site .solutions-showcase .solution-showcase-card.commercial .solution-panel p,
.solutions-page-site .solutions-showcase .solution-showcase-card.hospitality .solution-panel p {
  color: rgba(255,255,255,.9) !important;
  opacity: 1 !important;
}

.solutions-page-site .solutions-showcase .solution-showcase-card.residential .solution-panel h3,
.solutions-page-site .solutions-showcase .solution-showcase-card.commercial .solution-panel h3,
.solutions-page-site .solutions-showcase .solution-showcase-card.hospitality .solution-panel h3 {
  color: #fff !important;
}

/* TECHNOLOGY PRINCIPLE CARDS - reduce dead space */

.technology-page-site .tech-principle-grid .card {
  min-height: auto !important;
  padding: 26px 28px !important;
}

.technology-page-site .tech-principle-grid {
  align-items: stretch !important;
}

.technology-page-site .tech-principle-grid .card h3 {
  margin-bottom: 12px !important;
}

.technology-page-site .tech-principle-grid .card p {
  margin-bottom: 0 !important;
}

/* MOBILE FOOTER FIX */

@media (max-width: 700px) {
  .footer {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 26px 24px !important;
    padding: 34px 24px 42px !important;
  }

  .footer > div:first-child,
  .footer > div:last-child {
    grid-column: 1 / -1 !important;
  }

  .footer .brand {
    font-size: 22px !important;
  }

  .footer h4 {
    margin-bottom: 10px !important;
    font-size: 13px !important;
  }

  .footer a,
  .footer p {
    font-size: 15px !important;
    line-height: 1.35 !important;
    margin: 6px 0 !important;
  }

  .footer .email {
    max-width: 360px !important;
  }
}


/* FOOTER - compact responsive layout */

.footer {
  display: grid !important;
  grid-template-columns: 1.2fr auto !important;
  gap: 56px !important;
  align-items: center !important;
  padding: 52px 64px !important;
}

.footer > div:first-child {
  max-width: 360px !important;
}

.footer > div:nth-child(2) {
  display: flex !important;
  flex-wrap: wrap !important;
  gap: 18px 26px !important;
  justify-content: flex-end !important;
}

.footer > div:nth-child(2) h4 {
  display: none !important;
}

.footer > div:nth-child(2) a {
  margin: 0 !important;
  font-size: 14px !important;
  font-weight: 850 !important;
}

@media (max-width: 700px) {
  .footer {
    grid-template-columns: 1fr !important;
    gap: 28px !important;
    padding: 42px 28px 52px !important;
  }

  .footer > div:first-child {
    max-width: none !important;
  }

  .footer > div:nth-child(2) {
    justify-content: flex-start !important;
    gap: 14px 20px !important;
  }

  .footer > div:nth-child(2) a {
    font-size: 17px !important;
  }
}

/* GET STARTED PAGE */

.buy-page-site .buy-hero {
  grid-template-columns: 1fr .75fr;
}

.buy-hero-card {
  justify-self: center;
  max-width: 460px;
  padding: 42px;
  border-radius: 34px;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.22);
  box-shadow: var(--shadow);
  color: white;
}

.buy-hero-card span {
  color: var(--yellow);
  font-size: 13px;
  font-weight: 950;
  text-transform: uppercase;
  letter-spacing: .09em;
}

.buy-hero-card strong {
  display: block;
  margin-top: 18px;
  font-size: 38px;
  line-height: .98;
  letter-spacing: -.06em;
}

.buy-dark-card {
  background: linear-gradient(135deg, #00353b, #00636b);
  color: white;
}

.buy-dark-card p {
  color: rgba(255,255,255,.82);
}

@media (max-width: 700px) {
  .buy-page-site .buy-hero {
    grid-template-columns: 1fr;
  }

  .buy-hero-card {
    margin-top: 28px;
    padding: 28px;
  }

  .buy-hero-card strong {
    font-size: 30px;
  }
}

/* FINAL CTA - compact band */

.final-cta {
  display: grid !important;
  grid-template-columns: 120px minmax(0, 1fr) auto !important;
  align-items: center !important;
  gap: 28px !important;
  min-height: auto !important;
  padding: 44px 64px !important;
  text-align: left !important;
}

.final-cta > img {
  position: static !important;
  transform: none !important;
  width: 110px !important;
  margin: 0 !important;
}

.final-cta > div {
  margin: 0 !important;
}

.final-cta h2 {
  font-size: 42px !important;
  line-height: .95 !important;
  margin: 0 !important;
}

.final-cta p {
  font-size: 17px !important;
  line-height: 1.35 !important;
  margin: 8px 0 0 !important;
}

.final-cta .btn {
  white-space: nowrap !important;
}

/* Mobile: still compact, not a giant poster */
@media (max-width: 700px) {
  .final-cta {
    grid-template-columns: 82px 1fr !important;
    gap: 18px !important;
    padding: 34px 22px !important;
    text-align: left !important;
  }

  .final-cta > img {
    width: 82px !important;
    grid-row: span 2 !important;
  }

  .final-cta h2 {
    font-size: 30px !important;
  }

  .final-cta p {
    font-size: 15px !important;
  }

  .final-cta .btn {
    grid-column: 1 / -1 !important;
    justify-self: start !important;
    margin-top: 10px !important;
  }
}


/* BUY PAGE -- CLEAN PURCHASE FLOW */

.buy-hero-impact {
  padding: 84px 64px 76px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 430px;
  gap: 54px;
  align-items: center;
  color: #fff;
  background:
    radial-gradient(circle at 80% 18%, rgba(255,197,46,.26), transparent 30%),
    radial-gradient(circle at 88% 82%, rgba(0,166,173,.42), transparent 36%),
    linear-gradient(135deg, #00343a, #00737b);
}

.buy-hero-copy h1 {
  max-width: 860px;
  margin: 0 0 22px;
  font-size: 72px;
  line-height: .9;
  letter-spacing: -.075em;
  font-weight: 950;
}

.buy-hero-copy p {
  max-width: 700px;
  color: rgba(255,255,255,.86);
  font-size: 22px;
  line-height: 1.42;
}

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

.buy-hero-visual {
  padding: 34px;
  border-radius: 34px;
  display: grid;
  grid-template-columns: 62px 1fr;
  gap: 14px 18px;
  background: rgba(255,255,255,.13);
  border: 1px solid rgba(255,255,255,.22);
  box-shadow: var(--shadow);
}

.buy-hero-visual strong {
  width: 62px;
  height: 62px;
  border-radius: 20px;
  display: grid;
  place-items: center;
  background: var(--yellow);
  color: #111;
  font-size: 28px;
  font-weight: 950;
}

.buy-hero-visual span {
  display: flex;
  align-items: center;
  color: #fff;
  font-size: 24px;
  font-weight: 950;
  letter-spacing: -.04em;
}

.buy-fast-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  padding: 24px 64px;
  background: #f7fbfb;
}

.buy-fast-strip div {
  padding: 22px 24px;
  border-radius: 24px;
  background: #fff;
  border: 1px solid rgba(0,36,42,.1);
  box-shadow: var(--shadow);
}

.buy-fast-strip strong {
  display: block;
  color: var(--teal);
  font-size: 24px;
  line-height: 1;
}

.buy-fast-strip span {
  display: block;
  margin-top: 8px;
  color: #40575d;
  font-weight: 800;
}

/* Builder */

.build-system-section {
  padding: 82px 64px 96px;
  background:
    radial-gradient(circle at 78% 12%, rgba(0,166,173,.12), transparent 30%),
    radial-gradient(circle at 18% 88%, rgba(255,197,46,.16), transparent 34%),
    linear-gradient(135deg, #fff, #f7fbfb);
}

.builder-intro {
  max-width: 920px;
  margin-bottom: 30px;
}

.builder-intro .section-title {
  max-width: 900px;
  margin: 8px 0 14px;
  font-size: 56px;
  line-height: .96;
  letter-spacing: -.07em;
}

.builder-intro p {
  max-width: 780px;
  color: #30484f;
  font-size: 20px;
  line-height: 1.45;
}

.build-toolbar {
  margin: 0 0 28px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px;
  border-radius: 999px;
  background: #fff;
  border: 1px solid rgba(0,36,42,.12);
  box-shadow: var(--shadow);
}

.build-toolbar span {
  padding: 0 12px;
  color: var(--teal);
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
  letter-spacing: .08em;
}

.mode-btn {
  min-height: 42px;
  padding: 0 20px;
  border: 0;
  border-radius: 999px;
  background: #eef7f7;
  color: #21383d;
  font-weight: 950;
}

.mode-btn.active {
  background: var(--yellow);
  color: #111;
}

.build-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 390px;
  gap: 34px;
  align-items: start;
}

.build-card {
  overflow: hidden;
  border-radius: 38px;
  background: rgba(255,255,255,.9);
  border: 1px solid rgba(0,36,42,.1);
  box-shadow: 0 24px 70px rgba(0,44,50,.12);
}

.build-note {
  padding: 32px 36px;
  background:
    radial-gradient(circle at 88% 18%, rgba(255,197,46,.22), transparent 30%),
    linear-gradient(135deg, #e9fbfb, #fff);
  border-bottom: 1px solid var(--line);
}

.build-note strong {
  display: block;
  color: #00343a;
  font-size: 28px;
  line-height: 1;
  letter-spacing: -.04em;
  margin-bottom: 10px;
}

.build-note p {
  max-width: 700px;
  margin: 0;
  color: #30484f;
  line-height: 1.45;
}

.form-row,
.build-card > label,
.build-card > button,
.duct-card,
.shipping-rates {
  margin-left: 34px;
  margin-right: 34px;
}

.form-row.two {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 24px;
}

.build-card label {
  display: grid;
  gap: 8px;
  color: #21383d;
  font-size: 13px;
  font-weight: 950;
  text-transform: uppercase;
  letter-spacing: .04em;
}

.build-card input,
.build-card select {
  min-height: 52px;
  border-radius: 18px;
  border: 1px solid var(--line);
  padding: 0 16px;
  background: #fff;
  font: inherit;
  font-weight: 750;
}

.duct-card {
  margin-top: 20px;
  padding: 24px;
  border-radius: 28px;
  background: #fff;
  border: 1px solid rgba(0,36,42,.1);
}

.duct-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 18px;
}

.duct-head h3 {
  margin: 0;
  font-size: 24px;
  line-height: 1;
  letter-spacing: -.04em;
}

.duct-head span,
.small-note,
.quantity-row small {
  color: var(--muted);
}

.duct-legend {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  margin-bottom: 18px;
  color: #40575d;
  font-size: 12px;
  font-weight: 850;
}

.dot {
  display: inline-block;
  width: 10px;
  height: 10px;
  margin-right: 7px;
  border-radius: 999px;
}

.home-dot { background: var(--teal); }
.business-dot { background: var(--yellow); }

.duct-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.duct-size {
  min-width: 54px;
  min-height: 46px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #fff;
  color: #21383d;
  font-weight: 950;
  box-shadow: 0 8px 18px rgba(0,44,50,.08);
}

.duct-size.active {
  background: var(--yellow);
  color: #111;
}

.duct-size.disabled {
  opacity: .28;
  cursor: not-allowed;
}

.quantity-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 44px 52px 44px;
  gap: 10px;
  align-items: center;
  padding: 14px 0;
  border-top: 1px solid var(--line);
  font-weight: 950;
}

.quantity-row:first-child {
  border-top: 0;
}

.quantity-row button {
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 15px;
  background: var(--yellow);
  color: #111;
  font-size: 22px;
  font-weight: 950;
}

.quantity-row strong {
  text-align: center;
  font-size: 24px;
}

.build-card > .btn:last-child {
  min-height: 54px;
  margin-top: 22px;
  margin-bottom: 34px;
  border-radius: 999px;
}

.build-summary {
  position: sticky;
  top: 120px;
  padding: 34px;
  border-radius: 34px;
  color: #071113;
  background:
    radial-gradient(circle at 82% 12%, rgba(255,197,46,.2), transparent 32%),
    linear-gradient(145deg, #fff, #f4fbfb);
  border: 1px solid rgba(0,36,42,.12);
  box-shadow: 0 24px 70px rgba(0,44,50,.14);
}

.build-summary .kicker {
  color: var(--teal);
}

.build-summary h3 {
  margin: 0 0 12px;
  color: #071113;
  font-size: 34px;
  line-height: .98;
  letter-spacing: -.055em;
}

.build-summary p,
.build-summary small {
  color: #40575d;
}

.summary-line,
.summary-total {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 15px 0;
  border-bottom: 1px solid rgba(0,36,42,.12);
}

.summary-total {
  border-bottom: 0;
  font-size: 22px;
  font-weight: 950;
}

@media (max-width: 800px) {
  .buy-hero-impact,
  .build-grid,
  .form-row.two {
    grid-template-columns: 1fr;
  }

  .buy-hero-impact {
    padding: 54px 24px 48px;
  }

  .buy-hero-copy h1 {
    font-size: 44px;
  }

  .buy-fast-strip {
    grid-template-columns: 1fr;
    padding: 20px 24px;
  }

  .build-system-section {
    padding: 58px 20px 72px;
  }

  .builder-intro .section-title {
    font-size: 38px;
  }

  .build-toolbar {
    display: flex;
    width: 100%;
    justify-content: center;
  }

  .build-summary {
    position: static;
  }

  .form-row,
  .build-card > label,
  .build-card > button,
  .duct-card,
  .shipping-rates {
    margin-left: 20px;
    margin-right: 20px;
  }

  .build-note {
    padding: 28px 24px;
  }
}

  .build-grid,
  .form-row.two {
    grid-template-columns: 1fr;
  }

  .build-card,
  .build-summary {
    padding: 24px;
    border-radius: 28px;
  }

  .build-summary {
    position: static;
  }

  .duct-head {
    display: block;
  }

  .duct-head span {
    display: block;
    margin-top: 8px;
  }
}

/* BUY HERO - purchase focused */

.buy-hero-impact {
  padding: 82px 64px 72px;
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 54px;
  align-items: center;
  color: white;
  background:
    radial-gradient(circle at 80% 18%, rgba(255,197,46,.28), transparent 30%),
    radial-gradient(circle at 85% 78%, rgba(0,166,173,.42), transparent 36%),
    linear-gradient(135deg, #002d33, #00616a);
}

.buy-hero-copy h1 {
  max-width: 820px;
  margin: 0 0 22px;
  font-size: 72px;
  line-height: .9;
  letter-spacing: -.075em;
  font-weight: 950;
}

.buy-hero-copy p {
  max-width: 680px;
  color: rgba(255,255,255,.84);
  font-size: 22px;
  line-height: 1.42;
}

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

.buy-hero-visual {
  display: grid;
  grid-template-columns: 62px 1fr;
  gap: 14px 18px;
  padding: 34px;
  border-radius: 34px;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.22);
  box-shadow: var(--shadow);
}

.buy-hero-visual strong {
  width: 62px;
  height: 62px;
  border-radius: 20px;
  display: grid;
  place-items: center;
  background: var(--yellow);
  color: #111;
  font-size: 28px;
  font-weight: 950;
}

.buy-hero-visual span {
  display: flex;
  align-items: center;
  color: white;
  font-size: 24px;
  font-weight: 950;
  letter-spacing: -.04em;
}

.buy-fast-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  padding: 24px 64px;
  background: #00343a;
  color: white;
}

.buy-fast-strip div {
  padding: 22px 24px;
  border-radius: 24px;
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.16);
}

.buy-fast-strip strong {
  display: block;
  color: var(--yellow);
  font-size: 24px;
  line-height: 1;
}

.buy-fast-strip span {
  display: block;
  margin-top: 8px;
  color: rgba(255,255,255,.78);
  font-weight: 800;
}

@media (max-width: 800px) {
  .buy-hero-impact {
    grid-template-columns: 1fr;
    padding: 54px 24px 48px;
  }

  .buy-hero-copy h1 {
    font-size: 44px;
  }

  .buy-hero-copy p {
    font-size: 18px;
  }

  .buy-hero-visual {
    padding: 24px;
  }

  .buy-hero-visual span {
    font-size: 19px;
  }

  .buy-fast-strip {
    grid-template-columns: 1fr;
    padding: 20px 24px;
  }
}


/* BUY BUILDER - VISIONARY SECTION REWORK */

.build-system-section {
  padding: 86px 64px 96px !important;
  background:
    radial-gradient(circle at 78% 14%, rgba(255,197,46,.18), transparent 30%),
    radial-gradient(circle at 12% 88%, rgba(0,166,173,.16), transparent 34%),
    linear-gradient(135deg, #f7fbfb, #ffffff) !important;
}

.builder-intro {
  max-width: 920px;
  margin-bottom: 34px;
}

.builder-intro .section-title {
  max-width: 880px;
  margin: 8px 0 14px;
  font-size: 58px;
  line-height: .95;
  letter-spacing: -.07em;
}

.builder-intro p {
  max-width: 760px;
  color: #30484f;
  font-size: 20px;
  line-height: 1.45;
}

.build-grid {
  grid-template-columns: minmax(0, 1fr) 390px !important;
  gap: 34px !important;
}

.build-card {
  padding: 0 !important;
  overflow: hidden;
  border-radius: 38px !important;
  background: white !important;
}

.build-note {
  border-radius: 0 !important;
  padding: 34px 36px !important;
  color: white;
  background:
    radial-gradient(circle at 88% 20%, rgba(255,197,46,.16), transparent 30%),
    linear-gradient(135deg, #00343a, #005961) !important;
}

.build-note strong {
  color: var(--yellow);
}

.build-note p {
  max-width: 680px;
  color: rgba(255,255,255,.84) !important;
}

.form-row,
.build-card > label,
.build-card > button,
.duct-card,
.shipping-rates {
  margin-left: 34px !important;
  margin-right: 34px !important;
}

.duct-card {
  background: #f7fbfb !important;
  border-radius: 28px !important;
}

.build-card > .btn:last-child {
  margin-bottom: 34px !important;
  min-height: 54px;
  border-radius: 999px;
}

.build-summary {
  top: 120px !important;
  border-radius: 34px !important;
  padding: 34px !important;
}

.build-summary h3 {
  font-size: 34px !important;
}

@media (max-width: 800px) {
  .build-system-section {
    padding: 58px 20px 72px !important;
  }

  .builder-intro .section-title {
    font-size: 38px;
  }

  .builder-intro p {
    font-size: 17px;
  }

  .build-grid {
    grid-template-columns: 1fr !important;
  }

  .form-row,
  .build-card > label,
  .build-card > button,
  .duct-card,
  .shipping-rates {
    margin-left: 20px !important;
    margin-right: 20px !important;
  }

  .build-note {
    padding: 28px 24px !important;
  }

  .build-card > .btn:last-child {
    margin-bottom: 24px !important;
  }
}


/* BUY BUILDER -- MAKE IT FEEL LIKE CHECKOUT */

.build-system-section {
  padding: 56px 64px 72px !important;
}

.builder-intro.compact {
  max-width: 680px !important;
  margin-bottom: 22px !important;
}

.builder-intro.compact .section-title {
  font-size: 46px !important;
  line-height: .95 !important;
  margin: 6px 0 8px !important;
}

.builder-intro.compact p {
  font-size: 18px !important;
}

.build-grid {
  grid-template-columns: minmax(0, 680px) 320px !important;
  justify-content: center !important;
  gap: 24px !important;
}

.build-card {
  border-radius: 30px !important;
  box-shadow: 0 18px 48px rgba(0,44,50,.12) !important;
}

.build-note {
  padding: 24px 28px !important;
}

.build-note strong {
  font-size: 24px !important;
}

.build-note p {
  font-size: 14px !important;
}

.duct-card {
  padding: 20px !important;
}

.duct-size {
  min-width: 46px !important;
  min-height: 38px !important;
  border-radius: 13px !important;
}

.quantity-row {
  grid-template-columns: 1fr 38px 44px 38px !important;
}

.quantity-row button {
  width: 38px !important;
  height: 38px !important;
}

.build-summary {
  padding: 26px !important;
  border-radius: 28px !important;
}

.build-summary h3 {
  font-size: 28px !important;
}

.buy-fast-strip {
  display: none !important;
}


 /* SMARTDUCKS BUY PAGE V2 */

.buy-page-site .sd-buy-v2 {
  background: #fff;
}

.buy-page-site .sd-buy-hero {
  padding: 88px 64px 78px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 430px;
  gap: 56px;
  align-items: center;
  color: #fff;
  background:
    radial-gradient(circle at 78% 15%, rgba(255,197,46,.28), transparent 30%),
    radial-gradient(circle at 88% 82%, rgba(0,166,173,.42), transparent 36%),
    linear-gradient(135deg, #00343a, #00737b);
}

.buy-page-site .sd-kicker {
  display: block;
  margin-bottom: 16px;
  color: var(--yellow);
  font-size: 13px;
  font-weight: 950;
  text-transform: uppercase;
  letter-spacing: .09em;
}

.buy-page-site .sd-buy-copy h1 {
  max-width: 860px;
  margin: 0 0 22px;
  font-size: 74px;
  line-height: .9;
  letter-spacing: -.075em;
  font-weight: 950;
}

.buy-page-site .sd-buy-copy p {
  max-width: 740px;
  color: rgba(255,255,255,.86);
  font-size: 22px;
  line-height: 1.42;
}

.buy-page-site .sd-hero-card {
  padding: 34px;
  border-radius: 34px;
  background: rgba(255,255,255,.13);
  border: 1px solid rgba(255,255,255,.22);
  box-shadow: var(--shadow);
}

.buy-page-site .sd-hero-card > strong {
  display: block;
  margin-bottom: 24px;
  color: #fff;
  font-size: 34px;
  line-height: 1;
  letter-spacing: -.055em;
}

.buy-page-site .sd-hero-card div {
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 14px;
  align-items: center;
  margin-top: 14px;
}

.buy-page-site .sd-hero-card span {
  width: 54px;
  height: 54px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  background: var(--yellow);
  color: #111;
  font-weight: 950;
}

.buy-page-site .sd-hero-card b {
  color: #fff;
  font-size: 21px;
  letter-spacing: -.035em;
}

.buy-page-site .sd-buy-proof {
  padding: 24px 64px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  background: #f7fbfb;
}

.buy-page-site .sd-buy-proof article {
  padding: 24px;
  border-radius: 24px;
  background: #fff;
  border: 1px solid rgba(0,36,42,.1);
  box-shadow: var(--shadow);
}

.buy-page-site .sd-buy-proof strong {
  display: block;
  color: var(--teal);
  font-size: 23px;
  line-height: 1;
  letter-spacing: -.035em;
}

.buy-page-site .sd-buy-proof span {
  display: block;
  margin-top: 9px;
  color: #40575d;
  font-size: 15px;
  line-height: 1.35;
  font-weight: 750;
}

.buy-page-site .sd-builder {
  padding: 86px 64px 96px;
  background:
    radial-gradient(circle at 78% 12%, rgba(0,166,173,.12), transparent 30%),
    radial-gradient(circle at 18% 88%, rgba(255,197,46,.16), transparent 34%),
    linear-gradient(135deg, #fff, #f7fbfb);
}

.buy-page-site .sd-builder-head {
  max-width: 930px;
  margin-bottom: 36px;
}

.buy-page-site .sd-builder-head .sd-kicker {
  color: var(--teal);
}

.buy-page-site .sd-builder-head h2 {
  max-width: 900px;
  margin: 0 0 16px;
  color: var(--ink);
  font-size: 58px;
  line-height: .95;
  letter-spacing: -.07em;
}

.buy-page-site .sd-builder-head p {
  max-width: 760px;
  margin: 0;
  color: #30484f;
  font-size: 20px;
  line-height: 1.45;
}

.buy-page-site .sd-builder-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 390px;
  gap: 34px;
  align-items: start;
}

.buy-page-site .sd-config-card {
  display: grid;
  gap: 18px;
  background: transparent;
  border: 0;
  box-shadow: none;
  padding: 0;
}

.buy-page-site .sd-step-card {
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr);
  gap: 20px 24px;
  padding: 28px;
  border-radius: 30px;
  background: rgba(255,255,255,.94);
  border: 1px solid rgba(0,36,42,.1);
  box-shadow: 0 18px 48px rgba(0,44,50,.11);
}

.buy-page-site .sd-step-card > *:not(.sd-step-num) {
  grid-column: 2;
}

.buy-page-site .sd-step-num {
  grid-row: 1 / span 4;
  width: 72px;
  height: 72px;
  border-radius: 24px;
  display: grid;
  place-items: center;
  background: linear-gradient(145deg, #00343a, #005961);
  color: var(--yellow);
  font-size: 21px;
  font-weight: 950;
  letter-spacing: -.04em;
}

.buy-page-site .sd-step-card h3 {
  margin: 0 0 8px;
  color: var(--ink);
  font-size: 30px;
  line-height: 1;
  letter-spacing: -.055em;
}

.buy-page-site .sd-step-card p {
  max-width: 720px;
  margin: 0;
  color: #40575d;
  line-height: 1.45;
}

.buy-page-site .sd-mode-row {
  display: inline-flex;
  width: fit-content;
  padding: 8px;
  border-radius: 999px;
  background: #eef7f7;
  border: 1px solid rgba(0,36,42,.1);
  box-shadow: none;
}

.buy-page-site .build-toolbar span {
  display: none;
}

.buy-page-site .mode-btn {
  min-height: 42px;
  padding: 0 22px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: #21383d;
  font-weight: 950;
}

.buy-page-site .mode-btn.active {
  background: var(--yellow);
  color: #111;
}

.buy-page-site .form-row.two,
.buy-page-site .sd-location-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.buy-page-site label {
  display: grid;
  gap: 8px;
  color: #21383d;
  font-size: 13px;
  font-weight: 950;
  text-transform: uppercase;
  letter-spacing: .04em;
}

.buy-page-site input,
.buy-page-site select {
  min-height: 52px;
  border-radius: 18px;
  border: 1px solid var(--line);
  padding: 0 16px;
  background: #fff;
  font: inherit;
  font-weight: 750;
}

.buy-page-site .duct-card {
  padding: 22px;
  border-radius: 24px;
  background: #f7fbfb;
  border: 1px solid rgba(0,36,42,.1);
}

.buy-page-site .duct-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 18px;
}

.buy-page-site .duct-head h3 {
  margin: 0;
  font-size: 24px;
  line-height: 1;
  letter-spacing: -.04em;
}

.buy-page-site .duct-head span,
.buy-page-site .small-note,
.buy-page-site .quantity-row small {
  color: var(--muted);
}

.buy-page-site .duct-legend {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  margin-bottom: 18px;
  color: #40575d;
  font-size: 12px;
  font-weight: 850;
}

.buy-page-site .dot {
  display: inline-block;
  width: 10px;
  height: 10px;
  margin-right: 7px;
  border-radius: 999px;
}

.buy-page-site .home-dot { background: var(--teal); }
.buy-page-site .business-dot { background: var(--yellow); }

.buy-page-site .duct-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.buy-page-site .duct-size {
  min-width: 54px;
  min-height: 46px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #fff;
  color: #21383d;
  font-weight: 950;
  box-shadow: 0 8px 18px rgba(0,44,50,.08);
}

.buy-page-site .duct-size.active {
  background: var(--yellow);
  color: #111;
}

.buy-page-site .duct-size.disabled {
  opacity: .28;
  cursor: not-allowed;
}

.buy-page-site .quantity-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 44px 52px 44px;
  gap: 10px;
  align-items: center;
  padding: 14px 0;
  border-top: 1px solid var(--line);
  font-weight: 950;
}

.buy-page-site .quantity-row:first-child {
  border-top: 0;
}

.buy-page-site .quantity-row button {
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 15px;
  background: var(--yellow);
  color: #111;
  font-size: 22px;
  font-weight: 950;
}

.buy-page-site .quantity-row strong {
  text-align: center;
  font-size: 24px;
}

.buy-page-site .business-size-row {
  margin-top: 16px;
  padding: 18px;
  border-radius: 22px;
  background: #fff;
  border: 1px solid var(--line);
}

.buy-page-site .business-size-head {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 10px;
  font-weight: 950;
}

.buy-page-site .business-size-head span {
  color: var(--teal);
}

.buy-page-site .shipping-rates {
  display: grid;
  gap: 10px;
}

.buy-page-site .shipping-rate {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 15px 18px;
  border-radius: 18px;
  border: 1px solid rgba(0,36,42,.12);
  background: #fff;
  color: var(--ink);
  font-weight: 950;
}

.buy-page-site .shipping-rate.active {
  background: var(--yellow);
  color: #111;
}

.buy-page-site .sd-summary-card {
  position: sticky;
  top: 104px;
  padding: 32px;
  border-radius: 34px;
  color: #071113;
  background:
    radial-gradient(circle at 82% 12%, rgba(255,197,46,.22), transparent 32%),
    linear-gradient(145deg, #fff, #f4fbfb);
  border: 1px solid rgba(0,36,42,.12);
  box-shadow: 0 24px 70px rgba(0,44,50,.14);
}

.buy-page-site .sd-summary-card .sd-kicker {
  color: var(--teal);
}

.buy-page-site .sd-summary-card h3 {
  margin: 0 0 12px;
  color: #071113;
  font-size: 34px;
  line-height: .98;
  letter-spacing: -.055em;
}

.buy-page-site .sd-summary-card p,
.buy-page-site .sd-summary-card small {
  color: #40575d;
}

.buy-page-site .sd-summary-metrics {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin: 22px 0;
}

.buy-page-site .sd-summary-metrics div {
  padding: 16px;
  border-radius: 18px;
  background: #fff;
  border: 1px solid rgba(0,36,42,.1);
}

.buy-page-site .sd-summary-metrics span {
  display: block;
  color: var(--muted);
  font-size: 12px;
  font-weight: 850;
}

.buy-page-site .sd-summary-metrics strong {
  display: block;
  margin-top: 6px;
  color: var(--ink);
  font-size: 22px;
}

.buy-page-site .summary-line,
.buy-page-site .summary-total {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 15px 0;
  border-bottom: 1px solid rgba(0,36,42,.12);
}

.buy-page-site .summary-total {
  border-bottom: 0;
  font-size: 22px;
  font-weight: 950;
}

@media (max-width: 900px) {
  .buy-page-site .sd-buy-hero,
  .buy-page-site .sd-builder-layout,
  .buy-page-site .sd-location-row,
  .buy-page-site .form-row.two,
  .buy-page-site .sd-buy-proof {
    grid-template-columns: 1fr;
  }

  .buy-page-site .sd-buy-hero {
    padding: 56px 24px 48px;
  }

  .buy-page-site .sd-buy-copy h1 {
    font-size: 46px;
  }

  .buy-page-site .sd-buy-copy p {
    font-size: 18px;
  }

  .buy-page-site .sd-buy-proof {
    padding: 22px 24px;
  }

  .buy-page-site .sd-builder {
    padding: 58px 20px 72px;
  }

  .buy-page-site .sd-builder-head h2 {
    font-size: 40px;
  }

  .buy-page-site .sd-step-card {
    grid-template-columns: 1fr;
    padding: 24px;
  }

  .buy-page-site .sd-step-card > *:not(.sd-step-num) {
    grid-column: 1;
  }

  .buy-page-site .sd-step-num {
    grid-row: auto;
    width: 58px;
    height: 58px;
    border-radius: 20px;
  }

  .buy-page-site .sd-summary-card {
    position: static;
  }
}


/* BUY V2 - step 2 and duct number polish */

.buy-page-site .form-row.three {
  display: grid;
  grid-template-columns: 1.2fr .8fr 1fr;
  gap: 16px;
}

.buy-page-site .duct-size {
  min-width: 72px !important;
  min-height: 60px !important;
  font-size: 22px !important;
  border-radius: 20px !important;
}

@media (max-width: 900px) {
  .buy-page-site .form-row.three {
    grid-template-columns: 1fr;
  }
}

/* BUY V2 MOBILE REPAIR */

@media (max-width: 700px) {
  .buy-page-site .sd-buy-hero {
    padding: 34px 18px 28px !important;
    grid-template-columns: 1fr !important;
    gap: 22px !important;
  }

  .buy-page-site .sd-buy-copy h1 {
    font-size: 38px !important;
    line-height: .92 !important;
  }

  .buy-page-site .sd-buy-copy p {
    font-size: 15px !important;
    line-height: 1.4 !important;
  }

  .buy-page-site .sd-hero-card {
    padding: 22px !important;
    border-radius: 24px !important;
  }

  .buy-page-site .sd-hero-card > strong {
    font-size: 24px !important;
  }

  .buy-page-site .sd-buy-proof,
  .buy-page-site .sd-builder {
    padding-left: 16px !important;
    padding-right: 16px !important;
  }

  .buy-page-site .sd-builder-head h2 {
    font-size: 34px !important;
    line-height: .95 !important;
  }

  .buy-page-site .sd-step-card {
    padding: 18px !important;
    gap: 14px !important;
  }

  .buy-page-site .sd-step-card h3 {
    font-size: 23px !important;
  }

  .buy-page-site .sd-step-card p {
    font-size: 14px !important;
  }

  .buy-page-site .sd-step-num {
    width: 48px !important;
    height: 48px !important;
    font-size: 16px !important;
  }

  .buy-page-site .sd-location-row {
    grid-template-columns: 1fr !important;
  }

  .buy-page-site .duct-card {
    padding: 16px !important;
  }

  .buy-page-site .duct-head {
    display: block !important;
  }

  .buy-page-site .duct-head span {
    display: block !important;
    margin-top: 6px !important;
  }

  .buy-page-site .duct-size {
    min-width: 58px !important;
    min-height: 50px !important;
    font-size: 18px !important;
  }

  .buy-page-site .quantity-row {
    grid-template-columns: 1fr 38px 38px 38px !important;
    gap: 8px !important;
  }

  .buy-page-site .quantity-row button {
    width: 38px !important;
    height: 38px !important;
  }

  .buy-page-site .quantity-row strong {
    font-size: 20px !important;
  }

  .buy-page-site .sd-summary-card {
    padding: 22px !important;
    border-radius: 26px !important;
  }

  .buy-page-site .sd-summary-card h3 {
    font-size: 28px !important;
  }

  .buy-page-site .footer {
    display: block !important;
    padding: 38px 24px !important;
  }
}

@media screen and (max-width: 700px) {
  .buy-page-site main.sd-buy-v2 .sd-buy-hero,
  .buy-page-site .sd-buy-v2 .sd-buy-hero {
    padding: 34px 18px 28px !important;
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 22px !important;
  }

  .buy-page-site main.sd-buy-v2 .sd-buy-copy h1,
  .buy-page-site .sd-buy-v2 .sd-buy-copy h1 {
    font-size: 38px !important;
    line-height: .92 !important;
  }

  .buy-page-site main.sd-buy-v2 .sd-builder,
  .buy-page-site .sd-buy-v2 .sd-builder {
    padding: 42px 16px 56px !important;
  }

  .buy-page-site main.sd-buy-v2 .sd-builder-layout,
  .buy-page-site .sd-buy-v2 .sd-builder-layout {
    display: grid !important;
    grid-template-columns: 1fr !important;
  }

  .buy-page-site main.sd-buy-v2 .sd-step-card,
  .buy-page-site .sd-buy-v2 .sd-step-card {
    display: grid !important;
    grid-template-columns: 1fr !important;
    padding: 18px !important;
  }

  .buy-page-site main.sd-buy-v2 .sd-step-card > * {
    grid-column: 1 !important;
  }
}