@charset "UTF-8";

/* ===== FONTS ===== */
@font-face {
    font-family: "SF Pro Display";
    src: url("../fonts/sf-pro-600.otf") format("opentype");
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "SF Pro Display";
    src: url("../fonts/sf-pro-700.otf") format("opentype");
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "SF Pro Display";
    src: url("../fonts/sf-pro-800.otf") format("opentype");
    font-weight: 800;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "SF Pro Text";
    src: url("../fonts/sf-pro-text-400.ttf") format("truetype");
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "SF Pro Text";
    src: url("../fonts/sf-pro-text-500.ttf") format("truetype");
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "SF Pro Text";
    src: url("../fonts/sf-pro-text-700.ttf") format("truetype");
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "SF Pro Text";
    src: url("../fonts/sf-pro-text-800.ttf") format("truetype");
    font-weight: 800;
    font-style: normal;
    font-display: swap;
}

/* ===== RESET ===== */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    border: 0;
}

html {
    font-size: 100%;
    height: 100%;
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    height: 100%;
    min-height: 100%;
    font-family: "SF Pro Text", -apple-system, BlinkMacSystemFont, sans-serif;
    font-weight: 500;
    line-height: 1.5;
    background-color: #000000;
    color: #FFFFFF;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    display: flex;
    flex-direction: column;
    overflow-x: hidden;
}

body.loading {
    overflow: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: "SF Pro Display", -apple-system, BlinkMacSystemFont, sans-serif;
    font-weight: 800;
    line-height: 1.2;
}

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

img, picture, video, canvas, svg {
    display: block;
    max-width: 100%;
    height: auto;
}

button {
    cursor: pointer;
    font: inherit;
    background: transparent;
    border: none;
    color: inherit;
}

:focus {
    outline: none;
}

a, button, input, textarea {
    -webkit-tap-highlight-color: transparent;
}

/* ===== CONTAINER ===== */
.header__container,
.hero__container,
.main-section__container,
.mission__container,
.ultra__container,
.how-to-start__container,
.faq__container,
.map-section__container,
.footer__container {
    max-width: 1520px;
    padding: 0 60px;
    margin: 0 auto;
    width: 100%;
}

/* ===== HEADER ===== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: transparent;
    padding: 40px 0;
    transition: all 0.3s ease;
}

.header::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.78);
    opacity: 1;
    transition: background 0.25s ease;
    pointer-events: none;
    z-index: -1;
}

.header.active::before {
    background: rgba(0, 0, 0, 0.9);
}

.header__content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header__logo {
    display: flex;
    align-items: center;
    gap: 16px;
}

.header__logo img {
    height: 40px;
    width: auto;
}

.header__logo p {
    font-size: clamp(15px, 0.46vw + 13.33px, 20px);
    color: #FFFFFF;
    max-width: 266px;
    line-height: 1.4;
}

.header__right {
    display: flex;
    align-items: center;
    gap: 50px;
}

.header__apps {
    display: flex;
    align-items: center;
    gap: 50px;
}

.header__app-link {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: clamp(15px, 0.46vw + 13.33px, 20px);
    color: #FFFFFF;
    padding: 10px 16px;
    border-radius: 999px;
    position: relative;
    transition: all 0.25s ease;
}

.header__app-link svg,
.header__app-link .info-icon {
    width: 30px;
    height: 30px;
    flex-shrink: 0;
}

.header__app-link::after {
    content: "";
    position: absolute;
    left: 16px;
    right: 16px;
    bottom: 6px;
    height: 2px;
    background: currentColor;
    border-radius: 999px;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.25s ease;
}

.header__app-link:hover::after {
    transform: scaleX(1);
}

.header__btn {
    padding: 15px 25px;
    background-color: #FFFFFF;
    color: #000000;
    border-radius: 40px;
    font-family: "SF Pro Text";
    font-size: clamp(15px, 0.46vw + 13.33px, 20px);
    font-weight: 500;
    white-space: nowrap;
    transition: transform 0.2s ease;
}

.header__btn:hover {
    transform: scale(0.97);
}

/* ===== HERO SECTION ===== */
.hero {
    padding: 180px 0 120px;
    background: linear-gradient(135deg, rgba(15, 12, 41, 0.95) 0%, rgba(48, 43, 99, 0.95) 50%, rgba(36, 36, 62, 0.95) 100%);
    position: relative;
    overflow: hidden;
}

.hero__features {
    display: flex;
    justify-content: center;
    gap: 60px;
    margin-bottom: 80px;
}

.hero__feature {
    display: flex;
    align-items: center;
    gap: 16px;
}

.hero__feature img {
    width: 24px;
    height: 24px;
}

