/** Shopify CDN: Minification failed

Line 1293:0 Unexpected "}"

**/
/* Social Media Calculator Section - Neumorphism Design Aligned with Brand */

/* ============================================
   CALCULATOR WRAPPER & CONTAINER
   ============================================ */

.calculator-wrapper {
    background: var(--neumorph-calculator-bg);
    padding: var(--neumorph-space-xxl) var(--neumorph-space-md);
}

.calculator-container {
    background: var(--neumorph-bg-light);
    border-radius: var(--neumorph-calculator-radius);
    padding: var(--neumorph-space-xxl);
    box-shadow: var(--neumorph-calculator-shadow);
    max-width: 1000px;
    margin: 0 auto;
    border: none;
}

/* ============================================
   CALCULATOR HEADER
   ============================================ */

.calculator-header {
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-hover) 100%);
    padding: var(--neumorph-space-xxl) var(--neumorph-space-xl);
    text-align: center;
    color: var(--color-text-primary);
    border-radius: var(--neumorph-radius-xl) var(--neumorph-radius-xl) 0 0;
    margin: calc(var(--neumorph-space-xxl) * -1) calc(var(--neumorph-space-xxl) * -1) var(--neumorph-space-xl);
    box-shadow: var(--neumorph-shadow-raised-sm);
}

.calculator-header h2 {
    font-size: var(--neumorph-font-heading-h1);
    font-weight: var(--font-weight-bold);
    font-family: var(--font-heading);
    margin: 0 0 var(--neumorph-space-md) 0;
    line-height: var(--line-height-tight);
    color: var(--color-text-primary);
}

.calculator-header p {
    font-size: var(--neumorph-font-body-lg);
    margin: 0 0 var(--neumorph-space-lg) 0;
    opacity: 0.9;
    font-weight: var(--font-weight-medium);
    color: var(--color-text-primary);
    line-height: var(--line-height-relaxed);
}

/* Progress Bar in Header */
.progress-bar-container {
    width: 100%;
    max-width: 400px;
    height: 8px;
    background: rgba(88, 46, 26, 0.2);
    border-radius: var(--radius-full);
    margin: 0 auto;
    overflow: hidden;
    box-shadow: inset 0 2px 4px rgba(88, 46, 26, 0.2);
}

.progress-bar-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--color-accent) 0%, var(--color-primary) 100%);
    border-radius: var(--radius-full);
    width: 16.66%;
    transition: width 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 0 10px var(--color-primary-shadow);
}

/* ============================================
   CALCULATOR PROGRESS STEPS
   ============================================ */

.calculator-progress {
    display: flex;
    justify-content: space-between;
    margin-bottom: var(--neumorph-space-xl);
    padding: var(--neumorph-space-lg) var(--neumorph-space-md);
    background: var(--neumorph-bg-secondary);
    border-radius: var(--neumorph-radius-md);
    box-shadow: var(--neumorph-shadow-pressed-sm);
    gap: var(--neumorph-space-xs);
}

.progress-step {
    text-align: center;
    flex: 1;
    position: relative;
    min-width: 60px;
}

.step-number {
    display: block;
    width: 44px;
    height: 44px;
    background: var(--neumorph-bg-tertiary);
    border-radius: var(--radius-full);
    margin: 0 auto var(--neumorph-space-xs) auto;
    line-height: 44px;
    color: var(--color-text-secondary);
    font-weight: var(--font-weight-bold);
    font-size: var(--neumorph-font-body-md);
    box-shadow: var(--neumorph-shadow-pressed-sm);
    transition: all var(--transition-base);
    border: 3px solid transparent;
}

.progress-step.active .step-number {
    background: var(--color-primary);
    color: var(--color-text-primary);
    border-color: var(--color-accent);
    box-shadow: var(--neumorph-shadow-raised);
    transform: scale(1.15);
}

.progress-step.completed .step-number {
    background: var(--color-accent);
    color: var(--color-bg-light-grey);
    box-shadow: var(--neumorph-shadow-raised-sm);
}

