:root {
    --navy-950: #071421;
    --navy-900: #0b1f33;
    --navy-800: #122840;
    --navy-700: #1b3a57;
    --steel: #607086;
    --gold: #c9a227;
    --gold-bright: #e0bd46;
    --gold-soft: #f7efd2;
    --ink: #101820;
    --muted: #6d737a;
    --line: #c7cbd0;
    --line-soft: #e4e6e8;
    --surface: #f5f5f7;
    --white: #ffffff;
    --heading: "Barlow Condensed", "Arial Narrow", sans-serif;
    --body: "Barlow", sans-serif;
    --page-width: 1280px;
    --shadow-soft: 0 16px 40px rgba(11, 31, 51, 0.1);
    --shadow-card: 0 10px 25px rgba(11, 31, 51, 0.08);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 6.5rem;
}

body.estimate-page {
    margin: 0;
    background: var(--white);
    color: var(--ink);
    font-family: var(--body);
    text-rendering: optimizeLegibility;
}

body.estimate-page button,
body.estimate-page a {
    font-family: inherit;
}

button:focus-visible,
a:focus-visible,
summary:focus-visible {
    outline: 3px solid rgba(201, 162, 39, 0.5);
    outline-offset: 3px;
}

.site-nav {
    position: sticky;
    top: 0;
    z-index: 100;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
    padding: 1rem clamp(1rem, 4vw, 4rem);
    border-bottom: 3px solid var(--gold);
    background: var(--navy-950);
}

.brand-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
    line-height: 0;
}

.brand-link img {
    display: block;
    width: auto;
    height: clamp(3.35rem, 5vw, 4.35rem);
    object-fit: contain;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    min-width: 0;
    margin-left: auto;
}

.nav-button {
    display: inline-flex;
    min-height: 46px;
    align-items: center;
    justify-content: center;
    gap: 0.375rem;
    padding: 0.5rem 1rem;
    border: 2px solid transparent;
    border-radius: 8px;
    font-size: 0.85rem;
    font-weight: 600;
    text-decoration: none;
    white-space: nowrap;
    cursor: pointer;
    box-shadow:
        0 5px 0 rgba(8, 18, 29, 0.24),
        0 14px 24px rgba(18, 40, 64, 0.14);
    transition: background 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.nav-button svg {
    width: 1.05rem;
    height: 1.05rem;
    flex: 0 0 auto;
    fill: currentColor;
}

.nav-button:hover {
    box-shadow:
        0 7px 0 rgba(8, 18, 29, 0.22),
        0 18px 30px rgba(18, 40, 64, 0.18);
}

.nav-button:active {
    box-shadow:
        0 2px 0 rgba(8, 18, 29, 0.24),
        0 8px 16px rgba(18, 40, 64, 0.14);
    transform: translateY(2px);
}

.nav-button-blue {
    border-color: rgba(173, 186, 199, 0.72);
    background: var(--navy-700);
    color: var(--white);
}

.nav-button-blue:hover {
    border-color: rgba(173, 186, 199, 0.92);
    background: var(--navy-800);
}

.nav-button-outline {
    border-color: rgba(255, 255, 255, 0.92);
    background: transparent;
    color: var(--white);
}

.nav-button-outline:hover {
    border-color: var(--white);
    background: rgba(255, 255, 255, 0.12);
}

.nav-label-tablet {
    display: none;
}

.estimate-page main {
    min-height: 0;
}

.configurator-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: clamp(2rem, 4vw, 3.5rem);
    width: min(calc(100% - 2rem), var(--page-width));
    margin: 0 auto;
    padding: clamp(1rem, 3vw, 2.5rem) 0 clamp(2rem, 4vw, 3.5rem);
}

.plan-preview {
    min-width: 0;
}

.plan-preview[hidden] {
    display: none;
}

.plan-canvas {
    position: relative;
    min-height: 0;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    padding: clamp(1.25rem, 2.25vw, 2rem);
    border-radius: 30px;
    background:
        radial-gradient(circle at 75% 18%, rgba(201, 162, 39, 0.28), transparent 22rem),
        radial-gradient(circle at 16% 78%, rgba(63, 107, 145, 0.36), transparent 25rem),
        linear-gradient(145deg, var(--navy-700), var(--navy-950) 72%);
    box-shadow: 0 26px 70px rgba(7, 20, 33, 0.24);
    color: var(--white);
    isolation: isolate;
}

.plan-grid {
    position: absolute;
    inset: 0;
    z-index: -3;
    opacity: 0.16;
    background-image:
        linear-gradient(rgba(255,255,255,0.16) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.16) 1px, transparent 1px);
    background-size: 38px 38px;
    mask-image: linear-gradient(to bottom, transparent, black 25%, black 70%, transparent);
}

.plan-orbit {
    position: absolute;
    z-index: -2;
    border: 1px solid rgba(201, 162, 39, 0.3);
    border-radius: 50%;
}

.plan-orbit-one {
    top: 13%;
    right: -12%;
    width: 25rem;
    height: 25rem;
}

.plan-orbit-two {
    top: 22%;
    right: -3%;
    width: 17rem;
    height: 17rem;
}

.plan-brand {
    display: flex;
    flex: 0 0 auto;
    width: 100%;
    align-items: center;
    justify-content: center;
}

.plan-copy {
    align-self: center;
    width: min(100%, 45rem);
    text-align: center;
}

.plan-copy h1 {
    margin: 0;
    font-family: var(--heading);
    font-size: clamp(2.2rem, 4vw, 3.55rem);
    font-weight: 800;
    letter-spacing: -0.035em;
    line-height: 0.98;
    text-wrap: balance;
}

.plan-copy > p:last-child {
    max-width: 33rem;
    margin: 0.8rem auto 0;
    color: rgba(255, 255, 255, 0.78);
    font-size: 0.95rem;
    line-height: 1.55;
}

.plan-services {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.5rem;
    min-height: 2rem;
    margin-top: 1.25rem;
}

.plan-services[hidden] {
    display: none;
}

.plan-services span {
    display: inline-flex;
    align-items: center;
    min-height: 2rem;
    padding: 0.42rem 0.7rem;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.84);
    font-size: 0.78rem;
    font-weight: 700;
}

.plan-services span.is-selected {
    border-color: rgba(201, 162, 39, 0.65);
    background: rgba(201, 162, 39, 0.17);
    color: #f5dda0;
}

.configuration-column {
    width: min(100%, 52rem);
    min-width: 0;
    margin: 0 auto;
}

.config-section {
    position: relative;
    padding: 0 0 clamp(4.5rem, 8vw, 7rem);
    scroll-margin-top: clamp(5.75rem, 8vw, 7rem);
    transition: opacity 0.25s ease;
}

.config-section + .config-section,
#serviceSections + #productSections,
#productSections + .config-section {
    padding-top: clamp(1rem, 2vw, 2rem);
}

.config-section.review-section {
    padding-bottom: 0;
}

.config-section.is-locked {
    display: none;
}

.config-section[hidden] {
    display: none;
}

.section-heading {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    align-items: start;
    margin-bottom: 1.35rem;
}

.section-heading h2 {
    margin: 0;
    color: #8a8a8d;
    font-family: var(--heading);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    letter-spacing: -0.035em;
    line-height: 1;
    text-wrap: balance;
}

.section-heading h2 strong {
    color: var(--navy-800);
    font-weight: 800;
}

.section-heading p {
    margin: 0.7rem 0 0;
    color: var(--muted);
    line-height: 1.55;
}

.choice-list {
    display: grid;
    gap: 0.8rem;
}

.choice-card {
    position: relative;
    width: 100%;
    display: grid;
    grid-template-columns: 5.5rem minmax(0, 1fr) minmax(7.2rem, auto);
    gap: 1rem;
    align-items: center;
    min-height: 7.75rem;
    padding: 1rem 1.2rem 1rem 1rem;
    border: 1px solid var(--line);
    border-radius: 15px;
    background: var(--white);
    color: var(--ink);
    text-align: left;
    cursor: pointer;
    transition: border-color 0.16s ease, box-shadow 0.16s ease, transform 0.16s ease, background 0.16s ease;
}

.choice-card:hover {
    border-color: #8d949b;
    box-shadow: var(--shadow-card);
    transform: translateY(-1px);
}