.hero__feature p {
    font-family: "SF Pro Text";
    font-size: 24px;
    font-weight: 500;
    color: #FFFFFF;
    white-space: nowrap;
}

.hero__content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 60px;
    max-width: 1400px;
    margin: 0 auto;
}

.hero__text {
    flex: 1;
    max-width: 650px;
}

.hero__text h1 {
    font-size: clamp(40px, 2.22vw + 32px, 64px);
    font-weight: 800;
    color: #FFFFFF;
    margin-bottom: 31px;
    line-height: 1.2;
}

.hero__text p {
    font-family: "SF Pro Text";
    font-size: 24px;
    font-weight: 500;
    color: #FFFFFF;
    line-height: 31.2px;
    max-width: 512px;
}

.hero__button {
    flex: 0 0 auto;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 15px 88px;
    background: #0000FF;
    color: #FFFFFF;
    border-radius: 40px;
    font-family: "SF Pro Text";
    font-size: 24px;
    font-weight: 500;
    line-height: 32px;
    border: 10px solid rgba(0, 0, 255, 0.30);
    position: relative;
    transition: all 0.3s ease;
}

.btn-primary::before {
    content: "";
    position: absolute;
    width: 364px;
    height: 104px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: rgba(0, 0, 255, 0.3);
    border-radius: 50px;
    z-index: -1;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 0, 255, 0.5);
}

/* ===== MAIN SECTION ===== */
.main-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.main-section__background {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.main-section__background video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.main-section__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.8) 51.92%, rgba(0, 0, 0, 0) 100%);
    z-index: 2;
}

.main-section__container {
    position: relative;
    z-index: 3;
    height: 100%;
    display: flex;
    align-items: center;
    padding: 150px 60px;
}

.main-section__content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 60px;
    width: 100%;
}

.main-section__left {
    flex: 1;
    max-width: 950px;
}

.main-section__description {
    margin-bottom: 70px;
}

.main-section__description {
    position: relative;
}

.main-section__description p {
    font-family: "SF Pro Text";
    font-size: clamp(16px, 0.74vw + 13.33px, 24px);
    font-weight: 600;
    color: #FFFFFF;
    line-height: 1.45;
    max-width: 650px;
}

.description-toggle {
    display: none;
    background: transparent;
    border: 2px solid #FFFFFF;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    color: #FFFFFF;
    cursor: pointer;
    padding: 0;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.description-toggle:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: scale(1.1);
}

.description-toggle.active {
    transform: rotate(90deg);
}

.description-text .word {
    opacity: 0;
    display: inline-block;
}

.main-section__features {
    display: flex;
    gap: 70px;
    align-items: center;
    flex-wrap: wrap;
}

