/* ===== RESPONSIVE VISIBILITY ===== */
/* Desktop by default */
.desktop-only {
    display: block;
}

.mobile-only {
    display: none;
}

/* Mobile - 768px and below */
@media screen and (max-width: 768px) {
    .desktop-only {
        display: none !important;
    }

    .mobile-only {
        display: block !important;
    }
}

/* Ensure mobile nav is visible on mobile */
@media screen and (max-width: 768px) {
    .mobile-nav {
        display: block !important;
        position: fixed !important;
        visibility: visible !important;
        opacity: 1 !important;
    }

    .mobile-nav-toggle {
        display: flex !important;
    }

    .navbar.desktop-only {
        display: none !important;
    }
}

/* ===== RESET & BASE ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-blue: #a0cbff;
    --primary-orange: #ffb67a;
    --text-white: #f3f7fc;
    --text-gray: #989ea5;
    --bg-dark: #111113;
    --bg-card: rgba(255, 255, 255, 0.03);
    --border-subtle: rgba(255, 255, 255, 0.04);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Manrope', -apple-system, BlinkMacSystemFont, sans-serif;
    background: var(--bg-dark);
    color: var(--text-white);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1368px;
    margin: 0 auto;
    padding: 0 80px;
}

/* ===== NAVIGATION ===== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    backdrop-filter: blur(24px);
    background: rgba(17, 17, 19, 0.8);
}

.navbar .container {
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 20px;
    padding-bottom: 20px;
}

.nav-brand {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-blue);
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 32px;
    padding: 12px 16px 12px 40px;
    border: 1px solid var(--border-subtle);
    border-radius: 120px;
    height: 60px;
    align-items: center;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-gray);
    font-size: 14px;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--primary-blue);
}

.btn-get-started {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    width: auto;
    height: 36px;
    padding: 11px 16px;
    background-image: url('../../src/img/desktop/menugt-bg.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border: 2px solid var(--border-subtle);
    border-radius: 60px;
    color: #F3F7FC !important;
    text-decoration: none;
    font-family: 'Manrope', sans-serif;
    font-size: 13px;
    font-weight: 600;
    line-height: 150%;
    letter-spacing: 0%;
    text-align: center;
    white-space: nowrap;
    position: relative;
    z-index: 1;
    transition: all 0.3s;
    box-shadow: 0 4px 20px rgba(160, 203, 255, 0.3);
}

.btn-get-started * {
    position: relative;
    z-index: 2;
}

.btn-get-started img {
    width: 20px;
    height: 20px;
    display: block;
}

.btn-get-started:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 30px rgba(160, 203, 255, 0.4);
}

/* ===== HERO SECTION ===== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 100px;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        url('../../src/img/desktop/hero.bg.top.png'),
        url('../../src/img/desktop/hero.bg.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: -1;
    opacity: 0.8;
}

.hero .container {
    position: relative;
    z-index: 1;
}

.hero-content {
    max-width: 614px;
    margin: 0 auto;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 24px;
    align-items: center;
}

.hero-title {
    font-family: 'Manrope', sans-serif;
    font-size: 31px;
    font-weight: 700;
    line-height: 150%;
    letter-spacing: 0%;
    text-align: center;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.4) -5.32%, #FFFFFF 68.4%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    white-space: nowrap;
}

.hero-subtitle {
    font-size: 16px;
    font-weight: 400;
    font-family: 'Manrope', sans-serif;
    line-height: 150%;
    letter-spacing: 0%;
    text-align: center;
    color: var(--text-gray);
}

.hero-trust {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 14px;
}

.trust-icon {
    width: 20px;
    height: 20px;
    display: block;
}

.trust-text {
    font-size: 16px;
    font-weight: 600;
    font-family: 'Manrope', sans-serif;
    line-height: 150%;
    letter-spacing: 0%;
    color: var(--text-gray);
}

.trust-badge {
    font-size: 16px;
    font-weight: 600;
    font-family: 'Manrope', sans-serif;
    line-height: 150%;
    letter-spacing: 0%;
    background: linear-gradient(90deg, #FFB67A -37.29%, #A0CBFF 0.78%, #C9E1FF 28.46%, #EBF4FF 56.14%, #C9E1FF 80.37%, #A0CBFF 100.26%, #FFB67A 142.66%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 32px;
    background-image: url('../img/desktop/button.bg.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 100px;
    color: var(--text-white);
    text-decoration: none;
    font-family: 'Manrope', sans-serif;
    font-weight: 700;
    font-size: 16px;
    line-height: 150%;
    letter-spacing: 0%;
    text-align: center;
    transition: all 0.3s;
    box-shadow: 0 4px 20px rgba(160, 203, 255, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 30px rgba(160, 203, 255, 0.4);
}

/* ===== PROBLEM & SOLUTION SECTION ===== */
.problem-solution {
    padding: 120px 0;
}

.section-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    max-width: 472px;
    margin: 0 auto 60px;
    text-align: center;
}

.section-header h2 {
    font-family: 'Manrope', sans-serif;
    font-size: 20px;
    font-weight: 700;
    line-height: 150%;
    letter-spacing: 0%;
    text-align: center;
}

.section-subtitle {
    font-family: 'Manrope', sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 150%;
    letter-spacing: 0%;
    text-align: center;
    color: var(--text-gray);
}

.two-column {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 60px;
    max-width: 820px;
    margin: 0 auto;
}

