/* ============================================
   CLEAN MOOJ STYLES - Minimal & Responsive
   ============================================ */

/* Reset & Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Colors */
    --color-primary: #001F7A;
    --color-secondary: #00d4d4;
    --color-secondary-hover: #ff5c15;

    --text-primary: #03207D;
    --text-secondary: #666666;
    --text-light: #a3a3a3;
    --text-inverse: #ffffff;

    --bg-white: #ffffff;
    --bg-light: #f7f8fb;
    --bg-dark: #000000;
    --bg-gray: #f5f5f5;

    --border-color: #e5e5e5;

    --accent-purple-bg: #E8E3F3;
    --accent-purple-border: #5B4B8A;
    --accent-blue-light: #D9FCFB;

    /* Typography - Weights */
    --fw-regular: 400;
    --fw-medium: 500;
    --fw-semibold: 600;
    --fw-bold: 700;
    --fw-extrabold: 800;

    /* Typography - Desktop Sizes (Default) */
    --text-d-xs: 14px;
    --text-d-sm: 16px;
    --text-d-md: 24px;
    --text-d-lg: 40px;
    --text-d-xl: 64px;
    --text-d-display: 250px;

    /* Typography - Mobile Sizes */
    --text-m-xs: 12px;
    --text-m-sm: 16px;
    --text-m-md: 20px;
    --text-m-lg: 32px;
    --text-m-xl: 40px;

    /* Layout */
    --header-height: 64px;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    color: var(--text-primary);
    line-height: 1.6;
    background: var(--white);
}

.container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ============================================
   HEADER / NAVIGATION
   ============================================ */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: #ffffffE6;
    -webkit-backdrop-filter: blur(75px);
    backdrop-filter: blur(75px);
    border-bottom: 1px solid var(--border-color);
    z-index: 1000;
    height: var(--header-height);
}

.header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
}

.logo img {
    display: block;
    height: 32px;
    width: auto;
}

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

.nav a {
    color: var(--text-primary);
    text-decoration: none;
    font-size: var(--text-d-xs);
    font-weight: var(--fw-medium);
    transition: color 0.2s;
}

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

.btn-primary {
    background: transparent;
    color: var(--color-primary);
    padding: 10px 24px;
    border-radius: 100px;
    text-decoration: none;
    font-weight: var(--fw-semibold);
    font-size: var(--text-d-xs);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid var(--color-primary);
    cursor: pointer;
}

.btn-primary:hover {
    background: var(--color-primary);
    color: var(--text-inverse);
}

/* Mobile Menu Button */
.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.mobile-menu-btn span {
    width: 24px;
    height: 2px;
    background: var(--text-primary);
    transition: all 0.3s;
    border-radius: 2px;
}

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

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

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

/* ============================================
   MAIN CONTENT
   ============================================ */
.main-content {
    margin-top: var(--header-height);
    min-height: calc(100vh - var(--header-height));
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero-section {
    min-height: calc(100vh - var(--header-height));
    display: flex;
    align-items: flex-start;
    justify-content: center;
    background: var(--bg-light) url('https://joomjoo-1d799.kxcdn.com/mooj_landing/images/hero-desktop-bg.png') no-repeat center center;
    background-size: cover;
    padding: 120px 20px 80px;
    position: relative;
    overflow: hidden;
}

.hero-content {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    position: relative;
    z-index: 10;
}

.promo-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--accent-blue-light);
    padding: 8px 20px;
    border-radius: 20px;
    font-size: var(--text-d-xs);
    font-weight: var(--fw-semibold);
    color: var(--text-primary);
}

.promo-icon {
    width: 20px;
    height: 20px;
}

.hero-title {
    font-size: var(--text-d-xl);
    font-weight: var(--fw-bold);
    line-height: 1.05;
    color: var(--text-primary);
    text-transform: uppercase;
    margin: 0;
    letter-spacing: -0.02em;
    max-width: 900px;
}

.hero-description {
    font-size: var(--text-d-md);
    line-height: 1.5;
    color: var(--text-primary);
    max-width: 650px;
    margin: 0;
}

.btn-hero {
    background: var(--color-secondary);
    color: var(--text-inverse);
    padding: 16px 48px;
    border-radius: 100px;
    text-decoration: none;
    font-weight: var(--fw-bold);
    font-size: var(--text-d-sm);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    margin-top: 0;
    display: inline-block;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0, 212, 212, 0.3);
    position: relative;
    z-index: 20;
}

.btn-hero:hover {
    background: var(--color-secondary-hover);
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 8px 25px rgba(255, 92, 21, 0.4);
}

