/* ════════════════════════════════════════
   CALCULATOR — calculator.css
   Single source of truth for:
     - The modal overlay used on funds pages
     - The calculator widget card layout
     - The ec-* component classes used inside the widget
   Loaded on /calculator, /funds-services, and /funds-education.
   ════════════════════════════════════════ */


/* ══════════════════════════════════════════
   STANDALONE CALCULATOR PAGE LAYOUT
   ══════════════════════════════════════════ */
#main {
    opacity: 1;
}

.calc-page-integrated {
    padding: 110px 5% 56px;
    background: linear-gradient(150deg, #eff6ff 0%, #f0fdf4 100%);
    opacity: 0;
    animation: calcPageIn 0.7s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.calc-page-hero {
    text-align: center;
    margin-bottom: 28px;
}

.calc-page-hero .cph-label {
    display: inline-block;
    font-size: 0.76rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    color: #2563eb;
    background: #dbeafe;
    padding: 4px 14px;
    border-radius: 20px;
    margin-bottom: 12px;
}

.calc-page-hero h1 {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 800;
    color: #0f172a;
    letter-spacing: -1.5px;
    line-height: 1.1;
    margin-bottom: 12px;
}

.calc-page-hero p {
    font-size: 1.05rem;
    color: #475569;
    max-width: 520px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Legacy class */
.calc-page-body {
    padding: 60px 5% 100px;
    background: #f8fafc;
}

.calc-page-card {
    max-width: 1440px;
    margin: 0 auto;
}

@keyframes calcPageIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

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


/* ══════════════════════════════════════════
   WIDGET MODAL HEADER (hidden on page)
   ══════════════════════════════════════════ */
.calc-widget .ec-header {
    margin-bottom: 28px;
}

.calc-widget .edu-label {
    display: inline-block;
    font-size: 0.76rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #2563eb;
    background: #dbeafe;
    padding: 4px 12px;
    border-radius: 20px;
    margin-bottom: 10px;
}

.calc-widget .edu-title {
    font-size: clamp(1.5rem, 3vw, 1.9rem);
    margin-bottom: 4px;
    color: #0f172a;
    font-weight: 800;
    letter-spacing: -0.5px;
}

.calc-widget .edu-subtitle {
    font-size: 0.95rem;
    color: #64748b;
}


/* ══════════════════════════════════════════
   LAYOUT: Two-column body
   ══════════════════════════════════════════ */
.calc-widget .ec-body {
    display: flex;
    gap: 36px;
    align-items: stretch;
}

.calc-widget .ec-inputs {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
}


/* ══════════════════════════════════════════
   TABS
   ══════════════════════════════════════════ */
.calc-widget .ec-tabs {
    display: flex;
    gap: 4px;
    background: #e8eef7;
    padding: 5px;
    border-radius: 12px;
    width: 100%;
    margin-bottom: 28px;
}

.calc-widget .ec-tab {
    flex: 1;
    padding: 10px 16px;
    border: none;
    background: transparent;
    border-radius: 8px;
    font-family: inherit;
    font-size: 0.88rem;
    font-weight: 600;
    color: #64748b;
    cursor: pointer;
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    letter-spacing: 0.01em;
    white-space: nowrap;
}

.calc-widget .ec-tab:hover:not(.active) {
    color: #2563eb;
    background: rgba(255, 255, 255, 0.6);
}

.calc-widget .ec-tab:focus-visible {
    outline: 2px solid #2563eb;
    outline-offset: 2px;
}

.calc-widget .ec-tab.active {
    background: #fff;
    color: #2563eb;
    box-shadow: 0 2px 8px rgba(37, 99, 235, 0.14), 0 1px 3px rgba(0, 0, 0, 0.08);
    font-weight: 700;
}


/* ══════════════════════════════════════════
   PANELS
   ══════════════════════════════════════════ */
.calc-widget .ec-panel {
    display: none;
    flex: 1;
}

.calc-widget .ec-panel.active {
    display: flex;
    flex-direction: column;
    gap: 0;
}


/* ══════════════════════════════════════════
   FIELD (Input group: label + pill + slider + range)
   ══════════════════════════════════════════ */
.calc-widget .ec-field {
    margin-bottom: 24px;
    background: #fff;
    border: 1.5px solid #e2e8f0;
    border-radius: 14px;
    padding: 16px 20px 18px;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.calc-widget .ec-field:focus-within {
    border-color: #2563eb;
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.08);
}

.calc-widget .ec-field:last-child {
    margin-bottom: 0;
}

/* Header row: label on left, value pill on right */
.calc-widget .ec-field-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 14px;
}

.calc-widget .ec-field-label {
    font-size: 0.9rem;
    font-weight: 600;
    color: #374151;
    cursor: default;
}

/* Value pill */
.calc-widget .ec-val-wrap {
    display: flex;
    align-items: center;
    gap: 4px;
    background: #eff6ff;
    border: 1.5px solid #bfdbfe;
    border-radius: 8px;
    padding: 5px 10px;
    cursor: text;
    transition: border-color 0.2s;
}

.calc-widget .ec-val-wrap:focus-within {
    border-color: #2563eb;
    background: #dbeafe;
}

.calc-widget .ec-val-prefix,
.calc-widget .ec-val-suffix {
    font-size: 0.88rem;
    font-weight: 700;
    color: #2563eb;
    user-select: none;
    flex-shrink: 0;
}

.calc-widget .ec-val-input {
    border: none;
    background: transparent;
    font-family: 'Outfit', sans-serif;
    font-size: 0.95rem;
    font-weight: 700;
    color: #1e293b;
    width: 80px;
    text-align: right;
    outline: none;
    -moz-appearance: textfield;
}

.calc-widget .ec-val-input::-webkit-inner-spin-button,
.calc-widget .ec-val-input::-webkit-outer-spin-button {
    -webkit-appearance: none;
}


/* ── SLIDER ── */
.calc-widget .ec-slider {
    -webkit-appearance: none;
    appearance: none;
    width: 100%;
    height: 6px;
    border-radius: 6px;
    background: #dde4f0;
    outline: none;
    cursor: pointer;
    display: block;
    margin-bottom: 8px;
    /* filled track via inline background-image (set in JS) */
}

.calc-widget .ec-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: #2563eb;
    border: 3px solid #fff;
    box-shadow: 0 2px 8px rgba(37, 99, 235, 0.35);
    cursor: pointer;
    transition: transform 0.15s, box-shadow 0.15s;
}

.calc-widget .ec-slider::-moz-range-thumb {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: #2563eb;
    border: 3px solid #fff;
    box-shadow: 0 2px 8px rgba(37, 99, 235, 0.35);
    cursor: pointer;
    transition: transform 0.15s, box-shadow 0.15s;
}

.calc-widget .ec-slider:hover::-webkit-slider-thumb {
    transform: scale(1.15);
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.45);
}

