:root{
--primary:#00C46A;
--primary-light:#34E89E;
--primary-dark:#008F4D;
--bg:#F5F8F7;
--surface:#FFFFFF;
--surface-dark:#141A17;
--text:#1E2523;
--text-light:#6B7B75;
--border:#E2ECE8;
--glass:rgba(255,255,255,.55);
--shadow: 0 15px 40px rgba(0,0,0,.08);
--radius:22px;
--transition:.35s ease;
}

/* 🟢 Əsas bədən */
body{
margin:0;
font-family:'Inter',sans-serif;
background: radial-gradient(circle at top,#ffffff,#edf7f2 60%,#e7f5ee);
color:var(--text);
overflow-x:hidden;
transition:.4s;
}

body.dark-mode{
background: linear-gradient(180deg,#08130F,#0E1915);
color:#F5F5F5;
}

::selection{
background:#00C46A;
color:white;
}

::-webkit-scrollbar{
width:10px;
}

::-webkit-scrollbar-track{
background:#EDF5F1;
}

::-webkit-scrollbar-thumb{
background:#00C46A;
border-radius:50px;
}

::-webkit-scrollbar-thumb:hover{
background:#009D56;
}

*{
box-sizing:border-box;
scroll-behavior:smooth;
}

a{
text-decoration:none;
transition:.3s;
color:inherit;
}

button{
border:none;
cursor:pointer;
transition:.35s;
font-weight:600;
font-family:inherit;
}

.glass{
background: rgba(255,255,255,.55);
backdrop-filter:blur(16px);
border: 1px solid rgba(255,255,255,.35);
box-shadow: 0 15px 40px rgba(0,0,0,.08);
border-radius:22px;
}

body.dark-mode .glass{
background: rgba(255,255,255,.05);
border: 1px solid rgba(255,255,255,.08);
}

.btn-main{
padding: 15px 34px;
background: linear-gradient(90deg,#00C46A,#34E89E);
border-radius:50px;
color:white;
font-weight:700;
box-shadow: 0 15px 35px rgba(0,196,106,.35);
transition:.35s;
}

.btn-main:hover{
transform: translateY(-4px);
box-shadow: 0 20px 45px rgba(0,196,106,.55);
}

section{
padding: 90px 0;
position:relative;
}

.container{
max-width:1200px;
}

.glow{
position:absolute;
width:600px;
height:600px;
background: radial-gradient(circle, rgba(0,196,106,.18), transparent 70%);
filter:blur(60px);
pointer-events:none;
}

.fade-up{
opacity:0;
transform: translateY(40px);
animation: fadeUp .9s forwards;
}

@keyframes fadeUp{

    to{
    opacity:1;
    transform:none;
    }

}

.float{
    animation: floating 5s ease-in-out infinite;
}

@keyframes floating{

    0%,100%{
        transform:translateY(0);
    }

    50%{
        transform:translateY(-12px);
    }

}

@keyframes carMove {
    0% { left: -200px; transform: scale(1); }
    50% { left: 45%; transform: scale(1.1); }
    100% { left: 110%; transform: scale(1); }
}

/* 📋 Xidmətlər */
section.services {
    padding: 100px 20px;
    background: linear-gradient(to bottom, #ffffff, #f9f9f9);
}
body.dark-mode section.services {
    background: linear-gradient(to bottom, #01281a, #004f2d);
}
.service-card {
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 16px;
    color: #333;
    transition: transform 0.4s, box-shadow 0.4s;
}
.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}
body.dark-mode .service-card {
    background: rgba(255,255,255,0.08);
    border: none;
    color: #fff;
}

/* 📰 Xəbərlər */
.news {
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 12px;
    width: 90%;
    max-width: 800px;
    margin: 30px auto;
    padding: 20px;
    text-align: center;
    color: #333;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}
body.dark-mode .news {
    background: rgba(0,0,0,0.4);
    color: white;
    border: none;
}

/* 🔗 Sosial bağlantılar və footer */
.socials {
    text-align: center;
    margin: 20px 0;
}
.socials a {
    color: var(--theme);
    margin: 0 10px;
    font-size: 22px;
    text-decoration: none;
}
body.dark-mode .socials a {
    color: white;
}
footer {
    background: #f2f2f2;
    text-align: center;
    padding: 15px;
    font-size: 14px;
    color: #666;
    border-top: 1px solid #ddd;
}
body.dark-mode footer {
    background: var(--dark);
    color: #ccc;
    border-top: none;
}

@keyframes fadeInZoom {
    to { opacity: 1; transform: scale(1); }
}

/* =========================================================
   PREMIUM HEADER
========================================================= */

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 9999;
    padding: 18px 30px;
    background: transparent;
    transition: background .4s ease,
        padding .4s ease,
        box-shadow .4s ease;
}

.site-header.scrolled {
    padding: 10px 30px;
    background: rgba(255,255,255,.72);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    box-shadow: 0 10px 35px rgba(0,0,0,.06);
}

body.dark-mode .site-header.scrolled {
    background: rgba(10,20,15,.78);
    box-shadow: 0 10px 35px rgba(0,0,0,.25);
}


.header-inner {
    max-width: 1250px;
    margin: auto;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}


/* =========================================================
   BRAND
========================================================= */

.brand {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--text-light);
}

.brand:hover {
    color: var(--theme);
}

.brand-icon {
    width: 46px;
    height: 46px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    background: linear-gradient(135deg,
        var(--theme),
        #00d98a);
    color: white;
    font-size: 21px;
    box-shadow: 0 8px 25px rgba(0,139,85,.25);
    transition: .35s;
}

.brand:hover .brand-icon {
    transform: rotate(-8deg) scale(1.08);
}

.brand-text {
    display: flex;
    flex-direction: column;
    line-height: 1.05;
}

.brand-text strong {
    font-size: 18px;
    letter-spacing: 2px;
}

.brand-text span {
    margin-top: 5px;
    font-size: 8px;
    letter-spacing: 1.7px;
    opacity: .65;
}


/* =========================================================
   NAVIGATION
========================================================= */

.main-nav {
    display: flex;
    align-items: center;
    gap: 8px;
}

.main-nav a {
    position: relative;
    display: flex;
    align-items: center;
    gap: 7px;
    padding: 10px 15px;
    border-radius: 12px;
    font-size: 13px;
    font-weight: 600;
    color: var(--text-light);
    transition: .3s;
}

.main-nav a i {
    color: var(--theme);
}

.main-nav a:hover {
    color: var(--theme);
    background: rgba(0,139,85,.07);
}


/* =========================================================
   HEADER ACTIONS
========================================================= */

.header-actions {
    display: flex;
    align-items: center;
    gap: 10px;
}

.theme-toggle {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255,255,255,.65);
    color: var(--theme);
    box-shadow: 0 5px 20px rgba(0,0,0,.06);
    transition: .35s;
}

.theme-toggle:hover {
    transform: rotate(20deg) scale(1.08);
    background: var(--theme);
    color: white;
}


.login-btn {
    display: flex;
    align-items: center;
    gap: 9px;
    padding: 12px 21px;
    border-radius: 50px;
    background: linear-gradient(
            135deg,
            var(--theme),
            #00d98a
        );

    color: var(--theme);
    box-shadow:0 10px 25px rgba(0,139,85,.25);
    font-size: 13px;
}

.login-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(0,139,85,.38);
    color: var(--theme);
}

.login-btn i {
    font-size: 11px;
}


/* =========================================================
   MOBILE MENU
========================================================= */

.mobile-menu-btn {
    display: none;
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: rgba(255,255,255,.7);
    color: var(--theme);
    font-size: 18px;
}

.mobile-nav {
    display: none;
}


/* =========================================================
   PREMIUM HERO
========================================================= */

.premium-hero {
    min-height: 100vh;
    padding: 130px 30px
        50px;

    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    overflow: hidden;
    background: linear-gradient(
            135deg,
            #ffffff 0%,
            #f4fbf8 50%,
            #e8f7f0 100%
        );
}

body.dark-mode .premium-hero {
    background:  radial-gradient(
            circle at 80% 30%,
            rgba(0,196,106,.12),
            transparent 40%
        ),
        linear-gradient(
            135deg,
            #08130f,
            #0d2118
        );
}


/* =========================================================
   HERO GRID
========================================================= */

.hero-grid {
    position: absolute;
    inset: 0;
    opacity: .35;
    background-image: linear-gradient(
            rgba(0,139,85,.04) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(0,139,85,.04) 1px,
            transparent 1px
        );
    background-size: 55px 55px;
    mask-image: linear-gradient(
            to bottom,
            black,
            transparent
        );
    pointer-events: none;
}


/* =========================================================
   HERO GLOW
========================================================= */

.hero-glow {
    position: absolute;
    width: 550px;
    height: 550px;
    border-radius: 50%;
    background: radial-gradient(
            circle,
            rgba(0,196,106,.16),
            transparent 68%
        );
    filter: blur(20px);
    pointer-events: none;
}

.hero-glow-1 {
    top: -200px;
    left: -180px;
}

.hero-glow-2 {
    right: -150px;
    bottom: -250px;
}


/* =========================================================
   HERO CONTENT
========================================================= */

.hero-content {
    width: 100%;
    max-width: 1250px;
    margin: auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 50px;
    position: relative;
    z-index: 2;
}


/* =========================================================
   HERO TEXT
========================================================= */

.hero-text {
    max-width: 650px;
}

.hero-badge {
    width: fit-content;
    display: flex;
    align-items: center;
    gap: 9px;
    padding: 8px 14px;
    margin-bottom: 25px;
    border-radius: 50px;
    background: rgba(0,139,85,.08);
    border: 1px solid rgba(0,139,85,.12);
    color: var(--theme);
    font-size: 12px;
    font-weight: 600;
}

.status-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #00d98a;
    box-shadow: 0 0 0 5px
        rgba(0,217,138,.12);
    animation: pulseStatus 2s infinite;
}

@keyframes pulseStatus {

    0%,100% {
        box-shadow: 0 0 0 5px
            rgba(0,217,138,.12);
    }

    50% {
        box-shadow: 0 0 0 10px
            rgba(0,217,138,.03);
    }

}


.hero-text h1 {
    margin: 0;
    font-size: clamp(2.7rem, 5vw, 5rem);
    line-height: 1.03;
    font-weight: 800;
    letter-spacing: -3px;
    color: #17221e;
}

body.dark-mode .hero-text h1 {
    color: white;
}

.hero-text h1 span {
    display: inline-block;
    color: var(--theme);
    background: linear-gradient(
            90deg,
            var(--theme),
            #00d98a
        );
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}


.hero-description {
    max-width: 560px;
    margin: 25px 0 30px;
    font-size: 16px;
    line-height: 1.8;
    color: #66746e;
}

body.dark-mode .hero-description {
    color: #b6c8c0;
}


/* =========================================================
   HERO BUTTONS
========================================================= */

.hero-actions {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
}

.hero-main-btn {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 7px 20px 7px 8px;
    border-radius: 50px;
    background: linear-gradient(
            135deg,
            #008b55,
            #00d98a
        );
    color: white;
    font-size: 14px;
    box-shadow: 0 15px 35px
        rgba(0,139,85,.28);
}

.hero-main-btn:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 45px
        rgba(0,139,85,.4);
    color: white;
}

