/* ============================================
   ELEGANT VISIT — Page-Specific Styles
   ============================================ */

/* --- Services Page --- */
.service-detail {
    padding: var(--space-3xl) 0;
}

.service-detail:nth-child(even) {
    background: var(--color-bg-alt);
}

/* --- Shared Layout: Split Section (Image/Text) --- */
.split-section {
    padding: var(--space-3xl) 0;
}

.split-section--alt {
    background: var(--color-bg-alt);
}

.split-section__content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-3xl);
    align-items: center;
    overflow: hidden;
}

.split-section__image {
    border-radius: var(--radius-xl);
    overflow: hidden;
    aspect-ratio: 4/3;
    background: linear-gradient(135deg, var(--color-bg-alt) 0%, var(--color-primary-light) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 280px;
    max-width: 100%;
}

.split-section__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.split-section__list {
    margin-top: var(--space-lg);
}

.split-section__list li {
    display: flex;
    align-items: flex-start;
    gap: var(--space-sm);
    padding: var(--space-xs) 0;
    color: var(--color-text-light);
    font-size: var(--text-sm);
    list-style: none;
}

.split-section__list li::before {
    content: '';
    display: inline-block;
    width: 18px;
    height: 18px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%234CAF50' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
    flex-shrink: 0;
    margin-top: 2px;
}

.split-section__list li svg {
    width: 18px;
    height: 18px;
    color: var(--color-success);
    flex-shrink: 0;
    margin-top: 2px;
}

/* Hide ::before when SVG is present */
.split-section__list li:has(svg)::before {
    display: none;
}

.service-detail {
    padding: 0;
}

.service-coming-soon {
    text-align: center;
    padding: var(--space-3xl);
    background: var(--color-bg-alt);
    border-radius: var(--radius-xl);
    border: 2px dashed var(--color-border);
}

@media (max-width: 1024px) {
    .service-detail__content {
        gap: var(--space-2xl);
    }
}

@media (max-width: 768px) {
    .service-detail__content {
        grid-template-columns: 1fr;
        direction: ltr;
    }

    .service-detail__content>div {
        direction: ltr;
    }

    .service-detail__image {
        display: none;
    }

    .about-story {
        grid-template-columns: 1fr;
    }

    .values-grid {
        grid-template-columns: 1fr 1fr;
    }
}

/* --- About Page --- */
.about-story {
    margin: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-3xl);
    align-items: center;
}

.about-story__image {
    border-radius: var(--radius-xl);
    overflow: hidden;
}

.about-story__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-xl);
}

.value-card {
    text-align: center;
    padding: var(--space-xl);
}

.value-card__icon {
    width: 64px;
    height: 64px;
    margin: 0 auto var(--space-md);
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-primary-bg);
    border-radius: var(--radius-full);
    color: var(--color-primary);
}

.value-card__icon svg {
    width: 28px;
    height: 28px;
}

@media (max-width: 768px) {
    .split-section__content {
        grid-template-columns: 1fr;
        direction: ltr;
    }

    .split-section__image {
        display: none;
    }
}

/* --- FAQ Page --- */
.faq-categories {
    display: flex;
    gap: var(--space-sm);
    flex-wrap: wrap;
    margin-bottom: var(--space-2xl);
    justify-content: center;
}

.faq-categories__btn {
    padding: var(--space-sm) var(--space-lg);
    border-radius: var(--radius-full);
    font-size: var(--text-sm);
    font-weight: 500;
    background: var(--color-bg-alt);
    color: var(--color-text-light);
    border: 1px solid var(--color-border);
    cursor: pointer;
    transition: all var(--duration-fast);
}

.faq-categories__btn:hover,
.faq-categories__btn--active {
    background: var(--color-primary);
    color: var(--color-white);
    border-color: var(--color-primary);
}

/* --- Contact Page --- */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-3xl);
}

.contact-info-cards {
    display: flex;
    flex-direction: column;
    gap: var(--space-lg);
}

.contact-card {
    display: flex;
    align-items: flex-start;
    gap: var(--space-md);
    padding: var(--space-lg);
    background: var(--color-white);
    border-radius: var(--radius-md);
    border: 1px solid var(--color-border-light);
}

.contact-card__icon {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-primary-bg);
    border-radius: var(--radius-md);
    color: var(--color-primary);
    flex-shrink: 0;
}

.contact-card__icon svg {
    width: 20px;
    height: 20px;
}

.contact-card__label {
    font-size: var(--text-xs);
    color: var(--color-text-muted);
    text-transform: uppercase;
    letter-spacing: var(--tracking-wider);
    margin-bottom: 2px;
}

.contact-card__value {
    font-weight: 500;
    color: var(--color-text);
}

@media (max-width: 768px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }
}

/* --- Careers Page --- */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-xl);
}

.benefit-card {
    text-align: center;
    padding: var(--space-xl);
    background: var(--color-white);
    border-radius: var(--radius-lg);
    border: 1px solid var(--color-border-light);
}

.benefit-card__icon {
    width: 56px;
    height: 56px;
    margin: 0 auto var(--space-md);
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-primary-bg);
    border-radius: var(--radius-md);
    color: var(--color-primary);
}

.benefit-card__icon svg {
    width: 24px;
    height: 24px;
}

.career-form {
    max-width: 640px;
    margin: 0 auto;
    background: var(--color-white);
    padding: var(--space-2xl);
    border-radius: var(--radius-lg);
    border: 1px solid var(--color-border-light);
}

@media (max-width: 768px) {
    .benefits-grid {
        grid-template-columns: 1fr;
    }
}

/* --- Login Page --- */
.login-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: calc(100vh - var(--header-height));
    padding-top: var(--header-height);
}

.login-card {
    width: 100%;
    max-width: 420px;
    padding: var(--space-2xl);
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: var(--radius-xl);
    border: 1px solid rgba(255, 255, 255, 0.5);
    box-shadow: var(--shadow-xl);
}

.login-card__title {
    text-align: center;
    font-family: var(--font-display);
    font-size: var(--text-2xl);
    margin-bottom: var(--space-xs);
}

.login-card__subtitle {
    text-align: center;
    font-size: var(--text-sm);
    color: var(--color-text-muted);
    margin-bottom: var(--space-xl);
}

.role-selector {
    display: flex;
    gap: var(--space-sm);
    margin-bottom: var(--space-xl);
}

.role-selector__btn {
    flex: 1;
    padding: var(--space-md);
    border-radius: var(--radius-md);
    font-size: var(--text-sm);
    font-weight: 500;
    background: var(--color-bg-alt);
    color: var(--color-text-light);
    border: 1px solid var(--color-border);
    cursor: pointer;
    text-align: center;
    transition: all var(--duration-fast);
}

.role-selector__btn:hover,
.role-selector__btn--active {
    background: var(--color-primary);
    color: var(--color-white);
    border-color: var(--color-primary);
}

.login-card__footer {
    text-align: center;
    margin-top: var(--space-lg);
    font-size: var(--text-sm);
    color: var(--color-text-muted);
}

.login-card__footer a {
    color: var(--color-primary);
    font-weight: 500;
}

/* --- Estimate Page --- */
.estimate-page {
    padding-top: calc(var(--header-height) + var(--space-xl));
    /* reduced from 2xl */
    padding-bottom: var(--space-2xl);
    /* reduced from 3xl */
    min-height: 100vh;
    background: var(--color-bg-alt);
}

.estimate-layout {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: var(--space-md);
    /* reduced from xl */
    align-items: start;
    max-width: 1060px;
    margin: 0 auto;
}

.estimate-container {
    background: var(--color-white);
    border-radius: var(--radius-xl);
    padding: var(--space-xl);
    /* reduced from 2xl */
    box-shadow: var(--shadow-md);
}

.estimate-options {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
    /* reduced from md */
}

/* ── Frequency Pills ── */
.frequency-section {
    margin-top: var(--space-lg);
    /* reduced from xl */
    padding-top: var(--space-lg);
    /* reduced from xl */
    border-top: 1px solid var(--color-border-light);
}

.frequency-pills {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-xs);
    /* reduced from sm */
}

.frequency-pill {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    padding: var(--space-sm);
    /* reduced from md sm */
    border: 2px solid var(--color-border);
    border-radius: var(--radius-sm);
    /* reduced from md */
    background: var(--color-white);
    cursor: pointer;
    transition: all var(--duration-fast) var(--ease-out);
}

.frequency-pill:hover {
    border-color: var(--color-primary-light);
    background: var(--color-primary-bg);
}

.frequency-pill--active {
    border-color: var(--color-primary);
    background: var(--color-primary-bg);
}

.frequency-pill__label {
    font-weight: 600;
    font-size: var(--text-sm);
    color: var(--color-text);
}

.frequency-pill__badge {
    font-size: 11px;
    color: var(--color-text-muted);
}

.frequency-pill__badge--save {
    color: var(--color-success);
    font-weight: 600;
}

/* ── Counter Cards (+/−) ── */
.counter-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-md);
    /* reduced from lg */
}

.counter-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-sm);
    /* reduced from md */
    padding: var(--space-lg);
    /* reduced from xl */
    border: 1px solid var(--color-border-light);
    border-radius: var(--radius-md);
    /* reduced from lg */
    background: var(--color-bg-alt);
}

.counter-card__icon {
    color: var(--color-primary);
}

.counter-card__icon svg {
    width: 28px;
    height: 28px;
}

.counter-card__label {
    font-weight: 600;
    font-size: var(--text-sm);
    /* reduced from base */
    color: var(--color-text);
}

.counter-card__controls {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    /* reduced from lg */
}

.counter-btn {
    width: 32px;
    /* reduced from 40px */
    height: 32px;
    border-radius: var(--radius-full);
    border: 2px solid var(--color-border);
    background: var(--color-white);
    font-size: 18px;
    /* reduced from 20px */
    font-weight: 600;
    color: var(--color-text);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--duration-fast);
    line-height: 1;
}

.counter-btn:hover {
    border-color: var(--color-primary);
    color: var(--color-primary);
    background: var(--color-primary-bg);
}

.counter-btn:active {
    transform: scale(0.9);
}

.counter-card__value {
    font-size: var(--text-xl);
    /* reduced from 2xl */
    font-weight: 700;
    font-family: var(--font-display);
    color: var(--color-text);
    min-width: 24px;
    /* reduced from 32px */
    text-align: center;
    transition: transform 0.15s var(--ease-out);
}

.counter-card__value--pop {
    transform: scale(1.3);
}

/* ── Add-on Grid (4 columns) ── */
.addon-grid--expanded {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-md);
}

@media (max-width: 992px) {
    .addon-grid--expanded {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .addon-grid--expanded {
        grid-template-columns: 1fr;
    }
}

.addon-card {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: var(--space-sm);
    padding: var(--space-lg);
    aspect-ratio: 1 / 1;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    cursor: pointer;
    transition: all var(--duration-fast);
    text-align: left;
    position: relative;
    background: var(--color-white);
}

.addon-card:hover {
    border-color: var(--color-primary-light);
    background: var(--color-bg-alt);
    transform: translateY(-2px);
    box-shadow: var(--shadow-sm);
}

.addon-card--selected {
    border-color: var(--color-primary);
    background: var(--color-bg-alt);
    box-shadow: 0 0 0 1px var(--color-primary);
}

.addon-card__check {
    position: absolute;
    top: var(--space-md);
    right: var(--space-md);
    width: 24px;
    height: 24px;
    border-radius: 4px;
    border: 2px solid var(--color-border);
    display: flex;
    align-items: center;
    justify-content: center;
    color: transparent;
    transition: all var(--duration-fast);
}

.addon-card__check svg {
    opacity: 0;
    transition: opacity var(--duration-fast);
    width: 14px;
    height: 14px;
}

.addon-card--selected .addon-card__check {
    background: var(--color-primary);
    border-color: var(--color-primary);
    color: var(--color-white);
}

.addon-card--selected .addon-card__check svg {
    opacity: 1;
}

.addon-card__icon {
    color: var(--color-primary);
    margin-bottom: var(--space-sm);
}

.addon-card__icon svg {
    width: 28px;
    height: 28px;
}

.addon-card__name {
    font-weight: 600;
    font-size: var(--text-sm);
    color: var(--color-text);
}


.addon-card__price {
    font-size: var(--text-xs);
    color: var(--color-text-muted);
}

/* ── Live Price Sidebar ── */
.price-sidebar {
    position: sticky;
    top: calc(var(--header-height) + var(--space-xl));
    background: var(--color-white);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
    overflow: hidden;
}

.price-sidebar__header {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    padding: var(--space-lg) var(--space-xl);
    background: var(--color-primary);
    color: var(--color-white);
    font-weight: 600;
    font-size: var(--text-base);
}

.price-sidebar__body {
    padding: var(--space-lg) var(--space-xl);
}

.price-sidebar__empty {
    text-align: center;
    color: var(--color-text-muted);
    font-size: var(--text-sm);
    padding: var(--space-xl) 0;
}

.price-sidebar__row {
    display: flex;
    justify-content: space-between;
    padding: 6px 0;
    font-size: var(--text-sm);
    color: var(--color-text-light);
}

.price-sidebar__row--sub {
    font-size: var(--text-xs);
    color: var(--color-text-muted);
    padding-top: 0;
}

.price-sidebar__row--discount {
    color: var(--color-success);
    font-weight: 500;
}

.price-sidebar__divider {
    height: 1px;
    background: var(--color-border-light);
    margin: var(--space-sm) 0;
}

.price-sidebar__footer {
    padding: var(--space-lg) var(--space-xl);
    border-top: 2px solid var(--color-primary);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.price-sidebar__total-label {
    font-weight: 600;
    font-size: var(--text-sm);
    color: var(--color-text);
}

.price-sidebar__total-price {
    font-family: var(--font-display);
    font-size: var(--text-2xl);
    font-weight: 700;
    color: var(--color-primary);
    transition: transform 0.2s var(--ease-out);
}

.price-sidebar__total-price--pop {
    animation: pricePop 0.3s var(--ease-out);
}

@keyframes pricePop {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.15);
        color: var(--color-success);
    }

    100% {
        transform: scale(1);
    }
}

/* ── Coupon ── */
.coupon-section {
    border-top: 1px solid var(--color-border-light);
    padding-top: var(--space-lg);
}

.coupon-input-group {
    display: flex;
    gap: var(--space-sm);
}

.coupon-input {
    flex: 1;
}

.coupon-btn {
    white-space: nowrap;
    min-width: 80px;
}

.coupon-message {
    margin-top: var(--space-sm);
    font-size: var(--text-sm);
}

.coupon-success {
    color: var(--color-success);
    font-weight: 500;
}

.coupon-error {
    color: var(--color-error);
}

/* ── Estimate summary discount row ── */
.estimate-row--discount {
    color: var(--color-success);
    font-weight: 500;
}

/* ── Option card icon ── */
.option-card__icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-primary-bg);
    border-radius: var(--radius-md);
    color: var(--color-primary);
    flex-shrink: 0;
}

/* ── Responsive ── */
@media (max-width: 1024px) {
    .estimate-layout {
        grid-template-columns: 1fr;
    }

    .price-sidebar {
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        top: auto;
        border-radius: var(--radius-xl) var(--radius-xl) 0 0;
        z-index: 100;
        box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.1);
    }

    .price-sidebar__header {
        display: none;
    }

    .price-sidebar__body {
        display: none;
    }

    .price-sidebar__footer {
        border-top: none;
    }

    .estimate-container {
        padding-bottom: calc(var(--space-2xl) + 80px);
    }
}

@media (max-width: 768px) {
    .frequency-pills {
        grid-template-columns: repeat(2, 1fr);
    }

    .estimate-container {
        padding: var(--space-xl);
    }
}

/* --- Service Areas Page --- */
.areas-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-xl);
}

