/* ================================================
   PRICING CONFIGURATOR — Luxury Styles
   ================================================ */

.subpage-pricing-v2 {
    background: var(--cream);
    color: var(--ink);
}

.subpage-pricing-v2 main {
    background: var(--cream);
    padding: 0;
    min-height: 0;
    display: block;
}

/* ────────────────────────────────────────────────
   PRICING HERO
   ──────────────────────────────────────────────── */
.pricing-hero {
    position: relative;
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: var(--black);
    padding: 14dvh 6dvw 10dvh;
    margin-top: calc(7rem + 32px); /* offset for sticky header + ticker */
}

.pricing-hero-bg {
    position: absolute;
    inset: 0;
    background-image: url('../images/carolina-cossio-2J0NkF2cFlI-unsplash-1200.webp');
    background-size: cover;
    background-position: center;
    animation: hero-ken-burns 30s var(--ease-smooth) infinite alternate;
}

.pricing-hero-overlay {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at center, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.85) 100%),
        linear-gradient(to bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.85));
}

.pricing-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--white);
    max-width: 800px;
}

.pricing-hero-content h1 {
    font-size: clamp(4rem, 7vw, 7rem);
    color: var(--white);
    margin: 1.5rem 0 2.5rem;
    text-align: center;
    line-height: 1.05;
}

.pricing-hero-content h1 em {
    color: var(--gold);
    font-style: italic;
    font-weight: 300;
}

.pricing-hero-sub {
    font-family: var(--font-display);
    font-style: italic;
    font-size: 1.9rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
    font-weight: 300;
    max-width: 620px;
    margin: 0 auto;
}

.pricing-hero-down {
    margin-top: 5rem;
}

.pricing-hero-down span {
    display: inline-block;
    width: 1px;
    height: 60px;
    background: linear-gradient(to bottom, var(--gold), transparent);
    position: relative;
    overflow: hidden;
}

.pricing-hero-down span::after {
    content: '';
    position: absolute;
    top: -60px;
    left: 0;
    width: 1px;
    height: 60px;
    background: linear-gradient(to bottom, transparent, var(--gold-bright), transparent);
    animation: scroll-line 2.4s var(--ease-smooth) infinite;
}

/* ────────────────────────────────────────────────
   CONFIGURATOR LAYOUT
   ──────────────────────────────────────────────── */
.configurator {
    padding: 8dvh 6dvw 12dvh;
    max-width: 1400px;
    margin: 0 auto;
}

/* STEPPER */
.stepper {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    margin-bottom: 6rem;
    position: relative;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.step-track {
    position: absolute;
    top: 22px;
    left: 12.5%;
    width: 75%;
    height: 1px;
    background: rgba(0, 0, 0, 0.1);
    z-index: 0;
}

.step-track::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    background: var(--gold);
    width: 0%;
    transition: width 600ms var(--ease-luxury);
}

.subpage-pricing-v2[data-current-step="2"] .step-track::after { width: 33.33%; }
.subpage-pricing-v2[data-current-step="3"] .step-track::after { width: 66.66%; }
.subpage-pricing-v2[data-current-step="4"] .step-track::after { width: 100%; }

.step {
    background: none;
    border: none;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    padding: 0;
    color: rgba(0, 0, 0, 0.4);
    transition: color 400ms var(--ease-luxury);
    font-family: var(--font-serif);
    z-index: 1;
}

.step:disabled {
    cursor: not-allowed;
}

.step-num {
    width: 44px;
    height: 44px;
    border: 1px solid rgba(0, 0, 0, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--cream);
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-weight: 500;
    color: rgba(0, 0, 0, 0.4);
    transition: all 500ms var(--ease-luxury);
}

.step.active .step-num,
.step.completed .step-num {
    border-color: var(--gold);
    background: var(--gold);
    color: var(--white);
}

.step.active {
    color: var(--ink);
}

.step.completed { color: var(--gold-deep); }

.step.completed .step-num::after {
    content: '✓';
    position: absolute;
}

.step.completed .step-num { font-size: 0; }
.step.completed .step-num::before {
    content: '✓';
    font-size: 1.5rem;
    color: var(--white);
}

.step-label {
    font-size: 1.05rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    font-weight: 500;
}