.btn-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255,255,255,.2);
}

.btn-arrow {
    margin-left: 8px;
    transition: .3s;
}

.hero-main-btn:hover .btn-arrow {
    transform: translateX(5px);
}


.hero-secondary-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 13px 20px;
    border-radius: 50px;
    color: var(--text-light);
    border: 1px solid rgba(0,139,85,.15);
    background: rgba(255,255,255,.5);
    font-size: 13px;
    font-weight: 600;
}

.hero-secondary-btn:hover {
    color: var(--theme);
    transform: translateY(-3px);
    background: rgba(255,255,255,.8);
}


/* =========================================================
   HERO TRUST
========================================================= */

.hero-trust {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-top: 35px;
}

.trust-avatars {
    display: flex;
}

.trust-avatars span {
    width: 34px;
    height: 34px;
    margin-left: -8px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: linear-gradient(
            135deg,
            #00c46a,
            #008b55
        );
    color: white;
    border: 3px solid white;
    font-size: 11px;
}

.trust-avatars span:first-child {
    margin-left: 0;
}

.trust-avatars .trust-more {
    background: #1f2d27;
}

.trust-text {
    display: flex;
    flex-direction: column;
}

.trust-text strong {
    font-size: 12px;
}

.trust-text small {
    margin-top: 2px;

    color: #7a8882;

    font-size: 10px;
}


/* =========================================================
   HERO VISUAL
========================================================= */

.hero-visual {
    position: relative;

    min-height: 570px;

    display: flex;

    align-items: center;
    justify-content: center;
}

.visual-glow {
    position: absolute;

    width: 430px;
    height: 430px;

    border-radius: 50%;

    background: radial-gradient(
            circle,
            rgba(0,196,106,.22),
            transparent 65%
        );

    filter: blur(15px);

    animation: visualPulse 5s ease-in-out infinite;
}

@keyframes visualPulse {

    0%,100% {
        transform: scale(1);
        opacity: .7;
    }

    50% {
        transform: scale(1.12);
        opacity: 1;
    }

}


/* =========================================================
   HERO IMAGE
========================================================= */

