@import url("https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;600;700&family=Playfair+Display:wght@600;700&display=swap");

:root {
  --navy-950: #071c2c;
  --navy-900: #0b263a;
  --navy-800: #12364d;
  --navy-700: #174963;
  --blue-700: #0878a6;
  --blue-600: #0798c9;
  --blue-500: #11b6dc;
  --blue-300: #8fdef0;
  --blue-100: #e5f8fc;
  --aqua-100: #eefbfd;
  --sand-100: #f8f4ec;
  --sand-200: #f0e7d8;
  --gold-500: #d5a653;
  --gold-400: #e5bd72;
  --white: #ffffff;
  --gray-50: #f8fafb;
  --gray-100: #f0f4f6;
  --gray-200: #dde5e9;
  --gray-300: #c7d2d8;
  --gray-500: #6d7e88;
  --gray-600: #536570;
  --gray-700: #384b56;
  --gray-900: #172832;
  --success: #1c8d69;
  --warning: #ad6b19;
  --danger: #c34848;
  --shadow-sm: 0 8px 22px rgba(7, 28, 44, 0.08);
  --shadow-md: 0 16px 40px rgba(7, 28, 44, 0.12);
  --shadow-lg: 0 30px 70px rgba(7, 28, 44, 0.18);
  --radius-sm: 12px;
  --radius-md: 18px;
  --radius-lg: 28px;
  --transition: 0.25s ease;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  background: var(--gray-50);
  color: var(--gray-900);
  font-family: "DM Sans", Arial, sans-serif;
  line-height: 1.6;
}

button,
input,
select {
  font: inherit;
}

button,
a,
input,
select,
label {
  -webkit-tap-highlight-color: transparent;
}

button {
  cursor: pointer;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
}

.site-shell {
  overflow: hidden;
}

.hero {
  position: relative;
  min-height: 770px;
  padding: 0 6%;
  overflow: hidden;
  color: var(--white);
  background:
    radial-gradient(circle at 80% 20%, rgba(17, 182, 220, 0.22), transparent 30%),
    radial-gradient(circle at 10% 10%, rgba(213, 166, 83, 0.12), transparent 24%),
    linear-gradient(135deg, var(--navy-950) 0%, var(--navy-900) 48%, #0f4560 100%);
}

.hero::before {
  position: absolute;
  inset: 0;
  content: "";
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 52px 52px;
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.85), transparent);
}

.topbar {
  position: relative;
  z-index: 5;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(1320px, 100%);
  margin: 0 auto;
  padding: 24px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.11);
}

.brand,
.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 13px;
}

.brand-copy,
.footer-brand div {
  display: flex;
  flex-direction: column;
}

.brand-copy strong,
.footer-brand strong {
  font-size: 0.97rem;
  letter-spacing: 0.03em;
}

.brand-copy small,
.footer-brand small {
  margin-top: -2px;
  color: rgba(255, 255, 255, 0.64);
  font-size: 0.71rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.brand-mark {
  position: relative;
  display: inline-block;
  width: 45px;
  height: 45px;
  overflow: hidden;
  flex: 0 0 45px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 50%;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0.04));
  box-shadow: inset 0 0 18px rgba(255, 255, 255, 0.08);
}

.brand-wave {
  position: absolute;
  left: -10px;
  width: 64px;
  height: 24px;
  border-radius: 45%;
  background: rgba(17, 182, 220, 0.72);
  transform: rotate(-8deg);
}

.brand-wave-one {
  top: 20px;
}

.brand-wave-two {
  top: 28px;
  background: rgba(143, 222, 240, 0.62);
  transform: rotate(8deg);
}

.topbar-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 20px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 999px;
  color: var(--white);
  font-size: 0.9rem;
  font-weight: 700;
  transition:
    background var(--transition),
    border-color var(--transition),
    transform var(--transition);
}

.topbar-link:hover {
  border-color: rgba(255, 255, 255, 0.5);
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-2px);
}

.hero-content {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(420px, 0.98fr);
  align-items: center;
  gap: 70px;
  width: min(1320px, 100%);
  min-height: 625px;
  margin: 0 auto;
  padding: 70px 0 100px;
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--gold-400);
  font-size: 0.77rem;
  font-weight: 700;
  letter-spacing: 0.19em;
  text-transform: uppercase;
}

.hero-copy h1,
.section-heading h2,
.results-heading h2,
.consultation-panel h2 {
  margin: 0;
  font-family: "Playfair Display", Georgia, serif;
  line-height: 1.08;
}

.hero-copy h1 {
  max-width: 740px;
  font-size: clamp(3.1rem, 6vw, 5.8rem);
  letter-spacing: -0.045em;
}

.hero-description {
  max-width: 670px;
  margin: 28px 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.08rem;
  line-height: 1.8;
}

.hero-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.hero-highlight {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  min-height: 38px;
  padding: 8px 13px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.84);
  font-size: 0.82rem;
  backdrop-filter: blur(12px);
}

.highlight-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: rgba(17, 182, 220, 0.2);
  color: var(--blue-300);
  font-size: 0.72rem;
  font-weight: 800;
}

.hero-button {
  display: inline-flex;
  align-items: center;
  gap: 13px;
  min-height: 54px;
  margin-top: 34px;
  padding: 0 24px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--gold-400), var(--gold-500));
  color: var(--navy-950);
  font-weight: 800;
  box-shadow: 0 14px 32px rgba(213, 166, 83, 0.24);
  transition:
    transform var(--transition),
    box-shadow var(--transition);
}