.problems-list {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 46px;
    width: 100%;
    max-width: 380px;
    height: 298px;
    background: rgba(255, 255, 255, 0.03);
    background-image: url('../../src/img/desktop/rg.bg.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 32px 46.5px;
    border-radius: 32px;
}

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

.problem-item span {
    font-family: 'Manrope', sans-serif;
    font-size: 16px;
    font-weight: 600;
    line-height: 150%;
    letter-spacing: 0%;
    white-space: nowrap;
    color: var(--text-gray);
}

.problem-item .icon {
    font-size: 24px;
}

.problem-icon {
    width: 24px;
    height: 24px;
    border-radius: 1.22px;
    display: block;
}

.solutions-card {
    width: 100%;
    max-width: 380px;
    height: auto;
    min-height: 298px;
    background: #18181A;
    background-image:
        url('../../src/img/desktop/rt.front.png'),
        url('../../src/img/desktop/rt.bg.png');
    background-size: cover, cover;
    background-position: center, center;
    background-repeat: no-repeat, no-repeat;
    border-radius: 32px;
    padding: 32px 76px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 46px;
    box-shadow:
        0px 8px 17px 0px rgba(160, 203, 255, 0.07),
        0px 30px 30px 0px rgba(160, 203, 255, 0.06),
        0px 68px 41px 0px rgba(160, 203, 255, 0.04),
        0px 121px 48px 0px rgba(160, 203, 255, 0.01),
        0px 189px 53px 0px rgba(160, 203, 255, 0);
}

.solution-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 16px;
    font-weight: 500;
}

.solution-icon {
    width: 24px;
    height: 24px;
    display: block;
}

/* ===== ONE APP SECTION ===== */
.one-app {
    padding: 120px 0;
}

.one-app .section-header h2 {
    font-family: 'Manrope', sans-serif;
    font-size: 31px;
    font-weight: 700;
    line-height: 150%;
    letter-spacing: 0%;
    text-align: center;
    color: #FFFFFF;
    max-width: 100%;
}

