.khs-holiday-calculator {
    --khs-holiday-brand: #0B217A;
    --khs-holiday-teal: #1CB8A7;
    --khs-holiday-ink: #101828;
    --khs-holiday-muted: #667085;
    --khs-holiday-card: #ffffff;
    --khs-holiday-line: #E4E6ED;
    --khs-holiday-bg: #F7F9FC;
    font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    color: var(--khs-holiday-ink);
    background: var(--khs-holiday-bg);
    padding: 24px;
    border-radius: 16px;
    box-shadow: 0 1px 2px rgba(16, 24, 40, 0.06);
}

.khs-holiday-calculator--roofline {
    background: var(--khs-holiday-bg);
    padding: 24px;
    border-radius: 18px;
    box-shadow: 0 2px 6px rgba(15, 23, 42, 0.08);
}

.khs-holiday-calculator--roofline .khs-holiday-calculator__card {
    background: var(--khs-holiday-card);
    border: 1px solid var(--khs-holiday-line);
    border-radius: 18px;
    padding: 24px;
    box-shadow: 0 2px 8px rgba(15, 23, 42, 0.08);
    margin: 0 0 32px;
}

.khs-holiday-calculator--roofline .khs-holiday-calculator__card:last-child {
    margin-bottom: 0;
}

.khs-holiday-calculator--roofline .khs-roofline-calculator__step-nav {
    margin-top: 20px;
}

.informal-quotes span { font-size:21px}

[hidden] {
    display: none !important;
}

[data-roofline-stage][hidden],
.khs-holiday-calculator__title {
    font-size: 24px;
    color: var(--khs-holiday-brand);
    margin: 0 0 16px;
}

.khs-holiday-calculator__subtitle {
    font-size: 18px;
    color: var(--khs-holiday-brand);
    margin: 0 0 12px;
}

.khs-holiday-calculator__card {
    background: var(--khs-holiday-card);
    border: 1px solid var(--khs-holiday-line);
    border-radius: 14px;
    padding: 16px;
    box-shadow: 0 1px 2px rgba(16, 24, 40, 0.04);
}

.khs-holiday-calculator--simple .khs-holiday-calculator__card {
    max-width: 420px;
}

.khs-holiday-calculator__field {
    display: block;
    margin-bottom: 14px;
}

.khs-holiday-calculator__label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: var(--khs-holiday-muted);
    margin-bottom: 6px;
}

.khs-holiday-calculator__required {
    margin-left: 6px;
    font-weight: 700;
}

.khs-holiday-calculator__optional {
    margin-left: 6px;
    opacity: 0.5;
    font-weight: 600;
}

.khs-holiday-calculator__input {
    width: 100%;
    padding: 12px 18px;
    border: 1px solid var(--khs-holiday-line);
    border-radius: 12px;
    font-size: 18px;
    min-height: 46px;
    background: #fff;
    display: block;
    transition: border-color 120ms ease, box-shadow 120ms ease;
    appearance: none;
}

.khs-holiday-calculator input[type="text"],
.khs-holiday-calculator input[type="email"],
.khs-holiday-calculator input[type="tel"] {
    padding-left: 10px;
}

.khs-holiday-calculator__input:focus {
    outline: none;
    border-color: rgba(12, 108, 222, 0.45);
    box-shadow: 0 0 0 3px rgba(12, 108, 222, 0.15);
}

.khs-input-wrap {
    display: block;
}

.khs-holiday-calculator__field--inline {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    align-items: center;
}

.khs-checkbox {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: var(--khs-holiday-ink);
    font-weight: 500;
}

.khs-checkbox input[type="checkbox"] {
    width: 18px;
    height: 18px;
    border-radius: 4px;
    border: 1px solid var(--khs-holiday-line);
    accent-color: var(--khs-holiday-teal);
}

.khs-checkbox span {
    line-height: 1.3;
}

.khs-select {
    font-weight: 600;
    font-size: 18px;
    color: var(--khs-holiday-ink);
    padding-right: 44px;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 24 24' fill='none'%3e%3cpath d='M6 9l6 6 6-6' stroke='%230B217A' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 16px center;
    background-size: 18px 18px;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
}

.khs-select::-ms-expand {
    display: none;
}

.khs-select option {
    font-weight: 500;
    font-size: 18px;
}

.khs-stepper {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: stretch;
    width: 100%;
    border: 1px solid var(--khs-holiday-line);
    border-radius: 12px;
    background: #fff;
    overflow: hidden;
}

.khs-stepper__button {
    appearance: none;
    border: none;
    background: transparent;
    color: var(--khs-holiday-brand);
    width: 48px;
    font-size: 22px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 120ms ease, color 120ms ease;
    touch-action: manipulation;
}

.khs-stepper__button:hover,
.khs-stepper__button:focus {
    background: rgba(12, 108, 222, 0.08);
    color: var(--khs-holiday-ink);
}

.khs-stepper__button:focus {
    outline: 2px solid rgba(12, 108, 222, 0.35);
    outline-offset: -2px;
}

.khs-stepper__button:disabled {
    opacity: 0.45;
    cursor: not-allowed;
}

.khs-stepper__input {
    border: none;
    border-left: 1px solid var(--khs-holiday-line);
    border-right: 1px solid var(--khs-holiday-line);
    border-radius: 0;
    text-align: center;
    font-size: 16px;
    padding: 10px 12px;
    min-height: 46px;
}

.khs-stepper__input:focus {
    outline: none;
}

.khs-stepper input[type="number"]::-webkit-outer-spin-button,
.khs-stepper input[type="number"]::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.khs-stepper input[type="number"] {
    -moz-appearance: textfield;
}