.main-section__feature {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.main-section__feature .feature__title {
    font-family: "SF Pro Text";
    font-size: 32px;
    font-weight: 700;
    color: #FFFFFF;
    line-height: 1;
    white-space: nowrap;
}

.main-section__feature .feature__text {
    font-family: "SF Pro Text";
    font-size: clamp(16px, 0.74vw + 13.33px, 24px);
    color: #FFFFFF;
    line-height: 1.4;
}

.main-section__right {
    flex: 0 0 300px;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* ===== MODERN MAP BUTTON ===== */
.modern-map-button {
    position: relative;
    width: 220px;
    height: 220px;
    border-radius: 50%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #f093fb 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 15px;
    text-decoration: none;
    color: #FFFFFF;
    font-family: "SF Pro Text";
    font-size: clamp(16px, 0.83vw + 12px, 22px);
    font-weight: 600;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 10px 40px rgba(102, 126, 234, 0.4),
                0 0 60px rgba(118, 75, 162, 0.3),
                inset 0 0 30px rgba(255, 255, 255, 0.1);
}

.modern-map-button::before {
    content: "";
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transform: rotate(45deg);
    animation: shine 3s infinite;
}

.modern-map-button::after {
    content: "";
    position: absolute;
    inset: -3px;
    border-radius: 50%;
    background: linear-gradient(135deg, #667eea, #764ba2, #f093fb, #667eea);
    background-size: 300% 300%;
    z-index: -1;
    animation: gradient-rotate 4s ease infinite;
    opacity: 0.6;
    filter: blur(10px);
}

.modern-map-button .button-glow {
    position: absolute;
    inset: -20px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(102, 126, 234, 0.4) 0%, transparent 70%);
    z-index: -2;
    animation: pulse-glow 2s ease-in-out infinite;
}

.modern-map-button .button-text {
    position: relative;
    z-index: 1;
    text-align: center;
    line-height: 1.3;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.modern-map-button .button-icon {
    position: relative;
    z-index: 1;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.modern-map-button .button-icon svg {
    width: 28px;
    height: 28px;
    filter: drop-shadow(0 2px 5px rgba(0, 0, 0, 0.3));
}

.modern-map-button:hover {
    transform: scale(1.05) translateY(-5px);
    box-shadow: 0 15px 50px rgba(102, 126, 234, 0.6),
                0 0 80px rgba(118, 75, 162, 0.5),
                inset 0 0 40px rgba(255, 255, 255, 0.2);
}

.modern-map-button:hover .button-icon {
    transform: rotate(360deg) scale(1.1);
    background: rgba(255, 255, 255, 0.3);
}

.modern-map-button:active {
    transform: scale(0.98);
}

@keyframes shine {
    0% {
        transform: translateX(-100%) translateY(-100%) rotate(45deg);
    }
    100% {
        transform: translateX(100%) translateY(100%) rotate(45deg);
    }
}

@keyframes gradient-rotate {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

@keyframes pulse-glow {
    0%, 100% {
        transform: scale(1);
        opacity: 0.6;
    }
    50% {
        transform: scale(1.2);
        opacity: 0.8;
    }
}



/* ===== MISSION SECTION ===== */
.mission {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.mission__video-container {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    transform: translate(0%, -40%) scale(1);
    padding: 0 14px;
    box-sizing: border-box;
    background: #000;
}

.mission__video-container video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 18px;
}

.mission__overlay {
    position: absolute;
    inset: 14px;
    background: rgba(0, 0, 0, 0.5);
    border-radius: 18px;
    z-index: 2;
}

.mission__container {
    position: relative;
    z-index: 3;
    height: 100%;
    display: flex;
    align-items: center;
    padding: 200px 60px;
}

.mission__content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 60px;
    width: 100%;
}

.mission__left {
    flex: 1;
    max-width: 650px;
}

.mission__title {
    font-size: clamp(40px, 1.39vw + 35px, 55px);
    font-weight: 800;
    color: #FFFFFF;
    margin-bottom: 35px;
}

.mission__text {
    font-family: "SF Pro Text";
    font-size: clamp(16px, 0.74vw + 13.33px, 24px);
    color: #FFFFFF;
    line-height: 1.5;
    min-height: 1.5em;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.mission__text.typewriting {
    opacity: 1;
}

.mission__text.typewriting::after {
    content: '|';
    animation: blink-cursor 1s infinite;
    margin-left: 2px;
}

@keyframes blink-cursor {
    0%, 50% {
        opacity: 1;
    }
    51%, 100% {
        opacity: 0;
    }
}

.mission__right {
    flex: 0 0 auto;
}

.mission__button {
    width: 250px;
    height: 250px;
    border-radius: 50%;
    background-color: #0000FF;
    color: #FFFFFF;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 35px;
    font-family: "SF Pro Text";
    font-size: clamp(15px, 0.83vw + 12px, 24px);
    transition: all 0.2s ease;
}

.mission__button:hover {
    background-color: #0000FF;
    transform: scale(1.05);
}

.mission__button span {
    text-align: center;
    max-width: 180px;
}

.mission__button svg {
    width: 50px;
    height: 50px;
}

/* ===== ULTRA SECTION ===== */
.ultra {
    padding: 120px 0;
    background-color: #000000;
}

.ultra__container {
    position: relative;
}

.ultra__content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 60px;
    margin-bottom: 60px;
}

.ultra__left {
    flex: 0 1 55%;
}

.ultra__header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    margin-bottom: 45px;
    cursor: pointer;
}

.ultra__title {
    font-size: clamp(40px, 1.39vw + 35px, 55px);
    font-weight: 800;
    color: #FFFFFF;
    margin-bottom: 0;
}

.ultra__title-gradient {
    background: linear-gradient(135deg, #764ba2 0%, #f093fb 50%, #667eea 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.ultra__arrow {
    min-width: 28px;
    width: 28px;
    height: 28px;
    flex-shrink: 0;
    transition: transform 0.3s ease;
    cursor: pointer;
}

.ultra.active .ultra__arrow {
    transform: rotate(180deg);
}

.ultra__text-wrapper {
    max-width: 650px;
}

.ultra__text-preview {
    font-family: "SF Pro Text";
    font-size: clamp(16px, 0.74vw + 13.33px, 24px);
    color: #FFFFFF;
    line-height: 1.5;
    margin-bottom: 0;
}

.ultra__text-full {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease, margin-top 0.5s ease;
    margin-top: 0;
}

.ultra.active .ultra__text-full {
    max-height: 500px;
    margin-top: 20px;
}

.ultra__text-full p {
    font-family: "SF Pro Text";
    font-size: clamp(16px, 0.74vw + 13.33px, 24px);
    color: #FFFFFF;
    line-height: 1.5;
    margin: 0;
}

.ultra__right {
    flex: 0 1 45%;
}

.ultra__right img {
    width: 100%;
    height: auto;
    border-radius: 0 180px 180px 0;
    object-fit: cover;
}

.ultra__button-container {
    display: flex;
    justify-content: center;
    align-items: center;
}

.ultra__button {
    width: 246px;
    height: 246px;
    border-radius: 50%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #f093fb 100%);
    color: #FFFFFF;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: "SF Pro Display";
    font-size: clamp(20px, 2.5vw, 32px);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 3px;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 
        0 10px 30px rgba(102, 126, 234, 0.4),
        0 0 0 0 rgba(102, 126, 234, 0.7),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
    text-align: center;
}

.ultra__button::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
    z-index: -1;
}

.ultra__button:hover::before {
    width: 300px;
    height: 300px;
}

.ultra__button:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 
        0 15px 40px rgba(102, 126, 234, 0.6),
        0 0 0 8px rgba(102, 126, 234, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.4);
    background: linear-gradient(135deg, #764ba2 0%, #f093fb 50%, #667eea 100%);
}

.ultra__button-text {
    position: relative;
    z-index: 2;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.ultra__button-glow {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.3) 0%, transparent 70%);
    opacity: 0;
    animation: rotateGlow 3s linear infinite;
    pointer-events: none;
}

.ultra__button:hover .ultra__button-glow {
    opacity: 1;
    animation: rotateGlow 1s linear infinite;
}

@keyframes rotateGlow {
    0% {
        transform: rotate(0deg);
        opacity: 0;
    }
    50% {
        opacity: 0.5;
    }
    100% {
        transform: rotate(360deg);
        opacity: 0;
    }
}

/* ===== HOW TO START SECTION ===== */
.how-to-start {
    padding: 120px 0;
    background-color: #000000;
}

.how-to-start__header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 60px;
    margin-bottom: 80px;
}

.how-to-start__title-block {
    flex: 1;
    max-width: 750px;
}

.how-to-start__title {
    font-size: clamp(40px, 1.39vw + 35px, 55px);
    font-weight: 800;
    color: #FFFFFF;
    line-height: 1.2;
}

.how-to-start__description {
    flex: 0 1 500px;
}

.how-to-start__description p {
    font-family: "SF Pro Text";
    font-size: clamp(16px, 0.74vw + 13.33px, 24px);
    color: #FFFFFF;
    line-height: 31.2px;
}

.how-to-start__tabs {
    background-color: #1E1E32;
    padding: 10px;
    display: flex;
    border-radius: 80px;
    margin-bottom: 65px;
}

.how-to-start__tab {
    flex: 0 1 50%;
    padding: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.how-to-start__tab p {
    position: relative;
    font-family: "SF Pro Display";
    font-weight: 700;
    font-size: clamp(24px, 0.74vw + 21.33px, 32px);
    padding: 17px 56px 17px 24px;
    width: 100%;
    color: #75758E;
    background-color: #28293D;
    border-radius: 40px;
    transition: all 0.2s ease;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
}

.how-to-start__tab.active p {
    color: #000000;
    background-color: #FFFFFF;
}

.tab-arrow {
    width: 22px;
    height: 12px;
    flex-shrink: 0;
    transform: rotate(-90deg);
    transition: transform 0.3s ease;
}

.how-to-start__tab.active .tab-arrow {
    transform: rotate(0deg);
}

.how-to-start__tab.active .tab-arrow path {
    fill: #000000;
}

.how-to-start__content {
    position: relative;
}

.how-to-start__content-tab {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height 0.4s ease, opacity 0.4s ease;
}

.how-to-start__content-tab.active {
    max-height: 2000px;
    opacity: 1;
}

.steps {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 80px 0;
}

.step {
    flex: 0 1 calc(50% - 40px);
    display: flex;
    gap: 25px;
    align-items: center;
}

.step__number {
    width: 80px;
    height: 80px;
    min-width: 80px;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 1px solid #FFFFFF;
    border-radius: 50%;
    font-family: "SF Pro Text";
    font-weight: 500;
    color: #FFFFFF;
    font-size: clamp(16px, 0.74vw + 13.33px, 24px);
}

.step__text {
    max-width: 480px;
}

.step__text p {
    font-family: "SF Pro Text";
    font-size: clamp(16px, 0.74vw + 13.33px, 24px);
    color: #FFFFFF;
    line-height: 1.5;
}

/* ===== FAQ SECTION ===== */
.faq {
    padding: 109px 0 80px;
    background-color: #000000;
}

.faq__title {
    font-size: clamp(40px, 1.39vw + 35px, 55px);
    font-weight: 800;
    color: #FFFFFF;
    margin-bottom: 40px;
}

.faq__list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.faq__item {
    background-color: #1E1E32;
    border-radius: 40px;
    cursor: pointer;
    overflow: hidden;
    transition: all 0.4s ease;
}

.faq__question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    padding: 20px 25px;
}

.faq__question h3 {
    font-size: clamp(16px, 0.74vw + 13.33px, 24px);
    font-weight: 800;
    color: #FFFFFF;
    flex: 1;
}

.faq__question svg {
    min-width: 37px;
    width: 37px;
    height: 37px;
    transition: transform 0.2s ease;
}

.faq__item.active .faq__question svg {
    transform: rotate(45deg);
}

.faq__answer {
    max-height: 0;
    overflow: hidden;
    padding: 0 25px;
    transition: all 0.4s ease;
}

.faq__item.active .faq__answer {
    max-height: 700px;
    padding: 0 25px 20px;
}

.faq__answer p {
    font-family: "SF Pro Text";
    font-size: clamp(16px, 0.19vw + 15.33px, 18px);
    color: #FFFFFF;
    line-height: 1.5;
    margin-bottom: 10px;
}

.faq__answer p:last-child {
    margin-bottom: 0;
}

/* ===== MAP SECTION ===== */
.map-section {
    position: relative;
    height: 495px;
    overflow: hidden;
}

.map-section__background {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.map-section__background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center -379px;
}

.map-section__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        rgba(0, 0, 0, 0.72) 0%,
        rgba(0, 0, 0, 0.38) 35%,
        rgba(0, 0, 0, 0.12) 70%,
        rgba(0, 0, 0, 0.06) 100%
    );
    z-index: 2;
    pointer-events: none;
}