.area-card {
    text-align: center;
    padding: var(--space-2xl);
    background: var(--color-white);
    border-radius: var(--radius-lg);
    border: 1px solid var(--color-border-light);
    transition: transform var(--duration-normal) var(--ease-out), box-shadow var(--duration-normal);
}

.area-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.area-card__name {
    font-family: var(--font-display);
    font-size: var(--text-xl);
    font-weight: 600;
    margin-bottom: var(--space-sm);
}

.area-card__desc {
    font-size: var(--text-sm);
    color: var(--color-text-light);
}

@media (max-width: 768px) {
    .areas-grid {
        grid-template-columns: 1fr;
    }
}

/* --- Estimate: Option Cards --- */
.option-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-sm);
    padding: var(--space-lg) var(--space-md);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    cursor: pointer;
    transition: all var(--duration-fast);
    text-align: center;
    background: var(--color-white);
}

.option-card:hover {
    border-color: var(--color-primary-light);
    background: var(--color-bg-alt);
    transform: translateY(-2px);
    box-shadow: var(--shadow-sm);
}

.option-card--selected {
    border-color: var(--color-primary);
    background: var(--color-bg-alt);
    box-shadow: var(--shadow-md);
}

.option-card__radio {
    width: 22px;
    height: 22px;
    border-radius: var(--radius-full);
    border: 2px solid var(--color-border);
    flex-shrink: 0;
    position: relative;
    transition: border-color var(--duration-fast);
    margin: 0 auto;
}

.option-card--selected .option-card__radio {
    border-color: var(--color-primary);
}

.option-card--selected .option-card__radio::after {
    content: '';
    width: 12px;
    height: 12px;
    background: var(--color-primary);
    border-radius: var(--radius-full);
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.option-card__content {
    display: flex;
    flex-direction: column;
    gap: var(--space-xs);
}

.option-card__title {
    font-weight: 600;
    color: var(--color-text);
    margin-bottom: 2px;
}

.option-card__desc {
    font-size: var(--text-sm);
    color: var(--color-text-muted);
}

.option-card__price {
    font-weight: 600;
    color: var(--color-primary);
    white-space: nowrap;
}

/* --- Estimate: Summary Card --- */
.estimate-card {
    background: var(--color-bg-alt);
    border-radius: var(--radius-lg);
    padding: var(--space-xl);
    border: 1px solid var(--color-border-light);
}

.estimate-header {
    margin-bottom: var(--space-lg);
    padding-bottom: var(--space-lg);
    border-bottom: 1px solid var(--color-border);
}

.estimate-header__service {
    font-family: var(--font-display);
    font-size: var(--text-xl);
    font-weight: 600;
    color: var(--color-text);
    margin-bottom: var(--space-xs);
}

.estimate-header__details {
    font-size: var(--text-sm);
    color: var(--color-text-muted);
}

.estimate-breakdown {
    margin-bottom: var(--space-lg);
}

.estimate-row {
    display: flex;
    justify-content: space-between;
    padding: var(--space-sm) 0;
    font-size: var(--text-sm);
    color: var(--color-text-light);
}

.estimate-divider {
    height: 1px;
    background: var(--color-border-light);
    margin: var(--space-sm) 0;
}

.estimate-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: var(--space-lg);
    border-top: 2px solid var(--color-primary);
    font-weight: 600;
    font-size: var(--text-lg);
}

.estimate-total__price {
    font-family: var(--font-display);
    font-size: var(--text-3xl);
    color: var(--color-primary);
}

.estimate-note {
    margin-top: var(--space-md);
    font-size: var(--text-xs);
    color: var(--color-text-muted);
    text-align: center;
}

/* --- ZIP Checker Result --- */
.zip-checker {
    display: flex;
    gap: var(--space-md);
    max-width: 420px;
    margin: 0 auto;
}

.zip-checker__input {
    flex: 1;
    text-align: center;
    font-size: var(--text-lg);
    letter-spacing: var(--tracking-wide);
}

.zip-checker__result {
    max-width: 500px;
    margin: var(--space-lg) auto 0;
    padding: var(--space-lg);
    border-radius: var(--radius-md);
    font-size: var(--text-sm);
    line-height: var(--leading-relaxed);
    text-align: center;
}

.zip-checker__result--success {
    background: var(--color-success-light);
    color: #22543D;
    border: 1px solid rgba(56, 161, 105, 0.2);
}

.zip-checker__result--not-found {
    background: #FEF3CD;
    color: #856404;
    border: 1px solid rgba(221, 107, 32, 0.2);
}

.zip-checker__result--error {
    background: var(--color-error-light);
    color: #822727;
    border: 1px solid rgba(229, 62, 62, 0.2);
}

/* --- Form Error State --- */
.form__input--error {
    border-color: var(--color-error);
    box-shadow: 0 0 0 3px rgba(229, 62, 62, 0.1);
}

/* --- Button Success State --- */
.btn--success {
    background: var(--color-success);
    border-color: var(--color-success);
    color: var(--color-white);
    pointer-events: none;
}

/* --- Button Loading State --- */
.btn--loading {
    pointer-events: none;
    opacity: 0.85;
}

.btn-spinner {
    display: inline-block;
    width: 18px;
    height: 18px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-top-color: #fff;
    border-radius: 50%;
    animation: spin 0.6s linear infinite;
    vertical-align: middle;
    margin-right: 6px;
}

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

/* --- Wizard Error Message --- */
.wizard-error {
    background: #FEF2F2;
    color: #991B1B;
    border: 1px solid rgba(229, 62, 62, 0.2);
    border-radius: var(--radius-md);
    padding: var(--space-md) var(--space-lg);
    margin-top: var(--space-md);
    font-size: var(--text-sm);
    text-align: center;
    animation: slideDown 0.3s var(--ease-out);
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-8px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ── Booking Confirmation Card ── */
.wizard--submitted {
    animation: collapseIn 0.5s var(--ease-out);
}

@keyframes collapseIn {
    from {
        opacity: 0;
        transform: scale(0.95);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

.booking-confirmation {
    text-align: center;
    padding: var(--space-3xl) var(--space-xl);
}

.booking-confirmation__check {
    width: 72px;
    height: 72px;
    margin: 0 auto var(--space-xl);
}

.booking-confirmation__svg {
    width: 72px;
    height: 72px;
}

.booking-confirmation__svg circle {
    stroke-dasharray: 166;
    stroke-dashoffset: 166;
    animation: circleStroke 0.6s ease-out 0.1s forwards;
}

.booking-confirmation__tick {
    stroke-dasharray: 48;
    stroke-dashoffset: 48;
    animation: tickDraw 0.4s ease-out 0.5s forwards;
}

@keyframes circleStroke {
    to {
        stroke-dashoffset: 0;
    }
}

@keyframes tickDraw {
    to {
        stroke-dashoffset: 0;
    }
}

.booking-confirmation__title {
    font-family: var(--font-display);
    font-size: var(--text-2xl);
    font-weight: 600;
    color: var(--color-success);
    margin-bottom: var(--space-md);
}

.booking-confirmation__text {
    font-size: var(--text-base);
    color: var(--color-text-light);
    line-height: var(--leading-relaxed);
    margin-bottom: var(--space-sm);
    max-width: 480px;
    margin-left: auto;
    margin-right: auto;
}

.booking-confirmation__subtext {
    font-size: var(--text-sm);
    color: var(--color-text-muted);
    margin-bottom: var(--space-2xl);
}

.booking-confirmation__reset {
    display: inline-block;
    padding: var(--space-sm) var(--space-lg);
    font-size: var(--text-sm);
    font-weight: 500;
    color: var(--color-primary);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-full);
    text-decoration: none;
    transition: all 0.2s;
}

.booking-confirmation__reset:hover {
    background: var(--color-primary-bg);
    border-color: var(--color-primary);
}

/* --- Wizard Step Done (from JS) --- */
.wizard__step--done .wizard__step-number {
    background: var(--color-success);
    border-color: var(--color-success);
    color: var(--color-white);
}

.wizard__step--done .wizard__step-label {
    color: var(--color-success);
}

.wizard__connector--done {
    background: var(--color-success);
}

/* ============================================
   CF7 Form Override — match Elegant Visit style
   ============================================ */
.wpcf7-form .form__group {
    margin-bottom: var(--space-lg);
}

.wpcf7-form .form__label {
    display: block;
    font-size: var(--text-sm);
    font-weight: 500;
    color: var(--color-text-light);
    margin-bottom: var(--space-xs);
}

.wpcf7-form .wpcf7-form-control {
    width: 100%;
    padding: var(--space-md);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    font-size: var(--text-base);
    font-family: var(--font-body);
    color: var(--color-text);
    background: var(--color-white);
    transition: border-color var(--duration-fast) var(--ease-out),
        box-shadow var(--duration-fast) var(--ease-out);
    box-sizing: border-box;
}

.wpcf7-form .wpcf7-form-control:focus {
    outline: none;
    border-color: var(--color-primary);
    box-shadow: 0 0 0 3px rgba(44, 82, 130, 0.1);
}

.wpcf7-form .wpcf7-textarea {
    resize: vertical;
    min-height: 80px;
}

.wpcf7-form .wpcf7-select {
    appearance: none;
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%23666' viewBox='0 0 24 24'%3E%3Cpath d='M7 10l5 5 5-5z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    padding-right: 36px;
}

/* CF7 submit button — match .btn--accent */
.wpcf7-form .wpcf7-submit {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: var(--space-md) var(--space-xl);
    font-size: var(--text-base);
    font-weight: 600;
    font-family: var(--font-body);
    color: var(--color-white);
    background: var(--color-accent);
    border: 2px solid var(--color-accent);
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: all var(--duration-fast) var(--ease-out);
    width: 100%;
    margin-top: var(--space-md);
}

.wpcf7-form .wpcf7-submit:hover {
    opacity: 0.9;
    transform: translateY(-1px);
    box-shadow: var(--shadow-md);
}

.wpcf7-form .wpcf7-submit:disabled {
    opacity: 0.6;
    pointer-events: none;
}

/* CF7 validation error */
.wpcf7-form .wpcf7-not-valid {
    border-color: var(--color-error);
    box-shadow: 0 0 0 3px rgba(229, 62, 62, 0.1);
}

.wpcf7-form .wpcf7-not-valid-tip {
    color: var(--color-error);
    font-size: var(--text-xs);
    margin-top: var(--space-xs);
    display: block;
}

/* CF7 response output */
.wpcf7-form .wpcf7-response-output {
    margin: var(--space-lg) 0 0;
    padding: var(--space-md) var(--space-lg);
    border-radius: var(--radius-md);
    font-size: var(--text-sm);
    text-align: center;
}

.wpcf7-form.sent .wpcf7-response-output {
    border-color: var(--color-success);
    background: rgba(56, 161, 105, 0.05);
    color: #22543D;
}

.wpcf7-form.invalid .wpcf7-response-output,
.wpcf7-form.failed .wpcf7-response-output {
    border-color: var(--color-error);
    background: rgba(229, 62, 62, 0.05);
    color: #991B1B;
}

/* CF7 spinner */
.wpcf7-form .wpcf7-spinner {
    margin: 0 0 0 var(--space-sm);
}

/* Hide CF7 hidden inputs wrapper */
.wpcf7-form input[type="hidden"] {
    display: none;
}

/* Grid layout for CF7 form fields */
.wpcf7-form .grid {
    display: grid;
    gap: var(--space-lg);
}

.wpcf7-form .grid--2 {
    grid-template-columns: 1fr 1fr;
}

@media (max-width: 768px) {
    .wpcf7-form .grid--2 {
        grid-template-columns: 1fr;
    }
}
/* ============================================
   HOME REBUILD — V10 TEMPLATE TRANSFER
   ============================================ */
.home .home-rebuilt {
    background: var(--color-bg);
}

.home .home-rebuilt__section {
    padding: clamp(64px, 8vw, 116px) 0;
}

.home .home-rebuilt__sec-inner,
.home .home-rebuilt__hero-inner,
.home .home-rebuilt__book-inner,
.home .home-rebuilt__areas-inner {
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}

.home .home-rebuilt__tag {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin: 0 0 16px;
    color: var(--color-accent);
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    font-weight: 700;
}

.home .home-rebuilt__tag::before {
    content: '';
    width: 28px;
    height: 1.5px;
    background: currentColor;
}

.home .home-rebuilt__tag--light {
    color: var(--color-accent-light);
}

.home .home-rebuilt__sec-h {
    margin: 0 0 18px;
    font-family: var(--font-display);
    font-size: clamp(2.2rem, 4.8vw, 4.25rem);
    line-height: 0.98;
    letter-spacing: -0.03em;
    color: var(--color-text);
}

.home .home-rebuilt__sec-h--light {
    color: #fff;
}

.home .home-rebuilt__sec-sub {
    margin: 0;
    max-width: 560px;
    font-size: clamp(1rem, 1.3vw, 1.14rem);
    line-height: 1.72;
    color: var(--color-text-light);
}

.home .home-rebuilt__sec-sub--light {
    color: rgba(255, 255, 255, 0.66);
}

/* HERO */
.home .home-rebuilt__hero {
    position: relative;
    overflow: hidden;
    padding: calc(var(--header-height) + 42px) 0 clamp(50px, 7vw, 84px);
    background:
        radial-gradient(ellipse 58% 80% at 82% 34%, rgba(196, 154, 60, 0.1), transparent),
        radial-gradient(ellipse 45% 60% at 14% 72%, rgba(27, 67, 50, 0.09), transparent),
        var(--color-bg);
}

.home .home-rebuilt__hero::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(0, 0, 0, 0.1), transparent);
}

.home .home-rebuilt__hero-inner {
    display: grid;
    grid-template-columns: minmax(0, 1.12fr) minmax(0, 0.88fr);
    gap: clamp(26px, 4vw, 68px);
    align-items: center;
}

.home .home-rebuilt__hero-copy,
.home .home-rebuilt__hero-visual {
    min-width: 0;
}

.home .home-rebuilt__kicker {
    margin: 0 0 16px;
    font-size: 0.73rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    color: rgba(27, 67, 50, 0.84);
}

.home .home-rebuilt__rating {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 16px;
    margin-bottom: 24px;
    border-radius: 999px;
    border: 1px solid rgba(0, 0, 0, 0.07);
    background: #fff;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04);
}

.home .home-rebuilt__stars {
    color: var(--color-accent);
    letter-spacing: 0.08em;
    font-size: 0.72rem;
}

.home .home-rebuilt__rating-main {
    color: var(--color-text);
    font-size: 0.82rem;
    font-weight: 700;
}

.home .home-rebuilt__rating-sub {
    color: var(--color-text-muted);
    font-size: 0.75rem;
}

.home .home-rebuilt__title {
    margin: 0 0 20px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    font-family: var(--font-display);
    font-size: clamp(2.75rem, 6.4vw, 5rem);
    line-height: 1.02;
    letter-spacing: -0.026em;
    color: var(--color-primary-light);
    text-shadow: 0 10px 26px rgba(27, 67, 50, 0.12);
    overflow: visible;
}

.home .home-rebuilt__title>span {
    display: inline-block;
    max-width: 100%;
    padding-right: 0.08em;
}