.choice-card.is-selected {
    border: 3px solid var(--gold);
    padding: calc(1rem - 2px) calc(1.2rem - 2px) calc(1rem - 2px) calc(1rem - 2px);
    box-shadow: 0 0 0 1px rgba(201, 162, 39, 0.08), var(--shadow-card);
    background: linear-gradient(180deg, var(--white), #fffdf7);
}

.choice-card-media {
    position: relative;
    display: block;
    width: 5.5rem;
    aspect-ratio: 1;
    overflow: hidden;
    align-self: start;
    border: 1px solid var(--line-soft);
    border-radius: 12px;
    background: #f1f2f3;
}

.choice-card-image {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.choice-card-tier-badge {
    position: absolute;
    top: 50%;
    left: 50%;
    display: inline-flex;
    width: 3.25rem;
    height: 3.25rem;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--white);
    border-radius: 50%;
    background: var(--navy-800);
    color: var(--gold-bright);
    box-shadow: 0 3px 9px rgba(7, 20, 33, 0.3);
    transform: translate(-50%, -50%);
}

.choice-card-tier-badge svg {
    width: 66%;
    height: 66%;
    fill: currentColor;
}

.service-package-choice .choice-card-tier-badge {
    width: 2.17rem;
    height: 2.17rem;
}

.choice-card-tier-badge.tier-no {
    background: var(--navy-800);
    color: var(--gold-bright);
}

.choice-card-media--none {
    background: linear-gradient(145deg, #eceeef, #dfe2e4);
}

.choice-card-copy {
    min-width: 0;
    align-self: center;
}

.choice-card-title {
    display: block;
    color: var(--navy-800);
    font-family: var(--heading);
    font-size: 1.55rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    line-height: 1;
}

.choice-card-description,
.choice-card-detail,
.choice-card-availability {
    display: block;
    margin-top: 0.45rem;
    color: var(--muted);
    font-size: 0.86rem;
    line-height: 1.48;
}

.choice-card-detail {
    color: var(--navy-700);
    font-weight: 700;
}

.choice-card-availability {
    color: #4b5259;
    font-weight: 700;
}

.choice-card-included {
    display: block;
    margin-top: 0.7rem;
}

.choice-card-included > strong {
    display: block;
    color: var(--navy-800);
    font-size: 0.8rem;
    font-weight: 800;
}

.choice-card-included-list {
    display: grid;
    gap: 0.24rem;
    margin-top: 0.3rem;
}

.choice-card-included-item {
    display: flex;
    align-items: flex-start;
    gap: 0.38rem;
    color: var(--muted);
    font-size: 0.78rem;
    line-height: 1.35;
}

.choice-card-included-item::before {
    width: 0.34rem;
    height: 0.34rem;
    flex: 0 0 auto;
    margin-top: 0.34rem;
    border-radius: 50%;
    background: var(--gold);
    content: "";
}

.choice-card-included + .choice-card-included {
    margin-top: 0.6rem;
    padding-top: 0.6rem;
    border-top: 1px solid var(--line-soft);
}

.choice-card-price {
    display: grid;
    gap: 0.22rem;
    justify-items: end;
    min-width: 7.2rem;
    color: var(--navy-800);
    text-align: right;
}

.choice-card-price strong {
    font-size: 1.05rem;
}

.choice-card-price span {
    color: var(--muted);
    font-size: 0.74rem;
    line-height: 1.35;
}

.choice-card-price.product-price {
    max-width: 10rem;
}

.choice-card-check {
    position: absolute;
    top: -0.7rem;
    right: -0.7rem;
    display: none;
    width: 1.8rem;
    height: 1.8rem;
    align-items: center;
    justify-content: center;
    border: 3px solid var(--white);
    border-radius: 50%;
    background: var(--gold);
    color: var(--navy-950);
    box-shadow: 0 4px 12px rgba(11, 31, 51, 0.22);
}

.choice-card-check svg {
    width: 1rem;
    height: 1rem;
    fill: none;
    stroke: currentColor;
    stroke-width: 3;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.choice-card.is-selected .choice-card-check {
    display: inline-flex;
}

.product-none-choice {
    grid-template-columns: 5.5rem minmax(0, 1fr);
}

.quantity-panel,
.product-quantity-panel,
.product-detail-panel {
    margin-top: 1rem;
    padding: 1rem;
    border: 1px solid var(--line-soft);
    border-radius: 14px;
    background: var(--surface);
}

.quantity-panel label {
    display: block;
    color: var(--navy-800);
    font-weight: 800;
}

.quantity-select-wrap {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 0.8rem;
    align-items: center;
    margin-top: 0.65rem;
}

.quantity-select-wrap select {
    width: 100%;
    min-height: 3rem;
    padding: 0.65rem 2.5rem 0.65rem 0.8rem;
    border: 1px solid var(--line);
    border-radius: 10px;
    background: var(--white);
    color: var(--navy-800);
    font: 700 1rem var(--body);
}

.quantity-select-wrap > span {
    color: var(--navy-800);
    font-family: var(--heading);
    font-size: 1.55rem;
    font-weight: 800;
}

.quantity-panel p {
    color: var(--muted);
    font-size: 0.86rem;
    line-height: 1.5;
}

.quantity-panel p {
    margin: 0.65rem 0 0;
}

.product-quantity-panel h3,
.product-detail-panel h3 {
    margin: 0;
    color: var(--navy-800);
    font-family: var(--heading);
    font-size: 1.4rem;
    font-weight: 800;
}

.product-quantity-panel > p,
.product-detail-panel > p,
.product-pricing-policy {
    margin: 0.7rem 0 0;
    color: var(--muted);
    font-size: 0.86rem;
    line-height: 1.5;
}

.product-quantity-row {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 5.5rem;
    gap: 0.85rem;
    align-items: center;
    margin-top: 0.75rem;
    color: var(--navy-800);
    font-weight: 800;
}

.product-quantity-row > span,
.product-quantity-row > span strong,
.product-quantity-row > span small {
    display: block;
}

.product-pricing-breakdown {
    display: grid !important;
    gap: 0.18rem;
}

.product-pricing-breakdown > span {
    display: block;
}

.product-pricing-breakdown b {
    color: var(--navy-700);
    font-weight: 800;
}

.product-quantity-row > span small {
    margin-top: 0.2rem;
    color: var(--muted);
    font-size: 0.78rem;
    font-weight: 600;
    line-height: 1.35;
}

.product-quantity-row select {
    width: 100%;
    min-height: 2.8rem;
    padding: 0.55rem 0.75rem;
    border: 1px solid var(--line);
    border-radius: 10px;
    background: var(--white);
    color: var(--navy-800);
    font: 800 1rem var(--body);
}

.product-pricing-policy {
    padding: 0.85rem 1rem;
    border: 1px solid var(--line);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.72);
}

.product-pricing-policy strong {
    display: block;
    color: var(--navy-800);
}

.product-pricing-policy ol {
    display: grid;
    gap: 0.35rem;
    margin: 0.55rem 0 0;
    padding-left: 1.25rem;
}

.product-pricing-policy li {
    padding-left: 0.15rem;
}

.step-actions {
    margin-top: 1rem;
}

.step-actions.has-back {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.75rem;
}

.step-actions > .continue-button,
.step-actions > .back-button {
    margin-top: 0;
}

.back-button {
    display: inline-flex;
    width: 100%;
    min-height: 3.4rem;
    align-items: center;
    justify-content: center;
    gap: 0.55rem;
    border: 1px solid var(--navy-800);
    border-radius: 12px;
    background: var(--white);
    color: var(--navy-800);
    font: 800 1rem var(--body);
    cursor: pointer;
    box-shadow: 0 5px 0 #c7cbd0, 0 10px 18px rgba(11, 31, 51, 0.09);
}

.back-button:active {
    transform: translateY(3px);
    box-shadow: 0 2px 0 #c7cbd0, 0 5px 10px rgba(11, 31, 51, 0.08);
}

.back-button svg {
    width: 1rem;
    height: 1rem;
    fill: none;
    stroke: currentColor;
    stroke-width: 2.4;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.review-back-actions {
    grid-template-columns: minmax(7rem, 11rem);
}

.continue-button,
.primary-action,
.secondary-action {
    display: inline-flex;
    min-height: 3.4rem;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    margin-top: 1rem;
    border-radius: 12px;
    font-weight: 800;
    cursor: pointer;
    text-decoration: none;
}

.continue-button,
.primary-action {
    width: 100%;
    border: 1px solid var(--gold);
    background: var(--gold);
    color: var(--navy-950);
    box-shadow: 0 8px 0 #9d7c19, 0 15px 24px rgba(11, 31, 51, 0.13);
}

.continue-button:disabled {
    border-color: #d2d4d7;
    background: #e3e4e6;
    color: #8b8f94;
    box-shadow: none;
    cursor: not-allowed;
}

.continue-button:not(:disabled):active,
.primary-action:active {
    transform: translateY(4px);
    box-shadow: 0 4px 0 #9d7c19, 0 8px 15px rgba(11, 31, 51, 0.12);
}

.continue-button svg,
.primary-action svg {
    width: 1rem;
    height: 1rem;
    fill: none;
    stroke: currentColor;
    stroke-width: 2.4;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.review-card {
    padding: 1.35rem;
    border: 1px solid var(--line-soft);
    border-radius: 20px;
    background: var(--surface);
}

.review-title-row {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #d7d9dc;
}

.review-label {
    display: block;
    margin-bottom: 0.3rem;
    color: var(--gold);
    font-size: 0.74rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.review-title-row h3 {
    margin: 0;
    color: var(--navy-800);
    font-family: var(--heading);
    font-size: 1.9rem;
}

.review-check {
    display: inline-flex;
    width: 2rem;
    height: 2rem;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--navy-800);
    color: var(--gold-bright);
}

.review-check svg {
    width: 1.05rem;
    height: 1.05rem;
    fill: none;
    stroke: currentColor;
    stroke-width: 2.6;
}

.review-row,
.review-total-row {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 1rem;
    align-items: center;
    padding: 1rem 0;
    border-bottom: 1px solid #d7d9dc;
}

.review-totals[hidden] {
    display: none;
}

.review-row strong,
.review-row span {
    display: block;
}

.review-row strong {
    color: var(--navy-800);
}

.review-row span {
    margin-top: 0.25rem;
    color: var(--muted);
    font-size: 0.82rem;
}

.review-row-price {
    color: var(--navy-800);
    font-weight: 800;
    text-align: right;
    white-space: nowrap;
}

.review-row-price small {
    display: block;
    margin-top: 0.2rem;
    color: var(--muted);
    font-size: 0.7rem;
    font-weight: 600;
}

.review-totals {
    margin-top: 0.5rem;
}

.review-total-row {
    padding: 0.8rem 0;
    color: var(--navy-800);
    font-weight: 800;
}

.review-total-row:last-child {
    border-bottom: 0;
}

.review-total-row > span small {
    display: block;
    margin-top: 0.18rem;
    color: var(--muted);
    font-size: 0.7rem;
    font-weight: 600;
}

.review-total-row.is-grand-total {
    margin-top: 0.35rem;
    padding: 1rem;
    border: 1px solid rgba(201, 162, 39, 0.45);
    border-radius: 12px;
    background: var(--gold-soft);
}

.review-total-row strong {
    font-family: var(--heading);
    font-size: 1.55rem;
}

.review-total-row.is-grand-total strong {
    font-size: 2rem;
}

.review-empty,
.product-pricing-note {
    margin-top: 1rem;
    padding: 0.9rem 1rem;
    border-radius: 12px;
    color: var(--navy-800);
    font-size: 0.88rem;
    line-height: 1.55;
}

.review-empty {
    background: var(--white);
}

.product-pricing-note {
    border: 1px solid rgba(201, 162, 39, 0.35);
    background: var(--gold-soft);
}

.review-actions {
    display: grid;
    gap: 1rem;
    margin-top: 1rem;
}

.review-actions[hidden] {
    display: none;
}

.review-actions .primary-action,
.review-actions .secondary-action {
    margin-top: 0;
}

.review-actions .primary-action {
    border-color: var(--navy-700);
    background: var(--navy-700);
    color: var(--white);
    box-shadow: 0 8px 0 var(--navy-950), 0 15px 24px rgba(11, 31, 51, 0.13);
}

.review-actions .primary-action:active {
    box-shadow: 0 4px 0 var(--navy-950), 0 8px 15px rgba(11, 31, 51, 0.12);
}

.review-actions .review-action-icon {
    width: 1.5rem;
    height: 1.5rem;
    flex: 0 0 auto;
    fill: currentColor;
    stroke: none;
}

.request-form {
    display: grid;
    gap: 1rem;
    margin-top: 1.25rem;
    padding: 1.25rem;
    border: 1px solid var(--line-soft);
    border-radius: 18px;
    background: var(--white);
    box-shadow: var(--shadow-card);
}

.request-form[hidden] {
    display: none;
}

.request-form-heading h3 {
    margin: 0;
    color: var(--navy-800);
    font-family: var(--heading);
    font-size: 1.8rem;
    line-height: 1.05;
}

.request-form-heading p {
    margin: 0.4rem 0 0;
    color: var(--muted);
    font-size: 0.88rem;
    line-height: 1.5;
}

.request-fields {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.85rem;
}

.request-fields label {
    display: grid;
    gap: 0.4rem;
    color: var(--navy-800);
    font-size: 0.82rem;
    font-weight: 800;
}

.request-fields input {
    width: 100%;
    min-height: 3rem;
    padding: 0.7rem 0.8rem;
    border: 1px solid var(--line);
    border-radius: 10px;
    background: var(--white);
    color: var(--ink);
    font: 500 1rem var(--body);
}

.request-fields input:focus {
    border-color: var(--gold);
    outline: 3px solid rgba(201, 162, 39, 0.18);
}

.request-terms {
    display: grid;
    gap: 0.8rem;
    padding: 1rem;
    border: 1px solid var(--line-soft);
    border-radius: 12px;
    background: var(--surface);
}

.request-terms-review {
    width: fit-content;
    border: 0;
    background: transparent;
    color: var(--navy-800);
    font: 800 0.95rem var(--body);
    text-decoration: underline;
    cursor: pointer;
}

.request-terms label {
    display: flex;
    gap: 0.65rem;
    align-items: flex-start;
    color: var(--ink);
    font-size: 0.9rem;
    line-height: 1.45;
}

.request-terms input {
    width: 1.1rem;
    height: 1.1rem;
    flex: 0 0 auto;
    margin-top: 0.12rem;
}

.request-terms-dialog {
    width: min(calc(100% - 2rem), 54rem);
    max-height: min(86vh, 56rem);
    padding: 0;
    border: 0;
    border-radius: 18px;
    background: var(--white);
    box-shadow: 0 24px 70px rgba(5, 18, 31, 0.28);
}

.request-terms-dialog::backdrop {
    background: rgba(5, 18, 31, 0.72);
}

.request-terms-dialog-header {
    position: sticky;
    top: 0;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1rem 1.25rem;
    border-bottom: 1px solid var(--line-soft);
    background: var(--white);
}

.request-terms-dialog-header h3 {
    margin: 0;
    color: var(--navy-800);
    font-family: var(--heading);
    font-size: 1.6rem;
}

.request-terms-dialog-header button {
    width: 2.5rem;
    height: 2.5rem;
    border: 0;
    border-radius: 50%;
    background: var(--navy-800);
    color: var(--white);
    font-size: 1.7rem;
    line-height: 1;
    cursor: pointer;
}

.request-terms-content {
    padding: 1.25rem;
    overflow-wrap: anywhere;
}

.request-honeypot {
    position: absolute !important;
    left: -10000px !important;
    width: 1px !important;
    height: 1px !important;
    overflow: hidden !important;
}

.request-submit {
    display: inline-flex;
    width: 100%;
    min-height: 3.5rem;
    align-items: center;
    justify-content: center;
    gap: 0.65rem;
    border: 1px solid var(--gold);
    border-radius: 12px;
    background: var(--gold);
    color: var(--navy-950);
    box-shadow: 0 8px 0 #9d7c19, 0 15px 24px rgba(11, 31, 51, 0.13);
    font: 800 1rem var(--body);
    cursor: pointer;
}

.review-actions .primary-action,
.review-actions .secondary-action {
    width: 100%;
    min-height: 3.5rem;
    gap: 0.65rem;
    font: 800 1rem var(--body);
}

.request-submit img {
    width: 1.5rem;
    height: 1.5rem;
    object-fit: contain;
}

.request-submit:disabled {
    opacity: 0.62;
    cursor: wait;
}

.purchase-now-button {
    margin-top: 1.25rem;
}

.purchase-now-button[hidden] {
    display: none;
}

.request-status {
    margin: 1rem 0 0;
    padding: 0;
    color: var(--muted);
    font-weight: 700;
    line-height: 1.5;
    text-align: center;
}

.request-status:empty {
    display: none;
}

.request-status.is-success,
.request-status.is-error,
.request-status.is-pending {
    padding: 0.9rem 1rem;
    border-radius: 12px;
}

.request-status.is-success {
    border: 1px solid #7bb98a;
    background: #edf8f0;
    color: #1f6030;
}

.request-status.is-error {
    border: 1px solid #db8d8d;
    background: #fff1f1;
    color: #8a2525;
}

.request-status.is-pending {
    background: var(--surface);
    color: var(--navy-800);
}

.secondary-action {
    width: 100%;
    border: 2px solid var(--navy-800);
    background: var(--white);
    color: var(--navy-800);
}

.demo-toast {
    position: fixed;
    right: 1.2rem;
    bottom: 1.2rem;
    z-index: 200;
    max-width: min(24rem, calc(100% - 2.4rem));
    padding: 0.9rem 1rem;
    border-radius: 12px;
    background: var(--navy-900);
    color: var(--white);
    box-shadow: var(--shadow-soft);
    font-weight: 700;
}

.schedule-error,
.schedule-empty {
    margin: 0 0 1rem;
    color: #8a1c1c;
    font-weight: 700;
}

.schedule-selection-panel {
    display: grid;
    gap: 0.9rem;
    margin-bottom: 1.4rem;
}

.schedule-selection-panel h3 {
    margin: 0;
    color: var(--navy-800);
    font-family: var(--heading);
    font-size: 1.45rem;
    font-weight: 800;
}

.schedule-target-grid {
    display: grid;
    gap: 0.7rem;
}

.schedule-target {
    display: grid;
    gap: 0.25rem;
    width: 100%;
    padding: 0.9rem 1rem;
    border: 1px solid var(--line);
    border-radius: 12px;
    background: var(--white);
    color: var(--navy-800);
    text-align: left;
    cursor: pointer;
}

.schedule-target strong {
    font-size: 1.02rem;
}

.schedule-target span {
    color: var(--muted);
    line-height: 1.4;
}

.schedule-target:hover,
.schedule-target.is-selected {
    border-color: var(--gold);
    background: var(--gold-soft);
    box-shadow: 0 3px 0 rgba(201, 162, 39, 0.3);
}

.schedule-unit-field {
    display: grid;
    gap: 0.45rem;
    padding: 1rem;
    border-radius: 12px;
    background: var(--surface);
    color: var(--navy-800);
    font-weight: 800;
}

.schedule-unit-field input {
    width: min(100%, 12rem);
    min-height: 3rem;
    padding: 0.55rem 0.75rem;
    border: 1px solid var(--line);
    border-radius: 9px;
    background: var(--white);
    color: var(--navy-800);
    font: inherit;
    text-align: center;
}

.schedule-unit-field small {
    color: var(--muted);
    font-weight: 600;
}

.schedule-loader {
    display: flex;
    min-height: 8rem;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    color: var(--navy-800);
}

.schedule-spinner {
    width: 2rem;
    height: 2rem;
    border: 3px solid rgba(27, 58, 87, 0.18);
    border-top-color: var(--gold);
    border-radius: 50%;
    animation: schedule-spin 0.85s linear infinite;
}

@keyframes schedule-spin {
    to { transform: rotate(360deg); }
}

.schedule-calendar-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
}

.schedule-month {
    padding: 1rem;
    border: 1px solid var(--line-soft);
    border-radius: 15px;
    background: var(--white);
    box-shadow: var(--shadow-card);
}

.schedule-month h3,
.schedule-time-section h3 {
    margin: 0 0 0.85rem;
    color: var(--navy-800);
    font-family: var(--heading);
    font-size: 1.55rem;
    font-weight: 800;
    line-height: 1.05;
}

.schedule-weekdays,
.schedule-calendar-grid {
    display: grid;
    grid-template-columns: repeat(7, minmax(0, 1fr));
    gap: 0.3rem;
}

.schedule-weekdays {
    margin-bottom: 0.35rem;
    color: var(--muted);
    font-size: 0.7rem;
    font-weight: 800;
    text-align: center;
    text-transform: uppercase;
}

.schedule-date {
    display: inline-flex;
    min-width: 0;
    aspect-ratio: 1;
    align-items: center;
    justify-content: center;
    padding: 0;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--white);
    color: var(--navy-800);
    font-weight: 800;
    cursor: pointer;
}

.schedule-date:hover:not(:disabled),
.schedule-date.is-selected {
    border-color: var(--gold);
    background: var(--gold-soft);
    box-shadow: 0 3px 0 rgba(201, 162, 39, 0.3);
}

.schedule-date:disabled {
    border-color: transparent;
    background: #f0f1f2;
    color: #a7aaae;
    cursor: not-allowed;
}

.schedule-time-section {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--line-soft);
}

.schedule-time-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0.65rem;
}