/* CONFIG LAYOUT */
.config-layout {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 5rem;
    align-items: start;
}

.config-panel {
    background: var(--white);
    padding: 5rem 5rem 3rem;
    box-shadow: 0 4px 40px rgba(0, 0, 0, 0.04);
    min-height: 600px;
    position: relative;
}

/* CONFIG STEPS */
.config-step {
    display: none;
    animation: step-fade 600ms var(--ease-luxury);
}

.config-step.active {
    display: block;
}

@keyframes step-fade {
    from { opacity: 0; transform: translateX(20px); }
    to { opacity: 1; transform: translateX(0); }
}

.config-step-header {
    margin-bottom: 4rem;
}

.step-eyebrow {
    font-size: 1rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--gold);
    font-weight: 500;
    margin-bottom: 1rem;
    display: block;
}

.config-step-header h2 {
    font-size: clamp(2.8rem, 4vw, 4rem);
    color: var(--ink);
    margin: 0 0 1.5rem;
    text-align: left;
    line-height: 1.1;
}

.config-step-header h2 em {
    color: var(--gold);
    font-style: italic;
    font-weight: 300;
}

.config-step-header p {
    font-family: var(--font-display);
    font-style: italic;
    font-size: 1.7rem;
    color: rgba(0, 0, 0, 0.55);
    line-height: 1.6;
    font-weight: 300;
    margin: 0;
}

/* ────────────────────────────────────────────────
   SERVICE CARDS
   ──────────────────────────────────────────────── */
.service-cards {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

.svc-card {
    background: var(--white);
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 4px;
    overflow: hidden;
    cursor: pointer;
    text-align: left;
    padding: 0;
    display: grid;
    grid-template-columns: 220px 1fr;
    transition: all 500ms var(--ease-luxury);
    font-family: var(--font-serif);
    position: relative;
}

.svc-card:hover {
    border-color: var(--gold);
    transform: translateY(-3px);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.svc-card.active {
    border-color: var(--gold);
    background: linear-gradient(135deg, rgba(219, 161, 54, 0.04), rgba(219, 161, 54, 0.01));
    box-shadow: 0 0 0 2px var(--gold);
}

.svc-card-img {
    background-size: cover;
    background-position: center;
    min-height: 200px;
    position: relative;
    overflow: hidden;
}

.svc-card-img::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.2) 100%);
}

.svc-badge {
    position: absolute;
    top: 1.5rem;
    left: 1.5rem;
    background: var(--gold);
    color: var(--white);
    padding: 0.6rem 1.2rem;
    font-size: 1rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    border-radius: 2px;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 500;
    z-index: 2;
}

.svc-badge i {
    color: var(--white);
    font-size: 0.95rem;
}

.svc-card-body {
    padding: 2.5rem 3rem;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.svc-card-tag {
    font-size: 1rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--gold);
    font-weight: 500;
}

.svc-card h3 {
    font-family: var(--font-display);
    font-size: 2.4rem;
    color: var(--ink);
    margin: 0;
    font-weight: 500;
    text-align: left;
}

.svc-card p {
    font-size: 1.4rem;
    line-height: 1.7;
    color: rgba(0, 0, 0, 0.6);
    font-weight: 300;
    margin: 0;
}

.svc-card-price {
    font-size: 1.3rem;
    color: rgba(0, 0, 0, 0.55);
    margin-top: auto;
    padding-top: 1rem;
    border-top: 1px solid rgba(0, 0, 0, 0.06);
}

.svc-card-price strong {
    font-family: var(--font-display);
    color: var(--gold-deep);
    font-size: 1.8rem;
    font-weight: 600;
    margin: 0 0.2rem;
}

/* ────────────────────────────────────────────────
   CONFIG FIELDS
   ──────────────────────────────────────────────── */
.config-field {
    margin-bottom: 3.5rem;
}

.config-field > label {
    display: block;
    font-size: 1.15rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold-deep);
    font-weight: 500;
    margin-bottom: 1.5rem;
}

.config-field .optional {
    color: rgba(0, 0, 0, 0.3);
    font-weight: 400;
    letter-spacing: 0.1em;
    text-transform: none;
    font-style: italic;
}