.map-section__container {
    position: relative;
    z-index: 3;
    height: 100%;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    padding: 0 60px;
}



/* ===== FOOTER ===== */
.footer {
    background-color: #000000;
    padding: 60px 0 40px;
}

.footer__row1 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 30px 0;
    border-top: 1px solid #75758E;
    border-bottom: 1px solid #75758E;
    margin-bottom: 60px;
}

.footer__logo {
    display: flex;
    align-items: center;
    gap: 16px;
}

.footer__logo-icon {
    width: auto;
    height: 50px;
    flex-shrink: 0;
}

.footer__logo p {
    font-family: "SF Pro Text";
    font-size: 20px;
    font-weight: 500;
    color: #FFFFFF;
    line-height: 26px;
    max-width: 227px;
    margin-left: 20px;
}

.footer__apps {
    display: flex;
    align-items: center;
    gap: 40px;
}

.footer__app-link {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 16px;
    border: 1px solid #FFFFFF;
    border-radius: 10px;
    font-family: "SF Pro Text";
    font-size: clamp(15px, 0.46vw + 13.33px, 20px);
    color: #FFFFFF;
    width: 210px;
    transition: all 0.25s ease;
}

.footer__app-link svg {
    width: 30px;
    height: 30px;
    flex-shrink: 0;
}