.hero-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 38px rgba(213, 166, 83, 0.32);
}

.hero-visual {
  position: relative;
  min-height: 470px;
}

.pool-scene {
  position: relative;
  width: 100%;
  max-width: 600px;
  height: 470px;
  margin-left: auto;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 38px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.025)),
    radial-gradient(circle at 70% 20%, rgba(17, 182, 220, 0.15), transparent 34%);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.24);
  backdrop-filter: blur(20px);
}

.sun-glow {
  position: absolute;
  top: 45px;
  right: 50px;
  width: 130px;
  height: 130px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(229, 189, 114, 0.46), rgba(229, 189, 114, 0.05) 64%, transparent 70%);
  filter: blur(1px);
}

.pool-deck {
  position: absolute;
  right: 45px;
  bottom: 52px;
  width: 82%;
  height: 58%;
  border-radius: 70px 18px 54px 20px;
  background: linear-gradient(145deg, #d9d0bf, #bfb29d);
  box-shadow:
    0 30px 55px rgba(0, 0, 0, 0.28),
    inset 0 0 0 10px rgba(255, 255, 255, 0.18);
  transform: rotate(-5deg);
}

.pool-water {
  position: absolute;
  inset: 22px;
  overflow: hidden;
  border-radius: 55px 12px 42px 14px;
  background:
    radial-gradient(circle at 35% 30%, rgba(255, 255, 255, 0.34), transparent 18%),
    linear-gradient(140deg, #0fc3df 0%, #069ac4 50%, #0673a3 100%);
  box-shadow:
    inset 0 0 22px rgba(255, 255, 255, 0.26),
    inset 0 -22px 35px rgba(4, 81, 117, 0.32);
}

.water-line {
  position: absolute;
  left: -10%;
  width: 120%;
  height: 18px;
  border-top: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  transform: rotate(4deg);
}

.water-line-one {
  top: 32%;
}

.water-line-two {
  top: 53%;
  left: -4%;
  transform: rotate(-3deg);
}

.water-line-three {
  top: 70%;
  transform: rotate(2deg);
}

.pool-steps {
  position: absolute;
  right: 33px;
  bottom: 34px;
  display: flex;
  flex-direction: column;
  gap: 5px;
  width: 105px;
  transform: rotate(1deg);
}

.pool-steps span {
  height: 15px;
  border: 1px solid rgba(255, 255, 255, 0.32);
  border-radius: 0 0 15px 15px;
  background: rgba(255, 255, 255, 0.13);
}

.pool-light {
  position: absolute;
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: #d7fbff;
  box-shadow: 0 0 22px 8px rgba(215, 251, 255, 0.5);
}

.pool-light-one {
  left: 40%;
  bottom: 28%;
}

.pool-light-two {
  right: 29%;
  top: 31%;
}

.scene-card {
  position: absolute;
  z-index: 5;
  display: flex;
  flex-direction: column;
  width: 220px;
  padding: 16px 18px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 16px;
  background: rgba(7, 28, 44, 0.7);
  box-shadow: 0 18px 38px rgba(0, 0, 0, 0.24);
  backdrop-filter: blur(18px);
}

.scene-card small {
  margin-bottom: 4px;
  color: rgba(255, 255, 255, 0.57);
  font-size: 0.7rem;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.scene-card strong {
  color: var(--white);
  font-size: 0.96rem;
}

.scene-card-top {
  top: 38px;
  left: -30px;
}

.scene-card-bottom {
  right: -15px;
  bottom: 25px;
  width: 180px;
}

.scene-card-bottom strong {
  color: var(--blue-300);
  font-size: 1.48rem;
}

.hero-bottom-wave {
  position: absolute;
  right: -5%;
  bottom: -76px;
  left: -5%;
  height: 140px;
  border-radius: 50% 50% 0 0;
  background: var(--gray-50);
}

.intro-strip {
  position: relative;
  z-index: 10;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  width: min(1180px, calc(100% - 40px));
  margin: -44px auto 0;
  overflow: hidden;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  background: var(--white);
  box-shadow: var(--shadow-md);
}

.intro-step {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  min-height: 138px;
  padding: 30px;
}

.intro-step + .intro-step {
  border-left: 1px solid var(--gray-200);
}

.intro-step > span {
  color: var(--blue-600);
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.65rem;
  font-weight: 700;
}

.intro-step strong {
  color: var(--navy-900);
  font-size: 0.98rem;
}

.intro-step p {
  margin: 7px 0 0;
  color: var(--gray-500);
  font-size: 0.82rem;
  line-height: 1.55;
}

.estimator-section {
  width: min(1320px, calc(100% - 40px));
  margin: 0 auto;
  padding: 105px 0 120px;
}

.section-heading,
.results-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 50px;
  margin-bottom: 48px;
}

.section-heading h2,
.results-heading h2,
.consultation-panel h2 {
  color: var(--navy-950);
  font-size: clamp(2.25rem, 4vw, 3.8rem);
  letter-spacing: -0.035em;
}

.section-heading > p {
  max-width: 560px;
  margin: 0 0 5px;
  color: var(--gray-500);
  font-size: 0.98rem;
  line-height: 1.75;
}

.estimator-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 390px;
  align-items: start;
  gap: 34px;
}

.form-column {
  min-width: 0;
}

.form-card {
  margin-bottom: 20px;
  overflow: hidden;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-md);
  background: var(--white);
  box-shadow: var(--shadow-sm);
  transition:
    border-color var(--transition),
    box-shadow var(--transition),
    transform var(--transition);
}