.config-hint {
    margin-top: 1rem;
    font-size: 1.25rem;
    color: rgba(0, 0, 0, 0.45);
    font-style: italic;
    font-family: var(--font-display);
    font-weight: 400;
}

.config-detail { display: none; }
.config-detail.active { display: block; }

/* ────────────────────────────────────────────────
   LUXURY SLIDER
   ──────────────────────────────────────────────── */
.slider-wrap {
    display: grid;
    grid-template-columns: 1fr 140px;
    gap: 3rem;
    align-items: center;
}

.luxury-slider {
    -webkit-appearance: none;
    appearance: none;
    width: 100%;
    height: 4px;
    background: linear-gradient(to right, var(--gold) 0%, var(--gold) var(--fill, 13%), rgba(0,0,0,0.1) var(--fill, 13%), rgba(0,0,0,0.1) 100%);
    border-radius: 2px;
    outline: none;
    cursor: pointer;
}

.luxury-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 28px;
    height: 28px;
    background: var(--white);
    border: 2px solid var(--gold);
    border-radius: 50%;
    cursor: pointer;
    box-shadow: 0 2px 12px rgba(219, 161, 54, 0.3);
    transition: all 300ms var(--ease-luxury);
}

.luxury-slider::-webkit-slider-thumb:hover {
    transform: scale(1.15);
    box-shadow: 0 4px 20px rgba(219, 161, 54, 0.5);
}

.luxury-slider::-moz-range-thumb {
    width: 24px;
    height: 24px;
    background: var(--white);
    border: 2px solid var(--gold);
    border-radius: 50%;
    cursor: pointer;
    box-shadow: 0 2px 12px rgba(219, 161, 54, 0.3);
}

.slider-output {
    text-align: right;
    display: flex;
    align-items: baseline;
    justify-content: flex-end;
    gap: 0.5rem;
}

.slider-output > span:first-child {
    font-family: var(--font-display);
    font-size: 4.5rem;
    color: var(--gold-deep);
    font-weight: 500;
    line-height: 1;
    letter-spacing: -0.02em;
}

.slider-unit {
    font-size: 1.15rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(0, 0, 0, 0.5);
    font-weight: 400;
}

.slider-ticks {
    display: flex;
    justify-content: space-between;
    margin-top: 1rem;
    padding-right: 170px;
    font-size: 1.05rem;
    color: rgba(0, 0, 0, 0.3);
    letter-spacing: 0.1em;
    font-weight: 400;
}

/* ────────────────────────────────────────────────
   STEPPER INPUT (snacks +/−)
   ──────────────────────────────────────────────── */
.stepper-input {
    display: inline-flex;
    align-items: center;
    gap: 0;
    border: 1px solid rgba(0, 0, 0, 0.12);
    border-radius: 2px;
    overflow: hidden;
}

.step-btn {
    background: var(--white);
    border: none;
    width: 50px;
    height: 50px;
    font-size: 2rem;
    cursor: pointer;
    color: var(--gold-deep);
    transition: all 300ms var(--ease-luxury);
    font-family: var(--font-serif);
}

.step-btn:hover {
    background: var(--gold);
    color: var(--white);
}

.stepper-input > span {
    font-family: var(--font-display);
    font-size: 2.8rem;
    color: var(--ink);
    font-weight: 500;
    min-width: 80px;
    text-align: center;
    border-left: 1px solid rgba(0, 0, 0, 0.08);
    border-right: 1px solid rgba(0, 0, 0, 0.08);
    line-height: 50px;
}

/* ────────────────────────────────────────────────
   TOGGLE BUTTONS
   ──────────────────────────────────────────────── */
.toggle-wrap {
    display: inline-flex;
    gap: 0;
    border: 1px solid rgba(0, 0, 0, 0.12);
    border-radius: 2px;
    overflow: hidden;
}

.toggle-btn {
    background: var(--white);
    border: none;
    padding: 1.2rem 2.4rem;
    font-size: 1.3rem;
    font-family: var(--font-serif);
    color: rgba(0, 0, 0, 0.55);
    cursor: pointer;
    transition: all 400ms var(--ease-luxury);
    letter-spacing: 0.05em;
}

.toggle-btn.active {
    background: var(--gold);
    color: var(--white);
}

