/* ══════════════════════════════════════
   CONNECT — Pricing (ToDesktop pixel-perfect)
   ══════════════════════════════════════ */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    -ms-overflow-style: none;
    /* Internet Explorer 10+ */
    scrollbar-width: none;
    /* Firefox */
}


:root {
    --blue: #3f51b5;
    --blue-light: #5c6bc0;
    --blue-dim: rgba(63, 81, 181, 0.08);
    --text: #0f1117;
    --text2: #1a1d2e;
    --muted: #6b7280;
    --subtle: #9ca3af;
    --border: #e5e7eb;
    --surface: #f7f8fc;
    --dark: #18191f;
    --dark2: #0f1117;
    --white: #ffffff;
    --green: #16a34a;
    --green-bg: #dcfce7;
    --bg: #f8f9fc;
    --surface: #ffffff;
    --surface2: #f1f3f9;
    --border: #e5e7eb;
    --text: #1a1d2e;
    --muted: #6b7280;
    --accent: #3f51b5;
    --accent-light: rgba(63, 81, 181, 0.08);
    --accent-mid: rgba(63, 81, 181, 0.15);
    --linux: #f59e0b;
    --windows: #0078d4;
    --mac: #6b7280;
    --green: #10b981;
    --radius: 16px;
    --blue: #3f51b5;
    --blue-light: #5c6bc0;
    --blue-dark: #283593;
}

body {
    font-family: "DM Sans", sans-serif;
    background: var(--bg);
    color: var(--text);
}

.pricing-section {
    padding: 0px 20px !important;
    max-width: 1060px;
    margin: 0 auto;
}

/* ── Toggle ── */
.pricing-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2px;
    background: #f1f3f9;
    border-radius: 99px;
    padding: 4px;
    width: fit-content;
    margin: 0 auto 48px;
    border: 1px solid rgba(63, 81, 181, 0.1);
}

.toggle-btn {
    background: none;
    border: none;
    cursor: pointer;
    font-family: "DM Sans", sans-serif;
    font-size: 0.88rem;
    font-weight: 500;
    color: #6b7280;
    padding: 7px 20px;
    border-radius: 99px;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: all 0.18s;
}

.toggle-btn.active {
    background: white;
    color: #1a1d2e;
    font-weight: 600;
    box-shadow: 0 1px 6px rgba(0, 0, 0, 0.1);
}

.save-badge {
    background: #dcfce7;
    color: #16a34a;
    font-size: 0.7rem;
    font-weight: 700;
    padding: 2px 7px;
    border-radius: 99px;
}

/* ══════════════════
   3-card grid
   ══════════════════ */
.pricing-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 15px;
    align-items: start;
    margin-bottom: 36px;
}

/* ── Card base ── */
.pricing-card {
    background: white;
    border: 1px solid #e5e7eb;
    display: flex;
    flex-direction: column;
    height: 580px;
    max-height: 600px;
}

/* Rounded corners only on outer cards */
.pricing-card:first-child {
    border-radius: 14px;
}

.pricing-card:last-child {
    border-radius: 14px;
}

/* ── Two-zone layout: top (name+desc) / bottom (price, features) ── */
.pc-top {
    padding: 20px 24px 24px;
    border-bottom: 1px solid #e5e7eb;
    min-height: 110px;
}

.pc-bottom {
    padding: 24px 24px 28px;
}

/* ── Featured (middle) dark card ── */
.pricing-card-featured {
    background: #18191f;
    border: none;
    border-radius: 14px !important;
}

.pricing-card-featured .pc-top {
    border: none;
    border-radius: 10px;
    margin: 5px;
    background-color: rgba(47, 47, 47, 0.65);
}

.pricing-card-featured .pc-name {
    color: #ffffff;
}

.pricing-card-featured .pc-desc {
    color: rgba(255, 255, 255, 0.5);
}

.pricing-card-featured .pc-amount {
    color: #ffffff;
}

