:root {
    color-scheme: light dark;
    --color-bg: #070b17;
    --color-surface: rgba(10, 16, 33, 0.85);
    --color-surface-alt: rgba(255, 255, 255, 0.06);
    --color-card: rgba(13, 21, 45, 0.9);
    --color-card-border: rgba(255, 255, 255, 0.08);
    --color-border: rgba(255, 255, 255, 0.12);
    --color-text: #f9fbff;
    --color-text-muted: rgba(236, 240, 255, 0.72);
    --color-brand: #327bf6;
    --color-brand-light: #5a9dff;
    --color-brand-dark: #1e5de3;
    --color-accent: #f97316;
    --shadow-glow: 0 20px 60px -20px rgba(50, 123, 246, 0.45);
    --max-width: 1120px;
    font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    background: radial-gradient(circle at top right, rgba(50, 123, 246, 0.15), transparent 55%),
        radial-gradient(circle at bottom left, rgba(249, 115, 22, 0.12), transparent 50%),
        var(--color-bg);
    color: var(--color-text);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

img,
svg {
    display: block;
    max-width: 100%;
}

a {
    color: inherit;
    text-decoration: none;
}

a:hover,
a:focus {
    color: var(--color-brand);
}

h1, h2, h3, h4, h5, h6 {
    margin: 0;
    line-height: 1.2;
}

p {
    margin: 0 0 1rem;
    line-height: 1.6;
}

ul, ol {
    margin: 0;
    padding: 0;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
}

.container {
    width: min(100% - 2rem, var(--max-width));
    margin: 0 auto;
}

.page-content {
    flex: 1;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 20;
    background: rgba(7, 11, 23, 0.9);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--color-border);
}

.site-header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    padding: 1rem 0;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    font-weight: 600;
    letter-spacing: -0.01em;
}

.brand__mark {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--color-brand), var(--color-brand-dark));
    color: #fff;
    font-weight: 600;
}

.brand__name {
    font-size: 1.05rem;
}

.primary-nav {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.primary-nav__list {
    display: flex;
    gap: 1.5rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

.primary-nav__list a {
    font-size: 0.95rem;
    color: var(--color-text-muted);
    transition: color 0.2s ease;
}

.primary-nav__list a:hover,
.primary-nav__list a:focus {
    color: var(--color-text);
}

.primary-nav__actions {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.primary-nav__link {
    display: inline-flex;
    align-items: center;
    font-size: 0.95rem;
    color: var(--color-text-muted);
    transition: color 0.2s ease;
}

.primary-nav__link:hover,
.primary-nav__link:focus {
    color: var(--color-text);
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    font-weight: 600;
    font-size: 0.95rem;
    padding: 0.8rem 1.6rem;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
    border: none;
    cursor: pointer;
}

.btn--primary {
    background: var(--color-brand);
    color: #fff;
    box-shadow: var(--shadow-glow);
}

.btn--primary:hover,
.btn--primary:focus {
    background: var(--color-brand-dark);
    transform: translateY(-1px);
}

.btn--ghost {
    background: transparent;
    color: var(--color-text);
    border: 1px solid var(--color-border);
}

.btn--ghost:hover,
.btn--ghost:focus {
    border-color: var(--color-brand);
}

.btn--outline {
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: transparent;
    color: var(--color-text);
}

.btn--outline:hover,
.btn--outline:focus {
    border-color: var(--color-brand);
    color: #fff;
}

.btn--glow {
    position: relative;
}

.btn--glow::after {
    content: "";
    position: absolute;
    inset: -8px;
    border-radius: inherit;
    background: radial-gradient(circle, rgba(50, 123, 246, 0.35), transparent 60%);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.btn--glow:hover::after,
.btn--glow:focus::after {
    opacity: 1;
}

.btn--full {
    width: 100%;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 0.3rem;
    background: transparent;
    border: 1px solid var(--color-border);
    padding: 0.6rem 0.8rem;
    border-radius: 0.9rem;
    cursor: pointer;
}

.nav-toggle__line {
    width: 22px;
    height: 2px;
    background: var(--color-text);
    border-radius: 999px;
}

.hero {
    padding: 6rem 0 5rem;
    position: relative;
}

.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, rgba(50, 123, 246, 0.12), transparent 45%),
        linear-gradient(260deg, rgba(249, 115, 22, 0.08), transparent 55%);
    z-index: -1;
}

.hero--small {
    padding: 3rem 0 2rem;
}

.hero--small .hero__content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.hero__inner {
    display: grid;
    gap: 3rem;
    align-items: center;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.hero__content {
    display: grid;
    gap: 1.5rem;
}

.hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(50, 123, 246, 0.12);
    border-radius: 999px;
    color: var(--color-brand);
    font-weight: 500;
    font-size: 0.85rem;
}

.hero__title {
    font-size: clamp(2.5rem, 6vw, 3.8rem);
    margin: 0.6rem 0;
    letter-spacing: -0.02em;
}

.hero__subtitle {
    font-size: 1.05rem;
    line-height: 1.6;
    color: var(--color-text-muted);
}

.hero__cta {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin: 2rem 0 1.5rem;
}

.hero__stats {
    display: grid;
    gap: 1rem;
}

.stats-grid {
    display: grid;
    gap: 1rem;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
}

.stats-grid__item {
    border-radius: 1.2rem;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.04);
    padding: 1rem 1.25rem;
    display: grid;
    gap: 0.4rem;
}

.stats-grid__label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--color-text-muted);
}