.schedule-time {
    min-height: 2.85rem;
    padding: 0.55rem;
    border: 1px solid var(--line);
    border-radius: 9px;
    background: var(--white);
    color: var(--navy-800);
    font-weight: 800;
    cursor: pointer;
}

.schedule-time:hover,
.schedule-time.is-selected {
    border-color: var(--gold);
    background: var(--gold-soft);
    box-shadow: 0 3px 0 rgba(201, 162, 39, 0.3);
}

@media (max-width: 1280px) {
    .site-nav {
        padding-right: 2rem;
        padding-left: 2rem;
    }

    .nav-label-desktop {
        display: none;
    }

    .nav-label-tablet {
        display: inline;
    }

    .nav-button {
        padding: 0.65rem 1rem;
        font-size: 0.9rem;
    }
}

@media (max-width: 980px) {
    .nav-actions {
        justify-content: flex-end;
    }

    .configurator-layout {
        gap: 2.5rem;
    }

    .plan-canvas {
        position: relative;
        top: auto;
        min-height: 0;
    }

    .configuration-column {
        width: min(100%, 44rem);
        margin: 0 auto;
    }

}

@media (max-width: 680px) {
    html {
        scroll-padding-top: 5.6rem;
    }

    .site-nav {
        gap: 0.55rem;
        padding: 0.75rem 1rem;
    }

    .brand-link img {
        height: 3.35rem;
    }

    .nav-actions {
        flex: 1 1 auto;
        justify-content: flex-end;
        gap: 0.45rem;
    }

    .nav-button {
        flex: 1 1 0;
        min-width: 0;
        max-width: 11rem;
        padding: 0.58rem 0.75rem;
        font-size: 0.82rem;
    }

    .configurator-layout {
        padding-top: 1rem;
        padding-bottom: 3rem;
    }

    .plan-canvas {
        min-height: 0;
        padding: 1.2rem;
        border-radius: 22px;
    }

    .plan-copy h1 {
        font-size: 2.35rem;
    }

    .plan-copy > p:last-child {
        font-size: 0.86rem;
    }

    .section-heading h2 {
        font-size: 2.35rem;
    }

    .choice-card {
        grid-template-columns: 4.6rem minmax(0, 1fr);
        gap: 0.8rem;
        padding: 1rem;
    }

    .choice-card.is-selected {
        padding: calc(1rem - 2px);
    }

    .choice-card-media {
        width: 4.6rem;
    }

    .choice-card-title {
        font-size: 1.4rem;
    }

    .choice-card-price {
        grid-column: 2;
        justify-self: start;
        min-width: 0;
        text-align: left;
    }

    .choice-card-price {
        display: flex;
        align-items: baseline;
        gap: 0.45rem;
        margin-top: -0.25rem;
    }

    .choice-card-price.product-price {
        max-width: none;
    }

    .choice-card-check {
        right: -0.45rem;
    }

    .schedule-calendar-list {
        grid-template-columns: minmax(0, 1fr);
    }

    .request-fields {
        grid-template-columns: minmax(0, 1fr);
    }

    .review-row {
        grid-template-columns: minmax(0, 1fr);
        gap: 0.45rem;
        align-items: start;
    }

    .review-row-price {
        text-align: left;
        white-space: normal;
    }

    .review-row-price span {
        margin-top: 0;
    }

    .review-total-row {
        gap: 0.75rem;
    }

}