.khs-holiday-calculator__button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 16px;
    border-radius: 10px;
    border: none;
    background: var(--khs-holiday-teal);
    color: #ffffff;
    font-weight: 700;
    cursor: pointer;
    transition: filter 120ms ease;
    margin-top: 4px;
}

.khs-holiday-calculator__button:hover,
.khs-holiday-calculator__button:focus {
    filter: brightness(0.95);
}

.khs-holiday-calculator__button:focus {
    outline: 2px solid rgba(12, 108, 222, 0.4);
    outline-offset: 2px;
}

.khs-holiday-calculator__output {
    margin-top: 10px;
    font-weight: 700;
    font-variant-numeric: tabular-nums;
    color: var(--khs-holiday-ink);
}

.khs-holiday-calculator__divider {
    height: 1px;
    background: var(--khs-holiday-line);
    margin: 16px 0;
}

.khs-holiday-calculator__note {
    font-size: 12px;
    color: var(--khs-holiday-muted);
    margin: 12px 0 0;
}

.khs-holiday-calculator__grid {
    display: grid;
    gap: 16px;
}

.khs-holiday-calculator__grid--two {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.khs-holiday-calculator--calendar .khs-holiday-calculator__grid {
    margin-bottom: 16px;
}

.khs-holiday-calculator--calendar .khs-holiday-calculator__card--settings {
    height: 100%;
}

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

.khs-holiday-calculator__card--calendar {
    margin-top: 16px;
}

.khs-holiday-calculator__week-card {
    background: #ffffff;
    border: 1px solid var(--khs-holiday-line);
    border-radius: 12px;
    padding: 12px;
    box-shadow: 0 1px 2px rgba(16, 24, 40, 0.04);
}

.khs-holiday-calculator__week-title {
    margin: 0 0 6px;
    font-size: 14px;
    color: var(--khs-holiday-brand);
}

.khs-holiday-calculator__money {
    font-size: 14px;
    font-weight: 600;
    font-variant-numeric: tabular-nums;
    margin-bottom: 4px;
}

.khs-holiday-calculator__badge {
    display: inline-block;
    margin-left: 6px;
    padding: 2px 8px;
    border-radius: 999px;
    border: 1px solid var(--khs-holiday-line);
    background: #fff;
    font-size: 12px;
    color: var(--khs-holiday-muted);
}

.khs-holiday-calculator__save {
    color: var(--khs-holiday-brand);
    margin-left: 8px;
    font-weight: 700;
}

.khs-holiday-calculator__cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    margin-top: 8px;
}

.khs-holiday-calculator--simple {
    max-width: 460px;
    margin: 0 auto;
}

.khs-holiday-calculator--calendar {
    max-width: 1100px;
    margin: 0 auto;
}

.khs-holiday-calculator--team {
    max-width: 1180px;
    margin: 0 auto;
    padding: 24px;
}

.khs-holiday-calculator--intake {
    max-width: 520px;
    margin: 0 auto;
    padding: 24px;
}

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

.khs-team-calculator__card {
    margin-bottom: 20px;
}

.khs-team-calculator__card--summary {
    margin-top: 16px;
}

.khs-team-calculator__card--results {
    margin-bottom: 24px;
}

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

.khs-team-calculator__note {
    font-size: 12px;
    color: var(--khs-holiday-muted);
    margin: 8px 0 0;
}

.khs-team-calculator__note--muted {
    color: rgba(71, 84, 103, 0.8);
}

.khs-team-calculator__tree-list {
    display: grid;
    gap: 12px;
    margin-top: 16px;
}
.khs-roofline-calculator__summary-card {
    margin-bottom: 24px;
}

.khs-roofline-calculator__summary-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 12px 24px;
    margin: 0;
}

.khs-roofline-calculator__summary-list dt {
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--khs-holiday-muted);
    margin: 0;
}

.khs-roofline-calculator__summary-list dd {
    margin: 4px 0 0;
    font-weight: 600;
    color: var(--khs-holiday-ink);
}

.khs-roofline-calculator__holi-fields {
    margin-top: 20px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding: 18px;
    border: 1px solid var(--khs-holiday-line);
    border-radius: 16px;
    background: rgba(12, 33, 122, 0.02);
}