.pricing-card-featured .pc-period {
    color: rgba(255, 255, 255, 0.4);
}

.pricing-card-featured .pc-section-label {
    color: rgba(255, 255, 255, 0.3);
}

.pricing-card-featured .pc-features li {
    color: rgba(255, 255, 255, 0.85);
}

.pricing-card-featured .pc-feat-icon {
    color: rgba(255, 255, 255, 0.45);
}

/* ── Plan name & desc ── */
.pc-name {
    font-family: "Sora", sans-serif;
    font-size: 1.25rem;
    font-weight: 700;
    color: #1a1d2e;
}

.pc-desc {
    font-size: 0.9rem;
    color: #6b7280;
    line-height: 1.5;
}

/* ── Price ── */
.pc-price {
    display: flex;
    align-items: baseline;
    gap: 5px;
    margin-bottom: 16px;
}

.pc-amount {
    font-family: "Sora", sans-serif;
    font-size: 3rem;
    font-weight: 800;
    color: #1a1d2e;
    line-height: 1;
    letter-spacing: -0.02em;
    transition: all 0.22s;
}

.pc-period {
    font-size: 0.85rem;
    color: #9ca3af;
    font-weight: 500;
}

/* ── Buttons ── */
.pc-btn {
    display: block;
    text-align: center;
    font-family: "DM Sans", sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    padding: 11px 18px;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.18s;
    margin-bottom: 20px;
    cursor: pointer;
    border: none;
}

.pc-btn-outline {
    background: white;
    color: #1a1d2e;
    border: 1.5px solid #d1d5db;
}

.pc-btn-outline:hover {
    border-color: #3f51b5;
    color: #3f51b5;
}

.pc-btn-blue {
    background: #3f51b5;
    color: white;
    border-radius: 99px;
}

.pc-btn-blue:hover {
    background: #5c6bc0;
}

.pc-btn-dark {
    background: #18191f;
    color: white;
    border-radius: 99px;
    padding: 11px 28px;
    display: inline-block;
    font-size: 0.9rem;
    font-weight: 600;
    text-decoration: none;
    transition: background 0.2s;
    margin-top: 12px;
}

.pc-btn-dark:hover {
    background: #2d3045;
}

/* ── Section label above features ── */
.pc-section-label {
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.09em;
    text-transform: uppercase;
    color: #9ca3af;
    margin-bottom: 14px;
}

/* ── Feature list ── */
.pc-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 11px;
}

.pc-features li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.9rem;
    color: #374151;
    line-height: 1.4;
}

.pc-features strong {
    font-weight: 700;
    color: inherit;
}

/* ── Feature icons — small square SVG icons, each unique ── */
.pc-feat-icon {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    color: #9ca3af;
    margin-top: 0px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.pc-feat-icon svg {
    width: 15px;
    height: 15px;
}

.pc-feat-icon.sm svg {
    width: 14px;
    height: 14px;
}

/* ══════════════════
    Enterprise banner
   ══════════════════ */
.pricing-enterprise {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 0;
    background: white;
    border: 1px solid #e5e7eb;
    border-radius: 14px;
    overflow: hidden;
    margin-top: 8px;
}

.pe-left {
    padding: 28px 32px;
    border-right: 1px solid #e5e7eb;
    min-width: 220px;
}

.pe-left h3 {
    font-family: "Sora", sans-serif;
    font-size: 1.25rem;
    font-weight: 700;
    color: #1a1d2e;
    margin-bottom: 4px;
}

.pe-left p {
    font-size: 0.9rem;
    color: #6b7280;
    margin-bottom: 0;
    line-height: 1.5;
}

.pe-features {
    padding: 20px 28px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px 32px;
    align-content: center;
}

.pe-feat {
    display: flex;
    align-items: center;
    gap: 9px;
    font-size: 0.9rem;
    color: #6b7280;
}

.pe-feat strong {
    color: #1a1d2e;
    font-weight: 700;
}

/* ── Credits Section ── */
.pricing-credits {
    margin-top: 36px;
    margin-bottom: 40px;
}

.pc-credits-header {
    text-align: center;
    margin-bottom: 24px;
}

.pc-credits-title {
    font-family: "Sora", sans-serif;
    font-size: 1.25rem;
    font-weight: 700;
    color: #1a1d2e;
    margin-bottom: 4px;
}

.pc-credits-sub {
    font-size: 0.9rem;
    margin-bottom: 40px;
    color: #6b7280;
}

.pc-credits-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
}