.stats-grid__value {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--color-text);
}

.hero__highlights {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 0.75rem;
    color: var(--color-text-muted);
    font-size: 0.95rem;
}

.card {
    border-radius: 1.75rem;
    background: var(--color-card);
    border: 1px solid var(--color-card-border);
    padding: 2rem;
    box-shadow: 0 30px 80px -50px rgba(0, 0, 0, 0.6);
}

.card--frosted {
    backdrop-filter: blur(20px);
}

.card--bordered {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.card h2,
.card h3 {
    margin-top: 0;
    margin-bottom: 1rem;
}

.card p:last-child {
    margin-bottom: 0;
}

.hero__card {
    max-width: 420px;
    justify-self: center;
}

.card__header {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
}

.card__label {
    color: var(--color-text-muted);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.card__value {
    font-size: 2.4rem;
    font-weight: 600;
}

.card__grid {
    display: grid;
    margin: 1.8rem 0;
    gap: 1rem;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
}

.card__stat {
    padding: 1.2rem;
    border-radius: 1.2rem;
    background: rgba(255, 255, 255, 0.05);
    display: grid;
    gap: 0.4rem;
}

.card__stat-label {
    font-size: 0.8rem;
    text-transform: uppercase;
    color: var(--color-text-muted);
}

.card__stat-value {
    font-weight: 600;
}

.card__stat-hint {
    font-size: 0.75rem;
    color: var(--color-text-muted);
}

.card__secure {
    font-size: 0.85rem;
    color: var(--color-text-muted);
}

.calculator-card {
    display: grid;
    gap: 1.75rem;
}

.calculator-card__header {
    display: grid;
    gap: 0.5rem;
}

.calculator-card__title {
    margin: 0;
    font-size: 1.35rem;
    font-weight: 600;
    color: var(--color-text);
}

.calculator-card__subtitle {
    margin: 0;
    font-size: 0.9rem;
    color: var(--color-text-muted);
}

.calculator-card__body {
    display: grid;
    gap: 1.5rem;
}

.calculator-field {
    display: grid;
    gap: 0.75rem;
}

.calculator-field__label {
    display: flex;
    justify-content: space-between;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--color-text-muted);
}

.calculator-field__meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.8rem;
    color: var(--color-text-muted);
}

.calculator-field__meta span {
    color: var(--color-text);
    font-weight: 600;
}

.calculator-summary {
    display: grid;
    gap: 0.8rem;
    border-radius: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(0, 0, 0, 0.25);
    padding: 1.25rem 1.5rem;
}

.calculator-summary__row {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    font-size: 0.9rem;
    color: var(--color-text-muted);
}

.calculator-summary__row--highlight {
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--color-text);
}

.calculator-summary__value {
    color: var(--color-text);
    font-weight: 600;
}

.calculator-note {
    font-size: 0.75rem;
    line-height: 1.5;
    color: var(--color-text-muted);
}

.section {
    padding: 5rem 0;
}

.section--bordered {
    border-top: 1px solid var(--color-border);
    background: rgba(7, 11, 23, 0.7);
}

.section--gradient {
    border-top: 1px solid var(--color-border);
    background: linear-gradient(180deg, rgba(7, 11, 23, 0.95), rgba(10, 16, 33, 0.92));
}

.section__header {
    display: grid;
    gap: 1.5rem;
}

.section__header--split {
    gap: 1.5rem;
    align-items: end;
}

.section__intro {
    display: grid;
    gap: 0.75rem;
}

.section__link {
    justify-self: start;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.9rem;
    font-weight: 600;
    color: rgba(178, 203, 255, 0.95);
    transition: color 0.2s ease;
}

.section__link:hover,
.section__link:focus {
    color: #fff;
}

.steps-grid {
    list-style: none;
    padding: 0;
    margin: 3rem 0 0;
    display: grid;
    gap: 1.5rem;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.steps-grid__item {
    position: relative;
    border-radius: 1.75rem;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.05);
    padding: 2.5rem 1.8rem 1.8rem;
    box-shadow: 0 25px 60px -40px rgba(37, 99, 235, 0.6);
    display: grid;
    gap: 0.9rem;
}

.steps-grid__index {
    position: absolute;
    top: -20px;
    left: 24px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(50, 123, 246, 0.2);
    color: var(--color-brand);
    font-weight: 700;
    font-size: 0.95rem;
    box-shadow: 0 12px 30px -15px rgba(37, 99, 235, 0.7);
}