@media (max-width: 640px) {
    .nav-actions {
        flex: 0 1 auto;
    }

    .nav-button {
        width: 46px;
        min-width: 46px;
        max-width: 46px;
        height: 46px;
        padding: 0.5rem;
        flex: 0 0 46px;
        gap: 0;
    }

    .nav-button svg {
        width: 1.15rem;
        height: 1.15rem;
    }

    .nav-button .nav-label {
        display: none;
    }
}

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

    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;
        transition-duration: 0.01ms !important;
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
    }
}

/* Multi-service and product scheduling */
.choice-card {
    align-items: start;
}

.choice-card-copy {
    align-self: start;
    padding-top: 0.15rem;
}

.choice-card-title-row {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 0.45rem;
}

.choice-card-title-row strong {
    color: var(--navy-800);
    font-family: var(--heading);
    font-size: 1.45rem;
    font-weight: 800;
    line-height: 1;
}

.choice-card-title-row .choice-card-price {
    display: block;
    min-width: auto;
    color: var(--navy-800);
    font: 800 1rem var(--body);
    white-space: nowrap;
}

.choice-card-copy > span:last-of-type {
    display: block;
    color: var(--muted);
    font-size: 0.88rem;
    line-height: 1.5;
}

.service-choice .choice-card-tier-badge {
    width: 2.17rem;
    height: 2.17rem;
}

