.annual-cost-page {
    --annual-ink: #0f172a;
    --annual-muted: #64748b;
    --annual-line: #dbe4ef;
    --annual-surface: #ffffff;
    --annual-accent: #5b5ce2;
    --annual-accent-2: #3b82f6;
    color: var(--annual-ink);
    background: #f8fafc;
}

.dark .annual-cost-page {
    --annual-ink: #f8fafc;
    --annual-muted: #94a3b8;
    --annual-line: #26334a;
    --annual-surface: #0f172a;
    background: #080c1a;
}

.annual-cost-shell {
    width: min(1180px, calc(100% - 32px));
    margin-inline: auto;
}

.annual-cost-intro {
    position: relative;
    overflow: hidden;
    border-bottom: 1px solid var(--annual-line);
    background:
        radial-gradient(circle at 86% 8%, rgba(59, 130, 246, .13), transparent 28%),
        radial-gradient(circle at 8% 30%, rgba(99, 102, 241, .1), transparent 30%),
        linear-gradient(180deg, #fff, #f8fafc);
}

.dark .annual-cost-intro {
    background:
        radial-gradient(circle at 86% 8%, rgba(59, 130, 246, .18), transparent 28%),
        radial-gradient(circle at 8% 30%, rgba(99, 102, 241, .16), transparent 30%),
        linear-gradient(145deg, #080c1a, #0b1222);
}

.annual-cost-intro-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(320px, .85fr);
    align-items: center;
    gap: clamp(44px, 8vw, 100px);
    min-height: 500px;
    padding-block: 68px;
}

.annual-cost-intro-layout > div:first-child {
    animation: annual-rise .58s cubic-bezier(.22, 1, .36, 1) both;
}

.annual-cost-eyebrow,
.annual-cost-section-kicker {
    margin: 0;
    color: #4f46e5;
    font-size: 11px;
    font-weight: 950;
    letter-spacing: .17em;
    text-transform: uppercase;
}

.dark .annual-cost-eyebrow,
.dark .annual-cost-section-kicker {
    color: #a5b4fc;
}

.annual-cost-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.annual-cost-eyebrow span {
    width: 28px;
    height: 2px;
    background: #6366f1;
}

.annual-cost-intro h1 {
    max-width: 740px;
    margin: 20px 0 0;
    font-size: clamp(40px, 5.6vw, 68px);
    font-weight: 950;
    letter-spacing: -.055em;
    line-height: 1;
}

.annual-cost-lead {
    max-width: 670px;
    margin: 24px 0 0;
    color: var(--annual-muted);
    font-size: clamp(16px, 1.9vw, 19px);
    line-height: 1.68;
}

.annual-cost-intro-actions,
.annual-cost-head-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.annual-cost-intro-actions {
    margin-top: 29px;
}

.annual-cost-button {
    display: inline-flex;
    min-height: 48px;
    align-items: center;
    justify-content: center;
    gap: 16px;
    padding: 0 18px;
    border: 1px solid transparent;
    border-radius: 14px;
    font-size: 13px;
    font-weight: 900;
    line-height: 1.2;
    text-decoration: none;
    transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease, background-color .18s ease;
}

.annual-cost-button:hover {
    transform: translateY(-1px);
}

.annual-cost-button:focus-visible,
.annual-cost-field :is(input, select):focus-visible,
.annual-cost-expenses summary:focus-visible {
    outline: 3px solid rgba(99, 102, 241, .28);
    outline-offset: 2px;
}

.annual-cost-button--primary {
    color: #fff;
    background: linear-gradient(135deg, #6366f1, #3b82f6);
    box-shadow: 0 15px 34px rgba(59, 130, 246, .22);
}

.annual-cost-button--quiet,
.annual-cost-button--compare {
    border-color: var(--annual-line);
    color: #334155;
    background: rgba(255, 255, 255, .84);
}

.dark .annual-cost-button--quiet,
.dark .annual-cost-button--compare {
    color: #e2e8f0;
    background: rgba(15, 23, 42, .88);
}

.annual-cost-button--compare {
    border-color: rgba(99, 102, 241, .28);
    color: #4f46e5;
}

.is-comparing .annual-cost-button--compare {
    border-color: rgba(14, 165, 233, .4);
    color: #0369a1;
    background: rgba(224, 242, 254, .72);
}

.dark .is-comparing .annual-cost-button--compare {
    color: #7dd3fc;
    background: rgba(14, 165, 233, .1);
}

.annual-cost-local-note {
    display: flex;
    align-items: center;
    gap: 9px;
    margin: 18px 0 0;
    color: var(--annual-muted);
    font-size: 12px;
}

.annual-cost-local-note span {
    color: #10b981;
    font-size: 9px;
}

.annual-cost-intro-visual {
    position: relative;
    overflow: hidden;
    min-height: 338px;
    padding: 27px;
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: 30px;
    color: #fff;
    background:
        radial-gradient(circle at 85% 10%, rgba(56, 189, 248, .22), transparent 32%),
        linear-gradient(145deg, #0f172a, #172554);
    box-shadow: 0 34px 90px rgba(15, 23, 42, .2);
    animation: annual-visual-in .68s .08s cubic-bezier(.22, 1, .36, 1) both;
}

.annual-cost-intro-visual::after {
    content: "";
    position: absolute;
    right: -60px;
    bottom: -90px;
    width: 230px;
    height: 230px;
    border-radius: 50%;
    background: rgba(99, 102, 241, .18);
}

.annual-cost-visual-top {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    padding-bottom: 22px;
    border-bottom: 1px solid rgba(255, 255, 255, .1);
}

.annual-cost-visual-top span {
    color: #94a3b8;
    font-size: 10px;
    font-weight: 900;
    letter-spacing: .18em;
}

.annual-cost-visual-top strong {
    color: #818cf8;
    font-size: 34px;
    line-height: .8;
}

.annual-cost-visual-total {
    position: relative;
    z-index: 1;
    margin-top: 27px;
}

.annual-cost-visual-total small {
    display: block;
    color: #94a3b8;
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .1em;
}

.annual-cost-visual-total b {
    display: block;
    margin-top: 6px;
    font-size: 47px;
    font-weight: 950;
    letter-spacing: -.05em;
}

.annual-cost-visual-bars {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    align-items: end;
    gap: 11px;
    height: 94px;
    margin-top: 24px;
}

.annual-cost-visual-bars i {
    display: block;
    height: 52%;
    border-radius: 9px 9px 3px 3px;
    background: linear-gradient(180deg, #818cf8, #3b82f6);
    animation: annual-bars 2.6s ease-in-out infinite alternate;
}

.annual-cost-visual-bars i:nth-child(2) { height: 38%; animation-delay: -.7s; }
.annual-cost-visual-bars i:nth-child(3) { height: 70%; animation-delay: -1.25s; }
.annual-cost-visual-bars i:nth-child(4) { height: 92%; animation-delay: -.4s; }

.annual-cost-visual-axis {
    position: relative;
    z-index: 1;
    display: flex;
    justify-content: space-between;
    margin-top: 10px;
    color: #64748b;
    font-size: 8px;
    font-weight: 900;
    letter-spacing: .06em;
    text-transform: uppercase;
}

.annual-cost-workspace {
    padding: 72px 0 84px;
    background: linear-gradient(180deg, #f8fafc, #eef2ff 45%, #f8fafc);
}

.dark .annual-cost-workspace {
    background: linear-gradient(180deg, #080c1a, #0b1222 45%, #080c1a);
}

.annual-cost-workspace-head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 28px;
}

.annual-cost-workspace-head h2 {
    margin: 10px 0 0;
    font-size: clamp(30px, 4vw, 44px);
    font-weight: 950;
    letter-spacing: -.045em;
    line-height: 1.05;
}

.annual-cost-workspace-head p:not(.annual-cost-section-kicker) {
    max-width: 700px;
    margin: 13px 0 0;
    color: var(--annual-muted);
    line-height: 1.65;
}

.annual-cost-demo-note {
    display: flex;
    align-items: flex-start;
    gap: 11px;
    max-width: 840px;
    margin: 24px 0 0;
    color: var(--annual-muted);
    font-size: 12px;
    line-height: 1.6;
}

.annual-cost-demo-note strong {
    flex: 0 0 auto;
    display: inline-flex;
    width: 20px;
    height: 20px;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: #4f46e5;
    background: #e0e7ff;
    font-size: 11px;
    font-family: Georgia, serif;
}

.dark .annual-cost-demo-note strong {
    color: #c7d2fe;
    background: rgba(99, 102, 241, .16);
}

.annual-cost-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(340px, .85fr);
    align-items: start;
    gap: 28px;
    margin-top: 28px;
}

.annual-cost-forms {
    display: grid;
    gap: 22px;
}

.annual-cost-form {
    overflow: hidden;
    border: 1px solid var(--annual-line);
    border-radius: 26px;
    background: rgba(255, 255, 255, .92);
    box-shadow: 0 20px 55px rgba(15, 23, 42, .055);
    animation: annual-rise .42s cubic-bezier(.22, 1, .36, 1) both;
}

.dark .annual-cost-form {
    background: rgba(15, 23, 42, .9);
    box-shadow: 0 20px 55px rgba(0, 0, 0, .14);
}

.annual-cost-form--secondary {
    border-color: rgba(14, 165, 233, .34);
}

.annual-cost-workspace:not(.is-comparing) [data-vehicle-panel="b"],
.annual-cost-workspace:not(.is-comparing) [data-result-panel="b"],
.annual-cost-workspace:not(.is-comparing) [data-breakdown-value][data-vehicle="b"],
.annual-cost-workspace:not(.is-comparing) [data-breakdown-bar][data-vehicle="b"] {
    display: none;
}

.annual-cost-form-title {
    display: flex;
    align-items: center;
    gap: 13px;
    padding: 20px 22px;
    border-bottom: 1px solid var(--annual-line);
}

.annual-cost-form-title span,
.annual-cost-result-name span {
    display: inline-flex;
    width: 31px;
    height: 31px;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    color: #fff;
    background: #6366f1;
    font-size: 11px;
    font-weight: 950;
}

.annual-cost-form--secondary .annual-cost-form-title span,
.annual-cost-result--secondary .annual-cost-result-name span {
    background: #0ea5e9;
}

.annual-cost-form-title h2 {
    margin: 0;
    font-size: 17px;
    font-weight: 950;
}

.annual-cost-fieldset {
    margin: 0;
    padding: 22px;
    border: 0;
    border-bottom: 1px solid var(--annual-line);
}

.annual-cost-fieldset legend {
    float: left;
    width: 100%;
    margin: 0 0 16px;
    padding: 0;
    color: var(--annual-ink);
    font-size: 12px;
    font-weight: 950;
    letter-spacing: .06em;
    text-transform: uppercase;
}

.annual-cost-fieldset legend + * {
    clear: both;
}

.annual-cost-field-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 15px;
}

.annual-cost-field--wide {
    grid-column: 1 / -1;
}

.annual-cost-field {
    display: grid;
    gap: 7px;
    min-width: 0;
}

.annual-cost-field > span:first-child {
    color: #475569;
    font-size: 11px;
    font-weight: 850;
    line-height: 1.35;
}

.dark .annual-cost-field > span:first-child {
    color: #cbd5e1;
}

.annual-cost-field input,
.annual-cost-field select {
    width: 100%;
    min-width: 0;
    min-height: 46px;
    padding: 0 13px;
    border: 1px solid #dbe3ef;
    border-radius: 13px;
    color: #0f172a;
    background: #fff;
    font-size: 14px;
    font-weight: 750;
    transition: border-color .18s ease, box-shadow .18s ease;
}

.dark .annual-cost-field input,
.dark .annual-cost-field select {
    border-color: #334155;
    color: #f8fafc;
    background: #111827;
}

.annual-cost-field input:hover,
.annual-cost-field select:hover,
.annual-cost-field input:focus,
.annual-cost-field select:focus {
    border-color: #818cf8;
}

.annual-cost-input {
    position: relative;
    display: block;
}

.annual-cost-input input {
    padding-right: 84px;
}

.annual-cost-input em {
    position: absolute;
    top: 50%;
    right: 11px;
    max-width: 76px;
    overflow: hidden;
    color: #94a3b8;
    font-size: 9px;
    font-style: normal;
    font-weight: 850;
    line-height: 1.15;
    text-align: right;
    text-overflow: ellipsis;
    transform: translateY(-50%);
    white-space: nowrap;
    pointer-events: none;
}

.annual-cost-field.is-hidden {
    display: none;
}

.annual-cost-expenses {
    border-bottom: 1px solid var(--annual-line);
}

.annual-cost-expenses summary {
    position: relative;
    display: grid;
    gap: 4px;
    padding: 19px 52px 19px 22px;
    cursor: pointer;
    list-style: none;
}

.annual-cost-expenses summary::-webkit-details-marker {
    display: none;
}

.annual-cost-expenses summary::after {
    content: "+";
    position: absolute;
    top: 50%;
    right: 22px;
    color: #6366f1;
    font-size: 24px;
    font-weight: 500;
    transform: translateY(-50%);
}

.annual-cost-expenses[open] summary::after {
    content: "−";
}

.annual-cost-expenses summary span {
    font-size: 12px;
    font-weight: 950;
    letter-spacing: .06em;
    text-transform: uppercase;
}

.annual-cost-expenses summary small {
    color: var(--annual-muted);
    font-size: 11px;
    line-height: 1.45;
}

.annual-cost-expense-grid {
    padding: 0 22px 22px;
}

.annual-cost-depreciation {
    border-bottom: 0;
}

.annual-cost-field-help {
    align-self: center;
    margin: 0;
    color: var(--annual-muted);
    font-size: 11px;
    line-height: 1.55;
}

.annual-cost-results {
    position: sticky;
    top: 86px;
    overflow: hidden;
    border: 1px solid rgba(129, 140, 248, .2);
    border-radius: 28px;
    padding: 24px;
    color: #fff;
    background:
        radial-gradient(circle at 88% 0%, rgba(56, 189, 248, .15), transparent 32%),
        linear-gradient(155deg, #0f172a, #172554);
    box-shadow: 0 28px 75px rgba(15, 23, 42, .2);
}

.annual-cost-results-head > p:last-child {
    margin: 8px 0 0;
    color: #94a3b8;
    font-size: 12px;
    line-height: 1.55;
}

.annual-cost-result {
    padding: 21px 0 22px;
    border-bottom: 1px solid rgba(255, 255, 255, .1);
}

.annual-cost-result--secondary {
    animation: annual-rise .35s ease both;
}

.annual-cost-result-name {
    display: flex;
    align-items: center;
    gap: 10px;
}

.annual-cost-result-name strong {
    overflow: hidden;
    color: #cbd5e1;
    font-size: 13px;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.annual-cost-total {
    display: flex;
    align-items: baseline;
    gap: 9px;
    margin-top: 18px;
}

.annual-cost-total strong {
    font-size: clamp(35px, 4.5vw, 49px);
    font-weight: 950;
    letter-spacing: -.055em;
    line-height: .95;
}

.annual-cost-total span {
    color: #94a3b8;
    font-size: 9px;
    font-weight: 850;
    text-transform: uppercase;
}

.annual-cost-metrics {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
    margin-top: 18px;
}

.annual-cost-metrics div {
    min-width: 0;
    padding: 11px 9px;
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: 13px;
    background: rgba(255, 255, 255, .045);
}

.annual-cost-metrics span {
    display: block;
    min-height: 27px;
    color: #94a3b8;
    font-size: 9px;
    line-height: 1.25;
}

.annual-cost-metrics strong {
    display: inline;
    font-size: 16px;
    font-weight: 950;
}

.annual-cost-metrics small {
    margin-left: 3px;
    color: #64748b;
    font-size: 8px;
}

.annual-cost-results.is-updating .annual-cost-total strong {
    animation: annual-number .28s ease;
}

.annual-cost-comparison {
    margin: 18px 0 0;
    padding: 15px;
    border: 1px solid rgba(56, 189, 248, .18);
    border-radius: 15px;
    background: rgba(14, 165, 233, .08);
}

.annual-cost-comparison span {
    display: block;
    color: #7dd3fc;
    font-size: 9px;
    font-weight: 900;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.annual-cost-comparison strong {
    display: block;
    margin-top: 6px;
    color: #e0f2fe;
    font-size: 13px;
    line-height: 1.5;
}

.annual-cost-breakdown {
    padding-top: 23px;
}

.annual-cost-breakdown h2 {
    margin: 0 0 16px;
    color: #cbd5e1;
    font-size: 11px;
    font-weight: 950;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.annual-cost-breakdown-row + .annual-cost-breakdown-row {
    margin-top: 14px;
}

.annual-cost-breakdown-label {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto auto;
    gap: 8px;
    align-items: center;
}

.annual-cost-breakdown-label span {
    color: #cbd5e1;
    font-size: 10px;
    font-weight: 750;
}

.annual-cost-breakdown-label b {
    color: #a5b4fc;
    font-size: 10px;
    font-weight: 900;
}

.annual-cost-breakdown-label .annual-cost-breakdown-value--secondary {
    color: #7dd3fc;
}

.annual-cost-breakdown-track {
    position: relative;
    overflow: hidden;
    height: 7px;
    margin-top: 7px;
    border-radius: 99px;
    background: rgba(255, 255, 255, .07);
}

.annual-cost-breakdown-track i {
    position: absolute;
    inset: 0 auto 0 0;
    width: 0;
    border-radius: inherit;
    background: linear-gradient(90deg, #6366f1, #818cf8);
    transition: width .35s cubic-bezier(.22, 1, .36, 1);
}

.annual-cost-breakdown-track .annual-cost-bar--secondary {
    top: 4px;
    height: 3px;
    background: #38bdf8;
}

.is-comparing .annual-cost-breakdown-track {
    height: 10px;
}

.annual-cost-privacy {
    display: flex;
    align-items: center;
    gap: 9px;
    margin: 22px 0 0;
    padding-top: 18px;
    border-top: 1px solid rgba(255, 255, 255, .1);
    color: #64748b;
    font-size: 10px;
}

.annual-cost-cta {
    padding: 74px 0;
    border-top: 1px solid var(--annual-line);
    background: var(--annual-surface);
}

.annual-cost-cta-layout {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.annual-cost-cta h2 {
    max-width: 760px;
    margin: 12px 0 0;
    font-size: clamp(30px, 4vw, 46px);
    font-weight: 950;
    letter-spacing: -.045em;
    line-height: 1.05;
}

.annual-cost-cta p:not(.annual-cost-section-kicker) {
    max-width: 720px;
    margin: 16px 0 0;
    color: var(--annual-muted);
    line-height: 1.65;
}

@keyframes annual-rise {
    from { opacity: 0; transform: translateY(16px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes annual-visual-in {
    from { opacity: 0; transform: translateY(18px) rotate(2deg); }
    to { opacity: 1; transform: translateY(0) rotate(0); }
}

@keyframes annual-bars {
    from { transform: scaleY(.78); transform-origin: bottom; }
    to { transform: scaleY(1); transform-origin: bottom; }
}

@keyframes annual-number {
    0% { opacity: .55; transform: translateY(2px); }
    100% { opacity: 1; transform: translateY(0); }
}

@media (max-width: 960px) {
    .annual-cost-intro-layout {
        grid-template-columns: 1fr;
        min-height: auto;
        padding-block: 58px;
    }

    .annual-cost-intro-visual {
        min-height: 300px;
    }

    .annual-cost-layout {
        grid-template-columns: 1fr;
    }

    .annual-cost-results {
        position: static;
    }
}

@media (max-width: 680px) {
    .annual-cost-shell {
        width: min(100% - 24px, 1180px);
    }

    .annual-cost-intro-layout {
        gap: 36px;
        padding-block: 44px;
    }

    .annual-cost-intro h1 {
        font-size: clamp(37px, 12vw, 52px);
    }

    .annual-cost-intro-visual {
        min-height: 286px;
        padding: 22px;
        border-radius: 24px;
    }

    .annual-cost-workspace {
        padding: 54px 0 62px;
    }

    .annual-cost-workspace-head,
    .annual-cost-cta-layout {
        align-items: stretch;
        flex-direction: column;
    }

    .annual-cost-head-actions,
    .annual-cost-intro-actions {
        display: grid;
        grid-template-columns: 1fr;
        width: 100%;
    }

    .annual-cost-form,
    .annual-cost-results {
        border-radius: 22px;
    }

    .annual-cost-field-grid {
        grid-template-columns: 1fr;
    }

    .annual-cost-field--wide {
        grid-column: auto;
    }

    .annual-cost-fieldset,
    .annual-cost-form-title {
        padding-inline: 17px;
    }

    .annual-cost-expenses summary {
        padding-left: 17px;
    }

    .annual-cost-expense-grid {
        padding-inline: 17px;
    }

    .annual-cost-results {
        padding: 20px;
    }

    .annual-cost-total strong {
        font-size: 39px;
    }

    .annual-cost-metrics {
        gap: 6px;
    }

    .annual-cost-metrics div {
        padding-inline: 7px;
    }

    .annual-cost-metrics strong {
        font-size: 14px;
    }

    .annual-cost-cta {
        padding: 58px 0;
    }
}

@media (prefers-reduced-motion: reduce) {
    .annual-cost-page *,
    .annual-cost-page *::before,
    .annual-cost-page *::after {
        scroll-behavior: auto !important;
        animation-duration: .01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: .01ms !important;
    }
}

@media print {
    nav,
    footer,
    .no-print,
    .annual-cost-intro-actions,
    .annual-cost-cta,
    .telegram-float,
    .telegram-widget {
        display: none !important;
    }

    html,
    body,
    .annual-cost-page,
    .annual-cost-workspace,
    .annual-cost-intro {
        color: #111 !important;
        background: #fff !important;
    }

    .annual-cost-intro-layout {
        display: block;
        min-height: 0;
        padding: 18px 0 24px;
    }

    .annual-cost-intro h1 {
        max-width: none;
        font-size: 34px;
    }

    .annual-cost-intro-visual,
    .annual-cost-demo-note,
    .annual-cost-forms {
        display: none !important;
    }

    .annual-cost-workspace {
        padding: 24px 0;
    }

    .annual-cost-workspace-head {
        display: block;
    }

    .annual-cost-layout {
        display: block;
        margin-top: 18px;
    }

    .annual-cost-results {
        position: static;
        color: #111;
        background: #fff;
        border: 1px solid #aaa;
        box-shadow: none;
    }

    .annual-cost-results :is(p, span, small, strong, h2, b) {
        color: #111 !important;
    }

    .annual-cost-result,
    .annual-cost-privacy {
        border-color: #ccc;
    }

    .annual-cost-metrics div,
    .annual-cost-comparison {
        border-color: #ccc;
        background: #fff;
    }

    .annual-cost-breakdown-track {
        border: 1px solid #bbb;
        background: #eee;
    }
}
