.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 120px 40px 120px;
    position: relative;
    overflow: hidden;
}

.hero .hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero .hero-bg .hero-bg-gradient {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 75% 20%, rgba(0, 217, 255, 0.13), transparent 55%), radial-gradient(ellipse at 15% 80%, rgba(13, 63, 143, 0.08), transparent 50%);
}

.hero .hero-bg .hero-grid {
    position: absolute;
    inset: 0;
    background-image: linear-gradient(var(--border) 1px, transparent 1px), linear-gradient(90deg, var(--border) 1px, transparent 1px);
    background-size: 60px 60px;
    mask-image: radial-gradient(ellipse at 60% 40%, rgba(0, 0, 0, 0.4), transparent 70%);
}

.hero .h-title {
    font-family: 'Unbounded', sans-serif;
    font-size: min(12vw, 200px);
    font-weight: 900;
    line-height: .82;
    position: relative;
    z-index: 1;
}

.hero .h-title .h-t-line {
    overflow: hidden;
    display: block;
    color: var(--text-primary);
}

.hero .h-title .h-t-line .h-t-w {
    display: inline-block;
    transform: translateY(200px);
}

.hero .h-title .h-t-line .h-t-w.stroke {
    -webkit-text-stroke: 2px var(--primary);
    color: transparent;
}

.main-hero {
    padding: 80px 0 60px;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.08fr .92fr;
    gap: 20px;
    padding: 0px 50px;
    align-items: center
}

.visual-map {
    width: 100%;
    min-height: 420px;
    position: relative;
    overflow: hidden;
    border-radius: 34px;
    border: 1px solid var(--border);
    background: radial-gradient(circle at 45% 35%, rgba(49, 199, 255, .2), transparent 35%), linear-gradient(135deg, rgba(255, 255, 255, .08), rgba(255, 255, 255, .025));
    box-shadow: 0 15px 20px rgba(0, 0, 0, .32)
}

.visual-map:before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: linear-gradient(rgba(255, 255, 255, .05) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, .05) 1px, transparent 1px);
    background-size: 34px 34px;
    mask-image: radial-gradient(circle, #000 45%, transparent 85%)
}

.map-pin {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 96px;
    height: 96px;
    border-radius: 32px;
    display: grid;
    place-items: center;
    font-size: 36px;
    color: var(--text-primary);
    background: var(--gradient-primary);
    box-shadow: 0 0 80px rgba(49, 199, 255, .45)
}

.map-pulse {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 210px;
    height: 210px;
    background: linear-gradient(135deg, rgba(49, 199, 255, .35), rgba(139, 92, 255, .32));
    border: 1px solid rgba(49, 199, 255, .32);
    border-radius: 50%;
    animation: pulse 2.4s ease infinite
}

.map-pulse:nth-child(2) {
    animation-delay: .55s
}

.map-pulse:nth-child(3) {
    animation-delay: 1.1s
}

@keyframes pulse {
    0% {
        opacity: 0;
        transform: translate(-50%, -50%) scale(.55)
    }

    40% {
        opacity: 1
    }

    100% {
        opacity: 0;
        transform: translate(-50%, -50%) scale(1.25)
    }
}

.floating-chip {
    position: absolute;
    padding: 11px 14px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.5);
    border: 1px solid rgba(255, 255, 255, .13);
    color: var(--muted);
    backdrop-filter: blur(12px);
    font-size: 13px
}

.floating-chip i {
    color: var(--text-primary);
    margin-right: 8px
}

.chip-1 {
    top: 50px;
    left: 40px
}

.chip-2 {
    left: 40px;
    top: 50%
}

.chip-3 {
    bottom: 58px;
    left: 120px
}

.chip-4 {
    bottom: 82px;
    right: 54px
}

.chip-5 {
    right: 40px;
    top: 100px
}

.section-tag {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 9px 16px;
    border-radius: 999px;
    color: var(--secondary);
    background: rgba(49, 199, 255, .1);
    border: 1px solid rgba(49, 199, 255, .2);
    font-size: 13px;
    font-weight: 900;
    letter-spacing: .12em;
    text-transform: uppercase;
    margin-bottom: 20px
}