.footer__app-link:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.footer__social {
    display: flex;
    gap: 40px;
    align-items: center;
    width: 500px;
    justify-content: flex-end;
}

.footer__social-item {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 36px;
    background: #28293D;
    transition: all 0.5s ease;
}

.footer__social-item:hover {
    transform: translateY(-3px);
}

.footer__social-item:first-child:hover {
    box-shadow: 5px 5px 14px rgb(0, 225, 255);
}

.footer__social-item:nth-child(2):hover {
    box-shadow: 5px 5px 14px rgb(29, 44, 255);
}

.footer__social-item:nth-child(3):hover {
    box-shadow: 5px 5px 14px rgb(255, 167, 36);
}

.footer__social-item:nth-child(4):hover {
    box-shadow: 5px 5px 14px rgb(255, 255, 255);
}

.footer__social-item:last-child:hover {
    box-shadow: 5px 5px 14px rgb(255, 37, 37);
}

.footer__social-item img {
    width: 30px;
    height: 30px;
}

.footer__row2 {
    display: flex;
    gap: 32px;
    margin-bottom: 60px;
    flex-wrap: wrap;
}

.footer__column {
    flex: 1 1 200px;
}

.footer__column-header {
    margin-bottom: 15px;
}

.footer__column-header p {
    font-family: "SF Pro Display";
    font-size: 18px;
    font-weight: 800;
    color: #FFFFFF;
    text-decoration: underline;
    line-height: 30px;
}