.form-card:hover {
  border-color: #c8dbe2;
  box-shadow: 0 12px 30px rgba(7, 28, 44, 0.09);
}

.form-card.is-active {
  border-color: rgba(7, 152, 201, 0.42);
  box-shadow: 0 14px 34px rgba(7, 152, 201, 0.1);
}

.form-card-header {
  display: flex;
  align-items: center;
  width: 100%;
  min-height: 94px;
  padding: 20px 24px;
  border: 0;
  background: linear-gradient(180deg, #ffffff, #fbfdfe);
  color: var(--gray-900);
  text-align: left;
}

.section-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  margin-right: 17px;
  flex: 0 0 48px;
  border-radius: 14px;
  background: var(--blue-100);
  color: var(--blue-700);
  font-weight: 800;
}

.section-title-group {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.section-kicker {
  margin-bottom: 2px;
  color: var(--blue-700);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.section-title-group strong {
  color: var(--navy-900);
  font-size: 1.03rem;
}

.section-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  margin-left: auto;
  border-radius: 50%;
  background: var(--gray-100);
  color: var(--navy-800);
  font-size: 1.15rem;
  font-weight: 700;
}

.form-card-content {
  padding: 0 24px 28px;
  border-top: 1px solid var(--gray-100);
}

.section-introduction {
  margin: 0 -24px 26px;
  padding: 18px 24px;
  background: linear-gradient(90deg, rgba(229, 248, 252, 0.85), rgba(248, 250, 251, 0.7));
}

.section-introduction p {
  margin: 0;
  color: var(--gray-600);
  font-size: 0.88rem;
}

.field-grid {
  display: grid;
  gap: 20px;
}

.field-grid-two {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.field-grid-three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.form-field {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.form-field label {
  margin-bottom: 8px;
  color: var(--gray-700);
  font-size: 0.79rem;
  font-weight: 800;
}

.form-field input,
.form-field select {
  width: 100%;
  min-height: 48px;
  border: 1px solid var(--gray-300);
  border-radius: 12px;
  outline: none;
  background: var(--white);
  color: var(--gray-900);
  font-size: 0.89rem;
  transition:
    border-color var(--transition),
    box-shadow var(--transition),
    background var(--transition);
}

.form-field input {
  padding: 0 14px;
}

.form-field select {
  padding: 0 42px 0 14px;
  appearance: none;
  background-image:
    linear-gradient(45deg, transparent 50%, var(--gray-500) 50%),
    linear-gradient(135deg, var(--gray-500) 50%, transparent 50%);
  background-position:
    calc(100% - 18px) calc(50% - 2px),
    calc(100% - 13px) calc(50% - 2px);
  background-repeat: no-repeat;
  background-size: 5px 5px;
}

.form-field input:focus,
.form-field select:focus {
  border-color: var(--blue-600);
  box-shadow: 0 0 0 4px rgba(7, 152, 201, 0.11);
}

.form-field input::placeholder {
  color: #9aa8af;
}

.form-field small {
  margin-top: 7px;
  color: var(--gray-500);
  font-size: 0.71rem;
  line-height: 1.45;
}

.input-with-unit,
.input-with-prefix {
  position: relative;
}

.input-with-unit input {
  padding-right: 78px;
}

.input-with-unit > span {
  position: absolute;
  top: 50%;
  right: 14px;
  color: var(--gray-500);
  font-size: 0.78rem;
  font-weight: 700;
  transform: translateY(-50%);
}

.input-with-prefix input {
  padding-left: 38px;
}

.input-with-prefix > span {
  position: absolute;
  top: 50%;
  left: 14px;
  color: var(--gray-600);
  font-weight: 800;
  transform: translateY(-50%);
}

.option-group {
  margin-top: 28px;
}

.option-group-heading {
  margin-bottom: 15px;
}

.option-group-heading h3 {
  margin: 0;
  color: var(--navy-900);
  font-size: 0.96rem;
}

.option-group-heading p {
  margin: 5px 0 0;
  color: var(--gray-500);
  font-size: 0.78rem;
}

.checkbox-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 13px;
}

.check-card {
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  min-height: 92px;
  padding: 16px;
  border: 1px solid var(--gray-200);
  border-radius: 14px;
  background: var(--white);
  cursor: pointer;
  transition:
    border-color var(--transition),
    background var(--transition),
    box-shadow var(--transition),
    transform var(--transition);
}

.check-card:hover {
  border-color: #b8d8e3;
  background: #fbfeff;
  transform: translateY(-1px);
}

.check-card:has(input:checked) {
  border-color: var(--blue-500);
  background: var(--blue-100);
  box-shadow: 0 7px 18px rgba(7, 152, 201, 0.1);
}

.check-card input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.custom-checkbox {
  position: relative;
  width: 20px;
  height: 20px;
  margin-top: 2px;
  flex: 0 0 20px;
  border: 1.5px solid var(--gray-300);
  border-radius: 6px;
  background: var(--white);
  transition:
    background var(--transition),
    border-color var(--transition);
}

.check-card input:checked + .custom-checkbox {
  border-color: var(--blue-600);
  background: var(--blue-600);
}

.check-card input:checked + .custom-checkbox::after {
  position: absolute;
  top: 3px;
  left: 6px;
  width: 5px;
  height: 9px;
  content: "";
  border-right: 2px solid var(--white);
  border-bottom: 2px solid var(--white);
  transform: rotate(45deg);
}

.check-card strong {
  display: block;
  color: var(--gray-900);
  font-size: 0.82rem;
}

.check-card small {
  display: block;
  margin-top: 4px;
  color: var(--gray-500);
  font-size: 0.71rem;
  line-height: 1.45;
}

.selection-card-grid {
  display: grid;
  gap: 14px;
}

.pool-type-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.equipment-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.selection-card {
  position: relative;
  display: block;
  min-width: 0;
  cursor: pointer;
}

.selection-card input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.selection-card-content {
  display: flex;
  min-height: 185px;
  flex-direction: column;
  padding: 20px;
  border: 1px solid var(--gray-200);
  border-radius: 16px;
  background: var(--white);
  transition:
    border-color var(--transition),
    background var(--transition),
    box-shadow var(--transition),
    transform var(--transition);
}

.selection-card:hover .selection-card-content {
  border-color: #b6d8e4;
  transform: translateY(-2px);
}

.selection-card input:checked + .selection-card-content {
  border-color: var(--blue-500);
  background:
    linear-gradient(145deg, rgba(229, 248, 252, 0.96), rgba(255, 255, 255, 0.98));
  box-shadow: 0 12px 26px rgba(7, 152, 201, 0.12);
}

.selection-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  margin-bottom: 15px;
  border-radius: 11px;
  background: var(--gray-100);
  color: var(--blue-700);
  font-size: 1.1rem;
  font-weight: 800;
}

.selection-card input:checked + .selection-card-content .selection-icon {
  background: var(--blue-600);
  color: var(--white);
}

.selection-card-content > strong {
  color: var(--navy-900);
  font-size: 0.92rem;
}

.selection-card-content > small {
  margin-top: 6px;
  color: var(--gray-500);
  font-size: 0.72rem;
  line-height: 1.5;
}

.selection-price {
  margin-top: auto;
  padding-top: 15px;
  color: var(--blue-700);
  font-size: 0.74rem;
  font-weight: 800;
}

.package-card .selection-card-content {
  min-height: 300px;
}

.package-label {
  align-self: flex-start;
  margin-bottom: 16px;
  padding: 5px 9px;
  border-radius: 999px;
  background: var(--blue-100);
  color: var(--blue-700);
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.package-card ul {
  margin: 16px 0 18px;
  padding: 0;
  list-style: none;
}

.package-card li {
  position: relative;
  margin-bottom: 9px;
  padding-left: 17px;
  color: var(--gray-600);
  font-size: 0.7rem;
  line-height: 1.45;
}

.package-card li::before {
  position: absolute;
  top: 0.56em;
  left: 0;
  width: 6px;
  height: 6px;
  content: "";
  border-radius: 50%;
  background: var(--blue-500);
}

.calculation-preview {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin-top: 25px;
  overflow: hidden;
  border: 1px solid var(--gray-200);
  border-radius: 14px;
  background: var(--gray-200);
}

.calculation-preview div {
  padding: 18px;
  background: linear-gradient(180deg, var(--aqua-100), var(--white));
}

.calculation-preview span {
  display: block;
  margin-bottom: 5px;
  color: var(--gray-500);
  font-size: 0.67rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.calculation-preview strong {
  color: var(--navy-900);
  font-size: 0.92rem;
}

.safety-notice,
.finance-disclaimer {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-top: 20px;
  padding: 15px 16px;
  border: 1px solid #efd8ad;
  border-radius: 13px;
  background: #fff9ee;
}

.notice-icon,
.finance-disclaimer > span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  flex: 0 0 24px;
  border-radius: 50%;
  background: #f1d69e;
  color: #7d4b0f;
  font-size: 0.78rem;
  font-weight: 900;
}

.safety-notice strong {
  color: #6f4717;
  font-size: 0.8rem;
}

.safety-notice p,
.finance-disclaimer p {
  margin: 3px 0 0;
  color: #795d35;
  font-size: 0.72rem;
  line-height: 1.5;
}

.form-actions {
  display: flex;
  gap: 12px;
  margin-top: 26px;
}

.primary-action,
.secondary-action {
  min-height: 54px;
  border-radius: 14px;
  font-weight: 800;
  transition:
    transform var(--transition),
    box-shadow var(--transition),
    background var(--transition),
    border-color var(--transition);
}

.primary-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  flex: 1;
  border: 0;
  background: linear-gradient(135deg, var(--blue-700), var(--blue-600));
  color: var(--white);
  box-shadow: 0 14px 28px rgba(7, 152, 201, 0.2);
}

.primary-action:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 34px rgba(7, 152, 201, 0.26);
}