.toggle-btn:not(.active):hover {
    background: rgba(219, 161, 54, 0.08);
    color: var(--gold-deep);
}

/* ────────────────────────────────────────────────
   STYLE CARDS (Service Style)
   ──────────────────────────────────────────────── */
.style-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.style-card {
    background: var(--white);
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 4px;
    padding: 2.4rem 1.8rem;
    cursor: pointer;
    text-align: left;
    font-family: var(--font-serif);
    transition: all 400ms var(--ease-luxury);
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    position: relative;
}

.style-card:hover {
    border-color: var(--gold);
    transform: translateY(-2px);
}

.style-card.active {
    border-color: var(--gold);
    background: linear-gradient(135deg, rgba(219, 161, 54, 0.06), rgba(219, 161, 54, 0.02));
    box-shadow: 0 0 0 1px var(--gold);
}

.style-tag {
    font-size: 0.95rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--gold);
    font-weight: 500;
}

.style-card h4 {
    font-family: var(--font-display);
    font-size: 1.9rem;
    color: var(--ink);
    margin: 0;
    text-align: left;
    font-weight: 500;
}

.style-card p {
    font-size: 1.25rem;
    line-height: 1.6;
    color: rgba(0, 0, 0, 0.55);
    margin: 0;
    flex: 1;
    font-weight: 300;
}

.style-price {
    font-family: var(--font-display);
    color: var(--gold-deep);
    font-size: 1.6rem;
    font-weight: 600;
    margin-top: auto;
    padding-top: 1rem;
    border-top: 1px solid rgba(0, 0, 0, 0.06);
}

/* ────────────────────────────────────────────────
   DIET CHIPS
   ──────────────────────────────────────────────── */
.chip-group {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
}

.diet-chip {
    background: var(--white);
    border: 1px solid rgba(0, 0, 0, 0.12);
    padding: 1rem 1.8rem;
    border-radius: 30px;
    cursor: pointer;
    font-family: var(--font-serif);
    font-size: 1.25rem;
    color: rgba(0, 0, 0, 0.6);
    transition: all 400ms var(--ease-luxury);
    letter-spacing: 0.03em;
}

.diet-chip:hover {
    border-color: var(--gold);
    color: var(--gold-deep);
}

.diet-chip.active {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--white);
}

/* ────────────────────────────────────────────────
   TEXTBOX OVERRIDE (light variant for pricing)
   ──────────────────────────────────────────────── */
.subpage-pricing-v2 .textbox {
    background: var(--white);
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 2px;
    padding: 1.4rem 1.6rem;
    font-size: 1.4rem;
    color: var(--ink);
    width: 100%;
    transition: all 400ms var(--ease-luxury);
    font-family: var(--font-serif);
}

.subpage-pricing-v2 .textbox::placeholder {
    color: rgba(0, 0, 0, 0.3);
}

.subpage-pricing-v2 .textbox:focus {
    outline: none;
    border-color: var(--gold);
    background: var(--white);
    box-shadow: 0 0 0 3px rgba(219, 161, 54, 0.12);
}

.subpage-pricing-v2 textarea.textbox {
    min-height: 12rem;
    resize: vertical;
    font-family: var(--font-serif);
}

/* ────────────────────────────────────────────────
   STEP NAVIGATION
   ──────────────────────────────────────────────── */
.step-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 5rem;
    padding-top: 3rem;
    border-top: 1px solid rgba(0, 0, 0, 0.06);
}

.step-nav-btn {
    background: none;
    border: none;
    font-family: var(--font-serif);
    font-size: 1.25rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    cursor: pointer;
    padding: 1.4rem 0;
    color: rgba(0, 0, 0, 0.4);
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    transition: color 400ms var(--ease-luxury);
}

.step-back:not(:disabled):hover { color: var(--gold-deep); }

.step-back:disabled { opacity: 0.3; cursor: not-allowed; }

.step-next {
    color: var(--white);
    background: var(--ink);
    padding: 1.6rem 3.5rem;
    border-radius: 2px;
    position: relative;
    overflow: hidden;
    isolation: isolate;
}

.step-next::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--gold);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 500ms var(--ease-luxury);
    z-index: -1;
}

.step-next:hover::before {
    transform: scaleX(1);
}