.progress-step.completed .step-number::after {
    content: '✓';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: var(--neumorph-font-body-lg);
}

.step-title {
    font-size: var(--font-size-sm);
    color: var(--color-text-secondary);
    font-weight: var(--font-weight-semibold);
    opacity: 0.7;
}

.progress-step.active .step-title {
    color: var(--color-text-primary);
    font-weight: var(--font-weight-bold);
    opacity: 1;
}

/* ============================================
   CALCULATOR FORM & STEPS
   ============================================ */

.calculator-body {
    padding: var(--neumorph-space-xl) var(--neumorph-space-md);
}

.calculator-form {
    margin-top: var(--neumorph-space-xl);
}

.calculator-step {
    display: none;
    margin-bottom: var(--neumorph-space-xl);
    padding: var(--neumorph-space-xxl);
    border: none;
    border-radius: var(--neumorph-radius-lg);
    background: var(--neumorph-bg-primary);
    box-shadow: var(--neumorph-shadow-pressed-sm);
}

.calculator-step.active {
    display: block;
    animation: slideInUp 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.calculator-step h3 {
    color: var(--color-text-primary);
    margin-bottom: var(--neumorph-space-lg);
    font-size: var(--neumorph-font-heading-h2);
    font-weight: var(--font-weight-bold);
    font-family: var(--font-heading);
    line-height: var(--line-height-tight);
}

.step-description {
    color: var(--color-text-primary);
    font-size: var(--neumorph-font-body-md);
    margin: calc(var(--neumorph-space-sm) * -1) 0 var(--neumorph-space-xl) 0;
    opacity: 0.8;
    line-height: var(--line-height-relaxed);
}

/* ============================================
   OPTION CARDS (Channel, Frequency, Language)
   ============================================ */

.channel-grid,
.frequency-options,
.yes-no-options,
.language-options {
    display: grid;
    gap: var(--neumorph-space-lg);
    margin-bottom: var(--neumorph-space-md);
}

.channel-grid {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}

.frequency-options,
.yes-no-options,
.language-options {
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
}

.channel-option,
.frequency-option,
.option-yes-no,
.language-option {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: var(--neumorph-space-xl) var(--neumorph-space-lg);
    border: none;
    border-radius: var(--neumorph-radius-lg);
    background: var(--neumorph-bg-light);
    cursor: pointer;
    transition: all var(--transition-base);
    position: relative;
    box-shadow: var(--neumorph-shadow-raised-sm);
}

.channel-option input,
.frequency-option input,
.option-yes-no input,
.language-option input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
}

.channel-option:hover,
.frequency-option:hover,
.option-yes-no:hover,
.language-option:hover {
    box-shadow: var(--neumorph-shadow-hover);
    transform: translateY(-4px);
}

.channel-option:has(input:checked),
.frequency-option:has(input:checked),
.option-yes-no:has(input:checked),
.language-option:has(input:checked) {
    background: var(--color-primary-light);
    box-shadow: var(--neumorph-shadow-pressed);
    border: 2px solid var(--color-accent);
    transform: scale(1.02);
}

.channel-icon {
    font-size: 3rem;
    margin-bottom: var(--neumorph-space-md);
    transition: transform var(--transition-base);
    filter: grayscale(0.3);
}

.channel-option:has(input:checked) .channel-icon {
    filter: grayscale(0);
    transform: scale(1.2);
    animation: pulse 0.6s ease-in-out;
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.1);
    }
}

.channel-name,
.frequency-label,
.yes-no-label,
.language-label {
    color: var(--color-text-primary);
    font-weight: var(--font-weight-semibold);
    text-align: center;
    transition: all var(--transition-base);
    font-size: var(--neumorph-font-body-md);
    font-family: var(--font-body);
}

.channel-option:has(input:checked) .channel-name,
.frequency-option:has(input:checked) .frequency-label,
.option-yes-no:has(input:checked) .yes-no-label,
.language-option:has(input:checked) .language-label {
    color: var(--color-accent);
    font-weight: var(--font-weight-bold);
}

