/* =========================================================
   VDA — Venture Dynamics Asia
   Main Styles
========================================================= */


/* =========================================================
   RESET
========================================================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 90px;
}

body {
    font-family: "DM Sans", sans-serif;
    background: #08090b;
    color: #f5f5f2;
    line-height: 1.6;
    overflow-x: hidden;
}

body.menu-open {
    overflow: hidden;
}

a {
    color: inherit;
    text-decoration: none;
}

button {
    font-family: inherit;
}

img {
    max-width: 100%;
    display: block;
}


/* =========================================================
   VARIABLES
========================================================= */

:root {

    --bg: #08090b;
    --bg-soft: #0d0f12;
    --bg-card: #111419;

    --text: #f5f5f2;
    --text-soft: #a5a8ae;
    --text-muted: #6f747c;

    --line: rgba(255, 255, 255, 0.09);

    --accent: #c8ff4a;
    --accent-dark: #9fce32;

    --white: #ffffff;

    --radius-sm: 10px;
    --radius-md: 18px;
    --radius-lg: 28px;

    --container: 1240px;

}


/* =========================================================
   GLOBAL
========================================================= */

.container {
    width: min(
        calc(100% - 48px),
        var(--container)
    );

    margin: 0 auto;
}

section {
    position: relative;
}

::selection {
    background: var(--accent);
    color: #050505;
}


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

.header {
    position: fixed;

    top: 0;
    left: 0;

    width: 100%;

    z-index: 1000;

    background: rgba(8, 9, 11, 0.78);

    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);

    border-bottom: 1px solid transparent;

    transition:
        background 0.3s ease,
        border-color 0.3s ease;
}

.header.scrolled {
    background: rgba(8, 9, 11, 0.94);

    border-color: var(--line);
}

.header-inner {

    min-height: 78px;

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 32px;
}


/* LOGO */

.logo {
    display: flex;

    align-items: center;

    gap: 13px;

    flex-shrink: 0;
}

.logo-mark {
    font-family: "Manrope", sans-serif;

    font-size: 25px;

    font-weight: 800;

    letter-spacing: -1.5px;

    color: var(--white);
}

.logo-name {

    font-size: 11px;

    font-weight: 500;

    line-height: 1.2;

    color: var(--text-muted);

    max-width: 100px;

    text-transform: uppercase;

    letter-spacing: 0.08em;
}


/* NAV */

.main-nav {

    display: flex;

    align-items: center;

    gap: 34px;

    margin-left: auto;
}

.main-nav a {

    position: relative;

    font-size: 13px;

    color: var(--text-soft);

    transition:
        color 0.25s ease;
}

.main-nav a::after {

    content: "";

    position: absolute;

    left: 0;
    bottom: -7px;

    width: 0;

    height: 1px;

    background: var(--accent);

    transition: width 0.25s ease;
}

.main-nav a:hover {
    color: var(--white);
}

.main-nav a:hover::after {
    width: 100%;
}


/* HEADER BUTTON */

.header-button {

    display: inline-flex;

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

    min-height: 42px;

    padding: 0 20px;

    border-radius: 8px;

    background: var(--white);

    color: #08090b;

    font-size: 13px;

    font-weight: 600;

    transition:
        transform 0.25s ease,
        background 0.25s ease;
}

.header-button:hover {

    transform: translateY(-2px);

    background: var(--accent);
}


/* MOBILE BUTTON */

.mobile-menu-button {

    display: none;

    width: 44px;
    height: 44px;

    border: 1px solid var(--line);

    background: transparent;

    border-radius: 8px;

    cursor: pointer;

    align-items: center;

    justify-content: center;

    flex-direction: column;

    gap: 5px;
}

.mobile-menu-button span {

    width: 18px;
    height: 1px;

    background: var(--white);

    transition:
        transform 0.25s ease,
        opacity 0.25s ease;
}

.mobile-menu-button.active span:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
}

.mobile-menu-button.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-button.active span:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
}


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