.pc-credit-card {
    position: relative;
    background: white;
    border: 1px solid #e5e7eb;
    border-radius: 14px;
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    transition: border-color 0.18s;
}

.pc-credit-card:hover {
    border-color: #3f51b5;
}

.pc-credit-card-featured {
    border-color: #3f51b5;
    background: rgba(63, 81, 181, 0.04);
}

.pc-credit-badge {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    background: #3f51b5;
    color: #fff;
    font-size: 0.65rem;
    font-weight: 700;
    padding: 2px 10px;
    border-radius: 99px;
    white-space: nowrap;
    letter-spacing: 0.09em;
    text-transform: uppercase;
}

.pc-credit-top {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
}

.pc-credit-label {
    font-family: "Sora", sans-serif;
    font-size: 1rem;
    font-weight: 700;
    color: #1a1d2e;
}

.pc-credit-amount {
    font-family: "Sora", sans-serif;
    font-size: 1.6rem;
    font-weight: 800;
    color: #1a1d2e;
    letter-spacing: -0.02em;
}

.pc-credit-credits {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.85rem;
    color: #374151;
}

.pc-credit-credits strong {
    font-weight: 700;
    color: #1a1d2e;
}

.pc-credit-credits svg {
    color: #9ca3af;
}

.pc-credit-meta {
    font-size: 0.78rem;
    color: #9ca3af;
}

.pc-btn-sm {
    padding: 9px 16px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 0;
    margin-top: 4px;
}

/* ── HERO ── */
.pricing-hero {
    padding: 100px 40px 0px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--accent-light);
    border: 1px solid var(--accent-mid);
    color: var(--accent);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    padding: 0px 14px;
    border-radius: 99px;
    margin-bottom: 0px;
    height: 30px;
}

.pricing-hero h1 {
    font-family: 'Sora', sans-serif;
    font-size: clamp(2rem, 4.5vw, 3rem);
    font-weight: 800;
    line-height: 1.1;
    margin: 25px 0 20px;
    letter-spacing: -0.02em;
}

.pricing-hero h1 em {
    font-style: normal;
    color: var(--accent);
}

.pricing-hero p {
    font-size: clamp(1rem, 1.4vw, 1.4rem);
    color: var(--muted);
    max-width: 520px;
    margin: 0 auto 20px;
    font-weight: 300;
}

/* ── WRAP ── */
.pricing-wrap {
    max-width: 1080px;
    margin: 0 auto;
    padding: 0 24px 80px;
}

/* ── TOGGLE ── */
.toggle-wrap {
    display: flex;
    justify-content: center;
    padding: 36px 0 40px;
}

.toggle-pill {
    display: flex;
    align-items: center;
    gap: 2px;
    background: #f1f3f9;;
    border: 1px solid var(--border);
    border-radius: 99px;
    padding: 4px;
}

.toggle-btn {
    background: none;
    border: none;
    cursor: pointer;
    font-family: "DM Sans", sans-serif;
    font-size: 0.88rem;
    font-weight: 500;
    color: var(--muted);
    padding: 8px 22px;
    border-radius: 99px;
    display: flex;
    align-items: center;
    gap: 7px;
    transition: all 0.18s;
}

.toggle-btn.active {
    background: white;
    color: var(--text2);
    font-weight: 700;
    box-shadow: 0 1px 6px rgba(0, 0, 0, 0.1);
}

