:root {
    --primary-blue: #1a73e8;
    --accent-orange: #ff6a2b;
    --gradient-purple: linear-gradient(135deg, #6a5cf0, #8b5ce0);
    --text-dark: #14171f;
    --text-gray: #5f6368;
    --bg-light: #f8f9fb;
    --footer-navy: #0d1230;
}

body.eo-body {
    background: var(--bg-light);
    color: var(--text-dark);
    font-family: Inter, system-ui, -apple-system, "Segoe UI", sans-serif;
}

.eo-navbar {
    background: #fff;
    border-bottom: 1px solid #eee;
}

.eo-logo {
    color: var(--text-dark);
    font-weight: 700;
    font-size: 1.35rem;
}

.eo-logo:hover,
.eo-logo:focus {
    color: var(--text-dark);
}

.eo-nav-link {
    color: var(--text-gray);
    font-weight: 500;
    padding: 0.45rem 0.75rem;
    min-height: 44px;
    display: inline-flex;
    align-items: center;
}

.eo-nav-link:hover,
.eo-nav-link:focus,
.eo-nav-link.is-active {
    color: var(--text-dark);
    font-weight: 700;
}

.eo-pill-btn {
    border-radius: 999px;
    padding: 0.55rem 1rem;
    min-height: 44px;
    text-decoration: none;
    font-weight: 600;
    border: 1px solid transparent;
    line-height: 1.2;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.eo-pill-outline-orange {
    color: var(--accent-orange);
    border-color: var(--accent-orange);
    background: #fff;
}

.eo-pill-outline-orange:hover,
.eo-pill-outline-orange:focus {
    color: #fff;
    background: var(--accent-orange);
}

.eo-pill-outline-gray {
    color: var(--text-dark);
    border-color: #c7ccd4;
    background: #fff;
}

.eo-pill-outline-gray:hover,
.eo-pill-outline-gray:focus {
    color: var(--text-dark);
    border-color: #aab2bf;
}

.eo-pill-primary {
    color: #fff;
    background: var(--primary-blue);
    border-color: var(--primary-blue);
}

.eo-pill-primary:hover,
.eo-pill-primary:focus {
    color: #fff;
    background: #155ec0;
    border-color: #155ec0;
}

.eo-page-title {
    color: var(--text-dark);
    font-weight: 800;
    font-size: 32px;
    margin-bottom: 24px;
}

.eo-service-card {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.06);
    padding: 24px;
}

.eo-service-title {
    color: var(--text-dark);
    font-weight: 700;
    margin-bottom: 8px;
}

.eo-service-desc {
    color: var(--text-gray);
    margin-bottom: 20px;
}

.eo-docs-heading {
    color: var(--text-dark);
    font-size: 0.85rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.eo-docs-list {
    color: var(--text-gray);
    font-size: 0.88rem;
    padding-left: 1rem;
    margin-bottom: 20px;
}

.eo-docs-list li {
    margin-bottom: 0.2rem;
}

.eo-apply-btn {
    width: 100%;
    color: #fff;
    background: var(--primary-blue);
    border-radius: 8px;
    font-weight: 700;
    border: 0;
    padding: 0.6rem 1rem;
}

.eo-apply-btn:hover,
.eo-apply-btn:focus {
    color: #fff;
    background: #155ec0;
}

.eo-form-card {
    background: #fff;
    max-width: 700px;
    margin: 0 auto;
    padding: 32px;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.06);
}

.eo-field-row {
    margin-bottom: 20px;
}

.field-hint {
    display: block;
    color: #6c757d;
    font-size: 13px;
    margin-top: 4px;
}

.eo-field-label {
    display: block;
    color: var(--text-gray);
    font-size: 0.79rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    margin-bottom: 0.45rem;
}

.eo-form-card .form-control,
.eo-form-card .form-select {
    border: 1px solid #d9dde5;
    border-radius: 8px;
    min-height: 44px;
}

.eo-form-card .form-control:focus,
.eo-form-card .form-select:focus {
    border-color: var(--primary-blue);
    box-shadow: 0 0 0 0.2rem rgba(26, 115, 232, 0.15);
}

.eo-submit-btn {
    width: 100%;
    color: #fff;
    background: #1e8e5c;
    border: 0;
    border-radius: 8px;
    font-weight: 700;
    padding: 0.72rem 1rem;
}

.eo-submit-btn:hover,
.eo-submit-btn:focus {
    color: #fff;
    background: #187548;
}

.eo-footer {
    background: var(--footer-navy);
    color: #fff;
}

.eo-footer-title {
    font-weight: 700;
    margin-bottom: 0.65rem;
}

.eo-footer p,
.eo-footer a {
    color: var(--text-gray);
    text-decoration: none;
}

.eo-footer a:hover,
.eo-footer a:focus {
    color: #fff;
}

.eo-social-link {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.25);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--text-gray);
}

