/* ═══════════════════════════════════════════════════════════
   Compare Hero
═══════════════════════════════════════════════════════════ */
.compare-hero-section {
    background-color: var(--color-bg-white, #ffffff);
    padding: 112px 24px 64px;
}

@media (min-width: 1024px) {
    .compare-hero-section {
        padding: 144px 24px 96px;
    }
}

.compare-hero-inner {
    max-width: 860px;
    margin: 0 auto;
}

/* ─── Header ────────────────────────────────────────────── */
.compare-hero-header {
    text-align: center;
    margin-bottom: 56px;
}

.compare-hero-label {
    display: block;
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--color-text-secondary, #666666);
    margin-bottom: 16px;
}

.compare-hero-title {
    font-family: 'Inter', sans-serif;
    font-size: clamp(2.25rem, 6vw, 4rem);
    font-weight: 800;
    color: var(--color-text-primary, #333333);
    letter-spacing: -0.035em;
    line-height: 1.05;
    margin-bottom: 24px;
}

.compare-hero-description {
    font-family: 'Inter', sans-serif;
    font-size: clamp(1rem, 1.8vw, 1.2rem);
    font-weight: 400;
    color: var(--color-text-secondary, #666666);
    line-height: 1.75;
    max-width: 720px;
    margin: 0 auto 20px;
}

.compare-hero-badge-wrap {
    display: ruby;
    align-items: center;
    gap: 6px;
    font-family: 'Inter', sans-serif;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--color-text-primary, #333333);
    background: rgba(30, 30, 50, 0.06);
    border: 1px solid rgba(30, 30, 50, 0.2);
    border-radius: 100px;
    padding: 5px 12px;
}

/* ─── TOC ───────────────────────────────────────────────── */
.compare-toc {
    background-color: var(--color-bg-white, #ffffff);
    border: 1px solid rgba(30, 30, 50, 0.12);
    border-radius: 14px;
    padding: 32px;
    margin-bottom: 20px;
}

@media (min-width: 1024px) {
    .compare-toc {
        padding: 40px;
    }
}

.compare-toc-title {
    font-family: 'Inter', sans-serif;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--color-text-secondary, #666666);
    margin-bottom: 24px;
}

.compare-toc-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

@media (min-width: 640px) {
    .compare-toc-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (min-width: 960px) {
    .compare-toc-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.compare-toc-link {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 500;
    color: var(--color-text-primary, #333333);
    text-decoration: none;
    transition: color 0.2s ease;
}

.compare-toc-link:hover {
    color: var(--color-text-secondary, #666666);
}

.compare-toc-num {
    font-family: 'Inter', sans-serif;
    font-size: 11px;
    font-weight: 400;
    color: var(--color-text-placeholder, #999999);
    font-variant-numeric: tabular-nums;
    flex-shrink: 0;
}

/* ─── Stakes ────────────────────────────────────────────── */
.compare-stakes {
    background-color: var(--color-bg-dark, #1A1A2E);
    border-radius: 14px;
    padding: 32px;
    text-align: center;
}

@media (min-width: 1024px) {
    .compare-stakes {
        padding: 40px;
    }
}

.compare-stakes-eyebrow {
    font-family: 'Inter', sans-serif;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--color-text-white, #ffffff);
    margin-bottom: 12px;
}

.compare-stakes-headline {
    font-family: 'Inter', sans-serif;
    font-size: clamp(1.2rem, 2.5vw, 1.5rem);
    font-weight: 600;
    color: var(--color-text-white, #ffffff);
    line-height: 1.3;
    margin-bottom: 12px;
    letter-spacing: -0.02em;
}

.compare-stakes-headline strong {
    font-weight: 800;
}

.compare-stakes-body {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    color: #fff;
    line-height: 1.75;
    max-width: 620px;
    margin: 0 auto 16px;
}

.compare-stakes-source {
    font-family: 'Inter', sans-serif;
    font-size: 11px;
    color: rgb(255, 255, 255);
    line-height: 1.5;
}

/* ═══════════════════════════════════════════════════════════
   Compare Section Wrapper
═══════════════════════════════════════════════════════════ */
.cmp-scroll-anchor {
    scroll-margin-top: 96px;
}

.cmp-section {
    background-color: var(--color-bg-white, #ffffff);
    border-top: 1px solid var(--color-border-divider, #f0f0f0);
    padding: 80px 24px;
}

@media (min-width: 1024px) {
    .cmp-section {
        padding: 112px 24px;
    }
}

.cmp-inner {
    max-width: 960px;
    margin: 0 auto;
}

/* ─── Header ────────────────────────────────────────────── */
.cmp-header {
    text-align: center;
    margin-bottom: 48px;
}

.cmp-section-label {
    display: block;
    font-family: 'Inter', sans-serif;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--color-text-secondary, #666666);
    margin-bottom: 12px;
}

.cmp-section-title {
    font-family: 'Inter', sans-serif;
    font-size: clamp(1.75rem, 4vw, 2.75rem);
    font-weight: 800;
    color: var(--color-text-primary, #333333);
    letter-spacing: -0.03em;
    line-height: 1.08;
    margin-bottom: 14px;
}

.cmp-section-description {
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    color: var(--color-text-secondary, #666666);
    line-height: 1.65;
    max-width: 560px;
    margin: 0 auto;
}

/* ═══════════════════════════════════════════════════════════
   Table
═══════════════════════════════════════════════════════════ */
.cmp-table {
    border: 1px solid var(--color-border-light, #e5e5e5);
    border-radius: 14px;
    overflow: hidden;
}

/* ─── Column header row ─────────────────────────────────── */
.cmp-table-head {
    display: grid;
    grid-template-columns: 220px 1fr 1fr;
    background-color: var(--color-bg-white, #ffffff);
    border-bottom: 1px solid var(--color-border-light, #e5e5e5);
}

@media (max-width: 680px) {
    .cmp-table-head {
        grid-template-columns: 1fr 1fr;
    }

    .cmp-col-feature {
        display: none;
    }
}

.cmp-col-feature,
.cmp-col-traditional,
.cmp-col-sc {
    padding: 16px 20px;
}

.cmp-col-traditional {
    border-left: 1px solid var(--color-border-light, #e5e5e5);
    display: flex;
    align-items: center;
    justify-content: center;
}

.cmp-col-sc {
    border-left: 1px solid rgba(67, 56, 202, 0.2);
    background-color: #1A1A2E;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* ─── Column labels ─────────────────────────────────────── */
.cmp-col-label {
    font-family: 'Inter', sans-serif;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.cmp-col-label--red {
    color: #ff6b6b;
}

/* savings.club badge */
.cmp-sc-badge {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: var(--color-text-white, #ffffff);
    letter-spacing: -0.02em;
}

.cmp-sc-dot {
    color: #a3e635;
    font-style: normal;
}

/* ─── Data rows ─────────────────────────────────────────── */
.cmp-row {
    display: grid;
    grid-template-columns: 220px 1fr 1fr;
    border-top: 1px solid var(--color-border-light, #e5e5e5);
}

@media (max-width: 680px) {
    .cmp-row {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: auto auto;
    }

    .cmp-row .cmp-col-feature {
        grid-column: 1 / -1;
        border-left: none;
        background-color: var(--color-bg-light, #f8f9fa);
        padding: 10px 16px;
        border-bottom: 1px solid var(--color-border-light, #e5e5e5);
    }
}

.cmp-row--alt {
    background-color: var(--color-bg-light, #f8f9fa);
}

.cmp-row--alt .cmp-col-sc {
    background-color: rgba(26, 26, 46, 0.96);
}

.cmp-row--last {
    border-radius: 0 0 14px 14px;
}

.cmp-row .cmp-col-feature,
.cmp-row .cmp-col-traditional,
.cmp-row .cmp-col-sc {
    padding: 18px 20px;
}

.cmp-row .cmp-col-traditional {
    border-left: 1px solid var(--color-border-light, #e5e5e5);
}

.cmp-row .cmp-col-sc {
    border-left: 1px solid rgba(67, 56, 202, 0.15);
    background-color: rgba(26, 26, 46, 0.03);
}

.cmp-row--alt .cmp-col-sc {
    background-color: rgba(26, 26, 46, 0.05);
}

/* ─── Feature label ─────────────────────────────────────── */
.cmp-feature-label {
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    font-weight: 600;
    color: var(--color-text-primary, #333333);
    line-height: 1.4;
}

/* ─── Cell text ─────────────────────────────────────────── */
.cmp-cell-text {
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    font-weight: 400;
    color: var(--color-text-secondary, #666666);
    line-height: 1.65;
    margin: 0;
}

.cmp-cell-text--sc {
    font-weight: 500;
    color: #3730a3;
}



#cost {
    padding: 80px 24px;
    background: #f5f5f7;
    font-family: 'Inter', sans-serif;
}

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap');

.cost-container {
    max-width: 900px;
    margin: 0 auto;
}

/* ── Header ── */
.cost-header {
    text-align: center;
    margin-bottom: 48px;
}

.cost-label {
    display: block;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #888;
    margin-bottom: 12px;
    font-family: 'Inter', sans-serif;
}

.cost-title {
    font-size: clamp(1.8rem, 4vw, 2.6rem);
    font-weight: 700;
    color: #1d1d1f;
    margin: 0 0 12px;
    letter-spacing: -0.03em;
    line-height: 1.08;
    font-family: 'Inter', sans-serif;
}

.cost-subtitle {
    font-size: 15px;
    color: #6e6e73;
    margin: 0;
    line-height: 1.6;
    font-family: 'Inter', sans-serif;
}

/* ── Table wrapper ── */
.cost-table-wrapper {
    overflow-x: auto;
    border-radius: 16px;
    background: #fff;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.07);
}

/* ── Table ── */
.cost-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    font-size: 13px;
    min-width: 640px;
    font-family: 'Inter', sans-serif;
}

/* ── Header cells ── */
.cost-table thead tr th {
    padding: 16px 20px;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    border-bottom: 1px solid #e5e5ea;
    font-family: 'Inter', sans-serif;
}

.th-item {
    text-align: left;
    color: #888;
    width: 28%;
}

.th-traditional {
    text-align: center;
    color: #ff453a;
    width: 22%;
}

.th-sc {
    text-align: center;
    color: #fff;
    background: #3730a3;
    width: 20%;
    border-radius: 12px 12px 0 0;
    font-weight: 700;
    border-bottom: none;
}

.sc-dot {
    font-size: 13px;
}

.th-note {
    text-align: left;
    color: #888;
    width: 30%;
}

/* ── Body cells ── */
.cost-table tbody tr td {
    padding: 14px 20px;
    border-bottom: 1px solid #e5e5ea;
    font-family: 'Inter', sans-serif;
}

.td-item {
    font-weight: 500;
    color: #1d1d1f;
}

.td-item--bold {
    font-weight: 700;
}

.td-trad {
    text-align: center;
    color: #6e6e73;
}

.td-sc {
    text-align: center;
    font-weight: 600;
    color: #3730a3;
    background: rgba(55, 48, 163, 0.04);
}

.td-sc--highlight {
    color: #3730a3;
}

.td-note {
    font-size: 12px;
    color: #888;
}

/* ── Row variants ── */
.row-alt {
    background: #fafafa;
}

.row-total td {
    background: #f0f0f5;
}

.row-total--last td {
    border-bottom: none;
}

/* ── Footnote ── */
.cost-footnote {
    font-size: 11px;
    color: #aaa;
    margin-top: 20px;
    text-align: center;
    font-style: italic;
    line-height: 1.6;
    font-family: 'Inter', sans-serif;
}



#payment {
    padding: 80px 24px;
    background: var(--color-bg-dark, #1A1A2E);
    font-family: 'Inter', sans-serif;
}

.payment-container {
    max-width: 900px;
    margin: 0 auto;
}

/* ── Header ── */
.payment-header {
    text-align: center;
    margin-bottom: 40px;
}

.payment-label {
    display: block;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #ffffff;
    margin-bottom: 12px;
    font-family: 'Inter', sans-serif;
}

.payment-title {
    font-size: clamp(1.8rem, 4vw, 2.6rem);
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 12px;
    letter-spacing: -0.03em;
    line-height: 1.08;
    font-family: 'Inter', sans-serif;
}

.payment-subtitle {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.65);
    margin: 0 auto;
    max-width: 620px;
    line-height: 1.6;
    font-family: 'Inter', sans-serif;
}

/* ── Slider ── */
.slider-wrapper {
    max-width: 460px;
    margin: 32px auto 0;
}

.slider-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.slider-label {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.65);
    font-family: 'Inter', sans-serif;
}

.slider-value {
    font-size: 20px;
    font-weight: 700;
    color: #ffffff;
    font-family: 'Inter', sans-serif;
    letter-spacing: -0.02em;
}

.slider {
    width: 100%;
    height: 4px;
    appearance: none;
    -webkit-appearance: none;
    background: linear-gradient(to right, #3730a3 0%, #3730a3 var(--progress, 30%), rgba(255, 255, 255, 0.15) var(--progress, 30%), rgba(255, 255, 255, 0.15) 100%);
    border-radius: 999px;
    outline: none;
    cursor: pointer;
}

.slider::-webkit-slider-thumb {
    appearance: none;
    -webkit-appearance: none;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: #3730a3;
    border: 3px solid #ffffff;
    cursor: pointer;
    box-shadow: 0 0 0 4px rgba(55, 48, 163, 0.35);
}

.slider::-moz-range-thumb {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: #3730a3;
    border: 3px solid #ffffff;
    cursor: pointer;
}

.slider-limits {
    display: flex;
    justify-content: space-between;
    margin-top: 6px;
    font-size: 11px;
    color: rgba(255, 255, 255, 0.45);
    font-family: 'Inter', sans-serif;
}

/* ── Tier Cards ── */
.tiers-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.tier-card {
    background: #1A1A2E;
    border-radius: 12px;
    padding: 20px 24px;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
    gap: 16px;
    align-items: center;
    border: 1px solid rgba(255, 255, 255, 0.06);
}

.tier-info {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.tier-name {
    font-size: 14px;
    font-weight: 600;
    color: #ffffff;
    margin: 0;
    font-family: 'Inter', sans-serif;
}

.tier-apr {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.5);
    margin: 0;
    font-family: 'Inter', sans-serif;
}

.tier-col {
    text-align: center;
}

/* ── Column labels ── */
.col-label {
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.5);
    margin: 0 0 4px;
    font-family: 'Inter', sans-serif;
}

.col-label--bank {
    color: #ff453a;
}

.col-label--sc {
    color: #a5b4fc;
    font-size: 11px;
    letter-spacing: 0.04em;
}

.sc-o {
    font-size: 12px;
}

/* ── Column values ── */
.col-value {
    font-size: 20px;
    font-weight: 700;
    color: #ffffff;
    margin: 0;
    font-family: 'Inter', sans-serif;
    letter-spacing: -0.02em;
}

.col-value--bank {
    color: #ff453a;
}

.col-value--sc {
    color: #ffffff;
}

.col-value--total {
    color: #4ade80;
    font-size: 18px;
}

.col-unit {
    font-size: 12px;
    font-weight: 400;
    letter-spacing: 0;
}

/* ── Footer ── */
.payment-footer {
    margin-top: 40px;
    text-align: center;
}

.payment-footer-text {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.7;
    max-width: 640px;
    margin: 0 auto;
    font-family: 'Inter', sans-serif;
}

.payment-source {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.4);
    margin-top: 12px;
    font-family: 'Inter', sans-serif;
}

/* ── Responsive ── */
@media (max-width: 640px) {
    .tier-card {
        grid-template-columns: 1fr 1fr;
        gap: 12px;
    }

    .tier-info {
        grid-column: 1 / -1;
    }
}



/* ── Show/hide ── */
.cmp-desktop {
    display: block;
}

.cmp-mobile {
    display: none;
}

@media (max-width: 767px) {
    .cmp-desktop {
        display: none;
    }

    .cmp-mobile {
        display: block;
    }
}

/* ════════════════════════════════════
   CMP MOBILE ACCORDION
════════════════════════════════════ */

.cmp-accordion {
    font-family: 'Inter', sans-serif;
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 12px;
    overflow: hidden;
    background: #ffffff;
}

.cmp-acc-item {
    border-bottom: 1px solid rgba(0, 0, 0, 0.07);
}

.cmp-acc-item:last-child {
    border-bottom: none;
}

.cmp-acc-trigger {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 16px 18px;
    background: none;
    border: none;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    color: #1A1A2E;
    text-align: left;
    font-family: 'Inter', sans-serif;
    transition: background 0.15s;
}

.cmp-acc-trigger:hover {
    background: rgba(0, 0, 0, 0.02);
}

.cmp-acc-chevron {
    flex-shrink: 0;
    color: #666666;
    transition: transform 0.25s ease;
}

.cmp-acc-item.active .cmp-acc-chevron {
    transform: rotate(180deg);
}

.cmp-acc-panel {
    display: none;
    padding: 0 8px 10px;
}

.cmp-acc-item.active .cmp-acc-panel {
    display: block;
}

.cmp-acc-row {
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding: 10px 14px;
    border-radius: 8px;
    margin-bottom: 4px;
    background: #f8f8f8;
}

.cmp-acc-row--trad {
    border-left: 3px solid #ef4444;
}

.cmp-acc-row--sc {
    border-left: 3px solid #362C72;
    background: rgba(54, 44, 114, 0.05);
}

.cmp-acc-label {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #888888;
    font-family: 'Inter', sans-serif;
}

.cmp-acc-label--sc {
    color: #362C72;
}

.cmp-acc-value {
    font-size: 13px;
    font-weight: 400;
    color: #1A1A2E;
    line-height: 1.55;
    font-family: 'Inter', sans-serif;
}

.cmp-acc-row--trad .cmp-acc-value {
    color: #444455;
}



/* ── Show/hide ── */
.cost-table-desktop { display: block; }
.cost-table-mobile  { display: none;  }

@media (max-width: 767px) {
    .cost-table-desktop { display: none;  }
    .cost-table-mobile  { display: block; }
}

/* ════════════════════════════════════
   COST TABLE ACCORDION
════════════════════════════════════ */

.cost-accordion {
    font-family: 'Inter', sans-serif;
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 12px;
    overflow: hidden;
    background: #ffffff;
}

.cost-item {
    border-bottom: 1px solid rgba(0, 0, 0, 0.07);
}

.cost-item:last-child {
    border-bottom: none;
}

.cost-item--total {
    background: rgba(0, 0, 0, 0.02);
}

.cost-trigger {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 16px 18px;
    background: none;
    border: none;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    color: #1A1A2E;
    text-align: left;
    font-family: 'Inter', sans-serif;
    transition: background 0.15s;
}

.cost-trigger:hover {
    background: rgba(0, 0, 0, 0.02);
}

.cost-trigger--total {
    font-weight: 700;
    font-size: 15px;
}

.cost-chevron {
    flex-shrink: 0;
    color: #666666;
    transition: transform 0.25s ease;
}

.cost-item.active .cost-chevron {
    transform: rotate(180deg);
}

.cost-panel {
    display: none;
    padding: 0 8px 10px;
}

.cost-item.active .cost-panel {
    display: block;
}

.cost-mob-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 10px 14px;
    border-radius: 8px;
    margin-bottom: 4px;
    background: #f8f8f8;
}

.cost-mob-row--trad {
    border-left: 3px solid #ef4444;
}

.cost-mob-row--sc {
    border-left: 3px solid #362C72;
    background: rgba(54, 44, 114, 0.05);
}

.cost-mob-row--highlight {
    background: rgba(22, 163, 74, 0.08);
    border-left: 3px solid #16a34a;
}

.cost-mob-label {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #888888;
    font-family: 'Inter', sans-serif;
    flex-shrink: 0;
}

.cost-mob-label--sc {
    color: #362C72;
}

.cost-mob-value {
    font-size: 14px;
    font-weight: 600;
    color: #1A1A2E;
    font-family: 'Inter', sans-serif;
    text-align: right;
}

.cost-mob-value--highlight {
    font-size: 16px;
    font-weight: 800;
    color: #16a34a;
}


/* ── Show/hide ── */
.hist-desktop { display: block; }
.hist-mobile  { display: none;  }

@media (max-width: 767px) {
    .hist-desktop { display: none;  }
    .hist-mobile  { display: block; }
}

/* ════════════════════════════════════
   HIST TABLE ACCORDION
════════════════════════════════════ */

.hist-accordion {
    font-family: 'Inter', sans-serif;
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 12px;
    overflow: hidden;
    background: #ffffff;
}

.hist-acc-item {
    border-bottom: 1px solid rgba(0, 0, 0, 0.07);
}

.hist-acc-item:last-child {
    border-bottom: none;
}

.hist-acc-trigger {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 16px 18px;
    background: none;
    border: none;
    cursor: pointer;
    font-size: 15px;
    font-weight: 700;
    color: #1A1A2E;
    text-align: left;
    font-family: 'Inter', sans-serif;
    transition: background 0.15s;
}

.hist-acc-trigger:hover {
    background: rgba(0, 0, 0, 0.02);
}

.hist-acc-chevron {
    flex-shrink: 0;
    color: #666666;
    transition: transform 0.25s ease;
}

.hist-acc-item.active .hist-acc-chevron {
    transform: rotate(180deg);
}

.hist-acc-panel {
    display: none;
    padding: 0 8px 10px;
}

.hist-acc-item.active .hist-acc-panel {
    display: block;
}

.hist-acc-row {
    display: flex;
    flex-direction: column;
    gap: 3px;
    padding: 10px 14px;
    border-radius: 8px;
    margin-bottom: 4px;
    background: #f8f8f8;
}

.hist-acc-row--last {
    background: rgba(54, 44, 114, 0.04);
    border-left: 3px solid #362C72;
}

.hist-acc-label {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #888888;
    font-family: 'Inter', sans-serif;
}

.hist-acc-value {
    font-size: 13px;
    font-weight: 500;
    color: #1A1A2E;
    line-height: 1.5;
    font-family: 'Inter', sans-serif;
}

.hist-acc-value--users {
    font-weight: 700;
    color: #362C72;
}




/******** PROCESS ******************************/

#process {
    padding: 80px 24px;
    background: #ffffff;
    font-family: 'Inter', sans-serif;
}

.process-container {
    max-width: 860px;
    margin: 0 auto;
}

/* ── Header ── */
.process-header {
    text-align: center;
    margin-bottom: 56px;
}

.process-label {
    display: block;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #888;
    margin-bottom: 12px;
}

.process-title {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    font-weight: 700;
    color: #1d1d1f;
    margin: 0 0 12px;
    letter-spacing: -0.03em;
    line-height: 1.08;
}

.process-subtitle {
    font-size: 15px;
    color: #6e6e73;
    margin: 0;
    line-height: 1.6;
}

/* ── Column headers ── */
.process-cols-header {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-bottom: 32px;
    padding: 0 0 24px;
    border-bottom: 1px solid #e5e5ea;
}

.col-header {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 2px;
}

.col-header--sc {
    align-items: flex-start;
    padding-left: 12px;
    border-left: 1px solid #f0f0f5;
}

.col-header-sub {
    font-size: 11px;
    font-weight: 500;
    color: #aaa;
    letter-spacing: 0.04em;
}

.col-header-main {
    font-size: 22px;
    font-weight: 700;
    color: #1d1d1f;
    letter-spacing: -0.02em;
    font-style: italic;
}

.col-header--sc img {
    height: 28px;
    width: auto;
}

/* ── Steps ── */
.process-steps {
    display: flex;
    flex-direction: column;
}

.step-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    border-bottom: 1px solid #f0f0f5;
}

.step-row--last {
    border-bottom: none;
}

/* ── Each side ── */
.step-side {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 20px 0;
}

.step-side--trad {
    padding-right: 12px;
}

.step-side--sc {
    padding-left: 12px;
    border-left: 1px solid #f0f0f5;
}

/* ── Bubble ── */
.step-bubble {
    flex-shrink: 0;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.04em;
    font-family: 'Inter', sans-serif;
}

.step-bubble--trad {
    background: #f5f5f7;
    color: #888;
    border: 1px solid #e5e5ea;
}

.step-bubble--sc {
    background: #eef2ff;
    color: #3730a3;
    border: 1px solid #c7d2fe;
}

/* ── Content ── */
.step-content {
    flex: 1;
    padding-top: 2px;
    min-width: 0;
}

.step-title {
    font-size: 12px;
    font-weight: 600;
    color: #1d1d1f;
    margin: 0 0 4px;
    font-family: 'Inter', sans-serif;
}

.step-title--sc {
    color: #1d1d1f;
}

.step-text {
    font-size: 12px;
    color: #6e6e73;
    margin: 0;
    line-height: 1.55;
    font-family: 'Inter', sans-serif;
}

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

    #process {
        padding: 48px 12px;
    }

    .process-cols-header {
        gap: 6px;
        margin-bottom: 20px;
        padding-bottom: 16px;
    }

    .col-header-main {
        font-size: 15px;
    }

    .col-header--sc img {
        height: 20px;
    }

    .col-header--sc {
        padding-left: 8px;
    }

    .step-row {
        gap: 6px;
    }

    .step-side {
        gap: 6px;
        padding: 14px 0;
    }

    .step-side--trad {
        padding-right: 6px;
    }

    .step-side--sc {
        padding-left: 8px;
    }

    .step-bubble {
        width: 22px;
        height: 22px;
        font-size: 9px;
        flex-shrink: 0;
    }

    .step-title {
        font-size: 10px;
        margin-bottom: 3px;
    }

    .step-text {
        font-size: 10px;
        line-height: 1.5;
    }
}


/*****************************/

#hidden-costs {
    padding: 80px 24px;
    background: #ffffff;
    font-family: 'Inter', sans-serif;
}

.hc-container {
    max-width: 860px;
    margin: 0 auto;
}

/* ── Header ── */
.hc-header {
    text-align: center;
    margin-bottom: 52px;
}

.hc-label {
    display: block;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #888;
    margin-bottom: 12px;
    font-family: 'Inter', sans-serif;
}

.hc-title {
    font-size: clamp(2rem, 5vw, 2.75rem);
    font-weight: 700;
    color: #1d1d1f;
    margin: 0 0 14px;
    letter-spacing: -0.03em;
    line-height: 1.08;
    font-family: 'Inter', sans-serif;
}

.hc-subtitle {
    font-size: 15px;
    color: #6e6e73;
    margin: 0 auto;
    max-width: 520px;
    line-height: 1.65;
    font-family: 'Inter', sans-serif;
}

/* ── List ── */
.hc-list {
    display: flex;
    flex-direction: column;
    gap: 0;
    border: 1px solid rgba(0, 0, 0, 0.09);
    border-radius: 12px;
    overflow: hidden;
}

/* ── Item ── */
.hc-item {
    display: grid;
    grid-template-columns: 1fr 220px 220px;
    gap: 0;
    padding: 24px 28px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.07);
    background: #ffffff;
    align-items: center;
}

.hc-item:last-child {
    border-bottom: none;
}

/* ── Description ── */
.hc-desc {
    padding-right: 24px;
}

.hc-item-title {
    font-size: 14px;
    font-weight: 600;
    color: #1d1d1f;
    margin: 0 0 6px;
    font-family: 'Inter', sans-serif;
}

.hc-item-text {
    font-size: 12px;
    color: #6e6e73;
    margin: 0;
    line-height: 1.6;
    font-family: 'Inter', sans-serif;
}

/* ── Columns ── */
.hc-col {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 5px;
    padding: 0 16px;
}

.hc-col:nth-child(2) {
    border-left: 1px solid rgba(0, 0, 0, 0.07);
}

.hc-col:nth-child(3) {
    border-left: 1px solid rgba(0, 0, 0, 0.07);
}

/* ── Column labels ── */
.hc-col-label {
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    font-family: 'Inter', sans-serif;
}

.hc-col-label--trad {
    color: #ff453a;
}

.hc-sc-logo {
    height: 16px;
    width: auto;
    display: block;
}

/* ── Column values ── */
.hc-col-value {
    font-size: 14px;
    font-weight: 600;
    font-family: 'Inter', sans-serif;
    line-height: 1.4;
}

.hc-col-value--trad {
    color: #1d1d1f;
}

.hc-col-value--trad small {
    display: block;
    font-size: 11px;
    font-weight: 400;
    color: #6e6e73;
}

.hc-col-value--sc {
    color: #15803d;
    font-weight: 700;
}

/* ── Total banner ── */
.hc-total {
    margin-top: 20px;
    background: #1A1A2E;
    border-radius: 14px;
    padding: 36px 40px;
    text-align: center;
}

.hc-total-label {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: #ffffff;
    margin: 0 0 24px;
    font-family: 'Inter', sans-serif;
}

.hc-total-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    max-width: 360px;
    margin: 0 auto 16px;
}

.hc-total-col {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
}

.hc-total-value {
    font-size: 2.2rem;
    font-weight: 700;
    margin: 0;
    letter-spacing: -0.03em;
    font-family: 'Inter', sans-serif;
}

.hc-total-value--trad {
    color: #ff453a;
}

.hc-total-value--sc {
    color: #ffffff;
}

.hc-total-sub {
    font-size: 12px;
    color: #6e6e73;
    margin: 0;
    font-family: 'Inter', sans-serif;
}

.hc-total-note {
    font-size: 13px;
    color: #6e6e73;
    margin: 0;
    font-family: 'Inter', sans-serif;
}

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

    #hidden-costs {
        padding: 48px 12px;
    }

    .hc-item {
        grid-template-columns: 1fr;
        gap: 0;
        padding: 16px 14px;
    }

    .hc-desc {
        padding-right: 0;
        margin-bottom: 12px;
    }

    .hc-item-title {
        font-size: 12px;
    }

    .hc-item-text {
        font-size: 11px;
    }

    /* As duas colunas de valor lado a lado */
    .hc-cols-wrap {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 0;
        border-top: 1px solid rgba(0, 0, 0, 0.07);
        margin-top: 4px;
    }

    .hc-col {
        padding: 10px 10px;
        border-left: none;
        flex-direction: column;
        align-items: flex-start;
        gap: 4px;
    }

    .hc-col:nth-child(2) {
        border-left: 1px solid rgba(0, 0, 0, 0.07);
    }

    .hc-col:nth-child(3) {
        border-left: 1px solid rgba(0, 0, 0, 0.07);
    }

    .hc-col-label {
        font-size: 9px;
    }

    .hc-col-value {
        font-size: 12px;
    }

    .hc-col-value--trad small {
        font-size: 10px;
    }

    .hc-sc-logo {
        height: 13px;
    }

    .hc-total {
        padding: 24px 20px;
    }

    .hc-total-grid {
        max-width: 100%;
        gap: 16px;
    }

    .hc-total-value {
        font-size: 1.6rem;
    }

    .hc-total-sub {
        font-size: 11px;
    }

    .hc-total-note {
        font-size: 11px;
    }
}



/************************************************/
#flexibility {
    padding: 80px 24px;
    background: #ffffff;
    font-family: 'Inter', sans-serif;
}

.wlh-container {
    max-width: 860px;
    margin: 0 auto;
}

.wlh-header {
    text-align: center;
    margin-bottom: 52px;
}

.wlh-label {
    display: block;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #888;
    margin-bottom: 12px;
    font-family: 'Inter', sans-serif;
}

.wlh-title {
    font-size: clamp(2rem, 5vw, 2.75rem);
    font-weight: 700;
    color: #1d1d1f;
    margin: 0 0 14px;
    letter-spacing: -0.03em;
    line-height: 1.08;
    font-family: 'Inter', sans-serif;
}

.wlh-subtitle {
    font-size: 15px;
    color: #6e6e73;
    margin: 0 auto;
    max-width: 500px;
    line-height: 1.65;
    font-family: 'Inter', sans-serif;
}

.wlh-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.wlh-item {
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    overflow: hidden;
}

.wlh-item-header {
    background: #ffffff;
    padding: 12px 20px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.wlh-item-title {
    font-size: 13px;
    font-weight: 600;
    color: #1d1d1f;
    font-family: 'Inter', sans-serif;
}

.wlh-item-body {
    display: grid;
    grid-template-columns: 1fr 1fr;
}

.wlh-col {
    padding: 16px 20px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.wlh-col--trad {
    background: #fafafa;
    border-right: 1px solid rgba(0, 0, 0, 0.08);
}

.wlh-col--sc {
    background: #f0f0fa;
}

.wlh-col-label {
    font-size: 11px;
    font-weight: 500;
    color: #aaa;
    font-family: 'Inter', sans-serif;
    letter-spacing: 0.02em;
}

.wlh-sc-icon {
    display: flex;
    align-items: center;
}

.wlh-sc-logo {
    height: 14px;
    width: auto;
    display: block;
}

.wlh-col-text {
    font-size: 13px;
    color: #444;
    margin: 0;
    line-height: 1.6;
    font-family: 'Inter', sans-serif;
}

.wlh-col--trad .wlh-col-text {
    color: #6e6e73;
}

.wlh-col--sc .wlh-col-text {
    color: #1d1d1f;
}

/* ── Responsive: mantém 2 colunas ── */
@media (max-width: 600px) {

    #flexibility {
        padding: 48px 12px;
    }

    .wlh-item-header {
        padding: 10px 14px;
    }

    .wlh-item-title {
        font-size: 11px;
    }

    .wlh-item-body {
        grid-template-columns: 1fr 1fr;
    }

    .wlh-col {
        padding: 10px 10px;
        gap: 6px;
    }

    .wlh-col--trad {
        border-right: 1px solid rgba(0, 0, 0, 0.08);
    }

    .wlh-col-label {
        font-size: 9px;
    }

    .wlh-sc-logo {
        height: 11px;
    }

    .wlh-col-text {
        font-size: 10px;
        line-height: 1.5;
    }
}

/************************************************/
#psychology {
    padding: 80px 24px;
    background: #1A1A2E;
    font-family: 'Inter', sans-serif;
}

.pt-container {
    max-width: 760px;
    margin: 0 auto;
}

/* ── Header ── */
.pt-header {
    text-align: center;
    margin-bottom: 52px;
}

.pt-label {
    display: block;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #ffffff;
    margin-bottom: 12px;
    font-family: 'Inter', sans-serif;
}

.pt-title {
    font-size: clamp(2rem, 5vw, 2.75rem);
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 14px;
    letter-spacing: -0.03em;
    line-height: 1.08;
    font-family: 'Inter', sans-serif;
}

.pt-subtitle {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.65);
    margin: 0 auto;
    max-width: 580px;
    line-height: 1.65;
    font-family: 'Inter', sans-serif;
}

/* ── List ── */
.pt-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

/* ── Item ── */
.pt-item {
    background: #1A1A2E;
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.06);
}

/* ── Button ── */
.pt-btn {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 24px;
    text-align: left;
    background: none;
    border: none;
    cursor: pointer;
    gap: 12px;
}

.pt-btn-left {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    flex: 1;
}

.pt-cross {
    color: #ff453a;
    font-size: 13px;
    flex-shrink: 0;
    margin-top: 2px;
    font-family: 'Inter', sans-serif;
}

.pt-myth {
    font-size: 15px;
    font-weight: 500;
    color: #ffffff;
    font-family: 'Inter', sans-serif;
    line-height: 1.4;
}

.pt-icon {
    font-size: 22px;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.5);
    flex-shrink: 0;
    transition: transform 0.25s ease, color 0.2s ease;
    font-family: 'Inter', sans-serif;
    line-height: 1;
}

/* ── Answer ── */
.pt-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease, padding 0.25s ease;
    padding: 0 24px 0 49px;
}

.pt-answer p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.65);
    line-height: 1.7;
    margin: 0 0 20px;
    font-family: 'Inter', sans-serif;
}

/* ── Open state ── */
.pt-item.is-open .pt-icon {
    transform: rotate(45deg);
    color: #ffffff;
}

.pt-item.is-open .pt-answer {
    max-height: 300px;
    padding-top: 4px;
}



/******************************/

#history {
    padding: 80px 24px;
    background: #ffffff;
    font-family: 'Inter', sans-serif;
}

.hist-container {
    max-width: 900px;
    margin: 0 auto;
}

/* ── Header ── */
.hist-header {
    text-align: center;
    margin-bottom: 52px;
}

.hist-label {
    display: block;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #888;
    margin-bottom: 12px;
    font-family: 'Inter', sans-serif;
}

.hist-title {
    font-size: clamp(1.8rem, 4vw, 2.6rem);
    font-weight: 700;
    color: #1d1d1f;
    margin: 0 0 14px;
    letter-spacing: -0.03em;
    line-height: 1.08;
    font-family: 'Inter', sans-serif;
}

.hist-subtitle {
    font-size: 15px;
    color: #6e6e73;
    margin: 0 auto;
    max-width: 620px;
    line-height: 1.65;
    font-family: 'Inter', sans-serif;
}

/* ── Table wrapper ── */
.hist-table-wrapper {
    overflow-x: auto;
    border-radius: 12px;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.07);
}

/* ── Table ── */
.hist-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    font-size: 13px;
    min-width: 700px;
    font-family: 'Inter', sans-serif;
}

/* ── TH ── */
.hist-th {
    background: #111111;
    color: #ffffff;
    text-align: left;
    padding: 16px 16px;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    font-family: 'Inter', sans-serif;
    white-space: nowrap;
}

.hist-th:first-child {
    border-radius: 12px 0 0 0;
}

.hist-th--last {
    border-radius: 0 12px 0 0;
}

/* ── TR ── */
.hist-tr {
    background: #ffffff;
}

.hist-tr--alt {
    background: #fafafa;
}

/* ── TD ── */
.hist-td {
    padding: 14px 16px;
    border-bottom: 1px solid #e5e5ea;
    color: #6e6e73;
    vertical-align: top;
    line-height: 1.55;
    font-family: 'Inter', sans-serif;
}

.hist-tr:last-child .hist-td {
    border-bottom: none;
}

.hist-tr:last-child .hist-td:first-child {
    border-radius: 0 0 0 12px;
}

.hist-td--last-row {
    border-radius: 0 0 12px 0;
}

.hist-td--country {
    font-weight: 600;
    color: #1d1d1f;
    white-space: nowrap;
}

.hist-td--name {
    font-style: italic;
    white-space: nowrap;
}

.hist-td--users {
    font-weight: 500;
    color: #1d1d1f;
    white-space: nowrap;
}

/* ── Responsive ── */
@media (max-width: 600px) {
    .hist-table-wrapper {
        border-radius: 8px;
    }

    .hist-td,
    .hist-th {
        padding: 12px 12px;
    }
}


/***********************************/


#hypocrisy {
    padding: 80px 24px;
    background: #1A1A2E;
    font-family: 'Inter', sans-serif;
}

.hyp-container {
    max-width: 900px;
    margin: 0 auto;
}

/* ── Header ── */
.hyp-header {
    text-align: center;
    margin-bottom: 52px;
}

.hyp-label {
    display: block;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #ffffff;
    margin-bottom: 12px;
    font-family: 'Inter', sans-serif;
}

.hyp-title {
    font-size: clamp(2rem, 5vw, 2.75rem);
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 14px;
    letter-spacing: -0.03em;
    line-height: 1.08;
    font-family: 'Inter', sans-serif;
}

.hyp-subtitle {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.65);
    margin: 0 auto;
    max-width: 680px;
    line-height: 1.65;
    font-family: 'Inter', sans-serif;
}

/* ── List ── */
.hyp-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

/* ── Card ── */
.hyp-card {
    background: #1A1A2E;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.06);
    padding: 20px 24px;
    display: grid;
    grid-template-columns: 160px 1fr 1fr;
    gap: 24px;
    align-items: start;
}

/* ── Brand ── */
.hyp-brand {
    display: flex;
    align-items: flex-start;
    padding-top: 2px;
}

.hyp-brand-name {
    font-size: 16px;
    font-weight: 700;
    color: #ffffff;
    margin: 0;
    font-family: 'Inter', sans-serif;
}

/* ── Columns ── */
.hyp-col {
    display: flex;
    flex-direction: column;
    gap: 6px;
    padding-left: 20px;
    border-left: 1px solid rgba(255, 255, 255, 0.07);
}

/* ── Labels ── */
.hyp-col-label {
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    font-family: 'Inter', sans-serif;
    display: block;
}

.hyp-col-label--latam {
    color: #ffffff;
}

.hyp-col-label--us {
    color: #ff453a;
}

/* ── Text ── */
.hyp-col-text {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
    line-height: 1.6;
    font-family: 'Inter', sans-serif;
}

/* ── Banner ── */
.hyp-banner {
    margin-top: 40px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 14px;
    padding: 40px 48px;
    text-align: center;
    background: rgba(255, 255, 255, 0.03);
}

.hyp-banner-text {
    font-size: 17px;
    font-weight: 500;
    color: #ffffff;
    line-height: 1.6;
    margin: 0 auto 16px;
    max-width: 680px;
    font-family: 'Inter', sans-serif;
}

.hyp-banner-cta {
    font-size: 20px;
    font-weight: 700;
    color: #ffffff;
    margin: 0;
    letter-spacing: -0.02em;
    font-family: 'Inter', sans-serif;
}

/* ── Responsive ── */
@media (max-width: 680px) {
    .hyp-card {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .hyp-col {
        padding-left: 0;
        border-left: none;
        border-top: 1px solid rgba(255, 255, 255, 0.07);
        padding-top: 14px;
    }

    .hyp-banner {
        padding: 28px 24px;
    }

    .hyp-banner-text {
        font-size: 15px;
    }

    .hyp-banner-cta {
        font-size: 17px;
    }
}



/***********************************************/

#verdict {
    padding: 80px 24px;
    background: #eeeef4;
    font-family: 'Inter', sans-serif;
}

.vrd-container {
    max-width: 960px;
    margin: 0 auto;
}

/* ── Header ── */
.vrd-header {
    text-align: center;
    margin-bottom: 52px;
}

.vrd-label {
    display: block;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #666;
    margin-bottom: 12px;
    font-family: 'Inter', sans-serif;
}

.vrd-title {
    font-size: clamp(2rem, 5vw, 2.75rem);
    font-weight: 800;
    color: #1d1d2e;
    margin: 0 0 14px;
    letter-spacing: -0.03em;
    line-height: 1.08;
    font-family: 'Inter', sans-serif;
}

.vrd-subtitle {
    font-size: 15px;
    color: #6e6e7a;
    margin: 0 auto;
    max-width: 480px;
    line-height: 1.65;
    font-family: 'Inter', sans-serif;
}

/* ── Grid ── */
.vrd-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
}

/* ── Card ── */
.vrd-card {
    background: #ffffff;
    border-radius: 14px;
    padding: 20px 20px 18px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.05);
}

