:root {
    --primary: #0d6efd;
    --dark: #0a0f1a;
    --muted: #6c757d;
    --surface: #ffffff;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    background: radial-gradient(circle at top right, rgba(13, 110, 253, 0.15), transparent 45%),
        radial-gradient(circle at 20% 20%, rgba(13, 110, 253, 0.08), transparent 50%),
        #050d26;
    color: #f8f9fa;
    min-height: 100vh;
}

.site-header {
    background: linear-gradient(135deg, rgba(5, 13, 38, 0.98), rgba(6, 12, 60, 0.96));
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.navbar {
    font-size: 0.95rem;
}

.navbar-nav .nav-link {
    color: rgba(248, 249, 250, 0.85);
}

.navbar-nav .nav-link:hover {
    color: #ffffff;
}

.hero-section {
    padding: 6rem 0 4rem;
}

.hero-card .card {
    background: #030714 !important;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #f8f9fa !important;
}

.hero-card .card-body {
    color: #f8f9fa;
}

.hero-card .card-title,
.hero-card .card-text,
.hero-card li,
.hero-card p {
    color: #eff3ff !important;
}

.hero-card .card-text {
    color: #e6ebff !important;
}

.hero-section h1,
.hero-section .lead,
.hero-section .eyebrow {
    color: #ffffff;
}

.section-heading .text-muted,
.section-heading > p {
    color: #f8f9fa !important;
}

.hero-card .text-muted,
.site-footer .text-muted,
#contact .text-muted {
    color: rgba(248, 249, 250, 0.85) !important;
}

.section-heading h2 {
    color: #ffffff;
}

.service-card h3 {
    color: #ffffff;
}

#cases .case-card {
    background: rgba(255, 255, 255, 0.95);
}

#cases .case-card h3,
#cases .case-card p {
    color: #0c1326;
}

.bullet-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--primary);
    margin-top: 0.5rem;
    display: inline-block;
}

.eyebrow {
    font-size: 0.85rem;
    letter-spacing: 0.2em;
    color: rgba(248, 249, 250, 0.7);
}

main {
    background: #0c142a;
}

section .section-heading h2 {
    margin-bottom: 0.5rem;
}

.service-card,
.process-card,
.case-card {
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.03);
    color: #f8f9fa;
}

.service-icon {
    width: 120px;
    height: 120px;
    margin-bottom: 1rem;
    border-radius: 1.25rem;
    background: radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.15), rgba(13, 12, 60, 0.85));
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 25px 45px rgba(5, 7, 20, 0.65);
}

.service-icon img {
    width: 85%;
    height: 85%;
    object-fit: contain;
}

.service-card ul {
    padding-left: 1rem;
    margin-bottom: 0;
    color: rgba(248, 249, 250, 0.85);
}

.process-section {
    background: #050b23;
    color: #f8f9fa;
}

.process-section .card {
    border-color: rgba(255, 255, 255, 0.05);
    background: rgba(255, 255, 255, 0.02);
}

.process-section .process-card .step-number {
    color: #9bcaff;
}

.bg-light {
    background-color: #f5f6fa !important;
    color: #0c1326 !important;
}

.bg-light h2,
.bg-light h3,
.bg-light p,
.bg-light li {
    color: inherit;
}

.process-card .step-number {
    font-weight: 600;
    font-size: 1.2rem;
    color: var(--primary);
}

.badges-wrap {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.badges-wrap .badge {
    font-size: 0.85rem;
    letter-spacing: 0.05em;
    padding: 0.65rem 0.9rem;
}

.site-footer {
    background: #030714;
    color: #f8f9fa;
}

.site-footer .text-muted {
    color: #f8f9fa;
}

.site-footer a {
    color: var(--primary);
}

form {
    background: rgba(255, 255, 255, 0.02);
    padding: 1.5rem;
    border-radius: 0.75rem;
}

.form-control,
.form-select,
.form-text {
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #f8f9fa;
}

.form-select option,
.form-select optgroup {
    color: #0c1326;
    background: #ffffff;
}

.form-control:focus,
.form-select:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 0.2rem rgba(13, 110, 253, 0.25);
}

#contact-status.success {
    color: #82fbd1;
}

#contact-status.error {
    color: #ff9c9c;
}

@media (max-width: 768px) {
    .hero-section {
        padding: 4rem 0;
    }

    .navbar {
        padding-left: 0;
        padding-right: 0;
    }
}