.hero-image-wrapper {
    position: relative;

    width: 390px;
    height: 480px;

    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-image-card {
    position: relative;

    width: 330px;
    height: 330px;

    overflow: hidden;

    border-radius: 50%;

    background: linear-gradient(
            160deg,
            #dff7eb,
            #8ed8b6
        );

    box-shadow: 0 35px 70px
        rgba(0,100,60, .2);

    z-index: 2;
}

.hero-image-card img {
    width: 100%;
    height: 100%;
    display: block;

    object-fit: cover;
    object-position: center;

    transition: transform .9s ease;
}

.hero-image-card:hover img {
    transform: scale(1.09);
}


/* =========================================================
   IMAGE RINGS
========================================================= */

.image-ring {
    position: absolute;

    border-radius: 50%;

    border: 1px solid
        rgba(0,139,85,.25);

    z-index: 1;
}

.ring-1 {
    width: 430px;
    height: 430px;

    animation: ringRotate 20s linear infinite;
}

.ring-2 {
    width: 500px;
    height: 500px;

    border-style: dashed;

    opacity: .5;

    animation: ringRotate 30s linear infinite reverse;
}

@keyframes ringRotate {

    from {
        transform: rotate(0);
    }

    to {
        transform: rotate(360deg);
    }

}


/* =========================================================
   IMAGE STATUS
========================================================= */

.image-status {
    position: absolute;

    left: 50%;
    bottom: 20px;

    transform: translateX(-50%);

    display: flex;
    align-items: center;
    gap: 7px;

    padding: 8px 14px;

    border-radius: 50px;

    background: rgba(10,30,20,.75);

    backdrop-filter: blur(10px);

    color: white;

    font-size: 10px;

    white-space: nowrap;
}

.image-status span {
    width: 7px;
    height: 7px;

    border-radius: 50%;

    background: #00e890;
}

/* =========================================================
   HERO — MOBILE RESPONSIVE
========================================================= */

@media screen and (max-width: 768px) {

    /* HERO CONTAINER */
    .premium-hero {
        min-height: auto;
        padding: 100px 18px 45px;
    }


    /* HERO CONTENT */
    .hero-content {
        width: 100%;
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }


    /* =====================================================
       TEXT
    ===================================================== */

    .hero-text {
        width: 100%;
        max-width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
    }


    /* BADGE */
    .hero-badge {
        max-width: 100%;
        margin-bottom: 20px;
        padding: 7px 12px;
        font-size: 10px;
        white-space: nowrap;
    }


    /* TITLE */
    .hero-text h1 {
        width: 100%;
        max-width: 600px;

        font-size: clamp(
            2rem,
            9vw,
            3rem
        );

        line-height: 1.1;

        letter-spacing: -1.5px;

        overflow-wrap: break-word;
        word-wrap: break-word;
    }


    /* DESCRIPTION */
    .hero-description {
        width: 100%;
        max-width: 520px;

        margin: 20px auto 25px;

        font-size: 14px;
        line-height: 1.7;
    }


    /* =====================================================
       BUTTONS
    ===================================================== */

    .hero-actions {
        width: 100%;

        display: flex;

        justify-content: center;

        align-items: center;

        gap: 10px;
    }


    .hero-main-btn {
        max-width: 100%;

        padding: 6px 16px 6px 7px;

        font-size: 12px;
    }


    .btn-icon {
        width: 36px;
        height: 36px;
    }


    .btn-arrow {
        margin-left: 4px;
    }


    .hero-secondary-btn {
        padding: 11px 15px;

        font-size: 12px;
    }


    /* =====================================================
       TRUST
    ===================================================== */

    .hero-trust {
        justify-content: center;

        margin-top: 25px;

        gap: 10px;
    }


    /* =====================================================
       VISUAL
    ===================================================== */

    .hero-visual {
        width: 100%;

        min-height: 430px;

        margin-top: 5px;

        overflow: visible;
    }


    /* GLOW */
    .visual-glow {
        width: 300px;
        height: 300px;
    }


    /* =====================================================
       IMAGE WRAPPER
    ===================================================== */

    .hero-image-wrapper {
        width: 300px;
        height: 360px;
    }


    /* MAIN IMAGE */
    .hero-image-card {
        width: 260px;
        height: 260px;
    }


    /* RINGS */
    .ring-1 {
        width: 330px;
        height: 330px;
    }


    .ring-2 {
        width: 380px;
        height: 380px;
    }


    /* IMAGE STATUS */
    .image-status {
        bottom: 10px;

        padding: 7px 12px;

        font-size: 9px;
    }


    /* =====================================================
       FLOATING CARDS
    ===================================================== */

    .floating-card {
        transform: scale(.85);
    }


    .level-card {
        left: 0;
    }


    .mission-card {
        right: 0;
    }

}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media screen and (max-width: 480px) {

    .premium-hero {
        padding:
            90px
            14px
            35px;
    }


    .hero-content {
        gap: 20px;
    }


    /* BADGE */
    .hero-badge {
        max-width: calc(100vw - 28px);

        font-size: 9px;

        padding: 7px 10px;
    }


    /* TITLE */
    .hero-text h1 {

        font-size:
            clamp(
                1.75rem,
                9vw,
                2.3rem
            );

        line-height: 1.08;

        letter-spacing:
            -1px;
    }


    /* DESCRIPTION */
    .hero-description {

        font-size: 13px;

        line-height: 1.65;

        margin-top: 16px;
        margin-bottom: 20px;
    }


    /* BUTTONS */
    .hero-actions {

        flex-direction: column;

        width: 100%;
    }


    .hero-main-btn,
    .hero-secondary-btn {

        width: 100%;

        max-width: 280px;

        justify-content: center;
    }


    /* TRUST */
    .hero-trust {
        margin-top: 20px;
    }


    /* =====================================================
       VISUAL
    ===================================================== */

    .hero-visual {

        min-height: 360px;

        margin-top: 0;
    }


    .hero-image-wrapper {

        width: 250px;

        height: 300px;
    }


    .hero-image-card {

        width: 220px;

        height: 220px;
    }


    .ring-1 {

        width: 280px;

        height: 280px;
    }


    .ring-2 {

        width: 320px;

        height: 320px;
    }


    .visual-glow {

        width: 250px;

        height: 250px;
    }


    /* FLOATING CARDS */
    .floating-card {

        transform:
            scale(.72);
    }


    .level-card {

        left:
            -10px;
    }


    .mission-card {

        right:
            -10px;
    }

}

/* =========================================================
   FLOATING CARDS
========================================================= */

.floating-card {
    position: absolute;

    z-index: 5;

    padding: 14px 17px;

    border-radius: 17px;

    background: rgba(255,255,255,.75);

    backdrop-filter: blur(16px);

    border: 1px solid
        rgba(255,255,255,.7);

    box-shadow: 0 20px 45px
        rgba(0,0,0,.1);

    animation: floating 5s ease-in-out infinite;
}

body.dark-mode .floating-card {
    background: rgba(20,35,28,.8);

    border-color: rgba(255,255,255,.08);

    color: white;
}

.level-card {
    top: 90px;
    left: 0;

    display: flex;
    align-items: center;
    gap: 12px;
}

.floating-icon {
    width: 38px;
    height: 38px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 12px;

    background: rgba(0,196,106,.12);

    color: var(--theme);
}

.floating-card small {
    display: block;

    font-size: 9px;

    color: #7a8882;
}

.floating-card strong {
    display: block;

    margin-top: 3px;

    font-size: 12px;
}


.mission-card {
    right: -10px;
    bottom: 85px;

    width: 190px;

    animation-delay: -2s;
}

.mission-top {
    display: flex;
    justify-content: space-between;

    font-size: 9px;

    color: var(--theme);
}

.mission-card > strong {
    margin-top: 10px;
    font-size: 12px;
}

.mission-progress {
    width: 100%;
    height: 5px;

    margin: 10px 0 6px;

    overflow: hidden;

    border-radius: 10px;

    background: #e5eee9;
}

.mission-progress span {
    display: block;

    width: 35%;
    height: 100%;

    border-radius: 10px;

    background: linear-gradient(
            90deg,
            #00a85c,
            #00e890
        );
}

/* =========================================================
   FLOATING CARDS — SMALL MOBILE
========================================================= */

@media screen and (max-width: 480px) {

    .floating-card {
        padding: 9px 11px;
        border-radius: 13px;
    }


    /* ==============================================
       LEVEL CARD
    ============================================== */

    .level-card {
        top: 25px;
        left: -5px;

        transform: scale(.72);
        transform-origin: left center;
    }


    /* ==============================================
       MISSION CARD
    ============================================== */

    .mission-card {
        right: -5px;
        bottom: 20px;

        width: 165px;

        transform: scale(.72);
        transform-origin: right center;
    }


    /* ICON */
    .floating-icon {
        width: 32px;
        height: 32px;

        border-radius: 10px;
    }


    /* TEXT */
    .floating-card small {
        font-size: 8px;
    }


    .floating-card strong {
        font-size: 11px;
    }


    /* MISSION */
    .mission-top {
        font-size: 8px;
    }


    .mission-card > strong {
        font-size: 11px;
    }

}

/* =========================================================
   HERO STATISTICS
========================================================= */

.hero-stats {
    width: 100%;
    max-width: 1050px;

    margin: 55px auto 0;

    padding: 18px 25px;

    display: flex;
    align-items: center;
    justify-content: space-around;

    gap: 20px;

    border-radius: 22px;

    background: rgba(255,255,255,.62);

    backdrop-filter: blur(18px);

    border: 1px solid rgba(255,255,255,.8);

    box-shadow: 0 20px 50px rgba(0,80,50,.08);

    position: relative;
    z-index: 3;
}

body.dark-mode .hero-stats {
    background: rgba(255,255,255,.05);

    border-color: rgba(255,255,255,.08);
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.stat-icon {
    width: 42px;
    height: 42px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 13px;

    background: rgba(0,196,106,.1);

    color: var(--theme);

    font-size: 15px;
}

.stat-content {
    display: flex;
    flex-direction: column;
}

.stat-content strong {
    font-size: 20px;
    line-height: 1;
}

.stat-content span {
    margin-top: 5px;

    font-size: 10px;

    color: #7a8882;
}

.stat-divider {
    width: 1px;
    height: 35px;

    background: rgba(0,0,0,.1);
}

body.dark-mode .stat-divider {
    background: rgba(255,255,255,.1);
}


/* =========================================================
   SCROLL INDICATOR
========================================================= */

.scroll-indicator {
    position: absolute;

    bottom: 25px;
    left: 50%;

    transform: translateX(-50%);

    display: flex;
    flex-direction: column;
    align-items: center;

    gap: 7px;

    color: #718079;

    font-size: 9px;

    z-index: 4;

    animation: scrollBounce 2s infinite;
}

.scroll-indicator i {
    color:  var(--theme);
}

@keyframes scrollBounce {

    0%,100% {
        transform: translate(-50%,0);
    }

    50% {
        transform:  translate(-50%,7px);
    }

}


/* =========================================================
   DARK MODE ADAPTATIONS
========================================================= */

body.dark-mode .theme-toggle,
body.dark-mode .hero-secondary-btn {
    background: rgba(255,255,255,.06);

    color: white;
}

body.dark-mode .mobile-menu-btn {
    background: rgba(255,255,255,.06);

    color: white;
}


/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 1050px) {

    .main-nav {
        display: none;
    }

    .mobile-menu-btn {
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .hero-content {
        grid-template-columns: 1fr;

        text-align: center;
    }

    .hero-text {
        max-width: 750px;
        margin: auto;
    }

    .hero-badge,
    .hero-actions,
    .hero-trust {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-actions {
        justify-content: center;
    }

    .hero-trust {
        justify-content: center;
    }

    .hero-visual {
        min-height: 500px;
    }

    .mobile-nav {
        position: absolute;

        top: 82px;
        left: 20px;
        right: 20px;

        padding: 15px;

        border-radius: 20px;

        background: rgba(255,255,255,.9);

        backdrop-filter: blur(20px);

        box-shadow: 0 20px 50px rgba(0,0,0,.1);
    }

    .mobile-nav.active {
        display: flex;
        flex-direction: column;
        gap: 5px;
    }

    .mobile-nav a,
    .mobile-nav button {
        padding: 13px 15px;

        display: flex;
        align-items: center;
        gap: 10px;

        border-radius: 12px;

        background: transparent;

        color: var(--text-light);

        font-size: 13px;

        text-align: left;
    }

    .mobile-nav a:hover,
    .mobile-nav button:hover {
        background: rgba(0,139,85,.08);

        color: var(--theme);
    }

    .mobile-nav button {
        width: 100%;
        color: var(--theme);
    }

}


@media (max-width: 768px) {

    .site-header {
        padding: 12px 15px;
    }

    .site-header.scrolled {
        padding: 8px 15px;
    }

    .brand-text span {
        display: none;
    }

    .brand-text strong {
        font-size: 15px;
    }

    .login-btn span {
        display: none;
    }

    .login-btn {
        width: 44px;
        height: 44px;

        padding: 0;

        justify-content: center;
    }

    .premium-hero {
        padding: 110px 20px 40px;
    }

    .hero-text h1 {
        font-size: clamp(2.4rem, 11vw, 4rem);

        letter-spacing: -2px;
    }

    .hero-description {
        font-size: 14px;
    }

    .hero-visual {
        min-height: 440px;
    }

    .hero-image-wrapper {
        transform: scale(.78);
    }

    .level-card {
        left: -10px;
        top: 60px;
    }

    .mission-card {
        right: -5px;
        bottom: 50px;
    }

    .hero-stats {
        display: grid;

        grid-template-columns: 1fr 1fr;

        gap: 15px;

        padding: 18px;
    }

    .stat-divider {
        display: none;
    }

    .stat-item {
        padding: 8px;
    }

    .scroll-indicator {
        display: none;
    }

}


@media (max-width: 480px) {

    .hero-image-wrapper {
        transform: scale(.63);

        margin: -50px 0;
    }

    .hero-visual {
        min-height: 360px;
    }

    .floating-card {
        transform: scale(.9);
    }

    .hero-stats {
        grid-template-columns: 1fr;
    }

    .stat-item {
        justify-content: center;
    }

}

/* =========================================================
   DRIVER ROAD MAP
========================================================= */

.road-section {
    position: relative;
    padding:110px 30px 100px;
    overflow: hidden;

    background: linear-gradient(
            180deg,
            #f4faf7,
            #ffffff
        );
}

body.dark-mode .road-section {
    background: linear-gradient(
            180deg,
            #0b1813,
            #08120e
        );
}


/* Background Glow */

.road-bg-glow {
    position: absolute;

    width: 600px;
    height: 600px;

    right: -250px;
    top: 50px;

    border-radius: 50%;

    background: radial-gradient(
            circle,
            rgba(0,196,106,.12),
            transparent 70%
        );

    filter: blur(30px);

    pointer-events: none;
}


/* Section Heading */

.section-heading {
    max-width: 700px;
    margin: 0 auto 55px;
    text-align: center;
    position: relative;
    z-index: 2;
}

.section-kicker {
    display: inline-flex;

    align-items: center;
    gap: 8px;
    padding: 7px 13px;
    border-radius: 50px;
    background: rgba(0,139,85,.08);
    color: var(--theme);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1px;
}

.kicker-icon {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--theme);
    color: white;
}

.section-heading h2 {
    margin: 20px 0 15px;
    font-size: clamp(2rem,4vw,3.2rem);
    letter-spacing: -1.5px;
    font-weight: 800;
}

.section-heading h2 span {
    color: var(--theme);
}

.section-heading p {
    max-width: 600px;
    margin: auto;
    line-height: 1.8;
    color:#718079;
    font-size: 14px;
}


/* =========================================================
   PLAYER PROGRESS
========================================================= */

.player-progress-card {
    max-width: 1050px;
    margin: 0 auto 70px;
    padding: 18px 22px;
    display: grid;
    grid-template-columns: 1fr 2fr auto;
    align-items: center;
    gap: 30px;
    border-radius: 22px;
    background: rgba(255,255,255,.7);
    backdrop-filter: blur(18px);
    border: 1px solid rgba(255,255,255,.8);

    box-shadow: 0 20px 50px
        rgba(0,80,50,.07);
}

body.dark-mode .player-progress-card {
    background: rgba(255,255,255,.05);

    border-color: rgba(255,255,255,.08);
}


.player-profile {
    display: flex;
    align-items: center;
    gap: 12px;
}

.player-avatar {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 15px;
    background: linear-gradient(
            135deg,
            var(--theme),
            #00d98a
        );
    color: white;
    box-shadow: 0 10px 25px
        rgba(0,139,85,.2);
}

.player-profile small {
    display: block;
    font-size: 8px;
    color:#7c8983;
    letter-spacing: 1px;
}

.player-profile strong {
    display: block;
    margin-top: 4px;
    font-size: 13px;
}


.xp-area {
    width: 100%;
}

.xp-label {
    display: flex;
    justify-content: space-between;
    margin-bottom: 8px;
    font-size: 10px;
}

.xp-label span {
    color: var(--theme);
    font-weight: 600;
}

.xp-label strong {
    font-size: 10px;
}

.xp-bar {
    width: 100%;
    height: 8px;
    overflow: hidden;
    border-radius: 20px;
    background: #e6eee9;
}

.xp-bar span {
    display: block;
    height: 100%;
    border-radius: 20px;
    background: linear-gradient(
            90deg,
            #008b55,
            #00e890
        );
    position: relative;
}

.xp-bar span::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
            90deg,
            transparent,
            rgba(255,255,255,.5),
            transparent
        );
    animation: xpShine 2s linear infinite;
}