.steps-grid__title {
    margin: 0;
    font-size: 1.15rem;
    font-weight: 600;
}

.steps-grid__copy {
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--color-text-muted);
}

.feature-card {
    display: grid;
    gap: 1rem;
    border-radius: 1.75rem;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.05);
    padding: 1.75rem;
    transition: border-color 0.2s ease, background 0.2s ease;
    box-shadow: 0 25px 60px -35px rgba(37, 99, 235, 0.35);
}

.feature-card:hover,
.feature-card:focus-within {
    border-color: rgba(50, 123, 246, 0.5);
    background: rgba(255, 255, 255, 0.08);
}

.feature-card__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: rgba(50, 123, 246, 0.18);
    color: rgba(178, 203, 255, 0.95);
}

.feature-card__title {
    margin: 0;
    font-size: 1.2rem;
    font-weight: 600;
    color: #fff;
}

.feature-card__copy {
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--color-text-muted);
}

.testimonial-grid {
    display: grid;
    gap: 1.5rem;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.testimonial-card {
    border-radius: 1.75rem;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.05);
    padding: 1.75rem;
    display: grid;
    gap: 1.25rem;
}

.testimonial-card__quote {
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.7;
    color: rgba(236, 240, 255, 0.85);
    font-style: italic;
}

.testimonial-card__author {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    font-weight: 600;
    color: rgba(178, 203, 255, 0.95);
}

.testimonial-card__meta {
    font-size: 0.75rem;
    color: var(--color-text-muted);
}

.faq-layout {
    display: grid;
    gap: 3rem;
    grid-template-columns: minmax(0, 1fr) minmax(0, 0.85fr);
}

.faq-layout__content {
    display: grid;
    gap: 1rem;
}

.faq-layout__aside {
    display: grid;
    gap: 1.5rem;
}

.support-panel {
    border-radius: 1.75rem;
    border: 1px solid rgba(50, 123, 246, 0.4);
    background: rgba(50, 123, 246, 0.12);
    padding: 1.5rem;
    color: rgba(178, 203, 255, 0.95);
}

.support-panel__title {
    margin: 0;
    font-size: 1.1rem;
    font-weight: 600;
    color: #fff;
}

.support-panel__body {
    margin: 0.75rem 0 0;
    font-size: 0.9rem;
    line-height: 1.6;
}

.compliance-panel {
    border-radius: 1.75rem;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.05);
    padding: 1.5rem;
    display: grid;
    gap: 1rem;
    font-size: 0.9rem;
}

.compliance-panel__title {
    margin: 0;
    font-size: 1.1rem;
    font-weight: 600;
    color: #fff;
}

.compliance-panel__list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 0.6rem;
    color: var(--color-text-muted);
}

.compliance-panel__item {
    display: flex;
    gap: 0.6rem;
    align-items: flex-start;
    font-size: 0.85rem;
}

.compliance-panel__bullet {
    margin-top: 0.35rem;
    display: inline-flex;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--color-brand);
}

.page-content {
    flex: 1;
}

.page--dashboard .hero,
.page--dashboard .section {
    padding: 0;
}

.dashboard-main {
    padding: 3rem 0;
}

.dashboard-layout {
    display: grid;
    gap: 2.5rem;
    grid-template-columns: minmax(0, 1fr) minmax(0, 0.7fr);
}

.dashboard-layout__column {
    display: grid;
    gap: 2rem;
}

.dashboard-card {
    display: grid;
    gap: 1.5rem;
}