.one-app .gradient-text {
    background: linear-gradient(90deg, #A0CBFF 0%, #FFC799 25%, #E1EEFF 50%, #FFC799 75%, #A0CBFF 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.one-app-images {
    display: flex;
    justify-content: center;
    gap: 32px;
    margin-top: 60px;
    padding: 0 40px;
}

.one-app-images img {
    display: block;
    max-width: 380px;
    height: auto;
    transition: transform 0.3s ease;
    cursor: pointer;
}

.one-app-images img:hover {
    transform: translateY(-8px);
}

/* ===== HOW IT WORKS SECTION ===== */
.how-it-works {
    padding: 120px 0;
}

.how-it-works .section-header {
    max-width: 472px;
    margin: 0 auto 60px;
    gap: 8px;
}

.how-it-works .section-header h2 {
    font-family: 'Manrope', sans-serif;
    font-size: 31px;
    font-weight: 700;
    line-height: 150%;
    letter-spacing: 0%;
    text-align: center;
    color: #FFFFFF;
}

.steps-container {
    display: flex;
    justify-content: center;
    gap: 24px;
    width: 100%;
    max-width: 1062px;
    margin: 0 auto;
}

.step-item {
    width: 100%;
    max-width: 338px;
    height: auto;
    min-height: 132px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.step-icon {
    width: 60px;
    height: 60px;
    border-radius: 32px;
    display: block;
    margin: 0 auto;
}

.step-item h3 {
    font-family: 'Manrope', sans-serif;
    font-size: 16px;
    font-weight: 500;
    line-height: 150%;
    letter-spacing: 0%;
    text-align: center;
    color: #FFFFFF;
    margin: 0;
}

.step-item p {
    font-family: 'Manrope', sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 150%;
    letter-spacing: 0%;
    text-align: center;
    color: var(--text-gray);
    margin: 0;
}

/* ===== DETAILERS MAKING MORE MONEY SECTION ===== */
.detailers-money {
    padding: 120px 0;
}

.detailers-money .section-header {
    max-width: 447px;
    margin: 0 auto 60px;
    gap: 8px;
}

.detailers-money .section-header h2 {
    font-family: 'Manrope', sans-serif;
    font-size: 31px;
    font-weight: 700;
    line-height: 150%;
    letter-spacing: 0%;
    text-align: center;
    color: #FFFFFF;
}

.detailers-money .highlight-text {
    color: #A0CBFF;
    position: relative;
    display: inline-block;
}

.detailers-money .highlight-text::after {
    content: '';
    position: absolute;
    bottom: -30px;
    left: 50%;
    transform: translateX(-50%);
    width: 185px;
    height: 25px;
    background-image: url('../../src/img/desktop/line.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

.testimonials-grid {
    display: flex;
    justify-content: center;
    gap: 24px;
}

.testimonial-card {
    width: 100%;
    max-width: 380px;
    height: auto;
    min-height: 194px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: center;
    position: relative;
}

.testimonial-avatar {
    width: 60px;
    height: 60px;
    border-radius: 32px;
    position: absolute;
    top: 10px;
    left: 24px;
    z-index: 2;
}

.testimonial-content {
    width: 380px;
    height: 142px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    border-radius: 32px;
    border: 1px solid var(--border-subtle);
    padding: 40px 24px;
    background: var(--bg-card);
}

.testimonial-name {
    font-family: 'Manrope', sans-serif;
    font-size: 20px;
    font-weight: 700;
    line-height: 150%;
    letter-spacing: 0%;
    color: #FFFFFF;
    margin: 0;
}

.testimonial-text {
    font-family: 'Manrope', sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 150%;
    letter-spacing: 0%;
    color: var(--text-gray);
    white-space: nowrap;
    margin: 0;
}

/* ===== PRICING SECTION ===== */
.pricing {
    padding: 120px 0;
}

.pricing .section-header {
    max-width: 472px;
    margin: 0 auto 60px;
    gap: 8px;
}

.pricing .section-header h2 {
    font-family: 'Manrope', sans-serif;
    font-size: 31px;
    font-weight: 700;
    line-height: 150%;
    letter-spacing: 0%;
    text-align: center;
    color: #FFFFFF;
}

/* ===== FEATURES SECTION ===== */
.features {
    padding: 120px 0;
}

.gradient-text {
    background: linear-gradient(90deg, var(--primary-blue), var(--primary-orange) 25%, #e1eeff 50%, var(--primary-orange) 75%, var(--primary-blue));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-top: 60px;
}

.feature-card {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: 32px;
    padding: 32px;
    text-align: center;
    transition: transform 0.3s;
}

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

.feature-mockup {
    width: 100%;
    height: 250px;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 20px;
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 60px;
}

.feature-card h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 12px;
}

.feature-card p {
    font-size: 16px;
    color: var(--text-gray);
}

/* ===== UTILITIES ===== */
.btn-secondary {
    display: inline-block;
    padding: 14px 32px;
    background: transparent;
    border: 2px solid var(--border-subtle);
    border-radius: 100px;
    color: var(--text-gray);
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s;
}

.btn-secondary:hover {
    border-color: var(--primary-blue);
    color: var(--primary-blue);
}

/* ===== PRICING CARDS ===== */
.pricing-cards {
    width: 1204px;
    height: 549px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 32px;
}

.pricing-card {
    width: 100%;
    max-width: 380px;
    height: auto;
    min-height: 521px;
    background-image: url('../img/desktop/rg.bg.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 24px;
    display: flex;
    flex-direction: column;
    gap: 32px;
    opacity: 1;
    padding: 32px;
}

.pricing-title {
    font-family: 'Manrope', sans-serif;
    font-size: 20px;
    font-weight: 700;
    line-height: 150%;
    letter-spacing: 0%;
    color: #FFFFFF;
    width: 33px;
    height: 30px;
    opacity: 1;
}

.pricing-divider {
    width: 332px;
    height: 0px;
    border: 1px solid #FFFFFF;
    opacity: 0.04;
}

.pricing-content {
    width: 100%;
    max-width: 332px;
    height: auto;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
    opacity: 1;
    padding: 0 20px;
    box-sizing: border-box;
}

.pricing-amount {
    display: flex;
    align-items: baseline;
    gap: 8px;
    width: 100%;
}

.pricing-price {
    font-family: 'Manrope', sans-serif;
    font-size: 39px;
    font-weight: 700;
    line-height: 150%;
    letter-spacing: 0%;
    color: #FFFFFF;
    width: 72px;
    height: 59px;
    opacity: 1;
}

.pricing-period {
    font-family: 'Manrope', sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 150%;
    letter-spacing: 0%;
    color: #989EA5;
    width: 58px;
    height: 24px;
    opacity: 1;
}

.pricing-features {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.pricing-feature {
    display: flex;
    align-items: center;
    gap: 12px;
}

.feature-icon {
    position: relative;
    width: 24px;
    height: 24px;
    flex-shrink: 0;
}

.feature-icon .icon-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 24px;
    height: 24px;
}

.feature-icon .icon-check {
    position: absolute;
    top: 8.37px;
    left: 8.44px;
    width: 7.56px;
    height: 7.26px;
    border-radius: 0.52px;
    opacity: 1;
}

.pricing-feature span {
    font-family: 'Manrope', sans-serif;
    font-size: 16px;
    font-weight: 600;
    line-height: 150%;
    letter-spacing: 0%;
    color: #F3F7FC;
    width: 129px;
    height: 24px;
    opacity: 1;
}

.pricing-feature .feature-long {
    width: 234px;
}

.pricing-feature .feature-medium {
    width: 154px;
}

.pricing-feature .feature-xlarge {
    width: 272px;
}

.pricing-feature .feature-more {
    width: 187px;
}

.pricing-feature .feature-guarantee {
    width: 230px;
}

.pricing-cta {
    width: 100%;
    max-width: 332px;
    height: 64px;
    padding: 11px 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background-image: url('../img/desktop/button.bg.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 16px;
    border: 2px solid transparent;
    text-decoration: none;
    opacity: 1;
    box-sizing: border-box;
}

.pricing-cta span {
    font-family: 'Manrope', sans-serif;
    font-size: 16px;
    font-weight: 600;
    line-height: 150%;
    letter-spacing: 0%;
    color: #FFFFFF;
}

/* ===== FINAL CTA SECTION ===== */
.final-cta {
    padding: 120px 0;
}

/* ===== GET STARTED SECTION ===== */
.get-started-section {
    padding: 0;
    margin: 0;
    height: 0;
}

.final-cta-box {
    position: relative;
    width: 100%;
    height: 354px;
    opacity: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 24px;
    overflow: hidden;
}

.final-cta-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        url('../../src/img/desktop/hero.bg.top.png'),
        url('../../src/img/desktop/hero.bg.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: -1;
    opacity: 0.8;
}

.final-cta-title {
    font-family: 'Manrope', sans-serif;
    font-size: 31px;
    font-weight: 700;
    line-height: 150%;
    letter-spacing: 0%;
    text-align: center;
    color: #FFFFFF;
    width: 100%;
    max-width: 472px;
    height: auto;
    opacity: 1;
    position: relative;
    z-index: 1;
}

.detaild-highlight {
    color: #A0CBFF;
}

.final-cta-subtitle {
    font-family: 'Manrope', sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 150%;
    letter-spacing: 0%;
    text-align: center;
    color: #989EA5;
    width: 100%;
    max-width: 472px;
    height: auto;
    opacity: 1;
    position: relative;
    z-index: 1;
}

.final-cta-button {
    width: auto;
    min-width: 204px;
    height: 44.5px;
    border-radius: 12px;
    border: none;
    background-image: url('../img/desktop/button.bg.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    text-decoration: none;
    position: relative;
    z-index: 1;
    transition: all 0.3s;
    box-shadow: 0 4px 20px rgba(160, 203, 255, 0.3);
}

.final-cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 30px rgba(160, 203, 255, 0.4);
}

.final-cta-button span {
    font-family: 'Manrope', sans-serif;
    font-size: 16px;
    font-weight: 700;
    line-height: 150%;
    letter-spacing: 0%;
    text-align: center;
    color: #FFFFFF;
    width: 128px;
    height: 24px;
    opacity: 1;
}

.final-cta-arrow {
    width: 20px;
    height: 20px;
    opacity: 1;
}

/* ===== BOTTOM INFO SECTION ===== */
.bottom-info {
    width: 100%;
    height: 361px;
    opacity: 1;
    background-image: url('../img/desktop/footer.bg.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 0 40px;
}

.bottom-info-box {
    width: 100%;
    max-width: 1368px;
    height: 100%;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.footer-eclipse {
    position: relative;
    z-index: 1;
}

.footer-dot {
    position: absolute;
    z-index: 2;
}

.footer-content {
    position: absolute;
    width: 100%;
    max-width: 1034px;
    height: auto;
    top: 93px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 148px;
    opacity: 1;
    z-index: 3;
    justify-content: center;
    flex-wrap: wrap;
}

.footer-left {
    width: auto;
    min-width: 150px;
    height: auto;
    display: flex;
    flex-direction: column;
    gap: 24px;
    opacity: 1;
}

.footer-left a {
    font-family: 'Manrope', sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 150%;
    letter-spacing: 0%;
    color: #989EA5;
    width: auto;
    height: auto;
    opacity: 1;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-left a:hover {
    color: #FFFFFF;
}

.footer-center {
    width: auto;
    min-width: 150px;
    height: auto;
    display: flex;
    flex-direction: column;
    gap: 24px;
    opacity: 1;
}

.footer-center a {
    font-family: 'Manrope', sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 150%;
    letter-spacing: 0%;
    color: #989EA5;
    width: auto;
    height: auto;
    opacity: 1;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-center a:hover {
    color: #FFFFFF;
}

.footer-right {
    width: auto;
    min-width: 150px;
    height: auto;
    display: flex;
    flex-direction: column;
    gap: 24px;
    opacity: 1;
}

.footer-right a {
    font-family: 'Manrope', sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 150%;
    letter-spacing: 0%;
    color: #989EA5;
    width: auto;
    height: auto;
    opacity: 1;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-right a:hover {
    color: #FFFFFF;
}

.footer-extra {
    width: auto;
    min-width: 250px;
    height: auto;
    display: flex;
    flex-direction: column;
    gap: 40px;
    opacity: 1;
}

.footer-extra-inner {
    width: auto;
    height: auto;
    display: flex;
    gap: 16px;
    opacity: 1;
}

.social-box {
    width: 117px;
    height: 36px;
    background-image: url('../img/desktop/social.bg.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    cursor: pointer;
    transition: transform 0.3s;
}

.social-box:hover {
    transform: translateY(-2px);
}

.google-play-icon {
    max-width: 100%;
    max-height: 100%;
}

.footer-extra-bottom {
    width: 296px;
    height: 44px;
    display: flex;
    gap: 16px;
    opacity: 1;
}

.social-item {
    width: 140px;
    height: 44px;
    display: flex;
    align-items: center;
    gap: 4px;
    opacity: 1;
}

.social-icon {
    width: 24px;
    height: 24px;
}

.social-item span {
    font-family: 'Manrope', sans-serif;
    font-size: 16px;
    font-weight: 700;
    line-height: 150%;
    letter-spacing: 0%;
    color: #989EA5;
    width: 92px;
    height: 24px;
    opacity: 1;
}

/* ===== PRIVACY PAGE ===== */
.privacy-content {
    background: #161617;
    min-height: 100vh;
    padding: 120px 0;
}

.privacy-content h1 {
    font-family: 'Manrope', sans-serif;
    font-size: 39px;
    font-weight: 700;
    line-height: 150%;
    text-align: center;
    color: #FFFFFF;
    margin-bottom: 60px;
}

.privacy-box {
    width: 100%;
    max-width: 1199px;
    height: auto;
    margin: 0 auto 80px auto;
    border-radius: 24px;
    padding: 32px 40px 40px 40px;
    opacity: 1;
    background: rgba(255, 255, 255, 0.05);
}

.privacy-section {
    width: 100%;
    max-width: 1119px;
    height: auto;
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding: 24px 0;
    opacity: 1;
}

.privacy-section h2 {
    font-family: 'Manrope', sans-serif;
    font-size: 31px;
    font-weight: 700;
    line-height: 150%;
    letter-spacing: 0%;
    color: #FFFFFF;
    width: 100%;
    max-width: 1119px;
    height: auto;
    opacity: 1;
}

.privacy-text {
    width: 100%;
    max-width: 1119px;
    height: auto;
    font-family: 'Manrope', sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 150%;
    letter-spacing: 0%;
    color: #989EA5;
    opacity: 1;
}

.privacy-text p {
    margin: 0 0 16px 0;
}

.privacy-text ul {
    list-style-type: disc;
    padding-left: 20px;
    margin: 0;
}

.privacy-text li {
    margin-bottom: 8px;
}

.privacy-text a {
    color: #989EA5;
    text-decoration: underline;
    transition: color 0.3s;
}

.privacy-text a:hover {
    color: #A0CBFF;
}

.privacy-section-large {
    height: 327px;
}

.privacy-section-small {
    height: 231px;
}

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

/* Tablet - 1024px and below */
@media screen and (max-width: 1024px) {
    .container {
        max-width: 90%;
        padding: 0 24px;
    }

    /* Navbar */
    .nav-links {
        gap: 20px;
        padding: 12px 12px 12px 24px;
    }

    .nav-links a {
        font-size: 13px;
    }

    .btn-get-started {
        padding: 9px 14px;
        font-size: 13px;
    }

    /* Hero */
    .hero-title {
        font-size: 56px;
        white-space: normal;
    }

    .hero-subtitle {
        font-size: 18px;
    }

    /* Two Column Layouts */
    .two-column {
        gap: 32px;
    }

    /* One App Images */
    .one-app-images {
        gap: 24px;
    }

    .one-app-images img {
        max-width: 280px;
    }

    /* Steps Container */
    .steps-container {
        gap: 32px;
    }

    /* Testimonials */
    .testimonials-grid {
        gap: 24px;
    }

    /* Pricing */
    .pricing-card {
        max-width: 360px;
    }

    /* Privacy */
    .privacy-box {
        width: 90%;
        padding: 24px 32px;
    }

    .privacy-section,
    .privacy-section h2,
    .privacy-text {
        width: 100%;
    }
}

/* Mobile - 768px and below */
@media screen and (max-width: 768px) {
    .container {
        max-width: 100%;
        padding: 0 20px;
    }

    /* Navbar */
    .navbar {
        padding: 16px 0;
    }

    .nav-links {
        flex-wrap: wrap;
        gap: 12px;
        padding: 10px;
        height: auto;
        justify-content: center;
    }

    .nav-links a {
        font-size: 12px;
    }

    .btn-get-started {
        width: 100%;
        justify-content: center;
        padding: 10px 16px;
    }

    /* Hero - Mobile Version */
    .hero {
        padding: 80px 0 80px;
        min-height: 100vh;
    }

    .hero::before {
        background-image: url('../../src/img/mobile/mobile.hero.png') !important;
        background-size: cover !important;
        background-position: center !important;
    }

    .hero-content {
        text-align: center;
    }

    .hero-title {
        font-size: 36px;
        line-height: 1.2;
        margin-top: 525px;
        white-space: normal;
    }

    .hero-subtitle {
        font-size: 16px;
    }

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

    /* Section Headers */
    .section-header h2 {
        font-size: 32px;
    }

    .section-subtitle {
        font-size: 14px;
    }

    /* Two Column to Single Column */
    .two-column {
        flex-direction: column;
        gap: 32px;
    }

    .problems-list,
    .solutions-card {
        width: 100%;
    }

    .problems-list {
        background-image: url('../../src/img/mobile/rg.bg.png') !important;
        padding: 24px 20px;
    }

    .solutions-card {
        background-image:
            url('../../src/img/mobile/rt.front.png'),
            url('../../src/img/mobile/rt.bg.png') !important;
        padding: 24px 20px;
    }

    /* One App Section - Horizontal Scroll */
    .one-app {
        padding: 80px 0;
    }

    .one-app-images {
        flex-direction: row !important;
        justify-content: flex-start !important;
        align-items: flex-start;
        gap: 16px;
        overflow-x: auto;
        overflow-y: hidden;
        padding: 0 20px 20px 20px;
        margin: 0;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        width: 100%;
        max-width: 100%;
    }

    .one-app-images::-webkit-scrollbar {
        display: none;
    }

    .one-app-images img {
        flex: 0 0 280px;
        width: 280px;
        height: auto;
        scroll-snap-align: start;
    }

    .one-app-images img:first-child {
        margin-left: 0;
    }

    .one-app-images img:last-child {
        margin-right: 0;
    }

    /* Steps Container */
    .steps-container {
        flex-direction: column;
        gap: 40px;
    }

    .step-item {
        max-width: 100%;
    }

    /* Testimonials */
    .testimonials-grid {
        flex-direction: column;
        gap: 24px;
    }

    .testimonial-card {
        max-width: 100%;
    }

    /* Pricing */
    .pricing-card {
        max-width: 100%;
        width: 100%;
        padding: 32px 20px;
    }

    .pricing-content {
        width: 100% !important;
        max-width: 100% !important;
        padding: 0 !important;
    }

    .pricing-features {
        gap: 16px;
        width: 100%;
    }

    .pricing-cta {
        width: 100% !important;
        max-width: 100% !important;
        padding: 11px 16px !important;
        box-sizing: border-box !important;
    }

    .pricing-cta span {
        font-size: 14px !important;
        white-space: nowrap !important;
    }

    /* Final CTA */
    .final-cta-title {
        font-size: 32px;
    }

    .final-cta-subtitle {
        font-size: 16px;
    }

    /* Footer */
    .footer-content {
        flex-direction: column;
        gap: 32px;
        align-items: center;
        text-align: center;
    }

    .footer-left,
    .footer-center,
    .footer-right,
    .footer-extra {
        position: static;
        width: 100%;
    }

    /* Privacy Page */
    .privacy-content {
        padding: 100px 0 60px;
    }

    .privacy-content h1 {
        font-size: 36px;
        margin-bottom: 40px;
    }

    .privacy-box {
        width: 100%;
        padding: 24px 20px;
    }

    .privacy-section {
        height: auto;
        padding: 20px 0;
    }

    .privacy-section-large,
    .privacy-section-small {
        height: auto;
    }

    .privacy-section h2 {
        font-size: 24px;
        height: auto;
    }

    .privacy-text {
        font-size: 15px;
        height: auto;
    }
}

/* Small Mobile - 480px and below */
@media screen and (max-width: 480px) {
    /* Hero */
    .hero-title {
        font-size: 32px;
    }

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

    .btn-primary {
        width: 100%;
        justify-content: center;
    }

    /* Section Headers */
    .section-header h2 {
        font-size: 28px;
    }

    /* Navbar - Stack vertically on very small screens */
    .nav-links {
        flex-direction: column;
        gap: 8px;
        padding: 12px;
    }

    .nav-links li {
        width: 100%;
        text-align: center;
    }

    .btn-get-started {
        width: 100%;
    }

    /* Problem/Solution Items */
    .problem-item,
    .solution-item {
        font-size: 14px;
    }

    /* Pricing */
    .pricing-title {
        font-size: 28px;
    }

    .pricing-price {
        font-size: 48px;
    }

    .pricing-feature span {
        font-size: 14px;
    }

    /* Final CTA */
    .final-cta-title {
        font-size: 24px;
    }

    .final-cta-subtitle {
        font-size: 14px;
    }

    /* Privacy */
    .privacy-content h1 {
        font-size: 28px;
    }

    .privacy-section h2 {
        font-size: 20px;
    }

    .privacy-text {
        font-size: 14px;
    }
}
/* ===== MOBILE RESET & BASE ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-blue: #a0cbff;
    --primary-orange: #ffb67a;
    --text-white: #f3f7fc;
    --text-gray: #989ea5;
    --bg-dark: #111113;
    --bg-card: rgba(255, 255, 255, 0.03);
    --border-subtle: rgba(255, 255, 255, 0.04);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Manrope', -apple-system, BlinkMacSystemFont, sans-serif;
    background: var(--bg-dark);
    color: var(--text-white);
    line-height: 1.6;
    overflow-x: hidden;
}

.mobile-container {
    max-width: 100%;
    padding: 0 20px;
    margin: 0 auto;
}

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

/* ===== MOBILE NAVIGATION ===== */
.mobile-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 10000;
    background: transparent;
    pointer-events: none;
}

.mobile-nav-toggle,
.mobile-menu {
    pointer-events: auto;
}

.nav-container,
.mobile-nav-toggle {
    padding: 20px 20px 20px 30px;
    display: flex;
    justify-content: flex-start;
}

.menu-toggle {
    background: rgba(0, 0, 0, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.1);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    cursor: pointer;
    z-index: 10001;
    padding: 0;
    backdrop-filter: blur(8px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
    transition: all 0.3s ease;
    position: relative;
}

.menu-toggle span {
    width: 24px;
    height: 2px;
    background: var(--text-white);
    border-radius: 2px;
    transition: all 0.3s;
    display: block;
}

.menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

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

.menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 70%;
    height: 100vh;
    background: var(--bg-dark);
    border-left: 1px solid var(--border-subtle);
    display: flex;
    flex-direction: column;
    padding: 80px 24px 24px;
    gap: 24px;
    transition: right 0.3s;
    z-index: 999;
}

.mobile-menu.active {
    right: 0;
}

.mobile-menu a {
    font-size: 18px;
    font-weight: 500;
    color: var(--text-gray);
    padding: 12px 0;
    transition: color 0.3s;
}

.mobile-menu a.active,
.mobile-menu a:hover {
    color: var(--primary-blue);
}

.menu-cta {
    background-image: url('../../src/img/mobile/button.bg.png');
    background-size: cover;
    background-position: center;
    padding: 12px 24px !important;
    border-radius: 100px;
    color: var(--text-white) !important;
    text-align: center;
    margin-top: 12px;
}

/* ===== MOBILE HERO SECTION ===== */
.mobile-hero {
    padding: 140px 0 80px;
    text-align: center;
    background-image: url('../../src/img/mobile/mobile.hero.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.mobile-hero-title {
    font-size: 36px;
    font-weight: 800;
    line-height: 1.2;
    color: var(--text-white);
    margin-top: 525px;
    margin-bottom: 16px;
}

.mobile-hero-subtitle {
    font-size: 16px;
    font-weight: 400;
    color: var(--text-gray);
    margin-bottom: 24px;
}

.mobile-trust {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-bottom: 32px;
    flex-wrap: wrap;
}

.trust-text {
    font-size: 14px;
    color: var(--text-gray);
}

.trust-icon {
    width: 16px;
    height: 16px;
}

.trust-badge {
    font-size: 14px;
    font-weight: 600;
    color: var(--primary-blue);
}

.mobile-btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 32px;
    background-image: url('../../src/img/mobile/button.bg.png');
    background-size: cover;
    background-position: center;
    border-radius: 100px;
    color: var(--text-white);
    font-size: 16px;
    font-weight: 600;
    transition: all 0.3s;
    box-shadow: 0 4px 20px rgba(160, 203, 255, 0.3);
}

.mobile-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 30px rgba(160, 203, 255, 0.4);
}

.mobile-btn-primary img {
    width: 20px;
    height: 20px;
}

/* ===== MOBILE SECTIONS ===== */
.mobile-problem-solution,
.mobile-one-app,
.mobile-how-it-works,
.mobile-testimonials,
.mobile-pricing,
.mobile-final-cta {
    padding: 60px 0;
}

.mobile-section-title {
    font-size: 28px;
    font-weight: 700;
    line-height: 1.3;
    color: var(--text-white);
    margin-bottom: 12px;
    text-align: center;
}

.mobile-section-subtitle {
    font-size: 14px;
    font-weight: 400;
    color: var(--text-gray);
    margin-bottom: 32px;
    text-align: center;
}

.gradient-text {
    background: linear-gradient(90deg, var(--primary-blue) 0%, var(--primary-orange) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.highlight-text {
    color: var(--primary-blue);
}

/* ===== MOBILE PROBLEM & SOLUTION ===== */
.mobile-problems,
.mobile-solutions {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 32px;
}

.mobile-problems {
    background: rgba(255, 255, 255, 0.03);
    background-image: url('../../src/img/mobile/rg.bg.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 24px;
    padding: 24px 20px;
}

.mobile-solutions {
    background: #18181A;
    background-image:
        url('../../src/img/mobile/rt.front.png'),
        url('../../src/img/mobile/rt.bg.png');
    background-size: cover, cover;
    background-position: center, center;
    background-repeat: no-repeat, no-repeat;
    border-radius: 24px;
    padding: 24px 20px;
    box-shadow:
        0px 8px 17px 0px rgba(160, 203, 255, 0.07),
        0px 30px 30px 0px rgba(160, 203, 255, 0.06),
        0px 68px 41px 0px rgba(160, 203, 255, 0.04),
        0px 121px 48px 0px rgba(160, 203, 255, 0.01),
        0px 189px 53px 0px rgba(160, 203, 255, 0);
}

.mobile-problem-item,
.mobile-solution-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 0;
    background: transparent;
    border-radius: 0;
}

.mobile-problem-item img,
.mobile-solution-item img {
    width: 24px;
    height: 24px;
}

.mobile-problem-item span,
.mobile-solution-item span {
    font-size: 15px;
    font-weight: 500;
    color: var(--text-white);
}

/* ===== MOBILE ONE APP ===== */
.mobile-app-images {
    display: flex;
    flex-direction: row;
    gap: 16px;
    margin-top: 32px;
    overflow-x: auto;
    overflow-y: hidden;
    padding: 0 20px 20px 20px;
    margin-left: -20px;
    margin-right: -20px;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
}

.mobile-app-images::-webkit-scrollbar {
    display: none;
}

.mobile-app-images img {
    flex: 0 0 280px;
    width: 280px;
    height: auto;
    border-radius: 16px;
    scroll-snap-align: center;
}

/* ===== MOBILE HOW IT WORKS ===== */
.mobile-steps {
    display: flex;
    flex-direction: column;
    gap: 32px;
    margin-top: 32px;
}

.mobile-step-item {
    text-align: center;
}

.mobile-step-item img {
    width: 48px;
    height: 48px;
    margin-bottom: 16px;
}

.mobile-step-item h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 8px;
}

.mobile-step-item p {
    font-size: 14px;
    color: var(--text-gray);
}

/* ===== MOBILE TESTIMONIALS ===== */
.mobile-testimonials-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-top: 32px;
}

.mobile-testimonial-card {
    background: var(--bg-card);
    border-radius: 16px;
    padding: 24px;
    text-align: center;
}

.mobile-testimonial-card img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    margin-bottom: 16px;
}

.mobile-testimonial-card h4 {
    font-size: 16px;
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 8px;
}

.mobile-testimonial-card p {
    font-size: 14px;
    color: var(--text-gray);
}

/* ===== MOBILE PRICING ===== */
.mobile-pricing-card {
    background: var(--bg-card);
    border-radius: 24px;
    padding: 32px 24px;
    margin-top: 32px;
}

.mobile-pricing-title {
    font-size: 32px;
    font-weight: 700;
    color: var(--text-white);
    text-align: center;
    margin-bottom: 16px;
}

.mobile-pricing-divider {
    height: 1px;
    background: var(--border-subtle);
    margin-bottom: 24px;
}

.mobile-pricing-amount {
    text-align: center;
    margin-bottom: 32px;
}

.mobile-pricing-price {
    font-size: 56px;
    font-weight: 800;
    color: var(--primary-blue);
}

.mobile-pricing-period {
    font-size: 18px;
    font-weight: 400;
    color: var(--text-gray);
}

.mobile-pricing-features {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 32px;
}

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

.mobile-feature-icon {
    position: relative;
    width: 24px;
    height: 24px;
    flex-shrink: 0;
}

.mobile-feature-icon .icon-bg {
    position: absolute;
    width: 24px;
    height: 24px;
    top: 0;
    left: 0;
}

.mobile-feature-icon .icon-check {
    position: absolute;
    width: 12px;
    height: 12px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.mobile-feature-item span {
    font-size: 15px;
    color: var(--text-white);
}

.mobile-pricing-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    padding: 14px 32px;
    background-image: url('../../src/img/mobile/button.bg.png');
    background-size: cover;
    background-position: center;
    border-radius: 100px;
    color: var(--text-white);
    font-size: 16px;
    font-weight: 600;
    transition: all 0.3s;
    box-shadow: 0 4px 20px rgba(160, 203, 255, 0.3);
}

.mobile-pricing-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 30px rgba(160, 203, 255, 0.4);
}

.mobile-pricing-cta img {
    width: 20px;
    height: 20px;
}

/* ===== MOBILE FINAL CTA ===== */
.mobile-final-cta {
    text-align: center;
    background: var(--bg-card);
    padding: 80px 20px;
}

.mobile-cta-title {
    font-size: 28px;
    font-weight: 700;
    line-height: 1.3;
    color: var(--text-white);
    margin-bottom: 16px;
}

.detaild-highlight {
    color: var(--primary-blue);
}

.mobile-cta-subtitle {
    font-size: 16px;
    color: var(--text-gray);
    margin-bottom: 32px;
}

/* ===== MOBILE FOOTER ===== */
.mobile-footer {
    background: var(--bg-dark);
    padding: 60px 0 40px;
    border-top: 1px solid var(--border-subtle);
}

.mobile-footer-links {
    display: flex;
    justify-content: center;
    gap: 24px;
    margin-bottom: 24px;
}

.mobile-footer-links a {
    font-size: 14px;
    color: var(--text-gray);
    transition: color 0.3s;
}

.mobile-footer-links a:hover {
    color: var(--primary-blue);
}

.mobile-footer-social {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-bottom: 24px;
}

.mobile-store-btn img {
    height: 40px;
    width: auto;
}

.mobile-footer-social-links {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.mobile-social-item {
    display: flex;
    align-items: center;
    gap: 8px;
}

.mobile-social-item img {
    width: 20px;
    height: 20px;
}

.mobile-social-item span {
    font-size: 14px;
    color: var(--text-gray);
}

/* ===== PRIVACY PAGE MOBILE ===== */
@media screen and (max-width: 768px) {
    .privacy-content {
        padding: 100px 0 60px !important;
    }

    .privacy-content h1 {
        font-size: 32px !important;
        margin-bottom: 32px !important;
        padding: 0 20px;
    }

    .privacy-box {
        width: 100% !important;
        padding: 20px !important;
        margin: 0 20px 40px 20px !important;
        max-width: calc(100% - 40px);
    }

    .privacy-section {
        width: 100% !important;
        height: auto !important;
        padding: 20px 0 !important;
    }

    .privacy-section-large,
    .privacy-section-small {
        height: auto !important;
    }

    .privacy-section h2 {
        width: 100% !important;
        height: auto !important;
        font-size: 22px !important;
        line-height: 1.4 !important;
    }

    .privacy-text {
        width: 100% !important;
        height: auto !important;
        font-size: 15px !important;
    }

    .privacy-text ul {
        padding-left: 20px;
    }

    .privacy-text li {
        margin-bottom: 12px;
    }

    /* Footer Mobile Override */
    .bottom-info {
        padding: 60px 20px 40px 20px !important;
        height: auto !important;
        background-image: none !important;
        background: #161617 !important;
    }

    .bottom-info-box {
        padding: 0 !important;
        height: auto !important;
        width: 100% !important;
        max-width: 100% !important;
    }

    .footer-content {
        position: static !important;
        width: 100% !important;
        max-width: 100% !important;
        flex-direction: column !important;
        gap: 32px !important;
        align-items: center !important;
        text-align: center !important;
        transform: none !important;
        left: auto !important;
        top: auto !important;
    }

    .footer-left,
    .footer-center,
    .footer-right,
    .footer-extra {
        position: static !important;
        width: 100% !important;
        max-width: 100% !important;
        height: auto !important;
        left: auto !important;
        right: auto !important;
        top: auto !important;
        transform: none !important;
    }

    .footer-left,
    .footer-center,
    .footer-right {
        display: flex !important;
        flex-direction: column !important;
        gap: 16px !important;
        align-items: center !important;
    }

    .footer-left a,
    .footer-center a,
    .footer-right a {
        font-size: 14px !important;
        width: auto !important;
        height: auto !important;
    }

    .footer-extra {
        margin-top: 20px !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
    }

    .footer-extra-inner {
        justify-content: center !important;
        gap: 16px !important;
        margin-bottom: 20px !important;
        display: flex !important;
        width: 100% !important;
    }

    .footer-extra-bottom {
        flex-direction: column !important;
        gap: 12px !important;
        align-items: center !important;
        display: flex !important;
        width: 100% !important;
    }

    .social-item {
        display: flex !important;
        align-items: center !important;
        gap: 8px !important;
    }

    .footer-eclipse,
    .footer-dot {
        display: none !important;
    }
}

/* ===== MOBILE PRIVACY PAGE ===== */
.mobile-privacy-content {
    padding: 100px 0 60px;
    background: var(--bg-dark);
    min-height: 100vh;
}

.mobile-privacy-title {
    font-size: 36px;
    font-weight: 700;
    color: var(--text-white);
    text-align: center;
    margin-bottom: 32px;
}

.mobile-privacy-box {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 24px;
    padding: 24px 20px;
    margin-bottom: 40px;
}

.mobile-privacy-section {
    padding: 24px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.mobile-privacy-section:last-child {
    border-bottom: none;
}

.mobile-privacy-section h2 {
    font-size: 22px;
    font-weight: 700;
    line-height: 1.4;
    color: var(--text-white);
    margin-bottom: 16px;
}

.mobile-privacy-text {
    font-size: 15px;
    font-weight: 400;
    line-height: 1.6;
    color: var(--text-gray);
}

.mobile-privacy-text p {
    margin: 0 0 16px 0;
}

.mobile-privacy-text ul {
    list-style-type: disc;
    padding-left: 20px;
    margin: 0 0 16px 0;
}

.mobile-privacy-text li {
    margin-bottom: 12px;
}

.mobile-privacy-text a {
    color: var(--text-gray);
    text-decoration: underline;
    transition: color 0.3s;
}

.mobile-privacy-text a:hover {
    color: var(--primary-blue);
}

/* ===== MOBILE SPECIFIC OVERRIDES ===== */
@media screen and (max-width: 768px) {
    /* Hero with mobile background */
    .hero::before {
        background-image: url("../../src/img/mobile/mobile.hero.png") !important;
        background-size: cover !important;
        background-position: center !important;
    }

    .hero-title {
        margin-top: 525px !important;
    }

    /* One App - Horizontal Scroll */
    .one-app {
        padding: 80px 0 !important;
    }

    .one-app-images {
        display: flex !important;
        flex-direction: row !important;
        justify-content: flex-start !important;
        gap: 16px !important;
        overflow-x: auto !important;
        overflow-y: hidden !important;
        padding: 0 20px 20px 20px !important;
        margin: 0 !important;
        scroll-snap-type: x mandatory !important;
        -webkit-overflow-scrolling: touch !important;
        width: 100% !important;
        max-width: 100% !important;
    }

    .one-app-images::-webkit-scrollbar {
        display: none !important;
    }

    .one-app-images img {
        flex: 0 0 280px !important;
        width: 280px !important;
        height: auto !important;
        scroll-snap-align: start !important;
    }

    .one-app-images img:first-child {
        margin-left: 0 !important;
    }

    .one-app-images img:last-child {
        margin-right: 0 !important;
    }

    /* Problem/Solution with mobile backgrounds */
    .problems-list {
        background-image: url("../../src/img/mobile/rg.bg.png") !important;
    }

    .solutions-card {
        background-image:
            url("../../src/img/mobile/rt.front.png"),
            url("../../src/img/mobile/rt.bg.png") !important;
    }
}


/* Mobile Overflow Fix */
@media screen and (max-width: 768px) {
    html, body {
        overflow-x: hidden !important;
        width: 100% !important;
        max-width: 100vw !important;
        position: relative !important;
    }

    * {
        max-width: 100vw !important;
        box-sizing: border-box !important;
    }

    .container {
        max-width: 100% !important;
        width: 100% !important;
        padding-left: 20px !important;
        padding-right: 20px !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        overflow-x: hidden !important;
    }

    section {
        overflow-x: hidden !important;
        max-width: 100vw !important;
        width: 100% !important;
        padding-left: 0 !important;
        padding-right: 0 !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
    }

    /* Only One App images should scroll horizontally */
    .one-app {
        overflow-x: hidden !important;
    }

    .one-app-images {
        overflow-x: auto !important;
        overflow-y: hidden !important;
        max-width: 100% !important;
        width: 100% !important;
    }

    /* Fix all fixed-width elements */
    .two-column,
    .steps-container,
    .testimonials-grid,
    .pricing-cards,
    .final-cta-box,
    .footer-content {
        width: 100% !important;
        max-width: 100% !important;
        padding-left: 20px !important;
        padding-right: 20px !important;
        box-sizing: border-box !important;
    }

    /* Ensure cards fit within mobile viewport */
    .pricing-card,
    .testimonial-card,
    .step-item,
    .problems-list,
    .solutions-card {
        width: 100% !important;
        max-width: calc(100vw - 40px) !important;
    }
}

