:root {
    --brand-primary: #1f5bff;
    --brand-secondary: #133882;
    --brand-accent: #00c4ff;
    --brand-dark: #091123;
    --brand-light: #f5f8ff;
    --gradient-hero: linear-gradient(135deg, #1f5bff 0%, #00c4ff 100%);
    --font-family-base: 'Manrope', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-family-base);
    color: var(--brand-dark);
    background-color: #fff;
}

a {
    text-decoration: none;
}

a:hover {
    text-decoration: none;
}

.text-accent {
    color: var(--brand-accent) !important;
}

.top-nav {
    position: sticky;
    top: 0;
    z-index: 1080;
    background: rgba(255, 255, 255, 0.94);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(17, 34, 68, 0.08);
    transition: background 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
}

.top-nav.is-scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 18px 36px rgba(9, 17, 35, 0.08);
}

.utility-bar {
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    padding: 0.65rem 0;
    background: linear-gradient(90deg, rgba(9, 17, 35, 0.9) 0%, rgba(19, 56, 130, 0.92) 100%);
}

.top-nav.is-scrolled .utility-bar {
    height: 0;
    opacity: 0;
    visibility: hidden;
    overflow: hidden;
    padding: 0;
    margin: 0;
    border-bottom: 0;
}

.utility-bar a {
    transition: color 0.2s ease;
}

.utility-bar a:hover {
    color: #fff !important;
}

.utility-bar__left span,
.utility-bar__right span {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.85rem;
}

.top-nav .navbar {
    background: transparent;
    padding: 1.25rem 0;
    transition: padding 0.3s ease;
}

.top-nav.is-scrolled .navbar {
    padding: 0.85rem 0;
}

.top-nav .navbar-brand {
    font-size: 1.1rem;
    letter-spacing: 0.05rem;
}

.brand-mark {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    background: var(--gradient-hero);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.4rem;
}

.top-nav .navbar-nav {
    gap: 0.35rem;
}

.nav-link {
    font-weight: 600;
    font-size: 0.98rem;
    color: var(--brand-dark) !important;
    padding: 0.65rem 1rem !important;
    margin: 0 0.05rem;
    border-radius: 14px;
    position: relative;
    display: inline-flex;
    align-items: center;
    transition: color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}

.nav-link.active,
.nav-link:hover {
    color: var(--brand-primary) !important;
    background: rgba(31, 91, 255, 0.12);
}

.nav-cta-btn {
    padding: 0.75rem 1.6rem;
    border-radius: 999px;
    font-weight: 600;
    box-shadow: 0 12px 30px rgba(31, 91, 255, 0.25);
}

.nav-cta-btn:hover,
.nav-cta-btn:focus {
    box-shadow: 0 16px 36px rgba(19, 56, 130, 0.3);
}

.nav-cta-mobile {
    border-radius: 999px;
    font-weight: 600;
    padding: 0.55rem 1.1rem;
    box-shadow: 0 12px 24px rgba(31, 91, 255, 0.18);
}

.navbar-toggler {
    border: 0;
    padding: 0.35rem 0.45rem;
    border-radius: 10px;
    background: rgba(31, 91, 255, 0.12);
}

.navbar-toggler:focus {
    box-shadow: 0 0 0 0.2rem rgba(31, 91, 255, 0.25);
}

.hero-section {
    background: var(--gradient-hero);
    color: #fff;
    padding: 8rem 0 6rem;
    position: relative;
    overflow: hidden;
}

.hero-section::after {
    content: "";
    position: absolute;
    top: -10%;
    right: -20%;
    width: 50rem;
    height: 50rem;
    background: rgba(255, 255, 255, 0.08);
    filter: blur(40px);
    border-radius: 50%;
    z-index: 0;
}

.hero-copy {
    position: relative;
    z-index: 1;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.12);
    color: #fff;
    padding: 0.6rem 1.1rem;
    border-radius: 999px;
    font-weight: 600;
    letter-spacing: 0.05rem;
    backdrop-filter: blur(8px);
}

.hero-stats {
    margin-top: 2.5rem;
}

.hero-stats .stat-box {
    background: rgba(255, 255, 255, 0.12);
    border-radius: 20px;
    padding: 1.5rem;
    backdrop-filter: blur(12px);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.section {
    padding: 5rem 0;
}

.section-title {
    margin-bottom: 1rem;
    font-weight: 700;
}

.section-kicker {
    display: inline-block;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.15rem;
    color: var(--brand-primary);
    margin-bottom: 0.75rem;
}

.card-service {
    border: 0;
    border-radius: 24px;
    padding: 2rem;
    background: #fff;
    box-shadow: 0 24px 60px rgba(17, 34, 68, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
}

.card-service:hover {
    transform: translateY(-10px);
    box-shadow: 0 32px 70px rgba(17, 34, 68, 0.12);
}

.card-service .icon {
    width: 60px;
    height: 60px;
    border-radius: 16px;
    background: rgba(31, 91, 255, 0.12);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--brand-primary);
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
}

.highlight-list li {
    margin-bottom: 1rem;
    padding-left: 1.5rem;
    position: relative;
}

.highlight-list li::before {
    content: '\f26e';
    font-family: 'bootstrap-icons';
    position: absolute;
    left: 0;
    color: var(--brand-primary);
}

.testimonial-card {
    border-radius: 20px;
    padding: 2rem;
    background: var(--brand-light);
    border: 0;
}

.avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
}