.mobile-menu {

    position: fixed;

    top: 78px;
    left: 0;

    width: 100%;

    padding: 25px 24px 35px;

    background: rgba(8, 9, 11, 0.97);

    backdrop-filter: blur(20px);

    border-bottom: 1px solid var(--line);

    z-index: 999;

    opacity: 0;

    visibility: hidden;

    transform: translateY(-15px);

    transition:
        opacity 0.25s ease,
        visibility 0.25s ease,
        transform 0.25s ease;
}

.mobile-menu.open {

    opacity: 1;

    visibility: visible;

    transform: translateY(0);
}

.mobile-menu nav {

    display: flex;

    flex-direction: column;

    gap: 5px;
}

.mobile-menu nav a {

    padding: 15px 5px;

    border-bottom: 1px solid var(--line);

    color: var(--text-soft);

    font-size: 15px;
}

.mobile-menu-button-link {

    margin-top: 18px;

    text-align: center;

    background: var(--white);

    color: #08090b !important;

    border-radius: 8px;

    border: none !important;

    font-weight: 600;
}


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

.hero {

    min-height: 100vh;

    padding-top: 78px;

    display: flex;

    flex-direction: column;

    justify-content: center;

    overflow: hidden;

    background:

        radial-gradient(
            circle at 75% 40%,
            rgba(200, 255, 74, 0.055),
            transparent 30%
        ),

        radial-gradient(
            circle at 15% 70%,
            rgba(255, 255, 255, 0.025),
            transparent 30%
        );
}

.hero::before {

    content: "";

    position: absolute;

    top: 0;
    left: 50%;

    width: 1px;
    height: 100%;

    background: linear-gradient(
        to bottom,
        transparent,
        rgba(255,255,255,0.04),
        transparent
    );
}

.hero-grid {

    display: grid;

    grid-template-columns:
        minmax(0, 1fr)
        minmax(420px, 0.9fr);

    align-items: center;

    gap: 80px;

    padding-top: 70px;

    padding-bottom: 100px;
}


/* HERO CONTENT */

.hero-content {

    position: relative;

    z-index: 2;
}

.eyebrow {

    display: inline-flex;

    align-items: center;

    gap: 10px;

    margin-bottom: 28px;

    color: var(--text-muted);

    font-size: 10px;

    font-weight: 600;

    letter-spacing: 0.18em;
}

.eyebrow-dot {

    width: 7px;
    height: 7px;

    border-radius: 50%;

    background: var(--accent);

    box-shadow:
        0 0 0 5px rgba(200, 255, 74, 0.08);
}


.hero h1 {

    max-width: 760px;

    font-family: "Manrope", sans-serif;

    font-size: clamp(
        50px,
        6vw,
        82px
    );

    line-height: 0.98;

    letter-spacing: -0.055em;

    font-weight: 700;
}