.save-badge {
    background: var(--green-bg);
    color: var(--green);
    font-size: 0.68rem;
    font-weight: 700;
    padding: 2px 7px;
    border-radius: 99px;
}

/* ══ PLANS GRID ══ */
.plans-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 16px;
    margin-bottom: 20px;
    align-items: start;
}

.plan-card {
    background: white;
    border: 1px solid var(--border);
    border-radius: 16px;
    display: flex;
    height: 580px;
    flex-direction: column;
    overflow: hidden;
    transition:
        border-color 0.2s,
        box-shadow 0.2s;
}

.plan-card:hover {
    border-color: #c5cae9;
    box-shadow: 0 4px 24px rgba(63, 81, 181, 0.07);
}

.plan-card-featured {
    background: var(--dark);
    border: none;
}

/* top zone */
.plan-top {
    padding: 22px 24px 20px;
}

.plan-card-featured .plan-top {
    background: rgba(255, 255, 255, 0.04);
    margin: 6px;
    border-radius: 10px;
    padding: 18px 20px;
}

.plan-name {
    font-family: "Sora", sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text2);
    margin-bottom: 4px;
}

.plan-desc {
    font-size: 0.95rem;
    color: var(--muted);
    line-height: 1.5;
}

.plan-card-featured .plan-name {
    color: white;
}

.plan-card-featured .plan-desc {
    color: rgba(255, 255, 255, 0.45);
}

/* bottom zone */
.plan-bottom {
    padding: 22px 24px 26px;
    flex: 1;
}

.plan-price {
    display: flex;
    align-items: baseline;
    gap: 5px;
    margin-bottom: 16px;
}

.plan-amount {
    font-family: "Sora", sans-serif;
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--text2);
    line-height: 1;
    letter-spacing: -0.03em;
    transition: all 0.2s;
}

.plan-period {
    font-size: 0.82rem;
    color: var(--subtle);
    font-weight: 500;
}

.plan-card-featured .plan-amount {
    color: white;
}

.plan-card-featured .plan-period {
    color: rgba(255, 255, 255, 0.35);
}

/* cta buttons */
.plan-cta {
    display: block;
    text-align: center;
    text-decoration: none;
    font-family: "DM Sans", sans-serif;
    font-size: 1rem;
    font-weight: 700;
    padding: 12px 20px;
    border-radius: 9px;
    border: none;
    cursor: pointer;
    margin-bottom: 20px;
    transition: all 0.18s;
}

.cta-outline {
    background: white;
    color: var(--text2);
    border: 1.5px solid var(--border);
}

.cta-outline:hover {
    border-color: var(--blue);
    color: var(--blue);
}

.cta-blue {
    background: var(--blue);
    color: white;
    border-radius: 99px;
}

.cta-blue:hover {
    background: var(--blue-light);
}

/* features list */
.plan-feat-label {
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.09em;
    color: var(--subtle);
    margin-bottom: 12px;
}

.plan-card-featured .plan-feat-label {
    color: rgba(255, 255, 255, 0.25);
}

.plan-feats {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 9px;
    padding: 0;
}

.plan-feats li {
    display: flex;
    align-items: flex-start;
    gap: 9px;
    font-size: 0.9rem;
    color: #374151;
    line-height: 1.4;
}

.plan-card-featured .plan-feats li {
    color: rgba(255, 255, 255, 0.8);
}

.plan-feats strong {
    font-weight: 700;
    color: inherit;
}

.feat-icon {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
    color: var(--subtle);
    margin-top: 1px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feat-icon svg {
    width: 14px;
    height: 14px;
}

.plan-card-featured .feat-icon {
    color: rgba(255, 255, 255, 0.3);
}

/* ══ ENTERPRISE ══ */
.enterprise-card {
    background: white;
    border: 1px solid var(--border);
    border-radius: 16px;
    overflow: hidden;
    display: grid;
    grid-template-columns: 260px 1fr;
    margin-bottom: 48px;
}

.ent-left {
    padding: 20px 32px 30px;
    border-right: 1px solid var(--border);
}

.ent-left h3 {
    font-family: "Sora", sans-serif;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text2);
    margin-bottom: 5px;
}