.step-next:disabled {
    background: rgba(0, 0, 0, 0.15);
    cursor: not-allowed;
}

.step-next i {
    transition: transform 400ms var(--ease-luxury);
}

.step-next:hover i { transform: translateX(5px); }

/* ────────────────────────────────────────────────
   QUOTE ASIDE (live quote)
   ──────────────────────────────────────────────── */
.quote-aside {
    position: sticky;
    top: calc(7rem + 60px);
}

.quote-card {
    background: var(--ink);
    color: var(--white);
    padding: 3rem 2.5rem;
    border-radius: 4px;
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.12);
    position: relative;
    overflow: hidden;
}

.quote-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--gold-deep), var(--gold-bright), var(--gold-deep));
}

.quote-card-header {
    margin-bottom: 2.5rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.quote-eyebrow {
    font-size: 1rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--gold);
    font-weight: 500;
    display: block;
    margin-bottom: 0.6rem;
}

.quote-card-header h3 {
    font-size: 2.5rem;
    color: var(--white);
    margin: 0;
    text-align: left;
    font-weight: 500;
}

.quote-empty {
    text-align: center;
    padding: 3rem 1rem 2rem;
}

.quote-empty i {
    font-size: 3rem;
    color: var(--gold);
    opacity: 0.4;
    margin-bottom: 1.5rem;
}

.quote-empty p {
    font-family: var(--font-display);
    font-style: italic;
    color: rgba(255, 255, 255, 0.45);
    font-size: 1.5rem;
    line-height: 1.6;
    margin: 0;
    font-weight: 300;
}

.quote-content { animation: fade-in 500ms var(--ease-luxury); }

@keyframes fade-in {
    from { opacity: 0; }
    to { opacity: 1; }
}

.quote-service-info {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
    margin-bottom: 0;
}

.quote-service-info .qs-label {
    font-size: 1rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.4);
    font-weight: 500;
}

.quote-service-info .qs-name {
    font-family: var(--font-display);
    font-size: 2.2rem;
    color: var(--gold);
    font-style: italic;
    font-weight: 400;
}

.quote-service-info .qs-detail {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.5);
    font-style: italic;
    margin-top: 0.4rem;
}

.quote-divider {
    border: none;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    margin: 1.5rem 0;
}

.quote-divider-bold { border-top: 1px solid rgba(219, 161, 54, 0.3); margin: 2rem 0; }

.quote-line-items {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.q-line {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 300;
}

.q-line-label { font-family: var(--font-serif); }
.q-line-amount { font-family: var(--font-display); color: var(--white); }

.q-line.q-discount .q-line-label { color: #7ecf7e; }
.q-line.q-discount .q-line-amount { color: #7ecf7e; }

.quote-total {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
}

.quote-total-label {
    font-size: 1.1rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.5);
    font-weight: 500;
}

.quote-total-amount {
    font-family: var(--font-display);
    font-size: 3.2rem;
    color: var(--gold);
    font-weight: 600;
    line-height: 1;
    letter-spacing: -0.01em;
    transition: color 300ms ease;
}

.quote-total-amount.pulse {
    animation: total-pulse 700ms var(--ease-luxury);
}

@keyframes total-pulse {
    0% { color: var(--gold); transform: scale(1); }
    50% { color: var(--gold-bright); transform: scale(1.08); }
    100% { color: var(--gold); transform: scale(1); }
}

.quote-disclaimer {
    font-family: var(--font-display);
    font-style: italic;
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.35);
    line-height: 1.6;
    margin-top: 1.5rem;
    font-weight: 300;
}

/* PERKS */
.quote-perks {
    margin-top: 2.5rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.quote-perk {
    display: flex;
    gap: 1.2rem;
    align-items: flex-start;
}

.quote-perk i {
    color: var(--gold);
    font-size: 1.4rem;
    width: 24px;
    margin-top: 0.3rem;
}

.quote-perk div {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}

.quote-perk strong {
    font-size: 1.25rem;
    color: var(--white);
    font-weight: 500;
    letter-spacing: 0.02em;
}

.quote-perk span {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.4);
    font-style: italic;
}

/* ────────────────────────────────────────────────
   STEP 4: QUOTE SUMMARY
   ──────────────────────────────────────────────── */
.quote-summary {
    background: linear-gradient(135deg, var(--ink) 0%, #0c0a07 100%);
    color: var(--white);
    padding: 4rem 3.5rem;
    border-radius: 4px;
    margin-bottom: 3rem;
    position: relative;
    overflow: hidden;
}

.quote-summary::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--gold-deep), var(--gold-bright), var(--gold-deep));
}