.footer__links {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.footer__link {
    text-align: left;
    padding: 4px 0;
    background: none;
    border: none;
    font-family: "SF Pro Display";
    font-size: 20px;
    font-weight: 600;
    line-height: 30px;
    color: #FFFFFF;
    cursor: pointer;
    transition: color 0.2s ease, transform 0.15s ease;
}

.footer__link:hover {
    color: #FFFFFF;
    transform: translateX(2px);
}

.footer__row3 {
    border-top: 1px solid #75758E;
    padding-top: 20px;
}

.footer__copyright,
.footer__legal,
.footer__cookies {
    font-family: "SF Pro Display";
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    color: #75758E;
    margin-bottom: 15px;
}

.footer__copyright a,
.footer__legal a,
.footer__cookies a {
    color: #75758E;
    text-decoration: underline;
    margin-left: 20px;
}

.footer__legal a {
    margin-left: 20px;
}

/* ===== STORE POPOVER ===== */
.store-popover {
    position: absolute;
    transform: translateX(-50%) translateY(-6px);
    opacity: 0;
    pointer-events: none;
    width: min(360px, calc(100vw - 32px));
    padding: 14px 14px 12px;
    border-radius: 16px;
    background: rgba(20, 20, 28, 0.92);
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.45);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    z-index: 9999;
    transition: opacity 180ms ease, transform 180ms ease;
}