@media (max-width: 960px) {
    .dashboard-main {
        padding: 2.5rem 0;
    }

    .dashboard-layout {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .dashboard-layout__column {
        gap: 1.6rem;
    }

    .dashboard-card {
        gap: 1.3rem;
    }

    .card.card--frosted {
        padding: 1.75rem;
    }

    .form__label {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.35rem;
    }

    .form__control {
        padding: 1.1rem 1.25rem;
    }

    .slider-meta {
        font-size: 0.8rem;
    }

    .slider-meta span {
        white-space: nowrap;
    }

    .details-grid,
    .responsive-grid,
    .form-grid,
    .filters-form--inline {
        grid-template-columns: 1fr;
    }

    .details-list div,
    .details-list__item {
        flex-direction: column;
        align-items: flex-start;
    }

    .form__actions {
        flex-direction: column;
        align-items: stretch;
    }

    .form__actions .btn {
        width: 100%;
    }

    .admin-header__user {
        width: 100%;
        text-align: center;
        margin-bottom: 0.5rem;
    }
}

@media (max-width: 720px) {
    .hero {
        padding: 2rem 0;
    }

    .dashboard-main {
        padding: 2rem 0;
    }

    .card.card--frosted {
        padding: 1.5rem;
    }

    .form__checkbox {
        flex-direction: column;
        align-items: flex-start;
    }

    .tag-list {
        grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    }
}

@media (max-width: 640px) {
    .dashboard-main {
        padding: 2rem 0;
    }

    .card.card--frosted {
        padding: 1.5rem;
    }

    .form__checkbox {
        flex-direction: column;
        align-items: flex-start;
    }

    .tag-list {
        grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    }
}

.alert {
    border-radius: 1.5rem;
    padding: 1rem 1.25rem;
    font-size: 0.9rem;
    line-height: 1.5;
}

.alert--success {
    border: 1px solid rgba(50, 123, 246, 0.4);
    background: rgba(50, 123, 246, 0.12);
    color: rgba(178, 203, 255, 0.95);
}

.alert--error {
    border: 1px solid rgba(248, 113, 113, 0.35);
    background: rgba(248, 113, 113, 0.1);
    color: rgba(252, 165, 165, 0.95);
}

.alert__title {
    margin: 0 0 0.75rem;
    font-weight: 600;
}

.alert__list {
    margin: 0;
    padding-left: 1.25rem;
    list-style: disc;
    display: grid;
    gap: 0.35rem;
}

.form {
    display: grid;
    gap: 1.5rem;
}

.form__field {
    display: grid;
    gap: 0.75rem;
}

.form__label {
    font-weight: 600;
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    font-size: 0.9rem;
    color: var(--color-text);
}

.form__hint {
    font-size: 0.8rem;
    color: var(--color-text-muted);
}

.form__input,
.form input[type="text"],
.form input[type="email"],
.form input[type="password"],
.form input[type="tel"],
.form select,
.form textarea {
    width: 100%;
    padding: 1rem 1.25rem;
    border-radius: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(0, 0, 0, 0.25);
    color: var(--color-text);
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.3s ease;
}

.form__input:focus,
.form input[type="text"]:focus,
.form input[type="email"]:focus,
.form input[type="password"]:focus,
.form input[type="tel"]:focus,
.form select:focus,
.form textarea:focus {
    outline: none;
    border-color: rgba(50, 123, 246, 0.5);
    background: rgba(0, 0, 0, 0.35);
    box-shadow: 0 0 0 3px rgba(50, 123, 246, 0.1);
}

.form__input::placeholder,
.form input::placeholder,
.form textarea::placeholder {
    color: var(--color-text-muted);
    opacity: 0.6;
}

.form textarea {
    resize: vertical;
    min-height: 120px;
}

.form select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23999' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1.25rem center;
    padding-right: 3rem;
}

.form__error {
    font-size: 0.85rem;
    color: #ff6b6b;
    margin-top: -0.25rem;
}

.form__row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
}

.form__link {
    color: var(--color-brand);
    text-decoration: none;
    font-size: 0.875rem;
    transition: color 0.2s;
}

.form__link:hover {
    color: var(--color-brand-light);
    text-decoration: underline;
}

.form__control {
    display: grid;
    gap: 0.75rem;
    border-radius: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(0, 0, 0, 0.25);
    padding: 1.25rem 1.5rem;
}

.form__control--file {
    padding: 1.25rem 1.25rem 1.75rem;
}

.form input[type="range"] {
    width: 100%;
    accent-color: var(--color-brand);
}

.form input[type="file"] {
    width: 100%;
    font-size: 0.85rem;
    color: var(--color-text-muted);
    background: rgba(255, 255, 255, 0.04);
    border-radius: 1rem;
    padding: 0.75rem;
    border: 1px dashed rgba(255, 255, 255, 0.15);
}

.form input[type="file"]:focus {
    border-color: rgba(50, 123, 246, 0.5);
}

.form__checkbox {
    display: flex;
    gap: 0.75rem;
    font-size: 0.85rem;
    color: var(--color-text-muted);
}

.form__checkbox input[type="checkbox"] {
    width: 18px;
    height: 18px;
    border-radius: 5px;
    background: rgba(0, 0, 0, 0.35);
    border: 1px solid rgba(255, 255, 255, 0.2);
    accent-color: var(--color-brand);
}

.btn + .btn {
    margin-left: 0.5rem;
}

.btn--muted {
    background: rgba(255, 255, 255, 0.08);
    color: var(--color-text);
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    border-radius: 999px;
    background: rgba(50, 123, 246, 0.12);
    color: var(--color-brand);
    font-weight: 500;
    font-size: 0.85rem;
}

.slider-meta {
    display: flex;
    justify-content: space-between;
    font-size: 0.85rem;
    color: var(--color-text-muted);
}

.slider-meta--single {
    justify-content: flex-start;
}

.info-list {
    display: grid;
    gap: 0.6rem;
    font-size: 0.9rem;
    color: var(--color-text-muted);
}

.info-list__item {
    display: flex;
    justify-content: space-between;
}

.tag-list {
    display: grid;
    gap: 0.5rem;
}

.tag {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.45rem 0.9rem;
    border-radius: 0.9rem;
    background: rgba(0, 0, 0, 0.35);
    font-size: 0.75rem;
    color: rgba(178, 203, 255, 0.95);
}