.process-step {
    position: relative;
    padding-left: 2.5rem;
}

.process-step::before {
    content: attr(data-step);
    position: absolute;
    left: 0;
    top: 0;
    width: 2rem;
    height: 2rem;
    border-radius: 12px;
    background: var(--brand-primary);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
}

.team-card {
    border: 0;
    border-radius: 24px;
    padding: 2rem;
    height: 100%;
    background: #fff;
    box-shadow: 0 18px 40px rgba(14, 35, 80, 0.12);
}

.team-card .role {
    color: var(--brand-primary);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.faq-accordion .accordion-button {
    font-weight: 600;
    border-radius: 12px !important;
}

.faq-accordion .accordion-item {
    border: 0;
    margin-bottom: 1rem;
    border-radius: 16px;
    box-shadow: 0 12px 40px rgba(14, 35, 80, 0.08);
}

.contact-card {
    border-radius: 20px;
    border: 0;
    padding: 2rem;
    background: #fff;
    box-shadow: 0 24px 60px rgba(17, 34, 68, 0.08);
}

.contact-card .icon-circle {
    width: 48px;
    height: 48px;
    border-radius: 16px;
    background: rgba(31, 91, 255, 0.12);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--brand-primary);
}

.career-card {
    border-radius: 20px;
    border: 1px solid rgba(31, 91, 255, 0.1);
    padding: 2rem;
    background: #fff;
    box-shadow: 0 20px 50px rgba(14, 35, 80, 0.1);
    transition: transform 0.3s ease;
}

.career-card:hover {
    transform: translateY(-8px);
}

.job-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.job-meta span {
    background: var(--brand-light);
    color: var(--brand-primary);
    padding: 0.35rem 0.8rem;
    border-radius: 999px;
    font-weight: 600;
    font-size: 0.85rem;
}

.footer {
    background: var(--brand-dark);
}

.footer a:hover {
    color: var(--brand-accent) !important;
}

.btn-primary {
    background: var(--brand-primary);
    border: none;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.btn-primary:hover,
.btn-primary:focus {
    background: var(--brand-secondary);
    box-shadow: 0 10px 30px rgba(31, 91, 255, 0.4);
    transform: translateY(-2px);
}

.badge-soft {
    background: rgba(31, 91, 255, 0.12);
    color: var(--brand-primary);
    border-radius: 999px;
    padding: 0.35rem 0.75rem;
    font-weight: 600;
}

.cookie-banner {
    position: fixed;
    bottom: 1.5rem;
    left: 50%;
    transform: translate(-50%, 30px);
    width: min(520px, calc(100% - 4rem));
    background: #fff;
    border-radius: 20px;
    padding: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1.5rem;
    border: 1px solid rgba(17, 34, 68, 0.08);
    box-shadow: 0 30px 60px rgba(9, 17, 35, 0.15);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.35s ease, transform 0.35s ease, visibility 0.35s ease;
    z-index: 2000;
}

.cookie-banner.show {
    opacity: 1;
    visibility: visible;
    transform: translate(-50%, 0);
}

.cookie-content {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.cookie-icon {
    width: 48px;
    height: 48px;
    border-radius: 16px;
    background: rgba(31, 91, 255, 0.12);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--brand-primary);
    font-size: 1.5rem;
}

.cookie-actions {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

@media (max-width: 991.98px) {
    .hero-section {
        padding: 6rem 0 4rem;
    }
    .hero-stats {
        gap: 1rem;
    }
}

@media (max-width: 575.98px) {
    .top-nav .navbar {
        padding: 1rem 0;
    }
    .hero-section {
        text-align: center;
    }
    .hero-badge {
        justify-content: center;
    }
    .hero-stats {
        flex-direction: column;
    }
    .cookie-banner {
        width: calc(100% - 2rem);
        bottom: 1rem;
        transform: translate(-50%, 24px);
        flex-direction: column;
        align-items: stretch;
    }
    .cookie-actions {
        flex-direction: row;
        justify-content: flex-end;
    }
}

[data-animate] {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

[data-animate].visible {
    opacity: 1;
    transform: translateY(0);
}