.hero h1 span {

    display: block;

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


.hero-description {

    max-width: 580px;

    margin-top: 30px;

    color: var(--text-soft);

    font-size: 17px;

    line-height: 1.7;
}


/* HERO BUTTONS */

.hero-actions {

    display: flex;

    align-items: center;

    gap: 12px;

    margin-top: 38px;
}

.button {

    min-height: 52px;

    padding: 0 23px;

    display: inline-flex;

    align-items: center;

    justify-content: center;

    gap: 16px;

    border-radius: 9px;

    font-size: 13px;

    font-weight: 600;

    transition:
        transform 0.25s ease,
        background 0.25s ease,
        border-color 0.25s ease;
}

.button-primary {

    background: var(--accent);

    color: #08090b;
}

.button-primary:hover {

    transform: translateY(-3px);

    background: var(--white);
}

.button-primary span {

    font-size: 18px;

    line-height: 1;
}


.button-secondary {

    border: 1px solid var(--line);

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

.button-secondary:hover {

    transform: translateY(-3px);

    border-color: rgba(255,255,255,0.25);

    color: var(--white);
}


/* HERO NOTE */

.hero-note {

    display: flex;

    align-items: flex-start;

    gap: 10px;

    max-width: 520px;

    margin-top: 30px;

    color: var(--text-muted);

    font-size: 11px;

    line-height: 1.6;
}

.note-icon {

    color: var(--accent);

    font-size: 13px;

    margin-top: 1px;
}


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

.hero-visual {

    position: relative;

    display: flex;

    justify-content: center;

    align-items: center;
}

.visual-glow {

    position: absolute;

    width: 420px;
    height: 420px;

    border-radius: 50%;

    background: rgba(200, 255, 74, 0.035);

    filter: blur(60px);
}


.investment-card {

    position: relative;

    width: 100%;

    max-width: 510px;

    padding: 25px;

    border-radius: var(--radius-lg);

    background:
        linear-gradient(
            145deg,
            rgba(255,255,255,0.065),
            rgba(255,255,255,0.018)
        );

    border: 1px solid rgba(255,255,255,0.09);

    box-shadow:
        0 30px 80px rgba(0,0,0,0.35);

    backdrop-filter: blur(20px);

    transform: rotate(1deg);

    animation: floating-card 6s ease-in-out infinite;
}

@keyframes floating-card {

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

    50% {
        transform: rotate(1deg) translateY(-10px);
    }
}


.card-top {

    display: flex;

    justify-content: space-between;

    align-items: center;

    padding-bottom: 22px;

    border-bottom: 1px solid var(--line);

    color: var(--text-muted);

    font-size: 9px;

    font-weight: 600;

    letter-spacing: 0.16em;
}


.live-dot {

    width: 7px;
    height: 7px;

    border-radius: 50%;

    background: var(--accent);

    box-shadow:
        0 0 0 5px rgba(200,255,74,0.08);
}


/* PIPELINE */

.pipeline {

    padding: 23px 5px 20px;
}

.pipeline-item {

    display: flex;

    align-items: center;

    gap: 17px;

    padding: 12px 10px;

    border-radius: 10px;

    transition: background 0.25s ease;
}

.pipeline-item.active {

    background: rgba(200,255,74,0.06);
}

.pipeline-number {

    width: 35px;
    height: 35px;

    display: flex;

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

    flex-shrink: 0;

    border: 1px solid var(--line);

    border-radius: 8px;

    color: var(--text-muted);

    font-size: 9px;

    font-weight: 600;
}

.pipeline-item.active .pipeline-number {

    border-color: rgba(200,255,74,0.35);

    color: var(--accent);
}

.pipeline-item strong {

    display: block;

    font-size: 11px;

    letter-spacing: 0.04em;

    font-weight: 600;
}

.pipeline-item small {

    display: block;

    margin-top: 2px;

    color: var(--text-muted);

    font-size: 10px;
}


.pipeline-line {

    width: 1px;
    height: 17px;

    margin-left: 27px;

    background: linear-gradient(
        to bottom,
        rgba(255,255,255,0.15),
        transparent
    );
}


.card-footer {

    display: flex;

    justify-content: space-between;

    padding-top: 18px;

    border-top: 1px solid var(--line);

    color: var(--text-muted);

    font-size: 8px;

    font-weight: 600;

    letter-spacing: 0.14em;
}


/* HERO BOTTOM */

.hero-bottom {

    position: absolute;

    bottom: 0;
    left: 0;

    width: 100%;

    border-top: 1px solid var(--line);
}

.hero-bottom-inner {

    min-height: 58px;

    display: flex;

    align-items: center;

    gap: 20px;

    color: var(--text-muted);

    font-size: 9px;

    font-weight: 600;

    letter-spacing: 0.16em;
}

.hero-line {

    flex: 1;

    height: 1px;

    background: var(--line);
}


/* =========================================================
   INTRO
========================================================= */

.intro {

    padding: 150px 0;

    border-bottom: 1px solid var(--line);
}

.section-label {

    margin-bottom: 22px;

    color: var(--accent);

    font-size: 9px;

    font-weight: 700;

    letter-spacing: 0.18em;
}

.intro-grid {

    display: grid;

    grid-template-columns:
        minmax(0, 1.1fr)
        minmax(300px, 0.65fr);

    gap: 100px;

    align-items: start;
}

.intro h2,
.section-heading h2,
.sectors h2,
.about h2,
.application h2 {

    font-family: "Manrope", sans-serif;

    font-size: clamp(
        38px,
        4.5vw,
        64px
    );

    line-height: 1.02;

    letter-spacing: -0.045em;

    font-weight: 600;
}

.intro h2 span,
.section-heading h2 span,
.sectors h2 span,
.about h2 span,
.application h2 span {

    display: block;

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


.intro-text {

    padding-top: 10px;
}

.intro-text p {

    margin-bottom: 24px;

    color: var(--text-soft);

    font-size: 16px;

    line-height: 1.75;
}


/* =========================================================
   ADVANTAGES
========================================================= */

.advantages {

    padding: 150px 0;

    border-bottom: 1px solid var(--line);
}

.section-heading {

    max-width: 800px;

    margin-bottom: 65px;
}


.advantages-grid {

    display: grid;

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

    border-top: 1px solid var(--line);

    border-left: 1px solid var(--line);
}


.advantage-card {

    position: relative;

    min-height: 350px;

    padding: 30px;

    border-right: 1px solid var(--line);

    border-bottom: 1px solid var(--line);

    transition:
        background 0.3s ease;
}

.advantage-card:hover {

    background: rgba(255,255,255,0.025);
}


.card-index {

    color: var(--text-muted);

    font-size: 10px;

    font-weight: 600;

    letter-spacing: 0.1em;
}


.advantage-icon {

    position: absolute;

    top: 29px;
    right: 30px;

    color: var(--accent);

    font-size: 25px;

    font-weight: 300;
}


.advantage-card h3 {

    margin-top: 95px;

    font-family: "Manrope", sans-serif;

    font-size: 22px;

    font-weight: 600;

    letter-spacing: -0.02em;
}


.advantage-card p {

    margin-top: 15px;

    color: var(--text-muted);

    font-size: 13px;

    line-height: 1.7;
}


/* =========================================================
   PROCESS
========================================================= */

.process {

    padding: 150px 0;

    border-bottom: 1px solid var(--line);
}


.process-heading {

    max-width: 700px;
}


.process-list {

    border-top: 1px solid var(--line);
}


.process-item {

    display: grid;

    grid-template-columns: 100px 1fr 50px;

    align-items: center;

    gap: 30px;

    min-height: 145px;

    padding: 25px 0;

    border-bottom: 1px solid var(--line);

    transition:
        padding 0.3s ease,
        background 0.3s ease;
}


.process-item:hover {

    padding-left: 15px;
    padding-right: 15px;

    background: rgba(255,255,255,0.018);
}


.process-number {

    color: var(--accent);

    font-family: "Manrope", sans-serif;

    font-size: 13px;

    font-weight: 700;
}


.process-content h3 {

    font-family: "Manrope", sans-serif;

    font-size: 22px;

    font-weight: 600;

    letter-spacing: -0.02em;
}


.process-content p {

    max-width: 620px;

    margin-top: 7px;

    color: var(--text-muted);

    font-size: 13px;

    line-height: 1.65;
}


.process-arrow {

    color: var(--text-muted);

    font-size: 22px;

    transition:
        color 0.25s ease,
        transform 0.25s ease;
}

.process-item:hover .process-arrow {

    color: var(--accent);

    transform: translateX(5px);
}


/* =========================================================
   SECTORS
========================================================= */

.sectors {

    padding: 140px 0;

    background: var(--bg-soft);

    border-bottom: 1px solid var(--line);
}


.sectors-grid {

    display: grid;

    grid-template-columns:
        0.8fr
        1fr;

    gap: 100px;

    align-items: center;
}


.sector-tags {

    display: flex;

    flex-wrap: wrap;

    gap: 10px;
}


.sector-tags span {

    padding: 13px 18px;

    border: 1px solid var(--line);

    border-radius: 50px;

    color: var(--text-soft);

    font-size: 12px;

    transition:
        border-color 0.25s ease,
        color 0.25s ease,
        background 0.25s ease;
}


.sector-tags span:hover {

    border-color: rgba(200,255,74,0.35);

    color: var(--accent);

    background: rgba(200,255,74,0.03);
}


/* =========================================================
   ABOUT
========================================================= */

.about {

    padding: 150px 0;

    border-bottom: 1px solid var(--line);
}


.about-grid {

    display: grid;

    grid-template-columns:
        1fr
        0.8fr;

    gap: 100px;
}


.about-text {

    padding-top: 35px;
}


.about-text p {

    margin-bottom: 25px;

    color: var(--text-soft);

    font-size: 17px;

    line-height: 1.75;
}


/* =========================================================
   APPLICATION
========================================================= */

.application {

    padding: 120px 0;
}


.application-box {

    position: relative;

    overflow: hidden;

    display: grid;

    grid-template-columns:
        1fr
        auto;

    gap: 80px;

    align-items: end;

    padding: 70px;

    border-radius: var(--radius-lg);

    background:

        radial-gradient(
            circle at 85% 25%,
            rgba(200,255,74,0.14),
            transparent 28%
        ),

        #15191d;

    border: 1px solid var(--line);
}


.application-box::before {

    content: "";

    position: absolute;

    width: 350px;
    height: 350px;

    right: -130px;
    bottom: -180px;

    border-radius: 50%;

    border: 1px solid rgba(200,255,74,0.12);
}


.application-content {

    position: relative;

    z-index: 2;

    max-width: 700px;
}


.application-content p {

    max-width: 600px;

    margin-top: 25px;

    color: var(--text-muted);

    font-size: 15px;

    line-height: 1.7;
}


.application-action {

    position: relative;

    z-index: 2;

    display: flex;

    flex-direction: column;

    align-items: flex-start;

    gap: 14px;
}


.button-light {

    background: var(--white);

    color: #08090b;
}

.button-light:hover {

    transform: translateY(-3px);

    background: var(--accent);
}


.application-action small {

    color: var(--text-muted);

    font-size: 9px;

    line-height: 1.5;

    max-width: 220px;
}


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

.footer {

    border-top: 1px solid var(--line);

    background: #060708;
}


.footer-top {

    display: grid;

    grid-template-columns:
        1fr
        1fr;

    gap: 100px;

    padding: 75px 0;
}


.footer-brand p {

    margin-top: 10px;

    color: var(--text-soft);

    font-size: 12px;
}


.footer-brand > span {

    display: block;

    margin-top: 22px;

    color: var(--text-muted);

    font-size: 10px;

    letter-spacing: 0.1em;

    text-transform: uppercase;
}


.footer-links {

    display: grid;

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

    gap: 30px;
}


.footer-links div {

    display: flex;

    flex-direction: column;

    gap: 10px;
}


.footer-links strong {

    margin-bottom: 8px;

    color: var(--white);

    font-size: 10px;

    text-transform: uppercase;

    letter-spacing: 0.12em;
}


.footer-links a {

    color: var(--text-muted);

    font-size: 12px;

    transition: color 0.25s ease;
}

.footer-links a:hover {

    color: var(--accent);
}


.footer-bottom {

    min-height: 70px;

    display: flex;

    align-items: center;

    justify-content: space-between;

    border-top: 1px solid var(--line);

    color: var(--text-muted);

    font-size: 10px;

    letter-spacing: 0.05em;
}


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

@media (max-width: 1050px) {

    .main-nav {
        gap: 20px;
    }

    .hero-grid {

        grid-template-columns:
            1fr;

        gap: 70px;
    }

    .hero-content {
        max-width: 800px;
    }

    .hero-visual {

        justify-content: flex-start;
    }

    .investment-card {
        max-width: 600px;
    }

    .advantages-grid {

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

    .sectors-grid,
    .about-grid {

        grid-template-columns:
            1fr;

        gap: 50px;
    }

}


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

@media (max-width: 768px) {

    .container {

        width: min(
            calc(100% - 32px),
            var(--container)
        );
    }


    /* HEADER */

    .header-inner {

        min-height: 70px;
    }

    .logo-name {

        display: none;
    }

    .main-nav,
    .header-button {

        display: none;
    }

    .mobile-menu-button {

        display: flex;
    }

    .mobile-menu {

        top: 70px;
    }


    /* HERO */

    .hero {

        padding-top: 70px;

        min-height: auto;
    }

    .hero-grid {

        padding-top: 80px;

        padding-bottom: 100px;

        gap: 55px;
    }

    .hero h1 {

        font-size: clamp(
            43px,
            12vw,
            62px
        );
    }

    .hero-description {

        margin-top: 25px;

        font-size: 15px;
    }

    .hero-actions {

        flex-direction: column;

        align-items: stretch;

        margin-top: 30px;
    }

    .button {

        width: 100%;
    }

    .hero-note {

        font-size: 10px;
    }


    /* VISUAL */

    .hero-visual {

        width: 100%;
    }

    .investment-card {

        padding: 20px;

        transform: none;

        animation: none;
    }

    .pipeline-item {

        gap: 12px;

        padding-left: 5px;

        padding-right: 5px;
    }

    .pipeline-item strong {

        font-size: 10px;
    }

    .pipeline-item small {

        font-size: 9px;
    }


    /* HERO BOTTOM */

    .hero-bottom {

        position: relative;
    }

    .hero-bottom-inner {

        min-height: 50px;

        font-size: 7px;
    }


    /* SECTIONS */

    .intro,
    .advantages,
    .process,
    .sectors,
    .about {

        padding: 90px 0;
    }

    .application {

        padding: 80px 0;
    }


    .intro-grid {

        grid-template-columns: 1fr;

        gap: 35px;
    }


    .intro h2,
    .section-heading h2,
    .sectors h2,
    .about h2,
    .application h2 {

        font-size: 39px;
    }


    /* ADVANTAGES */

    .advantages-grid {

        grid-template-columns: 1fr;
    }

    .advantage-card {

        min-height: 290px;
    }

    .advantage-card h3 {

        margin-top: 75px;
    }


    /* PROCESS */

    .process-item {

        grid-template-columns:
            45px
            1fr
            25px;

        gap: 15px;

        min-height: 125px;
    }

    .process-content h3 {

        font-size: 18px;
    }

    .process-content p {

        font-size: 12px;
    }


    /* SECTORS */

    .sectors-grid {

        gap: 40px;
    }


    /* ABOUT */

    .about-text {

        padding-top: 0;
    }


    /* APPLICATION */

    .application-box {

        grid-template-columns: 1fr;

        gap: 40px;

        padding: 40px 28px;
    }


    /* FOOTER */

    .footer-top {

        grid-template-columns: 1fr;

        gap: 50px;

        padding: 60px 0;
    }

    .footer-links {

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

}


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

@media (max-width: 430px) {

    .hero h1 {

        font-size: 42px;
    }

    .intro h2,
    .section-heading h2,
    .sectors h2,
    .about h2,
    .application h2 {

        font-size: 34px;
    }

    .investment-card {

        padding: 16px;
    }

    .card-top {

        font-size: 7px;
    }

    .pipeline-item {

        padding-top: 9px;

        padding-bottom: 9px;
    }

    .pipeline-number {

        width: 30px;
        height: 30px;
    }

    .pipeline-line {

        margin-left: 20px;
    }

    .process-item {

        grid-template-columns:
            35px
            1fr
            18px;

        gap: 10px;
    }

    .process-number {

        font-size: 11px;
    }

    .process-content h3 {

        font-size: 16px;
    }

    .process-content p {

        font-size: 11px;
    }

    .process-arrow {

        font-size: 17px;
    }

    .footer-links {

        grid-template-columns: 1fr 1fr;
    }

    .footer-bottom {

        font-size: 8px;
    }

}

/* =========================================================
   APPLICATION FORM
========================================================= */

.application-box {

    grid-template-columns:
        0.75fr
        1fr;

    align-items: start;
}


.application-content {

    padding-top: 10px;
}


.application-points {

    display: flex;

    flex-direction: column;

    gap: 15px;

    margin-top: 35px;
}


.application-points div {

    display: flex;

    align-items: center;

    gap: 13px;

    color: var(--text-muted);

    font-size: 12px;

    line-height: 1.5;
}


.application-points span {

    display: flex;

    align-items: center;

    justify-content: center;

    width: 27px;
    height: 27px;

    flex-shrink: 0;

    border: 1px solid var(--line);

    border-radius: 7px;

    color: var(--accent);

    font-size: 8px;

    font-weight: 700;
}


/* FORM */

.application-form-wrapper {

    position: relative;

    z-index: 2;
}


.application-form {

    display: flex;

    flex-direction: column;

    gap: 20px;

    padding: 30px;

    border-radius: 18px;

    background: rgba(5, 6, 7, 0.72);

    border: 1px solid rgba(255,255,255,0.08);

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


.form-row {

    display: grid;

    grid-template-columns:
        1fr
        1fr;

    gap: 15px;
}


.form-group {

    position: relative;

    display: flex;

    flex-direction: column;

    gap: 8px;
}


.form-group label {

    color: var(--text-soft);

    font-size: 10px;

    font-weight: 600;

    letter-spacing: 0.03em;
}


.form-group input,
.form-group select,
.form-group textarea {

    width: 100%;

    border: 1px solid rgba(255,255,255,0.09);

    outline: none;

    border-radius: 8px;

    background: rgba(255,255,255,0.035);

    color: var(--white);

    font-family: inherit;

    font-size: 13px;

    transition:
        border-color 0.25s ease,
        background 0.25s ease,
        box-shadow 0.25s ease;
}


.form-group input,
.form-group select {

    height: 48px;

    padding: 0 14px;
}


.form-group textarea {

    min-height: 130px;

    padding: 14px;

    resize: vertical;

    line-height: 1.6;
}


.form-group input::placeholder,
.form-group textarea::placeholder {

    color: #565b63;
}


.form-group select {

    appearance: none;

    -webkit-appearance: none;

    cursor: pointer;

    background-image:

        linear-gradient(45deg, transparent 50%, #777 50%),
        linear-gradient(135deg, #777 50%, transparent 50%);

    background-position:

        calc(100% - 17px) 20px,
        calc(100% - 12px) 20px;

    background-size:
        5px 5px,
        5px 5px;

    background-repeat: no-repeat;
}


.form-group select option {

    background: #111419;

    color: var(--white);
}


.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {

    border-color: rgba(200,255,74,0.5);

    background: rgba(200,255,74,0.025);

    box-shadow:
        0 0 0 3px rgba(200,255,74,0.05);
}


.textarea-counter {

    position: absolute;

    right: 12px;

    bottom: 10px;

    color: #555a62;

    font-size: 9px;
}


/* FILE */

.file-upload {

    min-height: 72px;

    display: flex;

    align-items: center;

    gap: 14px;

    padding: 14px;

    border: 1px dashed rgba(255,255,255,0.15);

    border-radius: 9px;

    cursor: pointer;

    transition:
        border-color 0.25s ease,
        background 0.25s ease;
}


.file-upload:hover {

    border-color: rgba(200,255,74,0.45);

    background: rgba(200,255,74,0.025);
}


.file-upload-icon {

    display: flex;

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

    width: 38px;
    height: 38px;

    flex-shrink: 0;

    border-radius: 8px;

    background: rgba(200,255,74,0.08);

    color: var(--accent);

    font-size: 19px;
}


.file-upload-text {

    display: flex;

    flex-direction: column;

    gap: 3px;
}


.file-upload-text strong {

    color: var(--text-soft);

    font-size: 11px;
}


.file-upload-text small {

    color: var(--text-muted);

    font-size: 9px;
}


.file-upload input {

    display: none;
}


.selected-file {

    margin-top: -8px;

    color: var(--accent);

    font-size: 10px;

    word-break: break-word;
}


/* CHECKBOX */

.form-consent {

    margin-top: -2px;
}


.checkbox-label {

    display: flex;

    align-items: flex-start;

    gap: 10px;

    cursor: pointer;

    color: var(--text-muted);

    font-size: 10px;

    line-height: 1.55;
}


.checkbox-label input {

    position: absolute;

    opacity: 0;

    pointer-events: none;
}


.custom-checkbox {

    width: 17px;
    height: 17px;

    flex-shrink: 0;

    margin-top: 1px;

    border: 1px solid rgba(255,255,255,0.18);

    border-radius: 4px;

    position: relative;

    transition:
        border-color 0.2s ease,
        background 0.2s ease;
}


.checkbox-label input:checked + .custom-checkbox {

    background: var(--accent);

    border-color: var(--accent);
}


.checkbox-label input:checked + .custom-checkbox::after {

    content: "";

    position: absolute;

    left: 5px;
    top: 2px;

    width: 4px;
    height: 8px;

    border:
        solid #08090b;

    border-width:
        0 2px 2px 0;

    transform: rotate(45deg);
}


/* SUBMIT */

.form-submit {

    width: 100%;

    border: none;

    cursor: pointer;

    margin-top: 2px;
}


.form-submit.loading {

    opacity: 0.65;

    pointer-events: none;
}


.form-submit.loading span:first-child::after {

    content: "...";
}


/* MESSAGE */

.form-message {

    display: none;

    padding: 13px 15px;

    border-radius: 8px;

    font-size: 11px;

    line-height: 1.5;
}


.form-message.success {

    display: block;

    border: 1px solid rgba(200,255,74,0.2);

    background: rgba(200,255,74,0.06);

    color: var(--accent);
}


.form-message.error {

    display: block;

    border: 1px solid rgba(255,100,100,0.2);

    background: rgba(255,100,100,0.05);

    color: #ff9d9d;
}


.form-disclaimer {

    margin: 0;

    color: #555a62;

    font-size: 8px;

    line-height: 1.5;

    text-align: center;
}


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

@media (max-width: 1050px) {

    .application-box {

        grid-template-columns: 1fr;

        gap: 50px;
    }

}


@media (max-width: 768px) {

    .application-form {

        padding: 20px;

        gap: 17px;
    }


    .form-row {

        grid-template-columns: 1fr;

        gap: 17px;
    }


    .application-points {

        gap: 12px;
    }


    .application-points div {

        font-size: 11px;
    }

}


@media (max-width: 430px) {

    .application-form {

        padding: 17px;
    }

    .file-upload {

        align-items: flex-start;
    }

}

/* =========================================================
   LANGUAGE SWITCHER
========================================================= */

.language-switcher {

    position: relative;

    z-index: 1000;
}


.language-current {

    display: flex;

    align-items: center;

    gap: 7px;

    height: 36px;

    padding: 0 11px;

    border: 1px solid rgba(255,255,255,0.09);

    border-radius: 7px;

    background: rgba(255,255,255,0.025);

    color: var(--text-soft);

    font-family: inherit;

    font-size: 10px;

    font-weight: 700;

    cursor: pointer;

    transition:
        border-color .25s ease,
        background .25s ease;
}


.language-current:hover {

    border-color: rgba(200,255,74,0.3);

    background: rgba(200,255,74,0.035);
}


.language-current span {

    color: var(--text-muted);

    font-size: 12px;

    transition:
        transform .25s ease;
}


.language-switcher.open
.language-current span {

    transform: rotate(180deg);
}


.language-menu {

    position: absolute;

    top: calc(100% + 9px);

    right: 0;

    min-width: 190px;

    padding: 7px;

    border: 1px solid rgba(255,255,255,0.08);

    border-radius: 10px;

    background: rgba(13,15,18,0.98);

    box-shadow:
        0 20px 50px rgba(0,0,0,0.4);

    opacity: 0;

    visibility: hidden;

    transform:
        translateY(-5px);

    transition:
        opacity .2s ease,
        visibility .2s ease,
        transform .2s ease;
}


.language-switcher.open
.language-menu {

    opacity: 1;

    visibility: visible;

    transform:
        translateY(0);
}


.language-menu a {

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 15px;

    padding: 9px 10px;

    border-radius: 6px;

    color: var(--text-muted);

    text-decoration: none;

    font-size: 11px;

    transition:
        background .2s ease,
        color .2s ease;
}


.language-menu a:hover,
.language-menu a.active {

    color: var(--white);

    background:
        rgba(200,255,74,0.06);
}


.language-menu a.active {

    color: var(--accent);
}


.language-menu small {

    color: #565b63;

    font-size: 8px;

    font-weight: 700;
}


@media (max-width: 768px) {

    .language-menu {

        right: -5px;
    }

}