.language-option {
    flex-direction: column;
    gap: var(--neumorph-space-xs);
}

.extra-price {
    font-size: var(--font-size-sm);
    font-weight: var(--font-weight-bold);
    color: var(--color-accent);
    opacity: 0.8;
    margin-top: var(--neumorph-space-xs);
}

/* ============================================
   SLIDER (Guest Count)
   ============================================ */

.slider-wrap {
    display: flex;
    flex-direction: column;
    gap: var(--neumorph-space-lg);
}

#guest-range {
    width: 100%;
    height: 12px;
    border-radius: var(--radius-full);
    background: linear-gradient(to right, var(--color-primary) 0%, var(--color-accent) 100%);
    outline: none;
    -webkit-appearance: none;
    appearance: none;
    box-shadow: var(--neumorph-shadow-pressed-sm);
}

#guest-range::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 32px;
    height: 32px;
    border-radius: var(--radius-full);
    background: var(--neumorph-bg-light);
    cursor: pointer;
    border: 4px solid var(--color-accent);
    box-shadow: var(--neumorph-shadow-raised);
    transition: all var(--transition-base);
}

#guest-range::-webkit-slider-thumb:hover {
    transform: scale(1.2);
    box-shadow: var(--neumorph-shadow-hover);
}

#guest-range::-webkit-slider-thumb:active {
    transform: scale(1.1);
}

#guest-range::-moz-range-thumb {
    width: 32px;
    height: 32px;
    border-radius: var(--radius-full);
    background: var(--neumorph-bg-light);
    cursor: pointer;
    border: 4px solid var(--color-accent);
    box-shadow: var(--neumorph-shadow-raised);
    transition: all var(--transition-base);
}

#guest-range::-moz-range-thumb:hover {
    transform: scale(1.2);
    box-shadow: var(--neumorph-shadow-hover);
}

#guest-range::-moz-range-thumb:active {
    transform: scale(1.1);
}

.slider-label {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: var(--neumorph-space-md);
    font-weight: var(--font-weight-bold);
    color: var(--color-text-primary);
    font-size: var(--neumorph-font-body-lg);
    line-height: var(--line-height-normal);
}