.home .home-rebuilt__title-gradient {
    margin-top: 0.05em;
    font-style: italic;
    padding-bottom: 0.07em;
    padding-right: 0.1em;
    padding-left: 0.01em;
    background: linear-gradient(120deg, #2D6A4F 0%, #40916C 56%, #C49A3C 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
}

.home .home-rebuilt__subtitle {
    margin: 0 0 28px;
    max-width: 560px;
    color: var(--color-text-light);
    font-size: clamp(1rem, 1.22vw, 1.14rem);
    line-height: 1.72;
}

.home .home-rebuilt__badges {
    margin: 0 0 28px;
    padding: 0;
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.home .home-rebuilt__badges li {
    display: inline-flex;
    align-items: center;
    padding: 7px 14px;
    border-radius: 999px;
    border: 1px solid rgba(27, 67, 50, 0.12);
    background: rgba(27, 67, 50, 0.06);
    color: var(--color-primary);
    font-size: 0.79rem;
    font-weight: 600;
}

.home .home-rebuilt__hero-actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

.home .home-rebuilt__hero-note {
    margin: 14px 0 0;
    color: var(--color-text-muted);
    font-size: 0.82rem;
    line-height: 1.62;
    max-width: 570px;
}

.home .home-rebuilt__hero-photo {
    position: relative;
    margin: 0;
    width: 100%;
    aspect-ratio: 4 / 4.55;
    border-radius: 28px;
    overflow: hidden;
    box-shadow: 0 30px 76px rgba(0, 0, 0, 0.14), 0 8px 20px rgba(0, 0, 0, 0.08);
}

.home .home-rebuilt__hero-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transform: scale(1.02);
}

.home .home-rebuilt__hero-photo::after {
    content: '';
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(17, 17, 17, 0.03), rgba(17, 17, 17, 0.2)),
        radial-gradient(ellipse 55% 40% at 80% 12%, rgba(255, 255, 255, 0.22), transparent);
    pointer-events: none;
}

.home .home-rebuilt__hero-chip {
    position: absolute;
    left: 18px;
    right: 18px;
    bottom: 18px;
    z-index: 2;
    padding: 10px 14px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.66);
    background: rgba(255, 255, 255, 0.9);
    color: var(--color-text);
    font-size: 0.78rem;
    font-weight: 600;
    text-align: center;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

/* TRUST STRIP */
.home .home-rebuilt__proof {
    border-top: 1px solid var(--color-border-light);
    border-bottom: 1px solid var(--color-border-light);
    background: var(--color-bg-alt);
}

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

.home .home-rebuilt__proof-list li {
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.home .home-rebuilt__proof-list strong {
    color: var(--color-primary);
    font-family: var(--font-display);
    font-size: clamp(1.15rem, 2.2vw, 1.7rem);
    line-height: 1;
}

.home .home-rebuilt__proof-list span {
    color: var(--color-text-light);
    font-size: 0.84rem;
}

/* DIFFERENCE */
.home .home-rebuilt__diff-section {
    background: var(--color-bg);
}

.home .home-rebuilt__diff {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
    gap: clamp(28px, 6vw, 84px);
    align-items: center;
}

.home .home-rebuilt__diff-left {
    min-width: 0;
}

.home .home-rebuilt__values-list {
    margin-top: 30px;
    display: flex;
    flex-direction: column;
}

.home .home-rebuilt__val-item {
    display: flex;
    gap: 18px;
    align-items: flex-start;
    padding: 20px 24px;
    border-radius: 16px;
    transition: background-color var(--duration-normal) var(--ease-out), transform var(--duration-normal) var(--ease-out);
}

.home .home-rebuilt__val-item:hover {
    background: rgba(0, 0, 0, 0.03);
    transform: translateX(6px);
}

.home .home-rebuilt__val-icon {
    width: 46px;
    height: 46px;
    border-radius: 12px;
    flex-shrink: 0;
    display: grid;
    place-items: center;
    background: rgba(196, 154, 60, 0.2);
    color: var(--color-accent-dark);
    font-weight: 700;
    transition: background-color var(--duration-normal) var(--ease-out), color var(--duration-normal) var(--ease-out), transform var(--duration-normal) var(--ease-out);
}

.home .home-rebuilt__val-item:hover .home-rebuilt__val-icon {
    background: var(--color-accent);
    color: #fff;
    transform: scale(1.05);
}

.home .home-rebuilt__val-item h3 {
    margin: 0 0 4px;
    font-size: 1rem;
    color: var(--color-text);
}

.home .home-rebuilt__val-item p {
    margin: 0;
    color: var(--color-text-muted);
    line-height: 1.6;
    font-size: 0.92rem;
}

.home .home-rebuilt__diff-img {
    position: relative;
    border-radius: 28px;
    overflow: hidden;
    width: 100%;
    aspect-ratio: 4 / 5;
    background: linear-gradient(160deg, var(--color-bg-alt), rgba(196, 154, 60, 0.16));
}

.home .home-rebuilt__diff-photo {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.home .home-rebuilt__diff-stats {
    position: absolute;
    left: 22px;
    right: 22px;
    bottom: 22px;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 2px;
}

.home .home-rebuilt__ds {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 16px 8px;
    text-align: center;
}

.home .home-rebuilt__ds:first-child {
    border-radius: 14px 0 0 14px;
}

.home .home-rebuilt__ds:last-child {
    border-radius: 0 14px 14px 0;
}

.home .home-rebuilt__ds-n {
    font-family: var(--font-display);
    font-size: clamp(1.45rem, 2.5vw, 2rem);
    line-height: 1;
    color: var(--color-text);
}

.home .home-rebuilt__count {
    font-variant-numeric: tabular-nums;
}

.home .home-rebuilt__ds-n sup {
    font-size: 0.5em;
    color: var(--color-accent);
}

.home .home-rebuilt__ds-l {
    margin-top: 4px;
    font-size: 0.63rem;
    color: var(--color-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

/* SERVICES */
.home .home-rebuilt__services {
    background: var(--color-bg-alt);
}

.home .home-rebuilt__bento {
    margin-top: 54px;
    display: grid;
    grid-template-columns: 1.3fr 1fr 1fr;
    grid-template-rows: auto auto;
    gap: 16px;
}

.home .home-rebuilt__bcard {
    position: relative;
    overflow: hidden;
    border-radius: 24px;
    background: #fff;
    border: 1px solid rgba(0, 0, 0, 0.06);
    padding: 44px 40px;
    transition: transform var(--duration-normal) var(--ease-spring), box-shadow var(--duration-normal) var(--ease-out);
}

.home .home-rebuilt__bcard:hover {
    transform: translateY(-5px);
    box-shadow: 0 22px 52px rgba(0, 0, 0, 0.08);
}

.home .home-rebuilt__bc-1 {
    grid-column: 1;
    grid-row: 1 / 3;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    color: #fff;
    border: none;
    background:
        radial-gradient(circle at 82% 86%, rgba(218, 182, 99, 0.22), transparent 54%),
        linear-gradient(160deg, #174531 0%, #1B4332 80%);
}

.home .home-rebuilt__bc-1:hover {
    box-shadow: 0 26px 56px rgba(27, 67, 50, 0.28);
}

.home .home-rebuilt__bc-glow {
    position: absolute;
    right: -60px;
    bottom: -60px;
    width: 220px;
    height: 220px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(196, 154, 60, 0.2), transparent 70%);
    pointer-events: none;
}

.home .home-rebuilt__bc-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    margin-bottom: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #efe0bf;
}

.home .home-rebuilt__bc-icon svg {
    stroke: var(--color-primary);
}

.home .home-rebuilt__bc-1 .home-rebuilt__bc-icon {
    background: rgba(255, 255, 255, 0.1);
}

.home .home-rebuilt__bc-1 .home-rebuilt__bc-icon svg {
    stroke: rgba(255, 255, 255, 0.88);
}

.home .home-rebuilt__bc-2 {
    grid-column: 2;
}

.home .home-rebuilt__bc-3 {
    grid-column: 3;
}

.home .home-rebuilt__bc-4 {
    grid-column: 2 / 4;
    grid-row: 2;
    display: flex;
    align-items: center;
    gap: 40px;
    background: linear-gradient(to right, var(--color-bg-alt), #fff);
}

.home .home-rebuilt__bc-tag {
    margin-bottom: 8px;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.13em;
    text-transform: uppercase;
    color: rgba(27, 67, 50, 0.72);
}

.home .home-rebuilt__bc-1 .home-rebuilt__bc-tag {
    color: rgba(255, 255, 255, 0.52);
}

.home .home-rebuilt__bc-title {
    margin: 0 0 10px;
    font-family: var(--font-display);
    font-size: clamp(1.5rem, 2vw, 2.06rem);
    line-height: 1.1;
    letter-spacing: -0.02em;
    color: var(--color-text);
}

.home .home-rebuilt__bc-1 .home-rebuilt__bc-title {
    color: #fff;
}

.home .home-rebuilt__bc-desc {
    margin: 0;
    max-width: 350px;
    color: var(--color-text-light);
    line-height: 1.66;
}

.home .home-rebuilt__bc-1 .home-rebuilt__bc-desc {
    color: rgba(245, 238, 224, 0.8);
}

.home .home-rebuilt__bc-link {
    margin-top: 24px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--color-primary);
    font-weight: 500;
    transition: gap var(--duration-fast) var(--ease-out);
}

.home .home-rebuilt__bc-1 .home-rebuilt__bc-link {
    color: var(--color-accent-light);
}

.home .home-rebuilt__bc-link:hover {
    gap: 10px;
}

.home .home-rebuilt__bc-photo {
    width: 100%;
    margin-top: auto;
    height: clamp(180px, 20vw, 240px);
    border-radius: 18px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.16);
    box-shadow: 0 16px 36px rgba(0, 0, 0, 0.24);
    position: relative;
}

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

.home .home-rebuilt__bc-photo::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(16, 39, 30, 0.04), rgba(16, 39, 30, 0.34));
}

.home .home-rebuilt__bc-4-badge {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid rgba(196, 154, 60, 0.25);
    background: linear-gradient(135deg, var(--color-primary-light), var(--color-primary));
}

.home .home-rebuilt__bc-4-badge svg {
    stroke: var(--color-accent-light);
}

/* BEFORE / AFTER */
.home .home-rebuilt__results {
    position: relative;
    overflow: hidden;
    color: #fff;
    background:
        radial-gradient(120% 80% at 50% -12%, rgba(250, 247, 242, 0.08), transparent 62%),
        linear-gradient(160deg, #152019 0%, #141b16 52%, #1f1b14 100%);
}

.home .home-rebuilt__results::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 58% 52% at 14% 28%, rgba(45, 106, 79, 0.2), transparent 70%),
        radial-gradient(ellipse 52% 58% at 88% 72%, rgba(196, 154, 60, 0.18), transparent 72%);
    pointer-events: none;
}

.home .home-rebuilt__results .home-rebuilt__sec-inner {
    position: relative;
    z-index: 1;
    text-align: center;
}

.home .home-rebuilt__results .home-rebuilt__sec-sub {
    margin-left: auto;
    margin-right: auto;
}

.home .home-rebuilt__ba {
    position: relative;
    margin: 36px auto 0;
    width: min(980px, 100%);
    aspect-ratio: 16 / 10;
    border-radius: 26px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.16);
    box-shadow: 0 34px 84px rgba(0, 0, 0, 0.45);
}

.home .home-rebuilt__ba-layer {
    position: absolute;
    inset: 0;
}

.home .home-rebuilt__ba-layer img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.home .home-rebuilt__ba-layer--before {
    z-index: 1;
}

.home .home-rebuilt__ba-layer--after {
    clip-path: inset(0 0 0 50%);
    z-index: 2;
}

.home .home-rebuilt__ba-label {
    position: absolute;
    top: 18px;
    z-index: 4;
    border-radius: 999px;
    padding: 8px 14px;
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.home .home-rebuilt__ba-label--before {
    left: 18px;
    background: rgba(0, 0, 0, 0.44);
    color: rgba(255, 255, 255, 0.82);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
}

.home .home-rebuilt__ba-label--after {
    right: 18px;
    background: var(--color-primary);
    color: #fff;
}

.home .home-rebuilt__ba-handle {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 3px;
    transform: translateX(-50%);
    background: rgba(255, 255, 255, 0.92);
    z-index: 5;
    pointer-events: none;
}

.home .home-rebuilt__ba-handle::after {
    content: '↔';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 54px;
    height: 54px;
    border-radius: 50%;
    background: #fff;
    color: var(--color-text-light);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.28);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.14rem;
}

.home .home-rebuilt__ba-range {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    cursor: ew-resize;
    z-index: 6;
}

/* PROCESS */
.home .home-rebuilt__process {
    background: var(--color-bg);
    padding: 120px 64px;
}

.home .home-rebuilt__process-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.home .home-rebuilt__process-copy {
    max-width: 100%;
}

.home .home-rebuilt__process-h {
    margin: 0 0 20px;
    max-width: 100%;
    font-family: var(--font-display);
    font-weight: 800;
    font-size: clamp(34px, 4vw, 52px);
    line-height: 1.08;
    letter-spacing: -1.5px;
}

.home .home-rebuilt__process-sub {
    margin: 0 0 36px;
    max-width: 650px;
    font-size: 16px;
    line-height: 1.75;
    font-weight: 300;
    color: var(--color-text-light);
}

.home .home-rebuilt__process-btn {
    margin-top: 0;
    min-height: 0;
    min-width: 0;
    padding: 15px 36px;
    border: none;
    border-radius: 100px;
    font-size: 0.9375rem;
    font-weight: 600;
    letter-spacing: 0;
    line-height: 1;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: background 0.2s, transform 0.2s cubic-bezier(0.2, 0.9, 0.2, 1), box-shadow 0.2s;
}

.home .home-rebuilt__process-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 40px rgba(27, 67, 50, 0.22);
}

.home .home-rebuilt__steps {
    display: flex;
    flex-direction: column;
    margin-top: 0;
}

.home .home-rebuilt__step {
    display: flex;
    align-items: flex-start;
    gap: 22px;
    padding: 28px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    cursor: default;
    transition: padding-left 0.2s ease;
}

.home .home-rebuilt__step:hover {
    padding-left: 8px;
}

.home .home-rebuilt__step:first-child {
    padding-top: 0;
}

.home .home-rebuilt__step:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.home .home-rebuilt__step-num {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    display: grid;
    place-items: center;
    flex-shrink: 0;
    font-family: var(--font-sans);
    font-size: 13px;
    font-weight: 800;
    color: var(--color-accent-dark);
    background: #e8dcc0;
}

.home .home-rebuilt__step-body {
    padding-top: 0;
}

.home .home-rebuilt__step-body h3 {
    margin: 0 0 5px;
    font-size: 15.5px;
    line-height: 1.3;
    font-family: var(--font-display);
    font-weight: 700;
    color: var(--color-text);
}

.home .home-rebuilt__step-body p {
    margin: 0;
    color: var(--color-text-muted);
    line-height: 1.6;
    font-size: 13.5px;
    font-weight: 300;
    max-width: 560px;
}

/* BOOKING */
.home .home-rebuilt__booking {
    background: var(--color-bg-alt);
}

.home .home-rebuilt__book-inner {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.1fr);
    gap: clamp(30px, 6vw, 78px);
    align-items: start;
}

.home .home-rebuilt__book-left {
    position: sticky;
    top: calc(var(--header-height) + 18px);
}

.home .home-rebuilt__trust-items {
    margin: 30px 0 0;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 12px;
}

.home .home-rebuilt__trust-items li {
    position: relative;
    padding-left: 18px;
    color: var(--color-text-light);
}

.home .home-rebuilt__trust-items li::before {
    content: '';
    position: absolute;
    top: 0.6em;
    left: 0;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--color-accent);
}

.home .home-rebuilt__form-box {
    border-radius: 28px;
    border: 1px solid rgba(0, 0, 0, 0.06);
    background: #fff;
    box-shadow: 0 8px 48px rgba(0, 0, 0, 0.05);
    overflow: hidden;
}

.home .home-rebuilt__booking-widget {
    position: relative;
}

.home .home-rebuilt__form-hdr {
    position: relative;
    overflow: hidden;
    padding: 32px 40px 24px;
    background: linear-gradient(135deg, var(--color-primary), var(--color-primary-light) 50%, #40916C);
}

.home .home-rebuilt__form-hdr::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 60% 80% at 100% 0%, rgba(196, 154, 60, 0.24), transparent);
    pointer-events: none;
}