.quote-summary-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 2rem;
    margin-bottom: 2.5rem;
    padding-bottom: 2.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.quote-big-num {
    font-family: var(--font-display);
    font-size: clamp(5rem, 7vw, 7rem);
    color: var(--gold);
    font-weight: 600;
    line-height: 1;
    letter-spacing: -0.02em;
    margin-top: 0.5rem;
}

.quote-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    background: rgba(126, 207, 126, 0.1);
    border: 1px solid rgba(126, 207, 126, 0.3);
    padding: 0.8rem 1.4rem;
    border-radius: 30px;
    font-size: 1.15rem;
    color: #7ecf7e;
}

.quote-badge i { color: #7ecf7e; }

.quote-breakdown {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.quote-breakdown .q-line {
    font-size: 1.45rem;
}

.quote-breakdown .q-line-amount { font-size: 1.6rem; }

/* QUOTE FORM */
.quote-form {
    background: var(--white);
    padding: 4rem 3.5rem;
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: 4px;
}

.quote-form-header {
    margin-bottom: 3rem;
}

.quote-form-header h3 {
    font-size: 2.6rem;
    color: var(--ink);
    text-align: left;
    margin: 0 0 1rem;
    font-weight: 500;
}

.quote-form-header h3 em {
    color: var(--gold);
    font-style: italic;
    font-weight: 300;
}

.quote-form-header p {
    font-family: var(--font-display);
    font-style: italic;
    font-size: 1.5rem;
    color: rgba(0, 0, 0, 0.55);
    line-height: 1.6;
    margin: 0;
    font-weight: 300;
}

.quote-form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-bottom: 2.5rem;
}

.quote-form .form-info { width: 100%; }

.quote-form .form-info label {
    font-size: 1rem;
    letter-spacing: 0.22em;
    color: var(--gold-deep);
    text-transform: uppercase;
    font-weight: 500;
    margin-bottom: 0.6rem;
    display: block;
}

/* ────────────────────────────────────────────────
   TRUST STRIP
   ──────────────────────────────────────────────── */
.trust-strip {
    background: var(--cream-dark);
    padding: 10dvh 6dvw;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 4rem;
    max-width: 1400px;
    margin: 0 auto;
}

.trust-item {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

.trust-item i {
    font-size: 3.5rem;
    color: var(--gold);
}

.trust-item h4 {
    font-size: 2rem;
    color: var(--ink);
    margin: 0;
    font-weight: 500;
}

.trust-item p {
    font-family: var(--font-serif);
    font-size: 1.3rem;
    color: rgba(0, 0, 0, 0.55);
    line-height: 1.7;
    margin: 0;
    font-weight: 300;
    max-width: 250px;
}

/* ────────────────────────────────────────────────
   FAQ
   ──────────────────────────────────────────────── */
.faq-section {
    background: var(--cream);
    padding: 12dvh 6dvw;
    max-width: 1000px;
    margin: 0 auto;
}

.faq-section .section-label { text-align: center; }
.faq-section h2 {
    text-align: center;
    color: var(--ink);
    font-size: clamp(3.5rem, 5vw, 5rem);
    margin: 1rem 0 5rem;
}

.faq-section h2 em {
    color: var(--gold);
    font-style: italic;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-item {
    background: var(--white);
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: 4px;
    overflow: hidden;
    transition: all 400ms var(--ease-luxury);
}

.faq-item:hover {
    border-color: rgba(219, 161, 54, 0.3);
}

.faq-item[open] {
    border-color: var(--gold);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
}

.faq-item summary {
    padding: 2.2rem 2.5rem;
    cursor: pointer;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: var(--font-display);
    font-size: 1.8rem;
    color: var(--ink);
    font-weight: 500;
    transition: all 400ms var(--ease-luxury);
    gap: 2rem;
}

.faq-item summary::-webkit-details-marker { display: none; }

.faq-item summary i {
    color: var(--gold);
    font-size: 1.4rem;
    transition: transform 500ms var(--ease-luxury);
    flex-shrink: 0;
}

.faq-item[open] summary i {
    transform: rotate(45deg);
}

.faq-item[open] summary {
    color: var(--gold-deep);
    padding-bottom: 1rem;
}

.faq-answer {
    padding: 0 2.5rem 2.5rem;
    border-top: 1px solid rgba(0, 0, 0, 0.04);
    padding-top: 1.5rem;
}

.faq-answer p {
    font-size: 1.4rem;
    line-height: 1.85;
    color: rgba(0, 0, 0, 0.65);
    font-weight: 300;
    margin: 0;
}

/* ────────────────────────────────────────────────
   CTA STRIP
   ──────────────────────────────────────────────── */
.cta-strip {
    background: var(--ink);
    color: var(--white);
    padding: 12dvh 6dvw;
    text-align: center;
}

.cta-strip-inner {
    max-width: 700px;
    margin: 0 auto;
}

.cta-strip h2 {
    color: var(--white);
    font-size: clamp(3.5rem, 5vw, 5.5rem);
    margin: 1rem 0 2.5rem;
}

.cta-strip h2 em {
    color: var(--gold);
    font-style: italic;
}

.cta-strip p {
    font-family: var(--font-display);
    font-style: italic;
    font-size: 1.8rem;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.7;
    margin-bottom: 3.5rem;
    font-weight: 300;
}

.cta-strip-actions {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.cta-strip-actions .button-ghost { color: var(--gold); border-bottom-color: var(--gold); }

/* ────────────────────────────────────────────────
   RESPONSIVE
   ──────────────────────────────────────────────── */
@media (max-width: 1100px) {
    .config-layout { grid-template-columns: 1fr; gap: 3rem; }
    .config-panel { padding: 4rem 3rem 2.5rem; }
    .quote-aside { position: static; order: -1; }
    .style-cards { grid-template-columns: 1fr; }
    .svc-card { grid-template-columns: 180px 1fr; }
    .svc-card-img { min-height: 180px; }
    .trust-strip { grid-template-columns: 1fr 1fr; gap: 3rem; }
    .stepper { max-width: none; }
    .quote-form-grid { grid-template-columns: 1fr; gap: 1.5rem; }
}

@media (max-width: 640px) {
    .pricing-hero { padding: 8dvh 4dvw; min-height: 50vh; }
    .pricing-hero-content h1 { font-size: 4rem; }
    .pricing-hero-sub { font-size: 1.5rem; }

    .configurator { padding: 6dvh 2dvw 8dvh; }

    .config-panel { padding: 2.5rem 1rem 2rem; }
    .config-step-header { margin-bottom: 3rem; }

    .stepper { margin-bottom: 4rem; gap: 0; }
    .step-num { width: 36px; height: 36px; font-size: 1.2rem; }
    .step-label { font-size: 0.85rem; letter-spacing: 0.15em; }
    .step-track { top: 18px; }

    .svc-card { grid-template-columns: 1fr; }
    .svc-card-img { min-height: 160px; }
    .svc-card-body { padding: 2rem; }

    .slider-wrap { grid-template-columns: 1fr; gap: 1.5rem; }
    .slider-output { justify-content: flex-start; }
    .slider-ticks { padding-right: 0; }

    .style-cards { gap: 1rem; }
    .toggle-wrap { width: 100%; flex-direction: column; }
    .toggle-btn { width: 100%; }

    .quote-card { padding: 2.5rem 2rem; }
    .quote-summary { padding: 3rem 2rem; }
    .quote-summary-header { flex-direction: column; align-items: flex-start; }
    .quote-form { padding: 3rem 2rem; }

    .trust-strip { grid-template-columns: 1fr; gap: 4rem; padding: 8dvh 5dvw; }

    .faq-item summary { padding: 1.8rem 2rem; font-size: 1.5rem; }
    .faq-answer { padding: 1.2rem 2rem 2rem; }

    .step-nav-btn { font-size: 1.1rem; padding: 1.2rem 0; }
    .step-next { padding: 1.4rem 2rem; }
}