#guest-count {
    color: var(--color-accent);
    font-size: 3rem;
    font-weight: var(--font-weight-bold);
    font-family: var(--font-heading);
    background: linear-gradient(135deg, var(--color-accent) 0%, var(--color-primary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.badge {
    background: var(--color-primary);
    color: var(--color-text-primary);
    padding: var(--neumorph-space-xs) var(--neumorph-space-md);
    border-radius: 12px;
    /* Not pill-shaped, moderate rounded */
    font-size: var(--font-size-sm);
    font-weight: var(--font-weight-bold);
    box-shadow: var(--neumorph-shadow-raised-sm);
}

.breakpoints {
    display: flex;
    justify-content: space-between;
    font-size: var(--font-size-sm);
    /* Increased from xs to sm */
    color: var(--color-text-primary);
    opacity: 0.7;
    /* Slightly more visible */
    font-weight: var(--font-weight-semibold);
    /* Bolder */
}

/* ============================================
   LOCATION INPUTS
   ============================================ */

.location-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: var(--neumorph-space-lg);
    margin-bottom: var(--neumorph-space-lg);
}

.location-grid label {
    color: var(--color-text-primary);
    font-weight: var(--font-weight-bold);
    font-size: var(--font-size-sm);
    display: block;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.location-grid input {
    width: 100%;
    padding: var(--neumorph-space-md) var(--neumorph-space-lg);
    border: 2px solid transparent;
    border-radius: var(--neumorph-radius-md);
    background: var(--neumorph-bg-light);
    color: var(--color-text-primary);
    font-size: var(--neumorph-font-body-md);
    margin-top: var(--neumorph-space-xs);
    transition: all var(--transition-base);
    box-shadow: var(--neumorph-shadow-pressed-sm);
    font-family: var(--font-body);
}

.location-grid input:focus {
    outline: none;
    border-color: var(--color-primary);
    box-shadow: var(--neumorph-shadow-pressed), 0 0 0 4px var(--color-primary-light);
    transform: translateY(-2px);
}

.microcopy {
    margin-top: var(--neumorph-space-md);
    margin-bottom: var(--neumorph-space-lg);
    color: var(--color-text-primary);
    opacity: 0.7;
    font-size: var(--font-size-sm);
    font-style: italic;
    line-height: var(--line-height-relaxed);
}

/* ============================================
   SUMMARY BOX
   ============================================ */

.summary-box {
    border: 3px solid var(--color-primary);
    border-radius: var(--neumorph-radius-lg);
    padding: var(--neumorph-space-xl);
    margin-top: var(--neumorph-space-lg);
    background: linear-gradient(135deg, var(--color-primary-light) 0%, rgba(255, 255, 255, 0.5) 100%);
    box-shadow: var(--neumorph-shadow-raised);
}

.summary-line {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: var(--neumorph-space-md);
    font-weight: var(--font-weight-semibold);
    color: var(--color-text-primary);
    font-size: var(--neumorph-font-body-md);
    padding: var(--neumorph-space-sm) 0;
}

.summary-line:last-child {
    margin-bottom: 0;
}

.summary-line span:last-child {
    font-weight: var(--font-weight-bold);
    color: var(--color-accent);
    font-size: var(--neumorph-font-body-lg);
}

.summary-line.best span:last-child {
    color: var(--color-accent);
    font-weight: var(--font-weight-bold);
    font-size: var(--neumorph-font-heading-h3);
}

/* ============================================
   PRICE DISPLAY
   ============================================ */

.price-display {
    background: linear-gradient(135deg, var(--color-text-primary) 0%, var(--color-dark-brown-light) 100%);
    padding: var(--neumorph-space-xxl) var(--neumorph-space-xl);
    border-radius: var(--neumorph-radius-xl);
    margin: var(--neumorph-space-xxl) 0;
    text-align: center;
    border: none;
    box-shadow: var(--neumorph-shadow-raised-lg);
    position: relative;
    overflow: hidden;
}

.price-display::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, var(--color-primary-shadow) 0%, transparent 70%);
    border-radius: var(--radius-full);
}

.base-price,
.total-price {
    margin-bottom: var(--neumorph-space-lg);
    position: relative;
    z-index: 1;
}

.total-price {
    margin-bottom: 0;
}

.price-label {
    display: block;
    font-size: var(--font-size-sm);
    color: var(--color-primary);
    opacity: 1;
    margin-bottom: var(--neumorph-space-xs);
    font-weight: var(--font-weight-bold);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.price-value {
    font-size: 3.5rem;
    font-weight: var(--font-weight-bold);
    color: var(--color-bg-light-grey);
    font-family: var(--font-heading);
    line-height: var(--line-height-tight);
    text-shadow: 0 4px 12px rgba(0, 0, 0, 0.3), 0 0 40px var(--color-primary-shadow);
    letter-spacing: -2px;
}

.total-price .price-value {
    font-size: 4rem;
}

.price-period {
    font-size: var(--font-size-sm);
    color: var(--color-primary);
    opacity: 0.8;
    font-weight: var(--font-weight-medium);
}

/* ============================================
   CTA SECTION
   ============================================ */

.calculator-cta {
    text-align: center;
    margin-top: var(--neumorph-space-xxl);
}

/* Primary CTA Button - Modern & Familiar Design */
.btn-primary {
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-hover) 100%);
    color: var(--color-text-primary);
    border: none;
    padding: var(--neumorph-space-lg) var(--neumorph-space-xxl);
    border-radius: 12px;
    /* Modern, familiar radius - not too rounded */
    font-size: var(--neumorph-font-body-lg);
    font-weight: var(--font-weight-bold);
    font-family: var(--font-body);
    cursor: pointer;
    transition: all var(--transition-base);
    box-shadow: var(--neumorph-shadow-raised);
    text-transform: none;
    letter-spacing: 0.3px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--neumorph-space-xs);
    position: relative;
    overflow: hidden;
    min-height: 56px;
    /* Touch-friendly height */
    min-width: 240px;
    margin: 0 auto;
    /* Center on desktop */
}

