/* Calculator Styles */
.pricing-calculator-wrapper {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 32px;
    margin-top: 32px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

.calculator-header-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    flex-wrap: wrap;
}

.calculator-input-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
    flex: 1;
    min-width: 240px;
}

.calculator-input-group label {
    font-size: 16px;
    font-weight: 600;
    color: #111827;
    margin-bottom: 4px;
}

.input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.input-wrapper input {
    width: 100%;
    padding: 14px 16px;
    padding-right: 60px;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    font-size: 18px;
    font-weight: 600;
    color: #111827;
    outline: none;
    transition: border-color 0.15s, box-shadow 0.15s;
    font-family: 'SF Mono', monospace;
    background: #ffffff;
}

/* Remove number input spinners completely */
.input-wrapper input::-webkit-outer-spin-button,
.input-wrapper input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.input-wrapper input[type=number] {
    -moz-appearance: textfield;
}

.input-wrapper input:focus {
    border-color: #021BF9;
    box-shadow: 0 0 0 3px rgba(2, 27, 249, 0.1);
}

.input-wrapper .suffix {
    position: absolute;
    right: 16px;
    color: #6b7280;
    font-size: 14px;
    font-weight: 500;
    pointer-events: none;
}

.calculator-estimates {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.est-item {
    background: #f9fafb;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    padding: 12px 20px;
    min-width: 120px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.est-item.popular {
    background: #eff6ff;
    border-color: #bfdbfe;
}

.est-label {
    font-size: 12px;
    color: #6b7280;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 4px;
}

.est-item.popular .est-label {
    color: #1e40af;
}

.est-value {
    font-size: 18px;
    font-weight: 700;
    color: #111827;
    font-family: 'SF Mono', monospace;
    min-width: 80px;
}

.est-item.popular .est-value {
    color: #1e3a8a;
}

/* New CTA Button Styles */
.calculator-cta {
    display: flex;
    align-items: center;
}

.calc-book-btn {
    background: #021BF9;
    color: #ffffff;
    border: none;
    border-radius: 8px;
    padding: 14px 24px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s, transform 0.1s;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-family: 'SF Mono', monospace;
    white-space: nowrap;
}

.calc-book-btn:hover {
    background: #021094;
    transform: translateY(-1px);
}

@media (max-width: 900px) {
    .calculator-header-row {
        flex-direction: column;
        align-items: stretch;
    }

    .calculator-estimates {
        width: 100%;
    }

    .est-item {
        flex: 1;
    }

    .calculator-cta {
        width: 100%;
    }

    .calc-book-btn {
        width: 100%;
        text-align: center;
    }
}