.calc-widget .ec-slider:hover::-moz-range-thumb {
    transform: scale(1.15);
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.45);
}

.calc-widget .ec-slider:focus-visible::-webkit-slider-thumb {
    outline: 2px solid #2563eb;
    outline-offset: 2px;
}


/* Min / Max labels below slider */
.calc-widget .ec-range-labels {
    display: flex;
    justify-content: space-between;
    font-size: 0.72rem;
    font-weight: 500;
    color: #94a3b8;
    margin-top: 2px;
}


/* ══════════════════════════════════════════
   TRUST STRIP (below inputs)
   ══════════════════════════════════════════ */
.calc-widget .ec-trust-strip {
    margin-top: auto;
    padding-top: 20px;
    display: flex;
    flex-wrap: wrap;
    gap: 10px 20px;
}

.calc-widget .ec-trust-item {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.78rem;
    font-weight: 600;
    color: #475569;
}

.calc-widget .ec-trust-item svg {
    flex-shrink: 0;
}


/* ══════════════════════════════════════════
   RESULT CARD (Right column)
   ══════════════════════════════════════════ */
.calc-widget .ec-result-card {
    flex: 0.8;
    background: #fff;
    border-radius: 20px;
    padding: 28px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.07);
    border: 1.5px solid #e2e8f0;
    display: flex;
    flex-direction: column;
    gap: 20px;
    min-width: 0;
}