.no-product-media {
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.no-product-media svg {
    width: 2.2rem;
    fill: none;
    stroke: var(--navy-700);
    stroke-width: 1.8;
}

.quantity-card {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 0.8rem 1rem;
    align-items: center;
    margin-top: 1rem;
    padding: 1rem;
    border: 1px solid var(--line-soft);
    border-radius: 14px;
    background: var(--surface);
}

.quantity-card label,
.quantity-card > div > label {
    color: var(--navy-800);
    font-weight: 800;
}

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

.quantity-card select,
.schedule-field select,
.schedule-field input {
    min-height: 3rem;
    padding: 0.62rem 0.75rem;
    border: 1px solid var(--line);
    border-radius: 10px;
    background: var(--white);
    color: var(--navy-800);
    font: 700 0.95rem var(--body);
}

.quantity-card select:focus,
.schedule-field select:focus,
.schedule-field input:focus {
    border-color: var(--gold);
    outline: 3px solid rgba(201, 162, 39, 0.16);
}

.product-quantity-list {
    display: grid;
    gap: 0.8rem;
}

.included-items {
    grid-column: 1 / -1;
    padding-top: 0.8rem;
    border-top: 1px solid var(--line-soft);
}

.included-items strong {
    color: var(--navy-800);
}

.included-items ul {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.35rem 1.25rem;
    margin: 0.5rem 0 0;
    padding-left: 1.2rem;
    color: var(--muted);
    font-size: 0.82rem;
    line-height: 1.42;
}

.service-package-summary {
    grid-column: 1 / -1;
}

.auto-package-summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1rem;
    border: 1px solid rgba(201, 162, 39, 0.42);
    border-radius: 14px;
    background: var(--gold-soft);
}

.auto-package-summary strong,
.auto-package-summary > span {
    color: var(--navy-800);
    font-family: var(--heading);
    font-size: 1.25rem;
    font-weight: 800;
}

.auto-package-summary p {
    margin: 0.35rem 0 0;
    color: var(--muted);
    font-size: 0.84rem;
    line-height: 1.5;
}

.auto-package-summary > span {
    flex: 0 0 auto;
    font-size: 1.4rem;
}

.subservice-choice-list {
    display: grid;
    gap: 0.75rem;
}

.category-choice-groups {
    display: grid;
    gap: 1.5rem;
}

.category-choice-group {
    min-width: 0;
    margin: 0;
    padding: 0;
    border: 0;
}

.category-choice-group legend {
    margin-bottom: 0.75rem;
    padding: 0;
    color: var(--navy-800);
    font-family: var(--heading);
    font-size: 1.55rem;
    font-weight: 800;
    line-height: 1;
}

.category-choice-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.75rem;
}

.subservice-choice {
    position: relative;
    display: grid;
    grid-template-columns: 5.5rem minmax(0, 1fr);
    width: 100%;
    min-height: 5.25rem;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem 3.5rem 1rem 1rem;
    border: 1px solid var(--line);
    border-radius: 14px;
    background: var(--white);
    color: var(--navy-800);
    text-align: left;
    cursor: pointer;
    transition: border-color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.subservice-choice .choice-card-media {
    grid-row: 1;
}

.subservice-choice-copy {
    min-width: 0;
    align-self: center;
    padding-top: 0.1rem;
}

.subservice-choice:hover,
.subservice-choice:focus-visible {
    border-color: var(--gold);
}

.subservice-choice.is-selected {
    border-color: var(--gold);
    background: var(--gold-soft);
    box-shadow: 0 0 0 1px rgba(201, 162, 39, 0.12);
}

.subservice-choice strong,
.subservice-choice small {
    display: block;
}

.subservice-choice strong {
    font-family: var(--heading);
    font-size: 1.25rem;
    line-height: 1.1;
}

.subservice-choice-title {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.heavy-only-pill {
    display: inline-flex;
    min-height: 1.45rem;
    align-items: center;
    padding: 0.15rem 0.5rem;
    border: 1px solid #aeb3b8;
    border-radius: 999px;
    background: #e9ebed;
    color: #555b61;
    font-size: 0.68rem;
    font-weight: 800;
    letter-spacing: 0.04em;
    line-height: 1;
    text-transform: uppercase;
}

.subservice-choice small {
    margin-top: 0.35rem;
    color: var(--muted);
    font-size: 0.86rem;
    line-height: 1.5;
}

.subservice-choice .choice-card-check {
    top: 50%;
    right: 1rem;
    transform: translateY(-50%);
}

.subservice-choice.is-selected .choice-card-check {
    display: inline-flex;
}

.subservice-choice.is-heavy-only {
    border-color: #d4d6d8;
    background: #f1f2f3;
    color: #686d72;
    cursor: not-allowed;
}

.subservice-choice.is-heavy-only:hover,
.subservice-choice.is-heavy-only:focus-visible {
    border-color: #d4d6d8;
    box-shadow: none;
}

.subservice-choice.is-heavy-only .choice-card-media {
    opacity: 0.62;
    filter: grayscale(1);
}

.subservice-choice.is-heavy-only small {
    color: #767b80;
}

.package-requirement {
    grid-column: 1 / -1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 0.85rem 0.9rem;
    border: 1px solid #d9a3a3;
    border-radius: 10px;
    background: #fff1f1;
}

.package-requirement strong {
    color: #7a2020;
}

.package-requirement p {
    color: #7a2020;
}

.package-requirement button,
.package-requirement a {
    flex: 0 0 auto;
    min-height: 2.7rem;
    padding: 0.6rem 0.85rem;
    border: 1px solid #7a2020;
    border-radius: 9px;
    background: #7a2020;
    color: var(--white);
    font: 800 0.82rem var(--body);
    text-decoration: none;
    cursor: pointer;
}

.schedule-family {
    display: grid;
    gap: 1rem;
    margin-top: 1.25rem;
    padding: 0;
    border: 0;
    background: transparent;
}

.schedule-family + .schedule-family {
    margin-top: 1rem;
}

.schedule-family-heading,
.schedule-builder-heading {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 1rem;
}

.schedule-family-heading span,
.schedule-builder-number {
    display: block;
    color: var(--gold);
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.schedule-family-heading h3,
.schedule-builder-heading h4 {
    margin: 0.18rem 0 0;
    color: var(--navy-800);
    font-family: var(--heading);
    font-size: 1.65rem;
    font-weight: 800;
    line-height: 1;
}

.setup-service-identity {
    display: grid;
    grid-template-columns: 5.5rem minmax(0, 1fr);
    gap: 1rem;
    align-items: start;
    min-width: 0;
}

.setup-service-identity .choice-card-media {
    width: 5.5rem;
}

.setup-service-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 17rem), 1fr));
    gap: 0.8rem;
}

.setup-service-identity--compact {
    padding: 0.8rem;
    border: 1px solid var(--line);
    border-radius: 14px;
    background: var(--white);
}

.setup-service-identity--compact h4 {
    margin: 0.18rem 0 0;
    color: var(--navy-800);
    font-family: var(--heading);
    font-size: 1.35rem;
    font-weight: 800;
    line-height: 1;
}

.schedule-family-heading p {
    max-width: 35rem;
    margin: 0.45rem 0 0;
    color: var(--muted);
    font-size: 0.84rem;
    line-height: 1.5;
}