/* Shimmer effect on hover */
.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.25), transparent);
    transition: left 0.6s ease;
}

.btn-primary:hover::before {
    left: 100%;
}

.btn-primary:hover {
    background: linear-gradient(135deg, var(--color-accent) 0%, var(--color-accent-hover) 100%);
    color: var(--color-white);
    transform: translateY(-3px);
    box-shadow: var(--neumorph-shadow-hover);
}

.btn-primary:active {
    transform: translateY(-1px);
    box-shadow: var(--neumorph-shadow-raised-sm);
}

.btn-primary:focus-visible {
    outline: 3px solid var(--color-primary-shadow);
    outline-offset: 3px;
}

/* Skip Button - Secondary Action */
.btn-skip {
    background: transparent;
    border: 2px dashed var(--color-accent);
    color: var(--color-accent);
    padding: var(--neumorph-space-md) var(--neumorph-space-xl);
    border-radius: 12px;
    /* Consistent radius */
    font-size: var(--neumorph-font-body-md);
    font-weight: var(--font-weight-bold);
    font-family: var(--font-body);
    cursor: pointer;
    margin-top: var(--neumorph-space-lg);
    transition: all var(--transition-base);
    display: block;
    width: 100%;
    min-height: 48px;
}

.btn-skip:hover {
    background: var(--color-accent-light);
    border-style: solid;
    border-color: var(--color-accent);
    transform: translateY(-2px);
    box-shadow: var(--neumorph-shadow-raised-sm);
}

.btn-skip:active {
    transform: translateY(0);
    box-shadow: none;
}

.btn-skip:focus-visible {
    outline: 2px solid var(--color-accent);
    outline-offset: 2px;
}

.cta-subtext {
    color: var(--color-text-primary);
    font-size: var(--font-size-base);
    margin: var(--neumorph-space-md) 0 var(--neumorph-space-lg) 0;
    font-weight: var(--font-weight-semibold);
    opacity: 0.8;
    line-height: var(--line-height-normal);
}

.click-to-call {
    display: inline-block;
    margin-top: var(--neumorph-space-lg);
    color: var(--color-accent);
    text-decoration: none;
    font-weight: var(--font-weight-bold);
    font-size: var(--neumorph-font-body-md);
    transition: all var(--transition-base);
    border-bottom: 2px solid var(--color-accent);
}

.click-to-call:hover {
    color: var(--color-primary);
    border-bottom-color: var(--color-primary);
    transform: translateY(-2px);
}

.trust-indicators {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: var(--neumorph-space-lg);
    margin-top: var(--neumorph-space-xl);
    padding-top: var(--neumorph-space-xl);
    border-top: 2px dashed rgba(88, 46, 26, 0.15);
}

.trust-indicators span {
    color: var(--color-text-primary);
    font-size: var(--font-size-sm);
    font-weight: var(--font-weight-semibold);
    display: flex;
    align-items: center;
    gap: var(--neumorph-space-xs);
}

/* ============================================
   MOBILE RESPONSIVE STYLES
   ============================================ */