@keyframes xpShine {

    from {
        transform: translateX(-100%);
    }

    to {
        transform: translateX(100%);
    }

}

.xp-area > small {
    display: block;
    margin-top: 6px;
    color: #87938d;
    font-size: 9px;
}


.level-badge {
    width: 65px;
    height: 65px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border-radius: 18px;
    background: rgba(0,196,106,.08);
    border: 1px solid
        rgba(0,196,106,.15);
}

.level-badge span {
    font-size: 7px;

    letter-spacing: 1px;

    color: var(--theme);
}

.level-badge strong {
    margin-top: 2px;
    font-size: 22px;
    color: var(--theme);
}


/* =========================================================
   ROAD MAP
   Desktop: Game Map
   Mobile: Vertical Journey
========================================================= */

.road-map {

    position: relative;

    width: 100%;

    padding:
        40px 0 80px;

}


/* =========================================================
   ROAD TRACK
========================================================= */

.road-track {

    position: relative;

    width: 100%;

    min-height: 500px;

    display: flex;

    align-items: center;

    justify-content: space-between;

    padding:
        100px 5%;

    gap: 20px;

    overflow: hidden;

    border-radius:
        32px;

    background:
        #18211d;

    box-shadow:
        0 25px 60px
        rgba(
            0,
            0,
            0,
            .18
        );

}


/* =========================================================
   ROAD SURFACE
========================================================= */

.road-track::before {

    content: "";

    position: absolute;

    left: 0;

    right: 0;

    top: 50%;

    height: 150px;

    transform:
        translateY(-50%);

    background:
        #242e29;

    border-top:
        2px solid
        rgba(
            255,
            255,
            255,
            .05
        );

    border-bottom:
        2px solid
        rgba(
            255,
            255,
            255,
            .05
        );

    z-index:
        1;

}


/* =========================================================
   ROAD DASHED LINE
========================================================= */

.road-line {

    position: absolute;

    left: 3%;

    right: 3%;

    top: 50%;

    height: 4px;

    transform:
        translateY(-50%);

    background:
        repeating-linear-gradient(
            90deg,
            #ffffff 0,
            #ffffff 55px,
            transparent 55px,
            transparent 100px
        );

    opacity:
        .55;

    z-index:
        2;

}


/* =========================================================
   ROAD STOP
========================================================= */

.road-stop {

    position: relative;

    width: 150px;

    height: 260px;

    flex-shrink: 0;

    display: flex;

    align-items: center;

    justify-content: center;

    z-index: 10;

}


/* =========================================================
   ROAD CAR
========================================================= */

.road-car {

    position: relative;

    width: 72px;

    height: 72px;

    flex-shrink: 0;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius:
        22px;

    background:
        linear-gradient(
            135deg,
            #00d98a,
            #008b55
        );

    color:
        #ffffff;

    font-size:
        28px;

    z-index:
        20;

    box-shadow:
        0 12px 35px
        rgba(
            0,
            217,
            138,
            .35
        );

    animation:
        roadCarFloat
        2.5s
        ease-in-out
        infinite;

}


@keyframes roadCarFloat {

    0%,
    100% {

        transform:
            translateY(0);

    }

    50% {

        transform:
            translateY(-8px);

    }

}


/* =========================================================
   STOP MARKER
========================================================= */

.stop-marker {

    position: relative;

    z-index: 15;

    width: 58px;

    height: 58px;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 50%;

    background:
        #303a35;

    color:
        #78857e;

    border:
        4px solid
        #18211d;

    box-shadow:
        0 0 0 4px
        rgba(
            255,
            255,
            255,
            .05
        );

    font-size:
        18px;

    transition:
        .35s;

}


/* =========================================================
   COMPLETED
========================================================= */

.road-stop.completed
.stop-marker {

    background:
        #00a85c;

    color:
        #ffffff;

    box-shadow:
        0 0 0 5px
        rgba(
            0,
            196,
            106,
            .15
        );

}


/* =========================================================
   ACTIVE
========================================================= */

.road-stop.active
.stop-marker {

    background:
        #00d98a;

    color:
        #073b25;

    box-shadow:
        0 0 0 7px
        rgba(
            0,
            217,
            138,
            .16
        );

    animation:
        activeRoadMarker
        2s
        ease-in-out
        infinite;

}


@keyframes activeRoadMarker {

    0%,
    100% {

        transform:
            scale(1);

    }

    50% {

        transform:
            scale(1.08);

    }

}


/* =========================================================
   LOCKED
========================================================= */

.road-stop.locked
.stop-marker {

    background:
        #303a35;

    color:
        #68756e;

    opacity:
        .7;

}


/* =========================================================
   STOP CARD — DEFAULT
========================================================= */

.stop-card {

    position: absolute;

    left: 50%;

    width: 190px;

    padding:
        16px;

    transform:
        translateX(-50%);

    border-radius:
        17px;

    background:
        rgba(
            255,
            255,
            255,
            .96
        );

    box-shadow:
        0 15px 35px
        rgba(
            0,
            0,
            0,
            .18
        );

    text-align:
        center;

    transition:
        .35s;

}


/* =========================================================
   CARD POSITION — ALTERNATING
========================================================= */


/* Mission 01 — ABOVE */

.road-stop.completed
.stop-card {

    bottom:
        calc(
            50% + 45px
        );

}


/* Mission 02 — BELOW */

.road-stop.active
.stop-card {

    top:
        calc(
            50% + 45px
        );

}


/* Mission 03 — ABOVE */

.road-stop.locked:nth-last-of-type(2)
.stop-card {

    bottom:
        calc(
            50% + 45px
        );

}


/* Mission 04 — BELOW */

.road-stop.locked:last-child
.stop-card {

    top:
        calc(
            50% + 45px
        );

}


/* =========================================================
   CARD TYPOGRAPHY
========================================================= */

.stop-card small {

    display:
        block;

    margin-bottom:
        7px;

    color:
        #00a85c;

    font-size:
        8px;

    font-weight:
        800;

    letter-spacing:
        1px;

}


.stop-card strong {

    display:
        block;

    color:
        #17211c;

    font-size:
        11px;

    line-height:
        1.4;

}


.stop-card span {

    display:
        flex;

    align-items:
        center;

    justify-content:
        center;

    gap:
        5px;

    margin-top:
        9px;

    color:
        #738079;

    font-size:
        9px;

}


