:root {
    --bg-color: #1a1a24;
    --text-primary: #efedf4;
    --text-secondary: rgba(239, 237, 244, 0.7);
    --card-bg: rgba(255, 255, 255, 0.08);
    --card-border: rgba(255, 255, 255, 0.1);
    --btn-primary-bg: #ffffff;
    --btn-primary-text: #121212;
    --download-bar-bg: #e2e4e9;
    --download-btn-bg: #111827;
    --download-btn-text: #ffffff;

    /* ==========================================================================
       FLUID TYPOGRAPHY TOKENS (2D: Adapts to both viewport width and height)
       ========================================================================== */
    /* 1. Main Display Headings (82px on large screens -> 36px-41px on small laptops/mobile) */
    --fs-display: clamp(2.25rem, min(4.5vw, 7.8vh), 5.125rem);

    /* 2. Large Card & Sidebar Titles (42px -> 28px) */
    --fs-h2: clamp(1.75rem, min(2.5vw, 4.2vh), 2.625rem);

    /* 3. Section Subtitles & Descriptions (20px -> 16px) */
    --fs-subtitle: clamp(1rem, min(1.15vw, 2vh), 1.25rem);

    /* 4. Feature Card Titles, Markers, Reviewers, FAQ Questions (21px -> 17px) */
    --fs-card-title: clamp(1.0625rem, min(1.25vw, 2.2vh), 1.3125rem);

    /* 5. Buttons, Nav Links & Card Body (16px -> 14px) */
    --fs-body: clamp(0.875rem, min(0.95vw, 1.6vh), 1rem);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body, button, input, textarea, select, a {
    font-family: 'Manrope', sans-serif;
}

body {
    background-color: var(--bg-color);
    color: var(--text-primary);
    min-height: 100vh;
    overflow-x: hidden;
}

.bg-video {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    object-fit: cover;
    z-index: -1;
    opacity: 0.45; /* Slight dimming so text is readable */
}

.layout-container {
    width: 100vw;
    height: 100vh;
    padding: 52px;
    position: relative;
    display: flex;
    flex-direction: column;
    isolation: isolate; /* Ensures mix-blend-mode works perfectly */
}

.layout-container:first-of-type {
    padding: clamp(24px, 4.5vh, 52px) clamp(20px, 3.5vw, 52px);
}

/* Header */
.header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    width: 100%;
    z-index: 10;
}

.hero-text {
    max-width: min(700px, 90vw);
}

.gradient-text {
    font-size: var(--fs-display);
    font-weight: 600;
    line-height: 1;
    letter-spacing: -0.04em;
    background: linear-gradient(-76.26deg, rgb(255, 63, 68) 7.46%, rgb(33, 139, 255) 102.97%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: clamp(8px, 1.5vh, 15px);
}

.sub-text {
    font-size: var(--fs-display);
    font-weight: 600;
    line-height: 1;
    letter-spacing: -0.04em;
    color: var(--text-primary);
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-top: clamp(14px, 2.2vh, 24px);
    padding: clamp(8px, 1.2vh, 12px) clamp(10px, 1.5vw, 16px);
    background: linear-gradient(48.5deg, #007aff 0%, #e83a3e 85%);
    border-radius: clamp(10px, 1.4vh, 14px);
    color: var(--text-primary);
    font-family: 'Manrope', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: clamp(0.8125rem, min(1.3vw, 2.3vh), 1.5rem);
    font-weight: 700;
    line-height: 1;
    letter-spacing: 0;
    text-transform: uppercase;
    width: fit-content;
}

.visually-hidden {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    padding: 0 !important;
    margin: -1px !important;
    overflow: hidden !important;
    clip: rect(0, 0, 0, 0) !important;
    white-space: nowrap !important;
    border: 0 !important;
}

.logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.logo-icons {
    position: relative;
    width: 101px;
    height: 109px;
    display: flex;
    justify-content: center;
}

.logo-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.logo-text {
    font-size: 20px;
    font-weight: 800;
    letter-spacing: -1.66px;
    white-space: pre;
    color: #ffffff; /* ER logo text in white */
}

.main-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-end; /* Align bottom */
    height: 100%;
    position: relative;
    z-index: 10;
}

.info-block {
    width: 432px;
    display: flex;
    flex-direction: column;
    gap: 32px;
    z-index: 20;
}

.description {
    font-size: var(--fs-subtitle);
    line-height: 1.4;
    font-weight: 400;
    letter-spacing: -0.4px;
    color: var(--text-primary);
}

.action-buttons {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.map-btn-wrapper {
    display: flex;
    align-items: center;
    gap: 12px;
}

.primary-btn {
    background-color: var(--btn-primary-bg);
    color: var(--btn-primary-text);
    border: none;
    border-radius: 16px;
    padding: 16px 32px;
    font-family: 'Manrope', sans-serif;
    font-size: var(--fs-body);
    font-weight: 600;
    letter-spacing: -0.32px;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.primary-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(255,255,255,0.15);
}

.qr-btn {
    width: 54px;
    height: 54px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    transition: background 0.2s, transform 0.2s;
    cursor: pointer;
}
.qr-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}
.qr-icon {
    width: 24px;
    height: 24px;
}

.store-links {
    display: flex;
    gap: 8px;
    align-items: center;
}

.store-icon {
    width: 38px;
    height: 38px;
    background: #17171a;
    border-radius: 9px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    transition: background-color 0.2s ease, transform 0.2s ease;
    cursor: pointer;
    flex-shrink: 0;
}

.store-icon:hover {
    background-color: #0077ff;
    transform: translateY(-2px);
}

.store-icon img {
    width: 20px;
    height: 20px;
    display: block;
    object-fit: contain;
}


/* Screen 1 Video */
.center-video {
    position: absolute;
    left: calc(50% - 50px);
    bottom: -100px;
    transform: translateX(-28%) scale(0.83);
    width: 850px;
    height: 855px;
    z-index: 5;
    pointer-events: none;
    object-fit: contain;
    mix-blend-mode: screen;
}

/* Screen 2 Phone */
.s2-center {
    position: absolute;
    top: 52px;
    left: 50%;
    transform: translateX(50px);
    height: calc(100vh - 104px);
    aspect-ratio: 434 / 924;
    z-index: 5;
}

.figma-phone-mockup {
    position: relative;
    width: 100%;
    height: 100%;
}

.phone-body {
    position: absolute;
    top: 0; 
    left: 0;
    width: 100%; 
    height: 100%;
    object-fit: contain;
    pointer-events: none;
}

.phone-screen {
    position: absolute;
    top: 1.8%;
    left: 3.95%;
    width: 91.74%;
    height: 96.11%;
    object-fit: cover;
    border-radius: 36px;
    pointer-events: none;
}


/* Right Features Block */
.features-block {
    width: 295px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    z-index: 20;
}

.feature-card {
    position: relative;
    border-radius: 16px;
    padding: 16px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: default;
}
.feature-card:hover {
    transform: translateX(-5px);
    box-shadow: 0 12px 40px 0 rgba(0, 0, 0, 0.35);
}
.feature-card::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
    opacity: 0.04; /* subtle noise */
    pointer-events: none;
    z-index: 0;
    mix-blend-mode: overlay;
}
.feature-card > * {
    position: relative;
    z-index: 1; /* keep text above noise */
}


.feature-card h3 {
    font-size: var(--fs-card-title);
    font-weight: 600;
    letter-spacing: -0.63px;
    line-height: 1.1;
}

.feature-card p {
    font-size: var(--fs-body);
    font-weight: 400;
    line-height: 1.4;
    color: var(--text-secondary);
}

/* Bottom Download Bar */
.download-bar {
    position: fixed;
    bottom: 52px;
    left: 50%;
    transform: translateX(-50%);
    width: 474px;
    height: 70px;
    background: #d1d5db;
    border-radius: 16px;
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 4px 4px 4px 16px;
    z-index: 30;
    transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1), background 0.4s ease, padding 0.4s ease;
    overflow: hidden;
}

.download-bar.scrolled:not(:hover) {
    width: 130px;
    padding: 4px 20px;
    background: #d1d5db;
    justify-content: center;
}

.download-menu-icon {
    display: flex;
    flex-direction: column;
    gap: 8px;
    justify-content: center;
    width: 32px;
    margin-left: 12px;
    transition: opacity 0.3s ease, width 0.3s ease;
    opacity: 1;
}

.download-bar.scrolled:not(:hover) .download-menu-icon {
    opacity: 0;
    width: 0;
    margin-left: 0;
    pointer-events: none;
    overflow: hidden;
}

.hamburger {
    width: 32px;
    height: 3px;
    background-color: #555;
    border-radius: 2px;
}

.download-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    gap: 10px;
}