.ent-left p {
    font-size: 0.9rem;
    color: var(--muted);
    line-height: 1.5;
    margin-bottom: 16px;
}

.cta-dark {
    display: inline-block;
    background: var(--dark);
    color: white;
    text-decoration: none;
    font-family: "DM Sans", sans-serif;
    font-size: 0.875rem;
    font-weight: 700;
    padding: 10px 22px;
    border-radius: 99px;
    transition: background 0.2s;
}

.cta-dark:hover {
    background: #2d3045;
}

.ent-right {
    padding: 24px 28px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px 28px;
    align-content: center;
}

.ent-feat {
    display: flex;
    align-items: center;
    gap: 9px;
    font-size: 0.9rem;
    color: var(--muted);
}

.ent-feat strong {
    color: var(--text2);
    font-weight: 700;
}

/* ══ CREDITS SECTION ══ */
.credits-section {
    margin-bottom: 48px;
}

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

.section-header h2 {
    font-family: "Sora", sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text2);
    margin-bottom: 6px;
}

.section-header p {
    font-size: 0.9rem;
    color: var(--muted);
}

.credits-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
    margin-bottom: 28px;
}

.credit-card {
    position: relative;
    background: white;
    border: 1.5px solid var(--border);
    border-radius: 14px;
    padding: 22px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    transition:
        border-color 0.18s,
        box-shadow 0.18s;
}

.credit-card:hover {
    border-color: var(--blue);
    box-shadow: 0 4px 20px rgba(63, 81, 181, 0.08);
}

.credit-card-featured {
    border-color: var(--blue);
    background: rgba(63, 81, 181, 0.03);
}

.credit-best {
    position: absolute;
    top: -11px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--blue);
    color: white;
    font-size: 0.62rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 3px 10px;
    border-radius: 99px;
    white-space: nowrap;
}

.credit-header {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
}

.credit-name {
    font-family: "Sora", sans-serif;
    font-size: 1rem;
    font-weight: 700;
    color: var(--text2);
}

.credit-price {
    font-family: "Sora", sans-serif;
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--text2);
    letter-spacing: -0.02em;
}

.credit-amount {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.85rem;
    color: #374151;
}

.credit-amount strong {
    font-weight: 700;
    color: var(--text2);
}

.credit-meta {
    font-size: 0.75rem;
    color: var(--subtle);
}

.credit-btn {
    display: block;
    text-align: center;
    text-decoration: none;
    font-family: "DM Sans", sans-serif;
    font-size: 0.85rem;
    font-weight: 700;
    padding: 10px;
    border-radius: 8px;
    border: 1.5px solid var(--border);
    color: var(--text2);
    background: white;
    cursor: pointer;
    transition: all 0.15s;
    margin-top: 4px;
}

.credit-btn:hover {
    border-color: var(--blue);
    color: var(--blue);
}

.credit-btn-blue {
    background: var(--blue);
    color: white;
    border-color: var(--blue);
    border-radius: 99px;
}

.credit-btn-blue:hover {
    background: var(--blue-light);
}

/* ══ CREDIT CALCULATOR ══ */
.calculator {
    background: white;
    border: 1.5px solid var(--border);
    border-radius: 16px;
    overflow: hidden;
    margin-top: 60px;
}

.calc-header {
    padding: 20px 28px;
    display: flex;
    align-items: center;
    gap: 14px;
    border-bottom: 1px solid rgba(129, 129, 129, 0.229);
}

.calc-header-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: rgba(133, 133, 133, 0.148);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #3f51b5d0;
    flex-shrink: 0;
}

.calc-header-icon svg {
    width: 18px;
    height: 18px;
}