.auth-chip-btn,
.auth-chip-link {
    min-height: 44px;
}

@media (max-width: 768px) {
    .eo-navbar .container {
        align-items: stretch;
    }

    .eo-navbar .navbar-nav {
        width: 100%;
        gap: 0.5rem;
        justify-content: flex-start;
    }

    .eo-nav-link,
    .eo-pill-btn {
        width: 100%;
    }

    .auth-chip {
        width: 100%;
    }

    .auth-chip-btn {
        width: 100%;
        justify-content: space-between;
    }

    .auth-chip-menu {
        left: 0;
        right: 0;
        top: calc(100% + 6px);
    }

    .eo-social-link {
        width: 44px;
        height: 44px;
    }
}

.eo-social-link:hover,
.eo-social-link:focus {
    border-color: rgba(255, 255, 255, 0.45);
    color: #fff;
}

@media (max-width: 991px) {
    .eo-navbar .navbar-nav {
        align-items: flex-start !important;
        padding-top: 0.5rem;
    }
}

@media (max-width: 575px) {
    .eo-page-title {
        font-size: 28px;
    }

    .eo-form-card {
        padding: 22px;
    }
}

.status-widget {
    background: #1f1f1f;
    border-radius: 12px;
    padding: 1.5rem 1.25rem;
    color: #e6e6e6;
}

.status-stepper {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    position: relative;
}

.status-stepper-track {
    position: absolute;
    top: 11px;
    left: 22px;
    right: 22px;
    height: 2px;
    background: #444;
}

.status-stepper-progress {
    height: 100%;
    background: #3b82f6;
    transition: width 260ms ease;
}

.status-stepper-list {
    display: flex;
    width: 100%;
    list-style: none;
    margin: 0;
    padding: 0;
}

.status-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    flex: 1;
    z-index: 1;
    color: #8f8f8f;
}

.status-dot {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: #2b2b2b;
    border: 2px solid #5a5a5a;
    display: flex;
    align-items: center;
    justify-content: center;
}

.status-label {
    font-size: 12px;
    text-align: center;
}

.stage-done .status-dot {
    background: #3b82f6;
    border-color: #3b82f6;
}

.stage-done .status-label {
    color: #c7c7c7;
}

.status-check {
    color: #fff;
    font-size: 13px;
    line-height: 1;
}

.stage-current .status-dot {
    background: #3b82f6;
    border-color: #1f1f1f;
    animation: status-pulse 1.6s ease-in-out infinite;
}

.stage-current .status-label {
    color: #ffffff;
    font-weight: 600;
}

@keyframes status-pulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(59, 130, 246, 0.35); }
    50% { box-shadow: 0 0 0 6px rgba(59, 130, 246, 0.2); }
}

@media (prefers-reduced-motion: reduce) {
    .stage-current .status-dot {
        animation: none;
    }

    .status-stepper-progress {
        transition: none;
    }
}

@media (max-width: 767px) {
    .status-widget {
        padding: 1rem;
    }

    .status-stepper-list {
        flex-wrap: wrap;
        gap: 0.75rem 0;
    }

    .status-step {
        min-width: 50%;
    }

    .status-stepper-track {
        display: none;
    }
}