/* Card Animation */
.card-animation-container {
    position: relative;
    width: 460px;
    min-height: 340px;
    margin-top: -120px;
    overflow: visible;
    will-change: margin-top;
    transform: translateZ(0);
    transition: margin-top 0.08s cubic-bezier(0.16, 1, 0.3, 1);
}

@media (min-width: 768px) {
    .card-animation-container {
        width: 1000px;
        min-height: 600px;
        margin-top: -250px;
    }
}

@media (min-width: 1024px) {
    .card-animation-container {
        width: 1300px;
        min-height: 780px;
        margin-top: -320px;
    }
}

.card-frame {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%) scale(0.5) translateZ(0);
    transform-origin: top;
    width: 920px;
    will-change: transform;
    transition: transform 0.08s cubic-bezier(0.16, 1, 0.3, 1);
}

@media (min-width: 768px) {
    .card-frame {
        width: 2000px;
    }
}

@media (min-width: 1280px) {
    .card-frame {
        width: 2600px;
    }
}

.card-frame img {
    width: 100%;
    height: auto;
    display: block;
    transform: translateZ(0);
    transition: opacity 0.05s ease-out;
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
}

/* ============================================
   BENEFITS SECTION
   ============================================ */
.benefits-section {
    padding: 0 20px 80px;
    background: var(--bg-light);
    position: relative;
    z-index: 2;
}

.benefits-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.benefit-item {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 20px;
    width: 100%;
    max-width: 528px;
    margin: 0 auto;
}

.benefit-icon {
    width: 48px;
    height: 48px;
    display: block;
    object-fit: contain;
}

.benefit-text {
    flex: 1;
    text-align: left;
}

.benefit-title {
    font-size: var(--text-d-sm);
    font-weight: var(--fw-bold);
    color: var(--text-primary);
    margin-bottom: 4px;
    line-height: 1.2;
}

.benefit-desc {
    font-size: var(--text-d-sm);
    color: var(--text-primary);
    line-height: 1.5;
}

/* Tablet & Desktop */
@media (min-width: 768px) {
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }

    .benefit-item {
        flex-direction: column;
        text-align: center;
        align-items: center;
        gap: 24px;
        max-width: none;
    }

    .benefit-icon {
        width: 80px;
        height: 80px;
        margin-bottom: 0;
    }

    .benefit-text {
        text-align: center;
    }

    .benefit-title {
        font-size: var(--text-d-md);
        margin-bottom: 8px;
    }

    .benefit-desc {
        font-size: var(--text-d-sm);
    }
}