/* =========================================================
   ACTIVE CARD
========================================================= */

.road-stop.active
.stop-card {

    border:
        2px solid
        rgba(
            0,
            196,
            106,
            .25
        );

    box-shadow:
        0 15px 40px
        rgba(
            0,
            196,
            106,
            .15
        );

}


/* =========================================================
   LOCKED CARD
========================================================= */

.road-stop.locked
.stop-card {

    opacity:
        .65;

    background:
        rgba(
            235,
            240,
            237,
            .9
        );

}


.road-stop.locked
.stop-card small {

    color:
        #7b8781;

}


.road-stop.locked
.stop-card span {

    color:
        #89948e;

}


/* =========================================================
   ACTIVE BUTTON
========================================================= */

.stop-card button {

    width:
        100%;

    margin-top:
        12px;

    padding:
        9px 12px;

    border:
        none;

    border-radius:
        9px;

    background:
        #00b96f;

    color:
        white;

    font-size:
        9px;

    font-weight:
        700;

    cursor:
        pointer;

    transition:
        .3s;

}


.stop-card button:hover {

    background:
        #00d98a;

    transform:
        translateY(-2px);

}


/* =========================================================
   HOVER
========================================================= */

.road-stop:hover
.stop-marker {

    transform:
        scale(1.08);

}


.road-stop:hover
.stop-card {

    box-shadow:
        0 20px 45px
        rgba(
            0,
            0,
            0,
            .22
        );

}


/* =========================================================
   MOBILE
   Vertical Journey
========================================================= */

@media (max-width: 700px) {

    .road-map {

        padding:
            20px 0 60px;

    }


    .road-track {

        min-height:
            auto;

        padding:
            40px 20px 60px;

        flex-direction:
            column;

        justify-content:
            flex-start;

        gap:
            0;

        overflow:
            hidden;

    }


    /* =====================================================
       VERTICAL ROAD
    ===================================================== */

    .road-track::before {

        left:
            50%;

        right:
            auto;

        top:
            35px;

        bottom:
            35px;

        width:
            110px;

        height:
            auto;

        transform:
            translateX(-50%);

        border:
            none;

        border-left:
            2px solid
            rgba(
                255,
                255,
                255,
                .05
            );

        border-right:
            2px solid
            rgba(
                255,
                255,
                255,
                .05
            );

    }


    /* =====================================================
       VERTICAL ROAD LINE
    ===================================================== */

    .road-line {

        left:
            50%;

        right:
            auto;

        top:
            35px;

        bottom:
            35px;

        width:
            4px;

        height:
            auto;

        transform:
            translateX(-50%);

        background:
            repeating-linear-gradient(
                180deg,
                #ffffff 0,
                #ffffff 55px,
                transparent 55px,
                transparent 100px
            );

    }


    /* =====================================================
       ROAD STOP
    ===================================================== */

    .road-stop {

        width:
            100%;

        height:
            210px;

        min-height:
            210px;

        flex-shrink:
            0;

        display:
            flex;

        align-items:
            center;

        justify-content:
            center;

    }


    /* =====================================================
       CAR
    ===================================================== */

    .road-car {

        width:
            70px;

        height:
            70px;

        margin:
            5px 0;

        transform:
            rotate(90deg);

        animation:
            roadCarFloatMobile
            2.5s
            ease-in-out
            infinite;

    }


    @keyframes roadCarFloatMobile {

        0%,
        100% {

            transform:
                rotate(90deg)
                translateX(0);

        }

        50% {

            transform:
                rotate(90deg)
                translateX(8px);

        }

    }


    /* =====================================================
       MARKER
    ===================================================== */

    .stop-marker {

        width:
            58px;

        height:
            58px;

    }


    /* =====================================================
       ALL CARDS — MOBILE
    ===================================================== */

    .stop-card {

        position:
            absolute;

        top:
            50% !important;

        bottom:
            auto !important;

        left:
            calc(
                50% + 80px
            );

        width:
            min(
                190px,
                calc(
                    100vw - 130px
                )
            );

        transform:
            translateY(-50%);

    }


    /* =====================================================
       ALTERNATING MOBILE CARDS
    ===================================================== */

    .road-stop.completed
    .stop-card {

        left:
            calc(
                50% + 80px
            );

        transform:
            translateY(-50%);

    }


    .road-stop.active
    .stop-card {

        left:
            auto;

        right:
            calc(
                50% + 80px
            );

        transform:
            translateY(-50%);

    }


    .road-stop.locked:nth-last-of-type(2)
    .stop-card {

        left:
            calc(
                50% + 80px
            );

        right:
            auto;

        transform:
            translateY(-50%);

    }


    .road-stop.locked:last-child
    .stop-card {

        left:
            auto;

        right:
            calc(
                50% + 80px
            );

        transform:
            translateY(-50%);

    }

}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 480px) {

    .road-track {

        padding-left:
            10px;

        padding-right:
            10px;

    }


    .stop-card {

        width:
            155px;

        padding:
            12px;

    }


    .road-stop.completed
    .stop-card,
    .road-stop.locked:nth-last-of-type(2)
    .stop-card {

        left:
            calc(
                50% + 65px
            );

    }


    .road-stop.active
    .stop-card,
    .road-stop.locked:last-child
    .stop-card {

        right:
            calc(
                50% + 65px
            );

    }


    .stop-card strong {

        font-size:
            10px;

    }

}


/* =========================================================
   ROAD FOOTER
========================================================= */

.road-footer {
    max-width: 1050px;

    margin: 25px auto 0;

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 20px;
}

.road-footer > div {
    display: flex;

    align-items: center;

    gap: 10px;

    color:
        #77847e;

    font-size: 11px;
}

.road-footer i {
    color:var(--theme);

    font-size: 20px;
}

.road-footer strong {
    color: var(--text-light);
}

.road-start-btn {
    padding:
        12px 20px;

    border-radius: 50px;

    background: var(--theme);

    color: road-start-btn;

    font-size: 11px;

    box-shadow: 0 10px 25px
        rgba(0,139,85,.2);
}

.road-start-btn:hover {
    transform: translateY(-3px);

    box-shadow:  0 15px 35px
        rgba(0,139,85,.35);
}

/* =========================================================
   DRIVER RADIO / NEWS
========================================================= */

.news-section {
    position: relative;

    padding:
        100px 30px;

    background:
        #ffffff;
}

body.dark-mode .news-section {
    background:
        #08120e;
}


.news-header {
    max-width: 1100px;

    margin:
        0 auto 40px;

    display: flex;

    align-items: flex-end;

    justify-content: space-between;

    gap: 20px;
}

.news-header h2 {
    margin:
        18px 0 0;

    font-size:
        clamp(2rem,4vw,3rem);

    letter-spacing:
        -1.5px;
}

.news-header h2 span {
    color:
        var(--theme);
}


.news-live {
    display: flex;

    align-items: center;

    gap: 8px;

    padding:
        8px 12px;

    border-radius: 50px;

    background:
        rgba(255,50,50,.06);

    color:
        #d95353;

    font-size: 9px;

    font-weight: 700;
}

.news-live span {
    width: 7px;
    height: 7px;

    border-radius: 50%;

    background:
        #e34c4c;

    animation:
        livePulse 1.5s infinite;
}

@keyframes livePulse {

    0%,100% {
        opacity: 1;
    }

    50% {
        opacity: .3;
    }

}


/* News Grid */

.news-grid {
    max-width: 1100px;

    margin:
        auto;

    display: grid;

    grid-template-columns:
        repeat(3,1fr);

    gap: 22px;
}


/* News Card */

.news-card {
    position: relative;

    overflow: hidden;

    padding: 25px;

    min-height: 240px;

    display: flex;

    flex-direction: column;

    justify-content: space-between;

    border-radius: 24px;

    background:
        #f6faf8;

    border:
        1px solid
        #e5eee9;

    transition:
        .4s;
}

body.dark-mode .news-card {
    background:
        rgba(255,255,255,.04);

    border-color:
        rgba(255,255,255,.07);
}

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

    box-shadow:
        0 20px 45px
        rgba(0,80,50,.1);
}

.news-card::before {
    content: "";

    position: absolute;

    width: 150px;
    height: 150px;

    right: -70px;
    top: -70px;

    border-radius: 50%;

    background:
        rgba(0,196,106,.08);
}


/* News Icon */

.news-icon {
    width: 48px;
    height: 48px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 15px;

    background:
        rgba(0,196,106,.1);

    color:
        var(--theme);

    font-size: 18px;
}


.news-card h3 {
    margin:
        18px 0 8px;

    font-size: 16px;

    line-height: 1.4;
}

.news-card p {
    margin: 0;

    color:
        #78857f;

    font-size: 12px;

    line-height: 1.7;
}


.news-meta {
    display: flex;

    align-items: center;

    justify-content: space-between;

    margin-top: 20px;

    padding-top: 15px;

    border-top:
        1px solid
        rgba(0,0,0,.06);

    color:
        #89958f;

    font-size: 9px;
}

.news-meta a {
    color:
        var(--theme);

    font-weight: 700;
}

.news-meta a i {
    margin-left: 5px;

    transition:
        .3s;
}

.news-meta a:hover i {
    transform:
        translateX(4px);
}


/* =========================================================
   NEWS RESPONSIVE
========================================================= */

@media (max-width: 900px) {

    .news-grid {
        grid-template-columns:
            1fr 1fr;
    }

    .player-progress-card {
        grid-template-columns:
            1fr;
    }

    .level-badge {
        display: none;
    }

}