.add-plan-button,
.remove-plan,
.duplicate-plan-button {
    min-height: 2.5rem;
    padding: 0.5rem 0.8rem;
    border: 1px solid var(--navy-800);
    border-radius: 9px;
    background: var(--white);
    color: var(--navy-800);
    font: 800 0.8rem var(--body);
    cursor: pointer;
}

.remove-plan {
    border-color: #c9cbce;
    color: #6c3131;
}

.duplicate-plan-button {
    border-color: var(--gold);
    background: var(--gold-soft);
}

.schedule-builder-card {
    display: grid;
    gap: 1rem;
    padding: 1rem;
    border: 1px solid var(--line);
    border-radius: 14px;
    background: var(--white);
    box-shadow: 0 8px 20px rgba(11, 31, 51, 0.05);
}

.schedule-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.8rem;
}

.service-time-row {
    grid-template-columns: minmax(0, 1.35fr) repeat(2, minmax(0, 1fr));
    align-items: end;
}

.schedule-field {
    display: grid;
    gap: 0.38rem;
    min-width: 0;
    color: var(--navy-800);
    font-size: 1.2rem;
    font-weight: 800;
}

.schedule-readonly-field output {
    display: flex;
    min-height: 3rem;
    align-items: center;
    padding: 0.7rem 0.8rem;
    border: 1px solid var(--line);
    border-radius: 10px;
    background: #f7f8f9;
    color: var(--navy-800);
    font-family: var(--body);
    font-size: 0.95rem;
    font-weight: 800;
}

.service-setup-section .schedule-field > span,
.service-setup-section .schedule-field > label,
.service-setup-section .weekday-picker legend {
    color: var(--navy-800);
    font-family: var(--heading);
    font-size: 1.2rem;
    font-weight: 800;
    line-height: 1.15;
}

.address-search-field {
    position: relative;
}

.address-suggestions {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 0.45rem;
    width: 100%;
}

.address-suggestions[hidden] {
    display: none;
}

.address-suggestion-option {
    display: grid;
    width: 100%;
    gap: 0.2rem;
    padding: 0.72rem 0.8rem;
    border: 1px solid var(--line);
    border-radius: 10px;
    background: var(--white);
    color: var(--navy-800);
    text-align: left;
    cursor: pointer;
}

.address-suggestion-option:hover,
.address-suggestion-option:focus-visible {
    border-color: var(--gold);
    background: var(--gold-soft);
    outline: 0;
}

.address-suggestion-option strong,
.address-suggestion-option span {
    display: block;
}

.address-suggestion-option span,
.address-feedback,
.address-status {
    color: var(--muted);
    font-size: 0.8rem;
    line-height: 1.4;
}

.address-feedback {
    padding: 0.7rem 0.8rem;
    border: 1px solid var(--line-soft);
    border-radius: 10px;
    background: var(--surface);
}

.address-status.is-verified {
    color: #24633c;
}

.address-status.is-error {
    color: #8a2525;
}

.service-price-calculation {
    display: grid;
    gap: 0.65rem;
    padding: 0.9rem 1rem;
    border: 1px solid rgba(201, 162, 39, 0.42);
    border-radius: 12px;
    background: var(--gold-soft);
}

.service-price-calculation > strong,
.service-price-heading strong {
    color: var(--navy-800);
    font-family: var(--heading);
    font-size: 1.2rem;
}

.service-price-heading,
.service-price-calculation dl > div,
.service-price-total {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 1rem;
}

.service-price-heading span,
.service-price-calculation dd,
.service-price-total strong {
    color: var(--navy-800);
    font-weight: 800;
    white-space: nowrap;
}

.service-price-calculation dl {
    display: grid;
    gap: 0.45rem;
    margin: 0;
}

.service-price-calculation dt,
.service-price-calculation dd {
    margin: 0;
}

.service-price-calculation dt {
    color: var(--muted);
    font-size: 0.84rem;
    line-height: 1.4;
}

.service-price-calculation .is-deduction dt,
.service-price-calculation .is-deduction dd {
    color: #24633c;
    font-weight: 800;
}

.service-price-total {
    padding-top: 0.65rem;
    border-top: 1px solid rgba(201, 162, 39, 0.4);
    color: var(--navy-800);
    font-weight: 800;
}

.service-price-total strong {
    font-family: var(--heading);
    font-size: 1.35rem;
}

.schedule-fact {
    display: grid;
    min-height: 3rem;
    align-content: center;
    gap: 0.25rem;
    padding: 0.62rem 0.75rem;
    border: 1px solid var(--line-soft);
    border-radius: 10px;
    background: #f7f8f9;
}

.schedule-fact span {
    color: var(--muted);
    font-size: 0.72rem;
    font-weight: 800;
}

.schedule-fact strong {
    color: var(--navy-800);
    font-size: 0.95rem;
}

.schedule-address-field,
.setup-address {
    grid-column: 1 / -1;
}

.schedule-mode {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.7rem;
}

.schedule-mode label {
    position: relative;
    display: flex;
    min-height: 3rem;
    align-items: center;
    padding: 0.7rem 0.85rem;
    border: 1px solid var(--line);
    border-radius: 10px;
    background: var(--white);
    color: var(--navy-800);
    font-weight: 800;
    cursor: pointer;
}

.schedule-mode label:has(input:checked) {
    border-color: var(--gold);
    background: var(--gold-soft);
}

.schedule-mode input {
    margin-right: 0.55rem;
    accent-color: var(--gold);
}

.recurrence-period-field {
    max-width: 24rem;
}

.recurrence-status,
.recurrence-conflicts {
    display: grid;
    gap: 0.75rem;
    padding: 0.9rem 1rem;
    border: 1px solid var(--line);
    border-radius: 12px;
    background: var(--surface);
    color: var(--navy-800);
}

.recurrence-status span,
.recurrence-conflicts-heading span {
    color: var(--muted);
    font-size: 0.82rem;
    line-height: 1.45;
}

.recurrence-status.is-ready {
    border-color: #9bbfa8;
    background: #f1faf4;
}

.recurrence-conflicts-heading {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 1rem;
}

.recurrence-conflicts-heading strong,
.recurrence-conflicts-heading span {
    display: block;
}

.recurrence-conflicts-heading button {
    flex: 0 0 auto;
    min-height: 2.5rem;
    padding: 0.55rem 0.8rem;
    border: 1px solid var(--navy-800);
    border-radius: 9px;
    background: var(--navy-800);
    color: var(--white);
    font: 800 0.78rem var(--body);
    cursor: pointer;
}

.recurrence-conflicts-heading button:disabled {
    cursor: default;
    opacity: 0.7;
}

.recurrence-skip-summary {
    display: grid;
    gap: 0.2rem;
    padding: 0.75rem 0.85rem;
    border: 1px solid #9bbfa8;
    border-radius: 10px;
    background: #f1faf4;
    color: #24633c;
}

.recurrence-skip-summary span {
    font-size: 0.82rem;
    line-height: 1.4;
}

.recurrence-conflict {
    display: flex;
    flex-wrap: wrap;
    gap: 0.55rem;
    margin: 0;
    padding: 0.85rem;
    border: 1px solid var(--line-soft);
    border-radius: 10px;
    background: var(--white);
}

.recurrence-conflict.is-skipped {
    border-color: #9bbfa8;
    background: #f1faf4;
}

.recurrence-conflict legend {
    width: 100%;
    margin-bottom: 0.25rem;
    color: var(--navy-800);
    font-weight: 800;
}

.recurrence-skipped-pill {
    display: inline-flex;
    margin-left: 0.55rem;
    padding: 0.25rem 0.45rem;
    border-radius: 999px;
    background: #24633c;
    color: var(--white);
    font-size: 0.68rem;
    line-height: 1;
    vertical-align: middle;
}

.recurrence-conflict label {
    position: relative;
    cursor: pointer;
}

.recurrence-conflict input {
    position: absolute;
    opacity: 0;
}

.recurrence-conflict span {
    display: flex;
    min-height: 2.5rem;
    align-items: center;
    padding: 0.55rem 0.75rem;
    border: 1px solid var(--line);
    border-radius: 9px;
    color: var(--navy-800);
    font-size: 0.8rem;
    font-weight: 800;
}

.recurrence-conflict input:checked + span {
    border-color: var(--gold);
    background: var(--gold-soft);
}