div.credits-section div.calc-header > div:nth-child(2) {
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.calc-header h3 {
    font-family: "Sora", sans-serif;
    font-size: 1rem;
    font-weight: 700;
    color: var(--text2);
    margin: 0 !important;
}

.calc-header p {
    font-size: 0.9rem;
    color: var(--muted);
    font-weight: 300;
    margin: 0 !important;
}

.calc-body {
    padding: 24px 28px;
    display: flex;
    flex-direction: column;
    gap: 22px;
}

/* pack pills */
.calc-label {
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.09em;
    color: var(--subtle);
    margin-bottom: 10px;
}

.calc-packs {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.calc-pack {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0px;
    padding: auto 30px;
    border-radius: 99px;
    border: 1.5px solid var(--border);
    background: white;
    cursor: pointer;
    font-family: "DM Sans", sans-serif;
    transition: all 0.15s;
    width: 130px;
    height: 44px;
}

.calc-pack:hover {
    border-color: var(--blue);
}

.calc-pack.active {
    border-color: var(--blue);
    background: var(--blue-dim);
    color: var(--blue);
}

.calc-pack-name {
    font-size: 0.8rem;
    font-weight: 700;
    color: inherit;
}

.calc-pack-cr {
    font-size: 0.80rem;
    color: var(--subtle);
}

.calc-pack.active .calc-pack-cr {
    color: #7c8ff5;
}

/* slider */
.slider-wrap {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.slider-labels {
    display: flex;
    justify-content: space-between;
    font-size: 0.8rem;
    color: var(--subtle);
    font-weight: 500;
}

#sliderVal {
    font-weight: 700;
    color: var(--blue);
}

input[type="range"].calc-slider {
    -webkit-appearance: none;
    appearance: none;
    width: 100%;
    height: 5px;
    border-radius: 99px;
    outline: none;
    cursor: pointer;
    background: linear-gradient(to right, var(--blue) 30%, var(--border) 30%);
}

input[type="range"].calc-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--blue);
    border: 3px solid white;
    cursor: pointer;
    transition: transform 0.15s;
}

input[type="range"].calc-slider::-webkit-slider-thumb:hover {
    transform: scale(1.15);
}

input[type="range"].calc-slider::-moz-range-thumb {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--blue);
    border: 3px solid white;
    box-shadow: 0 2px 8px rgba(63, 81, 181, 0.4);
    cursor: pointer;
}

/* mode pills */
.calc-modes {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.calc-mode {
    display: flex;
    align-items: center;
    gap: 7px;
    padding: 8px 18px;
    border-radius: 99px;
    border: 1.5px solid var(--border);
    background: white;
    cursor: pointer;
    font-family: "DM Sans", sans-serif;
    font-size: 0.84rem;
    font-weight: 600;
    color: var(--muted);
    transition: all 0.15s;
}

.calc-mode:hover {
    border-color: var(--blue);
    color: var(--blue);
}

.calc-mode.active {
    border-color: var(--blue);
    background: var(--blue-dim);
    color: var(--blue);
}

.calc-mode svg {
    width: 14px;
    height: 14px;
}

.mode-rate {
    font-size: 0.90rem;
    color: var(--subtle);
    font-weight: 400;
    margin-left: 2px;
}

.calc-mode.active .mode-rate {
    color: #7c8ff5;
}

/* ── result — matches plan card style ── */
.calc-result {
    display: grid;
    grid-template-columns: auto 1px 1fr;
    gap: 0;
    background: var(--dark);
    border-radius: 12px;
    overflow: hidden;
}

.result-main {
    padding: 22px 28px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 2px;
}

.result-number {
    font-family: "Sora", sans-serif;
    font-size: 3rem;
    font-weight: 800;
    color: white;
    line-height: 1;
    letter-spacing: -0.03em;
    transition: all 0.2s ease;
}

.result-unit {
    font-size: 0.9rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.4);
}

.result-divider {
    background: rgba(255, 255, 255, 0.07);
}

.result-breakdown {
    padding: 20px 24px;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 14px;
    align-content: center;
}