.home .home-rebuilt__form-hdr-t {
    margin: 0;
    position: relative;
    z-index: 1;
    color: #fff;
    font-family: var(--font-display);
    font-size: 1.45rem;
}

.home .home-rebuilt__form-hdr-s {
    margin: 5px 0 0;
    position: relative;
    z-index: 1;
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.82rem;
}

.home .home-rebuilt__form-total {
    position: absolute;
    right: 40px;
    top: 50%;
    transform: translateY(-50%);
    text-align: right;
    z-index: 1;
}

.home .home-rebuilt__form-total span {
    display: block;
    font-size: 0.66rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: rgba(255, 255, 255, 0.56);
}

.home .home-rebuilt__form-total strong {
    display: block;
    margin-top: 2px;
    color: var(--color-accent-light);
    font-family: var(--font-display);
    font-size: 1.54rem;
    line-height: 1;
}

.home .home-rebuilt__si {
    display: flex;
    align-items: center;
    gap: 0;
    padding: 0 40px;
    margin-top: -18px;
    margin-bottom: 30px;
    position: relative;
    z-index: 2;
}

.home .home-rebuilt__si-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    position: relative;
    z-index: 2;
}

.home .home-rebuilt__si-step>span {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 2px solid var(--color-border);
    background: #fff;
    display: grid;
    place-items: center;
    color: var(--color-text-muted);
    font-family: var(--font-display);
    font-size: 0.82rem;
    font-weight: 700;
    transition: all var(--duration-normal) var(--ease-spring);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.06);
}

