/* ============================================
   Website Cost Calculator — Styles
   ============================================ */

/* Remove hero bottom padding so calculator sits higher */
.universal-hero.calculator-hero {
    padding-bottom: 0 !important;
}

/* ---- Calculator Section ---- */
.calculator-section {
    padding: 20px 0 80px;
    background: var(--bg-secondary, #F8FAFC);
}

.calc-wizard {
    max-width: 960px;
    margin: 0 auto;
    background: #fff;
    border-radius: 20px;
    border: 1px solid #E2E8F0;
    padding: 28px;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
}

/* ---- Step Indicators ---- */
.calc-steps {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    gap: 0;
}

.calc-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    cursor: default;
}

.calc-step-num {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 14px;
    background: #E2E8F0;
    color: #64748B;
    transition: all 0.3s ease;
}

.calc-step.active .calc-step-num {
    background: var(--primary, #6366F1);
    color: #fff;
    box-shadow: 0 4px 12px rgba(99, 102, 241, 0.3);
}

.calc-step.completed .calc-step-num {
    background: var(--primary, #6366F1);
    color: #fff;
}

.calc-step-label {
    font-size: 11px;
    font-weight: 600;
    color: #94A3B8;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    white-space: nowrap;
    transition: color 0.3s ease;
}

.calc-step.active .calc-step-label,
.calc-step.completed .calc-step-label {
    color: #334155;
}

.calc-step-connector {
    width: 48px;
    height: 2px;
    background: #E2E8F0;
    margin: 0 8px 24px;
    flex-shrink: 0;
    transition: background 0.3s ease;
}

.calc-step.completed+.calc-step-connector {
    background: var(--primary, #6366F1);
}

/* ---- Panels ---- */
.calc-panel {
    display: none;
    animation: calcFadeIn 0.35s ease;
}

.calc-panel.active {
    display: block;
}

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

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

.calc-question {
    font-size: 1.5rem;
    font-weight: 700;
    color: #0F172A;
    text-align: center;
    margin-bottom: 8px;
}

.calc-hint {
    text-align: center;
    color: #64748B;
    font-size: 0.9rem;
    margin-bottom: 24px;
}

/* ---- Option Cards (Grid) ---- */
.calc-options--grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 16px;
    margin: 24px 0;
}

.calc-card {
    background: #fff;
    border: 2px solid #E2E8F0;
    border-radius: 16px;
    padding: 24px 16px;
    padding-top: 32px;
    text-align: center;
    cursor: pointer;
    transition: all 0.25s ease;
    position: relative;
    overflow: visible;
}

/* Most Popular / Recommended Badge */
.calc-card-badge {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 0.68rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 3px 14px;
    border-radius: 20px;
    white-space: nowrap;
    z-index: 2;
}

.calc-badge--popular {
    background: linear-gradient(135deg, #6366F1 0%, #8B5CF6 100%);
    color: #fff;
    box-shadow: 0 2px 8px rgba(99, 102, 241, 0.3);
}

.calc-card:hover {
    border-color: #C7D2FE;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(99, 102, 241, 0.08);
}

.calc-card.selected {
    border-color: var(--primary, #6366F1);
    background: #F5F3FF;
    box-shadow: 0 0 0 4px rgba(99, 102, 241, 0.12);
}

.calc-card-icon {
    font-size: 2rem;
    color: var(--primary, #6366F1);
    margin-bottom: 12px;
}

.calc-card-icon i {
    font-size: 2rem;
}

.calc-card-title {
    font-weight: 700;
    font-size: 1rem;
    color: #0F172A;
    margin-bottom: 6px;
}

.calc-card-desc {
    font-size: 0.82rem;
    color: #64748B;
    line-height: 1.5;
    margin-bottom: 10px;
}

.calc-card-range {
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--primary, #6366F1);
    background: #EEF2FF;
    display: inline-block;
    padding: 3px 12px;
    border-radius: 20px;
}

/* ---- Features Grid (Step 3) ---- */
.calc-features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 10px;
    margin: 20px 0;
}

.calc-feature {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 12px 14px;
    border: 1.5px solid #E2E8F0;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.calc-feature-icon {
    font-size: 1.3rem;
    color: var(--primary, #6366F1);
    margin-top: 2px;
    flex-shrink: 0;
}

.calc-feature:hover {
    border-color: #C7D2FE;
    background: #FAFAFF;
}

.calc-feature.selected {
    border-color: var(--primary, #6366F1);
    background: #F5F3FF;
}

.calc-feature-checkbox {
    margin-top: 4px;
    accent-color: var(--primary, #6366F1);
    width: 18px;
    height: 18px;
    flex-shrink: 0;
}

.calc-feature-content {
    flex: 1;
    min-width: 0;
}

.calc-feature-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 8px;
    margin-bottom: 2px;
}

.calc-feature-name {
    font-weight: 600;
    font-size: 0.9rem;
    color: #0F172A;
}

.calc-feature-context {
    font-size: 0.78rem;
    color: #94A3B8;
    margin-top: 4px;
    line-height: 1.3;
}

.calc-feature-cost {
    font-size: 1.125rem;
    color: #64748B;
}

/* Impact Badges */
.calc-feature-impact {
    font-size: 1.125rem;
    font-weight: 700;
    padding: 2px 8px;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    flex-shrink: 0;
}

.calc-impact--low {
    background: #D1FAE5;
    color: #065F46;
}

.calc-impact--medium {
    background: #FEF3C7;
    color: #92400E;
}

.calc-impact--high {
    background: #FEE2E2;
    color: #991B1B;
}

/* ---- Validation Message ---- */
.calc-validation-msg {
    text-align: center;
    color: #DC2626;
    font-size: 0.85rem;
    font-weight: 500;
    margin-top: 16px;
    display: none;
    animation: calcFadeIn 0.25s ease;
}

.calc-validation-msg.visible {
    display: block;
}

/* ---- Navigation Buttons ---- */
.calc-nav {
    display: flex;
    justify-content: space-between;
    margin-top: 32px;
    gap: 12px;
}

.calc-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 28px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95rem;
    border: none;
    cursor: pointer;
    transition: all 0.25s ease;
}

.calc-btn--next {
    background: var(--primary, #6366F1);
    color: #fff;
    margin-left: auto;
}

.calc-btn--next:hover {
    background: #4F46E5;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(99, 102, 241, 0.3);
}

.calc-btn--prev {
    background: #F1F5F9;
    color: #334155;
}

.calc-btn--prev:hover:not(:disabled) {
    background: #E2E8F0;
}

.calc-btn--prev:disabled {
    opacity: 0.4;
    cursor: not-allowed;
}

.calc-btn--secondary {
    background: #F1F5F9;
    color: #334155;
}

.calc-btn--secondary:hover {
    background: #E2E8F0;
}

/* ---- Results Section ---- */
.calc-results {
    max-width: 820px;
    margin: 40px auto 0;
    background: #fff;
    border-radius: 20px;
    border: 1px solid #E2E8F0;
    padding: 40px;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
    animation: calcFadeIn 0.4s ease;
}

.calc-results-header {
    text-align: center;
    margin-bottom: 28px;
}

.calc-results-title {
    font-size: 1.6rem;
    font-weight: 800;
    color: #0F172A;
    margin-bottom: 6px;
}

.calc-results-subtitle {
    color: #64748B;
    font-size: 0.95rem;
}

/* Price Box */
.calc-price-box {
    text-align: center;
    padding: 28px;
    background: linear-gradient(135deg, #EEF2FF 0%, #F5F3FF 100%);
    border-radius: 16px;
    margin-bottom: 24px;
}

.calc-price-range {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
}

.calc-price-amount {
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--primary, #6366F1);
}

.calc-price-sep {
    font-size: 2rem;
    color: #94A3B8;
}

.calc-price-label {
    font-size: 0.9rem;
    color: #64748B;
    font-weight: 500;
    margin-top: 4px;
}

/* Meta Row */
.calc-meta-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-bottom: 24px;
}

.calc-meta-item {
    text-align: center;
    padding: 16px;
    background: #F8FAFC;
    border-radius: 12px;
}

.calc-meta-value {
    font-size: 1.3rem;
    font-weight: 700;
    color: #0F172A;
}

.calc-meta-label {
    font-size: 0.85rem;
    color: #64748B;
    margin-top: 4px;
}

/* Currency Selector */
.calc-currency-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 24px;
    padding: 16px;
    background: #F8FAFC;
    border-radius: 12px;
}

.calc-currency-label {
    font-size: 0.9rem;
    font-weight: 600;
    color: #334155;
    white-space: nowrap;
}

.calc-currency-select {
    padding: 8px 14px;
    border: 1.5px solid #E2E8F0;
    border-radius: 10px;
    font-size: 0.9rem;
    background: #fff;
    color: #0F172A;
    cursor: pointer;
    max-width: 280px;
}

.calc-currency-select:focus {
    outline: none;
    border-color: var(--primary, #6366F1);
    box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.12);
}

/* PPP Badge — matches pricing page style */
.calc-currency-row .ppp-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    padding: 0.25rem 0.625rem;
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.1) 0%, rgba(5, 150, 105, 0.1) 100%);
    border: 1px solid rgba(16, 185, 129, 0.3);
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    color: #059669;
    white-space: nowrap;
}

.calc-currency-row .ppp-badge i {
    font-size: 0.875rem;
}

/* Cost Breakdown */
.calc-breakdown {
    margin-bottom: 24px;
}

.calc-breakdown-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: #0F172A;
    margin-bottom: 16px;
    text-align: center;
}

.calc-breakdown-bars {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.calc-bar-row {
    display: flex;
    align-items: center;
    gap: 12px;
}

.calc-bar-label {
    width: 140px;
    font-size: 1.125rem;
    font-weight: 600;
    color: #334155;
    flex-shrink: 0;
    text-align: right;
}

.calc-bar-track {
    flex: 1;
    height: 10px;
    background: #E2E8F0;
    border-radius: 10px;
    overflow: hidden;
}

.calc-bar-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--primary, #6366F1), #8B5CF6);
    border-radius: 10px;
    transition: width 0.5s ease;
}

.calc-bar-pct {
    width: 40px;
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--primary, #6366F1);
    flex-shrink: 0;
}

/* Market Comparison */
.calc-comparison {
    margin-bottom: 24px;
}

.calc-compare-table {
    border: 1px solid #E2E8F0;
    border-radius: 12px;
    overflow: hidden;
}

.calc-compare-row {
    display: grid;
    grid-template-columns: 1fr auto auto;
    align-items: center;
    padding: 10px 16px;
    border-bottom: 1px solid #F1F5F9;
    gap: 12px;
}

.calc-compare-row:last-child {
    border-bottom: none;
}

.calc-compare-header {
    background: #F8FAFC;
    border-bottom: 2px solid #E2E8F0;
    padding: 8px 16px;
}

.calc-compare-header span {
    font-size: 1.125rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #94A3B8;
}

.calc-compare-name {
    font-weight: 600;
    font-size: 1.125rem;
    color: #334155;
    display: flex;
    align-items: center;
    gap: 8px;
    min-width: 0;
}

.calc-compare-name i {
    font-size: 1.1rem;
    color: var(--primary, #6366F1);
    flex-shrink: 0;
}

.calc-compare-cost {
    font-size: 1.125rem;
    color: #0F172A;
    font-weight: 600;
    text-align: right;
    white-space: nowrap;
}

.calc-compare-effort {
    font-size: 1.125rem;
    color: #64748B;
    text-align: right;
    white-space: nowrap;
    min-width: 100px;
}

.calc-compare-row--highlight {
    background: #F0FDF4;
}

.calc-compare-row--highlight .calc-compare-name {
    color: #065F46;
}

.calc-compare-row--highlight .calc-compare-name i {
    color: #10B981;
}

.calc-compare-row--result {
    background: #F5F3FF;
}

.calc-compare-row--result .calc-compare-name {
    color: var(--primary, #6366F1);
}

.calc-compare-row--result .calc-compare-name i {
    color: var(--primary, #6366F1);
}

.calc-compare-row--result .calc-compare-cost {
    color: var(--primary, #6366F1);
    font-weight: 800;
    font-size: 1.125rem;
}

/* ---- Selections Summary ---- */
.calc-summary {
    margin-bottom: 24px;
}

.calc-summary-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.calc-summary-item {
    background: #F8FAFC;
    border-radius: 10px;
    padding: 12px 14px;
}

.calc-summary-item--full {
    grid-column: 1 / -1;
}

.calc-summary-label {
    display: block;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.4px;
    color: #94A3B8;
    margin-bottom: 4px;
}

.calc-summary-value {
    display: block;
    font-size: 0.9rem;
    font-weight: 600;
    color: #0F172A;
    line-height: 1.4;
}

/* ---- Delivery Timeline ---- */
.calc-delivery {
    margin-bottom: 24px;
    padding: 24px 20px 20px;
    background: linear-gradient(135deg, #FFFFFF 0%, #F8FAFC 100%);
    border-radius: 16px;
    border: 1px solid #E2E8F0;
}

.calc-delivery-steps {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 0;
    position: relative;
    padding: 0 10px;
}

/* Connector line behind icons */
.calc-delivery-steps::before {
    content: '';
    position: absolute;
    top: 22px;
    left: 60px;
    right: 60px;
    height: 2px;
    background: linear-gradient(90deg, #E2E8F0 0%, #C7D2FE 50%, #E2E8F0 100%);
    z-index: 0;
}

.calc-delivery-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    text-align: center;
    flex: 1;
    min-width: 0;
    position: relative;
    z-index: 1;
}

.calc-delivery-icon {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: linear-gradient(135deg, #EEF2FF 0%, #E0E7FF 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    color: var(--primary, #6366F1);
    border: 2px solid #fff;
    box-shadow: 0 2px 8px rgba(99, 102, 241, 0.12);
    transition: transform 0.2s ease;
}

.calc-delivery-step:hover .calc-delivery-icon {
    transform: scale(1.1);
}

.calc-delivery-name {
    font-size: 0.8rem;
    font-weight: 700;
    color: #0F172A;
    letter-spacing: 0.2px;
}

.calc-delivery-desc {
    font-size: 0.78rem;
    color: #94A3B8;
    line-height: 1.3;
    max-width: 90px;
}

.calc-delivery-total {
    text-align: center;
    margin-top: 20px;
    padding-top: 14px;
    border-top: 1px solid #E2E8F0;
    font-size: 0.85rem;
    color: #64748B;
}

.calc-delivery-total i {
    color: var(--primary, #6366F1);
    margin-right: 4px;
}

.calc-delivery-total strong {
    color: #0F172A;
}

/* ---- DIY Nudge ---- */
.calc-diy-nudge {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 14px 16px;
    background: #F0FDF4;
    border: 1px solid #BBF7D0;
    border-radius: 12px;
    margin-bottom: 20px;
    font-size: 0.85rem;
    color: #065F46;
    line-height: 1.5;
}

.calc-diy-icon {
    font-size: 1.3rem;
    color: #10B981;
    flex-shrink: 0;
    margin-top: 1px;
}

.calc-diy-content a {
    color: #065F46;
    font-weight: 700;
    text-decoration: underline;
    text-underline-offset: 2px;
    text-decoration-color: #BBF7D0;
}

.calc-diy-content a:hover {
    color: #022C22;
}

/* Service Note */
.calc-service-note {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 14px 16px;
    background: #EEF2FF;
    border: 1px solid #C7D2FE;
    border-radius: 12px;
    margin-bottom: 20px;
    font-size: 0.85rem;
    color: #312E81;
    line-height: 1.5;
}

.calc-service-note-icon {
    font-size: 1.2rem;
    color: #6366F1;
    flex-shrink: 0;
    margin-top: 1px;
}

.calc-service-note-text a {
    color: #4338CA;
    font-weight: 700;
    text-decoration: underline;
    text-underline-offset: 2px;
}

.calc-service-note-text a:hover {
    color: #312E81;
}

/* WhatsApp Button */
.calc-whatsapp-row {
    text-align: center;
    margin-bottom: 16px;
}

.calc-btn--whatsapp {
    background: #25D366;
    color: #fff;
}

.calc-btn--whatsapp:hover {
    background: #1DA851;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
}

.calc-btn--whatsapp i {
    font-size: 1.2rem;
}

/* Reset Button */
.calc-reset-row {
    text-align: center;
}

/* ---- Content Sections ---- */
.content-section {
    padding: 70px 0;
}

.calc-features-section {
    background: #fff;
}

.calc-how-section {
    background: var(--bg-secondary, #F8FAFC);
}

.calc-why-section {
    background: linear-gradient(180deg, #F8FAFC 0%, #FFFFFF 100%);
    position: relative;
}

.calc-why-section .section-header h2 {
    background: linear-gradient(135deg, #6366F1 0%, #8B5CF6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.calc-why-section .feature-card {
    border-color: #E0E7FF;
    background: linear-gradient(135deg, #FFFFFF 0%, #FAFAFF 100%);
}

.calc-why-section .feature-card:hover {
    border-color: #A5B4FC;
    box-shadow: 0 12px 32px rgba(99, 102, 241, 0.15);
}

.calc-why-section .feature-card::before {
    background: linear-gradient(90deg, #8B5CF6, #6366F1);
}

.calc-use-section {
    background: var(--bg-secondary, #F8FAFC);
}

.section-header {
    text-align: center;
    margin-bottom: 48px;
}

.section-header h2 {
    font-size: 1.7rem;
    font-weight: 800;
    color: #0F172A;
    margin-bottom: 8px;
}

.section-header p {
    font-size: 1rem;
    color: #64748B;
    max-width: 580px;
    margin: 0 auto;
}

/* Features Grid (shared by features, why-choose, use-cases) */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 24px;
}

.feature-card {
    background: #fff;
    border: 1px solid #E2E8F0;
    border-radius: 16px;
    padding: 32px 24px 28px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #6366F1, #8B5CF6);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 32px rgba(99, 102, 241, 0.1);
    border-color: #C7D2FE;
}

.feature-card:hover::before {
    opacity: 1;
}

.feature-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: linear-gradient(135deg, #EEF2FF 0%, #E0E7FF 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: var(--primary, #6366F1);
    margin-bottom: 18px;
    transition: all 0.3s ease;
}

.feature-card:hover .feature-icon {
    background: linear-gradient(135deg, #6366F1 0%, #8B5CF6 100%);
    color: #fff;
    transform: scale(1.05);
}

.feature-icon i {
    font-size: 1.3rem;
}

.feature-card h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #0F172A;
    margin-bottom: 8px;
}

.feature-card p {
    font-size: 0.9rem;
    color: #64748B;
    line-height: 1.6;
}

/* How It Works Grid */
.how-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 16px;
    position: relative;
}

/* Connector line between cards */
.how-grid::before {
    content: '';
    position: absolute;
    top: 36px;
    left: calc(10% + 24px);
    right: calc(10% + 24px);
    height: 2px;
    background: linear-gradient(90deg, #E2E8F0, #C7D2FE, #E2E8F0);
    z-index: 0;
}

.how-card {
    text-align: center;
    padding: 20px 14px 24px;
    background: #fff;
    border: 1px solid #E2E8F0;
    border-radius: 14px;
    position: relative;
    transition: all 0.3s ease;
}

.how-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(99, 102, 241, 0.08);
    border-color: #C7D2FE;
}

.how-step-badge {
    display: inline-block;
    font-size: 0.68rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    color: #818CF8;
    background: #EEF2FF;
    padding: 3px 12px;
    border-radius: 20px;
    margin-bottom: 14px;
}

.how-icon-wrap {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: linear-gradient(135deg, #EEF2FF 0%, #E0E7FF 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 12px;
    transition: all 0.3s ease;
}

.how-card:hover .how-icon-wrap {
    background: linear-gradient(135deg, #6366F1 0%, #8B5CF6 100%);
    transform: scale(1.06);
}

.how-icon {
    font-size: 1.2rem;
    color: var(--primary, #6366F1);
    transition: color 0.3s ease;
}

.how-card:hover .how-icon {
    color: #fff;
}

.how-card h3 {
    font-size: 0.92rem;
    font-weight: 700;
    color: #0F172A;
    margin-bottom: 6px;
}

.how-card p {
    font-size: 0.88rem;
    color: #64748B;
    line-height: 1.55;
}

/* ---- Responsive ---- */
@media (max-width: 768px) {

    .calc-wizard,
    .calc-results {
        padding: 24px 16px;
    }

    .calc-steps {
        flex-wrap: nowrap;
        overflow-x: auto;
        gap: 0;
        padding-bottom: 8px;
    }

    .calc-step-label {
        display: none;
    }

    .calc-step-num {
        width: 30px;
        height: 30px;
        font-size: 12px;
    }

    .calc-step-connector {
        width: 24px;
        margin-bottom: 0;
    }

    .calc-options--grid {
        grid-template-columns: 1fr 1fr;
    }

    .calc-features-grid {
        grid-template-columns: 1fr;
    }

    .calc-meta-row {
        grid-template-columns: 1fr;
    }

    .calc-price-amount {
        font-size: 2rem;
    }

    .calc-bar-label {
        width: 100px;
        font-size: 1.125rem;
    }

    .calc-currency-row {
        flex-direction: column;
        gap: 8px;
    }

    .calc-currency-select {
        max-width: 100%;
    }

    .calc-compare-row {
        grid-template-columns: 1fr;
        gap: 2px;
        padding: 10px 14px;
    }

    .calc-compare-header {
        display: none;
    }

    .calc-compare-cost {
        text-align: left;
        font-size: 1.125rem;
    }

    .calc-compare-effort {
        text-align: left;
        font-size: 1.125rem;
    }

    .calc-summary-grid {
        grid-template-columns: 1fr;
    }

    .calc-delivery-steps {
        flex-direction: column;
        gap: 16px;
        padding: 0;
    }

    .calc-delivery-steps::before {
        display: none;
    }

    .calc-delivery-step {
        flex-direction: row;
        width: 100%;
        gap: 14px;
        text-align: left;
    }

    .calc-delivery-icon {
        width: 40px;
        height: 40px;
        font-size: 1.1rem;
        flex-shrink: 0;
    }

    .calc-delivery-name {
        font-size: 0.85rem;
    }

    .calc-delivery-desc {
        font-size: 0.78rem;
        max-width: none;
    }

    .calc-diy-nudge {
        flex-direction: column;
    }

    .how-grid::before {
        display: none;
    }

    .features-grid,
    .how-grid {
        grid-template-columns: 1fr;
    }
}

@media (min-width: 481px) and (max-width: 768px) {
    .how-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .how-grid::before {
        display: none;
    }
}

@media (max-width: 480px) {
    .calc-options--grid {
        grid-template-columns: 1fr;
    }

    .calculator-section {
        padding: 40px 0;
    }

    .calc-nav {
        flex-direction: column;
    }

    .calc-btn--next {
        margin-left: 0;
    }

    .content-section {
        padding: 50px 0;
    }
}