/* ── Feature cards ── */
.vrd-card--feature {
    background: #2d2d6b;
    border-radius: 14px;
    padding: 32px 28px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 16px;
}

.vrd-card--feature-light {
    background: #f5f5fb;
    border: 2px solid #e0e0f0;
}

.vrd-feature-text {
    font-size: 15px;
    font-weight: 600;
    color: #ffffff;
    line-height: 1.6;
    margin: 0;
    font-family: 'Inter', sans-serif;
}

.vrd-feature-text--dark {
    color: #1d1d2e;
    font-size: 16px;
    font-weight: 700;
}

.vrd-feature-logo-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 4px;
}

.vrd-feature-logo {
    height: 28px;
    width: auto;
}

/* ── Card title ── */
.vrd-card-title {
    font-size: 14px;
    font-weight: 700;
    color: #1d1d2e;
    margin: 0;
    font-family: 'Inter', sans-serif;
    display: flex;
    align-items: center;
    gap: 6px;
}

.vrd-icon {
    font-size: 13px;
    opacity: 0.7;
}

/* ── Card text ── */
.vrd-card-text {
    font-size: 12px;
    color: #6e6e7a;
    margin: 0 0 4px;
    line-height: 1.55;
    font-family: 'Inter', sans-serif;
}

/* ── Score row ── */
.vrd-score {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-top: 4px;
}