@media (max-width: 700px) {

    .road-section {
        padding:
            80px 15px;
    }

    .road-track {
        min-height:
            750px;

        padding: 30px;
    }

    .road-track::before {
        top: 50%;

        left: 50%;

        width: 100px;
        height: 620px;

        transform:
            translate(-50%,-50%);
    }

    .road-line {
        left: 50%;

        top: 8%;

        width: 3px;
        height: 84%;

        transform:
            translateX(-50%);

        background:
            repeating-linear-gradient(
                180deg,
                #fff 0,
                #fff 55px,
                transparent 55px,
                transparent 100px
            );
    }

    .road-stop {
        left: 50% !important;

        transform:
            translateX(-50%);

        display: flex;

        align-items: center;
    }

    .road-stop:nth-of-type(1) {
        top: 12%;
    }

    .road-stop:nth-of-type(2) {
        top: 37%;
    }

    .road-stop:nth-of-type(3) {
        top: 62%;
    }

    .road-stop:nth-of-type(4) {
        top: 87%;
    }

    .stop-card {
        left: 90px;

        bottom: auto !important;
        top: 50% !important;

        transform:
            translateY(-50%);
    }

    .road-stop:nth-of-type(odd)
    .stop-card {
        left: auto;
        right: 90px;
    }

    .road-car {
        left: 50%;

        top: 25%;

        transform:
            translate(-50%,-50%);
    }

    .road-footer {
        flex-direction:
            column;

        text-align: center;
    }

    .news-header {
        align-items:
            flex-start;

        flex-direction:
            column;
    }

    .news-grid {
        grid-template-columns:
            1fr;
    }

}

@media (max-width: 500px) {

    .player-progress-card {
        padding: 15px;
    }

    .road-track {
        padding: 20px;
    }

    .stop-card {
        width: 145px;

        left: 75px;
    }

    .road-stop:nth-of-type(odd)
    .stop-card {
        right: 75px;
    }

    .stop-card strong {
        font-size: 10px;
    }

}

/* =========================================================
   DRIVER RADIO NEWS
========================================================= */

.driver-news-card {
    position: relative;

    width: 100%;
    max-width: 850px;

    margin: 0 auto;

    padding: 25px 30px;

    border-radius: 25px;

    background:
        linear-gradient(
            135deg,
            #11241b,
            #17372a
        );

    color: white;

    overflow: hidden;

    box-shadow:
        0 25px 60px
        rgba(0, 70, 40, .18);

    border:
        1px solid
        rgba(255,255,255,.08);

    transition:
        transform .35s ease,
        box-shadow .35s ease;
}


.driver-news-card:hover {

    transform:
        translateY(-5px);

    box-shadow:
        0 30px 70px
        rgba(0, 70, 40, .25);

}


/* Dekorativ dairə */

.driver-news-card::before {

    content: "";

    position: absolute;

    width: 280px;
    height: 280px;

    right: -130px;
    top: -150px;

    border-radius: 50%;

    background:
        rgba(0, 217, 138, .08);

    pointer-events: none;

}


/* Üst hissə */

.driver-news-top {

    display: flex;

    align-items: center;

    justify-content: space-between;

    position: relative;

    z-index: 2;

}


.driver-news-label {

    display: flex;

    align-items: center;

    gap: 9px;

    font-size: 9px;

    font-weight: 700;

    letter-spacing: 1.5px;

    color:
        #8ee6bf;

}


.news-live-dot {

    width: 8px;
    height: 8px;

    border-radius: 50%;

    background:
        #00e890;

    box-shadow:
        0 0 0 5px
        rgba(0,232,144,.12);

    animation:
        newsLivePulse 1.7s infinite;

}


@keyframes newsLivePulse {

    0%,100% {
        opacity: 1;

        transform:
            scale(1);
    }

    50% {
        opacity: .5;

        transform:
            scale(.75);
    }

}


/* Radio Icon */

.driver-news-icon {

    width: 42px;
    height: 42px;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 13px;

    background:
        rgba(0,217,138,.12);

    color:
        #00e890;

    font-size: 17px;

}


/* Kontent */

.driver-news-content {

    position: relative;

    z-index: 2;

    padding:
        25px 0 20px;

}


.driver-news-prefix {

    display: flex;

    align-items: center;

    gap: 7px;

    margin-bottom: 10px;

    color:
        #6fbd9c;

    font-size: 8px;

    font-weight: 700;

    letter-spacing: 1px;

}


.driver-news-prefix i {

    color:
        #00e890;

}


.driver-news-text {

    min-height: 50px;

    display: flex;

    align-items: center;

    font-size:
        clamp(16px, 2vw, 22px);

    font-weight: 600;

    line-height: 1.5;

    letter-spacing: -.3px;

    color:
        #ffffff;

    opacity: 1;

    transition:
        opacity .4s ease;

}


/* Aşağı hissə */

.driver-news-bottom {

    display: flex;

    align-items: center;

    justify-content: space-between;

    position: relative;

    z-index: 2;

    padding-top: 15px;

    border-top:
        1px solid
        rgba(255,255,255,.07);

}


/* Radio wave */

.news-wave {

    display: flex;

    align-items: center;

    gap: 3px;

    height: 18px;

}


.news-wave span {

    display: block;

    width: 3px;

    border-radius: 5px;

    background:
        #00c978;

    animation:
        newsWave 1s ease-in-out infinite;

}


.news-wave span:nth-child(1) {
    height: 7px;
    animation-delay: .1s;
}

.news-wave span:nth-child(2) {
    height: 13px;
    animation-delay: .2s;
}

.news-wave span:nth-child(3) {
    height: 18px;
    animation-delay: .3s;
}

.news-wave span:nth-child(4) {
    height: 10px;
    animation-delay: .4s;
}

.news-wave span:nth-child(5) {
    height: 16px;
    animation-delay: .5s;
}

.news-wave span:nth-child(6) {
    height: 8px;
    animation-delay: .6s;
}

.news-wave span:nth-child(7) {
    height: 13px;
    animation-delay: .7s;
}


@keyframes newsWave {

    0%,100% {
        transform:
            scaleY(.6);

        opacity: .5;
    }

    50% {
        transform:
            scaleY(1);

        opacity: 1;
    }

}


.news-auto {

    font-size: 7px;

    letter-spacing: 1px;

    color:
        #628c7a;

}


/* Mobil */

@media (max-width: 600px) {

    .driver-news-card {

        padding:
            20px;

        border-radius:
            20px;

    }


    .driver-news-text {

        font-size:
            15px;

    }


    .driver-news-bottom {

        margin-top:
            5px;

    }

}

/* =========================================================
   SERVICES / DRIVING MISSIONS
   PART 2 — PREMIUM CSS
========================================================= */

.services-section {
    position: relative;
    padding: 110px 30px 100px;
    overflow: hidden;

    background:
        linear-gradient(
            180deg,
            #ffffff 0%,
            #f5faf7 100%
        );
}


/* =========================================================
   BACKGROUND GLOW
========================================================= */

.services-bg-glow {
    position: absolute;

    width: 500px;
    height: 500px;

    border-radius: 50%;

    filter: blur(80px);

    pointer-events: none;

    opacity: .5;
}

.services-glow-1 {
    top: -250px;
    left: -180px;

    background:
        rgba(0, 196, 106, .10);
}

.services-glow-2 {
    right: -250px;
    bottom: -250px;

    background:
        rgba(0, 139, 85, .08);
}


/* =========================================================
   SECTION HEADING
========================================================= */

.services-heading {
    position: relative;
    z-index: 2;

    max-width: 720px;

    margin:
        0 auto 65px;
}


.services-heading .section-kicker {
    display: inline-flex;

    align-items: center;
    gap: 8px;

    padding:
        7px 13px;

    border-radius: 50px;

    background:
        rgba(0, 139, 85, .08);

    color:
        var(--theme);

    font-size: 10px;

    font-weight: 700;

    letter-spacing: 1px;
}


.services-heading .kicker-icon {
    width: 25px;
    height: 25px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background:
        var(--theme);

    color: white;

    font-size: 11px;
}


.services-title {
    margin:
        20px 0 15px;

    font-size:
        clamp(2rem, 4vw, 3.2rem);

    line-height: 1.15;

    letter-spacing:
        -1.8px;

    font-weight: 800;

    color:
        var(--text-light);
}


.services-title span {
    color:
        var(--theme);
}


.services-description {
    max-width: 620px;

    margin:
        0 auto;

    color:
        #718079;

    font-size: 14px;

    line-height: 1.8;
}


/* =========================================================
   SERVICES GRID
========================================================= */

.services-grid {
    position: relative;
    z-index: 2;

    max-width: 1100px;

    margin: 0 auto;

    display: grid;

    grid-template-columns: repeat(4, 1fr);

    gap: 20px;

    perspective:1200px;
}


/* =========================================================
   MISSION CARD
========================================================= */

.mission-card {
    position: relative;

    min-height: 360px;

    padding: 22px;

    display: flex;

    flex-direction: column;

    border-radius: 26px;

    background: rgba(255,255,255,.75);

    border: 1px solid
        rgba(0, 100, 60, .08);

    box-shadow: 0 15px 45px
        rgba(0, 80, 50, .06);

    overflow: hidden;

    transform-style: preserve-3d;

    transition: transform .45s cubic-bezier(.2,.8,.2,1),
        box-shadow .45s ease,
        border-color .45s ease;
}