.dl-logo-symbol {
    height: 28px;
    width: auto;
    filter: brightness(0); /* Make black */
}

.dl-logo-text {
    font-size: 16px;
    font-weight: 800;
    letter-spacing: -1.3px;
    color: #121212; /* Black */
    white-space: pre;
}

.download-btn {
    background-color: var(--download-btn-bg);
    color: var(--download-btn-text);
    border: none;
    border-radius: 12px;
    height: 100%;
    padding: 0 24px;
    font-family: 'Manrope', sans-serif;
    font-size: var(--fs-body);
    font-weight: 600;
    letter-spacing: -0.32px;
    cursor: pointer;
    transition: opacity 0.3s ease, width 0.3s ease, padding 0.3s ease, background 0.2s ease;
    opacity: 1;
    white-space: nowrap;
}

.download-bar.scrolled:not(:hover) .download-btn {
    opacity: 0;
    width: 0;
    padding: 0;
    pointer-events: none;
    overflow: hidden;
}

.download-btn:hover {
    background-color: #202b3d;
}

/* Responsive fixes */
@media (max-width: 1200px) {
    .phone-mockup-wrapper {
        opacity: 0.2;
        pointer-events: none;
    }
}

/* Screen 2 Styles */
.screen-2 {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
}

.s2-left {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 563px;
    z-index: 10;
}