.vrd-score-badge {
    width: 18px;
    height: 18px;
    background: #2d2d6b;
    border-radius: 4px;
    color: #ffffff;
    font-size: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-family: 'Inter', sans-serif;
}

.vrd-score-num {
    font-size: 12px;
    font-weight: 600;
    color: #1d1d2e;
    font-family: 'Inter', sans-serif;
}

.vrd-score-num--trad {
    color: #888;
    font-weight: 500;
}

/* ── Bars ── */
.vrd-bar-wrap {
    height: 7px;
    background: #e8e8f0;
    border-radius: 999px;
    overflow: hidden;
    margin-bottom: 4px;
}

.vrd-bar-wrap--trad {
    margin-bottom: 0;
}

.vrd-bar {
    height: 100%;
    border-radius: 999px;
    transition: width 0.7s ease;
}

.vrd-bar--sc {
    background: #2d2d6b;
}

.vrd-bar--trad {
    background: #c8c8d8;
}

/* ── Final Score ── */
.vrd-final {
    margin-top: 28px;
    background: #1A1A2E;
    border-radius: 16px;
    padding: 48px 40px;
    text-align: center;
}

.vrd-final-label {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: #ffffff;
    margin: 0 0 28px;
    font-family: 'Inter', sans-serif;
}

.vrd-final-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    max-width: 320px;
    margin: 0 auto 24px;
}