.hero-title {
    font-size: clamp(42px, 7vw, 88px);
    line-height: .96;
    letter-spacing: -.07em;
    margin-bottom: 20px;
}

.hero-title .c-b-c {
    display: inline-block;
    overflow: hidden;
}

.hero-title .c-b-c .c-b-c-a .c-b-c-a-c {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent
}

.hero-title .c-b-c .c-b-c-a {
    display: flex;
    transform: translateY(85px);
}

.hero-text {
    max-width: 660px;
    color: var(--muted);
    font-size: 18px;
    line-height: 1.75;
    margin-bottom: 30px
}

.hero-actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap
}

.hero-card {
    min-height: 420px;
    position: relative;
    overflow: hidden;
    border-radius: 34px;
    border: 1px solid var(--border);
    background: linear-gradient(180deg, rgba(255, 255, 255, .095), rgba(255, 255, 255, .035));
    box-shadow: 0 15px 20px rgba(0, 0, 0, .42);
    padding: 26px
}

.hero-card:before {
    content: "";
    position: absolute;
    inset: -90px;
    background: conic-gradient(from 180deg, transparent, rgba(49, 199, 255, .25), rgba(139, 92, 255, .24), transparent);
    animation: spin 10s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg)
    }
}

.hero-card-inner {
    position: relative;
    z-index: 1;
    height: 100%;
    min-height: 366px;
    border-radius: 26px;
    padding: 24px;
    background: rgb(237, 247, 255, 0.1);
    backdrop-filter: blur(14px);
    display: grid;
    place-items: center;
}

.contact-section {
    max-width: 1440px;
    width: 100%;
    margin: 0px auto;
    padding: 80px 50px;
    position: relative;
}

.section-head {
    display: flex;
    align-items: end;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 28px;
    margin-bottom: 34px;
}

.section-head h2 {
    font-size: clamp(34px, 5vw, 62px);
    line-height: 1;
    letter-spacing: -.07em;
}

.section-head h2 .c-c-b {
    display: inline-block;
    overflow: hidden;
}

.section-head h2 .c-c-b .c-c-b-a {
    display: flex;
    transform: translateY(80px);
}

.section-head h2 .c-c-b .c-c-b-a .c-c-b-a-s {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent
}

.section-head p {
    max-width: 540px;
    color: var(--text-secondary);
    line-height: 1.75;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 38px;
    align-items: center
}

.contact-info {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px
}

.contact-card {
    position: relative;
    overflow: hidden;
    padding: 24px;
    border-radius: 28px;
    background: var(--bg-secondary);
    box-shadow: var(--shadow-md);
    translate: 0px 0px;
    transition: translate var(--spring);
}

.contact-card:before {
    content: "";
    position: absolute;
    width: 150px;
    height: 150px;
    right: -75px;
    top: -75px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(49, 199, 255, .58), transparent 70%)
}

.contact-card::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: var(--accent);
    transform: scaleX(0);
    transform-origin: right center;
    transition: transform var(--spring);
}

.contact-card:hover {
    translate: 0px -10px;
}

.contact-card:hover::after {
    transform: scaleX(1);
    transform-origin: left center;
}

.contact-icon {
    width: 54px;
    height: 54px;
    border-radius: 18px;
    display: grid;
    place-items: center;
    margin-bottom: 18px;
    color: var(--blue);
    font-size: 22px;
    background: rgba(49, 199, 255, .1);
    border: 1px solid rgba(49, 199, 255, .2)
}

.contact-card h3 {
    font-size: 22px;
    margin-bottom: 10px
}

.contact-card p,
.contact-card a {
    color: var(--text-secondary);
    line-height: 1.7;
    transition: color var(--spring);
}

.contact-card a:hover {
    color: var(--primary)
}

.contact-form-wrap {
    max-width: 1280px;
    width: 100%;
    margin: 0px auto;
    position: relative;
    overflow: hidden;
    padding: 30px;
    border-radius: 34px;
    background: linear-gradient(180deg, rgba(255, 255, 255, .095), rgba(255, 255, 255, .035));
    border: 1px solid var(--border);
    box-shadow: 0 15px 25px rgba(0, 0, 0, .32);
}