/* Hover */

.mission-card:hover {
    transform:
        translateY(-12px)
        rotateX(2deg)
        rotateY(-2deg);

    border-color:
        rgba(0, 196, 106, .25);

    box-shadow:
        0 25px 60px
        rgba(0, 80, 50, .14);
}


/* =========================================================
   PRIMARY CARD
========================================================= */

.mission-card-primary {
    background:
        linear-gradient(
            145deg,
            #0d2c20,
            #123d2c
        );

    border:
        1px solid
        rgba(0, 217, 138, .15);

    color:
        white;

    box-shadow:
        0 25px 55px
        rgba(0, 70, 40, .18);
}


.mission-card-primary:hover {
    box-shadow:
        0 30px 70px
        rgba(0, 70, 40, .28);
}


/* Primary glow */

.mission-card-glow {
    position: absolute;

    width: 230px;
    height: 230px;

    right: -120px;
    top: -120px;

    border-radius:
        50%;

    background:
        rgba(0, 217, 138, .12);

    filter:
        blur(10px);

    pointer-events:
        none;
}


/* =========================================================
   TOP ROW
========================================================= */

.mission-top {
    position: relative;
    z-index: 2;

    display: flex;

    align-items: center;

    justify-content: space-between;
}


.mission-number {
    font-size:
        8px;

    font-weight:
        700;

    letter-spacing:
        1.2px;

    color:
        #819089;
}


.mission-card-primary
.mission-number {
    color:
        #73b89b;
}


.mission-status {
    display: inline-flex;

    align-items: center;

    gap: 5px;

    padding:
        5px 8px;

    border-radius:
        50px;

    background:
        rgba(0, 196, 106, .08);

    color:
        var(--theme);

    font-size:
        7px;

    font-weight:
        700;

    letter-spacing:
        .7px;
}


.mission-card-primary
.mission-status {
    background:
        rgba(0, 217, 138, .12);

    color:
        #00e890;
}


/* =========================================================
   ICON
========================================================= */

.mission-icon-wrapper {
    position: relative;

    width:
        75px;

    height:
        75px;

    margin:
        35px 0 25px;

    display:
        flex;

    align-items:
        center;

    justify-content:
        center;
}


.mission-icon {
    position: relative;
    z-index: 2;

    width:
        65px;

    height:
        65px;

    display:
        flex;

    align-items:
        center;

    justify-content:
        center;

    border-radius:
        20px;

    background:
        rgba(0, 196, 106, .10);

    color:
        var(--theme);

    font-size:
        25px;

    transition:
        transform .4s ease,
        background .4s ease;
}


.mission-card:hover
.mission-icon {
    transform:
        rotate(-8deg)
        scale(1.08);

    background:
        rgba(0, 196, 106, .16);
}


.mission-card-primary
.mission-icon {
    background:
        rgba(0, 217, 138, .13);

    color:
        #00e890;
}


/* Icon pulse */

.mission-icon-pulse {
    position: absolute;

    width:
        75px;

    height:
        75px;

    border-radius:
        22px;

    border:
        1px solid
        rgba(0, 217, 138, .18);

    animation:
        missionPulse 2.5s infinite;
}


@keyframes missionPulse {

    0% {
        opacity: .8;

        transform:
            scale(.9);
    }

    70% {
        opacity: 0;

        transform:
            scale(1.2);
    }

    100% {
        opacity: 0;

        transform:
            scale(1.2);
    }

}


/* =========================================================
   CONTENT
========================================================= */

.mission-content {
    position: relative;
    z-index: 2;

    flex:
        1;
}


.mission-content h3 {
    margin:
        0 0 12px;

    font-size:
        18px;

    font-weight:
        750;

    letter-spacing:
        -.4px;

    color:
        var(--text-light);
}


.mission-card-primary
.mission-content h3 {
    color:
        white;
}


.mission-content p {
    margin:
        0;

    color:
        #7b8982;

    font-size:
        11px;

    line-height:
        1.8;
}


.mission-card-primary
.mission-content p {
    color:
        #a4c5b6;
}


/* =========================================================
   CARD FOOTER
========================================================= */

.mission-footer {
    position: relative;
    z-index: 2;

    display:
        flex;

    align-items:
        center;

    justify-content:
        space-between;

    margin-top:
        25px;

    padding-top:
        15px;

    border-top:
        1px solid
        rgba(0, 0, 0, .06);
}


.mission-card-primary
.mission-footer {
    border-color:
        rgba(255,255,255,.08);
}


.mission-xp {
    display:
        flex;

    align-items:
        center;

    gap:
        6px;

    color:
        var(--theme);

    font-size:
        9px;

    font-weight:
        700;
}


.mission-xp i {
    font-size:
        10px;
}


.mission-card-primary
.mission-xp {
    color:
        #00e890;
}


/* Arrow */

.mission-arrow {
    width:
        32px;

    height:
        32px;

    display:
        flex;

    align-items:
        center;

    justify-content:
        center;

    border-radius:
        10px;

    background:
        rgba(0, 139, 85, .07);

    color:
        var(--theme);

    font-size:
        11px;

    transition:
        transform .35s ease,
        background .35s ease;
}


.mission-card:hover
.mission-arrow {
    transform:
        translateX(5px);

    background:
        var(--theme);

    color:
        white;
}


.mission-card-primary
.mission-arrow {
    background:
        rgba(0, 217, 138, .10);

    color:
        #00e890;
}


/* =========================================================
   ACHIEVEMENT BAR
========================================================= */

.services-achievement {
    position: relative;
    z-index: 2;

    max-width:
        1100px;

    margin:
        35px auto 0;

    padding:
        18px 22px;

    display:
        flex;

    align-items:
        center;

    gap:
        18px;

    border-radius:
        20px;

    background:
        rgba(255,255,255,.72);

    border:
        1px solid
        rgba(0, 100, 60, .08);

    box-shadow:
        0 12px 35px
        rgba(0, 80, 50, .05);
}


.achievement-icon {
    width:
        48px;

    height:
        48px;

    flex-shrink:
        0;

    display:
        flex;

    align-items:
        center;

    justify-content:
        center;

    border-radius:
        15px;

    background:
        rgba(0, 196, 106, .10);

    color:
        var(--theme);

    font-size:
        19px;
}


.achievement-text {
    flex:
        1;
}


.achievement-text small {
    display:
        block;

    margin-bottom:
        4px;

    color:
        #819089;

    font-size:
        7px;

    font-weight:
        700;

    letter-spacing:
        1px;
}


.achievement-text strong {
    display:
        block;

    color:
        var(--text-light);

    font-size:
        11px;

    line-height:
        1.5;
}


.achievement-progress {
    width:
        180px;

    flex-shrink:
        0;
}


.achievement-progress > span {
    display:
        block;

    margin-bottom:
        7px;

    text-align:
        right;

    color:
        var(--theme);

    font-size:
        8px;

    font-weight:
        700;
}


.achievement-progress-bar {
    width:
        100%;

    height:
        6px;

    overflow:
        hidden;

    border-radius:
        20px;

    background:
        #e5eee9;
}


.achievement-progress-bar span {
    display:
        block;

    width:
        100%;

    height:
        100%;

    border-radius:
        20px;

    background:
        linear-gradient(
            90deg,
            #008b55,
            #00e890
        );
}


/* =========================================================
   DARK MODE
========================================================= */

body.dark-mode
.services-section {

    background:
        linear-gradient(
            180deg,
            #08120e,
            #0b1813
        );
}


body.dark-mode
.mission-card {

    background:
        rgba(255,255,255,.04);

    border-color:
        rgba(255,255,255,.07);

    box-shadow:
        0 15px 45px
        rgba(0,0,0,.15);
}


body.dark-mode
.mission-content h3 {

    color:
        #f1f6f3;
}


body.dark-mode
.mission-content p {

    color:
        #899b92;
}


body.dark-mode
.services-achievement {

    background:
        rgba(255,255,255,.04);

    border-color:
        rgba(255,255,255,.07);
}


body.dark-mode
.achievement-text strong {

    color:
        #f1f6f3;
}


/* =========================================================
   RESPONSIVE — TABLET
========================================================= */

@media (max-width: 1050px) {

    .services-grid {

        grid-template-columns:
            repeat(2, 1fr);

        max-width:
            760px;
    }

    .mission-card {

        min-height: 340px;
    }

}


/* =========================================================
   RESPONSIVE — MOBILE
========================================================= */

@media (max-width: 700px) {

    .services-section {

        padding:
            80px 15px;
    }


    .services-heading {

        margin-bottom:
            45px;
    }


    .services-title {

        font-size:
            2rem;
    }


    .services-description {

        font-size:
            13px;
    }


    .services-grid {

        grid-template-columns:
            1fr;

        max-width:
            450px;

        gap:
            16px;
    }


    .mission-card {

        min-height: 330px;

        padding: 20px;
    }


    .mission-icon-wrapper {

        margin-top:
            28px;
    }


    .services-achievement {

        flex-wrap:
            wrap;

        padding:
            18px;
    }


    .achievement-progress {

        width:
            100%;
    }


    .achievement-progress > span {

        text-align:
            left;
    }

}


/* =========================================================
   RESPONSIVE — SMALL MOBILE
========================================================= */