.support-card {
    border-radius: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.05);
    padding: 1.5rem;
    text-align: center;
    display: grid;
    gap: 0.75rem;
    font-size: 0.9rem;
    color: var(--color-text-muted);
}

.support-card__title {
    margin: 0;
    font-size: 1.1rem;
    font-weight: 600;
    color: #fff;
}

.support-card a {
    color: var(--color-brand);
    font-weight: 600;
}

.section {
    padding: 5rem 0;
}

.section__heading {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 3rem;
    display: grid;
    gap: 0.75rem;
}

.section__title {
    font-size: clamp(2rem, 4vw, 2.7rem);
    margin: 0;
}

.section__subtitle {
    color: var(--color-text-muted);
    line-height: 1.6;
}

.features__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.5rem;
}

.feature-card__title {
    font-size: 1.3rem;
    margin: 0;
}

.feature-card__copy {
    margin: 1rem 0 0;
    line-height: 1.6;
    color: var(--color-text-muted);
}

.calculator__inner {
    display: grid;
    gap: 2.5rem;
    align-items: start;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.calculator__content {
    display: grid;
    gap: 1.5rem;
}

.form {
    display: grid;
    gap: 1.5rem;
}

.form__field {
    display: grid;
    gap: 0.8rem;
}

.form__label {
    font-weight: 600;
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    gap: 1rem;
}

.form__hint {
    font-size: 0.85rem;
    color: var(--color-text-muted);
}

.range-input {
    width: 100%;
    accent-color: var(--color-brand);
}

.slider-meta {
    display: flex;
    justify-content: space-between;
    font-size: 0.85rem;
    color: var(--color-text-muted);
}

.slider-meta--single {
    justify-content: flex-start;
}

.list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 0.9rem;
    color: var(--color-text-muted);
}

.list--check li {
    position: relative;
    padding-left: 1.9rem;
}

.list--check li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.4rem;
    width: 1rem;
    height: 1rem;
    border-radius: 50%;
    background: rgba(50, 123, 246, 0.2);
    border: 2px solid var(--color-brand);
}

.faq {
    display: grid;
    gap: 1rem;
}

.faq__item {
    border-radius: 1.4rem;
    border: 1px solid var(--color-border);
    background: rgba(9, 13, 27, 0.6);
    padding: 1.5rem 1.8rem;
    transition: border-color 0.2s ease, background 0.2s ease;
}

.faq__item[open] {
    border-color: rgba(50, 123, 246, 0.5);
    background: rgba(50, 123, 246, 0.14);
}

.faq__question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    font-weight: 600;
    cursor: pointer;
}

.faq__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: rgba(50, 123, 246, 0.16);
    color: var(--color-brand);
    font-size: 1.1rem;
    transition: transform 0.2s ease;
}

.faq__item[open] .faq__icon {
    transform: rotate(45deg);
}

.faq__answer {
    margin: 1rem 0 0;
    color: var(--color-text-muted);
    line-height: 1.6;
}