.vrd-final-col {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
}

.vrd-final-num {
    font-size: 3rem;
    font-weight: 800;
    line-height: 1;
    margin: 0;
    font-family: 'Inter', sans-serif;
    letter-spacing: -0.04em;
}

.vrd-final-num--trad {
    color: #ff453a;
}

.vrd-final-num--sc {
    color: #ffffff;
}

.vrd-final-sub {
    font-size: 13px;
    color: #aaa;
    margin: 4px 0 0;
    font-family: 'Inter', sans-serif;
}

.vrd-final-out {
    font-size: 11px;
    color: #666;
    margin: 0;
    font-family: 'Inter', sans-serif;
}

.vrd-final-text {
    font-size: 16px;
    font-weight: 500;
    color: #ffffff;
    line-height: 1.6;
    margin: 0 auto;
    max-width: 680px;
    font-family: 'Inter', sans-serif;
}

/* ── Responsive ── */
@media (max-width: 720px) {
    .vrd-grid {
        grid-template-columns: 1fr 1fr;
    }

    .vrd-card--feature {
        grid-column: 1 / -1;
    }
}

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

    .vrd-final {
        padding: 32px 24px;
    }

    .vrd-final-num {
        font-size: 2.4rem;
    }
}



/* ════════════════════════════
   CTA SECTION
════════════════════════════ */
#cta-final {
    padding: 80px 24px;
    background: #1A1A2E;
    font-family: 'Inter', sans-serif;
    text-align: center;
}