@media screen and (max-width: 768px) {
    .calculator-wrapper {
        padding: var(--neumorph-space-xl) var(--neumorph-space-sm);
    }

    .calculator-container {
        padding: var(--neumorph-space-lg);
    }

    .calculator-header {
        padding: var(--neumorph-space-xl) var(--neumorph-space-lg);
        margin: calc(var(--neumorph-space-lg) * -1) calc(var(--neumorph-space-lg) * -1) var(--neumorph-space-lg);
    }

    .calculator-header h2 {
        font-size: var(--neumorph-font-heading-h2);
    }

    .calculator-header p {
        font-size: var(--neumorph-font-body-md);
    }

    .calculator-body {
        padding: var(--neumorph-space-lg) var(--neumorph-space-sm);
    }

    .calculator-step {
        padding: var(--neumorph-space-lg);
    }

    .calculator-step h3 {
        font-size: var(--neumorph-font-heading-h3);
    }

    .channel-grid {
        grid-template-columns: 1fr;
        gap: var(--neumorph-space-md);
    }

    .channel-option {
        padding: var(--neumorph-space-lg) var(--neumorph-space-md);
    }

    .channel-icon {
        font-size: 2.25rem;
    }

    .frequency-options,
    .yes-no-options,
    .language-options {
        grid-template-columns: 1fr;
    }

    .location-grid {
        grid-template-columns: 1fr;
    }

    #guest-count {
        font-size: 2.25rem;
    }

    .price-value {
        font-size: 2.5rem;
    }

    .total-price .price-value {
        font-size: 3rem;
    }

    .btn-primary {
        padding: var(--neumorph-space-md) var(--neumorph-space-xl);
        font-size: var(--neumorph-font-body-md);
        width: 100%;
    }

    .step-number {
        width: 40px;
        height: 40px;
        line-height: 40px;
        font-size: var(--font-size-base);
    }

    .calculator-progress {
        padding: var(--neumorph-space-md) var(--neumorph-space-xs);
        gap: var(--neumorph-space-xs);
        overflow-x: auto;
        overflow-y: hidden;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        -ms-overflow-style: none;
    }

    .calculator-progress::-webkit-scrollbar {
        display: none;
    }

    .progress-step {
        min-width: 60px;
        flex-shrink: 0;
    }

    .step-title {
        font-size: var(--font-size-xs);
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        max-width: 60px;
    }

    .trust-indicators {
        flex-direction: column;
        gap: var(--neumorph-space-md);
    }

    .trust-indicators span {
        justify-content: center;
    }

    .cta-subtext {
        font-size: var(--font-size-sm);
    }

    .price-display {
        padding: var(--neumorph-space-xl) var(--neumorph-space-lg);
    }
}

@media screen and (max-width: 480px) {
    .calculator-progress {
        padding: var(--neumorph-space-sm) var(--neumorph-space-xs);
    }

    .progress-step {
        min-width: 50px;
    }

    .step-number {
        width: 34px;
        height: 34px;
        line-height: 34px;
        font-size: var(--font-size-sm);
    }

    .step-title {
        font-size: 0.625rem;
        max-width: 50px;
    }

    .calculator-header h2 {
        font-size: var(--neumorph-font-heading-h3);
    }
}

/* ============================================
   SUCCESS STATE STYLING
   ============================================ */

.calculator-success {
    text-align: center;
    padding: var(--neumorph-space-xxl);
    background: linear-gradient(135deg, var(--color-primary-light) 0%, rgba(255, 255, 255, 0.5) 100%);
    border: 3px solid var(--color-primary);
    border-radius: var(--neumorph-radius-lg);
    box-shadow: var(--neumorph-shadow-raised);
    animation: slideInUp 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.success-icon {
    font-size: 4rem;
    margin-bottom: var(--neumorph-space-lg);
    animation: bounce 1s ease-in-out;
}

@keyframes bounce {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-20px);
    }
}

.success-title {
    font-size: var(--neumorph-font-heading-h2);
    font-weight: var(--font-weight-bold);
    font-family: var(--font-heading);
    color: var(--color-text-primary);
    margin-bottom: var(--neumorph-space-md);
    line-height: var(--line-height-tight);
}

.success-title span {
    color: var(--color-accent);
}