/* PRIMARY: Total value hero block */
.calc-widget .ec-result-primary {
    background: linear-gradient(135deg, #1d4ed8 0%, #2563eb 60%, #0ea5e9 100%);
    border-radius: 14px;
    padding: 28px 28px 24px;
    color: #fff;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.calc-widget .ec-result-primary-label {
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    opacity: 0.8;
}

.calc-widget .ec-result-primary-value {
    font-family: 'Outfit', sans-serif;
    font-size: clamp(2.2rem, 4vw, 3.2rem);
    font-weight: 900;
    letter-spacing: -1.5px;
    line-height: 1;
    transition: color 0.3s;
}

.calc-widget .ec-result-gain {
    font-size: 0.92rem;
    font-weight: 700;
    color: #86efac;
    margin-top: 6px;
}


/* RESULT DATA: Donut + breakdown side-by-side — grows to fill remaining height */
.calc-widget .ec-result-data {
    display: flex;
    align-items: center;
    gap: 24px;
    flex: 1;
    min-height: 0;
}

/* Donut chart */
.calc-widget .ec-donut-wrap {
    position: relative;
    width: 200px;
    height: 200px;
    flex-shrink: 0;
}

.calc-widget .ec-donut {
    width: 100%;
    height: 100%;
}

/* Smooth stroke transitions */
.calc-widget .ec-donut circle:not(:first-child) {
    transition: stroke-dasharray 0.5s cubic-bezier(0.4, 0, 0.2, 1),
        stroke-dashoffset 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.calc-widget .ec-donut-center {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 12px;
}

.calc-widget .edc-label {
    font-size: 0.68rem;
    color: #94a3b8;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 4px;
}

.calc-widget .edc-num {
    font-family: 'Outfit', sans-serif;
    font-size: 1.3rem;
    font-weight: 900;
    color: #1e3a8a;
    line-height: 1.1;
}


/* BREAKDOWN: two stacked stat rows */
.calc-widget .ec-breakdown {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 0;
}

.calc-widget .ec-breakdown-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 18px 0;
}

.calc-widget .ec-breakdown-divider {
    height: 1px;
    background: #e2e8f0;
}

.calc-widget .ec-breakdown-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    flex-shrink: 0;
}

.calc-widget .ec-breakdown-info {
    display: flex;
    flex-direction: column;
    gap: 4px;
    min-width: 0;
}

.calc-widget .ec-breakdown-label {
    font-size: 0.72rem;
    font-weight: 700;
    color: #64748b;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    white-space: nowrap;
}

.calc-widget .ec-breakdown-val {
    font-family: 'Outfit', sans-serif;
    font-size: 1.5rem;
    font-weight: 900;
    color: #0f172a;
    transition: all 0.3s;
}


/* INSIGHT LINE */
.calc-widget .ec-insight {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    padding: 14px 16px;
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.calc-widget .ec-insight svg {
    flex-shrink: 0;
    margin-top: 2px;
}

.calc-widget .ec-insight p {
    font-size: 0.86rem;
    color: #475569;
    line-height: 1.6;
    margin: 0;
}

.calc-widget .ec-insight strong {
    color: #16a34a;
}


/* CTA BUTTON */
.calc-widget .ec-cta-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    padding: 15px 24px;
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
    color: #fff;
    font-family: 'Outfit', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    border-radius: 12px;
    text-decoration: none;
    letter-spacing: 0.01em;
    transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
    box-shadow: 0 4px 16px rgba(37, 99, 235, 0.3);
    margin-top: auto;
}