.cta-container {
    max-width: 680px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
}

.cta-title {
    font-size: clamp(1.8rem, 4vw, 2.6rem);
    font-weight: 800;
    color: #ffffff;
    margin: 0 0 20px;
    letter-spacing: -0.03em;
    line-height: 1.1;
    font-family: 'Inter', sans-serif;
}

.cta-text {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.65);
    line-height: 1.7;
    margin: 0 0 16px;
    font-family: 'Inter', sans-serif;
}

.cta-sub {
    font-size: 15px;
    font-weight: 500;
    color: #ffffff;
    margin: 0 0 36px;
    font-family: 'Inter', sans-serif;
}

/* ── Form ── */
.cta-form-wrap {
    width: 100%;
    max-width: 460px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
}

.cta-form {
    display: flex;
    align-items: center;
    gap: 8px;
    width: 100%;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 999px;
    padding: 6px 6px 6px 20px;
}

.cta-input {
    flex: 1;
    min-width: 0;
    background: transparent;
    border: none;
    outline: none;
    font-size: 15px;
    color: #ffffff;
    font-family: 'Inter', sans-serif;
    padding: 10px 0;
}

.cta-input::placeholder {
    color: rgba(255, 255, 255, 0.45);
}

.cta-btn {
    flex-shrink: 0;
    background: #ffffff;
    color: #111111;
    border: none;
    border-radius: 999px;
    padding: 12px 22px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    font-family: 'Inter', sans-serif;
    transition: background 0.2s ease;
    white-space: nowrap;
}