.contact-form-wrap:before {
    content: "";
    position: absolute;
    inset: -120px;
    background: conic-gradient(from 180deg, transparent, rgba(49, 199, 255, .16), rgba(139, 92, 255, .16), transparent);
    animation: spin 12s linear infinite
}


.contact-form {
    position: relative;
    z-index: 1;
    display: grid;
    gap: 18px;
    padding: 26px;
    border-radius: 26px;
    background: transparent;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.04), 0 6px 12px rgba(0, 0, 0, 0.06), 0 12px 32px rgba(0, 0, 0, 0.08);
    backdrop-filter: blur(14px)
}

.form-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px
}

.field {
    display: grid;
    gap: 8px
}

.field label {
    font-size: 13px;
    font-weight: 900;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: var(--text-primary)
}

.field input,
.field select,
.field textarea {
    width: 100%;
    border: 1px solid rgba(0, 0, 0, 0.22);
    outline: 0;
    border-radius: 18px;
    padding: 15px 16px;
    background: rgba(255, 255, 255, .055);
    color: var(--secondary);
    font: inherit;
    transition: var(--spring)
}

.field textarea {
    min-height: 150px;
    resize: vertical
}

.field input:focus,
.field select:focus,
.field textarea:focus {
    border-color: rgba(49, 199, 255, .5);
    box-shadow: 0 0 0 4px rgba(49, 199, 255, .08)
}

.field select option {
    background: #090d22;
    color: #fff;
    border-radius: 25px;
}

.contact-note {
    color: var(--muted);
    font-size: 14px;
    line-height: 1.65
}

.btn-primary {
    display: inline-block;
    padding: 15px 30px;
    overflow: hidden;
    border-radius: 25px;
    color: var(--text-primary);
    border: none;
    outline: none;
    background: var(--accent);
    position: relative;
    transition: var(--spring);
}

.btn-primary:hover {
    transform: translateY(-5px);
    box-shadow: 0px 5px 15px var(--accent);
}

.hidden-field {
    display: none !important;
}

.field-error {
    display: block;
    min-height: 16px;
    margin-top: 4px;
    font-size: 12px;
    color: #ff6b6b;
    letter-spacing: 0.02em;
}

.field.has-error input,
.field.has-error select,
.field.has-error textarea {
    border-color: rgba(255, 107, 107, 0.85);
    box-shadow: 0 0 0 4px rgba(255, 107, 107, 0.12);
}

.form-popup {
    position: fixed;
    inset: 0;
    width: 100%;
    height: 100%;
    background: rgba(5, 7, 20, 0.78);
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 99999;
    animation: popupFadeIn 0.3s ease;
    padding: 18px;
}

.popup-content {
    width: min(420px, 100%);
    padding: 34px 28px;
    border-radius: 28px;
    text-align: center;
    color: #fff;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.055));
    border: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.45);
    animation: popupSlideUp 0.35s ease;
    position: relative;
    overflow: hidden;
}

.popup-content::before {
    content: "";
    position: absolute;
    inset: -120px;
    background: conic-gradient(from 180deg, transparent, rgba(49, 199, 255, 0.22), rgba(139, 92, 255, 0.22), transparent);
    animation: popupSpin 8s linear infinite;
    z-index: -1;
}

.popup-icon {
    width: 68px;
    height: 68px;
    margin: 0 auto 18px;
    border-radius: 50%;
    display: grid;
    place-items: center;
}

.form-popup.success .popup-icon {
    background: rgba(40, 167, 69, 0.14);
    color: #28e98c;
    border: 1px solid rgba(40, 233, 140, 0.3);
}

.form-popup.error .popup-icon {
    background: rgba(220, 53, 69, 0.14);
    color: #ff6b6b;
    border: 1px solid rgba(255, 107, 107, 0.3);
}

.popup-icon svg {
    width: 34px;
    height: 34px;
}