.success-message {
    font-size: var(--neumorph-font-body-lg);
    color: var(--color-text-primary);
    margin-bottom: var(--neumorph-space-xl);
    line-height: var(--line-height-relaxed);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.success-message strong {
    color: var(--color-accent);
    font-weight: var(--font-weight-bold);
}

.success-price {
    background: var(--neumorph-bg-light);
    padding: var(--neumorph-space-lg);
    border-radius: var(--neumorph-radius-md);
    margin: var(--neumorph-space-xl) auto;
    max-width: 400px;
    box-shadow: var(--neumorph-shadow-pressed-sm);
}

.success-price-label {
    display: block;
    font-size: var(--font-size-sm);
    color: var(--color-text-primary);
    opacity: 0.8;
    margin-bottom: var(--neumorph-space-xs);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: var(--font-weight-bold);
}

.success-price-value {
    font-size: 3rem;
    font-weight: var(--font-weight-bold);
    font-family: var(--font-heading);
    color: var(--color-accent);
    line-height: 1;
}

.success-next-steps {
    font-size: var(--neumorph-font-body-md);
    color: var(--color-text-primary);
    margin-top: var(--neumorph-space-xl);
    padding-top: var(--neumorph-space-xl);
    border-top: 2px dashed rgba(88, 46, 26, 0.2);
}

.success-phone {
    color: var(--color-accent);
    font-weight: var(--font-weight-bold);
    text-decoration: none;
    border-bottom: 2px solid var(--color-accent);
    transition: all var(--transition-base);
}

.success-phone:hover {
    color: var(--color-primary);
    border-bottom-color: var(--color-primary);
}

@media screen and (max-width: 768px) {
    .calculator-success {
        padding: var(--neumorph-space-xl) var(--neumorph-space-lg);
    }

    .success-icon {
        font-size: 3rem;
    }

    .success-title {
        font-size: var(--neumorph-font-heading-h3);
    }

    .success-message {
        font-size: var(--neumorph-font-body-md);
    }

    .success-price-value {
        font-size: 2.5rem;
    }
}

/* ============================================
   BACK BUTTON & STEP NAVIGATION
   ============================================ */

.btn-back {
    background: transparent;
    border: 2px solid var(--color-text-secondary);
    color: var(--color-text-secondary);
    padding: var(--neumorph-space-md) var(--neumorph-space-lg);
    border-radius: 12px;
    font-size: var(--neumorph-font-body-md);
    font-weight: var(--font-weight-semibold);
    cursor: pointer;
    transition: all var(--transition-base);
    min-height: 48px;
}

.btn-back:hover {
    background: var(--neumorph-bg-tertiary);
    border-color: var(--color-text-primary);
    color: var(--color-text-primary);
}

.step-navigation {
    display: flex;
    gap: var(--neumorph-space-md);
    justify-content: space-between;
    margin-top: var(--neumorph-space-lg);
}

/* ============================================
   CUSTOM PRICING MESSAGE (300+ GUESTS)
   ============================================ */

.custom-pricing-message {
    background: linear-gradient(135deg, var(--color-primary-light) 0%, var(--color-accent-light) 100%);
    border: 2px dashed var(--color-accent);
    border-radius: var(--neumorph-radius-md);
    padding: var(--neumorph-space-lg);
    margin-top: var(--neumorph-space-lg);
    text-align: center;
}

.custom-pricing-text {
    color: var(--color-text-primary);
    font-size: var(--neumorph-font-body-md);
    margin-bottom: var(--neumorph-space-md);
}

.btn-contact-custom {
    display: inline-block;
    background: var(--color-accent);
    color: var(--color-white);
    padding: var(--neumorph-space-sm) var(--neumorph-space-lg);
    border-radius: 12px;
    text-decoration: none;
    font-weight: var(--font-weight-bold);
    transition: all var(--transition-base);
}

.btn-contact-custom:hover {
    background: var(--color-accent-hover);
    transform: translateY(-2px);
}

/* ============================================
   STEP NAVIGATION - IMPROVED UX
   ============================================ */

.step-navigation {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: 24px;
}

/* Desktop: Side-by-side layout */
@media (min-width: 640px) {
    .step-navigation {
        flex-direction: row;
        justify-content: space-between;
        gap: 480px;
    }
}

/* ============================================
   BACK BUTTON - SECONDARY ACTION
   ============================================ */

.btn-back {
    /* Layout */
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;

    /* Sizing - Mobile First */
    width: 100%;
    min-height: 56px;
    padding: 16px 24px;

    /* Visual */
    background: transparent;
    border: 2px solid var(--color-text-secondary, #6B7280);
    border-radius: 12px;
    color: var(--color-text-secondary, #6B7280);

    /* Typography */
    font-size: 16px;
    font-weight: 600;
    font-family: var(--font-body);
    line-height: 1;
    text-decoration: none;

    /* Interaction */
    cursor: pointer;
    transition: all 0.2s ease;
    touch-action: manipulation;
    -webkit-tap-highlight-color: transparent;
}

/* Desktop: Natural width */
@media (min-width: 640px) {
    .btn-back {
        width: auto;
        min-width: 140px;
        flex: 0 1 auto;
    }
}

.btn-back:hover {
    background: var(--neumorph-bg-tertiary, #F3F4F6);
    border-color: var(--color-text-primary, #1F2937);
    color: var(--color-text-primary, #1F2937);
    transform: translateY(-1px);
}

.btn-back:active {
    transform: translateY(0);
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.1);
}

.btn-back:focus-visible {
    outline: 3px solid var(--color-accent, #F59E0B);
    outline-offset: 2px;
}

/* ============================================
   NEXT BUTTON - PRIMARY ACTION  
   ============================================ */

.btn-next {
    /* Layout */
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;

    /* Sizing - Mobile First */
    width: 100%;
    min-height: 56px;
    padding: 16px 32px;

    /* Visual - Prominent Primary */
    background: linear-gradient(135deg, var(--color-primary, #EF4444) 0%, var(--color-primary-hover, #DC2626) 100%);
    border: none;
    border-radius: 12px;
    color: white;
    box-shadow: 0 4px 12px rgba(239, 68, 68, 0.3);

    /* Typography */
    font-size: 18px;
    font-weight: 700;
    font-family: var(--font-body);
    line-height: 1;
    text-decoration: none;

    /* Interaction */
    cursor: pointer;
    transition: all 0.2s ease;
    touch-action: manipulation;
    -webkit-tap-highlight-color: transparent;
}

/* Desktop: Natural width with more space */
@media (min-width: 640px) {
    .btn-next {
        width: auto;
        min-width: 180px;
        flex: 0 1 auto;
    }
}

.btn-next:hover {
    background: linear-gradient(135deg, var(--color-primary-hover, #DC2626) 0%, #B91C1C 100%);
    box-shadow: 0 6px 16px rgba(239, 68, 68, 0.4);
    transform: translateY(-2px);
}

.btn-next:active {
    transform: translateY(0);
    box-shadow: 0 2px 8px rgba(239, 68, 68, 0.3);
}

.btn-next:focus-visible {
    outline: 3px solid var(--color-accent, #F59E0B);
    outline-offset: 2px;
}

/* ============================================
   SKIP BUTTON - TERTIARY ACTION
   ============================================ */

.btn-skip {
    /* Layout */
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;

    /* Sizing */
    width: 100%;
    min-height: 48px;
    padding: 12px 20px;
    margin-top: 12px;

    /* Visual - Subtle */
    background: transparent;
    border: 1px dashed var(--color-text-tertiary, #9CA3AF);
    border-radius: 8px;
    color: var(--color-text-secondary, #6B7280);

    /* Typography */
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;

    /* Interaction */
    cursor: pointer;
    transition: all 0.2s ease;
}

.btn-skip:hover {
    background: var(--neumorph-bg-tertiary, #F9FAFB);
    border-color: var(--color-text-secondary, #6B7280);
    color: var(--color-text-primary, #1F2937);
}
}
/* ============================================
   SUCCESS ACTION BUTTON - GREEN FOR FINAL SUBMIT
   ============================================ */

.btn-submit-success {
    background: linear-gradient(135deg, #10B981 0%, #059669 100%) !important;
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.3) !important;
}

.btn-submit-success:hover {
    background: linear-gradient(135deg, #059669 0%, #047857 100%) !important;
    box-shadow: 0 6px 16px rgba(16, 185, 129, 0.4) !important;
}

.btn-submit-success:active {
    box-shadow: 0 2px 8px rgba(16, 185, 129, 0.3) !important;
}