.cta-btn:hover {
    background: rgba(255, 255, 255, 0.88);
}

/* ── Link ── */
.cta-link-wrap {
    margin-top: 16px;
}

.cta-link {
    font-size: 13px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.45);
    text-decoration: none;
    font-family: 'Inter', sans-serif;
    transition: color 0.2s ease;
}

.cta-link:hover {
    color: #ffffff;
}

/* ── Badge ── */
.cta-badge-wrap {
    margin-top: 16px;
}

.cta-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 999px;
    padding: 5px 12px;
    font-family: 'Inter', sans-serif;
}

.cta-badge svg {
    color: #ffffff;
    flex-shrink: 0;
}

/* ════════════════════════════
   DISCLAIMER SECTION
════════════════════════════ */
#disclaimer {
    padding: 32px 24px;
    background: #ffffff;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
    font-family: 'Inter', sans-serif;
}

.disc-container {
    max-width: 860px;
    margin: 0 auto;
}

.disc-text {
    font-size: 11px;
    color: #888;
    line-height: 1.75;
    text-align: center;
    margin: 0;
    font-family: 'Inter', sans-serif;
}

/* ── Responsive ── */
@media (max-width: 480px) {
    .cta-form {
        flex-direction: column;
        border-radius: 14px;
        padding: 12px 16px;
        gap: 10px;
    }

    .cta-input {
        width: 100%;
        text-align: center;
    }

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