@media (min-width: 1024px) {
    .benefits-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* ============================================
   FEATURES SECTION
   ============================================ */
.features-section {
    padding: 80px 20px;
    background: var(--bg-light);
}

.features-container {
    display: flex;
    flex-direction: column;
    gap: 40px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.features-video-wrapper {
    width: 100%;
    max-width: 530px;
}

.features-video {
    width: 100%;
    height: auto;
    display: block;
}

.features-content {
    width: 100%;
    max-width: 600px;
}

.features-title {
    font-size: var(--text-d-lg);
    font-weight: var(--fw-bold);
    color: var(--text-primary);
    margin-bottom: 16px;
    text-transform: uppercase;
    line-height: 1.1;
}

.features-subtitle {
    font-size: var(--text-d-md);
    color: var(--text-primary);
    margin-bottom: 48px;
    line-height: 1.5;
}

.features-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 32px;
    counter-reset: feature-counter;
}

.features-item {
    position: relative;
    padding-left: 72px;
}

.features-item::before {
    counter-increment: feature-counter;
    content: counter(feature-counter);
    position: absolute;
    left: 0;
    top: 0;
    width: 48px;
    height: 48px;
    border: 1.5px solid var(--color-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: var(--text-d-md);
    font-weight: var(--fw-semibold);
    color: var(--text-primary);
}

.features-item-title {
    font-size: var(--text-d-md);
    font-weight: var(--fw-bold);
    color: var(--text-primary);
    margin-bottom: 8px;
}

.features-item-desc {
    font-size: var(--text-d-sm);
    color: var(--text-primary);
    line-height: 1.5;
    opacity: 0.9;
}

/* Desktop */
@media (min-width: 1024px) {
    .features-section {
        padding: 120px 20px;
    }

    .features-container {
        flex-direction: row;
        justify-content: center;
        gap: 100px;
    }

    .features-video-wrapper {
        flex: 0 0 50%;
        max-width: 530px;
    }

    .features-content {
        flex: 0 0 45%;
        text-align: left;
    }

    .features-title {
        font-size: var(--text-d-xl);
        margin-bottom: 24px;
    }

    .features-subtitle {
        font-size: var(--text-d-md);
        max-width: 500px;
    }

    .features-item-title {
        font-size: var(--text-d-md);
        margin-bottom: 8px;
    }

    .features-item-desc {
        font-size: var(--text-d-md);
    }
}

/* ============================================
   APP SECTION
   ============================================ */
.app-section {
    padding: 80px 20px;
    background: url('https://joomjoo-1d799.kxcdn.com/mooj_landing/images/b768x563.png') no-repeat center bottom;
    background-size: cover;
    text-align: center;
    overflow: hidden;
}

.app-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
    position: relative;
    max-width: 1400px;
    margin: 0 auto;
}

.app-header {
    max-width: 800px;
    margin: 0 auto;
}

.app-title {
    font-size: var(--text-d-lg);
    font-weight: var(--fw-bold);
    color: var(--text-primary);
    margin-bottom: 16px;
    text-transform: uppercase;
    line-height: 1.1;
}

.app-subtitle {
    font-size: var(--text-d-sm);
    color: var(--text-primary);
    line-height: 1.5;
}

.app-tabs {
    display: flex;
    gap: 8px;
    justify-content: center;
    margin: 0 auto 40px;
    padding: 0;
    flex-wrap: nowrap;
    width: 100%;
    max-width: 400px;
}

.app-tab {
    padding: 12px 0;
    margin: 0;
    border-radius: 50px;
    border: 2px solid var(--text-primary);
    background: transparent;
    color: var(--text-primary);
    font-size: var(--text-d-xs);
    font-weight: var(--fw-semibold);
    cursor: pointer;
    transition: all 0.3s ease;
    min-width: 0;
    flex: 1;
    text-align: center;
    white-space: nowrap;
}

.app-tab.active,
.app-tab:hover {
    background: var(--text-primary);
    color: var(--text-inverse);
    border-color: var(--text-primary);
}

.app-content {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.app-content-wrapper {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    gap: 40px;
    max-width: 1000px;
}

.app-phone-display {
    position: relative;
    width: 100%;
    max-width: 274px;
    /* Mobile width */
    display: flex;
    align-items: center;
    justify-content: center;
}

.app-screen-img {
    width: 100%;
    height: auto;
    border-radius: 32px;
    display: block;
    transition: opacity 0.2s ease-in-out;
}


/* QR Widget */
.app-qr-widget {
    display: flex;
    flex-direction: column;
    gap: 16px;
    align-items: center;
    z-index: 3;
}

.qr-card {
    background: var(--bg-white);
    padding: 16px;
    border-radius: 20px;
    box-shadow: 0 10px 30px #0000001A;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    width: 160px;
}

.qr-img {
    width: 120px;
    height: 120px;
}

.qr-icons {
    display: flex;
    gap: 12px;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 24px;
}

.qr-icon {
    width: 24px;
    height: 24px;
    object-fit: contain;
    object-position: center;
    display: block;
    opacity: 0.6;
    flex-shrink: 0;
    margin: auto 0;
}

.btn-read-more {
    padding: 12px 24px;
    border: 2px solid var(--text-inverse);
    border-radius: 100px;
    color: var(--text-inverse);
    text-decoration: none;
    font-weight: var(--fw-semibold);
    font-size: var(--text-d-xs);
    background: transparent;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
}

.btn-read-more:hover {
    background: var(--text-inverse);
    color: var(--color-primary);
}

/* Desktop */
@media (min-width: 768px) {
    .app-section {
        background-image: url('https://joomjoo-1d799.kxcdn.com/mooj_landing/images/b1536x1024.png');
    }

    .app-tabs {
        gap: 16px;
        flex-wrap: wrap;
        width: auto;
        max-width: none;
    }

    .app-tab {
        padding: 12px 32px;
        font-size: var(--text-d-sm);
        min-width: 130px;
        flex: initial;
    }
}

@media (min-width: 1024px) {
    .app-section {
        padding: 120px 20px;
    }

    .app-title {
        font-size: var(--text-d-xl);
        margin-bottom: 24px;
    }

    .app-subtitle {
        font-size: var(--text-d-md);
    }

    .app-content-wrapper {
        flex-direction: row;
        justify-content: center;
        align-items: center;
        gap: 80px;
        /* Space between phone and QR */
    }

    .app-phone-display {
        max-width: 344px;
        /* Desktop width - larger phone */
    }

    .app-qr-widget {
        position: static;
        /* Use flex layout instead of absolute */
        margin-top: 0;
    }
}

@media (min-width: 1440px) {
    .app-section {
        background-image: url('https://joomjoo-1d799.kxcdn.com/mooj_landing/images/b1920x1060.png');
    }

    .app-qr-widget {
        right: -100px;
    }
}

/* ============================================
   OTHER SECTIONS (Placeholders)
   ============================================ */
.section {
    padding: 80px 20px;
    min-height: 400px;
}

.section:nth-child(even) {
    background: var(--bg-light);
}

.section h1,
.section h2 {
    color: var(--primary-color);
    margin-bottom: 20px;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    background: var(--white);
    border-top: 1px solid var(--border-color);
    padding: 60px 20px 40px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    gap: 60px;
}

/* Footer Left Section */
.footer-left {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.footer-brand img {
    width: 124px;
    height: auto;
    display: block;
}

.footer-nav {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px 40px;
    max-width: 500px;
}

.footer-nav a {
    color: var(--text-primary);
    text-decoration: none;
    font-size: var(--text-d-xs);
    transition: color 0.2s;
}

.footer-nav a:hover {
    color: var(--primary-color);
}

.footer-phone a {
    color: var(--primary-color);
    text-decoration: none;
    font-size: var(--text-d-sm);
    font-weight: var(--fw-semibold);
}

.footer-address {
    font-style: normal;
    color: var(--text-secondary);
    font-size: var(--text-d-xs);
    line-height: 1.6;
    max-width: 500px;
}

/* Footer Right Section */
.footer-right {
    display: flex;
    flex-direction: column;
    gap: 32px;
    align-items: flex-end;
}

.footer-apps {
    display: flex;
    gap: 24px;
    align-items: center;
}

.footer-qr img {
    display: block;
    width: 111px;
    height: auto;
}

.footer-app-buttons {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.footer-app-buttons a {
    display: block;
}

.footer-app-buttons img {
    display: block;
    width: 135px;
    height: auto;
}

.footer-social {
    display: flex;
    gap: 16px;
}

.footer-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.2s;
}

.footer-social a:hover {
    opacity: 0.7;
}

.footer-social img {
    width: 24px;
    height: 24px;
}

.footer-bottom {
    display: flex;
    align-items: center;
    gap: 24px;
}

.footer-copyright {
    color: var(--text-secondary);
    font-size: var(--text-d-xs);
    margin: 0;
}

.footer-language {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-primary);
    font-size: var(--text-d-xs);
}

.footer-language img {
    width: 20px;
    height: auto;
    border-radius: 2px;
}

/* ============================================
   DISCLAIMER
   ============================================ */
.disclaimer {
    background: var(--bg-light);
    padding: 40px 20px;
    border-top: 1px solid var(--border-color);
}

.disclaimer p {
    font-size: 12px;
    line-height: 1.45;
    color: #8f9cc5;
    text-align: justify;
    margin-bottom: 12px;
}

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

.disclaimer strong {
    color: #7080b0;
}

/* ============================================
   RESPONSIVE - TABLET
   ============================================ */
@media (max-width: 1024px) {
    .nav {
        gap: 24px;
    }

    .footer-nav {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* ============================================
   RESPONSIVE - MOBILE
   ============================================ */
@media (max-width: 768px) {
    :root {
        --header-height: 56px;
    }

    .header .container {
        padding: 0 16px;
    }

    .logo img {
        height: 28px;
    }

    .nav {
        position: fixed;
        top: var(--header-height);
        left: 0;
        right: 0;
        background: var(--bg-white);
        flex-direction: column;
        padding: 20px;
        gap: 20px;
        box-shadow: 0 4px 12px #0000001A;
        transform: translateY(-100%);
        opacity: 0;
        transition: all 0.3s;
        pointer-events: none;
    }

    .nav.active {
        transform: translateY(0);
        opacity: 1;
        pointer-events: all;
    }

    .nav a {
        font-size: var(--text-m-sm);
        padding: 8px 0;
    }

    .btn-primary {
        display: none;
    }

    .mobile-menu-btn {
        display: flex;
    }

    .section {
        padding: 60px 16px;
    }

    /* Hero Section Mobile */
    .hero-section {
        background-image: url('https://joomjoo-1d799.kxcdn.com/mooj_landing/images/hero-mobile-bg.png');
        padding: 100px 6px 60px;
        /* Minimal padding to maximize width */
        min-height: 108vh;
        /* Enable scroll animation */
    }

    .hero-content {
        gap: 24px;
        max-width: 100%;
    }

    .promo-badge {
        font-size: var(--text-m-xs);
        padding: 6px 16px;
    }

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

    .hero-title {
        font-size: var(--text-m-xl);
        /* Bigger text */
        line-height: 1.1;
        letter-spacing: -1px;
        padding: 0;
        max-width: 100%;
    }

    .hero-title br {
        display: none;
    }

    .hero-description {
        font-size: var(--text-m-sm);
        padding: 0 10px;
        line-height: 1.5;
    }

    .btn-hero {
        padding: 16px 36px;
        font-size: var(--text-m-md);
        width: 100%;
        max-width: 320px;
    }

    .btn-cashback {
        width: 100%;
        max-width: 320px;
    }

    /* Mobile Card Animation */
    .card-animation-container {
        width: 100%;
        max-width: none;
        min-height: 60vw;
        margin-top: -40px;
    }

    .card-frame {
        width: 145vw;
        /* Increased to push edges to screen boundaries */
        transform: translateX(-50%) scale(1);
        /* Remove scaling to ensure exact size */
        left: 50%;
    }

    /* Footer Mobile */
    .footer {
        padding: 40px 16px 30px;
    }

    .footer-content {
        flex-direction: column;
        gap: 40px;
    }

    .footer-left {
        gap: 24px;
    }

    .footer-right {
        align-items: flex-start;
        gap: 24px;
    }

    .footer-apps {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 12px;
    }

    .footer-nav {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .disclaimer {
        padding: 30px 16px;
    }

    .disclaimer p {
        text-align: left;
        font-size: var(--text-d-xs) !important;
    }

    /* App Section Mobile */
    .app-title {
        text-align: left;
        font-size: var(--text-m-xl);
        /* Increased to match original */
    }

    .app-subtitle {
        text-align: left;
        font-size: var(--text-m-sm);
    }

    .app-content {
        width: 100%;
        margin: 0;
        padding: 0;
    }

    .app-tabs {
        display: flex;
        flex-direction: row;
        gap: 12px;
        justify-content: flex-start;
        margin-bottom: 40px;
        flex-wrap: nowrap;
        overflow-x: auto;
        margin-left: 10px !important;
        margin-right: 10px !important;
    }

    .app-tab {
        padding: 12px 24px;
        font-size: var(--text-m-sm);
        background: var(--bg-white);
        /* White background for inactive */
        border: 2px solid var(--accent-purple-border);
        /* Purple border */
        color: var(--text-primary);
        white-space: nowrap;
        flex-shrink: 0;
        display: flex;
        align-items: center;
        justify-content: center;
        text-align: center;
    }

    .app-tab.active {
        background: var(--text-primary);
        color: var(--text-inverse);
        border-color: var(--text-primary);
    }

    .app-tab:hover {
        background: var(--bg-white);
        color: var(--text-primary);
    }

    .app-tab.active:hover {
        background: var(--text-primary);
        color: var(--text-inverse);
    }

    .transparency-title {
        line-height: 1.1;
    }
}

/* ============================================
   SMOOTH SCROLL
   ============================================ */
html {
    scroll-behavior: smooth;
}

/* ============================================
   SECURE SECTION
   ============================================ */
.secure-section {
    background-color: var(--bg-dark);
    padding: 80px 20px;
    color: var(--text-inverse);
    overflow: hidden;
}

.secure-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.secure-video-wrapper {
    width: 100%;
    max-width: 600px;
}

.secure-video {
    width: 100%;
    height: auto;
    display: block;
}

.secure-content {
    width: 100%;
    max-width: 600px;
}

.secure-title {
    font-size: var(--text-d-lg);
    font-weight: var(--fw-bold);
    text-transform: uppercase;
    margin-bottom: 40px;
    color: var(--text-inverse);
}

.secure-list {
    list-style: none;
    padding: 0;
    margin: 0 0 40px 0;
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.secure-item-title {
    font-size: var(--text-d-md);
    font-weight: var(--fw-semibold);
    margin: 0 0 8px 0;
    color: var(--text-inverse);
}

.secure-item-desc {
    font-size: var(--text-d-sm);
    line-height: 1.5;
    color: #a3a3a3;
    margin: 0;
}

.btn-secure {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 32px;
    border: 2px solid var(--text-inverse);
    border-radius: 100px;
    color: var(--text-inverse);
    text-decoration: none;
    font-weight: var(--fw-semibold);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-size: var(--text-d-sm);
    cursor: pointer;
    background: transparent;
}

.btn-secure:hover {
    background-color: var(--text-inverse);
    color: var(--color-primary);
    border-color: var(--text-inverse);
}

/* Desktop */
@media (min-width: 1024px) {
    .secure-section {
        padding: 180px 20px;
        /* Restored side padding */
    }

    .secure-container {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        gap: 60px;
        /* Adjusted gap */
        max-width: 1400px;
    }

    .secure-video-wrapper {
        order: 2;
        width: 55%;
        /* Reduced from 60% */
        max-width: none;
    }

    .secure-content {
        order: 1;
        width: 40%;
        /* Increased from 35% */
        max-width: none;
    }

    .secure-title {
        font-size: var(--text-d-xl);
        margin-bottom: 60px;
        line-height: 1;
    }

    .secure-list {
        display: flex;
        flex-direction: column;
        gap: 48px;
        margin-bottom: 60px;
    }

    .secure-item-title {
        font-size: var(--text-d-md);
        margin-bottom: 6px;
        /* Reduced spacing */
    }

    .secure-item-desc {
        font-size: var(--text-d-sm);
        max-width: 480px;
    }

    .btn-secure {
        padding: 18px 42px;
        font-size: var(--text-d-sm);
    }
}

/* ============================================
   APPLE PAY SECTION
   ============================================ */
.apple-pay-section {
    background-color: var(--bg-gray);
    /* Light gray background for section */
    padding: 80px 20px;
    color: var(--primary-color);
}

.apple-pay-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.apple-pay-card {
    background-color: var(--text-inverse);
    border-radius: 24px;
    padding: 40px 20px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
}

.apple-pay-content {
    text-align: center;
    max-width: 600px;
}

.apple-pay-badge {
    display: inline-flex;
    align-items: center;
    border: 1px solid #000000;
    border-radius: 4px;
    padding: 4px 12px;
    margin-bottom: 24px;
    color: var(--text-primary);
    font-weight: var(--fw-semibold);
    font-size: var(--text-d-sm);
}

.apple-logo {
    width: 16px;
    height: 16px;
    margin-right: 4px;
}

.apple-pay-title {
    font-size: var(--text-d-lg);
    font-weight: var(--fw-bold);
    text-transform: uppercase;
    margin-bottom: 24px;
    line-height: 1;
    color: var(--text-primary);
}

.apple-pay-desc {
    font-size: var(--text-d-sm);
    margin-bottom: 32px;
    line-height: 1.5;
    color: var(--text-primary);
}

.btn-apple-pay {
    display: inline-block;
    padding: 14px 32px;
    border: 2px solid var(--color-primary);
    border-radius: 100px;
    color: var(--color-primary);
    font-weight: var(--fw-semibold);
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    background: transparent;
}

.btn-apple-pay:hover {
    background-color: var(--color-primary);
    color: var(--text-inverse);
}

.apple-pay-image-wrapper {
    width: 100%;
    display: flex;
    justify-content: center;
}

.apple-pay-img-mobile {
    display: block;
    max-width: 100%;
    height: auto;
}

.apple-pay-img-desktop {
    display: none;
}

/* Desktop */
@media (min-width: 1024px) {
    .apple-pay-section {
        padding: 80px 20px;
    }

    .apple-pay-container {
        max-width: 1400px;
        /* Increased width to match Secure section */
        margin: 0 auto;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .apple-pay-card {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        padding: 60px 80px;
        /* Increased padding */
        border-radius: 48px;
        text-align: left;
        position: relative;
        overflow: hidden;
        width: 100%;
        min-height: 400px;
        /* Increased height */
    }

    .apple-pay-content {
        text-align: left;
        width: 50%;
        max-width: 520px;
        position: relative;
        z-index: 10;
        display: block;
        /* Removed flex centering to avoid clipping */
    }

    .apple-pay-title {
        font-size: var(--text-d-xl);
        /* Restored larger size */
        margin-bottom: 24px;
        line-height: 1;
    }

    .apple-pay-desc {
        font-size: var(--text-d-md);
        margin-bottom: 32px;
    }

    .apple-pay-badge {
        margin-bottom: 24px;
    }

    .apple-pay-image-wrapper {
        position: absolute;
        bottom: 0;
        right: 0;
        width: auto;
        height: 90%;
        display: flex;
        align-items: flex-end;
    }

    .apple-pay-img-mobile {
        display: none;
    }

    .apple-pay-img-desktop {
        display: block;
        width: auto;
        height: 100%;
        object-fit: contain;
        object-position: bottom right;
    }

    .btn-apple-pay {
        padding: 18px 42px;
        font-size: var(--text-d-sm);
    }
}

/* ============================================
   TRANSPARENCY SECTION
   ============================================ */
.transparency-section {
    background-color: var(--bg-gray);
    padding: 60px 20px;
    color: var(--primary-color);
}

.transparency-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.transparency-header {
    text-align: left;
}

.transparency-title {
    font-size: var(--text-d-lg);
    font-weight: var(--fw-bold);
    text-transform: uppercase;
    margin-bottom: 16px;
    color: var(--text-primary);
    line-height: 1.1;
}

.transparency-subtitle {
    font-size: var(--text-d-sm);
    color: var(--text-primary);
    margin: 0;
}

/* Mobile: Single Widget Look */
.transparency-grid {
    display: flex;
    flex-direction: column;
    background-color: var(--text-inverse);
    border-radius: 24px;
    padding: 16px;
    gap: 0;
    /* Remove gap between items */
}

.transparency-card {
    background-color: transparent;
    /* Transparent background on mobile */
    border-radius: 0;
    /* No radius */
    padding: 24px 16px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    border-bottom: 1px solid #f0f0f0;
    /* Separator */
}

.transparency-card:last-child {
    border-bottom: none;
    /* Remove separator for last item */
}

.transparency-card:hover {
    background-color: transparent;
    /* No hover effect on mobile */
}

.transparency-card-content {
    flex: 1;
    padding-right: 20px;
}

.transparency-card-title {
    font-size: var(--text-d-sm);
    font-weight: var(--fw-semibold);
    margin: 0 0 8px 0;
    color: var(--text-primary);
}

.transparency-card-desc {
    font-size: var(--text-d-xs);
    color: var(--text-primary);
    /* Changed to blue */
    margin: 0;
    line-height: 1.4;
}

.transparency-icon {
    width: 24px;
    height: 24px;
    color: var(--text-primary);
    flex-shrink: 0;
}

/* Desktop */
@media (min-width: 1024px) {
    .transparency-section {
        padding: 120px 20px;
    }

    .transparency-container {
        display: flex;
        flex-direction: column;
        align-items: center;
        /* Center everything */
        gap: 60px;
        max-width: 1000px;
        /* Limit width to match 8 columns */
    }

    .transparency-header {
        text-align: center;
        /* Center text */
        max-width: 800px;
    }

    .transparency-title {
        font-size: var(--text-d-xl);
        /* Increased to 80px */
        line-height: 1;
        margin-bottom: 24px;
    }

    .transparency-subtitle {
        font-size: var(--text-d-md);
    }

    /* Desktop: Grid Look */
    .transparency-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 24px;
        width: 100%;
        /* Full width of container */
        background-color: transparent;
        /* Reset background */
        padding: 0;
        /* Reset padding */
    }

    .transparency-card {
        background-color: var(--text-inverse);
        /* White background on desktop */
        padding: 24px;
        /* Reduced padding */
        border-radius: 32px;
        flex-direction: column;
        align-items: flex-start;
        justify-content: space-between;
        min-height: 180px;
        /* Reduced height to remove empty space */
        border-bottom: none;
        /* Remove separator */
    }

    .transparency-card:hover {
        background-color: #e6e6e6;
        /* Restore hover effect */
    }

    .transparency-icon {
        position: absolute;
        top: 24px;
        /* Adjusted position */
        right: 24px;
    }

    .transparency-card-content {
        margin-top: auto;
        padding-right: 0;
    }

    .transparency-card-title {
        font-size: var(--text-d-md);
        margin-bottom: 8px;
    }

    .transparency-card-desc {
        font-size: var(--text-d-sm);
    }
}

/* ============================================
   CASHBACK SECTION
   ============================================ */
.cashback-section {
    position: relative;
    padding: 80px 20px;
    background-color: var(--bg-light);
    /* Updated background color */
    overflow: hidden;
    text-align: center;
}

.cashback-container {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.cashback-videos-desktop {
    display: none;
}

.cashback-content {
    position: relative;
    z-index: 10;
    max-width: 600px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.cashback-video-mobile-wrapper {
    width: 100%;
    max-width: 400px;
    margin-bottom: 32px;
}

.cashback-video-mobile {
    width: 100%;
    height: auto;
    display: block;
}

.cashback-percent {
    font-size: var(--text-d-xl);
    font-weight: var(--fw-bold);
    color: var(--text-primary);
    line-height: 1;
    margin-bottom: 16px;
    display: block;
    text-transform: uppercase;
}

.cashback-title {
    font-size: var(--text-d-lg);
    font-weight: var(--fw-bold);
    text-transform: uppercase;
    color: var(--text-primary);
    line-height: 1.1;
    margin-bottom: 24px;
}

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

.cashback-desc {
    font-size: var(--text-d-sm);
    color: var(--text-primary);
    margin-bottom: 40px;
    line-height: 1.5;
    max-width: 480px;
}

.btn-cashback {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 48px;
    background-color: var(--color-secondary);
    color: var(--text-inverse);
    border-radius: 100px;
    font-weight: var(--fw-bold);
    font-size: var(--text-d-sm);
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0, 212, 212, 0.3);
}

.btn-cashback:hover {
    background-color: var(--color-secondary-hover);
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 8px 25px rgba(255, 92, 21, 0.4);
}

/* Desktop */
@media (min-width: 1024px) {
    .cashback-section {
        padding: 160px 20px;
    }

    .cashback-videos-desktop {
        display: block;
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        pointer-events: none;
    }

    .cashback-video-left {
        position: absolute;
        top: 50%;
        left: 0;
        /* Aligned to screen edge */
        transform: translateY(-50%);
        width: 500px;
        max-width: 40vw;
    }

    .cashback-video-right {
        position: absolute;
        top: 50%;
        right: 0;
        /* Aligned to screen edge */
        transform: translateY(-50%);
        width: 500px;
        max-width: 40vw;
    }

    .cashback-video-mobile-wrapper {
        display: none;
    }

    .cashback-percent {
        font-size: var(--text-d-display);
        /* Increased to match original */
        font-weight: var(--fw-extrabold);
        /* Bolder */
        margin-bottom: 0;
        /* Reduced margin */
    }

    .cashback-title {
        font-size: var(--text-d-xl);
        /* Increased to match original */
        font-weight: var(--fw-extrabold);
        /* Bolder */
        margin-bottom: 32px;
    }

    .cashback-desc {
        font-size: var(--text-d-md);
        max-width: 600px;
    }
}

/* ============================================
   WAITLIST MODAL
   ============================================ */
.modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    -webkit-backdrop-filter: blur(8px);
    backdrop-filter: blur(8px);
    z-index: 10000;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.modal-overlay.active {
    display: flex;
    opacity: 1;
}

.modal-container {
    position: relative;
    background: var(--bg-white);
    border-radius: 24px;
    max-width: 500px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    animation: modalSlideIn 0.4s cubic-bezier(0.4, 0, 0.2, 1);

    /* Hide scrollbar for Chrome, Safari and Opera */
    scrollbar-width: none;
    /* Firefox */
    -ms-overflow-style: none;
    /* IE and Edge */
}

.modal-container::-webkit-scrollbar {
    display: none;
    /* Chrome, Safari, Opera */
}

@keyframes modalSlideIn {
    from {
        transform: translateY(-50px) scale(0.95);
        opacity: 0;
    }

    to {
        transform: translateY(0) scale(1);
        opacity: 1;
    }
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: transparent;
    border: none;
    font-size: 32px;
    color: var(--text-secondary);
    cursor: pointer;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.2s ease;
    z-index: 10;
}

.modal-close:hover {
    background: var(--bg-gray);
    color: var(--text-primary);
    transform: rotate(90deg);
}

.modal-content {
    padding: 48px 32px 32px;
    text-align: center;
}

.modal-title {
    font-size: var(--text-d-lg);
    font-weight: var(--fw-bold);
    color: var(--text-primary);
    margin-bottom: 12px;
    line-height: 1.2;
}

.modal-subtitle {
    font-size: var(--text-d-sm);
    color: var(--text-secondary);
    margin-bottom: 32px;
    line-height: 1.5;
}

.modal-form {
    text-align: left;
}

.form-group {
    margin-bottom: 20px;
}

.form-label {
    display: block;
    font-size: var(--text-d-xs);
    font-weight: var(--fw-semibold);
    color: var(--text-primary);
    margin-bottom: 8px;
}

.form-input {
    width: 100%;
    padding: 14px 16px;
    border: 2px solid var(--border-color);
    border-radius: 12px;
    font-size: var(--text-d-sm);
    color: var(--text-primary);
    transition: all 0.3s ease;
    font-family: inherit;
}

.form-input:focus {
    outline: none;
    border-color: var(--color-secondary);
    box-shadow: 0 0 0 4px rgba(0, 212, 212, 0.1);
}

.form-input::placeholder {
    color: var(--text-light);
}

.form-submit {
    width: 100%;
    padding: 16px 32px;
    background: var(--color-secondary);
    color: var(--text-inverse);
    border: none;
    border-radius: 100px;
    font-size: var(--text-d-sm);
    font-weight: var(--fw-bold);
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    margin-top: 8px;
    box-shadow: 0 4px 15px rgba(0, 212, 212, 0.3);
}

.form-submit:hover {
    background: var(--color-secondary-hover);
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 8px 25px rgba(255, 92, 21, 0.4);
}

.modal-footer {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-top: 24px;
    padding-top: 20px;
    border-top: 1px solid var(--border-color);
}

.modal-footer-label {
    font-size: var(--text-d-xs);
    color: var(--text-secondary);
    font-weight: var(--fw-medium);
}

.modal-footer-logo {
    height: 24px;
    width: auto;
}

/* Mobile Styles */
@media (max-width: 768px) {
    .modal-container {
        max-width: 95%;
        border-radius: 20px;
    }

    .modal-content {
        padding: 40px 24px 24px;
    }

    .modal-title {
        font-size: var(--text-m-lg);
    }

    .modal-subtitle {
        font-size: var(--text-m-sm);
    }

    .form-label {
        font-size: var(--text-m-xs);
    }

    .form-input {
        font-size: var(--text-m-sm);
        padding: 12px 14px;
    }

    .form-submit {
        font-size: var(--text-m-sm);
        padding: 14px 28px;
    }
}