.popup-content h3 {
    margin: 0 0 10px;
    font-size: 26px;
    color: #fff;
}

.popup-content p {
    margin: 0 0 24px;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.65;
}

.popup-close {
    border: none;
    outline: none;
    padding: 13px 34px;
    border-radius: 999px;
    color: #fff;
    background: linear-gradient(135deg, #31c7ff, #8b5cff);
    font-weight: 800;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.popup-close:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(49, 199, 255, 0.25);
}

.btn-primary:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none !important;
}

.select-wrap {
    position: relative;
    width: 100%;
}

.select-wrap select {
    width: 100%;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    padding-right: 52px;
}

.select-wrap::after {
    content: "";
    position: absolute;
    right: 20px;
    top: 50%;
    width: 10px;
    height: 10px;
    border-right: 2px solid var(--text-primary);
    border-bottom: 2px solid var(--text-primary);
    transform: translateY(-65%) rotate(45deg);
    pointer-events: none;
    z-index: 2;
}

@keyframes popupFadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes popupFadeOut {
    from {
        opacity: 1;
    }

    to {
        opacity: 0;
    }
}

@keyframes popupSlideUp {
    from {
        transform: translateY(22px) scale(0.96);
        opacity: 0;
    }

    to {
        transform: translateY(0) scale(1);
        opacity: 1;
    }
}

@keyframes popupSpin {
    to {
        transform: rotate(360deg);
    }
}

@media (max-width:786px) {
    .main-hero {
        padding: 40px 0px 20px;
    }

    .hero-grid {
        display: grid;
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 0px 8px;
    }

    .field label {
        font-size: 10.5px;
    }

    .hero-title {
        margin-bottom: 10px;
    }

    .hero-title .c-b-c .c-b-c-a {
        transform: translateY(0px);
    }

    .hero-text {
        margin-bottom: 10px
    }

    .hero-card {
        padding: 5px
    }

    .hero-card-inner {
        padding: 15px;
    }

    .chip-1 {
        top: 20px;
        left: 5px
    }

    .chip-2 {
        left: 5px;
        top: 70%
    }

    .chip-3 {
        bottom: 5px;
        left: 120px
    }

    .chip-4 {
        bottom: 82px;
        right: 5px
    }

    .chip-5 {
        right: 5px;
        top: 100px
    }

    .contact-section {
        padding: 10px 5px 40px 5px;
    }

    .section-head {
        display: flex;
        align-items: end;
        justify-content: space-between;
        flex-wrap: wrap;
        gap: 10px;
        margin-bottom: 20px;
    }

    .section-head h2 .c-c-b .c-c-b-a {
        transform: translateY(0px);
    }

    .contact-grid {
        display: grid;
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .contact-form-wrap {
        padding: 12px;
    }

    .contact-info {
        grid-template-columns: 1fr;
    }

    .form-row {
        grid-template-columns: 1fr;
    }
}

.scroll-section-2 {
    height: 200vh;
    position: relative;
    background: var(--bg-soft);
}




.sticky-wrap {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    overflow-x: hidden;
    gap: 0;
    margin: 30px 0px;
    padding: 20px 0px;
}

.sticky-wrap::before,
.sticky-wrap::after {
    content: "";
    position: absolute;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(to right, transparent, var(--accent), transparent);
}

.sticky-wrap::before {
    top: 0;
}

.sticky-wrap::after {
    bottom: 0;
}

.track-2 {
    display: flex;
    white-space: nowrap;
    will-change: transform;
    justify-content: center;
    width: 100%;
}

.track-text-2 {
    font-family: var(--cod);
    font-size: min(5vw, 5rem);
    letter-spacing: 0.05em;
    line-height: 1;
    color: transparent;
    -webkit-text-stroke: 1.5px var(--text-primary);
    text-transform: uppercase;
}

.track-text-2 .filled {
    color: var(--accent);
    -webkit-text-stroke: 0px;
}

@media (max-width:786px) {
    .hero .h-title .h-t-line .h-t-w {
        transform: translateY(0px);
    }

    .hero {
        min-height: 600px;
    }
}