.secondary-action {
  min-width: 180px;
  padding: 0 22px;
  border: 1px solid var(--gray-300);
  background: var(--white);
  color: var(--gray-700);
}

.secondary-action:hover {
  border-color: var(--gray-500);
  background: var(--gray-100);
}

.summary-column {
  position: sticky;
  top: 24px;
}

.summary-card {
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 24px;
  background:
    radial-gradient(circle at 85% 0%, rgba(17, 182, 220, 0.2), transparent 35%),
    linear-gradient(160deg, var(--navy-950), var(--navy-800));
  color: var(--white);
  box-shadow: var(--shadow-lg);
}

.summary-card-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
  padding: 24px 24px 19px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.summary-label {
  margin: 0 0 3px;
  color: var(--blue-300);
  font-size: 0.64rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.summary-card h2 {
  margin: 0;
  font-size: 1.15rem;
}

.live-indicator {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 5px 9px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.66rem;
  font-weight: 700;
}

.live-indicator > span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #5de4b6;
  box-shadow: 0 0 0 4px rgba(93, 228, 182, 0.12);
}

.summary-total {
  padding: 25px 24px 22px;
}

.summary-total > span {
  display: block;
  color: rgba(255, 255, 255, 0.56);
  font-size: 0.72rem;
}

.summary-total > strong {
  display: block;
  margin-top: 4px;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 2.55rem;
  letter-spacing: -0.04em;
}