.home .home-rebuilt__si-step small {
    color: var(--color-text-muted);
    font-size: 0.64rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.home .home-rebuilt__si-step--active>span {
    color: #fff;
    border-color: var(--color-primary);
    background: var(--color-primary);
    transform: scale(1.1);
    box-shadow: 0 4px 16px rgba(27, 67, 50, 0.3);
}

.home .home-rebuilt__si-step--active small {
    color: var(--color-primary);
}

.home .home-rebuilt__si-step--done>span {
    color: #fff;
    border-color: var(--color-accent);
    background: var(--color-accent);
}

.home .home-rebuilt__si-step--done small {
    color: var(--color-accent-dark);
}

.home .home-rebuilt__si-line {
    flex: 1;
    height: 2px;
    margin: 0 -4px 18px;
    background: var(--color-border);
    transition: background-color var(--duration-normal) var(--ease-out);
}

.home .home-rebuilt__si-line--done {
    background: var(--color-accent);
}

.home .home-rebuilt__form-body {
    padding: 0 40px 40px;
}

.home .home-rebuilt__pan {
    display: none;
    animation: homeRebuiltFadeUp 0.4s var(--ease-out);
}

.home .home-rebuilt__pan--active {
    display: block;
}

@keyframes homeRebuiltFadeUp {
    from {
        opacity: 0;
        transform: translateY(12px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.home .home-rebuilt__field-title {
    margin: 0 0 10px;
    color: var(--color-text-light);
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.home .home-rebuilt__chips {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    margin-bottom: 20px;
}

.home .home-rebuilt__chp {
    width: 100%;
    border: 1.5px solid rgba(0, 0, 0, 0.08);
    border-radius: 14px;
    background: var(--color-bg);
    padding: 14px 16px;
    text-align: left;
    transition: border-color var(--duration-fast) var(--ease-out), background-color var(--duration-fast) var(--ease-out), transform var(--duration-fast) var(--ease-out), box-shadow var(--duration-fast) var(--ease-out);
}

.home .home-rebuilt__chp:hover {
    border-color: var(--color-primary);
    transform: translateY(-1px);
}

.home .home-rebuilt__chp--active {
    border-color: var(--color-primary);
    background: rgba(27, 67, 50, 0.06);
    box-shadow: 0 4px 12px rgba(27, 67, 50, 0.1);
}

.home .home-rebuilt__chp-name {
    display: block;
    margin: 0 0 1px;
    color: var(--color-text);
    font-size: 0.92rem;
    font-weight: 700;
}

.home .home-rebuilt__chp-price {
    display: block;
    color: var(--color-text-muted);
    font-size: 0.8rem;
}

.home .home-rebuilt__chp--active .home-rebuilt__chp-price {
    color: var(--color-primary);
}

.home .home-rebuilt__fr-row {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 24px;
}

.home .home-rebuilt__fr-btn {
    padding: 8px 16px;
    border-radius: 999px;
    border: 1.5px solid rgba(0, 0, 0, 0.08);
    background: transparent;
    color: var(--color-text-light);
    font-size: 0.8rem;
    font-weight: 600;
}

.home .home-rebuilt__fr-btn b {
    color: var(--color-primary);
    font-weight: 700;
}

.home .home-rebuilt__fr-btn:hover {
    border-color: var(--color-primary);
    color: var(--color-primary);
}

.home .home-rebuilt__fr-btn--active {
    border-color: var(--color-primary);
    background: rgba(27, 67, 50, 0.08);
    color: var(--color-primary);
}

.home .home-rebuilt__btn-next,
.home .home-rebuilt__btn-back {
    width: 100%;
    border: none;
    border-radius: 14px;
    font-size: 1rem;
    cursor: pointer;
}

.home .home-rebuilt__btn-next {
    margin-top: 2px;
    padding: 15px;
    background: var(--color-primary);
    color: #fff;
    font-weight: 700;
    transition: transform var(--duration-fast) var(--ease-out), background-color var(--duration-fast) var(--ease-out), box-shadow var(--duration-fast) var(--ease-out);
}

.home .home-rebuilt__btn-next:hover {
    background: var(--color-primary-light);
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(27, 67, 50, 0.25);
}

.home .home-rebuilt__btn-back {
    margin-top: 8px;
    padding: 10px;
    background: transparent;
    color: var(--color-text-muted);
    font-size: 0.88rem;
    font-weight: 600;
}

.home .home-rebuilt__btn-back:hover {
    color: var(--color-text);
}

.home .home-rebuilt__frow {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    margin-bottom: 12px;
}

.home .home-rebuilt__ff {
    display: flex;
    flex-direction: column;
    gap: 5px;
    margin-bottom: 10px;
}

.home .home-rebuilt__ff label {
    color: var(--color-text-light);
    font-size: 0.8rem;
    font-weight: 600;
}

.home .home-rebuilt__ff input,
.home .home-rebuilt__ff select,
.home .home-rebuilt__ff textarea {
    width: 100%;
    border: 1.5px solid rgba(0, 0, 0, 0.08);
    border-radius: 12px;
    background: var(--color-bg);
    color: var(--color-text);
    font-size: 0.94rem;
    padding: 12px 16px;
    font-family: var(--font-body);
    outline: none;
    transition: border-color var(--duration-fast) var(--ease-out), background-color var(--duration-fast) var(--ease-out);
}

.home .home-rebuilt__ff textarea {
    min-height: 84px;
    resize: vertical;
}

.home .home-rebuilt__ff input:focus,
.home .home-rebuilt__ff select:focus,
.home .home-rebuilt__ff textarea:focus {
    border-color: var(--color-primary);
    background: #fff;
}

.home .home-rebuilt__sbox {
    margin-bottom: 20px;
    border-radius: 16px;
    padding: 20px;
    background: var(--color-bg);
}

.home .home-rebuilt__sr {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    gap: 12px;
    padding: 8px 0;
    font-size: 0.9rem;
}

.home .home-rebuilt__sr:not(:last-child) {
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.home .home-rebuilt__sr span {
    color: var(--color-text-muted);
}

.home .home-rebuilt__sr strong {
    color: var(--color-text);
    font-weight: 700;
}

.home .home-rebuilt__sr--total span {
    color: var(--color-text);
    font-weight: 700;
}

.home .home-rebuilt__sr--total strong {
    color: var(--color-primary);
    font-family: var(--font-display);
    font-size: 1.12rem;
}

/* REVIEWS */
.home .home-rebuilt__reviews {
    background: var(--color-bg-alt);
}

.home .home-rebuilt__review-grid {
    margin-top: 46px;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
}

.home .home-rebuilt__rc {
    padding: 34px;
    border-radius: 24px;
    border: 1px solid rgba(0, 0, 0, 0.04);
    background: var(--color-bg);
    transition: transform var(--duration-normal) var(--ease-spring), box-shadow var(--duration-normal) var(--ease-out);
}

.home .home-rebuilt__rc:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 48px rgba(0, 0, 0, 0.06);
}

.home .home-rebuilt__rc-stars {
    margin: 0 0 18px;
    color: var(--color-accent);
    font-size: 0.88rem;
    letter-spacing: 0.07em;
}

.home .home-rebuilt__rc blockquote {
    margin: 0;
    font-family: var(--font-display);
    font-size: 1.03rem;
    line-height: 1.68;
    color: var(--color-text);
    font-style: italic;
}

.home .home-rebuilt__rc-meta {
    margin: 22px 0 0;
    color: var(--color-text-muted);
    font-size: 0.84rem;
    font-weight: 700;
}

.home .home-rebuilt__rc-author {
    margin: 22px 0 0;
    display: flex;
    align-items: center;
    gap: 12px;
}

.home .home-rebuilt__rc-avatar {
    width: 42px;
    height: 42px;
    border-radius: 999px;
    object-fit: cover;
    object-position: center;
    border: 1.5px solid rgba(196, 154, 60, 0.42);
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.08);
    flex-shrink: 0;
    background: #e7e4de;
}

.home .home-rebuilt__rc-author .home-rebuilt__rc-meta {
    margin: 0;
}

/* CTA */
.home .home-rebuilt__cta {
    padding: clamp(36px, 6vw, 64px) 0;
}

.home .home-rebuilt__cta-inner {
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 74%, #3A2F18 100%);
    border-radius: 28px;
    padding: clamp(34px, 5vw, 64px) clamp(26px, 5vw, 72px);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 34px;
    position: relative;
    overflow: hidden;
}

.home .home-rebuilt__cta-inner::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 50% 70% at 0% 50%, rgba(255, 255, 255, 0.06), transparent),
        radial-gradient(ellipse 40% 60% at 100% 30%, rgba(196, 154, 60, 0.2), transparent);
}

.home .home-rebuilt__cta-inner>* {
    position: relative;
    z-index: 1;
}

.home .home-rebuilt__cta-inner h2 {
    margin: 0;
    color: #fff;
    line-height: 1.05;
    font-family: var(--font-display);
    font-size: clamp(2rem, 3.8vw, 3rem);
    letter-spacing: -0.02em;
}

.home .home-rebuilt__cta-inner p {
    margin: 8px 0 0;
    color: rgba(255, 255, 255, 0.78);
    font-size: 0.82rem;
}

/* AREAS */
.home .home-rebuilt__areas {
    padding-top: 0;
}

.home .home-rebuilt__areas-inner {
    text-align: center;
}

.home .home-rebuilt__areas-inner h2 {
    margin: 0 0 8px;
    font-size: clamp(1.55rem, 2.6vw, 2.15rem);
    color: var(--color-text);
}

.home .home-rebuilt__areas-inner p {
    margin: 0 0 12px;
    color: var(--color-text-light);
}

.home .home-rebuilt__areas-inner a {
    color: var(--color-primary);
    font-weight: 700;
}

/* RESPONSIVE */
@media (max-width: 1100px) {
    .home .home-rebuilt__hero-inner,
    .home .home-rebuilt__diff,
    .home .home-rebuilt__process-layout,
    .home .home-rebuilt__book-inner {
        grid-template-columns: 1fr;
    }

    .home .home-rebuilt__hero-photo {
        aspect-ratio: 16 / 10;
    }

    .home .home-rebuilt__bento {
        grid-template-columns: 1fr 1fr;
    }

    .home .home-rebuilt__bc-1 {
        grid-column: 1 / 3;
        grid-row: 1;
    }

    .home .home-rebuilt__bc-4 {
        grid-column: 1 / 3;
        grid-row: 3;
    }

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

    .home .home-rebuilt__book-left {
        position: static;
    }

    .home .home-rebuilt__process-h {
        font-size: clamp(32px, 6vw, 46px);
        max-width: 100%;
    }

    .home .home-rebuilt__process-sub {
        max-width: 100%;
        font-size: 15px;
    }

    .home .home-rebuilt__process-btn {
        min-width: 0;
    }

    .home .home-rebuilt__steps {
        margin-top: 0;
    }

    .home .home-rebuilt__process {
        padding: 80px 32px;
    }
}

@media (max-width: 768px) {
    .home .home-rebuilt__hero {
        padding-top: calc(var(--header-height) + 18px);
    }

    .home .home-rebuilt__hero-actions {
        width: 100%;
        flex-direction: column;
    }

    .home .home-rebuilt__hero-actions .btn {
        width: 100%;
        justify-content: center;
    }

    .home .home-rebuilt__proof-list {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .home .home-rebuilt__bento,
    .home .home-rebuilt__review-grid,
    .home .home-rebuilt__chips,
    .home .home-rebuilt__frow {
        grid-template-columns: 1fr;
    }

    .home .home-rebuilt__bc-1,
    .home .home-rebuilt__bc-4 {
        grid-column: auto;
        grid-row: auto;
    }

    .home .home-rebuilt__bc-4 {
        flex-direction: column;
        gap: 18px;
    }

    .home .home-rebuilt__diff-right {
        display: none;
    }

    .home .home-rebuilt__ba {
        min-height: 330px;
    }

    .home .home-rebuilt__ba-handle::after {
        width: 48px;
        height: 48px;
    }

    .home .home-rebuilt__form-hdr,
    .home .home-rebuilt__form-body,
    .home .home-rebuilt__si {
        padding-left: 18px;
        padding-right: 18px;
    }

    .home .home-rebuilt__form-total {
        position: static;
        transform: none;
        margin-top: 14px;
        text-align: left;
    }

    .home .home-rebuilt__si {
        margin-top: 0;
    }

    .home .home-rebuilt__si-line {
        margin-bottom: 18px;
    }

    .home .home-rebuilt__cta-inner {
        flex-direction: column;
        align-items: flex-start;
    }

    .home .home-rebuilt__cta-inner .btn {
        width: 100%;
        justify-content: center;
    }

    .home .home-rebuilt__process-h {
        font-size: clamp(30px, 10vw, 42px);
        line-height: 1.05;
    }

    .home .home-rebuilt__process-btn {
        width: auto;
        min-height: 0;
    }

    .home .home-rebuilt__step {
        gap: 14px;
        padding: 22px 0;
    }

    .home .home-rebuilt__step-num {
        width: 44px;
        height: 44px;
        border-radius: 11px;
        font-size: 0.9rem;
    }

    .home .home-rebuilt__step-body h3 {
        font-size: 15px;
    }

    .home .home-rebuilt__step-body p {
        font-size: 13px;
    }

    .home .home-rebuilt__process {
        padding: 60px 24px;
    }

    .home .home-rebuilt__process-layout {
        gap: 32px;
    }
}

/* ============================================
   ESTIMATE PAGE — PREMIUM WIZARD RESTYLE
   ============================================ */
.page-template-page-estimate .estimate-page {
    background: var(--color-bg);
    padding-top: calc(var(--header-height) + 24px);
}

.page-template-page-estimate .estimate-page>.container {
    max-width: 1320px;
}

.page-template-page-estimate .estimate-layout {
    grid-template-columns: minmax(0, 1fr) 300px;
    gap: 16px;
    max-width: 1160px;
}

.page-template-page-estimate .estimate-container {
    border-radius: 28px;
    border: 1px solid rgba(196, 154, 60, 0.22);
    box-shadow: 0 22px 52px rgba(16, 26, 21, 0.08);
    background: #f4f4f3;
    padding: 0;
    overflow: hidden;
}

.page-template-page-estimate .ev-estimate-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 18px;
    padding: 30px 40px 26px;
    background: linear-gradient(135deg, var(--color-primary), #3d9b6b 58%, #4ca776);
    color: #fff;
}

.page-template-page-estimate .ev-estimate-header__title {
    margin: 0;
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 2.4vw, 2.4rem);
    line-height: 1.05;
}

.page-template-page-estimate .ev-estimate-header__subtitle {
    margin: 8px 0 0;
    color: rgba(255, 255, 255, 0.75);
    font-size: 1rem;
}

.page-template-page-estimate .ev-estimate-header__total {
    text-align: right;
    margin-top: 4px;
}

.page-template-page-estimate .ev-estimate-header__total span {
    display: block;
    margin: 0;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.13em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.6);
}

.page-template-page-estimate .ev-estimate-header__total strong {
    display: block;
    margin-top: 6px;
    font-family: var(--font-display);
    font-size: clamp(2rem, 2.8vw, 2.8rem);
    line-height: 1;
    color: #ddb65e;
    transition: transform 0.2s ease;
}

.page-template-page-estimate .ev-estimate-header__total strong.ev-estimate-header__total-price--pop {
    transform: scale(1.08);
}

.page-template-page-estimate .ev-estimate-body {
    padding: 0 32px 28px;
}

.page-template-page-estimate .estimate-container h2 {
    font-size: clamp(2rem, 3.8vw, 3.7rem);
    line-height: 1.06;
    letter-spacing: -0.02em;
}

.page-template-page-estimate .wizard__progress {
    position: relative;
    justify-content: space-between;
    margin: -20px 0 clamp(18px, 2.4vw, 28px);
    padding: 0 0 18px;
    border-bottom: none;
}

.page-template-page-estimate .wizard__progress::before {
    content: '';
    position: absolute;
    left: 24px;
    right: 24px;
    top: 23px;
    height: 2px;
    background: rgba(196, 154, 60, 0.35);
    z-index: 0;
}

.page-template-page-estimate .wizard__step {
    gap: 8px;
    position: relative;
    z-index: 1;
    background: transparent;
}

.page-template-page-estimate .wizard__step {
    flex-direction: column;
    align-items: center;
}

.page-template-page-estimate .wizard__step-number {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    border: 2px solid rgba(196, 154, 60, 0.22);
    background: #f7f4ee;
    color: #8f877b;
    font-family: var(--font-display);
    font-size: 1.2rem;
}

.page-template-page-estimate .wizard__step-label {
    font-size: 0.88rem;
    color: #7c756a;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.page-template-page-estimate .wizard__step--active .wizard__step-number {
    border-color: var(--color-primary);
    background: var(--color-primary);
    color: #fff;
}

.page-template-page-estimate .wizard__step--active .wizard__step-label {
    color: var(--color-primary);
    font-weight: 700;
}

.page-template-page-estimate .wizard__step--done .wizard__step-number {
    border-color: var(--color-primary-light);
    background: var(--color-primary-light);
    color: #fff;
}

.page-template-page-estimate .wizard__step--done .wizard__step-label {
    color: var(--color-primary-light);
}

.page-template-page-estimate .wizard__connector {
    display: none;
}

.page-template-page-estimate .wizard__connector--done {
    background: var(--color-primary-light);
}

.page-template-page-estimate .estimate-options {
    gap: 16px;
}

.page-template-page-estimate .estimate-options[style] {
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 16px !important;
}

.page-template-page-estimate .option-card {
    display: block;
    min-height: 0;
    padding: 20px 18px;
    border-radius: 20px;
    border: 1px solid rgba(196, 154, 60, 0.24);
    background: #f8f8f7;
    box-shadow: none;
    text-align: center;
}

.page-template-page-estimate .option-card__content {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-height: 100%;
}

.page-template-page-estimate .option-card__radio {
    display: none !important;
}

.page-template-page-estimate .option-card:hover {
    border-color: rgba(27, 67, 50, 0.32);
    background: #fcfcfb;
    transform: translateY(-1px);
}

.page-template-page-estimate .option-card--selected {
    border-color: var(--color-primary);
    background: #ffffff;
    box-shadow: 0 0 0 2px rgba(27, 67, 50, 0.1);
}

.page-template-page-estimate .option-card__radio {
    width: 36px;
    height: 36px;
    border-width: 2px;
    border-color: rgba(196, 154, 60, 0.4);
}

.page-template-page-estimate .option-card--selected .option-card__radio {
    border-color: var(--color-primary);
}

.page-template-page-estimate .option-card--selected .option-card__radio::after {
    width: 16px;
    height: 16px;
    background: var(--color-primary);
}

.page-template-page-estimate .option-card__icon {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    margin-bottom: 16px !important;
    background: #ecefed;
    color: var(--color-primary);
}

.page-template-page-estimate .option-card__title {
    font-size: clamp(1.12rem, 1.5vw, 1.62rem);
    font-weight: 700;
    line-height: 1.15;
    margin: 0 0 8px;
    max-width: 14ch;
    text-wrap: balance;
}

.page-template-page-estimate .option-card__desc {
    font-size: 0.96rem;
    color: #7b7469;
    line-height: 1.45;
    margin-bottom: 14px !important;
    max-width: 20ch;
}

.page-template-page-estimate .option-card__price {
    margin-top: auto;
    font-family: var(--font-display);
    font-size: clamp(2rem, 2.7vw, 2.8rem);
    color: var(--color-primary);
}

.page-template-page-estimate .frequency-section {
    margin-top: 24px;
    padding-top: 24px;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.page-template-page-estimate .frequency-section h3 {
    margin-bottom: 14px !important;
}

.page-template-page-estimate .frequency-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.page-template-page-estimate .frequency-pill {
    min-height: 0;
    border-radius: 999px;
    border: 2px solid rgba(196, 154, 60, 0.35);
    background: #fff;
    padding: 10px 18px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.page-template-page-estimate .frequency-pill--active {
    border-color: var(--color-primary);
    background: rgba(27, 67, 50, 0.07);
}

.page-template-page-estimate .frequency-pill__label {
    font-size: 1.02rem;
}

.page-template-page-estimate .frequency-pill__badge {
    font-size: 0.98rem;
    color: var(--color-success);
}

.page-template-page-estimate .days-of-week {
    margin-top: 14px !important;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
    padding-top: 16px;
}

.page-template-page-estimate .days-grid {
    background: #ffffff;
    border: 1px solid rgba(196, 154, 60, 0.25);
    border-radius: 16px;
    padding: 12px 16px;
    display: grid;
    grid-template-columns: repeat(7, minmax(0, 1fr));
    gap: 8px;
}

.page-template-page-estimate .day-checkbox {
    border: none;
    border-radius: 12px;
    background: transparent;
    min-height: auto;
    padding: 8px 4px;
    justify-content: center;
    gap: 8px;
}

.page-template-page-estimate .day-checkbox__label {
    font-size: 0.98rem;
    color: #38352f;
    font-weight: 600;
}

.page-template-page-estimate .day-checkbox__box {
    width: 26px;
    height: 26px;
    border-radius: 7px;
    border: 2px solid rgba(196, 154, 60, 0.45);
    background: #f9f6f0;
}

.page-template-page-estimate .day-checkbox input:checked~.day-checkbox__box {
    border-color: var(--color-primary);
    background: var(--color-primary);
}

.page-template-page-estimate .wizard__actions {
    margin-top: 24px;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
    padding-top: 18px;
}

.page-template-page-estimate .wizard__actions .btn {
    min-width: 180px;
    min-height: 60px;
    border-radius: 999px;
    font-size: 1rem;
}

.page-template-page-estimate .wizard__actions .btn--primary {
    background: var(--color-primary);
    border-color: var(--color-primary);
}

.page-template-page-estimate .wizard__actions .btn--primary:hover {
    background: var(--color-primary-light);
    border-color: var(--color-primary-light);
}

.page-template-page-estimate .wizard__actions .btn--secondary {
    border: 1.5px solid rgba(27, 67, 50, 0.45);
    color: var(--color-primary);
    background: #fff;
}

.page-template-page-estimate .form__input,
.page-template-page-estimate .form__select,
.page-template-page-estimate .form__textarea {
    background: #fff;
    border: 1px solid rgba(196, 154, 60, 0.32);
    border-radius: 12px;
    min-height: 52px;
}

.page-template-page-estimate .form__input:focus,
.page-template-page-estimate .form__select:focus,
.page-template-page-estimate .form__textarea:focus {
    border-color: var(--color-primary);
    box-shadow: 0 0 0 3px rgba(27, 67, 50, 0.12);
}

.page-template-page-estimate .addon-grid--expanded {
    gap: 12px;
}

.page-template-page-estimate .addon-card {
    border-radius: 16px;
    border: 1px solid rgba(196, 154, 60, 0.28);
    background: #fff;
}

.page-template-page-estimate .addon-card:hover {
    border-color: rgba(27, 67, 50, 0.45);
    background: #fbfbfa;
}

.page-template-page-estimate .addon-card--selected {
    border-color: var(--color-primary);
    box-shadow: 0 0 0 2px rgba(27, 67, 50, 0.1);
}

.page-template-page-estimate .addon-card__icon {
    color: var(--color-primary);
}

.page-template-page-estimate .coupon-input-group {
    gap: 10px;
}

.page-template-page-estimate .coupon-btn {
    min-width: 120px;
}

.page-template-page-estimate .photo-upload__dropzone {
    border: 2px dashed rgba(196, 154, 60, 0.4);
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.75);
}

.page-template-page-estimate .price-sidebar {
    border-radius: 24px;
    border: 1px solid rgba(196, 154, 60, 0.24);
    box-shadow: 0 18px 44px rgba(16, 26, 21, 0.08);
    background: #fff;
}

.page-template-page-estimate .price-sidebar__header {
    background: linear-gradient(135deg, var(--color-primary), var(--color-primary-light));
}

.page-template-page-estimate .price-sidebar__footer {
    border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.page-template-page-estimate .price-sidebar__total-price {
    color: var(--color-primary-dark);
}

.home .home-rebuilt__book-right.page-template-page-estimate {
    width: 100%;
    min-width: 0;
}

.home .home-rebuilt__book-right.page-template-page-estimate .estimate-layout--embed {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
    max-width: 100%;
}

.home .home-rebuilt__book-right.page-template-page-estimate .estimate-container h2 {
    font-size: clamp(2rem, 4.5vw, 3.25rem);
    line-height: 1.06;
}

.home .home-rebuilt__book-right.page-template-page-estimate .price-sidebar {
    display: none !important;
}

@media (max-width: 1200px) {
    .page-template-page-estimate .estimate-layout {
        grid-template-columns: 1fr;
    }

    .page-template-page-estimate .price-sidebar {
        position: relative;
        top: auto;
    }
}

@media (max-width: 900px) {
    .page-template-page-estimate .estimate-options {
        grid-template-columns: 1fr !important;
    }

    .page-template-page-estimate .estimate-options[style] {
        grid-template-columns: 1fr !important;
    }

    .page-template-page-estimate .wizard__progress {
        gap: 6px;
    }

    .page-template-page-estimate .ev-estimate-header {
        padding: 24px 22px 22px;
    }

    .page-template-page-estimate .ev-estimate-body {
        padding: 0 22px 24px;
    }

    .page-template-page-estimate .wizard__step-number {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }

    .page-template-page-estimate .wizard__step-label {
        font-size: 0.8rem;
    }

    .page-template-page-estimate .frequency-pills {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .page-template-page-estimate .days-grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }
}

@media (max-width: 640px) {
    .page-template-page-estimate .estimate-container {
        padding: 0;
    }

    .page-template-page-estimate .estimate-container h2 {
        font-size: clamp(1.75rem, 9vw, 2.45rem);
    }

    .page-template-page-estimate .ev-estimate-header {
        padding: 20px 16px 20px;
        flex-direction: column;
        align-items: flex-start;
    }

    .page-template-page-estimate .ev-estimate-header__total {
        text-align: left;
    }

    .page-template-page-estimate .ev-estimate-body {
        padding: 0 14px 20px;
    }

    .page-template-page-estimate .wizard__step-label {
        font-size: 0.72rem;
    }

    .page-template-page-estimate .wizard__actions {
        grid-template-columns: 1fr;
    }

    .page-template-page-estimate .wizard__actions .btn {
        width: 100%;
        min-width: 0;
    }

    .page-template-page-estimate .days-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

/* ============================================
   ESTIMATE WIZARD — HARD LAYOUT LOCK
   Keep plugin logic, force stable premium UI on Home + /estimate/
   ============================================ */
.page-template-page-estimate .ev-estimate-card,
.home .home-rebuilt__book-right.page-template-page-estimate .ev-estimate-card {
    width: 100%;
    min-width: 0;
    border-radius: 28px;
    border: 1px solid rgba(196, 154, 60, 0.22);
    box-shadow: 0 22px 52px rgba(16, 26, 21, 0.08);
    background: #f4f4f3;
    overflow: hidden;
}

.page-template-page-estimate .ev-estimate-card .ev-estimate-header,
.home .home-rebuilt__book-right.page-template-page-estimate .ev-estimate-card .ev-estimate-header {
    background: linear-gradient(135deg, var(--color-primary), #3d9b6b 58%, #4ca776);
    padding: 30px 40px 24px;
}

.page-template-page-estimate .ev-estimate-card .ev-estimate-header__title,
.home .home-rebuilt__book-right.page-template-page-estimate .ev-estimate-card .ev-estimate-header__title {
    margin: 0;
    font-family: var(--font-display);
    font-size: clamp(2.05rem, 2.6vw, 2.9rem);
    line-height: 1.04;
    color: #fff;
}

.page-template-page-estimate .ev-estimate-card .ev-estimate-header__subtitle,
.home .home-rebuilt__book-right.page-template-page-estimate .ev-estimate-card .ev-estimate-header__subtitle {
    margin: 8px 0 0;
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.78);
}

.page-template-page-estimate .ev-estimate-card .ev-estimate-header__total span,
.home .home-rebuilt__book-right.page-template-page-estimate .ev-estimate-card .ev-estimate-header__total span {
    color: rgba(255, 255, 255, 0.62);
}

.page-template-page-estimate .ev-estimate-card .ev-estimate-header__total strong,
.home .home-rebuilt__book-right.page-template-page-estimate .ev-estimate-card .ev-estimate-header__total strong {
    color: #ddb65e;
}

.page-template-page-estimate .ev-estimate-card .ev-estimate-body,
.home .home-rebuilt__book-right.page-template-page-estimate .ev-estimate-card .ev-estimate-body {
    padding: 0 32px 28px;
}

.page-template-page-estimate .ev-estimate-card .wizard__progress,
.home .home-rebuilt__book-right.page-template-page-estimate .ev-estimate-card .wizard__progress {
    position: relative;
    margin: -20px 0 28px;
    padding: 0 0 18px;
    justify-content: space-between;
}

.page-template-page-estimate .ev-estimate-card .wizard__progress::before,
.home .home-rebuilt__book-right.page-template-page-estimate .ev-estimate-card .wizard__progress::before {
    content: '';
    position: absolute;
    left: 24px;
    right: 24px;
    top: 23px;
    height: 2px;
    background: rgba(196, 154, 60, 0.35);
    z-index: 0;
}

.page-template-page-estimate .ev-estimate-card .wizard__step,
.home .home-rebuilt__book-right.page-template-page-estimate .ev-estimate-card .wizard__step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    position: relative;
    z-index: 1;
}

.page-template-page-estimate .ev-estimate-card .wizard__step-number,
.home .home-rebuilt__book-right.page-template-page-estimate .ev-estimate-card .wizard__step-number {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    border: 2px solid rgba(196, 154, 60, 0.22);
    background: #f7f4ee;
    color: #8f877b;
    font-family: var(--font-display);
    font-size: 1.2rem;
}

.page-template-page-estimate .ev-estimate-card .wizard__step-label,
.home .home-rebuilt__book-right.page-template-page-estimate .ev-estimate-card .wizard__step-label {
    display: block;
    font-size: 0.88rem;
    line-height: 1.1;
    color: #7c756a;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.page-template-page-estimate .ev-estimate-card .wizard__connector,
.home .home-rebuilt__book-right.page-template-page-estimate .ev-estimate-card .wizard__connector {
    display: none;
}

.page-template-page-estimate .ev-estimate-card .estimate-container h2,
.home .home-rebuilt__book-right.page-template-page-estimate .ev-estimate-card .estimate-container h2,
.page-template-page-estimate .ev-estimate-card .wizard__panel h2,
.home .home-rebuilt__book-right.page-template-page-estimate .ev-estimate-card .wizard__panel h2 {
    margin-bottom: 1.6rem !important;
    text-align: center !important;
    font-size: clamp(2.6rem, 7vw, 5.4rem) !important;
    line-height: 0.98 !important;
    letter-spacing: -0.03em !important;
}

.page-template-page-estimate .ev-estimate-card .estimate-options[style],
.home .home-rebuilt__book-right.page-template-page-estimate .ev-estimate-card .estimate-options[style] {
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 16px !important;
}

.page-template-page-estimate .ev-estimate-card .option-card,
.home .home-rebuilt__book-right.page-template-page-estimate .ev-estimate-card .option-card {
    display: block !important;
    text-align: center !important;
    padding: 22px 18px 20px !important;
    border-radius: 20px !important;
    border: 1px solid rgba(196, 154, 60, 0.24) !important;
    background: #f8f8f7 !important;
    box-shadow: none !important;
    min-height: 0 !important;
}

.page-template-page-estimate .ev-estimate-card .option-card__radio,
.home .home-rebuilt__book-right.page-template-page-estimate .ev-estimate-card .option-card__radio {
    display: none !important;
}

.page-template-page-estimate .ev-estimate-card .option-card__content,
.home .home-rebuilt__book-right.page-template-page-estimate .ev-estimate-card .option-card__content {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    gap: 0 !important;
    min-height: 100%;
}

.page-template-page-estimate .ev-estimate-card .option-card__icon,
.home .home-rebuilt__book-right.page-template-page-estimate .ev-estimate-card .option-card__icon {
    width: 64px !important;
    height: 64px !important;
    border-radius: 16px !important;
    margin: 0 auto 14px !important;
    background: #ecefed !important;
    color: var(--color-primary) !important;
}

.page-template-page-estimate .ev-estimate-card .option-card__title,
.home .home-rebuilt__book-right.page-template-page-estimate .ev-estimate-card .option-card__title {
    margin: 0 0 10px !important;
    max-width: 14ch;
    text-wrap: balance;
    font-size: clamp(1.18rem, 1.7vw, 1.95rem) !important;
    font-weight: 700 !important;
    line-height: 1.12 !important;
    color: #15171b !important;
}

.page-template-page-estimate .ev-estimate-card .option-card__desc,
.home .home-rebuilt__book-right.page-template-page-estimate .ev-estimate-card .option-card__desc {
    margin: 0 0 12px !important;
    max-width: 22ch;
    font-size: 0.95rem !important;
    line-height: 1.45 !important;
    color: #7b7469 !important;
}

.page-template-page-estimate .ev-estimate-card .option-card__price,
.home .home-rebuilt__book-right.page-template-page-estimate .ev-estimate-card .option-card__price {
    margin-top: auto !important;
    font-family: var(--font-display) !important;
    font-size: clamp(2rem, 2.7vw, 2.8rem) !important;
    line-height: 1 !important;
    color: var(--color-primary) !important;
}

.page-template-page-estimate .ev-estimate-card .frequency-section,
.home .home-rebuilt__book-right.page-template-page-estimate .ev-estimate-card .frequency-section {
    margin-top: 24px;
    padding-top: 24px;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.page-template-page-estimate .ev-estimate-card .frequency-pills,
.home .home-rebuilt__book-right.page-template-page-estimate .ev-estimate-card .frequency-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.page-template-page-estimate .ev-estimate-card .frequency-pill,
.home .home-rebuilt__book-right.page-template-page-estimate .ev-estimate-card .frequency-pill {
    min-height: 0;
    border-radius: 999px;
    border: 2px solid rgba(196, 154, 60, 0.35);
    background: #fff;
    padding: 10px 18px;
    display: inline-flex;
    flex-direction: row;
    align-items: center;
    gap: 8px;
}

.page-template-page-estimate .ev-estimate-card .days-grid,
.home .home-rebuilt__book-right.page-template-page-estimate .ev-estimate-card .days-grid {
    background: #fff;
    border: 1px solid rgba(196, 154, 60, 0.25);
    border-radius: 16px;
    padding: 12px 16px;
}

.page-template-page-estimate .ev-estimate-card .wizard__actions,
.home .home-rebuilt__book-right.page-template-page-estimate .ev-estimate-card .wizard__actions {
    margin-top: 24px;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
    padding-top: 18px;
}

.page-template-page-estimate .ev-estimate-card .wizard__actions .btn,
.home .home-rebuilt__book-right.page-template-page-estimate .ev-estimate-card .wizard__actions .btn {
    min-width: 180px;
    min-height: 60px;
    border-radius: 999px;
}

.page-template-page-estimate .ev-estimate-card .wizard__panel[data-panel="2"]>div[style*="grid-template-columns"],
.home .home-rebuilt__book-right.page-template-page-estimate .ev-estimate-card .wizard__panel[data-panel="2"]>div[style*="grid-template-columns"] {
    display: grid !important;
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
    gap: 14px !important;
}

@media (max-width: 1200px) {
    .page-template-page-estimate .ev-estimate-card .wizard__panel h2,
    .home .home-rebuilt__book-right.page-template-page-estimate .ev-estimate-card .wizard__panel h2 {
        font-size: clamp(2.3rem, 6.2vw, 4.6rem) !important;
    }
}

@media (max-width: 900px) {
    .page-template-page-estimate .ev-estimate-card .ev-estimate-header,
    .home .home-rebuilt__book-right.page-template-page-estimate .ev-estimate-card .ev-estimate-header {
        padding: 24px 22px 22px;
    }

    .page-template-page-estimate .ev-estimate-card .ev-estimate-body,
    .home .home-rebuilt__book-right.page-template-page-estimate .ev-estimate-card .ev-estimate-body {
        padding: 0 22px 24px;
    }

    .page-template-page-estimate .ev-estimate-card .estimate-options[style],
    .home .home-rebuilt__book-right.page-template-page-estimate .ev-estimate-card .estimate-options[style] {
        grid-template-columns: 1fr !important;
    }

    .page-template-page-estimate .ev-estimate-card .wizard__panel[data-panel="2"]>div[style*="grid-template-columns"],
    .home .home-rebuilt__book-right.page-template-page-estimate .ev-estimate-card .wizard__panel[data-panel="2"]>div[style*="grid-template-columns"] {
        grid-template-columns: 1fr !important;
    }
}

@media (max-width: 640px) {
    .page-template-page-estimate .ev-estimate-card .ev-estimate-header,
    .home .home-rebuilt__book-right.page-template-page-estimate .ev-estimate-card .ev-estimate-header {
        padding: 20px 16px;
        flex-direction: column;
        align-items: flex-start;
    }

    .page-template-page-estimate .ev-estimate-card .ev-estimate-header__total,
    .home .home-rebuilt__book-right.page-template-page-estimate .ev-estimate-card .ev-estimate-header__total {
        text-align: left;
    }

    .page-template-page-estimate .ev-estimate-card .ev-estimate-body,
    .home .home-rebuilt__book-right.page-template-page-estimate .ev-estimate-card .ev-estimate-body {
        padding: 0 14px 20px;
    }

    .page-template-page-estimate .ev-estimate-card .wizard__step-label,
    .home .home-rebuilt__book-right.page-template-page-estimate .ev-estimate-card .wizard__step-label {
        font-size: 0.72rem;
    }

    .page-template-page-estimate .ev-estimate-card .wizard__actions,
    .home .home-rebuilt__book-right.page-template-page-estimate .ev-estimate-card .wizard__actions {
        display: grid;
        grid-template-columns: 1fr;
    }

    .page-template-page-estimate .ev-estimate-card .wizard__actions .btn,
    .home .home-rebuilt__book-right.page-template-page-estimate .ev-estimate-card .wizard__actions .btn {
        width: 100%;
        min-width: 0;
    }
}

/* ============================================
   ESTIMATE WIZARD — COMPACT POLISH (v2)
   Keep logic, reduce visual bulk, hide checkbox UI markers
   ============================================ */
.page-template-page-estimate .ev-estimate-card .ev-estimate-header,
.home .home-rebuilt__book-right.page-template-page-estimate .ev-estimate-card .ev-estimate-header {
    padding: 24px 30px 20px;
}

.page-template-page-estimate .ev-estimate-card .ev-estimate-header__title,
.home .home-rebuilt__book-right.page-template-page-estimate .ev-estimate-card .ev-estimate-header__title {
    font-size: clamp(1.62rem, 2.1vw, 2.25rem);
}

.page-template-page-estimate .ev-estimate-card .ev-estimate-header__subtitle,
.home .home-rebuilt__book-right.page-template-page-estimate .ev-estimate-card .ev-estimate-header__subtitle {
    font-size: 0.94rem;
    margin-top: 6px;
}

.page-template-page-estimate .ev-estimate-card .ev-estimate-header__total strong,
.home .home-rebuilt__book-right.page-template-page-estimate .ev-estimate-card .ev-estimate-header__total strong {
    font-size: clamp(1.8rem, 2.4vw, 2.3rem);
}

.page-template-page-estimate .ev-estimate-card .ev-estimate-body,
.home .home-rebuilt__book-right.page-template-page-estimate .ev-estimate-card .ev-estimate-body {
    padding: 0 24px 22px;
}

.page-template-page-estimate .ev-estimate-card .wizard__progress,
.home .home-rebuilt__book-right.page-template-page-estimate .ev-estimate-card .wizard__progress {
    margin: -16px 0 20px;
    padding-bottom: 12px;
}

.page-template-page-estimate .ev-estimate-card .wizard__step-number,
.home .home-rebuilt__book-right.page-template-page-estimate .ev-estimate-card .wizard__step-number {
    width: 42px;
    height: 42px;
    font-size: 1.08rem;
}

.page-template-page-estimate .ev-estimate-card .wizard__step-label,
.home .home-rebuilt__book-right.page-template-page-estimate .ev-estimate-card .wizard__step-label {
    font-size: 0.8rem;
    letter-spacing: 0.06em;
}

.page-template-page-estimate .ev-estimate-card .wizard__panel h2,
.home .home-rebuilt__book-right.page-template-page-estimate .ev-estimate-card .wizard__panel h2 {
    font-size: clamp(2rem, 4.6vw, 3.35rem) !important;
    margin-bottom: 1.2rem !important;
}

.page-template-page-estimate .ev-estimate-card .estimate-options[style],
.home .home-rebuilt__book-right.page-template-page-estimate .ev-estimate-card .estimate-options[style] {
    gap: 12px !important;
}

.page-template-page-estimate .ev-estimate-card .option-card,
.home .home-rebuilt__book-right.page-template-page-estimate .ev-estimate-card .option-card {
    padding: 16px 14px !important;
    border-radius: 16px !important;
}

.page-template-page-estimate .ev-estimate-card .option-card__icon,
.home .home-rebuilt__book-right.page-template-page-estimate .ev-estimate-card .option-card__icon {
    width: 52px !important;
    height: 52px !important;
    border-radius: 12px !important;
    margin-bottom: 10px !important;
}

.page-template-page-estimate .ev-estimate-card .option-card__title,
.home .home-rebuilt__book-right.page-template-page-estimate .ev-estimate-card .option-card__title {
    font-size: clamp(1.12rem, 1.5vw, 1.48rem) !important;
    margin-bottom: 7px !important;
}

.page-template-page-estimate .ev-estimate-card .option-card__desc,
.home .home-rebuilt__book-right.page-template-page-estimate .ev-estimate-card .option-card__desc {
    font-size: 0.9rem !important;
    margin-bottom: 10px !important;
}

.page-template-page-estimate .ev-estimate-card .option-card__price,
.home .home-rebuilt__book-right.page-template-page-estimate .ev-estimate-card .option-card__price {
    font-size: clamp(1.55rem, 2.2vw, 2rem) !important;
}

.page-template-page-estimate .ev-estimate-card .frequency-section,
.home .home-rebuilt__book-right.page-template-page-estimate .ev-estimate-card .frequency-section {
    margin-top: 18px;
    padding-top: 18px;
}

.page-template-page-estimate .ev-estimate-card .frequency-pill,
.home .home-rebuilt__book-right.page-template-page-estimate .ev-estimate-card .frequency-pill {
    padding: 8px 14px;
    font-size: 0.92rem;
}

.page-template-page-estimate .ev-estimate-card .days-grid,
.home .home-rebuilt__book-right.page-template-page-estimate .ev-estimate-card .days-grid {
    padding: 10px 12px;
    gap: 6px;
}

.page-template-page-estimate .ev-estimate-card .day-checkbox,
.home .home-rebuilt__book-right.page-template-page-estimate .ev-estimate-card .day-checkbox {
    min-height: 0;
    padding: 8px 6px;
    border-radius: 10px;
}

.page-template-page-estimate .ev-estimate-card .day-checkbox__label,
.home .home-rebuilt__book-right.page-template-page-estimate .ev-estimate-card .day-checkbox__label {
    font-size: 0.86rem;
}

.page-template-page-estimate .ev-estimate-card .wizard__actions,
.home .home-rebuilt__book-right.page-template-page-estimate .ev-estimate-card .wizard__actions {
    margin-top: 18px;
    padding-top: 14px;
}

.page-template-page-estimate .ev-estimate-card .wizard__actions .btn,
.home .home-rebuilt__book-right.page-template-page-estimate .ev-estimate-card .wizard__actions .btn {
    min-height: 52px;
    min-width: 150px;
    font-size: 0.95rem;
}

.page-template-page-estimate .ev-estimate-card .wizard__panel[data-panel="3"] > p[style],
.home .home-rebuilt__book-right.page-template-page-estimate .ev-estimate-card .wizard__panel[data-panel="3"] > p[style] {
    margin-bottom: 16px !important;
    font-size: 0.94rem !important;
}

.page-template-page-estimate .ev-estimate-card .addon-grid--expanded,
.home .home-rebuilt__book-right.page-template-page-estimate .ev-estimate-card .addon-grid--expanded {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
}

.page-template-page-estimate .ev-estimate-card .addon-card,
.home .home-rebuilt__book-right.page-template-page-estimate .ev-estimate-card .addon-card {
    aspect-ratio: auto !important;
    min-height: 0 !important;
    padding: 14px 14px !important;
    border-radius: 14px !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: flex-start !important;
    justify-content: flex-start !important;
    gap: 10px !important;
}

.page-template-page-estimate .ev-estimate-card .addon-card__check,
.home .home-rebuilt__book-right.page-template-page-estimate .ev-estimate-card .addon-card__check {
    display: none !important;
}

.page-template-page-estimate .ev-estimate-card .addon-card__icon,
.home .home-rebuilt__book-right.page-template-page-estimate .ev-estimate-card .addon-card__icon {
    width: 40px;
    height: 40px;
    margin-bottom: 0;
    border-radius: 10px;
}

.page-template-page-estimate .ev-estimate-card .addon-card__icon svg,
.home .home-rebuilt__book-right.page-template-page-estimate .ev-estimate-card .addon-card__icon svg {
    width: 20px;
    height: 20px;
}

.page-template-page-estimate .ev-estimate-card .addon-card__name,
.home .home-rebuilt__book-right.page-template-page-estimate .ev-estimate-card .addon-card__name {
    font-size: clamp(1.02rem, 1.35vw, 1.22rem);
    line-height: 1.22;
}

.page-template-page-estimate .ev-estimate-card .addon-card__price,
.home .home-rebuilt__book-right.page-template-page-estimate .ev-estimate-card .addon-card__price {
    font-family: var(--font-body);
    font-size: 0.94rem;
    font-weight: 500;
    color: #70695f;
}

.page-template-page-estimate .ev-estimate-card .wizard__panel[data-panel="4"] > p[style],
.home .home-rebuilt__book-right.page-template-page-estimate .ev-estimate-card .wizard__panel[data-panel="4"] > p[style] {
    margin-bottom: 16px !important;
    font-size: 0.93rem !important;
}

.page-template-page-estimate .ev-estimate-card .form__group,
.home .home-rebuilt__book-right.page-template-page-estimate .ev-estimate-card .form__group {
    margin-bottom: 0.75rem;
}

.page-template-page-estimate .ev-estimate-card .form__label,
.home .home-rebuilt__book-right.page-template-page-estimate .ev-estimate-card .form__label {
    font-size: 0.82rem;
    margin-bottom: 0.3rem;
}

.page-template-page-estimate .ev-estimate-card .form__input,
.page-template-page-estimate .ev-estimate-card .form__select,
.page-template-page-estimate .ev-estimate-card .form__textarea,
.home .home-rebuilt__book-right.page-template-page-estimate .ev-estimate-card .form__input,
.home .home-rebuilt__book-right.page-template-page-estimate .ev-estimate-card .form__select,
.home .home-rebuilt__book-right.page-template-page-estimate .ev-estimate-card .form__textarea {
    min-height: 46px;
    padding: 0.66rem 0.82rem;
    border-radius: 10px;
    font-size: 0.92rem;
}

.page-template-page-estimate .ev-estimate-card .form__textarea,
.home .home-rebuilt__book-right.page-template-page-estimate .ev-estimate-card .form__textarea {
    min-height: 92px;
}

@media (max-width: 1024px) {
    .page-template-page-estimate .ev-estimate-card .addon-grid--expanded,
    .home .home-rebuilt__book-right.page-template-page-estimate .ev-estimate-card .addon-grid--expanded {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 640px) {
    .page-template-page-estimate .ev-estimate-card .ev-estimate-body,
    .home .home-rebuilt__book-right.page-template-page-estimate .ev-estimate-card .ev-estimate-body {
        padding: 0 14px 18px;
    }

    .page-template-page-estimate .ev-estimate-card .wizard__panel h2,
    .home .home-rebuilt__book-right.page-template-page-estimate .ev-estimate-card .wizard__panel h2 {
        font-size: clamp(1.58rem, 8vw, 2.25rem) !important;
    }

    .page-template-page-estimate .ev-estimate-card .addon-grid--expanded,
    .home .home-rebuilt__book-right.page-template-page-estimate .ev-estimate-card .addon-grid--expanded {
        grid-template-columns: 1fr;
    }

    .page-template-page-estimate .ev-estimate-card .wizard__step-number,
    .home .home-rebuilt__book-right.page-template-page-estimate .ev-estimate-card .wizard__step-number {
        width: 36px;
        height: 36px;
        font-size: 0.95rem;
    }
}

/* ============================================
   ESTIMATE WIZARD — TARGET MATCH (v3)
   ============================================ */
.page-template-page-estimate .ev-estimate-card .wizard__panel h2,
.home .home-rebuilt__book-right.page-template-page-estimate .ev-estimate-card .wizard__panel h2 {
    margin-bottom: 12px !important;
    text-align: left !important;
    font-family: var(--font-body) !important;
    font-size: clamp(1.45rem, 2.1vw, 1.95rem) !important;
    line-height: 1.2 !important;
    letter-spacing: -0.01em !important;
    font-weight: 700 !important;
}

.page-template-page-estimate .ev-estimate-card .option-card__radio,
.home .home-rebuilt__book-right.page-template-page-estimate .ev-estimate-card .option-card__radio,
.page-template-page-estimate .ev-estimate-card .addon-card__check,
.home .home-rebuilt__book-right.page-template-page-estimate .ev-estimate-card .addon-card__check {
    display: none !important;
}

.page-template-page-estimate .ev-estimate-card .wizard__panel[data-panel="1"] .estimate-options[style],
.home .home-rebuilt__book-right.page-template-page-estimate .ev-estimate-card .wizard__panel[data-panel="1"] .estimate-options[style] {
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 12px !important;
}

.page-template-page-estimate .ev-estimate-card .wizard__panel[data-panel="1"] .option-card,
.home .home-rebuilt__book-right.page-template-page-estimate .ev-estimate-card .wizard__panel[data-panel="1"] .option-card {
    -webkit-appearance: none !important;
    appearance: none !important;
    width: 100% !important;
    display: flex !important;
    align-items: center !important;
    gap: 12px !important;
    min-height: 0 !important;
    padding: 14px 16px !important;
    border-radius: 14px !important;
    text-align: left !important;
}

.page-template-page-estimate .ev-estimate-card .wizard__panel[data-panel="1"] .option-card__content,
.home .home-rebuilt__book-right.page-template-page-estimate .ev-estimate-card .wizard__panel[data-panel="1"] .option-card__content {
    align-items: flex-start !important;
    text-align: left !important;
}

.page-template-page-estimate .ev-estimate-card .wizard__panel[data-panel="1"] .option-card__icon,
.home .home-rebuilt__book-right.page-template-page-estimate .ev-estimate-card .wizard__panel[data-panel="1"] .option-card__icon {
    width: 48px !important;
    height: 48px !important;
    margin: 0 !important;
    border-radius: 12px !important;
    background: #ebdfbe !important;
    color: var(--color-primary) !important;
}

.page-template-page-estimate .ev-estimate-card .wizard__panel[data-panel="1"] .option-card__title,
.home .home-rebuilt__book-right.page-template-page-estimate .ev-estimate-card .wizard__panel[data-panel="1"] .option-card__title {
    margin: 0 0 3px !important;
    max-width: none !important;
    text-wrap: auto !important;
    font-size: clamp(1.28rem, 2vw, 1.95rem) !important;
    line-height: 1.1 !important;
}

.page-template-page-estimate .ev-estimate-card .wizard__panel[data-panel="1"] .option-card__desc,
.home .home-rebuilt__book-right.page-template-page-estimate .ev-estimate-card .wizard__panel[data-panel="1"] .option-card__desc {
    display: none !important;
}

.page-template-page-estimate .ev-estimate-card .wizard__panel[data-panel="1"] .option-card__price,
.home .home-rebuilt__book-right.page-template-page-estimate .ev-estimate-card .wizard__panel[data-panel="1"] .option-card__price {
    margin-top: 0 !important;
    font-family: var(--font-body) !important;
    font-size: 0.98rem !important;
    line-height: 1.2 !important;
    color: #7b7469 !important;
    font-weight: 500 !important;
}

.page-template-page-estimate .ev-estimate-card .wizard__panel[data-panel="1"] .option-card--selected,
.home .home-rebuilt__book-right.page-template-page-estimate .ev-estimate-card .wizard__panel[data-panel="1"] .option-card--selected {
    border-color: var(--color-primary) !important;
    background: #f5faf7 !important;
    box-shadow: 0 0 0 2px rgba(27, 67, 50, 0.12) !important;
}

.page-template-page-estimate .ev-estimate-card .wizard__panel[data-panel="1"] .option-card--selected .option-card__icon,
.home .home-rebuilt__book-right.page-template-page-estimate .ev-estimate-card .wizard__panel[data-panel="1"] .option-card--selected .option-card__icon {
    background: var(--color-primary) !important;
    color: #fff !important;
}

.page-template-page-estimate .ev-estimate-card .frequency-section h3,
.home .home-rebuilt__book-right.page-template-page-estimate .ev-estimate-card .frequency-section h3 {
    font-family: var(--font-body) !important;
    font-size: clamp(1.22rem, 1.6vw, 1.45rem) !important;
    line-height: 1.2 !important;
    margin-bottom: 10px !important;
}

.page-template-page-estimate .ev-estimate-card .frequency-pills,
.home .home-rebuilt__book-right.page-template-page-estimate .ev-estimate-card .frequency-pills {
    gap: 8px !important;
}

.page-template-page-estimate .ev-estimate-card .frequency-pill,
.home .home-rebuilt__book-right.page-template-page-estimate .ev-estimate-card .frequency-pill {
    padding: 8px 14px !important;
    min-height: 0 !important;
    border-width: 2px !important;
}

.page-template-page-estimate .ev-estimate-card .frequency-pill__label,
.home .home-rebuilt__book-right.page-template-page-estimate .ev-estimate-card .frequency-pill__label {
    font-size: 0.95rem !important;
}

.page-template-page-estimate .ev-estimate-card .frequency-pill__badge,
.home .home-rebuilt__book-right.page-template-page-estimate .ev-estimate-card .frequency-pill__badge {
    font-size: 0.95rem !important;
}

.page-template-page-estimate .ev-estimate-card .wizard__panel[data-panel="1"] .wizard__actions,
.home .home-rebuilt__book-right.page-template-page-estimate .ev-estimate-card .wizard__panel[data-panel="1"] .wizard__actions {
    display: block !important;
    margin-top: 16px !important;
    padding-top: 0 !important;
    border-top: 0 !important;
}

.page-template-page-estimate .ev-estimate-card .wizard__panel[data-panel="1"] .wizard__actions > div:first-child,
.home .home-rebuilt__book-right.page-template-page-estimate .ev-estimate-card .wizard__panel[data-panel="1"] .wizard__actions > div:first-child {
    display: none !important;
}

.page-template-page-estimate .ev-estimate-card .wizard__panel[data-panel="1"] .wizard__actions .btn--primary,
.home .home-rebuilt__book-right.page-template-page-estimate .ev-estimate-card .wizard__panel[data-panel="1"] .wizard__actions .btn--primary {
    width: 100% !important;
}

.page-template-page-estimate .ev-estimate-card .wizard__panel[data-panel="3"] .addon-grid--expanded,
.home .home-rebuilt__book-right.page-template-page-estimate .ev-estimate-card .wizard__panel[data-panel="3"] .addon-grid--expanded {
    display: grid !important;
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
    gap: 10px !important;
}

.page-template-page-estimate .ev-estimate-card .wizard__panel[data-panel="3"] .addon-card,
.home .home-rebuilt__book-right.page-template-page-estimate .ev-estimate-card .wizard__panel[data-panel="3"] .addon-card {
    aspect-ratio: auto !important;
    min-height: 0 !important;
    padding: 12px !important;
    border-radius: 14px !important;
    gap: 8px !important;
}

.page-template-page-estimate .ev-estimate-card .wizard__panel[data-panel="3"] .addon-card__icon,
.home .home-rebuilt__book-right.page-template-page-estimate .ev-estimate-card .wizard__panel[data-panel="3"] .addon-card__icon {
    width: 36px !important;
    height: 36px !important;
    margin: 0 !important;
}

.page-template-page-estimate .ev-estimate-card .wizard__panel[data-panel="3"] .addon-card__icon svg,
.home .home-rebuilt__book-right.page-template-page-estimate .ev-estimate-card .wizard__panel[data-panel="3"] .addon-card__icon svg {
    width: 18px !important;
    height: 18px !important;
}

.page-template-page-estimate .ev-estimate-card .wizard__panel[data-panel="3"] .addon-card__name,
.home .home-rebuilt__book-right.page-template-page-estimate .ev-estimate-card .wizard__panel[data-panel="3"] .addon-card__name {
    font-size: 0.98rem !important;
    line-height: 1.25 !important;
}

.page-template-page-estimate .ev-estimate-card .wizard__panel[data-panel="3"] .addon-card__price,
.home .home-rebuilt__book-right.page-template-page-estimate .ev-estimate-card .wizard__panel[data-panel="3"] .addon-card__price {
    font-size: 0.88rem !important;
}

.page-template-page-estimate .ev-estimate-card .wizard__panel[data-panel="3"] .addon-card--selected,
.home .home-rebuilt__book-right.page-template-page-estimate .ev-estimate-card .wizard__panel[data-panel="3"] .addon-card--selected {
    border-color: var(--color-primary) !important;
    background: #f5faf7 !important;
    box-shadow: 0 0 0 2px rgba(27, 67, 50, 0.12) !important;
}

@media (max-width: 980px) {
    .page-template-page-estimate .ev-estimate-card .wizard__panel[data-panel="1"] .estimate-options[style],
    .home .home-rebuilt__book-right.page-template-page-estimate .ev-estimate-card .wizard__panel[data-panel="1"] .estimate-options[style] {
        grid-template-columns: 1fr !important;
    }

    .page-template-page-estimate .ev-estimate-card .wizard__panel[data-panel="3"] .addon-grid--expanded,
    .home .home-rebuilt__book-right.page-template-page-estimate .ev-estimate-card .wizard__panel[data-panel="3"] .addon-grid--expanded {
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    }
}

@media (max-width: 640px) {
    .page-template-page-estimate .ev-estimate-card .wizard__panel h2,
    .home .home-rebuilt__book-right.page-template-page-estimate .ev-estimate-card .wizard__panel h2 {
        font-size: 1.3rem !important;
    }

    .page-template-page-estimate .ev-estimate-card .wizard__panel[data-panel="3"] .addon-grid--expanded,
    .home .home-rebuilt__book-right.page-template-page-estimate .ev-estimate-card .wizard__panel[data-panel="3"] .addon-grid--expanded {
        grid-template-columns: 1fr !important;
    }
}





/* ═══════════════════════════════════════════════════════════════
   WooCommerce My Account — Elegant Visit Redesign
   ═══════════════════════════════════════════════════════════════ */

/* Remove excessive top padding from container */
.woocommerce-account .container {
    padding-top: calc(var(--header-height) + 40px) !important;
    padding-bottom: 80px !important;
}

/* Flex layout: notices full width, then nav + content side by side */
.woocommerce-account .woocommerce {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    gap: 32px;
}

.woocommerce-account .woocommerce-notices-wrapper {
    flex: 0 0 100%;
    order: -1;
}

/* ── Sidebar navigation ── */
.woocommerce-account .woocommerce-MyAccount-navigation {
    flex: 0 0 220px;
    background: #fff;
    border: 1px solid var(--color-border);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0,0,0,.05);
    position: sticky;
    top: 100px;
}

.woocommerce-account .woocommerce-MyAccount-navigation ul {
    list-style: none;
    margin: 0;
    padding: 8px 0;
}

.woocommerce-account .woocommerce-MyAccount-navigation ul li {
    margin: 0;
    border-bottom: 1px solid var(--color-border-light);
}
.woocommerce-account .woocommerce-MyAccount-navigation ul li:last-child {
    border-bottom: none;
}

.woocommerce-account .woocommerce-MyAccount-navigation ul li a {
    display: block;
    padding: 13px 20px;
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--color-text-light);
    text-decoration: none;
    transition: background .15s, color .15s;
}
.woocommerce-account .woocommerce-MyAccount-navigation ul li a:hover {
    background: var(--color-bg);
    color: var(--color-primary);
}
.woocommerce-account .woocommerce-MyAccount-navigation ul li.is-active > a {
    background: rgba(27,67,50,.07);
    color: var(--color-primary);
    font-weight: 600;
    box-shadow: inset 3px 0 0 var(--color-primary);
}
.woocommerce-account .woocommerce-MyAccount-navigation ul li:last-child a {
    color: var(--color-error);
}
.woocommerce-account .woocommerce-MyAccount-navigation ul li:last-child a:hover {
    background: #fff5f5;
}

/* ── Main content ── */
.woocommerce-account .woocommerce-MyAccount-content {
    flex: 1 1 0;
    min-width: 0;
    background: #fff;
    border: 1px solid var(--color-border);
    border-radius: 16px;
    padding: 36px 40px;
    box-shadow: 0 2px 12px rgba(0,0,0,.05);
}

/* Intro text */
.woocommerce-account .woocommerce-MyAccount-content > p:first-child {
    font-size: 1rem;
    color: var(--color-text-muted);
    line-height: 1.6;
    margin-bottom: 24px;
    padding-bottom: 24px;
    border-bottom: 1px solid var(--color-border-light);
}

/* Headings */
.woocommerce-account .woocommerce-MyAccount-content h2,
.woocommerce-account .woocommerce-MyAccount-content h3 {
    font-family: var(--font-display);
    color: var(--color-primary);
    margin-top: 0;
    margin-bottom: 16px;
    font-size: 1.4rem;
}

/* ── Address boxes ── */
.woocommerce-account .cjp-address-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin: 0;
}
.woocommerce-account .woocommerce-Address {
    background: var(--color-bg);
    border: 1px solid var(--color-border);
    border-radius: 12px;
    padding: 24px;
    box-sizing: border-box;
}
.woocommerce-account .woocommerce-Address-title {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 12px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--color-border);
}
.woocommerce-account .woocommerce-Address-title h2,
.woocommerce-account .woocommerce-Address-title h3 {
    font-family: var(--font-body) !important;
    font-size: 0.8rem !important;
    font-weight: 700 !important;
    color: var(--color-text-muted) !important;
    text-transform: uppercase !important;
    letter-spacing: 0.5px !important;
    margin: 0 !important;
    padding: 0 !important;
    border: none !important;
}
.woocommerce-account .woocommerce-Address-title .edit {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--color-accent-dark);
    text-decoration: none;
    background: var(--color-bg-alt);
    padding: 4px 12px;
    border-radius: 20px;
    border: 1px solid var(--color-border);
    transition: background .15s;
}
.woocommerce-account .woocommerce-Address-title .edit:hover {
    background: var(--color-border);
}
.woocommerce-account .woocommerce-Address address {
    font-style: normal;
    font-size: 0.9rem;
    line-height: 1.7;
    color: var(--color-text-light);
}

/* ── Orders table ── */
.woocommerce-account .woocommerce-orders-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.9rem;
}
.woocommerce-account .woocommerce-orders-table th {
    font-size: 0.73rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .5px;
    color: var(--color-text-muted);
    padding: 10px 14px;
    border-bottom: 2px solid var(--color-border);
    text-align: left;
}
.woocommerce-account .woocommerce-orders-table td {
    padding: 12px 14px;
    border-bottom: 1px solid var(--color-border-light);
    color: var(--color-text);
    vertical-align: middle;
}
.woocommerce-account .woocommerce-orders-table tbody tr:hover td {
    background: var(--color-bg);
}
.woocommerce-account .woocommerce-orders-table .button {
    font-size: 0.78rem !important;
    padding: 5px 14px !important;
    background: var(--color-primary) !important;
    color: #fff !important;
    border: none !important;
    border-radius: 20px !important;
    cursor: pointer;
    text-decoration: none;
}
.woocommerce-account .woocommerce-orders-table .button:hover {
    background: var(--color-primary-light) !important;
}