.khs-roofline-calculator__toggle-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.khs-roofline-calculator__toggle-group {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.khs-roofline-calculator__toggle {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 6px 18px 6px 10px;
    border: 1px solid var(--khs-holiday-line);
    border-radius: 999px;
    cursor: pointer;
    background: #fff;
    transition: border-color 120ms ease, box-shadow 120ms ease;
}

.khs-roofline-calculator__toggle input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.khs-roofline-calculator__toggle-slider {
    width: 34px;
    height: 18px;
    border-radius: 999px;
    background: var(--khs-holiday-line);
    position: relative;
    flex-shrink: 0;
    transition: background 120ms ease;
}

.khs-roofline-calculator__toggle-slider::after {
    content: '';
    position: absolute;
    top: 2px;
    left: 2px;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: #fff;
    box-shadow: 0 1px 2px rgba(16, 24, 40, 0.2);
    transition: transform 120ms ease;
}

.khs-roofline-calculator__toggle-label {
    font-size: 14px;
    font-weight: 600;
    color: var(--khs-holiday-muted);
}

.khs-roofline-calculator__toggle input:focus-visible + .khs-roofline-calculator__toggle-slider {
    box-shadow: 0 0 0 3px rgba(12, 108, 222, 0.25);
}

.khs-roofline-calculator__toggle input:checked + .khs-roofline-calculator__toggle-slider {
    background: var(--khs-holiday-teal);
}

.khs-roofline-calculator__toggle input:checked + .khs-roofline-calculator__toggle-slider::after {
    transform: translateX(16px);
}

.khs-roofline-calculator__toggle input:checked + .khs-roofline-calculator__toggle-slider + .khs-roofline-calculator__toggle-label {
    color: var(--khs-holiday-brand);
}

.khs-roofline-calculator__color-other {
    margin-top: 12px;
}

.khs-roofline-calculator__color-other[hidden] {
    display: none !important;
}

.khs-holiday-calculator__textarea {
    min-height: 96px;
    resize: vertical;
}

.khs-team-calculator__tree-item {
    border: 1px solid var(--khs-holiday-line);
    border-radius: 12px;
    padding: 12px;
    background: #fff;
    box-shadow: 0 1px 2px rgba(16, 24, 40, 0.05);
}

.khs-team-calculator__tree-item .khs-holiday-calculator__button {
    margin-top: 10px;
}

.khs-team-calculator__pill {
    display: inline-flex;
    align-items: center;
    padding: 4px 10px;
    border-radius: 999px;
    background: #ecfdf5;
    color: #047857;
    font-size: 12px;
    font-weight: 600;
}

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

.khs-team-calculator__result-card {
    background: #fff;
    border: 1px solid var(--khs-holiday-line);
    border-radius: 14px;
    padding: 16px;
    box-shadow: 0 1px 2px rgba(16, 24, 40, 0.04);
}

.khs-team-calculator__output {
    font-weight: 600;
    font-variant-numeric: tabular-nums;
    color: var(--khs-holiday-ink);
    margin-top: 8px;
}

.khs-team-calculator__table {
    margin-top: 20px;
    overflow-x: auto;
}

.khs-team-calculator__table table {
    width: 100%;
    border-collapse: collapse;
    font-size: 14px;
}

.khs-team-calculator__table th,
.khs-team-calculator__table td {
    border: 1px solid var(--khs-holiday-line);
    padding: 10px 12px;
    text-align: left;
}

.khs-team-calculator__section-title {
    margin-top: 6px;
}

@media (max-width: 1024px) {
    .khs-team-calculator__columns {
        grid-template-columns: 1fr;
    }

    .khs-team-calculator__grid--three,
    .khs-team-calculator__result-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 720px) {
    .khs-team-calculator__grid--three,
    .khs-team-calculator__result-grid {
        grid-template-columns: 1fr;
    }
}

.khs-holiday-calculator--ballpark {
    --khs-holiday-brand: #0f766e;
    --khs-holiday-teal: #0f766e;
    --khs-holiday-ink: #0f172a;
    --khs-holiday-muted: #475467;
    --khs-holiday-card: #ffffff;
    --khs-holiday-line: #d0d5dd;
    --khs-holiday-bg: #ffffff00;
    padding: 24px;
    box-shadow: none;
}

.khs-holiday-calculator--ballpark .khs-holiday-calculator__hero {
    display: grid;
    gap: 20px;
    grid-template-columns: 1.1fr 1fr;
    margin-bottom: 20px;
}

.khs-holiday-calculator--ballpark .khs-holiday-calculator__card {
    padding: 24px;
    border-radius: 16px;
    box-shadow: 0 10px 25px rgba(15, 23, 42, 0.08);
}

.khs-holiday-calculator--ballpark .khs-holiday-calculator__card--results {
    margin-bottom: 20px;
}

.khs-holiday-calculator--ballpark .khs-holiday-calculator__card--request {
    margin-bottom: 20px;
}

.khs-holiday-calculator--ballpark .khs-holiday-calculator__card--section {
    margin-bottom: 20px;
}

.khs-holiday-calculator--ballpark .khs-holiday-calculator__card--success {
    text-align: center;
}

.khs-holiday-calculator--ballpark .khs-holiday-calculator__headline {
    font-size: clamp(24px, 4vw, 36px);
    margin: 12px 0;
    color: var(--khs-holiday-ink);
}

.khs-holiday-calculator--ballpark .khs-holiday-calculator__lead {
    font-size: clamp(16px, 2.2vw, 18px);
    color: var(--khs-holiday-muted);
    margin: 0 0 16px;
}

.khs-holiday-calculator__lead ul li { line-height:30px; font-size:24px; }

.khs-holiday-calculator--ballpark .khs-holiday-calculator__badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 12px;
    border-radius: 999px;
    background: #ecfeff;
    color: #0b534d;
    font-weight: 600;
    font-size: 12px;
    border: none;
}

.khs-holiday-calculator--roofline {
    --khs-holiday-brand: #0f766e;
    --khs-holiday-teal: #0f766e;
    --khs-holiday-ink: #0f172a;
    --khs-holiday-muted: #475467;
    --khs-holiday-card: #ffffff;
    --khs-holiday-line: #cbd5e1;
    --khs-holiday-bg: #ffffff00;
    max-width: 80%;
    margin: 0 auto;
    padding: 24px;
    box-shadow: none;
}

.khs-roofline-calculator__form {
    display: grid;
    gap: 20px;
}

.khs-roofline-calculator__lead {
    margin-bottom: 0;
}

.khs-roofline-calculator__location-group {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: 16px;
}

.khs-roofline-calculator__location-group--deferred {
    margin-top: 0;
}