@media (max-width: 768px) {
    .faq-layout {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .faq-layout__aside {
        gap: 1rem;
    }

    .faq__item {
        padding: 1.25rem 1.4rem;
    }

    .faq__question {
        font-size: 0.95rem;
    }

    .faq__answer {
        font-size: 0.85rem;
    }
}

.support-card {
    margin-top: 2.5rem;
    text-align: center;
    display: grid;
    gap: 0.9rem;
}

.support-card a {
    color: var(--color-brand);
    font-weight: 600;
}

.site-footer {
    border-top: 1px solid var(--color-border);
    padding: 2rem 0;
    background: rgba(3, 6, 14, 0.95);
}

.site-footer__inner {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    justify-content: space-between;
    align-items: flex-start;
}

.site-footer__links {
    display: flex;
    gap: 1.5rem;
    color: var(--color-text-muted);
}

@media (max-width: 960px) {
    .primary-nav {
        position: fixed;
        inset: 0 0 auto;
        top: 72px;
        flex-direction: column;
        padding: 1.5rem;
        background: rgba(7, 11, 23, 0.95);
        transform: translateY(-140%);
        opacity: 0;
        visibility: hidden;
        transition: transform 0.3s ease, opacity 0.2s ease;
    }

    .primary-nav[data-open="true"] {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
        gap: 1.5rem;
    }

    .primary-nav__list {
        flex-direction: column;
        align-items: center;
        width: 100%;
    }

    .primary-nav__actions {
        width: 100%;
        flex-direction: column;
    }

    .primary-nav__actions .btn {
        width: 100%;
    }

    .nav-toggle {
        display: inline-flex;
    }

    .site-header__inner {
        padding: 1rem 0;
    }
}

@media (min-width: 640px) {
    .site-footer__inner {
        flex-direction: row;
        align-items: center;
    }
}

/* Auth Pages */
.auth-section {
    min-height: calc(100vh - 200px);
    display: flex;
    align-items: center;
    padding: 3rem 0;
}

.auth-layout {
    display: grid;
    gap: 3rem;
    max-width: 1100px;
    margin: 0 auto;
}

.auth-layout__content {
    width: 100%;
}

.auth-layout__sidebar {
    display: grid;
    gap: 1.5rem;
    align-content: start;
}

.auth-header {
    text-align: center;
    margin-bottom: 2rem;
}

.auth-header h1 {
    font-size: 1.75rem;
    margin-bottom: 0.5rem;
}

.auth-header p {
    color: var(--color-text-muted);
}

.auth-footer {
    text-align: center;
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.auth-footer p {
    color: var(--color-text-muted);
}

.auth-footer a {
    color: var(--color-brand);
    text-decoration: none;
    font-weight: 600;
}

.auth-footer a:hover {
    text-decoration: underline;
}

.auth-divider {
    margin: 1.5rem 0;
    text-align: center;
    position: relative;
}

.auth-divider::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 1px;
    background: rgba(255, 255, 255, 0.1);
}

.auth-divider span {
    position: relative;
    background: var(--color-bg);
    padding: 0 1rem;
    font-size: 0.85rem;
    color: var(--color-text-muted);
}

.auth-benefits h2 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.auth-benefits .list {
    gap: 0.75rem;
}

/* Content Layout */
.content-layout {
    display: grid;
    gap: 3rem;
    grid-template-columns: 1fr;
}

.content-layout__main {
    max-width: 100%;
}

.content-layout__sidebar {
    display: grid;
    gap: 1.5rem;
    align-content: start;
}

/* Legal Content */
.legal-content h2 {
    font-size: 1.5rem;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    color: var(--color-text);
}

.legal-content h2:first-child {
    margin-top: 0;
}

.legal-content h3 {
    font-size: 1.25rem;
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
    color: var(--color-text);
}

.legal-content p {
    margin-bottom: 1.25rem;
    line-height: 1.7;
    color: var(--color-text-muted);
}

.legal-content ul,
.legal-content ol {
    margin-bottom: 1.25rem;
    padding-left: 1.5rem;
    color: var(--color-text-muted);
    line-height: 1.7;
}

.legal-content li {
    margin-bottom: 0.5rem;
}

.legal-content a {
    color: var(--color-brand);
    text-decoration: none;
}

.legal-content a:hover {
    text-decoration: underline;
}

.legal-content strong {
    color: var(--color-text);
    font-weight: 600;
}

/* Link List */
.link-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 0.75rem;
}

.link-list a {
    color: var(--color-text-muted);
    text-decoration: none;
    transition: color 0.2s;
    display: block;
    padding: 0.5rem 0;
}

.link-list a:hover {
    color: var(--color-brand);
}

/* Status Page */
.status-result {
    max-width: 800px;
    margin: 0 auto;
    display: grid;
    gap: 2rem;
}

.status-header {
    text-align: center;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.status-header__badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    border-radius: 2rem;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.status-header__badge--under_review {
    background: rgba(255, 193, 7, 0.15);
    color: #ffc107;
}

.status-header__badge--approved {
    background: rgba(76, 175, 80, 0.15);
    color: #4caf50;
}

.status-header__badge--pending {
    background: rgba(158, 158, 158, 0.15);
    color: #9e9e9e;
}

.status-header__badge--declined {
    background: rgba(244, 67, 54, 0.15);
    color: #f44336;
}

.status-header h2 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.status-header p {
    color: var(--color-text-muted);
}

.status-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Timeline */
.timeline {
    margin-top: 2rem;
}

.timeline h3 {
    font-size: 1.125rem;
    margin-bottom: 1.5rem;
}

.timeline__item {
    position: relative;
    padding-left: 2.5rem;
    padding-bottom: 2rem;
}

.timeline__item:last-child {
    padding-bottom: 0;
}

.timeline__item::before {
    content: '';
    position: absolute;
    left: 0.5rem;
    top: 0;
    bottom: 0;
    width: 2px;
    background: rgba(255, 255, 255, 0.1);
}

.timeline__item:last-child::before {
    display: none;
}

.timeline__marker {
    position: absolute;
    left: 0;
    top: 0.25rem;
    width: 1.25rem;
    height: 1.25rem;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.3);
    background: var(--color-bg);
}

.timeline__item--completed .timeline__marker {
    background: var(--color-brand);
    border-color: var(--color-brand);
}

.timeline__item--in_progress .timeline__marker {
    background: #ffc107;
    border-color: #ffc107;
    animation: pulse 2s infinite;
}

.timeline__item--pending .timeline__marker {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
}

.timeline__content h4 {
    font-size: 1rem;
    margin-bottom: 0.25rem;
    color: var(--color-text);
}

.timeline__date {
    font-size: 0.875rem;
    color: var(--color-text-muted);
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.5;
    }
}

@media (min-width: 768px) {
    .auth-layout {
        grid-template-columns: 1fr 400px;
    }
    
    .content-layout {
        grid-template-columns: 1fr 350px;
    }
}