/* ── Forms ── */
.woocommerce-account .woocommerce-MyAccount-content .form-row label,
.woocommerce-account .woocommerce-MyAccount-content p label {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--color-text-muted);
    text-transform: uppercase;
    letter-spacing: .4px;
    display: block;
    margin-bottom: 6px;
}
.woocommerce-account .woocommerce-MyAccount-content .form-row {
    margin-bottom: 16px;
}
.woocommerce-account .woocommerce-MyAccount-content input[type="text"],
.woocommerce-account .woocommerce-MyAccount-content input[type="email"],
.woocommerce-account .woocommerce-MyAccount-content input[type="password"],
.woocommerce-account .woocommerce-MyAccount-content input[type="tel"],
.woocommerce-account .woocommerce-MyAccount-content select,
.woocommerce-account .woocommerce-MyAccount-content textarea {
    width: 100%;
    border: 1px solid var(--color-border) !important;
    border-radius: 8px !important;
    padding: 10px 14px !important;
    font-size: 0.92rem !important;
    font-family: var(--font-body) !important;
    color: var(--color-text) !important;
    background: var(--color-bg) !important;
    box-sizing: border-box;
    transition: border-color .2s, box-shadow .2s;
}
.woocommerce-account .woocommerce-MyAccount-content input:focus,
.woocommerce-account .woocommerce-MyAccount-content select:focus,
.woocommerce-account .woocommerce-MyAccount-content textarea:focus {
    outline: none !important;
    border-color: var(--color-primary) !important;
    box-shadow: 0 0 0 3px rgba(27,67,50,.1) !important;
    background: #fff !important;
}
.woocommerce-account .woocommerce-MyAccount-content .button,
.woocommerce-account .woocommerce-MyAccount-content button[type="submit"],
.woocommerce-account .woocommerce-MyAccount-content input[type="submit"] {
    background: var(--color-primary) !important;
    color: #fff !important;
    border: none !important;
    border-radius: 50px !important;
    padding: 12px 32px !important;
    font-size: 0.92rem !important;
    font-weight: 600 !important;
    font-family: var(--font-body) !important;
    cursor: pointer;
    transition: background .2s;
    text-decoration: none;
    display: inline-block;
}
.woocommerce-account .woocommerce-MyAccount-content .button:hover,
.woocommerce-account .woocommerce-MyAccount-content button[type="submit"]:hover {
    background: var(--color-primary-light) !important;
    color: #fff !important;
}