.breakdown-item {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.b-label {
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 0.09em;
    color: rgba(255, 255, 255, 0.25);
    font-weight: 700;
}

.b-val {
    font-family: "Sora", sans-serif;
    font-size: 1rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.85);
}

/* progress */
.calc-progress {
    display: flex;
    flex-direction: column;
    gap: 7px;
}

.progress-bar {
    height: 6px;
    border-radius: 99px;
    background: var(--surface);
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    border-radius: 99px;
    background: linear-gradient(90deg, var(--blue), #7c8ff5);
    transition: width 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.progress-note {
    font-size: 0.95rem;
    color: var(--subtle);
    text-align: center;
}

/* ── FAQ teaser ── */
.faq-teaser {
    margin-top: 56px;
    padding: 25px;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.faq-teaser h3 {
    font-family: "Sora", sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text2);
    margin-bottom: 4px;
}

.faq-teaser p {
    font-size: 0.875rem;
    color: var(--muted);
}

.faq-link {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: var(--blue);
    color: white;
    text-decoration: none;
    font-family: "DM Sans", sans-serif;
    font-size: 0.875rem;
    font-weight: 700;
    padding: 11px 22px;
    border-radius: 9px;
    white-space: nowrap;
    transition: background 0.2s;
}

.faq-link:hover {
    background: var(--blue-light);
}

/* ── CTA ── */

.pricing-cta {
    background: var(--blue);
    padding: 80px 40px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.pricing-cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
    background-size: 40px 40px;
    mask-image: radial-gradient(ellipse at center, black 30%, transparent 75%);
    -webkit-mask-image: radial-gradient(ellipse at center, black 30%, transparent 75%);
}

.pricing-cta::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle, rgba(255, 255, 255, 0.12) 1px, transparent 1px);
    background-size: 24px 24px;
    background-position: 12px 12px;
    mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, transparent 40%, black 100%);
    -webkit-mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, transparent 40%, black 100%);
}

.pricing-cta>* {
    position: relative;
    z-index: 1;
}

.pricing-cta h2 {
    font-family: 'Sora', sans-serif;
    font-size: 1.8rem;
    font-weight: 800;
    color: white;
    margin-bottom: 14px;
    position: relative;
    letter-spacing: -0.02em;
}

.pricing-cta p {
    color: rgba(255, 255, 255, 0.65);
    font-size: 1.1rem;
    margin-bottom: 26px;
    position: relative;
    font-weight: 300;
}

.cta-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    position: relative;
}

.hero-form {
    display: flex;
    gap: 10px;
    margin: 0px;
    max-width: 600px;
}

.hero-form input {
    flex: 1;
    padding: 13px 18px;
    border: 1.5px solid rgba(63, 81, 181, 0.18);
    border-radius: 10px;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.9rem;
    background: white;
    color: var(--text);
    outline: none;
    width: 250px;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.hero-form input:focus {
    border-color: var(--blue);
    box-shadow: 0 0 0 3px rgba(63, 81, 181, 0.1);
}

.hero-form input::placeholder {
    color: #b0b5c9;
}


.btn-cta {
    background: white;
    color: var(--blue);
    border: none;
    cursor: pointer;
    font-family: 'DM Sans', sans-serif;
    font-weight: 700;
    font-size: 0.9rem;
    padding: 13px 26px;
    border-radius: 9px;
    text-decoration: none;
    transition: all 0.2s;
}

.btn-cta:hover {
    background: #f0f2ff;
    transform: translateY(-1px);
}

.btn-ghost-white {
    background: rgba(255, 255, 255, 0.12);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.25);
    cursor: pointer;
    font-family: 'DM Sans', sans-serif;
    font-weight: 600;
    font-size: 0.9rem;
    padding: 13px 26px;
    border-radius: 9px;
    text-decoration: none;
    transition: all 0.2s;
}

.btn-ghost-white:hover {
    background: rgba(255, 255, 255, 0.2);
}