/* User Menu */
.user-menu {
    position: relative;
}

.user-menu__toggle {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.5rem 1rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.05);
    border-radius: 2rem;
    color: var(--color-text);
    cursor: pointer;
    transition: all 0.2s;
}

.user-menu__toggle:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
}

.user-avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--color-brand), var(--color-brand-dark));
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 0.875rem;
}

.user-name {
    font-size: 0.9rem;
    font-weight: 500;
}

.user-menu__dropdown {
    position: absolute;
    top: calc(100% + 0.5rem);
    right: 0;
    min-width: 200px;
    background: var(--color-card);
    border: 1px solid var(--color-card-border);
    border-radius: 1rem;
    padding: 0.5rem;
    display: none;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
    z-index: 100;
}

.user-menu__dropdown.active {
    display: block;
}

.user-menu__item {
    display: block;
    padding: 0.75rem 1rem;
    color: var(--color-text);
    text-decoration: none;
    border-radius: 0.5rem;
    transition: background 0.2s;
}

.user-menu__item:hover {
    background: rgba(255, 255, 255, 0.05);
}

.user-menu__divider {
    margin: 0.5rem 0;
    border: none;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Progress Steps */
.progress-steps {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin: 2rem 0 3rem;
}

.progress-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    position: relative;
}

.progress-step::after {
    content: '';
    position: absolute;
    left: 100%;
    top: 1.25rem;
    width: 2rem;
    height: 2px;
    background: rgba(255, 255, 255, 0.1);
}

.progress-step:last-child::after {
    display: none;
}

.progress-step__number {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    color: var(--color-text-muted);
}

.progress-step__label {
    font-size: 0.875rem;
    color: var(--color-text-muted);
}

.progress-step--active .progress-step__number {
    border-color: var(--color-brand);
    background: rgba(50, 123, 246, 0.15);
    color: var(--color-brand);
}

.progress-step--active .progress-step__label {
    color: var(--color-text);
}

.progress-step--complete .progress-step__number {
    border-color: #4caf50;
    background: rgba(76, 175, 80, 0.15);
    color: #4caf50;
}

.progress-step--complete .progress-step__label {
    color: var(--color-text);
}

/* Alert Styles */
.alert {
    padding: 1rem 1.5rem;
    border-radius: 0.75rem;
    margin-bottom: 1.5rem;
    border: 1px solid;
}

.alert__title {
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.alert__list {
    margin: 0.5rem 0 0 1.5rem;
}

.alert--success {
    background: rgba(76, 175, 80, 0.1);
    border-color: rgba(76, 175, 80, 0.3);
    color: #4caf50;
}

.alert--error {
    background: rgba(244, 67, 54, 0.1);
    border-color: rgba(244, 67, 54, 0.3);
    color: #f44336;
}

.alert--info {
    background: rgba(50, 123, 246, 0.1);
    border-color: rgba(50, 123, 246, 0.3);
    color: var(--color-brand);
}

.alert--warning {
    background: rgba(255, 152, 0, 0.1);
    border-color: rgba(255, 152, 0, 0.3);
    color: #ff9800;
}

/* Error Pages */
.error-page {
    text-align: center;
    padding: 4rem 2rem;
    max-width: 600px;
    margin: 0 auto;
}

.error-page__code {
    font-size: 8rem;
    font-weight: 700;
    line-height: 1;
    background: linear-gradient(135deg, var(--color-brand), var(--color-brand-dark));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
}

.error-page__title {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.error-page__message {
    font-size: 1.125rem;
    color: var(--color-text-muted);
    margin-bottom: 2rem;
}

.error-page__actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Admin Styles */
.admin-header {
    margin-bottom: 2rem;
}

.admin-header h1 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.admin-header p {
    color: var(--color-text-muted);
}

.form__row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

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

.btn--sm {
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
}

.primary-nav__link--active {
    color: var(--color-brand);
    font-weight: 600;
}

/* Stats Grid */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.stat-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 1rem;
    padding: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.stat-card--warning {
    border-color: rgba(255, 152, 0, 0.3);
    background: rgba(255, 152, 0, 0.05);
}

.stat-card--success {
    border-color: rgba(76, 175, 80, 0.3);
    background: rgba(76, 175, 80, 0.05);
}

.stat-card__icon {
    font-size: 2.5rem;
}

.stat-card__value {
    font-size: 2rem;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 0.25rem;
}

.stat-card__label {
    color: var(--color-text-muted);
    font-size: 0.875rem;
}

/* Quick Actions */
.quick-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

/* Data Table */
.table-responsive {
    overflow-x: auto;
}

.details-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

.details-grid--stack {
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
}

.details-list {
    display: grid;
    gap: 1rem;
}

.details-list div,
.details-list__item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
}

.details-list dt {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--color-text-muted);
}

.details-list dd {
    margin: 0;
    font-weight: 600;
}

.details-list--simple {
    list-style: none;
    padding: 0;
    margin: 0;
}