.calc-widget .ec-cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(37, 99, 235, 0.4);
    background: linear-gradient(135deg, #1d4ed8 0%, #1e40af 100%);
}

.calc-widget .ec-cta-btn:active {
    transform: translateY(0);
}

.calc-widget .ec-cta-btn:focus-visible {
    outline: 2px solid #2563eb;
    outline-offset: 3px;
}


/* ══════════════════════════════════════════
   RESPONSIVE
   Strategy:
     ≥ 1200px  — full side-by-side, donut+breakdown horizontal
     1024–1199 — donut+breakdown stack vertically inside result card
     860–1023  — still side-by-side columns, narrower result card
     601–859   — single column, result card full width, donut+breakdown row
     480–600   — single column, tighter spacing
     ≤ 479     — smallest phones, max compression
   ══════════════════════════════════════════ */

/* ── Large desktop: limit page content padding ── */
@media (min-width: 1440px) {
    .calc-page-integrated {
        padding-left: 6%;
        padding-right: 6%;
    }
}

/* ── Wide layout: donut + breakdown go vertical inside result card ── */
@media (max-width: 1199px) {
    .calc-page-card {
        max-width: 100%;
    }

    .calc-widget .ec-result-data {
        flex-direction: column;
        align-items: stretch;
        gap: 16px;
    }

    .calc-widget .ec-donut-wrap {
        align-self: center;
        width: 180px;
        height: 180px;
    }

    .calc-widget .ec-breakdown {
        justify-content: flex-start;
    }
}

/* ── Tablet landscape: columns still side by side ── */
@media (max-width: 1023px) {
    .calc-page-integrated {
        padding: 100px 4% 48px;
    }

    .calc-widget .ec-body {
        gap: 24px;
    }

    .calc-widget .ec-result-card {
        padding: 24px;
        gap: 18px;
    }

    .calc-widget .ec-result-primary {
        padding: 22px 22px 18px;
    }

    .calc-widget .ec-result-primary-value {
        font-size: clamp(2rem, 4vw, 2.8rem);
    }

    .calc-widget .ec-breakdown-val {
        font-size: 1.35rem;
    }

    .calc-widget .ec-donut-wrap {
        width: 170px;
        height: 170px;
    }
}

/* ── Tablet portrait: stack columns vertically ── */
@media (max-width: 860px) {
    .calc-page-integrated {
        padding: 95px 4% 48px;
    }

    .calc-page-hero {
        margin-bottom: 24px;
    }

    .calc-page-hero h1 {
        font-size: clamp(1.8rem, 6vw, 2.6rem);
        letter-spacing: -1px;
    }

    .calc-page-hero p {
        font-size: 1rem;
    }

    .calc-widget .ec-body {
        flex-direction: column;
        gap: 20px;
        align-items: stretch;
    }

    /* Result card goes below inputs, full width */
    .calc-widget .ec-result-card {
        flex: none;
        width: 100%;
        padding: 22px;
        gap: 16px;
    }

    /* Donut + breakdown go side-by-side again at this width */
    .calc-widget .ec-result-data {
        flex-direction: row;
        align-items: center;
        gap: 24px;
    }

    .calc-widget .ec-donut-wrap {
        width: 160px;
        height: 160px;
        align-self: auto;
    }

    .calc-widget .ec-result-primary-value {
        font-size: clamp(1.9rem, 5vw, 2.8rem);
    }

    .calc-widget .ec-trust-strip {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 8px 20px;
        padding-top: 12px;
    }

    .calc-widget .ec-field {
        margin-bottom: 16px;
    }
}