/* ── Notices ── */
.woocommerce-account .woocommerce-message,
.woocommerce-account .woocommerce-error,
.woocommerce-account .woocommerce-info {
    border-radius: 10px;
    padding: 14px 18px;
    margin-bottom: 20px;
    font-size: 0.9rem;
    border-left: 4px solid var(--color-primary);
    background: rgba(27,67,50,.06);
    color: var(--color-primary-dark);
    list-style: none;
}
.woocommerce-account .woocommerce-error {
    border-color: var(--color-error);
    background: var(--color-error-light);
    color: #9b1c1c;
}
.woocommerce-account .woocommerce-info {
    border-color: var(--color-accent);
    background: #fdf8ee;
    color: var(--color-accent-dark);
}

/* ── Responsive ── */
@media (max-width: 768px) {
    .woocommerce-account .woocommerce {
        flex-direction: column;
        gap: 16px;
    }
    .woocommerce-account .woocommerce-MyAccount-navigation {
        flex: 0 0 auto;
        position: static;
    }
    .woocommerce-account .woocommerce-Addresses {
        grid-template-columns: 1fr;
    }
    .woocommerce-account .woocommerce-MyAccount-content {
        padding: 24px 20px;
    }
}

/* ================================================================

/* ================================================================
   PRIVACY POLICY PAGE  (pp-*)
   ================================================================ */