@media (max-width: 600px) {

    .services-section {

        padding-left:
            12px;

        padding-right:
            12px;
    }


    .mission-card {
        min-height: 310px;
        width: 100%;
    }


    .services-achievement {

        gap:
            12px;
    }


    .achievement-icon {

        width: 42px;

        height: 42px;
    }

}

/* =========================================================
   PREMIUM FOOTER
========================================================= */

.premium-footer {

    position: relative;

    padding:
        80px 30px 25px;

    overflow: hidden;

    background:
        linear-gradient(
            145deg,
            #07140e,
            #0b2117 55%,
            #08150f
        );

    color:
        white;
}


/* =========================================================
   FOOTER BACKGROUND GLOW
========================================================= */

.footer-glow {

    position: absolute;

    width:
        450px;

    height:
        450px;

    border-radius:
        50%;

    filter:
        blur(90px);

    pointer-events:
        none;

    opacity:
        .35;
}


.footer-glow-1 {

    top:
        -250px;

    left:
        -150px;

    background:
        rgba(
            0,
            217,
            138,
            .12
        );
}


.footer-glow-2 {

    right:
        -250px;

    bottom:
        -250px;

    background:
        rgba(
            0,
            139,
            85,
            .12
        );
}


/* =========================================================
   FOOTER CTA
========================================================= */

.footer-cta {

    position:
        relative;

    z-index:
        2;

    max-width:
        1100px;

    margin:
        0 auto 70px;

    padding:
        30px 35px;

    display:
        flex;

    align-items:
        center;

    gap:
        25px;

    border-radius:
        25px;

    background:
        linear-gradient(
            135deg,
            rgba(
                0,
                196,
                106,
                .12
            ),
            rgba(
                255,
                255,
                255,
                .035
            )
        );

    border:
        1px solid
        rgba(
            0,
            217,
            138,
            .14
        );

    box-shadow:
        0 20px 60px
        rgba(
            0,
            0,
            0,
            .18
        );
}


/* CTA Icon */

.footer-cta-icon {

    width:
        60px;

    height:
        60px;

    flex-shrink:
        0;

    display:
        flex;

    align-items:
        center;

    justify-content:
        center;

    border-radius:
        18px;

    background:
        linear-gradient(
            135deg,
            #00c978,
            #008b55
        );

    color:
        white;

    font-size:
        24px;

    box-shadow:
        0 12px 30px
        rgba(
            0,
            196,
            106,
            .25
        );

    animation:
        footerCarFloat
        3s
        ease-in-out
        infinite;
}


@keyframes footerCarFloat {

    0%,
    100% {

        transform:
            translateY(0);

    }

    50% {

        transform:
            translateY(-5px);

    }

}


/* CTA Content */

.footer-cta-content {

    flex:
        1;
}


.footer-cta-kicker {

    display:
        block;

    margin-bottom:
        7px;

    color:
        #6ed3a8;

    font-size:
        8px;

    font-weight:
        700;

    letter-spacing:
        1.5px;

}


.footer-cta-content h2 {

    margin:
        0 0 8px;

    font-size:
        clamp(
            1.4rem,
            3vw,
            2.2rem
        );

    letter-spacing:
        -1px;

}


.footer-cta-content h2 span {

    color:
        #00e890;

}


.footer-cta-content p {

    max-width:
        600px;

    margin:
        0;

    color:
        #8da69a;

    font-size:
        11px;

    line-height:
        1.7;

}


/* CTA Button */

.footer-start-btn {

    display:
        inline-flex;

    align-items:
        center;

    gap:
        9px;

    padding:
        13px 20px;

    border-radius:
        50px;

    background:
        #00c978;

    color:
        white;

    font-size:
        10px;

    font-weight:
        700;

    text-decoration:
        none;

    white-space:
        nowrap;

    box-shadow:
        0 10px 25px
        rgba(
            0,
            196,
            106,
            .2
        );

    transition:
        .35s;
}


.footer-start-btn:hover {

    color:
        white;

    transform:
        translateY(-3px);

    background:
        #00e890;

    box-shadow:
        0 15px 35px
        rgba(
            0,
            196,
            106,
            .35
        );

}


/* =========================================================
   FOOTER MAIN
========================================================= */

.footer-main {

    position:
        relative;

    z-index:
        2;

    max-width:
        1100px;

    margin:
        0 auto;

    padding-bottom:
        55px;

    display:
        grid;

    grid-template-columns:
        1.6fr
        1fr
        1fr
        1.4fr;

    gap:
        45px;

    border-bottom:
        1px solid
        rgba(
            255,
            255,
            255,
            .07
        );

}


/* =========================================================
   BRAND
========================================================= */

.footer-logo {

    display:
        inline-flex;

    align-items:
        center;

    gap:
        10px;

    color:
        white;

    text-decoration:
        none;

    font-size:
        15px;

    font-weight:
        800;

    letter-spacing:
        1px;

}


.footer-logo strong {

    color:
        #00d98a;

}


.footer-logo-icon {

    width:
        42px;

    height:
        42px;

    display:
        flex;

    align-items:
        center;

    justify-content:
        center;

    border-radius:
        13px;

    background:
        rgba(
            0,
            217,
            138,
            .12
        );

    color:
        #00e890;

    font-size:
        17px;

}


.footer-brand p {

    max-width:
        260px;

    margin:
        18px 0 22px;

    color:
        #789187;

    font-size:
        11px;

    line-height:
        1.8;

}


/* =========================================================
   SOCIAL
========================================================= */

.footer-socials {

    display:
        flex;

    gap:
        8px;

}


.footer-socials a {

    width:
        34px;

    height:
        34px;

    display:
        flex;

    align-items:
        center;

    justify-content:
        center;

    border-radius:
        10px;

    background:
        rgba(
            255,
            255,
            255,
            .05
        );

    color:
        #7f988c;

    font-size:
        12px;

    transition:
        .3s;

}


.footer-socials a:hover {

    background:
        #00c978;

    color:
        white;

    transform:
        translateY(-4px);

}


/* =========================================================
   FOOTER COLUMNS
========================================================= */

.footer-column h4 {

    margin:
        5px 0 22px;

    color:
        white;

    font-size:
        9px;

    letter-spacing:
        1.3px;

}


.footer-column > a {

    display:
        flex;

    align-items:
        center;

    gap:
        8px;

    margin-bottom:
        13px;

    color:
        #7d968a;

    font-size:
        10px;

    text-decoration:
        none;

    transition:
        .3s;

}


.footer-column > a i {

    font-size:
        8px;

    color:
        #00b96f;

}


.footer-column > a:hover {

    color:
        #00e890;

    transform:
        translateX(4px);

}


/* =========================================================
   STUDENT COLUMN
========================================================= */

.footer-student p {

    margin:
        0 0 18px;

    color:
        #789187;

    font-size:
        10px;

    line-height:
        1.8;

}


.footer-login-btn {

    display:
        flex !important;

    align-items:
        center;

    justify-content:
        space-between;

    padding:
        11px 13px;

    border:
        1px solid
        rgba(
            0,
            217,
            138,
            .15
        );

    border-radius:
        12px;

    background:
        rgba(
            0,
            217,
            138,
            .05
        );

}


.footer-login-btn i:first-child {

    color:
        #00e890;

}


.footer-login-btn i:last-child {

    margin-left:
        auto;

}


/* =========================================================
   FOOTER BOTTOM
========================================================= */

.footer-bottom {

    position:
        relative;

    z-index:
        2;

    max-width:
        1100px;

    margin:
        0 auto;

    padding-top:
        22px;

    display:
        flex;

    align-items:
        center;

    justify-content:
        space-between;

    gap:
        20px;

    color:
        #5f766b;

    font-size:
        8px;

}


.footer-bottom-links {

    display:
        flex;

    gap:
        20px;

}


.footer-bottom-links a {

    color:
        #6f877b;

    text-decoration:
        none;

    transition:
        .3s;

}


.footer-bottom-links a:hover {

    color:
        #00e890;

}


.footer-made {

    display:
        flex;

    align-items:
        center;

    gap:
        5px;

}


.footer-made i {

    color:
        #00c978;

    font-size:
        8px;

}


/* =========================================================
   RESPONSIVE — TABLET
========================================================= */

@media (max-width: 1000px) {

    .footer-main {

        grid-template-columns:
            repeat(2, 1fr);

        gap:
            40px;

    }

}


/* =========================================================
   RESPONSIVE — MOBILE
========================================================= */

@media (max-width: 700px) {

    .premium-footer {

        padding:
            70px 15px 20px;

    }


    .footer-cta {

        flex-direction:
            column;

        align-items:
            flex-start;

        padding:
            25px;

        margin-bottom:
            55px;

    }


    .footer-cta-action {

        width:
            100%;

    }


    .footer-start-btn {

        width:
            100%;

        justify-content:
            center;

    }


    .footer-main {

        grid-template-columns:
            1fr;

        gap:
            35px;

    }


    .footer-brand p {

        max-width:
            100%;

    }


    .footer-bottom {

        flex-direction:
            column;

        align-items:
            flex-start;

        gap:
            12px;

    }

}


/* =========================================================
   RESPONSIVE — SMALL MOBILE
========================================================= */

@media (max-width: 420px) {

    .footer-cta {

        border-radius:
            20px;

    }


    .footer-cta-content h2 {

        font-size:
            1.5rem;

    }


    .footer-bottom-links {

        flex-wrap:
            wrap;

    }

}