.schedule-question {
    display: grid;
    gap: 0.3rem;
    padding-top: 0.15rem;
}

.schedule-question h5 {
    margin: 0;
    color: var(--navy-800);
    font-family: var(--heading);
    font-size: 1.2rem;
    font-weight: 800;
}

.schedule-question p {
    margin: 0;
    color: var(--muted);
    font-size: 0.84rem;
    line-height: 1.5;
}

.weekday-picker {
    margin: 0;
    padding: 0;
    border: 0;
}

.weekday-picker legend {
    margin-bottom: 0.45rem;
    color: var(--navy-800);
    font-size: 1.2rem;
    font-weight: 800;
}

.weekday-picker > div {
    display: grid;
    grid-template-columns: repeat(7, minmax(0, 1fr));
    gap: 0.4rem;
}

.weekday-picker label {
    position: relative;
    cursor: pointer;
}

.weekday-picker input {
    position: absolute;
    opacity: 0;
}

.weekday-picker span {
    display: flex;
    min-height: 2.65rem;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--line);
    border-radius: 9px;
    background: var(--white);
    color: var(--navy-700);
    font-size: 0.78rem;
    font-weight: 800;
}

.weekday-picker input:checked + span {
    border-color: var(--gold);
    background: var(--gold-soft);
    color: var(--navy-900);
}

.schedule-help,
.service-choice-explanation,
.scope-choice-explanation,
.product-task-card > p,
.schedule-explainer p {
    margin: 0;
    color: var(--muted);
    font-size: 0.84rem;
    line-height: 1.5;
}

.service-choice-explanation {
    padding: 0 0.1rem;
    color: var(--navy-700);
    font-size: 0.92rem;
}

.scope-choice-explanation {
    margin-top: -0.3rem;
}

.schedule-card-actions {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding-top: 0.9rem;
    border-top: 1px solid var(--line-soft);
}

.schedule-card-actions p {
    margin: 0;
    color: var(--muted);
    font-size: 0.78rem;
    line-height: 1.4;
}

.schedule-explainer {
    padding: 0.9rem 1rem;
    border-left: 4px solid var(--gold);
    border-radius: 8px;
    background: var(--gold-soft);
}

.schedule-explainer strong {
    color: var(--navy-800);
}

.overwatch-activation {
    border-left: 5px solid var(--gold);
}

.overwatch-activation h3 {
    margin: 0;
    color: var(--navy-800);
    font-family: var(--heading);
    font-size: 1.6rem;
}

.overwatch-activation p {
    margin: 0;
    color: var(--muted);
    line-height: 1.55;
}

.overwatch-builder,
.overwatch-window-list {
    display: grid;
    gap: 1rem;
}

.overwatch-quantity-field {
    max-width: 30rem;
}

.overwatch-weekly-schedule {
    display: grid;
    gap: 0.8rem;
    margin: 0;
    padding: 1rem;
    border: 1px solid var(--line-soft);
    border-radius: 14px;
    background: var(--surface);
}

.overwatch-weekly-schedule > legend {
    padding: 0 0.3rem;
    color: var(--navy-800);
    font-family: var(--heading);
    font-size: 1.2rem;
    font-weight: 800;
}

.overwatch-weekly-schedule > p {
    margin: 0;
    color: var(--muted);
    font-size: 0.82rem;
    line-height: 1.45;
}

.overwatch-day-list,
.overwatch-day-schedule {
    display: grid;
}

.overwatch-day-schedule + .overwatch-day-schedule {
    border-top: 1px solid var(--line-soft);
}

.overwatch-day-toggle {
    display: flex;
    gap: 0.75rem;
    align-items: center;
    min-height: 3.25rem;
    padding: 0.7rem 0.25rem;
    color: var(--navy-800);
    font-family: var(--heading);
    font-size: 1rem;
    font-weight: 800;
    cursor: pointer;
}

.overwatch-day-toggle input {
    width: 1.2rem;
    height: 1.2rem;
    margin: 0;
    accent-color: var(--gold);
}

.overwatch-day-times {
    display: grid;
    padding: 0 0.25rem 0.4rem;
}

.overwatch-time-row {
    display: grid;
    grid-template-columns: minmax(9rem, 0.8fr) repeat(2, minmax(9rem, 1fr)) minmax(7rem, auto);
    gap: 0.75rem;
    align-items: end;
    padding: 0.75rem 0;
}

.overwatch-day-toggle-inline {
    min-height: 3rem;
    padding: 0;
}

.overwatch-day-name {
    align-self: center;
    color: var(--navy-800);
}

.overwatch-time-actions {
    display: flex;
    gap: 0.4rem;
    align-items: center;
    min-height: 3rem;
}

.overwatch-time-actions button {
    min-height: 2.75rem;
    padding: 0.55rem 0.75rem;
    border: 1px solid var(--gold);
    border-radius: 9px;
    background: var(--gold-soft);
    color: var(--navy-800);
    font: 800 0.78rem var(--body);
    cursor: pointer;
}

.overwatch-time-actions button:disabled {
    cursor: not-allowed;
    opacity: 0.55;
}

.overwatch-time-actions .remove-overwatch-time {
    border-color: #c9cbce;
    background: var(--white);
    color: #6c3131;
}

.overwatch-copy-dialog {
    width: min(32rem, calc(100% - 2rem));
}

.overwatch-copy-content {
    display: grid;
    gap: 1rem;
    padding: 1.25rem;
}

.overwatch-copy-content > p {
    margin: 0;
    color: var(--muted);
    line-height: 1.5;
}

.overwatch-copy-days {
    display: grid;
    border: 1px solid var(--line-soft);
    border-radius: 12px;
    overflow: hidden;
}

.overwatch-copy-day {
    display: flex;
    min-height: 3.25rem;
    align-items: center;
    gap: 0.75rem;
    padding: 0.7rem 0.85rem;
    background: var(--white);
    color: var(--navy-800);
    cursor: pointer;
}

.overwatch-copy-day + .overwatch-copy-day {
    border-top: 1px solid var(--line-soft);
}

.overwatch-copy-day input {
    width: 1.2rem;
    height: 1.2rem;
    margin: 0;
    accent-color: var(--gold);
}

.overwatch-copy-day span {
    display: grid;
    gap: 0.1rem;
}

.overwatch-copy-day small {
    color: var(--muted);
}

.overwatch-copy-day.is-unavailable {
    background: #f3f4f5;
    cursor: not-allowed;
    opacity: 0.78;
}

.overwatch-copy-status {
    min-height: 1.4rem;
    color: #8a2525 !important;
    font-weight: 700;
}

.overwatch-copy-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
}

.overwatch-copy-actions button {
    min-height: 3rem;
    border: 1px solid var(--navy-800);
    border-radius: 10px;
    font: 800 0.95rem var(--body);
    cursor: pointer;
}

.overwatch-copy-cancel {
    background: var(--white);
    color: var(--navy-800);
}

.overwatch-copy-apply {
    background: var(--gold);
    color: var(--navy-900);
}

.overwatch-copy-apply:disabled {
    cursor: not-allowed;
    opacity: 0.55;
}

.selected-subservice-summary {
    display: grid;
    gap: 0.6rem;
    padding: 1rem;
    border: 1px solid var(--line-soft);
    border-radius: 14px;
    background: var(--surface);
}

.selected-subservice-summary > strong {
    color: var(--navy-800);
    font-family: var(--heading);
    font-size: 1.2rem;
}