.details-summary {
    margin-bottom: 1rem;
    color: var(--color-text-muted);
}

.documents-list,
.notes-list,
.timeline {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 1rem;
}

.documents-list__name {
    font-weight: 600;
}

.documents-list__meta {
    display: block;
    font-size: 0.85rem;
    color: var(--color-text-muted);
    margin: 0.25rem 0;
}

.notes-list__meta {
    font-size: 0.85rem;
    color: var(--color-text-muted);
    display: flex;
    gap: 0.5rem;
    align-items: center;
    flex-wrap: wrap;
}

.notes-list p,
.timeline__notes {
    margin: 0.5rem 0 0;
    white-space: pre-wrap;
}

.timeline__item {
    display: grid;
    gap: 0.4rem;
    padding-left: 1.5rem;
    position: relative;
}

.timeline__item::before {
    content: '';
    position: absolute;
    left: 0.25rem;
    top: 0.25rem;
    bottom: 0;
    width: 2px;
    background: rgba(255, 255, 255, 0.1);
}

.timeline__item::after {
    content: '';
    position: absolute;
    left: 0;
    top: 0.25rem;
    width: 0.5rem;
    height: 0.5rem;
    border-radius: 50%;
    background: var(--color-brand);
}

.timeline__time {
    font-size: 0.85rem;
    color: var(--color-text-muted);
}

.timeline__content {
    background: rgba(255, 255, 255, 0.04);
    border-radius: 0.75rem;
    padding: 1rem;
}

.responsive-grid {
    display: grid;
    gap: 1.5rem;
}

.responsive-grid--two {
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
}

.form-grid {
    display: grid;
    gap: 1rem;
}

.form-grid--three {
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.form__actions {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.form__actions .btn {
    flex-shrink: 0;
}

.filters-form--inline {
    display: grid;
    gap: 1rem;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    align-items: end;
}

.stack {
    display: grid;
    gap: 0.75rem;
}

.empty-state {
    padding: 1rem;
    color: var(--color-text-muted);
}

.data-table--compact th,
.data-table--compact td {
    padding: 0.5rem;
}

.admin-header__user {
    font-size: 0.9rem;
    color: var(--color-text-muted);
}

.data-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 1rem;
}

.data-table th,
.data-table td {
    padding: 0.75rem;
    text-align: left;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.data-table th {
    font-weight: 600;
    color: var(--color-text-muted);
    font-size: 0.875rem;
    text-transform: uppercase;
}

.badge {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    border-radius: 0.5rem;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
}

.badge--pending {
    background: rgba(255, 152, 0, 0.2);
    color: #ff9800;
}

.badge--approved {
    background: rgba(76, 175, 80, 0.2);
    color: #4caf50;
}

.badge--declined {
    background: rgba(244, 67, 54, 0.2);
    color: #f44336;
}

/* Activity List */
.activity-list {
    margin-top: 1rem;
}

.activity-item {
    display: flex;
    gap: 1rem;
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

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

.activity-item__time {
    color: var(--color-text-muted);
    font-size: 0.875rem;
    min-width: 120px;
}

.activity-item__content {
    flex: 1;
    font-size: 0.9375rem;
}

/* Repayment Summary */
.repayment-summary {
    background: linear-gradient(135deg, rgba(50, 123, 246, 0.1), rgba(124, 58, 237, 0.1));
    border: 1px solid rgba(50, 123, 246, 0.3);
    border-radius: 1rem;
    padding: 1.5rem;
    margin: 2rem 0;
}

.repayment-summary__title {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--color-brand);
}

.repayment-summary__grid {
    display: grid;
    gap: 1rem;
}

.repayment-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 0.5rem;
}

.repayment-item__label {
    font-size: 0.9rem;
    color: var(--color-text-muted);
}

.repayment-item__value {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--color-text);
}

.repayment-item--total {
    background: rgba(50, 123, 246, 0.15);
    border: 1px solid rgba(50, 123, 246, 0.3);
    padding: 1rem 0.75rem;
}

.repayment-item--total .repayment-item__label {
    font-weight: 600;
    color: var(--color-text);
}

.repayment-item--total .repayment-item__value {
    font-size: 1.5rem;
    color: var(--color-brand);
}

/* Profile Setup */
.profile-setup {
    max-width: 800px;
    margin: 0 auto;
}

.profile-setup__header {
    text-align: center;
    margin-bottom: 2rem;
}

.profile-setup__header h1 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.profile-setup__content {
    display: grid;
    gap: 2rem;
}

.upload-form {
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.upload-success {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: rgba(76, 175, 80, 0.1);
    border: 1px solid rgba(76, 175, 80, 0.3);
    border-radius: 0.75rem;
    color: #4caf50;
}

.upload-success__icon {
    font-size: 1.5rem;
    font-weight: bold;
}

.profile-complete {
    text-align: center;
    padding: 2rem;
}

.profile-complete h2 {
    color: #4caf50;
    margin-bottom: 1rem;
}

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