.summary-total > small {
  display: block;
  margin-top: 4px;
  color: var(--blue-300);
  font-size: 0.72rem;
}

.summary-configuration {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  margin: 0 24px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.08);
}

.summary-configuration div {
  padding: 14px;
  background: rgba(255, 255, 255, 0.035);
}

.summary-configuration span,
.summary-mini-breakdown span,
.summary-finance span {
  display: block;
  color: rgba(255, 255, 255, 0.52);
  font-size: 0.63rem;
  text-transform: uppercase;
}

.summary-configuration strong {
  display: block;
  margin-top: 4px;
  font-size: 0.74rem;
}

.summary-divider {
  height: 1px;
  margin: 22px 24px;
  background: rgba(255, 255, 255, 0.1);
}

.summary-mini-breakdown {
  padding: 0 24px;
}

.summary-mini-breakdown div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 11px;
}

.summary-mini-breakdown strong {
  font-size: 0.78rem;
}

.summary-finance {
  margin: 22px 24px 0;
  padding: 17px;
  border: 1px solid rgba(143, 222, 240, 0.18);
  border-radius: 14px;
  background: rgba(17, 182, 220, 0.1);
}

.summary-finance strong {
  display: block;
  margin-top: 3px;
  color: var(--blue-300);
  font-size: 1.35rem;
}

.summary-finance small {
  display: block;
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.65rem;
}

.summary-button {
  width: calc(100% - 48px);
  min-height: 48px;
  margin: 20px 24px 0;
  border: 0;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--gold-400), var(--gold-500));
  color: var(--navy-950);
  font-size: 0.8rem;
  font-weight: 900;
  transition:
    transform var(--transition),
    box-shadow var(--transition);
}

.summary-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 25px rgba(213, 166, 83, 0.22);
}

.summary-note {
  margin: 17px 24px 24px;
  color: rgba(255, 255, 255, 0.42);
  font-size: 0.64rem;
  line-height: 1.5;
}

.advisor-card {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-top: 16px;
  padding: 18px;
  border: 1px solid var(--gray-200);
  border-radius: 18px;
  background: var(--white);
  box-shadow: var(--shadow-sm);
}

.advisor-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  flex: 0 0 38px;
  border-radius: 12px;
  background: var(--sand-100);
  color: var(--gold-500);
  font-size: 1.1rem;
}

.advisor-card p {
  margin: 0;
  color: var(--blue-700);
  font-size: 0.64rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.advisor-card strong {
  display: block;
  margin-top: 4px;
  color: var(--navy-900);
  font-size: 0.79rem;
}

.advisor-card div > span {
  display: block;
  margin-top: 5px;
  color: var(--gray-500);
  font-size: 0.7rem;
  line-height: 1.5;
}

.results-section {
  padding: 110px 0;
  background:
    radial-gradient(circle at 10% 20%, rgba(17, 182, 220, 0.08), transparent 25%),
    linear-gradient(180deg, #eef4f6 0%, #f8fafb 100%);
}

.results-container {
  width: min(1320px, calc(100% - 40px));
  margin: 0 auto;
}

.results-actions {
  display: flex;
  gap: 10px;
}

.results-actions button,
.results-actions a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 44px;
  padding: 0 16px;
  border-radius: 11px;
  font-size: 0.76rem;
  font-weight: 800;
}

.results-actions button {
  border: 0;
  background: var(--navy-900);
  color: var(--white);
}

.results-actions a {
  border: 1px solid var(--gray-300);
  background: var(--white);
  color: var(--gray-700);
}

.results-hero-card {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 40px;
  padding: 34px 38px;
  border-radius: 24px;
  background:
    radial-gradient(circle at 90% 10%, rgba(17, 182, 220, 0.2), transparent 28%),
    linear-gradient(135deg, var(--navy-950), var(--navy-800));
  color: var(--white);
  box-shadow: var(--shadow-md);
}

.results-hero-copy > span,
.results-hero-metric > span {
  display: block;
  color: var(--blue-300);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.results-hero-copy > strong {
  display: block;
  margin-top: 8px;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(2.2rem, 4vw, 3.6rem);
  letter-spacing: -0.04em;
}

.results-hero-copy p {
  max-width: 680px;
  margin: 10px 0 0;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.78rem;
}

.results-hero-metric {
  min-width: 265px;
  padding: 22px 25px;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.065);
}

.results-hero-metric strong {
  display: block;
  margin-top: 6px;
  font-size: 1.8rem;
}

.results-hero-metric small {
  display: block;
  margin-top: 5px;
  color: rgba(255, 255, 255, 0.48);
  font-size: 0.66rem;
}

.results-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
  margin-top: 22px;
}

.result-panel {
  min-width: 0;
  padding: 28px;
  border: 1px solid var(--gray-200);
  border-radius: 20px;
  background: var(--white);
  box-shadow: var(--shadow-sm);
}

.result-panel-heading {
  display: flex;
  align-items: center;
  gap: 13px;
  margin-bottom: 24px;
}

.panel-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  flex: 0 0 42px;
  border-radius: 13px;
  background: var(--blue-100);
  color: var(--blue-700);
  font-weight: 900;
}