/* ── Hero (light, nav-safe) ── */
.pp-hero {
    padding: calc(var(--header-height) + var(--space-3xl)) 0 var(--space-2xl);
    background: linear-gradient(160deg, var(--color-bg-alt) 0%, var(--color-white) 60%);
    border-bottom: 1px solid var(--color-border-light);
}

.pp-breadcrumb {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    margin-bottom: var(--space-xl);
    font-size: var(--text-sm);
    color: var(--color-text-muted);
}
.pp-breadcrumb a { color: var(--color-primary); text-decoration: none; transition: color var(--duration-fast); }
.pp-breadcrumb a:hover { color: var(--color-primary-dark); }

.pp-hero__body { display: flex; align-items: flex-start; gap: var(--space-2xl); justify-content: space-between; }
.pp-hero__text { flex: 1; max-width: 580px; }

.pp-hero__tag {
    display: inline-block;
    font-size: var(--text-xs); font-weight: 600;
    letter-spacing: var(--tracking-wider); text-transform: uppercase;
    color: var(--color-primary); background: var(--color-primary-bg);
    padding: 4px 12px; border-radius: var(--radius-full); margin-bottom: var(--space-md);
}
.pp-hero__title {
    font-family: var(--font-display); font-size: var(--text-5xl); font-weight: 700;
    color: var(--color-text); line-height: var(--leading-tight);
    margin-bottom: var(--space-lg); letter-spacing: var(--tracking-tight);
}
.pp-hero__lead { font-size: var(--text-lg); color: var(--color-text-light); line-height: var(--leading-relaxed); margin: 0; }

.pp-hero__card {
    flex-shrink: 0; width: 260px;
    background: var(--color-white); border: 1px solid var(--color-border);
    border-radius: var(--radius-xl); padding: var(--space-xl);
    box-shadow: var(--shadow-md); text-align: center;
}
.pp-hero__icon { width: 64px; height: 64px; margin: 0 auto var(--space-md); display: block; }
.pp-hero__card-text { font-size: var(--text-sm); color: var(--color-text-light); line-height: var(--leading-relaxed); margin: 0; }

/* ── Body ── */
.pp-body { padding: var(--space-3xl) 0 var(--space-4xl); background: var(--color-bg); }
.pp-layout { display: grid; grid-template-columns: 220px 1fr; gap: var(--space-3xl); align-items: start; }

/* ── Sidebar nav ── */
.pp-nav { position: sticky; top: calc(var(--header-height) + var(--space-lg)); }
.pp-nav__inner { background: var(--color-white); border: 1px solid var(--color-border); border-radius: var(--radius-lg); padding: var(--space-lg); }
.pp-nav__label { font-size: var(--text-xs); font-weight: 700; letter-spacing: var(--tracking-wider); text-transform: uppercase; color: var(--color-text-muted); margin: 0 0 var(--space-md); padding: 0 var(--space-sm); }
.pp-nav__list { list-style: none; margin: 0; padding: 0; counter-reset: ppnav; }
.pp-nav__list li { counter-increment: ppnav; }
.pp-nav__list a { display: flex; align-items: center; gap: var(--space-sm); padding: 7px var(--space-sm); font-size: var(--text-sm); color: var(--color-text-light); text-decoration: none; border-radius: var(--radius-sm); transition: all var(--duration-fast) var(--ease-out); }
.pp-nav__list a::before { content: counter(ppnav, decimal-leading-zero); font-size: 10px; font-weight: 600; color: var(--color-text-muted); min-width: 20px; flex-shrink: 0; }
.pp-nav__list a:hover { background: var(--color-primary-bg); color: var(--color-primary); padding-left: 12px; }
.pp-nav__list a:hover::before { color: var(--color-primary); }

/* ── Content ── */
.pp-intro { font-size: var(--text-base); color: var(--color-text-light); line-height: var(--leading-relaxed); background: var(--color-white); border-left: 3px solid var(--color-accent); border-radius: 0 var(--radius-md) var(--radius-md) 0; padding: var(--space-lg) var(--space-xl); margin-bottom: var(--space-2xl); }
.pp-intro strong { color: var(--color-text); }

.pp-section { padding-bottom: var(--space-2xl); margin-bottom: var(--space-2xl); border-bottom: 1px solid var(--color-border-light); }
.pp-section--last { border-bottom: none; margin-bottom: 0; padding-bottom: 0; }
.pp-section h2 { font-family: var(--font-display); font-size: var(--text-2xl); color: var(--color-text); margin-bottom: var(--space-lg); padding-bottom: var(--space-sm); border-bottom: 2px solid var(--color-border-light); }
.pp-section p { font-size: var(--text-base); color: var(--color-text-light); line-height: var(--leading-relaxed); margin-bottom: var(--space-md); }
.pp-section ul { margin: 0 0 var(--space-md); padding: 0; list-style: none; }
.pp-section ul li { font-size: var(--text-base); color: var(--color-text-light); line-height: var(--leading-relaxed); margin-bottom: var(--space-sm); padding-left: var(--space-lg); position: relative; }
.pp-section ul li::before { content: ""; position: absolute; left: 0; top: 10px; width: 6px; height: 6px; border-radius: 50%; background: var(--color-accent); }
.pp-section a { color: var(--color-primary); text-decoration: underline; text-underline-offset: 3px; }
.pp-section a:hover { color: var(--color-primary-light); }

/* ── Table ── */
.pp-table { border: 1px solid var(--color-border); border-radius: var(--radius-md); overflow: hidden; margin: var(--space-md) 0 var(--space-lg); background: var(--color-white); }
.pp-table__head, .pp-table__row { display: grid; grid-template-columns: 1fr 2fr; }
.pp-table--3col .pp-table__head, .pp-table--3col .pp-table__row { grid-template-columns: 1fr 2fr 1fr; }
.pp-table__head { background: var(--color-primary); }
.pp-table__head span { padding: var(--space-sm) var(--space-md); font-size: var(--text-xs); font-weight: 700; letter-spacing: var(--tracking-wide); text-transform: uppercase; color: rgba(255,255,255,0.85); }
.pp-table__row { border-top: 1px solid var(--color-border-light); }
.pp-table__row:hover { background: var(--color-bg-alt); }
.pp-table__row span { padding: var(--space-sm) var(--space-md); font-size: var(--text-sm); color: var(--color-text-light); display: flex; align-items: center; }
.pp-table__row span + span { border-left: 1px solid var(--color-border-light); }

/* ── Tags ── */
.pp-tag { display: inline-block; font-size: 11px; font-weight: 600; padding: 2px 10px; border-radius: var(--radius-full); }
.pp-tag--required { background: #d7f3e4; color: #1a6b3c; }
.pp-tag--neutral  { background: var(--color-bg-alt); color: var(--color-text-muted); }

/* ── Rights grid ── */
.pp-rights-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--space-md); margin-bottom: var(--space-lg); }
.pp-right { background: var(--color-white); border: 1px solid var(--color-border); border-radius: var(--radius-md); padding: var(--space-md) var(--space-lg); }
.pp-right strong { display: block; font-size: var(--text-sm); font-weight: 600; color: var(--color-primary); margin-bottom: 4px; }
.pp-right p { font-size: var(--text-sm); color: var(--color-text-muted); margin: 0; line-height: 1.5; }

/* ── Callout ── */
.pp-callout { background: rgba(196,154,60,0.07); border: 1px solid rgba(196,154,60,0.25); border-radius: var(--radius-md); padding: var(--space-md) var(--space-lg); font-size: var(--text-sm); color: var(--color-text-light); line-height: var(--leading-relaxed); margin: var(--space-md) 0 var(--space-lg); }
.pp-callout strong { color: var(--color-warning); }

/* ── Contact ── */
.pp-contact { display: flex; gap: var(--space-md); flex-wrap: wrap; margin-top: var(--space-lg); }
.pp-contact__item { display: flex; align-items: center; gap: var(--space-sm); background: var(--color-white); border: 1px solid var(--color-border); border-radius: var(--radius-full); padding: var(--space-sm) var(--space-lg); font-size: var(--text-sm); color: var(--color-text); text-decoration: none; transition: all var(--duration-fast) var(--ease-out); box-shadow: var(--shadow-sm); }
.pp-contact__item:hover { background: var(--color-primary); color: var(--color-white); border-color: var(--color-primary); }
.pp-contact__icon { color: var(--color-primary); display: flex; }
.pp-contact__item:hover .pp-contact__icon { color: var(--color-white); }

/* ── Responsive ── */
@media (max-width: 1024px) {
    .pp-layout { grid-template-columns: 200px 1fr; gap: var(--space-xl); }
    .pp-rights-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
    .pp-hero__body { flex-direction: column; }
    .pp-hero__card { width: 100%; box-sizing: border-box; }
    .pp-hero__title { font-size: var(--text-4xl); }
    .pp-layout { grid-template-columns: 1fr; }
    .pp-nav { position: static; }
    .pp-nav__list { display: flex; flex-wrap: wrap; gap: 4px; }
    .pp-nav__list a { padding: 4px 10px; font-size: 12px; border: 1px solid var(--color-border); }
    .pp-nav__list a::before { display: none; }
    .pp-rights-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 480px) {
    .pp-rights-grid { grid-template-columns: 1fr; }
}