.selected-subservice-summary > div {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.selected-subservice-summary span {
    padding: 0.45rem 0.65rem;
    border: 1px solid rgba(201, 162, 39, 0.35);
    border-radius: 999px;
    background: var(--gold-soft);
    color: var(--navy-800);
    font-size: 0.82rem;
    font-weight: 800;
}

.overwatch-types,
.overwatch-modes {
    display: grid;
    gap: 0.7rem;
    margin: 0;
    padding: 1rem;
    border: 1px solid var(--line-soft);
    border-radius: 14px;
    background: var(--surface);
}

.overwatch-types legend,
.overwatch-modes legend {
    max-width: 100%;
    padding: 0 0.3rem;
    color: var(--navy-800);
    font-family: var(--heading);
    font-size: 1.2rem;
    font-weight: 800;
    line-height: 1.15;
    overflow-wrap: anywhere;
    white-space: normal;
}

.overwatch-types label,
.overwatch-modes label {
    position: relative;
    display: flex;
    gap: 0.75rem;
    align-items: flex-start;
    padding: 0.85rem;
    border: 1px solid var(--line);
    border-radius: 11px;
    background: var(--white);
    cursor: pointer;
}

.overwatch-types label:has(input:checked),
.overwatch-modes label:has(input:checked) {
    border-color: var(--gold);
    background: var(--gold-soft);
    box-shadow: 0 0 0 1px rgba(201, 162, 39, 0.1);
}

.overwatch-types input,
.overwatch-modes input {
    width: 1.1rem;
    height: 1.1rem;
    flex: 0 0 auto;
    margin: 0.15rem 0 0;
    accent-color: var(--gold);
}

.overwatch-types span,
.overwatch-modes span,
.overwatch-types strong,
.overwatch-types small,
.overwatch-modes strong,
.overwatch-modes small {
    display: block;
}

.overwatch-types strong,
.overwatch-modes strong {
    color: var(--navy-800);
}

.overwatch-types small,
.overwatch-modes small {
    margin-top: 0.25rem;
    color: var(--muted);
    font-size: 0.82rem;
    line-height: 1.45;
}

.overwatch-window {
    display: grid;
    gap: 0.9rem;
    padding: 1rem;
    border: 1px solid var(--line);
    border-radius: 14px;
    background: var(--white);
}

.overwatch-window-heading {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.overwatch-window-heading strong {
    color: var(--navy-800);
}

.overwatch-window-heading button {
    padding: 0.35rem 0.6rem;
    border: 1px solid #c9cbce;
    border-radius: 8px;
    background: var(--white);
    color: #6c3131;
    font: 800 0.78rem var(--body);
    cursor: pointer;
}

.add-overwatch-window {
    justify-self: start;
}

.schedule-status {
    margin: 1rem 0 0;
    color: var(--muted);
    font-weight: 700;
    text-align: center;
}

.schedule-status:empty {
    display: none;
}

.schedule-status.is-error {
    padding: 0.85rem 1rem;
    border: 1px solid #db8d8d;
    border-radius: 10px;
    background: #fff1f1;
    color: #8a2525;
}

.schedule-status.is-loading {
    color: var(--navy-800);
}

.schedule-inline-error {
    grid-column: 1 / -1;
    margin: 0;
    color: #8a2525;
    font-size: 0.8rem;
    font-weight: 700;
}

.schedule-availability-error {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    padding: 0.75rem 0.85rem;
    border: 1px solid #db8d8d;
    border-radius: 10px;
    background: #fff1f1;
    color: #8a2525;
    font-size: 0.82rem;
    font-weight: 700;
}

.schedule-availability-error button {
    flex: 0 0 auto;
    min-height: 2.25rem;
    padding: 0.45rem 0.75rem;
    border: 1px solid currentColor;
    border-radius: 8px;
    background: var(--white);
    color: inherit;
    font: 800 0.78rem var(--body);
    cursor: pointer;
}

.hold-countdown {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 1rem;
    padding: 0.75rem 0.9rem;
    border: 1px solid rgba(201, 162, 39, 0.55);
    border-radius: 10px;
    background: var(--gold-soft);
    color: var(--navy-800);
    font-size: 0.82rem;
}

.hold-countdown[hidden] {
    display: none;
}

.hold-countdown--global {
    position: sticky;
    top: 0.75rem;
    z-index: 20;
    margin: 0 0 1rem;
    box-shadow: 0 8px 24px rgba(11, 31, 51, 0.14);
}

.hold-countdown.is-expired {
    border-color: #db8d8d;
    background: #fff1f1;
    color: #8a2525;
}

.schedule-issue-dialog {
    width: min(32rem, calc(100vw - 2rem));
    padding: 0;
    border: 0;
    border-radius: 16px;
    background: transparent;
}

.schedule-issue-dialog::backdrop {
    background: rgba(4, 17, 29, 0.72);
}

.schedule-issue-dialog-card {
    display: grid;
    gap: 0.8rem;
    padding: 1.35rem;
    border: 1px solid #db8d8d;
    border-radius: 16px;
    background: var(--white);
    box-shadow: 0 20px 60px rgba(4, 17, 29, 0.3);
}

.schedule-issue-dialog-card h3 {
    margin: 0;
    color: var(--navy-800);
    font-family: var(--heading);
    font-size: 1.6rem;
}

.schedule-issue-dialog-card p {
    margin: 0;
    color: var(--muted);
    line-height: 1.55;
}

.schedule-issue-dialog-card button {
    min-height: 3rem;
    border: 0;
    border-radius: 10px;
    background: var(--navy-800);
    color: var(--white);
    font: 800 0.95rem var(--body);
    cursor: pointer;
}

.choice-card-price small {
    display: block;
    margin-top: 0.12rem;
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.setup-address {
    margin-bottom: 1rem;
}

.product-task-list {
    display: grid;
    gap: 1rem;
}

.setup-duration {
    color: var(--navy-700);
    font-weight: 800;
    white-space: nowrap;
}

.product-appointment {
    display: grid;
    grid-template-columns: minmax(8rem, 0.7fr) repeat(2, minmax(0, 1fr));
    gap: 0.75rem;
    align-items: end;
    padding-top: 0.85rem;
    border-top: 1px solid var(--line-soft);
}

.product-appointment > div {
    align-self: center;
}

.product-appointment > div strong,
.product-appointment > div span {
    display: block;
}

.product-appointment > div strong {
    color: var(--navy-800);
}

.product-appointment > div span {
    margin-top: 0.2rem;
    color: var(--muted);
    font-size: 0.8rem;
}

.review-subheading {
    margin-top: 1.2rem;
    padding: 0.65rem 0;
    border-bottom: 2px solid var(--navy-800);
    color: var(--navy-800);
    font-family: var(--heading);
    font-size: 1.25rem;
    font-weight: 800;
}

.review-row > span {
    margin-top: 0;
    color: var(--navy-800);
    font-weight: 800;
    text-align: right;
}

.review-totals > div {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 0.85rem 0;
    border-bottom: 1px solid #d7d9dc;
    color: var(--navy-800);
    font-weight: 800;
}

.review-totals > div:last-child {
    border-bottom: 0;
}

.review-totals > div:first-child strong {
    font-family: var(--heading);
    font-size: 1.8rem;
}

.renewal-total {
    color: var(--muted) !important;
    font-size: 0.86rem;
}

@media (max-width: 760px) {
    .choice-card-title-row,
    .schedule-family-heading,
    .schedule-builder-heading,
    .hold-countdown,
    .recurrence-conflicts-heading,
    .schedule-card-actions,
    .package-requirement {
        align-items: flex-start;
        flex-direction: column;
    }

    .choice-card-title-row {
        display: grid;
        gap: 0.35rem;
    }

    .choice-card-title-row .choice-card-price {
        text-align: left;
    }

    .setup-service-identity {
        grid-template-columns: 4.6rem minmax(0, 1fr);
    }

    .setup-service-identity .choice-card-media {
        width: 4.6rem;
    }

    .quantity-card,
    .schedule-grid,
    .schedule-mode,
    .product-appointment {
        grid-template-columns: minmax(0, 1fr);
    }

    .service-time-row {
        grid-template-columns: minmax(0, 1.35fr) repeat(2, minmax(0, 1fr));
        gap: 0.45rem;
    }

    .service-time-row .schedule-field > span,
    .overwatch-time-row .schedule-field > span {
        font-size: 0.78rem;
        line-height: 1.2;
    }

    .service-time-row select,
    .schedule-readonly-field output,
    .overwatch-time-row select {
        min-height: 2.75rem;
        padding-right: 0.35rem;
        padding-left: 0.45rem;
        font-size: 0.78rem;
    }

    .overwatch-time-row {
        grid-template-columns: minmax(4.8rem, 0.8fr) repeat(2, minmax(0, 1fr));
        gap: 0.45rem;
    }

    .overwatch-time-actions {
        grid-column: 1 / -1;
        justify-content: flex-start;
    }

    .overwatch-day-times {
        padding-left: 0;
    }

    .subservice-choice {
        grid-template-columns: 4.6rem minmax(0, 1fr);
    }

    .category-choice-list {
        grid-template-columns: minmax(0, 1fr);
    }

    .quantity-card select {
        width: 100%;
    }

    .included-items ul {
        grid-template-columns: minmax(0, 1fr);
    }

    .weekday-picker > div {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }
}