.khs-roofline-calculator__ballpark {
    margin-top: 0;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.khs-roofline-calculator__ballpark-card {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.khs-roofline-calculator__ballpark-title {
    margin: 0 0 24px;
}

.khs-roofline-calculator__ballpark-columns {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
    align-items: flex-start;
}

.khs-roofline-calculator__ballpark-columns--existing {
    grid-template-columns: 1fr;
}

.khs-roofline-calculator__ballpark-columns--existing .khs-roofline-calculator__ballpark-content {
    gap: 16px;
}

.khs-roofline-calculator__ballpark-content {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.khs-roofline-calculator__example {
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: center;
    text-align: center;
}

.khs-roofline-calculator__example img {
    width: 100%;
    height: auto;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.18);
    object-fit: cover;
}

.khs-roofline-calculator__example-caption {
    font-size: 13px;
	line-height:13px;
    color: var(--khs-holiday-muted);
}

@media (max-width: 900px) {
    .khs-roofline-calculator__ballpark-columns {
        grid-template-columns: 1fr;
    }

    .khs-roofline-calculator__example {
        max-width: 480px;
        margin: 0 auto;
    }
}

.khs-roofline-calculator__stage-title {
    margin-top: 0;
    margin-bottom: 24px;
}

.khs-roofline-calculator__step-nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    margin: 24px 0 0;
    position: relative;
}

.khs-roofline-calculator__step-nav--end {
    justify-content: flex-end;
}

.khs-roofline-calculator__form-message {
    margin-top: 8px;
    font-size: 14px;
    color: #b42318;
    display: none;
}

.khs-roofline-calculator__form-message.is-visible {
    display: block;
}

.khs-roofline-calculator__confirmation {
    margin-top: 24px;
    padding: 20px;
    border-radius: 12px;
    background-color: var(--khs-holiday-bg);
    box-shadow: inset 0 0 0 1px rgba(208, 213, 221, 0.6);
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.khs-roofline-calculator__confirmation .khs-roofline-calculator__panel {
    margin: 0;
}

.khs-roofline-calculator__success-title {
    font-size: 24px;
    color: #d92d20;
}

.khs-roofline-calculator__breakdown {
    margin-top: 8px;
    font-size: 13px;
    line-height: 1.4;
    color: rgba(255, 255, 255, 0.85);
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.khs-roofline-calculator__zip-input {
    width: 80px;
    min-width: 80px;
}

.khs-roofline-calculator__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: flex-start;
    align-items: flex-end;
    margin-top: 8px;
}

.khs-roofline-calendar {
    margin-top: 28px;
    padding: 28px 5px;
    display: flex;
    flex-direction: column;
    gap: 18px;
    position: relative;
    overflow: hidden;
}

.khs-roofline-calendar[hidden] {
    display: none !important;
}

.khs-roofline-calendar__intro {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.khs-roofline-calendar__title {
    margin: 0;
    font-size: clamp(18px, 2.4vw, 22px);
    font-weight: 700;
    color: var(--khs-holiday-ink);
}

.khs-roofline-calendar__shell {
    position: relative;
    display: flex;
    border-radius: 20px;
    background: #fff;
    padding: 0 0 0 8px;
    box-shadow: inset 0 0 0 1px rgba(148, 163, 184, 0.12);
}

.khs-roofline-calendar__viewport {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 14px;
    max-height: 420px;
    overflow-y: auto;
    scroll-behavior: smooth;
    padding: 44px 16px 44px 0;
}

.khs-roofline-calendar__viewport::-webkit-scrollbar {
    width: 8px;
}

.khs-roofline-calendar__viewport::-webkit-scrollbar-thumb {
    background: rgba(15, 118, 110, 0.25);
    border-radius: 999px;
}

.khs-roofline-calendar__viewport::-webkit-scrollbar-track {
    background: rgba(226, 232, 240, 0.6);
    border-radius: 999px;
}

.khs-roofline-calendar__day-labels {
    display: grid;
    grid-template-columns: repeat(7, minmax(0, 1fr));
    gap: 10px;
    text-transform: uppercase;
    font-size: 11px;
    letter-spacing: 0.08em;
    color: #64748b;
    font-weight: 700;
    padding: 0 8px;
}

.khs-roofline-calendar__day-name {
    text-align: center;
}

.khs-roofline-calendar__month {
    font-size: 12px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: #94a3b8;
    font-weight: 700;
    margin: 20px 12px 6px;
}

.khs-roofline-calendar__weeks {
    display: flex;
    flex-direction: column;
    gap: 14px;
    padding-right: 4px;
}

.khs-roofline-calendar__week {
    position: relative;
    border: 1px solid rgba(148, 163, 184, 0.25);
    border-radius: 18px;
    background: #ffffff;
    padding: 18px 20px 18px 22px;
    display: flex;
    flex-direction: column;
    gap: 14px;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    text-align: left;
    font: inherit;
    color: inherit;
}

.khs-roofline-calendar__week::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 0;
    background: linear-gradient(180deg, #2563eb 0%, #1d4ed8 100%);
    border-radius: 18px 0 0 18px;
    transition: width 0.25s ease;
}

.khs-roofline-calendar__week:hover:not([disabled]),
.khs-roofline-calendar__week:focus-visible:not([disabled]) {
    transform: translateY(-2px);
    box-shadow: 0 22px 40px rgba(15, 23, 42, 0.16);
}

.khs-roofline-calendar__week:focus {
    outline: none;
}

.khs-roofline-calendar__week:focus-visible {
    outline: 2px solid var(--khs-holiday-teal);
    outline-offset: 4px;
}

.khs-roofline-calendar__week.is-selected::before {
    width: 6px;
}

.khs-roofline-calendar__week.is-discounted::before {
    background: linear-gradient(180deg, #0ea5e9 0%, #0284c7 100%);
}

.khs-roofline-calendar__week.is-premium::before {
    background: linear-gradient(180deg, #f97316 0%, #ea580c 100%);
}

.khs-roofline-calendar__week.is-outside {
    cursor: default;
    background: #f8fafc;
    color: #94a3b8;
    box-shadow: none;
}
.khs-roofline-calendar__week:disabled {
    cursor: default;
    pointer-events: none;
}


.khs-roofline-calendar__week.is-outside::before {
    background: linear-gradient(180deg, #cbd5e1 0%, #cbd5e1 100%);
    width: 4px;
}

.khs-roofline-calendar__week-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.khs-roofline-calendar__week-info {
    display: flex;
    align-items: center;
    gap: 12px;
    flex: 1;
    min-width: 0;
}

.khs-roofline-calendar__week-range {
    font-size: clamp(16px, 2vw, 18px);
    font-weight: 700;
    color: var(--khs-holiday-ink);
    white-space: nowrap;
}

.khs-roofline-calendar__week-price {
    font-weight: 700;
    font-size: clamp(16px, 2vw, 18px);
    color: var(--khs-holiday-ink);
    white-space: nowrap;
    margin-left: auto;
}

.khs-roofline-calendar__week.is-discounted .khs-roofline-calendar__week-note {
    color: #047857;
    font-weight: 600;
}

.khs-roofline-calendar__week.is-premium .khs-roofline-calendar__week-note {
    color: #b45309;
    font-weight: 600;
}

.khs-roofline-calendar__week.is-outside .khs-roofline-calendar__week-note {
    color: #94a3b8;
    font-weight: 500;
}

.khs-roofline-calendar__week-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 46px;
    padding: 4px 12px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 700;
    background: #ecfeff;
    color: #047857;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-left: 12px;
}

.khs-roofline-calendar__week.is-premium .khs-roofline-calendar__week-badge {
    background: #fff7ed;
    color: #b45309;
}

.khs-roofline-calendar__week.is-outside .khs-roofline-calendar__week-badge {
    background: #e2e8f0;
    color: #475569;
}

.khs-roofline-calendar__days {
    display: grid;
    grid-template-columns: repeat(7, minmax(0, 1fr));
    gap: 8px;
}

.khs-roofline-calendar__day {
    border: 1px solid rgba(148, 163, 184, 0.35);
    border-radius: 12px;
    padding: 12px 0;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 6px;
    background: #f8fafc;
    font-size: 12px;
    color: #64748b;
    font-weight: 500;
}

.khs-roofline-calendar__day-date {
    font-weight: 700;
    font-size: 15px;
    color: var(--khs-holiday-ink);
}

.khs-roofline-calendar__day-label {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.khs-roofline-calendar__week.is-outside .khs-roofline-calendar__day {
    background: #e2e8f0;
    color: #475569;
}

.khs-roofline-calendar__scroll {
    position: absolute;
    left: 50%;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid rgba(148, 163, 184, 0.35);
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    cursor: pointer;
    transform: translateX(-50%);
    box-shadow: 0 12px 24px rgba(15, 23, 42, 0.15);
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
    z-index: 2;
}

.khs-roofline-calendar__scroll--up {
    top: 18px;
}

.khs-roofline-calendar__scroll--down {
    bottom: 18px;
}

.khs-roofline-calendar__scroll:hover:not(:disabled) {
    transform: translateX(-50%) translateY(-2px);
    box-shadow: 0 16px 30px rgba(15, 23, 42, 0.25);
    background: #f0f9ff;
}

.khs-roofline-calendar__scroll:disabled {
    opacity: 0.35;
    cursor: not-allowed;
}

.khs-roofline-calendar__message {
    font-size: 13px;
    color: #64748b;
    display: none;
}

.khs-roofline-calendar__message.is-visible {
    display: block;
}

.khs-roofline-group-cards {
    margin-top: 24px;
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.khs-roofline-group-cards__list {
    display: grid;
    gap: 16px;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.khs-roofline-group-card {
    border: 1px solid rgba(148, 163, 184, 0.25);
    border-radius: 18px;
    background: #ffffff;
    padding: 20px 22px;
    display: grid;
    gap: 10px;
    text-align: left;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
    font: inherit;
    color: inherit;
}

.khs-roofline-group-card:hover,
.khs-roofline-group-card:focus-visible {
    transform: translateY(-2px);
    box-shadow: 0 22px 40px rgba(15, 23, 42, 0.16);
}

.khs-roofline-group-card:focus {
    outline: none;
}

.khs-roofline-group-card:focus-visible {
    outline: 2px solid var(--khs-holiday-teal);
    outline-offset: 4px;
}

.khs-roofline-group-card.is-selected {
    border-color: var(--khs-holiday-brand);
    box-shadow: 0 24px 42px rgba(15, 23, 42, 0.18);
}

.khs-roofline-group-card__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.khs-roofline-group-card__title {
    font-size: 16px;
    font-weight: 600;
    color: var(--khs-holiday-brand);
}

.khs-roofline-group-card__badge {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--khs-holiday-teal);
    background: rgba(28, 184, 167, 0.12);
    border-radius: 999px;
    padding: 3px 10px;
}

.khs-roofline-group-card__price {
    font-size: 22px;
    font-weight: 700;
    color: var(--khs-holiday-ink);
}

.khs-roofline-group-card__range {
    font-size: 14px;
    color: var(--khs-holiday-muted);
}

.khs-roofline-group-cards__message {
    font-size: 14px;
    color: var(--khs-holiday-muted);
}

@media (max-width: 768px) {
    .khs-roofline-calendar {
        padding: 20px;
    }

    .khs-roofline-calendar__shell {
        flex-direction: column;
        padding: 0;
    }

    .khs-roofline-calendar__viewport {
        max-height: 360px;
        padding: 40px 12px;
    }

    .khs-roofline-calendar__scroll {
        position: static;
        transform: none;
        width: 100%;
        height: 42px;
        border-radius: 12px;
        margin: 8px 0;
    }
}

.khs-roofline-calculator__results {
    margin-top: 20px;
}

.khs-roofline-calculator__header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 12px;
}

.khs-roofline-calculator__pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    border-radius: 999px;
    background: #d92d20;
    color: #ffffff;
    font-weight: 600;
    font-size: 13px;
}

.khs-roofline-calculator__summary {
    margin-top: 16px;
}

.khs-roofline-calculator__panel {
    background: var(--khs-holiday-brand);
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 16px;
    padding: 20px;
}

.khs-roofline-calculator__panel--examples {
    background: #f3f9f7;
    color: var(--khs-holiday-brand);
    border: 1px solid rgba(15, 118, 110, 0.25);
}

.khs-roofline-calculator__panel-title {
    margin: 0 0 10px;
    font-size: 16px;
    font-weight: 700;
    color: #ffffff;
}

.khs-roofline-calculator__panel--examples .khs-roofline-calculator__panel-title {
    color: var(--khs-holiday-brand);
}

.khs-roofline-calculator__price {
    font-size: clamp(22px, 4vw, 32px);
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 6px;
}

.khs-roofline-calculator__panel--examples .khs-roofline-calculator__price {
    color: var(--khs-holiday-brand);
}

.khs-roofline-calculator__table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 4px;
    font-size: 14px;
    color: #ffffff;
}

.khs-roofline-calculator__panel--examples .khs-roofline-calculator__table {
    color: var(--khs-holiday-brand);
}

.khs-roofline-calculator__table th,
.khs-roofline-calculator__table td {
    padding: 10px 8px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.25);
    text-align: left;
}

.khs-roofline-calculator__panel--examples .khs-roofline-calculator__table th,
.khs-roofline-calculator__panel--examples .khs-roofline-calculator__table td {
    border-bottom: 1px solid rgba(15, 118, 110, 0.2);
}

.khs-roofline-calculator__table th {
    color: #ffffff;
    font-weight: 700;
}

.khs-roofline-calculator__panel--examples .khs-roofline-calculator__table th {
    color: var(--khs-holiday-brand);
}

.khs-roofline-calculator__deferred-location {
    margin-top: 24px;
    border-radius: 16px;
    background: #f3f9f7;
    border: none;
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.khs-roofline-calculator__deferred-shell {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.khs-roofline-calculator__deferred-title {
    margin: 0;
    font-size: 18px;
    font-weight: 700;
    color: var(--khs-holiday-brand);
}

.khs-roofline-calculator__deferred-heading {
    margin: 0;
    font-size: 18px;
    font-weight: 700;
    color: var(--khs-holiday-brand);
}

.khs-roofline-calculator__deferred-title--warning {
    color: #d92d20;
}

.khs-roofline-calculator__deferred-description {
    margin: 0;
    color: var(--khs-holiday-muted);
    font-size: 14px;
    line-height: 1.5;
}

.khs-roofline-calculator__address-fields {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.khs-roofline-calculator__address-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 4px;
}

.khs-roofline-schedule-matrix {
    margin-top: 24px;
    padding: 20px;
    border-radius: 16px;
    background: #f3f9f7;
    border: 1px solid rgba(15, 118, 110, 0.2);
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.khs-roofline-schedule-matrix__intro {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.khs-roofline-schedule-matrix__title {
    margin: 0;
    font-size: 22px;
    font-weight: 700;
    color: #ffffff;
}

.khs-roofline-schedule-matrix__months {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 16px;
    width: 100%;
    overflow-x: auto;
    padding-bottom: 8px;
}

.khs-roofline-schedule-matrix__months::-webkit-scrollbar {
    height: 6px;
}

.khs-roofline-schedule-matrix__months::-webkit-scrollbar-thumb {
    background: rgba(15, 118, 110, 0.3);
    border-radius: 999px;
}

.khs-roofline-schedule-matrix__month {
    min-width: 220px;
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(15, 118, 110, 0.08);
    display: grid;
    grid-template-rows: auto 1fr;
}

.khs-roofline-schedule-matrix__month-header {
    padding: 12px 16px;
    font-weight: 700;
    background: var(--khs-holiday-brand);
    color: #ffffff;
    border-bottom: none;
}

.khs-roofline-schedule-matrix__month-body {
    padding: 0 12px 12px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.khs-roofline-schedule-matrix__weekday-row {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 4px;
    padding: 10px 0 0;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    color: var(--khs-holiday-muted);
    letter-spacing: 0.04em;
}

.khs-roofline-schedule-matrix__weekday {
    text-align: center;
}

.khs-roofline-schedule-matrix__days-wrapper {
    position: relative;
}

.khs-roofline-schedule-matrix__days {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 4px;
    padding: 8px 0 0;
}

.khs-roofline-schedule-matrix__day-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
}

.khs-roofline-schedule-matrix__day {
    border: none;
    border-radius: 8px;
    padding: 10px 0;
    font-size: 16px;
    font-weight: 600;
    color: var(--khs-holiday-brand);
    background: transparent;
    cursor: pointer;
    transition: background 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
}

.khs-roofline-schedule-matrix__day:focus,
.khs-roofline-schedule-matrix__day:hover {
    outline: none;
    box-shadow: 0 0 0 2px rgba(15, 118, 110, 0.2);
}

.khs-roofline-schedule-matrix__day.is-available {
    color: var(--khs-holiday-brand);
}

.khs-roofline-schedule-matrix__day.is-hovered {
    background: rgba(15, 118, 110, 0.1);
}

.khs-roofline-schedule-matrix__day.is-selected,
.khs-roofline-schedule-matrix__day.is-selected-day {
    background: #e34758;
    color: #ffffff;
    box-shadow: 0 0 0 2px rgba(227, 71, 88, 0.25);
}

.khs-roofline-schedule-matrix__day.is-disabled,
.khs-roofline-schedule-matrix__day.is-inactive {
    cursor: not-allowed;
    color: #98a2b3;
    background: transparent;
    box-shadow: none;
}

.khs-roofline-schedule-matrix__day.is-inactive {
    opacity: 0.35;
}

.khs-roofline-schedule-matrix__day--empty {
    display: block;
    width: 100%;
    height: 46px;
}

.khs-roofline-schedule-matrix__day:disabled {
    cursor: not-allowed;
}

.khs-roofline-calculator__address-summary {
    margin-top: 4px;
}

.khs-roofline-calculator__address-block + .khs-roofline-calculator__location-group.khs-roofline-calculator__location-group--deferred,
.khs-roofline-calculator__location-group.khs-roofline-calculator__location-group--deferred {
    display: none;
}

.khs-holiday-calculator__button[disabled] {
    background: #d0d5dd;
    color: #98a2b3;
    cursor: not-allowed;
    box-shadow: none;
}

.khs-holiday-calculator__button--armed {
    background: #e34758;
    border-color: #e34758;
    color: #ffffff;
    cursor: pointer;
}

.khs-holiday-calculator__button--armed.is-pulsing {
    animation: khs-button-pulse 1.4s ease-in-out infinite;
}

@keyframes khs-button-pulse {
    0% {
        transform: scale(0.9);
    }
    50% {
        transform: scale(1.1);
    }
    100% {
        transform: scale(0.9);
    }
}

.khs-roofline-calculator__contact-method {
    position: relative;
}

.khs-roofline-calculator__contact-method-control {
    position: relative;
    display: flex;
    align-items: center;
}

.khs-roofline-calculator__contact-check {
    margin-left: 8px;
    font-size: 16px;
    color: #10b981;
    opacity: 0;
    transition: opacity 0.2s ease;
}

.khs-roofline-calculator__contact-check.is-visible {
    opacity: 1;
}
.khs-roofline-calculator__address-block + .khs-roofline-calculator__location-group.khs-roofline-calculator__location-group--deferred,
.khs-roofline-calculator__location-group.khs-roofline-calculator__location-group--deferred {
    display: none;
}

.khs-roofline-calculator__summary-list {
    margin: 0;
    display: grid;
    grid-template-columns: max-content 1fr;
    gap: 4px 12px;
    font-size: 14px;
}

.khs-roofline-calculator__summary-list dt {
    font-weight: 600;
    color: var(--khs-holiday-brand);
}

.khs-roofline-calculator__summary-list dd {
    margin: 0;
    white-space: pre-line;
    color: var(--khs-holiday-muted);
}

.khs-roofline-calculator__summary-empty {
    margin: 0;
    font-size: 14px;
    color: var(--khs-holiday-muted);
}


.khs-roofline-calculator__cta {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 20px;
}

.khs-roofline-calculator__cta--hidden {
    display: none !important;
}

.khs-holiday-calculator--roofline.khs-roofline-calculator--stage-success:not(.khs-roofline-calculator--matrix-enabled) [data-roofline-target="cta"] {
    display: none !important;
}

.khs-roofline-calculator__disclaimer {
    margin-top: 20px;
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    color: var(--khs-holiday-ink);
}

.khs-roofline-calculator__disclaimer-label {
    color: #b42318;
    font-weight: 600;
    margin-right: 4px;
}

.khs-roofline-calculator__success {
    text-align: center;
}

.khs-roofline-calculator__list {
    margin: 0;
    padding-left: 20px;
    line-height: 1.7;
    color: var(--khs-holiday-ink);
}

@media (max-width: 720px) {
    .khs-holiday-calculator--roofline .khs-holiday-calculator__grid--two {
        grid-template-columns: 1fr;
    }

    .khs-roofline-calculator__actions {
        align-items: stretch;
    }

    .khs-roofline-calculator__lead .khs-holiday-calculator__grid--two {
        grid-template-columns: 1fr;
    }

    .khs-roofline-calculator__panel {
        padding: 16px;
    }
}

@media (min-width: 992px) {
    .khs-roofline-calculator__step-nav--back [data-action="roofline-back"] {
        position: absolute;
        left: -15%;
        transform: none;
        background-color: #ffffff;
    }
}

.khs-holiday-calculator--ballpark .khs-holiday-calculator__badge-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #0f766e;
}

.khs-holiday-calculator--ballpark .khs-holiday-calculator__disclaimer {
    background: #fff7ed;
    color: #7c2d12;
    border: 1px dashed #fdba74;
    border-radius: 14px;
    padding: 16px;
    font-size: 14px;
    line-height: 1.5;
    margin: 0 0 16px;
}

.khs-holiday-calculator--ballpark .khs-holiday-calculator__how {
    margin-top: 20px;
}

.khs-holiday-calculator--ballpark .khs-holiday-calculator__link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--khs-holiday-brand);
    font-weight: 600;
    text-decoration: none;
}

.khs-holiday-calculator--ballpark .khs-holiday-calculator__link:hover,
.khs-holiday-calculator--ballpark .khs-holiday-calculator__link:focus {
    text-decoration: underline;
}

.khs-holiday-calculator__sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
}

.khs-holiday-calculator--ballpark .khs-holiday-calculator__help {
    display: block;
    font-size: 12px;
    color: var(--khs-holiday-muted);
    margin-top: 6px;
    line-height: 1.5;
}

.khs-holiday-calculator--ballpark .khs-holiday-calculator__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 16px;
}

.khs-holiday-calculator--ballpark .khs-holiday-calculator__form {
    display: grid;
    gap: 16px;
}

.khs-holiday-calculator--ballpark .khs-holiday-calculator__form.is-submitting {
    opacity: 0.65;
    pointer-events: none;
}

.khs-holiday-calculator--ballpark .khs-holiday-calculator__textarea {
    min-height: 120px;
    resize: vertical;
}

.khs-holiday-calculator__button--ghost {
    background: transparent;
    color: var(--khs-holiday-ink);
    border: 1px solid var(--khs-holiday-line);
}

.khs-holiday-calculator__button--ghost:hover,
.khs-holiday-calculator__button--ghost:focus {
    background: rgba(15, 118, 110, 0.08);
}

.khs-holiday-calculator--ballpark .khs-holiday-calculator__trees {
    margin-top: 16px;
    border-top: 1px solid var(--khs-holiday-line);
    padding-top: 16px;
}

.khs-holiday-calculator--ballpark .khs-holiday-calculator__trees-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
}

.khs-holiday-calculator--ballpark .khs-holiday-calculator__trees-title {
    margin: 0;
    font-size: 16px;
    font-weight: 700;
}

.khs-holiday-calculator--ballpark .khs-holiday-calculator__trees-items {
    display: grid;
    gap: 14px;
}

.khs-holiday-calculator--ballpark .khs-holiday-calculator__tree-card {
    border: 1px solid var(--khs-holiday-line);
    border-radius: 14px;
    padding: 16px;
    background: #ffffff;
    box-shadow: 0 4px 12px rgba(15, 23, 42, 0.08);
}

.khs-holiday-calculator--ballpark .khs-holiday-calculator__tree-actions {
    margin-top: 12px;
    display: flex;
    justify-content: flex-end;
}

.khs-holiday-calculator--ballpark .khs-holiday-calculator__empty {
    font-size: 14px;
    color: var(--khs-holiday-muted);
}

.khs-holiday-calculator--ballpark .khs-holiday-calculator__results-header {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.khs-holiday-calculator--ballpark .khs-holiday-calculator__subtext {
    font-size: 13px;
    color: var(--khs-holiday-muted);
    margin: 6px 0 0;
    line-height: 1.5;
}

.khs-holiday-calculator--ballpark .khs-holiday-calculator__pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: #ecfeff;
    color: #0b534d;
    padding: 6px 12px;
    border-radius: 999px;
    font-weight: 600;
    font-size: 12px;
}

.khs-holiday-calculator--ballpark .khs-holiday-calculator__result-grid {
    display: grid;
    gap: 14px;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    margin-bottom: 16px;
}

.khs-holiday-calculator--ballpark .khs-holiday-calculator__followup {
    display: grid;
    gap: 20px;
    margin-top: 20px;
}

.khs-holiday-calculator--ballpark .khs-holiday-calculator__result-card {
    border: 1px solid var(--khs-holiday-line);
    border-radius: 14px;
    padding: 18px;
    background: #ffffff;
}

.khs-holiday-calculator--ballpark .khs-holiday-calculator__result-title {
    margin: 0 0 8px;
    font-size: 16px;
    font-weight: 700;
}

.khs-holiday-calculator--ballpark .khs-holiday-calculator__result-value {
    font-size: clamp(22px, 4vw, 30px);
    font-weight: 800;
    color: var(--khs-holiday-ink);
}

.khs-holiday-calculator--ballpark .khs-holiday-calculator__result-note {
    margin-top: 6px;
    font-size: 13px;
    color: var(--khs-holiday-muted);
}

.khs-holiday-calculator--ballpark .khs-holiday-calculator__result-list {
    margin: 0;
    padding-left: 18px;
    font-size: 13px;
    color: var(--khs-holiday-muted);
    line-height: 1.6;
}

.khs-holiday-calculator--ballpark .khs-holiday-calculator__table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 10px;
    font-size: 13px;
}

