:root {
    --primary-color: #0bbf6b;
    --secondary-color: #233048;
    --accent-color: #00a3ff;
    --dark-color: #0b1220;
    --light-color: #f7f9fc;
    --bs-primary: #0bbf6b;
    --bs-dark: #0b1220;
    --bs-body-bg: #ffffff;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Fira Sans', 'Droid Sans', 'Helvetica Neue', Arial, sans-serif;
    color: #1b2336;
    background-color: #ffffff;
}

.hover-up {
    transition: transform 0.3s ease;
}

.hover-up:hover {
    transform: translateY(-5px);
}

.hero {
    background-size: cover;
    background-position: center;
    position: relative;
    min-height: 70vh;
    display: flex;
    align-items: center;
}
.hero.hero--contain {
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    background-color: var(--dark-color);
}
.hero.hero--pos-left { background-position: left center; }
.hero.hero--pos-right { background-position: right center; }
.hero.hero--pos-top { background-position: center top; }
.hero.hero--pos-bottom { background-position: center bottom; }
.hero.hero--pos-top-left { background-position: left top; }
.hero.hero--pos-top-right { background-position: right top; }
.hero.hero--pos-bottom-left { background-position: left bottom; }
.hero.hero--pos-bottom-right { background-position: right bottom; }

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(11,18,32,0.55) 0%, rgba(11,18,32,0.30) 55%, rgba(11,18,32,0.10) 100%);
}

.hero .container {
    position: relative;
    z-index: 1;
    padding-top: 2rem;
    padding-bottom: 3rem;
}

.hero-fader {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity .9s ease;
    z-index: 0;
}
.hero.hero--contain .hero-fader {
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}
.hero.hero--pos-left .hero-fader { background-position: left center; }
.hero.hero--pos-right .hero-fader { background-position: right center; }
.hero.hero--pos-top .hero-fader { background-position: center top; }
.hero.hero--pos-bottom .hero-fader { background-position: center bottom; }
.hero.hero--pos-top-left .hero-fader { background-position: left top; }
.hero.hero--pos-top-right .hero-fader { background-position: right top; }
.hero.hero--pos-bottom-left .hero-fader { background-position: left bottom; }
.hero.hero--pos-bottom-right .hero-fader { background-position: right bottom; }

.hero-fader.fade-in {
    opacity: 1;
}

.hero-title {
    font-weight: 800;
    line-height: 1.1;
    text-shadow: 0 4px 24px rgba(0,0,0,0.35);
}

.title-highlight {
    background: rgba(255,255,255,0.88);
    color: #0b1220;
    padding: 8px 14px;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(27,35,54,0.15);
}

.hero-graphics {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
}

.hero-band {
    height: 140px;
    background: linear-gradient(90deg, var(--primary-color), #18d685);
    clip-path: polygon(0 40%, 100% 10%, 100% 100%, 0% 100%);
}

.hero-car {
    display: none;
}

.hero-device {
    display: none;
}
.btn-gradient {
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    border: none;
    color: #fff;
    box-shadow: 0 8px 24px rgba(11, 191, 107, 0.35);
}

@media (min-width: 992px) {
    .hero-car {
        position: absolute;
        left: 6%;
        bottom: 24px;
        width: 34%;
        border-radius: 14px;
        box-shadow: 0 16px 40px rgba(27,35,54,0.22);
        display: block;
    }
    .hero-device {
        position: absolute;
        right: 6%;
        bottom: 42px;
        width: 16%;
        border-radius: 16px;
        box-shadow: 0 16px 40px rgba(27,35,54,0.22);
        display: block;
    }
}

.about-figure {
    position: relative;
}

.about-figure-label {
    position: absolute;
    left: 18px;
    bottom: 18px;
    background: rgba(11,18,32,0.75);
    color: #fff;
    padding: 6px 12px;
    border-radius: 999px;
    font-size: 14px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.2);
}

.btn-gradient:hover {
    opacity: 0.95;
    color: #fff;
}

.section-title {
    text-transform: uppercase;
    letter-spacing: .08em;
    font-weight: 700;
    color: var(--primary-color);
}

.underline {
    width: 64px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    border-radius: 999px;
    margin: 16px auto 0;
}

.feature-card {
    border: 1px solid #eef2f8;
    border-radius: 16px;
    padding: 28px;
    background: #fff;
    box-shadow: 0 6px 24px rgba(27,35,54,0.06);
    transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
}

.feature-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 32px rgba(27,35,54,0.1);
    border-color: rgba(11,191,107,0.35);
}

.icon-box {
    width: 72px;
    height: 72px;
    border-radius: 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(11,191,107,0.15), rgba(0,163,255,0.15));
    color: var(--primary-color);
    box-shadow: inset 0 0 0 1px rgba(11,191,107,0.25);
}

.stats {
    background: linear-gradient(180deg, var(--dark-color), #111a2f);
}

.stat-box {
    border-radius: 16px;
    padding: 24px 18px;
    background: rgba(255,255,255,0.08);
    backdrop-filter: blur(4px);
}

.stat-number {
    font-size: 42px;
    font-weight: 800;
    color: #fff;
}

.stat-label {
    color: rgba(255,255,255,0.75);
}

.progress-wrap .progress {
    height: 8px;
    border-radius: 999px;
    background-color: #e9eef5;
}

.progress-wrap .progress-bar {
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    border-radius: 999px;
}

.navbar {
    transition: all .3s ease;
}

.navbar.scrolled {
    box-shadow: 0 10px 28px rgba(27,35,54,0.12);
    background-color: #fff !important;
}

.top-bar {
    background: var(--dark-color) !important;
}

.footer-gradient {
    border-top: 4px solid transparent;
    position: relative;
}

.footer-gradient::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
}
 
.contact-form-card {
    border-radius: 18px;
}
.contact-form-card .form-control {
    border-radius: 12px;
    border-color: #e5ebf5;
}
.contact-form-card .form-control:focus {
    box-shadow: 0 0 0 .25rem rgba(11,191,107,.15);
    border-color: var(--primary-color);
}
.contact-form-card .btn-primary {
    padding: 12px 24px;
    border-radius: 12px;
    box-shadow: 0 10px 24px rgba(11,191,107,.18);
}
.contact-form-card .form-floating>label {
    color: #6b7a99;
}
.contact-form-card .g-recaptcha {
    transform: scale(1);
    transform-origin: left top;
}
.contact-form-wide {
    width: 100%;
}