/* ── Large phones / small tablets ── */
@media (max-width: 640px) {
    .calc-page-integrated {
        padding: 88px 4% 40px;
    }

    .calc-page-hero {
        margin-bottom: 20px;
    }

    .calc-page-hero h1 {
        font-size: clamp(1.6rem, 7vw, 2.2rem);
        margin-bottom: 8px;
    }

    .calc-page-hero p {
        font-size: 0.95rem;
    }

    .calc-widget .ec-tabs {
        border-radius: 10px;
    }

    .calc-widget .ec-tab {
        padding: 9px 10px;
        font-size: 0.82rem;
        border-radius: 7px;
    }

    .calc-widget .ec-field {
        padding: 14px 16px 16px;
        border-radius: 12px;
        margin-bottom: 12px;
    }

    .calc-widget .ec-val-input {
        width: 70px;
    }

    /* Stack donut + breakdown vertically on small phones */
    .calc-widget .ec-result-data {
        flex-direction: column;
        align-items: center;
        gap: 16px;
    }

    .calc-widget .ec-donut-wrap {
        width: 150px;
        height: 150px;
    }

    .calc-widget .ec-breakdown {
        width: 100%;
    }

    .calc-widget .ec-breakdown-item {
        padding: 12px 0;
    }

    .calc-widget .ec-breakdown-val {
        font-size: 1.25rem;
    }

    .calc-widget .ec-result-primary {
        padding: 18px 18px 14px;
        border-radius: 12px;
    }

    .calc-widget .ec-result-primary-value {
        font-size: clamp(1.75rem, 8vw, 2.4rem);
        letter-spacing: -1px;
    }

    .calc-widget .ec-result-gain {
        font-size: 0.82rem;
    }

    .calc-widget .ec-result-card {
        padding: 18px;
        gap: 14px;
        border-radius: 16px;
    }

    .calc-widget .ec-insight {
        padding: 11px 13px;
    }

    .calc-widget .ec-insight p {
        font-size: 0.8rem;
        line-height: 1.5;
    }

    .calc-widget .ec-cta-btn {
        padding: 14px 20px;
        font-size: 0.95rem;
        border-radius: 10px;
    }

    .calc-widget .ec-trust-strip {
        gap: 6px 14px;
    }

    .calc-widget .ec-trust-item {
        font-size: 0.74rem;
    }
}

/* ── Small phones ── */
@media (max-width: 480px) {
    .calc-page-integrated {
        padding: 80px 3.5% 36px;
    }

    .calc-page-hero h1 {
        font-size: clamp(1.5rem, 8vw, 1.9rem);
        letter-spacing: -0.5px;
    }

    .calc-page-hero p {
        font-size: 0.9rem;
    }

    .calc-widget .ec-tab {
        padding: 8px 8px;
        font-size: 0.78rem;
    }

    .calc-widget .ec-field-label {
        font-size: 0.85rem;
    }

    .calc-widget .ec-val-wrap {
        padding: 4px 8px;
    }

    .calc-widget .ec-val-input {
        width: 60px;
        font-size: 0.88rem;
    }

    .calc-widget .ec-slider::-webkit-slider-thumb {
        width: 20px;
        height: 20px;
    }

    .calc-widget .ec-slider::-moz-range-thumb {
        width: 20px;
        height: 20px;
    }

    .calc-widget .ec-donut-wrap {
        width: 130px;
        height: 130px;
    }

    .calc-widget .edc-num {
        font-size: 1rem;
    }

    .calc-widget .ec-breakdown-val {
        font-size: 1.1rem;
    }

    .calc-widget .ec-breakdown-label {
        font-size: 0.68rem;
    }

    .calc-widget .ec-result-primary-value {
        font-size: clamp(1.5rem, 10vw, 2rem);
        letter-spacing: -0.5px;
    }

    .calc-widget .ec-result-card {
        padding: 16px;
        gap: 12px;
    }

    .calc-widget .ec-result-primary {
        padding: 16px;
        border-radius: 10px;
    }

    .calc-widget .ec-trust-strip {
        flex-direction: column;
        gap: 6px;
    }

    /* SEO section tighter on small phones */
    .calc-page-education {
        padding: 48px 4%;
    }

    .calc-edu-article {
        padding: 24px 20px;
    }

    .calc-edu-article-title {
        font-size: 1.35rem;
    }

    .calc-faq-btn {
        padding: 20px;
        font-size: 1rem;
    }

    .calc-faq-inner {
        padding: 0 20px 20px;
    }
}