.result-panel-heading p {
  margin: 0;
  color: var(--blue-700);
  font-size: 0.63rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.result-panel-heading h3 {
  margin: 2px 0 0;
  color: var(--navy-900);
  font-size: 1.05rem;
}

.configuration-list {
  margin: 0;
}

.configuration-list > div,
.estimate-line {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 11px 0;
  border-bottom: 1px solid var(--gray-100);
}

.configuration-list > div:last-child,
.estimate-line:last-child {
  border-bottom: 0;
}

.configuration-list dt,
.estimate-line span {
  color: var(--gray-500);
  font-size: 0.75rem;
}

.configuration-list dd,
.estimate-line strong {
  margin: 0;
  color: var(--gray-900);
  font-size: 0.76rem;
  font-weight: 800;
  text-align: right;
}

.estimate-line-subtotal {
  margin-top: 6px;
  padding-top: 17px;
  border-top: 1px solid var(--gray-200);
}

.estimate-line-subtotal span,
.estimate-line-subtotal strong {
  color: var(--navy-900);
  font-size: 0.81rem;
}

.estimate-line-total {
  margin-top: 8px;
  padding: 17px 15px;
  border: 0;
  border-radius: 12px;
  background: var(--blue-100);
}

.estimate-line-total span {
  color: var(--blue-700);
  font-weight: 800;
}

.estimate-line-total strong {
  color: var(--blue-700);
  font-size: 1.05rem;
}

.finance-summary-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.finance-summary-grid > div {
  min-height: 84px;
  padding: 14px;
  border: 1px solid var(--gray-200);
  border-radius: 13px;
  background: var(--gray-50);
}

.finance-summary-grid span {
  display: block;
  color: var(--gray-500);
  font-size: 0.65rem;
  text-transform: uppercase;
}

.finance-summary-grid strong {
  display: block;
  margin-top: 6px;
  color: var(--navy-900);
  font-size: 0.94rem;
}

.finance-summary-grid .finance-primary {
  grid-column: span 2;
  min-height: 105px;
  background:
    radial-gradient(circle at 90% 0%, rgba(17, 182, 220, 0.18), transparent 40%),
    linear-gradient(135deg, var(--navy-950), var(--navy-800));
}

.finance-primary span {
  color: rgba(255, 255, 255, 0.56);
}

.finance-primary strong {
  color: var(--blue-300);
  font-size: 1.65rem;
}

.panel-disclaimer {
  margin: 18px 0 0;
  padding-top: 16px;
  border-top: 1px solid var(--gray-100);
  color: var(--gray-500);
  font-size: 0.68rem;
  line-height: 1.55;
}

.timeline-total {
  padding: 18px;
  border-radius: 14px;
  background: var(--sand-100);
}

.timeline-total span {
  display: block;
  color: var(--warning);
  font-size: 0.64rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.timeline-total strong {
  display: block;
  margin-top: 5px;
  color: var(--navy-900);
  font-size: 1.32rem;
}

.timeline-total small {
  display: block;
  margin-top: 5px;
  color: var(--gray-500);
  font-size: 0.68rem;
  line-height: 1.5;
}

.timeline-list {
  margin-top: 20px;
}

.timeline-item {
  position: relative;
  display: flex;
  gap: 14px;
  min-height: 62px;
}

.timeline-item:not(:last-child)::after {
  position: absolute;
  top: 15px;
  bottom: -4px;
  left: 6px;
  width: 1px;
  content: "";
  background: var(--gray-300);
}

.timeline-marker {
  position: relative;
  z-index: 2;
  width: 13px;
  height: 13px;
  margin-top: 5px;
  flex: 0 0 13px;
  border: 3px solid var(--white);
  border-radius: 50%;
  background: var(--blue-600);
  box-shadow: 0 0 0 1px var(--blue-600);
}

.timeline-item strong {
  display: block;
  color: var(--gray-900);
  font-size: 0.78rem;
}

.timeline-item small {
  display: block;
  margin-top: 2px;
  color: var(--gray-500);
  font-size: 0.69rem;
}

.recommendations-panel {
  margin-top: 22px;
  padding: 30px;
  border: 1px solid var(--gray-200);
  border-radius: 22px;
  background: var(--white);
  box-shadow: var(--shadow-sm);
}

.recommendations-heading {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 23px;
}

.recommendations-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 45px;
  height: 45px;
  flex: 0 0 45px;
  border-radius: 14px;
  background: var(--sand-100);
  color: var(--gold-500);
  font-size: 1.2rem;
}

.recommendations-heading p {
  margin: 0;
  color: var(--gold-500);
  font-size: 0.64rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.recommendations-heading h3 {
  margin: 2px 0 0;
  color: var(--navy-900);
  font-size: 1.08rem;
}

.recommendations-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.recommendation-card {
  display: flex;
  gap: 12px;
  padding: 18px;
  border: 1px solid var(--gray-200);
  border-radius: 15px;
  background: linear-gradient(180deg, var(--white), var(--gray-50));
}

.recommendation-card > span {
  color: var(--blue-600);
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.2rem;
  font-weight: 700;
}

.recommendation-card strong {
  display: block;
  color: var(--gray-900);
  font-size: 0.78rem;
}

.recommendation-card p {
  margin: 5px 0 0;
  color: var(--gray-500);
  font-size: 0.69rem;
  line-height: 1.5;
}

.consultation-panel {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 45px;
  margin-top: 22px;
  padding: 42px;
  border-radius: 24px;
  background:
    radial-gradient(circle at 100% 0%, rgba(17, 182, 220, 0.22), transparent 30%),
    linear-gradient(135deg, var(--navy-950), var(--navy-800));
  color: var(--white);
}

.consultation-panel h2 {
  color: var(--white);
  font-size: clamp(2rem, 3vw, 3rem);
}

.consultation-panel p:not(.eyebrow) {
  max-width: 740px;
  margin: 14px 0 0;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.82rem;
}

.consultation-panel > a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 13px;
  min-width: 245px;
  min-height: 54px;
  padding: 0 22px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--gold-400), var(--gold-500));
  color: var(--navy-950);
  font-size: 0.78rem;
  font-weight: 900;
  text-align: center;
  transition:
    transform var(--transition),
    box-shadow var(--transition);
}