.store-popover::before {
    content: "";
    position: absolute;
    top: -7px;
    left: 50%;
    transform: translateX(-50%) rotate(45deg);
    width: 14px;
    height: 14px;
    background: rgba(20, 20, 28, 0.92);
    border-left: 1px solid rgba(255, 255, 255, 0.12);
    border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.store-popover--open {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
    pointer-events: auto;
}

.store-popover__title {
    font-family: "SF Pro Display", -apple-system, BlinkMacSystemFont, sans-serif;
    font-weight: 800;
    color: #fff;
    font-size: 16px;
    line-height: 1.2;
}

.store-popover__text {
    margin-top: 8px;
    color: rgba(255, 255, 255, 0.78);
    font-size: 14px;
    line-height: 1.45;
}

.store-popover__hint {
    margin-top: 10px;
    color: rgba(255, 255, 255, 0.55);
    font-size: 12px;
    line-height: 1.2;
}

/* ===== ADAPTIVE STYLES ===== */
:root {
    --safe-top: env(safe-area-inset-top, 0px);
    --safe-right: env(safe-area-inset-right, 0px);
    --safe-bottom: env(safe-area-inset-bottom, 0px);
    --safe-left: env(safe-area-inset-left, 0px);
}

html {
    scroll-padding-top: calc(120px + var(--safe-top));
}

/* Container adjustments */
@media (max-width: 1400px) {
    .header__container,
    .hero__container,
    .main-section__container,
    .mission__container,
    .ultra__container,
    .how-to-start__container,
    .faq__container,
    .map-section__container,
    .footer__container {
        padding: 0 30px;
    }
}

@media (max-width: 650px) {
    .header__container,
    .hero__container,
    .main-section__container,
    .mission__container,
    .ultra__container,
    .how-to-start__container,
    .faq__container,
    .map-section__container,
    .footer__container {
        padding: 0 20px;
    }
}

/* Header adaptive */
@media (max-width: 1200px) {
    .header {
        padding: 20px 0;
    }
    
    .header__logo p {
        display: none;
    }
    
    .header__apps {
        gap: 30px;
    }
}

@media (max-width: 991px) {
    .header__right {
        gap: 20px;
    }
    
    .header__apps {
        display: none;
    }
    
    .header__logo img {
        height: 35px;
    }
    
    .header__btn {
        padding: 10px 18px;
        font-size: 15px;
    }
}

@media (max-width: 768px) {
    .header {
        padding: 15px 0;
    }
    
    .header__logo img {
        height: 28px;
    }
    
    .header__btn {
        padding: 8px 16px;
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .header__logo img {
        height: 24px;
    }
    
    .header__btn {
        padding: 7px 14px;
        font-size: 12px;
    }
}

/* Hero section adaptive */
@media (max-width: 1200px) {
    .hero {
        padding: 150px 0 80px;
    }
    
    .hero__features {
        gap: 40px;
        margin-bottom: 60px;
        flex-wrap: wrap;
    }
    
    .hero__content {
        flex-direction: column;
        align-items: flex-start;
        gap: 40px;
    }
    
    .hero__text {
        max-width: 100%;
    }
    
    .hero__button {
        width: 100%;
    }
    
    .btn-primary {
        width: 100%;
    }
}

@media (max-width: 768px) {
    .hero {
        padding: 120px 0 60px;
    }
    
    .hero__features {
        flex-direction: column;
        gap: 20px;
        align-items: flex-start;
        margin-bottom: 40px;
    }
    
    .hero__feature {
        gap: 12px;
    }
    
    .hero__feature p {
        font-size: 18px;
    }
    
    .hero__text h1 {
        margin-bottom: 20px;
    }
    
    .hero__text p {
        font-size: 18px;
    }
    
    .btn-primary {
        padding: 12px 40px;
        font-size: 18px;
    }
}

/* Main section adaptive */
@media (max-width: 1200px) {
    .main-section {
        min-height: auto;
        padding: 120px 0 40px;
    }
    
    .main-section__container {
        padding: 0 30px 40px;
    }
    
    .main-section__content {
        flex-direction: column;
        gap: 20px;
    }
    
    .main-section__left {
        max-width: 100%;
    }
    
    .main-section__description {
        margin-bottom: 20px;
    }
    
    .main-section__features {
        gap: 25px;
        margin-bottom: 20px;
    }
    
    .main-section__right {
        width: 100%;
        justify-content: flex-start;
        align-items: flex-start;
    }
    
    .main-section__button {
        width: auto;
        height: auto;
        min-width: 280px;
        padding: 20px 40px;
        border-radius: 50px;
        flex-direction: row;
        gap: 15px;
        box-shadow: 
            0 10px 30px rgba(0, 0, 255, 0.4),
            0 0 0 4px rgba(0, 0, 255, 0.2);
        margin-top: 0;
    }
    
    .main-section__button::before {
        display: none;
    }
    
    .main-section__button span {
        font-size: clamp(18px, 1.2vw, 22px);
        font-weight: 600;
        white-space: nowrap;
    }
    
    .main-section__button svg {
        width: 40px;
        height: 40px;
        flex-shrink: 0;
    }
    
    .main-section__button:hover {
        transform: translateY(-3px);
        box-shadow: 
            0 15px 40px rgba(0, 0, 255, 0.6),
            0 0 0 6px rgba(0, 0, 255, 0.15);
    }
}

@media (max-width: 768px) {
    .main-section {
        padding: 100px 0 30px;
    }
    
    .main-section__container {
        padding: 0 20px 30px;
    }
    
    .main-section__content {
        gap: 15px;
    }
    
    .main-section__description {
        margin-bottom: 8px;
        display: flex;
        align-items: flex-start;
        gap: 15px;
    }
    
    .main-section__description .description-text {
        display: block;
        flex: 1;
    }
    
    .main-section__description .description-visible {
        display: inline;
    }
    
    .main-section__description .description-hidden {
        display: none;
    }
    
    .main-section__description .description-hidden.show {
        display: inline;
    }
    
    .main-section__description .description-hidden .word {
        opacity: 0;
        display: inline-block;
        animation: fadeInWord 0.5s ease forwards;
    }
    
    .description-toggle {
        display: flex !important;
    }
    
    @keyframes fadeInWord {
        to {
            opacity: 1;
        }
    }
    
    .main-section__features {
        flex-direction: column;
        gap: 20px;
        align-items: flex-start;
        margin-bottom: 8px;
    }
    
    .main-section__right {
        margin-top: -10px;
    }
    
    .modern-map-button {
        width: 160px;
        height: 160px;
        font-size: clamp(14px, 3vw, 18px);
    }
    
    .modern-map-button .button-icon {
        width: 35px;
        height: 35px;
    }
    
    .modern-map-button .button-icon svg {
        width: 22px;
        height: 22px;
    }
    
    .main-section__button {
        min-width: 260px;
        padding: 18px 35px;
        gap: 12px;
        margin-top: 0;
    }
    
    .main-section__button svg {
        width: 35px;
        height: 35px;
    }
}

@media (max-width: 480px) {
    .main-section {
        padding: 90px 0 25px;
    }
    
    .main-section__container {
        padding: 0 20px 25px;
    }
    
    .main-section__content {
        gap: 12px;
    }
    
    .main-section__description {
        margin-bottom: 12px;
    }
    
    .main-section__features {
        gap: 15px;
        margin-bottom: 12px;
    }
    
    .main-section__button {
        min-width: 100%;
        padding: 16px 30px;
        gap: 10px;
    }
    
    .main-section__button span {
        font-size: 18px;
    }
    
    .main-section__button svg {
        width: 32px;
        height: 32px;
    }
}

/* Mission section adaptive */
@media (max-width: 1200px) {
    .mission {
        min-height: auto;
        padding: 100px 0;
    }
    
    .mission__container {
        padding: 100px 30px;
    }
    
    .mission__content {
        flex-direction: column;
        gap: 40px;
    }
    
    .mission__left {
        max-width: 100%;
    }
    
    .mission__right {
        width: 100%;
        display: flex;
        justify-content: center;
    }
    
    .mission__button {
        width: 200px;
        height: 200px;
    }
}

@media (max-width: 768px) {
    .mission__video-container {
        transform: translate(0%, -25%) scale(1);
        padding: 0 10px;
    }
    
    .mission__overlay {
        inset: 10px;
    }
    
    .mission__container {
        padding: 60px 20px;
    }
    
    .mission__button {
        width: 180px;
        height: 180px;
    }
    
    .mission__button svg {
        width: 40px;
        height: 40px;
    }
}

/* Ultra section adaptive */
@media (max-width: 1200px) {
    .ultra {
        padding: 80px 0;
    }
    
    .ultra__content {
        flex-direction: column;
        gap: 40px;
    }
    
    .ultra__left {
        flex: 1;
        max-width: 100%;
    }
    
    .ultra__right {
        width: 100%;
    }
    
    .ultra__right img {
        border-radius: 0;
        width: 100%;
        height: 400px;
        object-fit: cover;
    }
}

@media (max-width: 768px) {
    .ultra {
        padding: 60px 0;
    }
    
    .ultra__title {
        margin-bottom: 30px;
    }
    
    .ultra__right img {
        height: 300px;
    }
    
    .ultra__button {
        width: 200px;
        height: 200px;
        font-size: 24px;
    }
}

/* How to start section adaptive */
@media (max-width: 1200px) {
    .how-to-start {
        padding: 80px 0;
    }
    
    .how-to-start__header {
        flex-direction: column;
        gap: 30px;
        margin-bottom: 50px;
    }
    
    .how-to-start__title-block {
        max-width: 100%;
    }
    
    .how-to-start__description {
        max-width: 100%;
    }
    
    .steps {
        gap: 40px 0;
    }
    
    .step {
        flex: 1 1 100%;
    }
}

@media (max-width: 768px) {
    .how-to-start {
        padding: 60px 0;
    }
    
    .how-to-start__tabs {
        flex-direction: column;
        border-radius: 20px;
    }
    
    .how-to-start__tab p {
        padding: 15px 20px;
        font-size: 20px;
    }
    
    .step {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }
    
    .step__number {
        width: 60px;
        height: 60px;
        min-width: 60px;
    }
}

/* FAQ section adaptive */
@media (max-width: 1200px) {
    .faq {
        padding: 80px 0 60px;
    }
}

@media (max-width: 768px) {
    .faq {
        padding: 60px 0 40px;
    }
    
    .faq__title {
        margin-bottom: 30px;
    }
    
    .faq__item {
        border-radius: 20px;
    }
    
    .faq__question {
        padding: 15px 20px;
    }
    
    .faq__question svg {
        width: 30px;
        height: 30px;
        min-width: 30px;
    }
    
    .faq__item.active .faq__answer {
        padding: 0 20px 15px;
    }
}

/* Map section adaptive */
@media (max-width: 1200px) {
    .map-section {
        height: 400px;
    }
    
    .map-section__background img {
        object-position: center -200px;
    }
}

@media (max-width: 768px) {
    .map-section {
        height: 350px;
    }
    
    .map-section__background img {
        object-position: center -100px;
    }
    
    .map-section__container {
        z-index: 10;
    }
    
    .modern-map-button {
        width: 160px;
        height: 160px;
        font-size: clamp(14px, 3vw, 18px);
        position: relative;
        z-index: 10;
        pointer-events: auto;
    }
    
    .modern-map-button .button-icon {
        width: 35px;
        height: 35px;
    }
    
    .modern-map-button .button-icon svg {
        width: 22px;
        height: 22px;
    }
    
}

/* Footer adaptive */
@media (max-width: 1200px) {
    .footer {
        padding: 50px 0 30px;
    }
    
    .footer__row1 {
        flex-wrap: wrap;
        gap: 30px;
        padding: 30px 0;
    }
    
    .footer__apps {
        order: 3;
        width: 100%;
        justify-content: center;
    }
    
    .footer__social {
        width: 100%;
        justify-content: center;
        order: 2;
    }
}

@media (max-width: 991px) {
    .footer__row2 {
        flex-direction: column;
        gap: 40px;
    }
    
    .footer__column {
        flex: 1 1 100%;
    }
}

@media (max-width: 768px) {
    .footer {
        padding: 40px 0 20px;
    }
    
    .footer__logo {
        flex-direction: column;
        align-items: flex-start;
        width: 100%;
    }
    
    .footer__logo p {
        margin-left: 0;
        margin-top: 10px;
    }
    
    .footer__apps {
        flex-direction: column;
        gap: 15px;
    }
    
    .footer__app-link {
        width: 100%;
        justify-content: center;
    }
    
    .footer__social {
        gap: 20px;
        flex-wrap: wrap;
    }
    
    .footer__row3 {
        padding-top: 20px;
    }
    
    .footer__copyright,
    .footer__legal,
    .footer__cookies {
        font-size: 14px;
        line-height: 1.5;
    }
    
    .footer__copyright a,
    .footer__legal a,
    .footer__cookies a {
        display: block;
        margin-left: 0;
        margin-top: 5px;
    }
}