/* ── Very small phones (SE, 360px, etc.) ── */
@media (max-width: 380px) {
    .calc-page-integrated {
        padding: 76px 3% 32px;
    }

    .calc-widget .ec-tab {
        font-size: 0.72rem;
        padding: 7px 6px;
        letter-spacing: 0;
    }

    .calc-widget .ec-tabs {
        gap: 2px;
        padding: 4px;
    }

    .calc-widget .ec-donut-wrap {
        width: 120px;
        height: 120px;
    }

    .calc-widget .edc-num {
        font-size: 0.9rem;
    }

    .calc-widget .ec-result-primary-value {
        font-size: 1.5rem;
    }

    .calc-widget .ec-result-card {
        padding: 14px;
        gap: 10px;
    }

    .calc-widget .ec-cta-btn {
        padding: 12px 16px;
        font-size: 0.9rem;
    }
}


/* ══════════════════════════════════════════
   SEO & EDUCATIONAL CONTENT
   ══════════════════════════════════════════ */
.calc-page-education {
    padding: 80px 5%;
    background: #f8fafc;
    border-top: 1px solid #e2e8f0;
}

.calc-edu-container {
    max-width: 900px;
    margin: 0 auto;
    color: #334155;
    line-height: 1.8;
}

.calc-edu-header {
    text-align: center;
    margin-bottom: 50px;
}

.calc-edu-header h2 {
    font-size: 2.2rem;
    color: #0f172a;
    margin-bottom: 16px;
    font-weight: 700;
}

.calc-edu-header p {
    font-size: 1.1rem;
    color: #64748b;
    max-width: 700px;
    margin: 0 auto;
}

.calc-edu-article {
    margin-bottom: 50px;
    background: #fff;
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
    border: 1px solid #f1f5f9;
}

.calc-edu-article:last-of-type {
    margin-bottom: 60px;
}

.calc-edu-article-title {
    color: #0f172a;
    font-size: 1.75rem;
    margin-bottom: 24px;
    border-bottom: 2px solid #f1f5f9;
    padding-bottom: 12px;
}

.calc-edu-article h3 {
    color: #1e293b;
    font-size: 1.25rem;
    margin-top: 24px;
    margin-bottom: 12px;
    font-weight: 600;
}

.calc-edu-article p {
    margin-bottom: 16px;
}

.calc-edu-formula {
    background: #f8fafc;
    padding: 16px;
    border-radius: 8px;
    font-family: monospace;
    font-size: 1.1rem;
    margin-bottom: 16px;
    border: 1px solid #e2e8f0;
    color: #0f172a;
}

.calc-edu-list {
    margin-left: 20px;
    margin-bottom: 16px;
    list-style-type: disc;
}

.calc-edu-list li {
    margin-bottom: 8px;
}


/* FAQ SECTION */
.calc-faq-section {
    margin-top: 60px;
}

.calc-faq-title {
    font-size: 2rem;
    color: #0f172a;
    margin-bottom: 30px;
    text-align: center;
    font-weight: 700;
}

.calc-faq-item {
    background: #fff;
    border-radius: 12px;
    margin-bottom: 16px;
    border: 1px solid #e2e8f0;
    overflow: hidden;
}

.calc-faq-btn {
    width: 100%;
    text-align: left;
    background: transparent;
    border: none;
    padding: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    color: #1e293b;
    font-size: 1.2rem;
    font-weight: 600;
    font-family: inherit;
    transition: background 0.2s;
}

.calc-faq-btn:hover {
    background: #f8fafc;
}

.calc-faq-icon {
    font-size: 1.5rem;
    font-weight: 400;
    color: #2563eb;
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.calc-faq-item.active .calc-faq-icon {
    transform: rotate(45deg);
}

.calc-faq-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

.calc-faq-inner {
    padding: 0 30px 30px 30px;
}