.consultation-panel > a:hover {
  transform: translateY(-2px);
  box-shadow: 0 15px 30px rgba(213, 166, 83, 0.22);
}

.estimate-disclaimer {
  margin-top: 22px;
  padding: 23px 25px;
  border: 1px solid var(--gray-200);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.76);
}

.estimate-disclaimer h3 {
  margin: 0;
  color: var(--navy-900);
  font-size: 0.86rem;
}

.estimate-disclaimer p {
  margin: 8px 0 0;
  color: var(--gray-500);
  font-size: 0.7rem;
  line-height: 1.6;
}

.site-footer {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 40px;
  padding: 30px 6%;
  background: var(--navy-950);
  color: rgba(255, 255, 255, 0.62);
}

.site-footer .brand-mark {
  width: 40px;
  height: 40px;
  flex-basis: 40px;
}

.site-footer p,
.site-footer > span {
  margin: 0;
  font-size: 0.68rem;
}

.site-footer p {
  text-align: center;
}

.site-footer > span {
  text-align: right;
}

[hidden] {
  display: none !important;
}

@media (max-width: 1180px) {
  .hero-content {
    grid-template-columns: 1fr 0.9fr;
    gap: 35px;
  }

  .hero-copy h1 {
    font-size: clamp(3rem, 5.7vw, 4.8rem);
  }

  .estimator-layout {
    grid-template-columns: minmax(0, 1fr) 350px;
  }

  .equipment-grid {
    grid-template-columns: 1fr;
  }

  .package-card .selection-card-content {
    min-height: 0;
  }

  .recommendations-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 980px) {
  .hero {
    min-height: auto;
  }

  .hero-content {
    grid-template-columns: 1fr;
    gap: 30px;
    padding-top: 60px;
    padding-bottom: 150px;
  }

  .hero-copy {
    max-width: 760px;
  }

  .hero-visual {
    width: min(620px, 100%);
    min-height: 430px;
    margin: 0 auto;
  }

  .pool-scene {
    height: 430px;
  }

  .intro-strip {
    grid-template-columns: 1fr;
  }

  .intro-step {
    min-height: 0;
  }

  .intro-step + .intro-step {
    border-top: 1px solid var(--gray-200);
    border-left: 0;
  }

  .section-heading,
  .results-heading {
    align-items: flex-start;
    flex-direction: column;
    gap: 20px;
  }

  .estimator-layout {
    grid-template-columns: 1fr;
  }

  .summary-column {
    position: static;
  }

  .summary-card {
    max-width: none;
  }

  .summary-configuration {
    grid-template-columns: repeat(4, 1fr);
  }

  .results-grid {
    grid-template-columns: 1fr;
  }

  .consultation-panel {
    align-items: flex-start;
    flex-direction: column;
  }

  .consultation-panel > a {
    min-width: 0;
  }

  .site-footer {
    grid-template-columns: 1fr;
    justify-items: center;
    gap: 16px;
    text-align: center;
  }

  .site-footer > span {
    text-align: center;
  }
}

@media (max-width: 760px) {
  .hero {
    padding: 0 20px;
  }

  .topbar {
    padding: 18px 0;
  }

  .brand-copy small {
    display: none;
  }

  .topbar-link {
    min-height: 40px;
    padding: 0 15px;
    font-size: 0.76rem;
  }

  .hero-content {
    padding-top: 45px;
  }

  .hero-copy h1 {
    font-size: clamp(2.7rem, 12vw, 4.4rem);
  }

  .hero-description {
    font-size: 0.96rem;
  }

  .hero-highlights {
    align-items: flex-start;
    flex-direction: column;
  }

  .hero-highlight {
    width: 100%;
  }

  .hero-visual {
    min-height: 355px;
  }

  .pool-scene {
    height: 355px;
    border-radius: 28px;
  }

  .pool-deck {
    right: 28px;
    bottom: 38px;
    width: 84%;
    height: 56%;
  }

  .scene-card {
    width: 185px;
    padding: 13px 14px;
  }

  .scene-card-top {
    top: 24px;
    left: 12px;
  }

  .scene-card-bottom {
    right: 8px;
    bottom: 15px;
    width: 155px;
  }

  .intro-strip,
  .estimator-section,
  .results-container {
    width: calc(100% - 28px);
  }

  .estimator-section {
    padding-top: 80px;
    padding-bottom: 90px;
  }

  .section-heading h2,
  .results-heading h2 {
    font-size: 2.55rem;
  }

  .field-grid-two,
  .field-grid-three,
  .checkbox-grid,
  .pool-type-grid,
  .calculation-preview,
  .summary-configuration,
  .finance-summary-grid {
    grid-template-columns: 1fr;
  }

  .calculation-preview {
    gap: 1px;
  }

  .finance-summary-grid .finance-primary {
    grid-column: auto;
  }

  .form-card-header {
    min-height: 84px;
    padding: 17px;
  }

  .section-number {
    width: 42px;
    height: 42px;
    margin-right: 12px;
    flex-basis: 42px;
  }

  .section-title-group strong {
    font-size: 0.9rem;
  }

  .form-card-content {
    padding: 0 17px 22px;
  }

  .section-introduction {
    margin-right: -17px;
    margin-left: -17px;
    padding-right: 17px;
    padding-left: 17px;
  }

  .form-actions {
    flex-direction: column;
  }

  .secondary-action {
    width: 100%;
  }

  .summary-card-header,
  .summary-total {
    padding-right: 18px;
    padding-left: 18px;
  }

  .summary-configuration,
  .summary-divider,
  .summary-finance,
  .summary-note {
    margin-right: 18px;
    margin-left: 18px;
  }

  .summary-mini-breakdown {
    padding-right: 18px;
    padding-left: 18px;
  }

  .summary-button {
    width: calc(100% - 36px);
    margin-right: 18px;
    margin-left: 18px;
  }

  .results-section {
    padding: 85px 0;
  }

  .results-actions {
    width: 100%;
    flex-direction: column;
  }

  .results-actions button,
  .results-actions a {
    width: 100%;
  }

  .results-hero-card {
    grid-template-columns: 1fr;
    padding: 28px 22px;
  }

  .results-hero-metric {
    min-width: 0;
  }

  .result-panel,
  .recommendations-panel {
    padding: 22px 18px;
  }

  .configuration-list > div,
  .estimate-line {
    align-items: flex-start;
  }

  .configuration-list dt,
  .configuration-list dd,
  .estimate-line span,
  .estimate-line strong {
    max-width: 50%;
  }

  .recommendation-card {
    align-items: flex-start;
  }

  .consultation-panel {
    padding: 30px 22px;
  }

  .consultation-panel > a {
    width: 100%;
  }

  .site-footer {
    padding: 28px 20px;
  }
}