.pagination-dots {
    display: flex;
    flex-direction: row;
    gap: 12px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 22px;
    padding: 8px 12px;
    width: fit-content;
    align-items: center;
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.dot.active-dot {
    background-color: #0077ff;
    box-shadow: 0 0 10px rgba(0, 119, 255, 0.5);
}

.s2-title {
    font-size: var(--fs-display); letter-spacing: -0.04em;
    font-weight: 600;
    line-height: 1;
    color: #efedf4;
}

.gradient-text-2 {
    background: linear-gradient(90deg, #0077ff 0%, #ff3f44 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.s2-subtitle {
    font-size: var(--fs-subtitle);
    color: var(--text-secondary);
    margin-top: 42px;
}

/* Screen 2: Slides 2 & 3 subtitle text block width is 2/3 of heading */
.s2-text-item:nth-child(2) .s2-subtitle,
.s2-text-item:nth-child(3) .s2-subtitle {
    max-width: 430px;
}

.s2-texts {
    position: relative;
    max-width: 600px;
}

.s2-text-item {
    display: none;
    animation: fadeIn 0.4s ease;
}

.s2-text-item.active {
    display: block;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: #333;
    cursor: pointer;
    transition: background-color 0.2s ease, box-shadow 0.2s ease;
}

/* s2-center is now styled alongside center-video above */

.s2-phone-mockup {
    height: calc(100vh - 104px);
    aspect-ratio: 434 / 924;
    width: auto;
    background: #000;
    border-radius: 50px;
    padding: 8px;
    box-shadow: inset 0 0 0 4px #444, 0 20px 50px rgba(0,0,0,0.5);
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.s2-phone-inner {
    background-color: #ccff00;
    border-radius: 42px;
    height: 100%;
    width: 100%;
    display: flex;
    align-items: center;
    padding-left: 40px;
    position: relative;
    overflow: hidden;
}

.s2-phone-notch {
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 24px;
    background: #000;
    border-radius: 12px;
}

.s2-phone-text {
    font-size: 72px;
    font-weight: 600;
    line-height: 0.9;
    letter-spacing: -3px;
    color: #121212;
}

.s2-floating-logo {
    position: absolute;
    bottom: 20px;
    left: -20px;
    background: rgba(200, 210, 230, 0.8);
    backdrop-filter: blur(12px);
    border-radius: 16px;
    padding: 16px 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.s2-right {
    z-index: 10;
    align-self: flex-end;
    margin-bottom: 50px;
}

.qr-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(24px);
    display: flex;
    flex-direction: column;
    gap: 12px;
    width: 140px;
}

.qr-text {
    font-size: 14px;
    line-height: 1.2;
    color: #efedf4;
}

.qr-large {
    background: #fff;
    border-radius: 8px;
    padding: 8px;
    display: flex;
    justify-content: center;
}

.qr-large img {
    width: 100%;
    height: auto;
}

.store-links-mini {
    display: flex;
    justify-content: space-between;
}

.store-icon-mini {
    width: 24px;
    height: 24px;
    background: rgba(255,255,255,0.1);
    border-radius: 6px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.store-icon-mini img {
    width: 14px;
    height: 14px;
}

/* Screen 5 */
.screen-5 {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 100px 52px;
    gap: 55px;
    margin-top: 100px;
    height: auto;
    min-height: 100vh;
}

.s5-header {
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 42px;
}

.s5-title {
    font-size: var(--fs-display); letter-spacing: -0.04em;
    font-weight: 600;
    color: var(--text-primary);
    line-height: 1;
}

.s5-subtitle {
    font-size: var(--fs-subtitle);
    color: #efedf4;
}

.s5-cards {
    display: flex;
    flex-direction: column;
    gap: 24px;
    width: 100%;
    max-width: 1340px;
}

.s5-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 16px;
    display: flex;
    gap: 24px;
    height: 499px;
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.s5-card-text {
    width: 419px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    flex-shrink: 0;
}

.s5-card-content {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.s5-card-title {
    font-size: var(--fs-h2);
    font-weight: 600;
    letter-spacing: -1.68px;
    color: white;
    margin-bottom: 12px;
}

.s5-card-desc {
    font-size: var(--fs-subtitle);
    color: #efedf4;
    line-height: 1.4;
}

.s5-card-action {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 32px;
}

.s5-btn {
    background: white;
    color: #121212;
    padding: 16px 24px;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    border: none;
    cursor: pointer;
    width: fit-content;
}

.s5-card-disclaimer {
    font-size: 12px;
    color: #a1a1aa;
}

.s5-card-image {
    width: 865px;
    height: 467px;
    background: white;
    border-radius: 8px;
    position: relative;
    overflow: hidden;
    flex-shrink: 0;
}

/* Store icons list */
.s5-stores {
    display: flex;
    gap: 4px;
}
.s5-store-icon {
    width: 24px;
    height: 24px;
    background: rgba(18, 18, 18, 0.8);
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.s5-store-icon img {
    width: 16px;
    height: 16px;
}

.gradient-text-3 {
    background: linear-gradient(269.59deg, #e83a3e 7.69%, #007aff 85.18%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* --- Screen 3 (Map Stats) --- */
.screen-map {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    background-color: var(--bg-color); /* Same dark background */ /* Same dark background */
    min-height: 100vh; /* Added to give the section height */
}

.map-container {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 1073px;
    max-width: 100%;
    aspect-ratio: 2146 / 1211;
    z-index: 1;
}

.map-overlay-rect {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 5;
    pointer-events: none;
    background-image: url("data:image/svg+xml;utf8,<svg viewBox='0 0 1440 805' xmlns='http://www.w3.org/2000/svg' preserveAspectRatio='none'><rect x='0' y='0' height='100%' width='100%' fill='url(%23grad)' opacity='1'/><defs><radialGradient id='grad' gradientUnits='userSpaceOnUse' cx='0' cy='0' r='10' gradientTransform='matrix(-1.2439e-14 32.39 -57.94 -6.954e-15 720 402.5)'><stop stop-color='rgba(26,26,36,0)' offset='0.42758'/><stop stop-color='rgba(26,26,36,1)' offset='1'/></radialGradient></defs></svg>");
    background-size: 100% 100%;
}

.map-bg {
    width: 100%;
    height: 100%;
    object-fit: contain;
    opacity: 0.9;
}

.map-pin {
    position: absolute;
    width: 28px; /* Size of the pin */
    transform: translate(0, 0) scale(0);
    transform-origin: center center;
    opacity: 0;
}

.map-container.animate-pins .map-pin {
    animation: popIn 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
}

@keyframes popIn {
    0% {
        transform: translate(0, 0) scale(0);
        opacity: 0;
    }
    100% {
        transform: translate(0, 0) scale(1);
        opacity: 1;
    }
}

.map-stats-content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 120px;
}

.map-stats-title {
    font-size: var(--fs-display); letter-spacing: -0.04em;
    font-weight: 600;
    line-height: 1.1;
    letter-spacing: -3.28px;
    color: var(--text-primary);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 31px;
}

.gradient-text-blue-red {
    background: linear-gradient(90deg, #218bff 0%, #a23fe2 50%, #ff3f44 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.map-btn-wrapper-center {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.qr-btn-dark {
    background: rgba(255, 255, 255, 0.08); /* slightly lighter than bg */
    border: 1px solid rgba(255, 255, 255, 0.15);
}
.qr-btn-dark:hover {
    background: rgba(255, 255, 255, 0.15);
}

/* --- Screen 6 (Map Markers Types) --- */
.screen-6 {
    display: flex;
    flex-direction: column;
    padding: 100px 52px;
    margin-top: 50px;
    margin-bottom: 100px;
    width: 100%;
    height: auto;
    min-height: 100vh;
}

.s6-header-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 42px;
    width: 100%;
    max-width: 1340px;
    margin-left: auto;
    margin-right: auto;
}

.s6-header-left {
    max-width: 657px;
}

.s6-title {
    font-size: var(--fs-display); letter-spacing: -0.04em;
    font-weight: 600;
    letter-spacing: -3.28px;
    color: var(--text-primary);
    line-height: 1;
    margin-bottom: 42px;
}

.s6-subtitle {
    font-size: var(--fs-subtitle);
    color: var(--text-primary);
    line-height: 1.4;
    max-width: 433px;
}

.s6-mode-toggle {
    display: flex;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 4px;
    backdrop-filter: blur(12px);
}

.s6-toggle-btn {
    background: transparent;
    color: var(--text-secondary);
    border: none;
    padding: 12px 24px;
    font-size: var(--fs-body);
    font-family: 'Manrope', sans-serif;
    font-weight: 600;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.s6-toggle-btn.active {
    background: white;
    color: #121212;
}

.s6-content {
    width: 100%;
    max-width: 1340px;
    margin: 0 auto;
    display: grid;
}

.s6-mode-view {
    grid-area: 1 / 1;
    opacity: 0;
    pointer-events: none;
    visibility: hidden;
    justify-content: space-between;
    align-items: stretch;
    transition: opacity 0.4s ease, visibility 0.4s ease;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 16px;
    gap: 24px;
    display: flex;
}

.s6-mode-view.active {
    opacity: 1;
    pointer-events: auto;
    visibility: visible;
}

.s6-view-left {
    width: 644px;
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
}

.s6-change-mode-icon {
    width: 56px;
    height: 56px;
    margin-bottom: 42px;
    cursor: pointer;
    transform-style: preserve-3d;
    backface-visibility: hidden;
    transition: transform 0.3s ease-in;
}

.s6-change-mode-icon.flip-out {
    transform: perspective(400px) rotateY(90deg);
}

.s6-mode-view.active .s6-change-mode-icon {
    animation: flipIn3D 0.3s ease-out forwards;
}

@keyframes flipIn3D {
    0% {
        transform: perspective(400px) rotateY(-90deg);
    }
    100% {
        transform: perspective(400px) rotateY(0deg);
    }
}

.s6-view-title {
    font-size: var(--fs-h2);
    font-weight: 600;
    letter-spacing: -1.68px;
    color: white;
    margin-bottom: 12px;
}

.s6-view-desc {
    font-size: var(--fs-subtitle);
    color: var(--text-primary);
    line-height: 1.4;
    max-width: 433px;
}

.s6-view-left .s5-card-action {
    margin-top: auto;
}

.s6-view-right {
    flex: 1 1 0;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
    align-content: start;
}

.s6-marker-card {
    display: flex;
    flex-direction: column;
    gap: 12px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 16px;
    flex: 1 1 0;
    min-width: 0;
}

.s6-marker-icon {
    width: 60px;
    height: 72px;
    object-fit: contain;
    align-self: flex-end;
}

.s6-marker-title {
    font-family: 'Manrope', sans-serif;
    font-size: var(--fs-card-title);
    font-weight: 600;
    line-height: 1.1;
    letter-spacing: -0.63px;
    color: #efedf4;
}

.s6-marker-desc {
    font-family: 'Manrope', sans-serif;
    font-size: 13px;
    color: #efedf4;
    line-height: 16px;
}
/* =========================
   QR Sidebar Styles
   ========================= */

.qr-sidebar-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    z-index: 1000;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.qr-sidebar-overlay.open {
    opacity: 1;
    pointer-events: all;
}

.qr-sidebar {
    position: fixed;
    top: 0;
    right: 0;
    width: 483px;
    height: 100vh;
    background: #ffffff;
    border-left: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 32px 0 0 32px;
    z-index: 1001;
    transform: translateX(100%);
    transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1);
    display: flex;
    flex-direction: column;
    padding: 52px 32px;
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.1);
}

.qr-sidebar.open {
    transform: translateX(0);
}

.qr-sidebar-close {
    position: absolute;
    top: 24px;
    right: 24px;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    color: #fff;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.2s;
}

.qr-sidebar-close:hover {
    background: rgba(0, 0, 0, 0.05);
}

.qr-sidebar-close svg {
    width: 24px;
    height: 24px;
}

.qr-sidebar-content {
    display: flex;
    flex-direction: column;
    gap: 42px;
    align-items: flex-start;
}

.qr-sidebar-header-text {
    display: flex;
    flex-direction: column;
    gap: 24px;
    text-align: left;
    width: 100%;
}

.qr-sidebar-title {
    font-family: 'Manrope', sans-serif;
    font-size: var(--fs-h2);
    font-weight: 600;
    line-height: 1;
    color: #111827;
    letter-spacing: -1.68px;
}

.qr-sidebar-subtitle {
    font-family: 'Manrope', sans-serif;
    font-size: 20px;
    line-height: normal;
    color: #111827;
    font-weight: 400;
    letter-spacing: -0.4px;
}

.qr-sidebar-subtitle strong {
    font-weight: 700;
}

.qr-sidebar-footer-box {
    display: flex;
    gap: 8px;
    align-items: center;
    justify-content: center;
    border: 1px solid #9ca3af;
    border-radius: 12px;
    padding: 12px;
    width: 100%;
}

.qr-sidebar-large {
    width: 139px;
    height: 140px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.qr-sidebar-large img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.qr-sidebar-store-text {
    font-family: 'Manrope', sans-serif;
    font-size: 13px;
    line-height: 16px;
    color: #111827;
    width: 189px;
    flex-shrink: 0;
}

.qr-sidebar-store-text strong {
    font-weight: 700;
    color: #0077ff;

}

/* Screen 7 */
.screen-7 {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100vw;
}

.s7-container {
    width: 100%;
    max-width: 1340px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    padding: 0;
    gap: 120px;
}

.s7-telegram {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    width: 48%;
    align-self: flex-start; /* Aligns to top */
    margin-bottom: 80px;
}

.s7-main-title {
    font-size: var(--fs-display); letter-spacing: -0.04em;
    line-height: 1.05;
    margin-bottom: 24px;
    font-weight: 600;
    color: #ffffff;
    letter-spacing: -2px;
}

.s7-main-subtitle {
    font-size: var(--fs-subtitle);
    line-height: 1.5;
    color: rgba(239, 237, 244, 0.8);
    max-width: 380px;
}

.s7-cities-block {
    width: 52%;
    display: flex;
    flex-direction: column;
    align-self: flex-end; /* Aligns to bottom */
    margin-top: 80px;
}

.s7-right-title {
    font-size: var(--fs-h2);
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 8px;
}

.s7-right-subtitle {
    font-size: 16px;
    color: rgba(239, 237, 244, 0.7);
    margin-bottom: 32px;
}

.s7-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-top: 56px;
    align-self: flex-start;
    padding: 16px 28px;
    background-color: #ffffff;
    color: #121212;
    border-radius: 12px;
    font-weight: 600;
    font-size: var(--fs-body);
    border: none;
    cursor: pointer;
    font-family: 'Manrope', sans-serif;
}

.tg-icon {
    width: 22px;
    height: 22px;
}

.s7-cities-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.s7-city-card {
    background: rgba(255, 255, 255, 0.06); 
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 16px 20px;
    display: flex;
    justify-content: space-between;
    height: 104px;
}

.s7-city-info {
    display: flex;
    flex-direction: column;
    gap: 4px;
    justify-content: flex-start;
}

.s7-city-info h4 {
    font-size: var(--fs-card-title);
    font-weight: 600;
    color: #ffffff;
    margin: 0;
}

.s7-city-info span {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.6);
}

.s7-city-arrow {
    background: #111827;
    border-radius: 8px;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    align-self: flex-end;
}

@media (max-width: 1024px) {
    .s7-container {
        flex-direction: column;
        padding: 40px;
        gap: 60px;
    }
    .s7-telegram, .s7-cities-block {
        width: 100%;
    }
    .s7-main-title {
        font-size: 64px;
    }
}
@media (max-width: 768px) {
    .s7-cities-grid {
        grid-template-columns: 1fr;
    }
    .s7-main-title {
        font-size: 48px;
    }
}

/* Screen 8 */
.screen-8 {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100vw;
    margin-bottom: 120px;
}

.s8-container {
    width: 100%;
    max-width: 1440px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 64px;
    padding: 0 50px;
}

.s8-top {
    display: flex;
    gap: 120px;
    align-items: center;
    justify-content: center;
}

.s8-rating-block {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.s8-rating-score {
    font-size: 155px;
    font-weight: 500;
    line-height: 1;
    background: linear-gradient(270deg, #E83A3E 7%, #007AFF 85%);
    -webkit-background-clip: text;
    color: transparent;
    letter-spacing: -10px;
    margin-bottom: 0px;
}

.s8-rating-text {
    font-size: 13px;
    color: var(--text-primary);
    margin-bottom: 8px;
}

.s8-stores {
    display: flex;
    gap: 6px;
}

.s8-store-icon {
    width: 42px;
    height: 42px;
    background: rgba(18, 18, 18, 0.8);
    border-radius: 9px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.s8-title-block {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.s8-title {
    font-size: var(--fs-display); letter-spacing: -0.04em;
    font-weight: 600;
    color: var(--text-primary);
    letter-spacing: -3px;
    line-height: 1;
}

.s8-subtitle {
    font-size: var(--fs-subtitle);
    color: var(--text-secondary);
    line-height: 1.4;
    max-width: 440px;
}

.s8-reviews-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
}

.s8-review-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 24px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 290px;
    height: 100%;
}

.s8-review-info {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.s8-review-info h4 {
    font-size: var(--fs-card-title);
    font-weight: 600;
    color: var(--text-primary);
    margin: 0;
}

.s8-review-info p {
    font-size: 13px;
    color: var(--text-secondary);
    line-height: 1.45;
}

.s8-review-bottom {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-top: auto;
    padding-top: 16px;
}

.s8-stars {
    color: #007AFF;
    font-size: 14px;
    letter-spacing: 2px;
}

.s8-small-store {
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
}

@media (max-width: 1200px) {
    .s8-reviews-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    .s8-top {
        gap: 60px;
    }
}

@media (max-width: 768px) {
    .s8-reviews-grid {
        grid-template-columns: 1fr;
    }
    .s8-top {
        flex-direction: column;
        gap: 40px;
    }
    .s8-rating-score {
        font-size: 100px;
    }
    .s8-title {
        font-size: 48px;
    }
}


/* Screen 9 FAQ */
.s9-wrapper {
    background-color: #212130;
    width: 100%;
    padding: 80px 0;
}
.screen-9-faq {
    display: flex;
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 50px;
    justify-content: space-between;
    align-items: flex-start;
    gap: 40px;
}
.s9-left {
    flex: 1;
    max-width: 600px;
}
.s9-title {
    font-size: var(--fs-display); letter-spacing: -0.04em;
    font-weight: 600;
    font-family: 'Manrope', sans-serif;
    line-height: 1;
    margin: 0 0 32px 0;
    letter-spacing: -3px;
    color: white;
}
.s9-subtitle {
    font-size: var(--fs-subtitle);
    color: #efedf4;
    font-family: 'Manrope', sans-serif;
    letter-spacing: -0.4px;
    margin: 0;
    line-height: 1.4;
}
.s9-right {
    flex: 1;
    max-width: 660px;
    display: flex;
    flex-direction: column;
}
.faq-item {
    border-bottom: 1px solid #3f3f46;
    padding: 24px 0;
}
.faq-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    user-select: none;
}
.faq-question {
    font-size: var(--fs-card-title);
    font-weight: 600;
    margin: 0;
    padding-right: 20px;
    color: white;
    font-family: 'Manrope', sans-serif;
    line-height: 1.2;
    letter-spacing: -0.6px;
}
.faq-icon {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    background: rgba(18, 18, 18, 0.8);
    display: flex;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
    transition: background 0.2s ease;
    cursor: pointer;
}
.faq-header:hover .faq-icon,
.faq-icon:hover {
    background: #0077ff;
}
.faq-item.active .faq-icon {
    background: #0077ff;
}
.faq-icon svg {
    width: 20px;
    height: 20px;
    pointer-events: none;
    transition: transform 0.2s ease;
}
.faq-item.active .faq-icon svg {
    transform: rotate(45deg);
}
.faq-answer {
    display: none;
    margin-top: 18px;
    font-size: 13px;
    line-height: 1.5;
    color: #efedf4;
    font-family: 'Manrope', sans-serif;
}
.faq-item.active .faq-answer {
    display: block;
}
.faq-answer p {
    margin: 0 0 10px 0;
}
.faq-answer p:last-child {
    margin: 0;
}
.faq-answer ol {
    padding-left: 20px;
    margin: 0;
}
.faq-answer li {
    margin-bottom: 8px;
}

@media (max-width: 1024px) {
    .screen-9-faq {
        flex-direction: column;
        padding: 0 20px;
    }
    .s9-left, .s9-right {
        max-width: 100%;
        flex: 1 1 100%;
    }
    .s9-title {
        font-size: 48px;
        letter-spacing: -1px;
    }
}

/* Screen 10 Final CTA & Footer */
.s10-wrapper {
    width: 100%;
    padding: 80px 0 40px 0;
    position: relative;
    overflow: hidden;
}

.screen-10-cta {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 50px;
    display: flex;
    flex-direction: column;
    gap: 48px;
    position: relative;
}

/* Top Row */
.s10-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    width: 100%;
    z-index: 10;
}

.s10-title {
    font-size: var(--fs-display); letter-spacing: -0.04em;
    font-weight: 600;
    font-family: 'Manrope', sans-serif;
    line-height: 1;
    letter-spacing: -3.28px;
    color: #efedf4;
    margin: 0;
}

.s10-logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

/* Middle Section */
.s10-middle {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    position: relative;
    min-height: 480px;
    width: 100%;
}

/* Left Column */
.s10-left {
    width: 432px;
    display: flex;
    flex-direction: column;
    gap: 24px;
    z-index: 10;
}

.s10-subtitle {
    font-size: var(--fs-subtitle);
    color: #efedf4;
    line-height: 1.4;
    letter-spacing: -0.4px;
    margin: 0;
}

.s10-qr-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 16px;
    display: flex;
    gap: 14px;
    align-items: center;
    width: 100%;
}

.s10-qr-img {
    width: 95px;
    height: 95px;
    flex-shrink: 0;
}

.s10-qr-img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.s10-qr-text p {
    font-size: 13px;
    line-height: 1.35;
    color: #121212;
    margin: 0;
    font-family: 'Manrope', sans-serif;
}

.qr-blue {
    color: #0077ff;
}

/* Store Buttons Grid */
.s10-store-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    width: 100%;
}

.s10-store-btn {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 12px;
    padding: 10px 14px;
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    transition: background 0.2s, transform 0.2s, border-color 0.2s;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.s10-store-btn:hover {
    background: #0077ff;
    border-color: #0077ff;
    transform: translateY(-2px);
}

.s10-store-icon {
    width: 36px;
    height: 36px;
    object-fit: contain;
    flex-shrink: 0;
}

.s10-store-info {
    display: flex;
    flex-direction: column;
}

.s10-store-sub {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.5px;
    color: rgba(255, 255, 255, 0.8);
    text-transform: uppercase;
    line-height: 1;
}

.s10-store-name {
    font-size: 17px;
    font-weight: 700;
    color: #ffffff;
    line-height: 1.2;
    margin-top: 2px;
}

/* Center Video */
.s10-center {
    position: absolute;
    left: calc(50% - 50px);
    bottom: -100px;
    transform: translateX(-28%);
    width: 850px;
    height: 855px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 5;
    pointer-events: none;
}

.s10-video {
    width: 100%;
    height: 100%;
    object-fit: contain;
    mix-blend-mode: screen;
    transform: scale(0.83);
}

/* Right Column */
.s10-right {
    width: 295px;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 32px;
    z-index: 10;
}

.s10-socials {
    display: flex;
    gap: 12px;
}

.s10-social-btn {
    width: 42px;
    height: 42px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: background 0.2s, transform 0.2s;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.s10-social-btn:hover {
    background: #0077ff;
    border-color: #0077ff;
    transform: translateY(-2px);
}

.s10-nav {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 10px;
}

.s10-nav-link {
    font-size: 15px;
    font-weight: 500;
    color: #ffffff;
    text-decoration: none;
    transition: color 0.2s, transform 0.2s;
    letter-spacing: 0.2px;
    font-family: 'Manrope', sans-serif;
}

.s10-nav-link:hover {
    color: #0077ff;
    transform: translateX(-4px);
}

/* Footer Bottom */
.s10-footer {
    display: flex;
    flex-direction: column;
    gap: 20px;
    width: 100%;
    margin-top: 20px;
    z-index: 10;
}

.s10-divider {
    height: 1px;
    background: rgba(255, 255, 255, 0.12);
    width: 100%;
}

.s10-bottom-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.s10-legal-name {
    font-size: 11px;
    font-weight: 700;
    color: #a1a1aa;
    margin: 0;
}

.s10-legal-desc {
    font-size: 10px;
    font-weight: 400;
    color: #a1a1aa;
    margin: 3px 0 0 0;
}

.s10-links {
    display: flex;
    align-items: center;
    gap: 12px;
}

.s10-link-item {
    font-size: 12px;
    color: #a1a1aa;
    text-decoration: none;
    transition: color 0.2s;
}

.s10-link-item:hover {
    color: #ffffff;
}

.s10-link-sep {
    color: rgba(255, 255, 255, 0.2);
    font-size: 12px;
}

/* Responsive */
@media (max-width: 1200px) {
    .s10-middle {
        flex-direction: column;
        align-items: center;
        gap: 40px;
    }
    .s10-left, .s10-right {
        width: 100%;
        max-width: 500px;
        align-items: flex-start;
    }
    .s10-right {
        align-items: flex-start;
    }
    .s10-socials, .s10-nav {
        align-items: flex-start;
    }
    .s10-center {
        position: static;
        transform: none;
        width: 100%;
        max-width: 400px;
        height: auto;
    }
    .s10-top {
        flex-direction: column;
        gap: 20px;
    }
    .s10-title {
        font-size: 48px;
        letter-spacing: -1px;
    }
    .s10-bottom-row {
        flex-direction: column;
        gap: 16px;
        align-items: flex-start;
    }
}


/* ==========================================================================
   SECTION 1 MOBILE ADAPTIVE STYLES (Figma node-id=66-1726)
   ========================================================================== */
@media (max-width: 1024px) {
    .layout-container {
        padding: 24px 16px 40px 16px;
        
        min-
        overflow-x: hidden;
    }

    .header {
        flex-direction: row;
        justify-content: space-between;
        align-items: flex-start;
        gap: 16px;
        margin-bottom: 28px;
    }

    .hero-text {
        max-width: 100%;
        flex: 1 1 auto;
    }

    .gradient-text {
        font-size: clamp(1.85rem, 8vw, 2.5625rem);
        font-weight: 600;
        line-height: 1;
        letter-spacing: -0.04em;
        margin-bottom: 8px;
    }

    .sub-text {
        font-size: clamp(1.85rem, 8vw, 2.5625rem);
        font-weight: 600;
        line-height: 1;
        letter-spacing: -0.04em;
    }

    .hero-badge {
        font-size: 13px;
        padding: 8px 12px;
        border-radius: 10px;
        margin-top: 14px;
        letter-spacing: 0.2px;
        line-height: 1.2;
    }

    .logo {
        align-items: center;
        flex-shrink: 0;
    }

    .logo-icons {
        width: 48px;
        height: 52px;
    }

    .logo-text {
        font-size: 11px;
        font-weight: 800;
        letter-spacing: -0.5px;
        text-align: center;
        margin-top: 4px;
    }

    .main-content {
        flex-direction: column;
        align-items: stretch;
        gap: 28px;
        
    }

    .info-block {
        width: 100%;
        max-width: 100%;
        gap: 20px;
        order: 1;
    }

    .description {
        font-size: 16px;
        line-height: 1.4;
        letter-spacing: -0.32px;
        color: #efedf4;
    }

    .action-buttons {
        gap: 16px;
        width: 100%;
    }

    .map-btn-wrapper {
        width: auto;
    }

    .primary-btn {
        flex: 0 1 auto;
        width: max-content;
        text-align: center;
        padding: 16px 24px;
        font-size: 16px;
        border-radius: 16px;
    }

    .store-links {
        gap: 8px;
        justify-content: flex-start;
    }

    .store-icon {
        width: 36px;
        height: 36px;
        border-radius: 8px;
        background: #17171a;
        display: flex;
        align-items: center;
        justify-content: center;
        border: none;
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
    }

    .center-video {
        position: relative;
        left: 50%;
        bottom: auto;
        transform: translateX(-50%);
        width: 140%;
        max-width: none;
        height: auto;
        margin: -20px 0 -30px 0;
        order: 2;
        pointer-events: none;
        object-fit: contain;
        object-position: center;
        overflow: visible;
    }

    .features-block {
        width: 100%;
        max-width: 100%;
        flex-direction: column;
        gap: 12px;
        order: 3;
    }

    .feature-card {
        width: 100%;
        padding: 16px;
        border-radius: 16px;
        background: rgba(255, 255, 255, 0.1);
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
        border: 1px solid rgba(255, 255, 255, 0.1);
    }

    .feature-card h3 {
        font-size: 21px;
        font-weight: 600;
        letter-spacing: -0.63px;
        margin-bottom: 6px;
        line-height: 1.15;
    }

    .feature-card p {
        font-size: 15px;
        line-height: 1.4;
        color: rgba(239, 237, 244, 0.7);
    }
}


/* ==========================================================================
   FULL MOBILE ADAPTIVE STYLESHEET (SECTIONS 1 - 10)
   ========================================================================== */
@media (max-width: 1024px) {
    /* Global Container */
    html, body {
        overflow-x: hidden;
        width: 100%;
    }

    .layout-container {
        padding: 24px 16px 40px 16px;
        
        min-
        overflow-x: hidden;
    }

    /* SECTION 1: HEADER & HERO */
    .header {
        flex-direction: row;
        justify-content: space-between;
        align-items: flex-start;
        gap: 16px;
        margin-bottom: 28px;
    }

    .hero-text {
        max-width: 100%;
        flex: 1 1 auto;
    }

    .gradient-text, .sub-text {
        font-size: 41px;
        font-weight: 600;
        line-height: 1;
        letter-spacing: -1.64px;
        margin-bottom: 8px;
    }

    .logo {
        align-items: center;
        flex-shrink: 0;
    }

    .logo-icons {
        width: 48px;
        height: 52px;
    }

    .logo-text {
        font-size: 11px;
        font-weight: 800;
        letter-spacing: -0.5px;
        text-align: center;
        margin-top: 4px;
    }

    .main-content {
        flex-direction: column;
        align-items: stretch;
        gap: 28px;
        
    }

    .info-block {
        width: 100%;
        max-width: 100%;
        gap: 20px;
        order: 1;
    }

    .description {
        font-size: 16px;
        line-height: 1.4;
        letter-spacing: -0.32px;
        color: #efedf4;
    }

    .action-buttons {
        gap: 16px;
        width: 100%;
    }

    .map-btn-wrapper {
        width: auto;
    }

    .primary-btn {
        flex: 0 1 auto;
        width: max-content;
        text-align: center;
        padding: 16px 24px;
        font-size: 16px;
        border-radius: 16px;
    }

    .store-links {
        gap: 8px;
        justify-content: flex-start;
    }

    .store-icon {
        width: 36px;
        height: 36px;
        border-radius: 8px;
        background: #17171a;
        display: flex;
        align-items: center;
        justify-content: center;
        border: none;
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
    }

    .center-video {
        position: relative;
        left: 50%;
        bottom: auto;
        transform: translateX(-50%);
        width: 140%;
        max-width: none;
        height: auto;
        margin: -20px 0 -30px 0;
        order: 2;
        pointer-events: none;
        object-fit: contain;
        object-position: center;
        overflow: visible;
    }

    .features-block {
        width: 100%;
        max-width: 100%;
        flex-direction: column;
        gap: 12px;
        order: 3;
    }

    .feature-card {
        width: 100%;
        padding: 16px;
        border-radius: 16px;
        background: rgba(255, 255, 255, 0.1);
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
        border: 1px solid rgba(255, 255, 255, 0.1);
    }

    .feature-card h3 {
        font-size: 21px;
        font-weight: 600;
        letter-spacing: -0.63px;
        margin-bottom: 6px;
        line-height: 1.15;
    }

    .feature-card p {
        font-size: 15px;
        line-height: 1.4;
        color: rgba(239, 237, 244, 0.7);
    }

    /* SECTION 2: STICKY / CAROUSEL */
    .screen-2-scroll {
        
        padding: 40px 16px;
        margin-top: 40px;
    }

    .screen-2-sticky {
        position: relative;
        top: auto;
        
        padding: 0;
        flex-direction: column;
        gap: 32px;
        overflow: visible;
    }

    .s2-left {
        width: 100%;
    }

    .s2-title {
        font-size: 32px;
        line-height: 1.1;
        letter-spacing: -1.28px;
        margin-bottom: 12px;
    }

    .s2-subtitle {
        font-size: 15px;
        line-height: 1.4;
    }

    .s2-text-item:nth-child(2) .s2-subtitle,
    .s2-text-item:nth-child(3) .s2-subtitle {
        max-width: 100%;
    }

    .s2-text-item {
        position: relative;
        opacity: 1;
        transform: none;
        display: block !important;
        margin-bottom: 24px;
    }

    .s2-cards-stack {
        width: 100%;
        max-width: 100%;
        
        position: relative;
        display: flex !important;
        flex-direction: column;
        gap: 16px;
    }

    .s2-card {
        position: relative;
        top: auto;
        left: auto;
        transform: none;
        width: 100%;
        
        min-height: 280px;
        border-radius: 20px;
        opacity: 1;
    }

    /* SECTION 3: LIVE MAP */
    .screen-3-map {
        padding: 40px 16px;
        width: 100%;
    }

    .s3-container {
        padding: 0;
        width: 100%;
        flex-direction: column;
        gap: 24px;
    }

    .map-stats-title {
        font-size: 32px;
        line-height: 1.1;
        letter-spacing: -1.28px;
    }

    .map-frame {
        width: 100%;
        height: 340px;
        border-radius: 16px;
    }

    /* SECTION 4: AI ANALYSIS */
    .screen-4-ai {
        padding: 40px 16px;
        width: 100%;
    }

    .s4-container {
        padding: 0;
        width: 100%;
        gap: 28px;
    }

    .s4-title {
        font-size: 32px;
        line-height: 1.1;
        letter-spacing: -1.28px;
    }

    .s4-cards-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .s4-card {
        padding: 20px;
        border-radius: 16px;
    }

    /* SECTION 5: MODES (DRIVER / TRUCKER) */
    .screen-5-modes {
        padding: 40px 16px;
        margin-top: 40px;
        
    }

    .s5-header {
        gap: 24px;
    }

    

    .s5-tabs {
        width: 100%;
        flex-wrap: wrap;
        justify-content: center;
        gap: 8px;
    }

    .s5-tab {
        padding: 12px 20px;
        font-size: 14px;
        border-radius: 12px;
    }

    .s5-card-container {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .s5-card {
        padding: 20px;
        border-radius: 16px;
    }

    .s5-card h3 {
        font-size: 24px;
        letter-spacing: -0.96px;
    }

    /* SECTION 6 & 7: TELEGRAM & CITIES */
    .s6-header-top {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
        padding: 0 16px;
        margin-bottom: 24px;
    }

    .s6-title-block h2 {
        font-size: 32px;
        letter-spacing: -1.28px;
    }

    .s6-title-block p {
        font-size: 15px;
    }

    .s6-cards {
        grid-template-columns: 1fr;
        gap: 16px;
        padding: 0 16px;
    }

    .s7-container {
        flex-direction: column;
        padding: 40px 16px;
        gap: 32px;
    }

    .s7-telegram, .s7-cities-block {
        width: 100%;
    }

    .s7-main-title {
        font-size: 32px;
        letter-spacing: -1.28px;
    }

    .s7-cities-grid {
        grid-template-columns: 1fr 1fr;
        gap: 10px;
    }

    /* SECTION 8: REVIEWS & STORES */
    .screen-8 {
        margin-bottom: 60px;
        width: 100%;
    }

    .s8-container {
        padding: 0 16px;
        gap: 32px;
    }

    .s8-top {
        flex-direction: column;
        gap: 20px;
        align-items: center;
        text-align: center;
    }

    .s8-rating-score {
        font-size: 80px;
        letter-spacing: -4px;
    }

    .s8-rating-text {
        font-size: 14px;
    }

    .s8-stores {
        justify-content: center;
        flex-wrap: wrap;
        gap: 8px;
    }

    .s8-store-icon {
        width: 36px;
        height: 36px;
    }

    /* SECTION 9: FAQ ACCORDION */
    .screen-9-faq {
        flex-direction: column;
        padding: 40px 16px;
        gap: 24px;
    }

    .s9-left, .s9-right {
        max-width: 100%;
        width: 100%;
        flex: 1 1 100%;
    }

    .s9-title {
        font-size: 32px;
        letter-spacing: -1.28px;
    }

    .faq-item {
        padding: 16px;
        border-radius: 12px;
    }

    .faq-question h4 {
        font-size: 16px;
    }

    /* SECTION 10: FINAL CTA & FOOTER */
    .s10-wrapper {
        padding: 40px 0 20px 0;
    }

    .screen-10-cta {
        padding: 0 16px;
        gap: 32px;
    }

    .s10-top {
        flex-direction: column;
        gap: 20px;
        align-items: flex-start;
    }

    .s10-title {
        font-size: 41px;
        line-height: 1;
        letter-spacing: -1.64px;
    }

    .s10-middle {
        flex-direction: column;
        gap: 20px;
        align-items: flex-start;
    }

    .s10-links {
        flex-direction: column;
        gap: 12px;
    }

    .s10-bottom {
        flex-direction: column;
        gap: 12px;
        align-items: center;
        text-align: center;
    }
}




/* Desktop / Mobile Visibility Toggles & Exact Figma Mobile Screens (66:1791, 66:1821, 66:1851) */
@media (min-width: 1025px) {
    .mobile-only {
        display: none !important;
    }
    .desktop-only {
        display: block;
    }
}

@media (max-width: 1024px) {
    .desktop-only {
        display: none !important;
    }
    .mobile-only {
        display: flex !important;
    }
    
    .mobile-screens-wrapper {
        display: flex !important;
        flex-direction: column;
        gap: 60px;
        width: 100%;
        padding: 40px 16px;
    }

    .mobile-screen-section {
        display: flex !important;
        flex-direction: column;
        align-items: center;
        gap: 23px;
        text-align: center;
        width: 100%;
        padding: 0;
        background: transparent;
        border: none;
        border-radius: 0;
        box-shadow: none;
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
    }

    .mobile-screen-text {
        display: flex !important;
        flex-direction: column;
        gap: 16px;
        align-items: center;
        max-width: 380px;
        text-align: center;
    }

    .mobile-screen-title {
        font-family: 'Manrope', sans-serif;
        font-size: clamp(1.75rem, 8vw, 2.25rem);
        font-weight: 600;
        line-height: 1.05;
        letter-spacing: -0.04em;
        color: #ffffff;
        margin: 0;
        text-align: center;
    }

    .mobile-screen-subtitle {
        font-family: 'Manrope', sans-serif;
        font-size: 16px;
        font-weight: 400;
        line-height: 1.4;
        letter-spacing: -0.32px;
        color: #efedf4;
        margin: 0;
        text-align: center;
        opacity: 0.9;
    }

    .mobile-phone-mockup {
        position: relative;
        width: 300px;
        height: 615px;
        margin: 0 auto;
        display: block !important;
    }

    .mobile-phone-mockup .phone-body {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        object-fit: contain;
        pointer-events: none;
        z-index: 2;
    }

    .mobile-phone-mockup .phone-screen {
        position: absolute;
        top: 1.8%;
        left: 3.95%;
        width: 91.74%;
        height: 96.11%;
        object-fit: cover;
        border-radius: 34px;
        pointer-events: none;
        z-index: 1;
    }
}









@media (max-width: 1024px) {

    /* FIXES FOR MAP STATS CONTENT PER FIGMA 66:2328 */
    .map-stats-content {
        z-index: 999;
        gap: 42px;
        display: flex !important;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }

    .map-stats-title {
      font-family: 'Manrope', sans-serif;
      display: flex !important;
      flex-direction: column;
      align-items: center;
      gap: 0;
      margin: 0;
  }
  .map-stats-title .top-word {
      font-size: 72px;
      font-weight: 400;
      line-height: 0.9;
      letter-spacing: -2.88px;
      background: linear-gradient(90deg, #007AFF 0%, #E83A3E 100%);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
  }
  .map-stats-title .number-word {
      font-size: 86px;
      font-weight: 400;
      line-height: 0.9;
      letter-spacing: -5px;
      background: linear-gradient(90deg, #007AFF 0%, #E83A3E 100%);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
  }
  .map-stats-title .bottom-word {
      font-size: 46px;
      font-weight: 400;
      line-height: 1.1;
      letter-spacing: -1.84px;
      color: #efedf4;
      -webkit-text-fill-color: #efedf4;
      margin-top: 4px;
  }
    
    .map-btn-wrapper-center {
        display: flex !important;
        justify-content: center;
        width: 100%;
    }

}


/* Screen 5 Mobile & Tablet Responsive */
.s5-card-overlay {
    position: absolute;
    right: 32px;
    top: 20px;
    display: flex;
    flex-direction: column;
    gap: 0px;
    align-items: flex-end;
}
.s5-card-overlay-text {
    font-size: 20px;
    color: #121212;
    margin-left: 4px;
}
.s5-card-overlay-percent {
    font-size: 100px;
    font-weight: 600;
    line-height: 1;
    letter-spacing: -7px;
}

@media (max-width: 1024px) {
    .screen-5 {
        padding: 24px 16px;
        margin-top: 60px;
        gap: 55px;
        min-height: auto;
    }
    .s5-header {
        gap: 16px;
    }
    .s5-title {
        font-size: 41px;
        line-height: 41px;
        letter-spacing: -1.64px;
    }
    .s5-subtitle {
        font-size: 16px;
        line-height: 22px;
        letter-spacing: -0.32px;
    }
    .s5-cards {
        gap: 24px;
    }
    .s5-card {
        flex-direction: column;
        height: auto;
        padding: 16px;
        gap: 24px;
        border-radius: 16px;
    }
    .s5-card-text {
        width: 100%;
        order: 2;
    }
    .s5-card-content {
        gap: 16px;
    }
    .s5-card-title {
        font-size: 32px;
        line-height: 32px;
        letter-spacing: -1.28px;
        margin-bottom: 0;
    }
    .s5-card-desc {
        font-size: 14px;
        line-height: 19px;
        letter-spacing: -0.28px;
    }
    .s5-card-action {
        margin-top: 0;
        gap: 12px;
    }
    .s5-btn {
        padding: 16px 24px;
        font-size: 16px;
        height: 54px;
        border-radius: 12px;
        display: flex;
        align-items: center;
        justify-content: center;
        width: 100%; /* Making button full width on mobile often looks better, or fit-content depending on layout, figma says 202px/250px so we leave it fit-content if they want */
        max-width: none;
        white-space: nowrap;
        padding: 16px 20px;
    }
    .s5-card-disclaimer {
        font-size: 12px;
        letter-spacing: -0.24px;
        margin-top: 16px;
    }
    .s5-card-image {
        width: 100%;
        height: 348px;
        order: 1;
        border-radius: 8px;
    }
    /* Move card 2 text to bottom as well */
    .s5-card:nth-child(2) .s5-card-text {
        order: 2;
    }
    .s5-card:nth-child(2) .s5-card-image {
        order: 1;
    }
    
    .s5-card-overlay {
        right: 20px;
        top: 20px;
        align-items: flex-end;
    }
    .s5-card-overlay-text {
        font-size: 16px;
        letter-spacing: -0.32px;
    }
    .s5-card-overlay-percent {
        font-size: 54px;
        letter-spacing: -3.5px;
        line-height: 1;
    }
}






/* Screen 6 Mobile Responsive */
@media (max-width: 1024px) {
    .screen-6 {
        padding: 40px 16px;
        gap: 24px;
        width: 100vw;
        max-width: 100%;
        box-sizing: border-box;
        overflow: hidden; 
    }
    .s6-header-top {
        flex-direction: column;
        gap: 20px;
        align-items: center;
        text-align: center;
        width: 100%;
    }
    .s6-header-left {
        gap: 12px;
        display: flex;
        flex-direction: column;
        align-items: center;
        width: 100%;
    }
    .s6-title {
        font-size: 41px;
        line-height: 41px;
        letter-spacing: -1.64px;
        margin: 0;
        width: 100%;
        text-align: center;
    }
    .s6-subtitle {
        font-size: 16px;
        line-height: 22px;
        letter-spacing: -0.32px;
        margin: 0;
        width: 100%;
        text-align: center;
    }
    .s6-header-right {
        width: 100%;
        display: flex;
        justify-content: center;
    }
    .s6-mode-toggle {
        display: flex;
        gap: 4px;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }
    .s6-toggle-btn {
        flex: 1;
        height: 54px;
        font-size: 13px;
        font-weight: 600;
        padding: 0 8px;
        display: flex;
        align-items: center;
        justify-content: center;
        text-align: center;
        white-space: normal; 
        line-height: 1.1;
    }
    
    .s6-content {
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }
    
    /* Grid layout for inner mode view */
    .s6-mode-view {
        display: grid !important;
        grid-template-columns: 1fr auto;
        row-gap: 16px;
        column-gap: 16px;
        align-items: start; /* align top to handle 2-line title */
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
        
        /* RESTORE THE BACKGROUND AND PADDING AS REQUESTED */
        background: rgba(255, 255, 255, 0.05) !important;
        padding: 24px 16px !important;
        border-radius: 20px !important;
    }
    
    .s6-view-left {
        display: contents !important;
    }
    
    .s6-view-title {
        grid-column: 1;
        grid-row: 1;
        font-size: 32px;
        line-height: 36px; /* give it breathing room for 2 lines */
        letter-spacing: -1.28px;
        margin: 0;
        align-self: center; /* center vertically with the icon */
    }
    .s6-change-mode-icon {
        grid-column: 2;
        grid-row: 1;
        width: 80px;
        height: 80px;
        object-fit: contain;
        align-self: center;
    }
    .s6-view-desc {
        grid-column: 1 / -1;
        grid-row: 2;
        font-size: 14px;
        line-height: 19px;
        letter-spacing: -0.28px;
        margin: 0;
        color: rgba(255, 255, 255, 0.7);
    }
    
    /* Cards in row 3 */
    .s6-view-right {
        grid-column: 1 / -1;
        grid-row: 3;
        display: flex !important;
        flex-wrap: nowrap !important;
        overflow-x: auto;
        overflow-y: hidden;
        gap: 8px !important;
        /* Pull cards to bleed over the padding of the dark box */
        width: calc(100% + 32px) !important;
        max-width: none !important;
        margin-left: -16px;
        margin-right: -16px;
        padding-left: 16px;
        padding-right: 16px;
        padding-bottom: 8px; 
        -webkit-overflow-scrolling: touch; 
        scroll-snap-type: x mandatory;
        box-sizing: border-box;
    }
    .s6-view-right::-webkit-scrollbar {
        display: none;
    }
    
    .s6-marker-card {
        min-width: 156px; 
        width: 156px;
        flex: 0 0 auto;
        padding: 16px;
        border-radius: 16px;
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        scroll-snap-align: start;
        box-sizing: border-box;
        background: rgba(255, 255, 255, 0.05); /* Lighter bg inside dark bg */
        border: 1px solid rgba(255, 255, 255, 0.1);
    }
    .s6-marker-icon {
        width: 48px;
        height: 60px;
        object-fit: contain;
        align-self: flex-end; 
    }
    .s6-marker-title {
        font-size: 18px;
        letter-spacing: -0.5px;
        margin-top: 12px;
        margin-bottom: 4px;
    }
    .s6-marker-desc {
        font-size: 12px;
        line-height: 15px;
        margin: 0;
        color: rgba(255, 255, 255, 0.7);
    }
    
    /* Button in row 4 */
    .s6-view-left .s5-card-action {
        grid-column: 1 / -1;
        grid-row: 4;
        margin-top: 8px;
        width: 100%;
        display: flex;
        flex-direction: column;
        gap: 16px;
    }
    
    /* Make the button white with black text */
    .s6-view-left .s5-card-action .s5-btn {
        width: 100%;
        background: white;
        color: black;
        border-radius: 12px;
        font-weight: 600;
        font-size: 16px;
        padding: 16px;
        text-align: center;
        border: none;
    }
    .s6-view-left .s5-card-action .s5-stores {
        display: flex;
        gap: 8px;
        flex-wrap: wrap;
    }
}


/* Screen 7 Mobile Responsive */
@media (max-width: 1024px) {
    .screen-7 {
        padding: 24px 16px;
        width: 100vw;
        max-width: 100%;
        box-sizing: border-box;
    }
    .s7-container {
        display: flex;
        flex-direction: column;
        gap: 42px;
        width: 100%;
    }
    .s7-telegram {
        display: flex;
        flex-direction: column;
        gap: 16px;
        width: 100%;
        margin-bottom: 0 !important; /* Cancel desktop 80px margin */
        margin-top: 0 !important;
    }
    .s7-main-title {
        font-size: 41px;
        line-height: 41px;
        letter-spacing: -1.64px;
        margin: 0 !important; /* Cancel desktop 24px margin */
        text-align: left;
    }
    .s7-main-subtitle {
        font-size: 16px;
        line-height: 21.8px;
        letter-spacing: -0.32px;
        margin: 0 !important;
        text-align: left;
    }
    .s7-telegram .s7-btn {
        width: max-content;
        height: 56px;
        padding: 16px 32px;
        border-radius: 16px;
        font-size: 16px;
        font-weight: 600;
        letter-spacing: -0.32px;
        display: flex;
        align-items: center;
        gap: 12px;
        background: white;
        color: #121212;
        border: none;
        margin-top: 0 !important; /* Cancel desktop 56px margin */
        margin-bottom: 0 !important;
    }
    .s7-cities-block {
        display: flex;
        flex-direction: column;
        gap: 30px;
        width: 100%;
        margin-top: 0 !important; /* Cancel desktop 80px margin */
        margin-bottom: 0 !important;
    }
    .s7-right-title {
        font-size: 32px;
        line-height: 32px;
        letter-spacing: -1.28px;
        margin: 0 0 12px 0 !important; /* Gap 12px between title and subtitle */
    }
    .s7-right-subtitle {
        font-size: 16px;
        line-height: 21.8px;
        letter-spacing: -0.32px;
        margin: 0 !important;
    }
    .s7-cities-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 20px;
        width: 100%;
    }
    .s7-city-card {
        height: 138px;
        flex-direction: column;
        justify-content: space-between;
        padding: 16px;
        border-radius: 16px;
    }
    .s7-city-info {
        display: flex;
        flex-direction: column;
        gap: 12px;
        align-items: flex-start;
    }
    .s7-city-info h4 {
        font-size: 21px;
        line-height: 23.1px;
        letter-spacing: -0.63px;
        margin: 0 !important;
    }
    .s7-city-info span {
        font-size: 11px;
        line-height: 12.1px;
        letter-spacing: 0;
        opacity: 1;
        color: white;
    }
    .s7-city-arrow {
        width: 36px;
        height: 36px;
        display: flex;
        align-items: center;
        justify-content: center;
        align-self: flex-start;
    }
}

/* Fix overlapping layout containers on mobile */
@media (max-width: 1024px) {
    .layout-container {
        height: auto !important;
        min-height: 100vh;
    }
}

/* Screen 8 Mobile Responsive */
@media (max-width: 1024px) {
    .screen-8 {
        padding: 24px 16px;
        width: 100vw;
        max-width: 100%;
        box-sizing: border-box;
    }
    .s8-container {
        display: flex;
        flex-direction: column;
        gap: 24px;
        width: 100%;
        height: auto;
        padding: 0 !important; /* Remove desktop 50px padding */
    }
    .s8-top {
        display: flex;
        flex-direction: column-reverse; /* Reorder: Title then Rating */
        gap: 42px;
        width: 100%;
    }
    .s8-title-block {
        display: flex;
        flex-direction: column;
        gap: 16px;
        width: 100%;
    }
    .s8-title {
        font-size: 41px;
        line-height: 41px;
        letter-spacing: -1.64px;
        margin: 0 !important;
        text-align: center;
    }
    .s8-subtitle {
        font-size: 16px;
        line-height: 21.8px;
        letter-spacing: -0.32px;
        margin: 0 !important;
        text-align: center;
        max-width: none;
    }
    .s8-rating-block {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 12px;
        margin: 0;
    }
    .s8-rating-score {
        font-size: 155.5px;
        line-height: 0.8; /* Keep tight bounding box */
        letter-spacing: -10.88px;
        font-weight: 500;
        margin: 0;
    }
    .s8-rating-text {
        font-size: 11px;
        line-height: 12.1px;
        margin: 0;
        text-align: center;
    }
    .s8-rating-block .store-links {
        display: flex;
        gap: 4.6px;
        margin-top: 5px;
    }
    .s8-rating-block .store-icon {
        width: 42px;
        height: 42px;
        display: flex;
        align-items: center;
        justify-content: center;
        background: rgba(255, 255, 255, 0.05); /* Soft background for icons if transparent */
        border-radius: 9.3px;
        padding: 8px;
        box-sizing: border-box;
    }
    .s8-rating-block .store-icon img {
        width: 100%;
        height: 100%;
        object-fit: contain;
    }
    
    .s8-reviews-grid {
        display: flex;
        flex-wrap: nowrap;
        overflow-x: auto;
        gap: 20px;
        width: calc(100% + 32px);
        margin-left: -16px;
        margin-right: -16px;
        padding-left: 16px;
        padding-right: 16px;
        padding-bottom: 24px; /* Space for scroll */
        -webkit-overflow-scrolling: touch;
        scroll-snap-type: x mandatory;
        box-sizing: border-box;
    }
    .s8-reviews-grid::-webkit-scrollbar {
        display: none;
    }
    .s8-review-card {
        min-width: 200px;
        width: 200px;
        flex: 0 0 auto;
        padding: 16px;
        border-radius: 16px;
        scroll-snap-align: start;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        gap: 24px;
        box-sizing: border-box;
    }
    .s8-review-info h4 {
        font-size: 21px;
        line-height: 23.1px;
        letter-spacing: -0.63px;
        margin: 0 0 12px 0;
    }
    .s8-review-info p {
        font-size: 13px;
        line-height: 16px;
        margin: 0;
        color: white;
    }
    .s8-review-bottom {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }
    .s8-small-store {
        width: 24px;
        height: 24px;
        display: flex;
        align-items: center;
        justify-content: center;
        background: rgba(255, 255, 255, 0.05);
        border-radius: 5.3px;
        padding: 4px;
        box-sizing: border-box;
    }
}

/* Screen 9 Mobile Responsive */
@media (max-width: 1024px) {
    .screen-9-faq {
        flex-direction: column;
        padding: 24px 16px !important;
        gap: 24px;
        width: 100vw;
        max-width: 100%;
        box-sizing: border-box;
    }
    .s9-left {
        width: 100%;
        max-width: 100%;
    }
    .s9-right {
        width: 100%;
        max-width: 100%;
    }
    .s9-title {
        font-size: 41px !important;
        line-height: 41px !important;
        letter-spacing: -1.64px !important;
        margin-bottom: 16px !important;
        text-align: left;
    }
    .s9-subtitle {
        font-size: 16px !important;
        line-height: 21.8px !important;
        letter-spacing: -0.32px !important;
        text-align: left;
    }
}

@media (max-width: 1024px) {
    .qr-btn { display: none !important; }
}

@media (max-width: 1024px) {

    /* Mobile QR Sidebar as Bottom Sheet */
    .qr-sidebar {
        top: auto;
        bottom: 16px;
        right: 16px;
        left: 16px;
        width: auto !important;
        height: auto;
        max-height: calc(100vh - 32px);
        border-radius: 32px;
        border-left: none;
        transform: translateY(150%);
        padding: 32px 24px;
        box-shadow: 0 -10px 40px rgba(0, 0, 0, 0.15);
    }
    .qr-sidebar.open {
        transform: translateY(0);
    }
    .qr-sidebar-large img {
        max-width: 100%;
        height: auto;
    }
    .qr-sidebar-title {
        font-size: 24px;
    }
}

/* Fix Download Bar (Menu) on Mobile */
@media (max-width: 1024px) {
    .download-bar {
        width: calc(100vw - 32px);
        bottom: 16px;
    }
}

/* ==========================================================================
   ANIMATED MESH BACKGROUND (DIAGONAL SHADER EFFECT)
   ========================================================================== */
body {
    background-color: transparent !important;
}

.mesh-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: -100;
    background-color: var(--bg-color);
    overflow: hidden;
    pointer-events: none;
}

.mesh-diagonal {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 150vw;
    height: 25vh; /* About 25% of screen height */
    background: linear-gradient(180deg, #c44358 0%, #c44358 35%, transparent 45%, transparent 55%, #2378ff 65%, #2378ff 100%);
    filter: blur(120px);
    transform: translate(-50%, -50%) rotate(-35deg);
    opacity: 0.7;
    animation: diagonalPulse 8s infinite alternate ease-in-out;
    will-change: transform, opacity;
}

@keyframes diagonalPulse {
    0% { transform: translate(-50%, -50%) rotate(-35deg) scale(1); opacity: 0.5; }
    100% { transform: translate(-50%, -50%) rotate(-35deg) scale(1.3); opacity: 0.8; }
}

@media (max-width: 1024px) {
    .mesh-diagonal {
        width: 200vw;
        height: 20vh;
        filter: blur(80px);
        transform: translate(-50%, -50%) rotate(-45deg);
    }
    @keyframes diagonalPulse {
        0% { transform: translate(-50%, -50%) rotate(-45deg) scale(1); opacity: 0.5; }
        100% { transform: translate(-50%, -50%) rotate(-45deg) scale(1.3); opacity: 0.8; }
    }
}

@media (max-width: 1024px) {

  /* Layout adjustments: map on top, text below */
  .screen-map {
      flex-direction: column !important;
      justify-content: flex-start !important;
      padding-top: 60px !important;
      min-height: auto !important;
  }
  .map-container {
      position: relative !important;
      top: auto !important;
      left: auto !important;
      transform: none !important;
      width: 100% !important;
      margin-bottom: 20px !important;
  }
  .map-overlay-rect {
      display: none !important;
  }

}

@media (max-width: 1024px) {
  .mobile-break { display: block; }
}


.stats-top-line { display: flex; flex-direction: row; gap: 20px; justify-content: center; align-items: baseline; }

@media (max-width: 1024px) {
  .stats-top-line { display: flex; flex-direction: column; align-items: center; gap: 0; }
}