.khs-holiday-calculator--ballpark .khs-holiday-calculator__table th,
.khs-holiday-calculator--ballpark .khs-holiday-calculator__table td {
    text-align: left;
    padding: 10px 8px;
    border-bottom: 1px solid var(--khs-holiday-line);
}

.khs-holiday-calculator--ballpark .khs-holiday-calculator__table th {
    color: #334155;
    font-weight: 700;
}

.khs-holiday-calculator--ballpark .khs-holiday-calculator__cta-row {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 16px;
}

.khs-holiday-calculator--ballpark .khs-holiday-calculator__list {
    margin: 0;
    padding-left: 20px;
    line-height: 1.7;
    color: var(--khs-holiday-muted);
    font-size: 14px;
}

@media (max-width: 900px) {
    .khs-holiday-calculator--ballpark .khs-holiday-calculator__hero {
        grid-template-columns: 1fr;
    }

    .khs-holiday-calculator--ballpark .khs-holiday-calculator__result-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .khs-holiday-calculator--ballpark .khs-holiday-calculator__followup {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 640px) {
    .khs-holiday-calculator--ballpark {
        padding: 16px;
    }

    .khs-holiday-calculator--ballpark .khs-holiday-calculator__card {
        padding: 18px;
    }

    .khs-holiday-calculator--ballpark .khs-holiday-calculator__result-grid {
        grid-template-columns: 1fr;
    }

    .khs-holiday-calculator--ballpark .khs-holiday-calculator__cta-row {
        flex-direction: column;
        align-items: stretch;
    }
}

@media (max-width: 900px) {
    .khs-holiday-calculator__grid--two {
        grid-template-columns: 1fr;
    }

    .khs-holiday-calculator__calendar {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 520px) {
    .khs-holiday-calculator__calendar {
        grid-template-columns: 1fr;
    }
}