@media (max-width: 470px) {
  .brand-copy strong {
    font-size: 0.82rem;
  }

  .brand-mark {
    width: 39px;
    height: 39px;
    flex-basis: 39px;
  }

  .topbar-link {
    padding: 0 12px;
    font-size: 0.7rem;
  }

  .hero-copy h1 {
    font-size: 2.75rem;
  }

  .hero-description {
    line-height: 1.7;
  }

  .hero-button {
    width: 100%;
    justify-content: center;
  }

  .hero-visual {
    min-height: 300px;
  }

  .pool-scene {
    height: 300px;
  }

  .pool-deck {
    right: 20px;
    bottom: 35px;
    width: 86%;
  }

  .sun-glow {
    top: 20px;
    right: 18px;
    width: 90px;
    height: 90px;
  }

  .scene-card {
    width: 160px;
  }

  .scene-card small {
    font-size: 0.58rem;
  }

  .scene-card strong {
    font-size: 0.77rem;
  }

  .scene-card-bottom {
    width: 135px;
  }

  .scene-card-bottom strong {
    font-size: 1.13rem;
  }

  .intro-step {
    padding: 24px 20px;
  }

  .section-heading h2,
  .results-heading h2 {
    font-size: 2.25rem;
  }

  .form-card-header {
    padding: 14px;
  }

  .section-number {
    width: 38px;
    height: 38px;
    flex-basis: 38px;
    font-size: 0.78rem;
  }

  .section-kicker {
    font-size: 0.6rem;
  }

  .section-title-group strong {
    font-size: 0.8rem;
  }

  .section-toggle {
    width: 28px;
    height: 28px;
    flex-basis: 28px;
  }

  .check-card {
    min-height: 0;
  }

  .selection-card-content {
    min-height: 0;
  }

  .summary-total > strong {
    font-size: 2.15rem;
  }

  .results-hero-copy > strong {
    font-size: 2rem;
  }

  .results-hero-metric strong {
    font-size: 1.55rem;
  }

  .configuration-list > div,
  .estimate-line {
    gap: 12px;
  }
}

@media print {
  @page {
    margin: 0.45in;
  }

  body {
    background: var(--white);
    color: #000000;
  }

  .hero,
  .intro-strip,
  .estimator-section,
  .consultation-panel,
  .site-footer,
  .results-actions,
  .recommendations-panel {
    display: none !important;
  }

  .results-section {
    padding: 0;
    background: var(--white);
  }

  .results-container {
    width: 100%;
  }

  .results-heading {
    display: block;
    margin-bottom: 20px;
  }

  .results-heading .eyebrow {
    color: #555555;
  }

  .results-heading h2 {
    color: #000000;
    font-size: 28px;
  }

  .results-hero-card {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 20px;
    padding: 20px;
    border: 1px solid #cccccc;
    background: var(--white);
    color: #000000;
    box-shadow: none;
  }

  .results-hero-copy > span,
  .results-hero-metric > span,
  .results-hero-copy p,
  .results-hero-metric small {
    color: #555555;
  }

  .results-hero-metric {
    border: 1px solid #cccccc;
    background: #f7f7f7;
  }

  .results-grid {
    display: block;
  }

  .result-panel {
    margin-top: 16px;
    break-inside: avoid;
    border: 1px solid #cccccc;
    box-shadow: none;
  }

  .panel-icon,
  .estimate-line-total,
  .timeline-total,
  .finance-summary-grid .finance-primary {
    background: #f0f0f0;
    color: #000000;
  }

  .finance-primary span,
  .finance-primary strong {
    color: #000000;
  }

  .estimate-disclaimer {
    margin-top: 16px;
    border: 1px solid #cccccc;
    background: var(--white);
  }
}