* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Colors */
    --primary-orange: #F97316 !important;
    --primary-orange-dark: #e55a2a;
    --dark-text: #1a1a1a;
    --light-bg: #FAFAFA;
    --white: #FFFFFF;
    --gray-text: #666;
    --gray-light: #f5f5f5;

    /* Layout */
    --container-max: 1200px;
    --section-padding: 60px 40px;
    --section-padding-mobile: 40px 20px;
    --section-padding-tablet: 50px 20px;
    --card-padding: 32px;
    --card-padding-mobile: 28px;
    --border-radius: 24px;
    --border-radius-small: 16px;
    --border-radius-button: 8px;

    /* Spacing */
    --spacing-xs: 8px;
    --spacing-sm: 12px;
    --spacing-md: 20px;
    --spacing-lg: 24px;
    --spacing-xl: 32px;
    --spacing-2xl: 40px;
    --spacing-3xl: 48px;
    --spacing-4xl: 60px;
    --spacing-5xl: 100px;

    /* Typography - Font Families */
    --font-heading: 'Public Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-body: 'Rubik', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

    /* Typography - Headings */
    --heading-h1-size: clamp(2.5rem, 5vw, 3.5rem);
    /* 40px - 64px */
    --heading-h2-size: clamp(2rem, 4vw, 3rem);
    /* 32px - 48px */
    --heading-h3-size: clamp(1.75rem, 2.5vw, 2.25rem);
    /* 28px - 36px */
    --heading-h4-size: clamp(1.375rem, 1.5vw, 1.5rem);
    /* 22px - 24px */
    --heading-h5-size: clamp(1.25rem, 1.4vw, 1.375rem);
    /* 20px - 22px */
    --heading-weight: 650;
    /* Public Sans font weight for headings - semi-bold for better hierarchy */
    --heading-line-height: 1.2;
    --heading-letter-spacing: 0.02em;

    /* Typography - Body */
    --body-size: 1rem;
    /* 16px */
    --body-size-small: 0.9375rem;
    /* 15px */
    --body-size-large: clamp(1.125rem, 1.5vw, 1.25rem);
    /* 18px - 20px */
    --body-weight: 400;
    --body-line-height: 1.7;
    --body-letter-spacing: -0.01em;

    /* Section Spacing - Standardized */
    --section-header-margin-bottom: var(--spacing-xl);
    /* 32px - consistent spacing between title and subtitle */
    --section-title-margin-bottom: var(--spacing-sm);
    /* 12px - consistent spacing between title and subtitle */
    --section-subtitle-margin-bottom: var(--spacing-2xl);
    /* 40px - consistent spacing after subtitle */
    --section-content-gap: var(--spacing-md);
    /* 20px - consistent gap between content elements */

    /* Typography - Buttons */
    --button-size: 15px;
    --button-weight: 600;
    --button-padding: 14px 32px;
    --button-height: 48px;
    --button-min-width: 140px;

    /* Shadows */
    --shadow-sm: 0 1px 20px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 8px 32px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 16px 48px rgba(255, 107, 53, 0.15);
    --shadow-button: 0 4px 16px rgba(255, 107, 53, 0.2);
    --shadow-button-hover: 0 8px 24px rgba(255, 107, 53, 0.35);

    /* Transitions */
    --transition-fast: 0.3s ease;
    --transition-normal: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

body {
    font-family: var(--font-body);
    font-size: var(--body-size);
    font-weight: var(--body-weight);
    line-height: var(--body-line-height);
    letter-spacing: var(--body-letter-spacing);
    background: linear-gradient(to top, rgba(255, 107, 53, 0.08) 0%, rgba(255, 107, 53, 0.03) 50%, #FFFFFF 100%);
    color: var(--dark-text);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    -webkit-tap-highlight-color: transparent;
    touch-action: pan-y;
    min-height: 100vh;
}

/* Native Mobile App Feel */
@media (max-width: 768px) {
    * {
        -webkit-tap-highlight-color: rgba(255, 107, 0, 0.1);
    }

    body {
        font-size: clamp(0.9375rem, 2.5vw, 1rem);
    }

    /* Smooth scrolling for mobile */
    html {
        scroll-behavior: smooth;
        -webkit-overflow-scrolling: touch;
    }

    /* Prevent text selection on buttons for native feel */
    button,
    a.btn-get-started,
    a.btn-login,
    .marketplace-shop-btn,
    .footer-newsletter-btn {
        -webkit-user-select: none;
        -moz-user-select: none;
        -ms-user-select: none;
        user-select: none;
        -webkit-touch-callout: none;
    }
}

/* Typography Base Styles */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    font-weight: var(--heading-weight);
    line-height: var(--heading-line-height);
    letter-spacing: var(--heading-letter-spacing);
    color: var(--dark-text);
}

h1 {
    font-size: var(--heading-h1-size);
}

h2 {
    font-size: var(--heading-h2-size);
}

h3 {
    font-size: var(--heading-h3-size);
}

h4 {
    font-size: var(--heading-h4-size);
}

h5 {
    font-size: var(--heading-h5-size);
}

p {
    font-family: var(--font-body);
    font-size: var(--body-size);
    font-weight: var(--body-weight);
    line-height: var(--body-line-height);
    letter-spacing: var(--body-letter-spacing);
    color: var(--gray-text);
}


/* Hero Section */
.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 100px var(--spacing-2xl) 60px;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg,
            rgba(255, 250, 245, 1) 0%,
            rgba(255, 245, 235, 0.95) 25%,
            rgba(250, 248, 255, 0.9) 50%,
            rgba(245, 250, 255, 0.95) 75%,
            rgba(250, 250, 250, 1) 100%);
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 20% 30%, rgba(255, 107, 0, 0.06) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(255, 140, 0, 0.04) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(255, 200, 100, 0.03) 0%, transparent 60%);
    z-index: 0;
    pointer-events: none;
}


.hero-container {
    max-width: var(--container-max);
    margin: 0 auto;
    width: 100%;
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    /* gap: var(--spacing-3xl); */
    padding-top: 80px;
}

/* Hero Top Section: Header + Subheader */
.hero-top-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    gap: var(--spacing-lg);
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s ease 0.3s forwards;
    position: relative;
    z-index: 10;
}

.hero-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    width: 100%;
}

.hero-subheading {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    width: 100%;
}

/* Hero Bottom Section: Cards + App Availability */
.hero-bottom-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    /* gap: var(--spacing-xl); */
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s ease 0.5s forwards;
    position: relative;
    z-index: 5;
}

.hero-title {
    font-size: var(--heading-h1-size);
    font-weight: var(--heading-weight);
    line-height: var(--heading-line-height);
    letter-spacing: var(--heading-letter-spacing);
    margin: 0;
    font-family: var(--font-heading);
    color: var(--dark-text);
    text-align: center;
    position: relative;
}

.hero-title .highlight {
    color: var(--primary-orange);
}

.hero-subtitle {
    font-size: 18px;
    font-weight: var(--body-weight);
    line-height: var(--body-line-height);
    letter-spacing: var(--body-letter-spacing);
    font-family: var(--font-body);
    color: var(--gray-text);
    max-width: 700px;
    margin: 0;
    text-align: center;
}

.hero-buttons {
    display: flex;
    gap: var(--spacing-md);
    justify-content: center;
    flex-wrap: wrap;
    margin-top: var(--spacing-lg);
    position: relative;
    z-index: 11;
}

.btn-login {
    position: relative;
    /* background: var(--white); */
    color: var(--primary-orange);
    padding: var(--button-padding);
    min-height: var(--button-height);
    min-width: var(--button-min-width);
    border: 2px solid var(--primary-orange);
    border-radius: var(--border-radius-button);
    text-decoration: none;
    font-weight: var(--button-weight);
    font-size: var(--button-size);
    font-family: var(--font-body);
    transition: all var(--transition-normal);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    cursor: pointer;
    z-index: 12;
    pointer-events: auto;
}

.btn-login::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 107, 0, 0.2) 0%, rgba(255, 107, 0, 0.1) 40%, transparent 70%);
    transform: translate(-50%, -50%);
    transition: width 0.6s cubic-bezier(0.4, 0, 0.2, 1), height 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    pointer-events: none;
    z-index: 0;
}

.btn-login::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 107, 0, 0.15) 0%, rgba(255, 107, 0, 0.05) 50%, transparent 70%);
    transform: translate(-50%, -50%);
    transition: width 0.8s cubic-bezier(0.4, 0, 0.2, 1), height 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    pointer-events: none;
    z-index: 0;
    animation: smokePuff 2s ease-out infinite;
}

.btn-login:hover::before {
    width: 300px;
    height: 300px;
}

.btn-login:hover::after {
    width: 250px;
    height: 250px;
    animation-delay: 0.2s;
}

.btn-login:hover {
    background: linear-gradient(135deg, #f97316, #ef4444) !important;
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: var(--shadow-button);
}

.btn-login span,
.btn-login {
    position: relative;
    z-index: 12;
}

.app-availability {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-md);
    padding: var(--spacing-sm) var(--spacing-lg);
    border-radius: var(--border-radius-small);
    max-width: fit-content;
    margin-top: -100px;
    position: relative;
    z-index: 10;
}

.app-info-icon {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: #9E9E9E;
    /* Gray circle */
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 14px;
    font-weight: 600;
    font-family: var(--font-body);
    flex-shrink: 0;
}

.app-availability-text {
    font-size: var(--body-size-small);
    font-weight: 400;
    color: var(--gray-text);
    /* Grey text */
    margin: 0;
    font-family: var(--font-body);
    white-space: nowrap;
}

.app-stores {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    position: relative;
    z-index: 11;
}

.app-store-badge {
    display: inline-block;
    transition: transform 0.3s ease, opacity 0.3s ease;
    cursor: pointer;
    text-decoration: none;
    line-height: 0;
    position: relative;
    z-index: 11;
    pointer-events: auto;
}

.app-store-badge:hover {
    transform: translateY(-2px) scale(1.02);
    opacity: 0.9;
}

.app-store-badge img {
    height: 40px;
    width: auto;
    display: block;
    border-radius: 4px;
    max-width: 135px;
}

/* Cards Container */
.cards-container {
    position: relative;
    height: 900px;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    perspective: 1200px;
    margin-top: -70px;
}

.phone-card {
    position: absolute;
    /* background: white; */
    border-radius: 40px;
    padding: var(--spacing-md);
    /* box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2); */
    overflow: visible;
    transform-origin: center bottom;
    will-change: transform, opacity;
}

.phone-card.middle {
    width: 550px;
    height: 850px;
    z-index: 3;
    transform: translateX(0) rotate(0deg) scale(1);
    opacity: 1;
}

.phone-card.left {
    width: 420px;
    height: 650px;
    z-index: 1;
    /* Initial state: visible at an angle (matches JS 0.4 progress) */
    transform: translateX(-228px) rotate(-12deg) scale(0.87);
    opacity: 0.82;
    pointer-events: none;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.phone-card.right {
    width: 420px;
    height: 650px;
    z-index: 1;
    /* Initial state: visible at an angle (matches JS 0.4 progress) */
    transform: translateX(228px) rotate(12deg) scale(0.87);
    opacity: 0.82;
    pointer-events: none;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.phone-card img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
    border-radius: var(--border-radius);
}

/* Image placeholder styles */
.card-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: var(--border-radius);
    display: block;
}

/* Static Image for Mobile/Tablet - Hidden on Desktop */
.hero-static-image {
    display: none;
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
    padding: 0;
}

.hero-mobile-img {
    width: 100%;
    height: auto;
    object-fit: contain;
    display: block;
    border-radius: var(--border-radius);
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Parallax Background Elements */
.hero-section::after {
    content: '';
    position: absolute;
    top: -20%;
    left: -5%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255, 107, 0, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 25s ease-in-out infinite;
    z-index: 0;
}

@keyframes float {

    0%,
    100% {
        transform: translate(0, 0) rotate(0deg);
    }

    50% {
        transform: translate(30px, -30px) rotate(180deg);
    }
}

/* Responsive Design */
@media (max-width: 1024px) {

    /* Hide animated cards on tablet and mobile */
    .cards-container {
        display: none !important;
    }

    /* Show static image on tablet and mobile */
    .hero-static-image {
        display: block;
        max-width: 600px;
        margin: 0 auto;
        padding: 0;
    }

    .hero-mobile-img {
        max-height: 550px;
        width: 100%;
        object-fit: contain;
    }

    /* Adjust app availability spacing on tablet/mobile */
    .app-availability {
        margin-top: var(--spacing-md);
        margin-bottom: var(--spacing-lg);
    }

    .hero-bottom-section {
        gap: var(--spacing-xl);
    }
}

@media (max-width: 768px) {

    .hero-section {
        padding: 100px var(--spacing-md) 40px;
    }

    .hero-container {
        gap: var(--spacing-2xl);
        padding-top: var(--spacing-lg);
    }

    .hero-top-section {
        gap: var(--spacing-md);
    }

    .hero-bottom-section {
        gap: var(--spacing-xl);
        margin-top: var(--spacing-lg);
    }

    .hero-title {
        font-size: clamp(2rem, 8vw, 2.5rem);
    }

    .hero-subtitle {
        font-size: clamp(0.9375rem, 4vw, 1.125rem);
    }

    .hero-buttons {
        flex-direction: column;
        gap: var(--spacing-md);
        width: 100%;
    }

    .btn-login,
    .btn-get-started {
        width: 100%;
        min-width: auto;
    }

    .hero-static-image {
        max-width: 100%;
        padding: 0;
        margin: 0 auto;
    }

    .hero-mobile-img {
        max-height: 450px;
        width: 100%;
        object-fit: contain;
    }

    .app-availability {
        flex-wrap: wrap;
        padding: var(--spacing-md);
        gap: var(--spacing-sm);
        margin-top: 0;
        margin-bottom: var(--spacing-md);
        width: 100%;
        max-width: 100%;
    }

    .app-availability-text {
        font-size: clamp(0.75rem, 3vw, 0.875rem);
    }

    .app-store-badge img {
        height: 36px;
        max-width: 120px;
    }
}

@media (max-width: 480px) {
    .hero-section {
        padding: 100px var(--spacing-sm) 40px;
    }

    .hero-container {
        gap: var(--spacing-xl);
        padding-top: var(--spacing-md);
    }

    .hero-top-section {
        gap: var(--spacing-sm);
    }

    .hero-bottom-section {
        gap: var(--spacing-lg);
        margin-top: var(--spacing-md);
    }

    .hero-static-image {
        max-width: 100%;
        padding: 0;
        margin: 0 auto;
    }

    .hero-mobile-img {
        max-height: 350px;
        width: 100%;
        object-fit: contain;
    }

    .app-availability {
        padding: var(--spacing-sm) var(--spacing-md);
        gap: var(--spacing-xs);
        margin-top: 0;
        margin-bottom: var(--spacing-sm);
    }

    .app-store-badge img {
        height: 32px;
        max-width: 110px;
    }

    .install-app-btn {
        padding: var(--spacing-xs) var(--spacing-sm);
        font-size: 0.75rem;
    }
}

/* Features Section */
.features-section {
    padding: var(--section-padding);
    background: linear-gradient(135deg, #FFFFFF 0%, rgba(255, 107, 0, 0.04) 50%, #FAFAFA 100%);
    position: relative;
    overflow: hidden;
}

.features-section::before {
    content: '';
    position: absolute;
    top: 10%;
    right: -5%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255, 107, 0, 0.12) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 30s ease-in-out infinite;
    z-index: 0;
}

.features-section::after {
    content: '';
    position: absolute;
    bottom: 15%;
    left: -8%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255, 107, 0, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 25s ease-in-out infinite reverse;
    z-index: 0;
}

.features-container {
    max-width: var(--container-max);
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.features-header {
    text-align: center;
    margin-bottom: var(--section-header-margin-bottom);
    opacity: 0;
    animation: fadeInUp 1s ease 0.2s forwards;
}

.features-title {
    font-size: var(--heading-h2-size);
    font-weight: var(--heading-weight);
    line-height: var(--heading-line-height);
    letter-spacing: var(--heading-letter-spacing);
    font-family: var(--font-heading);
    color: var(--dark-text);
    margin-bottom: var(--section-title-margin-bottom);
}

.features-title .highlight {
    color: var(--primary-orange);
}

.features-subtitle {
    font-size: var(--body-size-large);
    font-weight: var(--body-weight);
    line-height: var(--body-line-height);
    letter-spacing: var(--body-letter-spacing);
    font-family: var(--font-body);
    color: var(--gray-text);
    max-width: 700px;
    margin: 0 auto;
}

.features-grid {
    display: flex;
    gap: var(--spacing-lg);
    margin-top: var(--spacing-2xl);
    width: 100%;
    align-items: flex-start;
}

.features-column {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
}

.feature-card {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: var(--border-radius);
    padding: var(--card-padding);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    opacity: 0;
    transform: translateY(30px);
    display: flex;
    flex-direction: column;
}

/* .feature-card.largexl {
            padding: 21px;
        } */

.feature-card.small {
    /* Text-only cards - compact, vertically centered content */
    justify-content: flex-start;
    min-height: auto;
    padding: var(--card-padding-mobile);
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-orange), rgba(255, 107, 53, 0.3));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 48px rgba(255, 107, 53, 0.15);
    border-color: rgba(255, 107, 53, 0.3);
}

.feature-card:hover::before {
    transform: scaleX(1);
}

.feature-card.animate {
    animation: slideInUp 0.6s ease forwards;
}

@keyframes slideInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.feature-icon {
    width: 56px;
    height: 56px;
    border-radius: var(--border-radius-small);
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.1), rgba(255, 107, 53, 0.05));
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--spacing-lg);
    font-size: 28px;
    transition: var(--transition-fast);
    flex-shrink: 0;
}

.feature-card.small .feature-icon {
    margin-bottom: var(--spacing-md);
}

.feature-card:hover .feature-icon {
    transform: scale(1.1) rotate(5deg);
}

.feature-card-title {
    font-size: var(--heading-h4-size);
    font-weight: var(--heading-weight);
    line-height: var(--heading-line-height);
    letter-spacing: var(--heading-letter-spacing);
    margin-bottom: 0.75rem;
    flex-shrink: 0;
}

.feature-card.small .feature-card-title {
    font-size: var(--heading-h5-size);
    margin-bottom: 0.625rem;
}

.feature-card-description {
    font-size: var(--body-size);
    font-family: var(--font-body);
    line-height: var(--body-line-height);
    letter-spacing: var(--body-letter-spacing);
    flex-shrink: 0;
}

.feature-card.small .feature-card-description {
    font-size: var(--body-size-small);
    line-height: 1.65;
}

.feature-visual {
    margin-top: var(--spacing-lg);
    border-radius: var(--spacing-sm);
    overflow: hidden;
    min-height: 360px;
    height: 360px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    flex-shrink: 0;
}

.feature-image {
    width: 112%;
    height: 117%;
    object-fit: contain;
    object-position: center;
    border-radius: var(--spacing-sm);
}

.feature-image-borderless {
    margin-top: -22px;

}

/* Floating animation for feature cards */
@keyframes float {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-10px);
    }
}

.feature-card:nth-child(1) {
    animation-delay: 0.1s;
}

.feature-card:nth-child(2) {
    animation-delay: 0.2s;
}

.feature-card:nth-child(3) {
    animation-delay: 0.3s;
}

.feature-card:nth-child(4) {
    animation-delay: 0.4s;
}

/* Responsive */
@media (max-width: 1024px) {
    .features-section {
        padding: 80px var(--spacing-2xl) 60px;
    }

    .features-title {
        font-size: clamp(1.875rem, 4vw, 2.25rem);
    }

    .features-subtitle {
        font-size: clamp(1rem, 2vw, 1.125rem);
    }

    .feature-card {
        padding: var(--spacing-lg);
    }

    .feature-card-title {
        font-size: clamp(1.125rem, 2.5vw, 1.25rem);
    }

    .feature-card-description {
        font-size: clamp(0.875rem, 2vw, 0.9375rem);
    }

    .feature-visual {
        min-height: 320px;
        height: 320px;
    }
}

@media (max-width: 968px) {
    .features-grid {
        flex-direction: column;
    }

    .features-column {
        width: 100%;
    }
}

@media (max-width: 768px) {
    .features-section {
        padding: var(--section-padding-tablet);
    }

    .features-header {
        margin-bottom: var(--spacing-2xl);
    }

    .features-title {
        font-size: clamp(1.75rem, 6vw, 2.25rem);
    }

    .features-subtitle {
        font-size: clamp(0.9375rem, 4vw, 1.125rem);
    }

    .features-grid {
        display: flex;
        overflow-x: auto;
        overflow-y: hidden;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: thin;
        gap: var(--spacing-md);
        padding-bottom: var(--spacing-sm);
    }

    .features-grid::-webkit-scrollbar {
        height: 6px;
    }

    .features-grid::-webkit-scrollbar-track {
        background: var(--gray-light);
        border-radius: 3px;
    }

    .features-grid::-webkit-scrollbar-thumb {
        background: var(--primary-orange);
        border-radius: 3px;
    }

    .features-column {
        flex: 0 0 85%;
        min-width: 85%;
        scroll-snap-align: start;
    }

    .feature-card {
        padding: var(--card-padding-mobile);
        min-height: auto;
    }

    .feature-title {
        font-size: clamp(1.125rem, 4vw, 1.375rem);
    }

    .feature-description {
        font-size: clamp(0.875rem, 3vw, 1rem);
    }

    .feature-visual {
        min-height: 280px;
        height: 280px;
    }

    .feature-visual-placeholder {
        height: 280px;
    }
}

@media (max-width: 480px) {
    .features-section {
        padding: var(--spacing-3xl) var(--spacing-md);
    }

    .features-column {
        flex: 0 0 90%;
        min-width: 90%;
    }
}

/* Who earnOn Is For Section - Beautiful International Design */
.who-section {
    padding: var(--section-padding);
    background: linear-gradient(180deg, #FFFFFF 0%, rgba(255, 107, 0, 0.02) 50%, #FFFFFF 100%);
    position: relative;
    overflow: hidden;
}

.who-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 20% 30%, rgba(255, 107, 0, 0.06) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(255, 107, 0, 0.04) 0%, transparent 50%);
    z-index: 0;
    pointer-events: none;
}

.who-container {
    max-width: var(--container-max);
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.who-header {
    text-align: center;
    margin-bottom: var(--section-header-margin-bottom);
    opacity: 0;
    animation: fadeInUp 1s ease 0.2s forwards;
}

.who-title {
    font-size: var(--heading-h2-size);
    font-weight: var(--heading-weight);
    line-height: var(--heading-line-height);
    letter-spacing: var(--heading-letter-spacing);
    font-family: var(--font-heading);
    color: var(--dark-text);
    margin-bottom: var(--section-title-margin-bottom);
}

.who-title .highlight {
    color: var(--primary-orange);
}

.who-subtitle {
    font-size: var(--body-size-large);
    font-weight: var(--body-weight);
    line-height: 1.7;
    letter-spacing: var(--body-letter-spacing);
    font-family: var(--font-body);
    color: var(--gray-text);
    max-width: 700px;
    margin: 0 auto var(--spacing-4xl);
}

.audience-section {
    margin-bottom: var(--spacing-5xl);
    position: relative;
}

.audience-section:last-child {
    margin-bottom: 0;
}

.audience-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-4xl);
    align-items: center;
    opacity: 0;
    transform: translateY(60px);
    transition: all 1s cubic-bezier(0.4, 0, 0.2, 1);
}

.audience-content.animate {
    opacity: 1;
    transform: translateY(0);
}

.audience-content.reverse {
    direction: rtl;
}

.audience-content.reverse>* {
    direction: ltr;
}

.audience-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    gap: var(--spacing-lg);
}

.audience-title {
    font-size: var(--heading-h3-size);
    font-weight: var(--heading-weight);
    line-height: var(--heading-line-height);
    letter-spacing: var(--heading-letter-spacing);
    margin-bottom: var(--spacing-lg);
    margin-top: 0;
    color: var(--dark-text);
}

.audience-description {
    font-size: var(--body-size-large);
    font-family: var(--font-body);
    line-height: 1.7;
    letter-spacing: var(--body-letter-spacing);
    margin-bottom: 0;
    margin-top: 0;
    color: var(--gray-text);
}

.audience-description:last-of-type {
    margin-bottom: 0;
}

.btn-more {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #f97316, #ef4444);
    color: var(--white);
    padding: 16px 40px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    font-family: var(--font-body);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    width: fit-content;
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(249, 115, 22, 0.3);
    margin-top: var(--spacing-lg);
}

.btn-more::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
}

.btn-more:hover::before {
    width: 300px;
    height: 300px;
}

.btn-more:hover {
    background: linear-gradient(135deg, #ef4444, #f97316);
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(249, 115, 22, 0.4);
}

.btn-more:active {
    transform: translateY(-2px);
}

.btn-more span {
    position: relative;
    z-index: 1;
}

.audience-visual {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    perspective: 1000px;
}

.phone-mockup {
    width: 100%;
    max-width: 420px;
    height: auto;
    filter: drop-shadow(0 24px 64px rgba(0, 0, 0, 0.12));
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    transform-style: preserve-3d;
    opacity: 0;
    transform: translateY(40px) rotateY(-10deg);
}

.audience-content.animate .phone-mockup {
    opacity: 1;
    transform: translateY(0) rotateY(0deg);
    transition-delay: 0.3s;
}

.audience-visual:hover .phone-mockup {
    transform: translateY(-12px) scale(1.03);
    filter: drop-shadow(0 32px 80px rgba(0, 0, 0, 0.18));
}

.phone-mockup img {
    width: 100%;
    height: auto;
    max-height: 600px;
    object-fit: contain;
    display: block;
    border-radius: 44px;
    transition: transform 0.6s ease;
}

.audience-visual:hover .phone-mockup img {
    transform: scale(1.02);
}

/* Decorative elements */
.audience-visual::before {
    content: '';
    position: absolute;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(255, 107, 53, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: -1;
    opacity: 0;
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.audience-content.animate .audience-visual::before {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1.5);
}

/* Responsive Design */
@media (max-width: 1200px) {
    .audience-content {
        gap: var(--spacing-3xl);
    }
}

@media (max-width: 1024px) {
    .who-section {
        padding: var(--section-padding-tablet);
    }

    .who-header {
        margin-bottom: var(--spacing-4xl);
    }

    .who-subtitle {
        margin-bottom: var(--spacing-3xl);
    }

    .audience-content {
        gap: var(--spacing-3xl);
    }

    .audience-section {
        margin-bottom: var(--spacing-4xl);
    }

    .audience-text {
        gap: var(--spacing-md);
    }
}

@media (max-width: 968px) {
    .who-section {
        padding: var(--section-padding-tablet);
    }

    .who-header {
        margin-bottom: var(--spacing-3xl);
    }

    .who-subtitle {
        margin-bottom: var(--spacing-2xl);
        font-size: var(--body-size);
    }

    .audience-content {
        grid-template-columns: 1fr;
        gap: var(--spacing-3xl);
    }

    .audience-content.reverse {
        direction: ltr;
    }

    .audience-visual {
        order: -1;
        max-width: 320px;
        margin: 0 auto var(--spacing-2xl);
    }

    .audience-section:nth-child(even) .audience-visual {
        order: -1;
    }

    .audience-text {
        text-align: center;
        gap: var(--spacing-md);
    }

    .audience-title {
        font-size: clamp(1.75rem, 5vw, 2rem);
        margin-bottom: var(--spacing-md);
    }

    .audience-description {
        font-size: var(--body-size);
        line-height: 1.6;
    }

    .phone-mockup {
        max-width: 320px;
    }

    .phone-mockup img {
        max-height: 500px;
    }

    .btn-more {
        margin: var(--spacing-md) auto 0;
    }
}

@media (max-width: 768px) {
    .who-section {
        padding: var(--spacing-4xl) var(--spacing-xl);
    }

    .who-title {
        font-size: clamp(1.75rem, 6vw, 2.25rem);
        margin-bottom: var(--spacing-md);
    }

    .who-subtitle {
        font-size: clamp(0.9375rem, 4vw, 1.125rem);
        margin-bottom: var(--spacing-2xl);
    }

    .audience-content {
        gap: var(--spacing-2xl);
    }

    .audience-section {
        margin-bottom: var(--spacing-3xl);
    }

    .audience-title {
        font-size: clamp(1.5rem, 5vw, 1.875rem);
        margin-bottom: var(--spacing-md);
    }

    .audience-description {
        font-size: clamp(0.9375rem, 3vw, 1.0625rem);
        line-height: 1.65;
    }

    .audience-visual {
        max-width: 300px;
    }

    .phone-mockup {
        max-width: 300px;
    }

    .phone-mockup img {
        max-height: 480px;
    }
}

@media (max-width: 640px) {
    .who-section {
        padding: var(--section-padding-mobile);
    }

    .who-title {
        font-size: clamp(1.5rem, 7vw, 2rem);
        margin-bottom: var(--spacing-sm);
    }

    .who-subtitle {
        font-size: clamp(0.875rem, 4vw, 1rem);
        margin-bottom: var(--spacing-xl);
        line-height: 1.6;
    }

    .audience-title {
        font-size: clamp(1.375rem, 6vw, 1.75rem);
        margin-bottom: var(--spacing-sm);
    }

    .audience-description {
        font-size: clamp(0.875rem, 3.5vw, 1rem);
        line-height: 1.6;
    }

    .audience-text {
        gap: var(--spacing-sm);
    }

    .btn-more {
        padding: 14px var(--spacing-lg);
        font-size: clamp(0.875rem, 3vw, 0.9375rem);
        width: 100%;
        max-width: 300px;
    }

    .audience-section {
        margin-bottom: var(--spacing-2xl);
    }

    .audience-content {
        gap: var(--spacing-xl);
    }

    .audience-visual {
        max-width: 280px;
        margin-bottom: var(--spacing-lg);
    }

    .phone-mockup {
        max-width: 280px;
    }

    .phone-mockup img {
        max-height: 450px;
    }
}

@media (max-width: 480px) {
    .who-section {
        padding: var(--spacing-3xl) var(--spacing-md);
    }

    .who-header {
        margin-bottom: var(--spacing-2xl);
    }

    .who-subtitle {
        margin-bottom: var(--spacing-lg);
    }

    .audience-section {
        margin-bottom: var(--spacing-xl);
    }

    .audience-content {
        gap: var(--spacing-lg);
    }

    .audience-text {
        gap: var(--spacing-xs);
    }

    .audience-title {
        font-size: clamp(1.25rem, 6vw, 1.5rem);
    }

    .audience-description {
        font-size: clamp(0.8125rem, 3.5vw, 0.9375rem);
    }

    .phone-mockup {
        max-width: 260px;
    }

    .phone-mockup img {
        max-height: 400px;
    }

    .btn-more {
        padding: 12px var(--spacing-md);
        font-size: 0.875rem;
    }
}

@media (max-width: 360px) {
    .who-section {
        padding: var(--spacing-2xl) var(--spacing-sm);
    }

    .audience-visual {
        max-width: 240px;
    }

    .phone-mockup {
        max-width: 240px;
    }

    .phone-mockup img {
        max-height: 380px;
    }
}

/* Why Creators Choose earnOn Section */
.why-section {
    padding: var(--section-padding);
    background: linear-gradient(135deg, rgba(255, 107, 0, 0.03) 0%, #FFFFFF 50%, rgba(255, 107, 0, 0.02) 100%);
    position: relative;
    overflow: hidden;
}

.why-section::before {
    content: '';
    position: absolute;
    top: -10%;
    right: 10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255, 107, 0, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 35s ease-in-out infinite;
    z-index: 0;
}

.why-container {
    max-width: var(--container-max);
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.why-header {
    text-align: center;
    margin-bottom: var(--section-header-margin-bottom);
    opacity: 0;
    animation: fadeInUp 1s ease 0.2s forwards;
}

.why-title {
    font-size: var(--heading-h2-size);
    font-weight: var(--heading-weight);
    line-height: var(--heading-line-height);
    letter-spacing: var(--heading-letter-spacing);
    font-family: var(--font-heading);
    color: var(--dark-text);
    margin-bottom: var(--section-title-margin-bottom);
}

.why-title .highlight {
    color: var(--primary-orange);
}

.why-tagline {
    font-size: var(--body-size-large);
    font-weight: var(--body-weight);
    line-height: var(--body-line-height);
    letter-spacing: var(--body-letter-spacing);
    font-family: var(--font-body);
    color: var(--gray-text);
    max-width: 700px;
    margin: 0 auto;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--spacing-xl);
    margin-top: var(--spacing-3xl);
    position: relative;
}

/* Uniform 2x2 Grid Layout */
.why-card:nth-child(1),
.why-card:nth-child(2),
.why-card:nth-child(3),
.why-card:nth-child(4) {
    grid-column: auto;
    grid-row: auto;
    margin-top: 0;
}

.why-card {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: var(--border-radius);
    padding: var(--spacing-lg);
    box-shadow: var(--shadow-md);
    transition: var(--transition-normal);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    min-height: 420px;
    height: 100%;
}

.why-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-orange), rgba(255, 107, 53, 0.3));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.why-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 48px rgba(255, 107, 53, 0.15);
    border-color: rgba(255, 107, 53, 0.3);
}

.why-card:hover::before {
    transform: scaleX(1);
}


.why-card-title {
    font-size: var(--heading-h4-size);
    font-weight: var(--heading-weight);
    line-height: var(--heading-line-height);
    letter-spacing: var(--heading-letter-spacing);
    margin-bottom: var(--spacing-sm);
}

.why-card-description {
    font-size: var(--body-size);
    font-family: var(--font-body);
    line-height: var(--body-line-height);
    letter-spacing: var(--body-letter-spacing);
    margin-bottom: var(--spacing-md);
    flex: 1;
}

.why-card-visual {
    margin-top: auto;
    border-radius: var(--spacing-sm);
    overflow: hidden;
    min-height: 240px;
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.why-card-visual img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    border-radius: var(--spacing-sm);
}

/* Responsive */
@media (max-width: 1024px) {
    .why-section {
        padding: 80px var(--spacing-2xl) 60px;
    }

    .why-title {
        font-size: clamp(1.875rem, 4vw, 2.25rem);
    }

    .why-tagline {
        font-size: clamp(1rem, 2vw, 1.125rem);
    }

    .why-grid {
        gap: var(--spacing-lg);
    }

    .why-card-title {
        font-size: clamp(1.125rem, 2.5vw, 1.25rem);
    }

    .why-card-description {
        font-size: clamp(0.875rem, 2vw, 0.9375rem);
    }

    .why-card-visual {
        min-height: 280px;
        height: 280px;
    }
}

@media (max-width: 968px) {
    .why-section {
        padding: var(--section-padding-tablet);
    }

    .why-header {
        margin-bottom: var(--spacing-2xl);
    }

    .why-title {
        font-size: clamp(1.75rem, 6vw, 2.25rem);
    }

    .why-tagline {
        font-size: clamp(0.9375rem, 4vw, 1.125rem);
    }

    .why-grid {
        display: flex;
        overflow-x: auto;
        overflow-y: hidden;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: thin;
        gap: var(--spacing-md);
        padding-bottom: var(--spacing-sm);
    }

    .why-grid::-webkit-scrollbar {
        height: 6px;
    }

    .why-grid::-webkit-scrollbar-track {
        background: var(--gray-light);
        border-radius: 3px;
    }

    .why-grid::-webkit-scrollbar-thumb {
        background: var(--primary-orange);
        border-radius: 3px;
    }

    .why-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-lg);
    }

    .why-card {
        flex: 0 0 90%;
        min-width: 90%;
        scroll-snap-align: start;
        grid-column: auto !important;
        grid-row: auto !important;
        margin-top: 0 !important;
        min-height: 420px;
    }

    .why-card-visual {
        min-height: 240px;
        height: 240px;
    }

    .why-card-title {
        font-size: clamp(1.125rem, 4vw, 1.375rem);
    }

    .why-card-description {
        font-size: clamp(0.875rem, 3vw, 1rem);
    }

    .why-card-visual {
        min-height: 280px;
        height: 280px;
    }
}

@media (max-width: 640px) {
    .why-section {
        padding: var(--section-padding-mobile);
    }

    .why-card {
        flex: 0 0 90%;
        min-width: 90%;
    }

    .why-card-visual {
        min-height: 240px;
        height: 240px;
    }
}

/* Core Features Section */
.core-features-section {
    padding: var(--section-padding);
    background: linear-gradient(180deg, #FAFAFA 0%, #FFFFFF 50%, rgba(255, 107, 0, 0.03) 100%);
    position: relative;
    overflow: hidden;
}

.core-features-section::after {
    content: '';
    position: absolute;
    bottom: -5%;
    left: 5%;
    width: 550px;
    height: 550px;
    background: radial-gradient(circle, rgba(255, 107, 0, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 28s ease-in-out infinite reverse;
    z-index: 0;
}

.core-features-container {
    max-width: var(--container-max);
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.core-features-header {
    text-align: center;
    margin-bottom: var(--section-header-margin-bottom);
    opacity: 0;
    animation: fadeInUp 1s ease 0.2s forwards;
}

.core-features-title {
    font-size: var(--heading-h2-size);
    font-weight: var(--heading-weight);
    line-height: var(--heading-line-height);
    letter-spacing: var(--heading-letter-spacing);
    font-family: var(--font-heading);
    color: var(--dark-text);
    margin-bottom: var(--section-title-margin-bottom);
}

.core-features-title .highlight {
    color: var(--primary-orange);
}

.core-features-intro {
    font-size: var(--body-size-large);
    font-weight: var(--body-weight);
    line-height: var(--body-line-height);
    letter-spacing: var(--body-letter-spacing);
    font-family: var(--font-body);
    color: var(--gray-text);
    max-width: 700px;
    margin: 0 auto;
}

.core-features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-xl);
    /* 3-column grid spacing */
    margin-top: var(--spacing-2xl);
}

.core-feature-card {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: var(--border-radius);
    padding: var(--card-padding);
    box-shadow: var(--shadow-md);
    transition: var(--transition-normal);
    position: relative;
    overflow: hidden;
    opacity: 0;
    transform: translateY(30px);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

/* Top row cards (1, 2, 3): Sharp edges on top - no border radius */
.core-feature-card:nth-child(1),
.core-feature-card:nth-child(2),
.core-feature-card:nth-child(3) {
    border-top-left-radius: 0;
    border-top-right-radius: 0;
}

/* Card 1, 3, 5 (odd): No top padding - image touches edge */
.core-feature-card:nth-child(odd) {
    padding-top: 0;
}

/* Card 2, 4, 6 (even): Keep top padding */
.core-feature-card:nth-child(even) {
    padding-top: 32px;
}

/* Bottom row cards (4, 5, 6): Curved edges on top */
.core-feature-card:nth-child(4),
.core-feature-card:nth-child(5),
.core-feature-card:nth-child(6) {
    border-top-left-radius: var(--border-radius);
    border-top-right-radius: var(--border-radius);
}

.core-feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-orange), rgba(255, 107, 53, 0.3));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.core-feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 48px rgba(255, 107, 53, 0.15);
    border-color: rgba(255, 107, 53, 0.3);
}

.core-feature-card:hover::before {
    transform: scaleX(1);
}

.core-feature-card.animate {
    animation: slideInUp 0.6s ease forwards;
}

.core-feature-visual {
    margin-bottom: var(--spacing-lg);
    overflow: hidden;
    min-height: 360px;
    height: 360px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

/* Top row images (1, 2, 3): Sharp edges on top */
.core-feature-card:nth-child(1) .core-feature-visual,
.core-feature-card:nth-child(2) .core-feature-visual,
.core-feature-card:nth-child(3) .core-feature-visual {
    margin-top: 0;
    border-top-left-radius: 0;
    border-top-right-radius: 0;
}

/* Bottom row images (4, 5, 6): Curved edges on top */
.core-feature-card:nth-child(4) .core-feature-visual,
.core-feature-card:nth-child(5) .core-feature-visual,
.core-feature-card:nth-child(6) .core-feature-visual {
    border-top-left-radius: var(--border-radius);
    border-top-right-radius: var(--border-radius);
}

.core-feature-visual img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
}

.core-feature-title {
    font-size: var(--heading-h5-size);
    font-weight: var(--heading-weight);
    line-height: var(--heading-line-height);
    letter-spacing: var(--heading-letter-spacing);
    margin-bottom: 0.75rem;
}

.core-feature-description {
    font-size: var(--body-size);
    font-family: var(--font-body);
    line-height: var(--body-line-height);
    letter-spacing: var(--body-letter-spacing);
}

/* Responsive */
@media (max-width: 1024px) {
    .core-features-section {
        padding: 80px var(--spacing-2xl) 60px;
    }

    .core-features-title {
        font-size: clamp(1.875rem, 4vw, 2.25rem);
    }

    .core-features-intro {
        font-size: clamp(1rem, 2vw, 1.125rem);
    }

    .core-features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--spacing-lg);
    }

    .core-feature-visual {
        min-height: 300px;
        height: 300px;
    }

    .core-feature-title {
        font-size: clamp(1.125rem, 2.5vw, 1.25rem);
    }

    .core-feature-description {
        font-size: clamp(0.875rem, 2vw, 0.9375rem);
    }
}

@media (max-width: 768px) {
    .core-features-section {
        padding: var(--section-padding-tablet);
    }

    .core-features-header {
        margin-bottom: var(--spacing-2xl);
    }

    .core-features-title {
        font-size: clamp(1.75rem, 6vw, 2.25rem);
    }

    .core-features-intro {
        font-size: clamp(0.9375rem, 4vw, 1.125rem);
    }

    .core-features-grid {
        display: flex;
        overflow-x: auto;
        overflow-y: hidden;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: thin;
        gap: var(--spacing-md);
        padding-bottom: var(--spacing-sm);
    }

    .core-features-grid::-webkit-scrollbar {
        height: 6px;
    }

    .core-features-grid::-webkit-scrollbar-track {
        background: var(--gray-light);
        border-radius: 3px;
    }

    .core-features-grid::-webkit-scrollbar-thumb {
        background: var(--primary-orange);
        border-radius: 3px;
    }

    .core-feature-card {
        flex: 0 0 85%;
        min-width: 85%;
        scroll-snap-align: start;
    }

    .core-feature-title {
        font-size: clamp(1.125rem, 4vw, 1.375rem);
    }

    .core-feature-description {
        font-size: clamp(0.875rem, 3vw, 1rem);
    }

    .core-feature-visual {
        min-height: 280px;
        height: 280px;
    }
}

@media (max-width: 640px) {
    .core-features-section {
        padding: var(--section-padding-mobile);
    }

    .core-feature-card {
        flex: 0 0 90%;
        min-width: 90%;
    }

    .core-feature-visual {
        min-height: 240px;
        height: 240px;
    }
}

/* Stay Connected Section */
.stay-connected-section {
    padding: var(--section-padding);
    background: linear-gradient(135deg, rgba(255, 107, 0, 0.04) 0%, #FFFFFF 50%, rgba(255, 107, 0, 0.02) 100%);
    position: relative;
    overflow: hidden;
}

.stay-connected-section::before {
    content: '';
    position: absolute;
    top: 15%;
    left: -8%;
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(255, 107, 0, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 32s ease-in-out infinite;
    z-index: 0;
}

.stay-connected-container {
    max-width: var(--container-max);
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.stay-connected-header {
    text-align: center;
    margin-bottom: var(--section-header-margin-bottom);
    opacity: 0;
    animation: fadeInUp 1s ease 0.2s forwards;
}

.stay-connected-title {
    font-size: var(--heading-h2-size);
    font-weight: var(--heading-weight);
    line-height: var(--heading-line-height);
    letter-spacing: var(--heading-letter-spacing);
    font-family: var(--font-heading);
    color: var(--dark-text);
    margin-bottom: var(--section-title-margin-bottom);
}

.stay-connected-title .highlight {
    color: var(--primary-orange);
}

.stay-connected-description {
    font-size: var(--body-size-large);
    font-weight: var(--body-weight);
    line-height: var(--body-line-height);
    letter-spacing: var(--body-letter-spacing);
    font-family: var(--font-body);
    color: var(--gray-text);
    font-family: var(--font-body);
    max-width: 800px;
    margin: 0 auto;
}

.creators-carousel {
    position: relative;
    margin-top: var(--spacing-2xl);
    /* padding: var(--spacing-xl) 0; */
    overflow: hidden;
}

.creators-carousel-wrapper {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.creators-track {
    display: flex;
    gap: var(--spacing-lg);
    will-change: transform;
}

.creator-card {
    flex: 0 0 280px;
    width: 280px;
    height: 420px;
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    cursor: pointer;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.creator-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.2);
}

.creator-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.creator-card-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: var(--spacing-xl);
    background: linear-gradient(to top, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.5) 50%, transparent 100%);
    z-index: 2;
}

.creator-card-title {
    font-size: 1.75rem;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.02em;
    font-family: var(--font-heading);
    color: var(--white);
    margin: 0 0 var(--spacing-xs) 0;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.8);
}


/* Responsive */
@media (max-width: 1024px) {
    .stay-connected-section {
        padding: 80px var(--spacing-2xl) 60px;
    }

    .stay-connected-title {
        font-size: clamp(1.875rem, 4vw, 2.25rem);
    }

    .stay-connected-description {
        font-size: clamp(1rem, 2vw, 1.125rem);
    }

    .creator-card {
        flex: 0 0 240px;
        width: 240px;
        height: 360px;
    }

    .creator-card-title {
        font-size: 1.5rem;
    }
}

@media (max-width: 768px) {
    .stay-connected-section {
        padding: var(--section-padding-tablet);
    }

    .creator-card {
        flex: 0 0 200px;
        width: 200px;
        height: 320px;
    }

    .creator-card-title {
        font-size: 1.35rem;
    }

    .creator-card-overlay {
        padding: var(--spacing-lg);
    }
}

@media (max-width: 640px) {
    .stay-connected-section {
        padding: var(--section-padding-mobile);
    }

    .creator-card {
        flex: 0 0 180px;
        width: 180px;
        height: 280px;
    }

    .creator-card-title {
        font-size: 1.2rem;
    }
}

/* All-in-One Creator Wallet Section */
.wallet-section {
    padding: var(--spacing-4xl) var(--spacing-2xl);
    background: linear-gradient(135deg, #FAFAFA 0%, #FFFFFF 50%, rgba(255, 107, 0, 0.03) 100%);
    position: relative;
    overflow: hidden;
}

.wallet-section::after {
    content: '';
    position: absolute;
    top: 20%;
    right: -5%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255, 107, 0, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 30s ease-in-out infinite;
    z-index: 0;
}

.wallet-container {
    max-width: var(--container-max);
    margin: 0 auto;
    width: 100%;
    position: relative;
    z-index: 1;
}

.wallet-content-wrapper {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 50px;
    align-items: center;
}

.wallet-image-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.wallet-image {
    width: 100%;
    height: auto;
    display: block;
    max-width: 400px;
    max-height: 650px;
    object-fit: contain;
    border-radius: var(--border-radius);
}

.wallet-content {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-xl);
}

.wallet-title {
    font-size: var(--heading-h2-size);
    font-weight: var(--heading-weight);
    line-height: var(--heading-line-height);
    letter-spacing: var(--heading-letter-spacing);
    font-family: var(--font-heading);
    color: var(--dark-text);
    margin-bottom: var(--section-title-margin-bottom);
}

.wallet-title .highlight {
    color: var(--primary-orange);
}

.wallet-description {
    font-size: var(--body-size-large);
    font-weight: var(--body-weight);
    line-height: var(--body-line-height);
    font-family: var(--font-body);
    color: var(--gray-text);
    margin: 0 0 var(--spacing-xl) 0;
}

.wallet-features-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-md);
}

.wallet-feature-card {
    /* Default state now matches the hover "active" look */
    background: linear-gradient(135deg, #FFFFFF 0%, rgba(255, 107, 0, 0.02) 100%);
    border-radius: var(--border-radius-small);
    padding: var(--spacing-lg) var(--spacing-xl);
    box-shadow: var(--shadow-md);
    transition: all var(--transition-normal);
    border: 1px solid var(--primary-orange);
    min-height: 120px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.wallet-feature-card:hover {
    transform: translateY(-2px);
    /* Keep hover subtle: slightly stronger shadow while keeping same background/border */
    box-shadow: 0 14px 40px rgba(0, 0, 0, 0.12);
}

.wallet-feature-title {
    font-size: clamp(1rem, 1.2vw, 1.125rem);
    font-weight: 600;
    font-family: var(--font-heading);
    color: var(--dark-text);
    margin-bottom: var(--spacing-xs);
    line-height: 1.3;
}

.wallet-feature-description {
    font-size: clamp(0.8125rem, 1vw, 0.9375rem);
    font-weight: var(--body-weight);
    line-height: 1.5;
    font-family: var(--font-body);
    color: var(--gray-text);
    margin: 0;
}

/* Responsive Design for Wallet Section */
@media (max-width: 1024px) {
    .wallet-section {
        padding: 80px var(--spacing-2xl) 60px;
    }

    .wallet-content-wrapper {
        grid-template-columns: 1fr;
        gap: var(--spacing-3xl);
    }

    .wallet-image-wrapper {
        order: 1;
        display: flex;
        justify-content: center;
    }

    .wallet-image {
        max-width: 400px;
        max-height: 600px;
        width: 100%;
    }

    .wallet-image {
        max-width: 350px;
        max-height: 550px;
    }

    .wallet-content {
        order: 2;
    }

    .wallet-title {
        font-size: clamp(1.875rem, 4vw, 2.25rem);
    }

    .wallet-description {
        font-size: clamp(1rem, 2vw, 1.125rem);
    }

    .wallet-features-grid {
        grid-template-columns: 1fr 1fr;
        gap: var(--spacing-md);
    }
}

@media (max-width: 768px) {
    .wallet-section {
        padding: var(--spacing-4xl) var(--spacing-lg);
    }

    .wallet-content-wrapper {
        grid-template-columns: 1fr;
        gap: var(--spacing-2xl);
    }

    .wallet-image-wrapper {
        order: 1;
    }

    .wallet-image {
        max-width: 300px;
        max-height: 500px;
    }

    .wallet-content {
        order: 2;
    }

    .wallet-title {
        font-size: clamp(1.75rem, 6vw, 2.25rem);
    }

    .wallet-description {
        font-size: clamp(0.9375rem, 4vw, 1.125rem);
        margin-bottom: var(--spacing-lg);
    }

    .wallet-features-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-sm);
    }

    .wallet-feature-card {
        min-height: 110px;
        padding: var(--spacing-md) var(--spacing-lg);
    }

    .wallet-feature-title {
        font-size: clamp(1rem, 4vw, 1.125rem);
    }

    .wallet-feature-description {
        font-size: clamp(0.8125rem, 3vw, 0.9375rem);
    }
}

@media (max-width: 480px) {
    .wallet-section {
        padding: var(--spacing-3xl) var(--spacing-md);
    }

    .wallet-image {
        max-width: 280px;
        max-height: 450px;
    }

    .wallet-feature-card {
        padding: var(--spacing-md) var(--spacing-lg);
        min-height: 100px;
    }
}

/* Market Place Section */
.marketplace-section {
    padding: var(--spacing-5xl) var(--spacing-2xl);
    background: linear-gradient(180deg, #FFFFFF 0%, #FAFAFA 50%, #F5F5F5 100%);
    position: relative;
    overflow: hidden;
}

.marketplace-section::before {
    content: '';
    position: absolute;
    bottom: 10%;
    left: -5%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255, 107, 0, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 35s ease-in-out infinite reverse;
    z-index: 0;
}

.marketplace-container {
    max-width: var(--container-max);
    margin: 0 auto;
    width: 100%;
    position: relative;
    z-index: 1;
}

.marketplace-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: var(--section-header-margin-bottom);
    gap: var(--spacing-2xl);
}

.marketplace-header-text {
    flex: 1;
}

.marketplace-title {
    font-size: var(--heading-h2-size);
    font-weight: var(--heading-weight);
    line-height: var(--heading-line-height);
    letter-spacing: var(--heading-letter-spacing);
    font-family: var(--font-heading);
    color: var(--dark-text);
    margin-bottom: var(--section-title-margin-bottom);
}

.marketplace-subtitle {
    font-size: var(--body-size-large);
    font-weight: var(--body-weight);
    line-height: var(--body-line-height);
    font-family: var(--font-body);
    color: var(--gray-text);
    margin: 0;
}

.marketplace-nav-buttons {
    display: flex;
    gap: var(--spacing-sm);
    align-items: center;
}

.marketplace-nav-btn {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 2px solid var(--primary-orange);
    background: transparent;
    color: var(--primary-orange);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition-normal);
    padding: 0;
}

.marketplace-nav-btn:hover {
    background: var(--primary-orange);
    color: var(--white);
    transform: scale(1.1);
}

.marketplace-nav-btn:active {
    transform: scale(0.95);
}

.marketplace-carousel-wrapper {
    position: relative;
    overflow: hidden;
    width: 100%;
    padding: 0;
    margin: 0;
}

.marketplace-carousel {
    display: flex;
    gap: var(--spacing-lg);
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform;
    padding-right: 0;
    margin-right: 0;
}

.marketplace-card {
    flex: 0 0 calc(25% - var(--spacing-lg) * 0.75);
    background: linear-gradient(180deg, #FFFFFF 0%, #FAFAFA 100%);
    border-radius: var(--border-radius-small);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-normal);
    border: 1px solid var(--gray-light);
    display: flex;
    flex-direction: column;
    position: relative;
}

.marketplace-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12);
    border-color: rgba(255, 107, 0, 0.2);
    background: linear-gradient(180deg, #FFFFFF 0%, #FFF8F5 100%);
}

/* Card Badges - Simplified */
.marketplace-card-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    background: rgba(0, 0, 0, 0.75);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    color: var(--white);
    padding: 6px 14px;
    border-radius: 6px;
    font-size: 11px;
    font-weight: 600;
    font-family: var(--font-body);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    z-index: 2;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.15);
}

.marketplace-card-badge-course,
.marketplace-card-badge-limited,
.marketplace-card-badge-exclusive {
    background: rgba(0, 0, 0, 0.75);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.15);
}

/* Remove unique card styles - use clean uniform design */
.marketplace-card-premium,
.marketplace-card-merch,
.marketplace-card-course,
.marketplace-card-limited,
.marketplace-card-template,
.marketplace-card-exclusive {
    /* Uniform styling - no special borders or backgrounds */
}

.marketplace-card-image {
    width: 100%;
    height: 280px;
    overflow: hidden;
    background: var(--gray-light);
}

.marketplace-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform var(--transition-normal);
}

.marketplace-card:hover .marketplace-card-image img {
    transform: scale(1.08);
}

.marketplace-card:hover .marketplace-card-badge {
    background: rgba(0, 0, 0, 0.85);
}

.marketplace-card-content {
    padding: var(--spacing-lg);
    display: flex;
    flex-direction: column;
    gap: var(--spacing-sm);
    flex: 1;
}

.marketplace-card-description {
    font-size: var(--body-size-small);
    font-family: var(--font-body);
    color: var(--gray-text);
    line-height: 1.5;
    margin: var(--spacing-xs) 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.marketplace-card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
    padding-top: var(--spacing-sm);
    gap: var(--spacing-sm);
}

.marketplace-card-footer .marketplace-card-price {
    margin: 0;
    flex: 1;
    text-align: left;
}

.marketplace-creator {
    display: flex;
    align-items: center;
    gap: var(--spacing-xs);
    font-size: var(--body-size-small);
    font-family: var(--font-body);
    color: var(--gray-text);
}

.creator-name {
    font-weight: 500;
}

.creator-verified {
    color: #1DA1F2;
    font-weight: bold;
    font-size: 1rem;
}

.marketplace-card-title {
    font-size: var(--heading-h5-size);
    font-weight: var(--heading-weight);
    font-family: var(--font-heading);
    color: var(--dark-text);
    margin: 0;
    line-height: 1.3;
}

.marketplace-card-price {
    font-size: var(--body-size-large);
    font-weight: 600;
    font-family: var(--font-body);
    color: var(--primary-orange);
    margin: var(--spacing-xs) 0;
}

.marketplace-shop-btn {
    position: relative;
    padding: var(--button-padding);
    min-height: var(--button-height);
    background: var(--dark-text);
    color: var(--white);
    border: none;
    border-radius: var(--border-radius-button);
    font-size: var(--button-size);
    font-weight: var(--button-weight);
    font-family: var(--font-body);
    cursor: pointer;
    transition: all var(--transition-normal);
    flex: 1;
    min-width: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    box-shadow: var(--shadow-button);
    white-space: nowrap;
}

.marketplace-shop-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.3) 0%, rgba(255, 255, 255, 0.1) 40%, transparent 70%);
    transform: translate(-50%, -50%);
    transition: width 0.6s cubic-bezier(0.4, 0, 0.2, 1), height 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    pointer-events: none;
    z-index: 0;
}

.marketplace-shop-btn::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0.05) 50%, transparent 70%);
    transform: translate(-50%, -50%);
    transition: width 0.8s cubic-bezier(0.4, 0, 0.2, 1), height 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    pointer-events: none;
    z-index: 0;
    animation: smokePuff 2s ease-out infinite;
}

.marketplace-shop-btn:hover::before {
    width: 300px;
    height: 300px;
}

.marketplace-shop-btn:hover::after {
    width: 250px;
    height: 250px;
    animation-delay: 0.2s;
}

.marketplace-shop-btn:hover {
    background: var(--primary-orange);
    transform: translateY(-2px);
    box-shadow: var(--shadow-button-hover);
}

.marketplace-shop-btn:active {
    transform: translateY(0);
}

.marketplace-shop-btn span,
.marketplace-shop-btn {
    position: relative;
    z-index: 1;
}

/* Responsive Design for Market Place Section */
@media (max-width: 1024px) {
    .marketplace-section {
        padding: 80px var(--spacing-2xl) 60px;
    }

    .marketplace-header {
        gap: var(--spacing-lg);
    }

    .marketplace-title {
        font-size: clamp(1.875rem, 4vw, 2.25rem);
    }

    .marketplace-subtitle {
        font-size: clamp(1rem, 2vw, 1.125rem);
    }

    .marketplace-card {
        flex: 0 0 calc(33.333% - var(--spacing-lg) * 0.67);
    }

    .marketplace-card-image {
        height: 260px;
    }
}

@media (max-width: 768px) {
    .marketplace-section {
        padding: var(--spacing-4xl) var(--spacing-lg);
    }

    .marketplace-header {
        flex-direction: column;
        align-items: flex-start;
        gap: var(--spacing-md);
    }

    .marketplace-nav-buttons {
        align-self: flex-end;
    }

    .marketplace-title {
        font-size: clamp(1.75rem, 6vw, 2.25rem);
    }

    .marketplace-subtitle {
        font-size: clamp(0.9375rem, 4vw, 1.125rem);
    }

    .marketplace-card {
        flex: 0 0 calc(50% - var(--spacing-lg) * 0.5);
    }

    .marketplace-card-image {
        height: 240px;
    }

    .marketplace-card-title {
        font-size: clamp(1rem, 4vw, 1.125rem);
    }

    .marketplace-card-price {
        font-size: clamp(1rem, 4vw, 1.125rem);
    }
}

@media (max-width: 640px) {
    .marketplace-section {
        padding: var(--spacing-3xl) var(--spacing-md);
    }

    .marketplace-card {
        flex: 0 0 85%;
    }

    .marketplace-card-image {
        height: 220px;
    }
}

/* Video Cards Section */
.video-cards-section {
    padding: var(--spacing-5xl) var(--spacing-2xl);
    background: linear-gradient(180deg, #FFFFFF 0%, rgba(255, 107, 0, 0.05) 50%, #FAFAFA 100%);
    position: relative;
    overflow: visible;
    min-height: 700px;
    display: block;
}

.video-cards-section::before {
    /* content: ''; */
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 1000px;
    height: 1000px;
    background: radial-gradient(circle, rgba(255, 107, 0, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 40s ease-in-out infinite;
    z-index: 0;
}

.video-cards-container {
    max-width: var(--container-max);
    margin: 0 auto;
    width: 100%;
    position: relative;
    z-index: 1;
    min-height: 600px;
}

.video-cards-grid {
    display: flex;
    gap: var(--spacing-lg);
    height: 600px;
    align-items: stretch;
    min-height: 600px;
}

.video-card {
    position: relative;
    flex: 1;
    border-radius: var(--border-radius);
    overflow: hidden;
    cursor: pointer;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: var(--shadow-sm);
    min-height: 100%;
    min-width: 0;
    display: flex;
    background: #000;
}

.video-card.active,
.video-card:hover {
    flex: 4;
    z-index: 10;
    box-shadow: var(--shadow-lg);
}

/* When one card is active, make others smaller */
.video-cards-grid.has-active .video-card:not(.active) {
    flex: 0.35;
}

.video-cards-grid:has(.video-card:hover) .video-card:not(:hover) {
    flex: 0.35;
}

/* Fallback for browsers that don't support :has() */
@supports not selector(:has(*)) {
    .video-cards-grid.has-hover .video-card:not(:hover) {
        flex: 0.35;
    }
}

.video-card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.video-card-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    display: block;
}

/* Fallback background for video cards */
.video-card-inner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 107, 0, 0.1) 0%, rgba(255, 107, 0, 0.05) 100%);
    z-index: 0;
}

.video-card-video {
    z-index: 1;
}

.video-card:hover .video-card-video,
.video-card.active .video-card-video {
    transform: scale(1.1);
}

.video-card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.3) 0%, transparent 50%, rgba(0, 0, 0, 0.5) 100%);
    opacity: 0.6;
    transition: opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    pointer-events: none;
}

.video-card:hover .video-card-overlay,
.video-card.active .video-card-overlay {
    opacity: 0.2;
}

.video-card-heading {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: var(--spacing-2xl) var(--spacing-xl);
    z-index: 3;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    pointer-events: none;
}

.video-card.active .video-card-heading,
.video-card:hover .video-card-heading {
    opacity: 1;
    transform: translateY(0);
}

.video-card-heading h3 {
    font-size: var(--heading-h2-size);
    font-weight: var(--heading-weight);
    line-height: var(--heading-line-height);
    letter-spacing: var(--heading-letter-spacing);
    font-family: var(--font-heading);
    color: var(--white);
    margin: 0;
    text-shadow: 0 4px 24px rgba(0, 0, 0, 0.8);
}

@media (max-width: 768px) {
    .video-card-heading h3 {
        font-size: var(--heading-h3-size);
    }
}

/* Responsive Design for Video Cards Section */
@media (max-width: 1024px) {
    .video-cards-grid {
        height: 500px;
    }

    .video-card.active,
    .video-card:hover {
        flex: 3.5;
    }

    .video-cards-grid.has-active .video-card:not(.active) {
        flex: 0.3;
    }
}

@media (max-width: 768px) {
    .video-cards-section {
        padding: var(--spacing-4xl) var(--spacing-lg);
    }

    .video-cards-grid {
        flex-direction: row;
        height: 400px;
        gap: var(--spacing-md);
        overflow-x: auto;
        overflow-y: hidden;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: thin;
        -ms-overflow-style: none;
    }

    .video-cards-grid::-webkit-scrollbar {
        height: 6px;
    }

    .video-cards-grid::-webkit-scrollbar-track {
        background: var(--gray-light);
        border-radius: 3px;
    }

    .video-cards-grid::-webkit-scrollbar-thumb {
        background: var(--primary-orange);
        border-radius: 3px;
    }

    .video-card {
        flex: 0 0 85%;
        height: 100%;
        min-width: 85%;
        min-height: 100%;
        scroll-snap-align: center;
    }

    .video-card.active,
    .video-card:hover {
        flex: 0 0 85%;
    }

    .video-cards-grid.has-active .video-card:not(.active) {
        flex: 0 0 85%;
    }

    .video-card-heading h3 {
        font-size: clamp(1.125rem, 4vw, 1.375rem);
        padding: var(--spacing-lg) var(--spacing-md);
        line-height: 1.3;
    }
}

@media (max-width: 480px) {
    .video-cards-section {
        padding: var(--spacing-3xl) var(--spacing-md);
    }

    .video-card {
        flex: 0 0 90%;
        min-width: 90%;
        height: 100%;
        min-height: 100%;
    }

    .video-cards-grid {
        height: 320px;
    }

    .video-card-heading h3 {
        font-size: clamp(1rem, 5vw, 1.25rem);
        padding: var(--spacing-md);
        line-height: 1.3;
    }
}

/* Why EarnOn is Special Section */
.why-earnon-special-section {
    padding: 100px var(--spacing-2xl) 80px;
    background: linear-gradient(180deg, #FFFFFF 0%, #FAFAFA 50%, #FFFFFF 100%);
    position: relative;
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.why-earnon-special-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 20% 30%, rgba(255, 107, 0, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(255, 107, 0, 0.02) 0%, transparent 50%);
    z-index: 0;
    pointer-events: none;
}

.why-earnon-special-container {
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
    position: relative;
    z-index: 1;
}

.why-earnon-cards-wrapper {
    position: relative;
    z-index: 1;
}

.why-earnon-headline {
    text-align: center;
    margin-bottom: 60px;
    opacity: 0;
    animation: fadeInUp 0.8s ease 0.1s forwards;
    position: relative;
    z-index: 1;
}

.why-earnon-main-title {
    font-size: clamp(1.875rem, 4vw, 2.75rem);
    font-weight: var(--heading-weight);
    line-height: 1.2;
    letter-spacing: -0.02em;
    font-family: var(--font-heading);
    color: #1a1a1a;
    margin: 0 0 24px 0;
}

.why-earnon-title-line1 {
    font-size: 0.85em;
}

.why-earnon-main-title .highlight {
    color: var(--primary-orange);
}

.why-earnon-subtitle {
    font-size: clamp(1rem, 2vw, 1.125rem);
    font-family: var(--font-body);
    line-height: 1.7;
    color: #666;
    max-width: 680px;
    margin: 0 auto;
    font-weight: 400;
}

/* Cards Wrapper */
.why-earnon-cards-wrapper {
    display: grid;
    grid-template-columns: 280px 1fr 280px;
    gap: 32px;
    align-items: start;
    max-width: 1200px;
    margin: 0 auto;
}

/* Problems Column - Left and Right Sides */
.why-earnon-problems-column {
    position: relative;
    height: 615px;
    overflow: hidden;
}

/* Override height for mobile column */
.why-earnon-problems-column.mobile-column {
    height: auto;
    overflow: visible;
}

.problems-scroll-container {
    position: relative;
    height: 100%;
    overflow: hidden;
    mask-image: linear-gradient(to bottom, transparent 0%, black 2%, black 98%, transparent 100%);
    -webkit-mask-image: linear-gradient(to bottom, transparent 0%, black 2%, black 98%, transparent 100%);
}

/* Ensure cards enter seamlessly without gap - smooth transition */
.problems-scroll-container .problems-scroll-track {
    margin: 0;
    padding: 0;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    transform: translateZ(0);
}

.problems-scroll-track {
    display: flex;
    flex-direction: column;
    gap: 16px;
    animation: scrollUp 30s linear infinite;
    will-change: transform;
}

.problems-scroll-track.right-track {
    animation: scrollUp 35s linear infinite;
}

@keyframes scrollUp {
    0% {
        transform: translate3d(0, 0, 0);
    }

    100% {
        transform: translate3d(0, -50%, 0);
    }
}

/* Ensure seamless scrolling - fade edges */
.problems-scroll-container::before,
.problems-scroll-container::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    height: 30px;
    z-index: 10;
    pointer-events: none;
}

.problems-scroll-container::before {
    top: 0;
    background: linear-gradient(to bottom, rgba(250, 250, 250, 1), rgba(250, 250, 250, 0));
}

.problems-scroll-container::after {
    bottom: 0;
    background: linear-gradient(to top, rgba(250, 250, 250, 1), rgba(250, 250, 250, 0));
}

.why-earnon-problems-column.left-column {
    opacity: 0;
    animation: fadeInUp 0.8s ease 0.2s forwards;
}

.why-earnon-problems-column.right-column {
    opacity: 0;
    animation: fadeInUp 0.8s ease 0.3s forwards;
}

/* Problem Cards */
.why-earnon-problem-card {
    background: linear-gradient(135deg, #FFFFFF 0%, #FEFEFE 100%);
    border-radius: 18px;
    padding: 24px;
    box-shadow: 0 2px 8px rgba(220, 38, 38, 0.08), 0 0 0 1px rgba(220, 38, 38, 0.1);
    border: 1px solid rgba(220, 38, 38, 0.12);
    position: relative;
    flex-shrink: 0;
    width: 100%;
    backdrop-filter: blur(10px);
    overflow: hidden;
}

.why-earnon-problem-card::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 200px;
    height: 200px;
    background: var(--logo-bg, transparent);
    opacity: 0.08;
    filter: blur(40px);
    z-index: 0;
    pointer-events: none;
}

.problem-platform-logo {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    z-index: 0;
    pointer-events: none;
}

.problem-platform-logo.blurred {
    filter: blur(6px);
    opacity: 0.5;
}

.problem-platform-logo svg {
    width: 60px;
    height: 60px;
    color: #666;
}

.problem-card-header {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 12px;
    margin-top: 0;
    position: relative;
    z-index: 2;
}

.problem-card-icon {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(220, 38, 38, 0.1) 0%, rgba(220, 38, 38, 0.06) 100%);
    border-radius: 6px;
    color: #dc2626;
    border: 1px solid rgba(220, 38, 38, 0.1);
}

.problem-card-icon svg {
    width: 12px;
    height: 12px;
}

.problem-card-badge {
    display: inline-block;
    background: linear-gradient(135deg, rgba(220, 38, 38, 0.12) 0%, rgba(220, 38, 38, 0.08) 100%);
    color: #dc2626;
    padding: 5px 12px;
    border-radius: 8px;
    font-size: 0.6875rem;
    font-weight: 600;
    font-family: var(--font-body);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border: 1px solid rgba(220, 38, 38, 0.15);
}

.problem-card-title {
    font-size: 1rem;
    font-weight: 600;
    font-family: var(--font-heading);
    color: #1a1a1a;
    margin: 0 0 8px 0;
    line-height: 1.4;
    position: relative;
    z-index: 2;
}

.problem-card-text {
    font-size: 0.875rem;
    font-family: var(--font-body);
    line-height: 1.6;
    color: #666;
    margin: 0;
}

.problem-card-content {
    margin-top: 12px;
    position: relative;
    z-index: 2;
}

.problem-section,
.reality-section {
    margin-bottom: 14px;
}

.problem-section:last-child,
.reality-section:last-child {
    margin-bottom: 0;
}

.problem-label,
.reality-label {
    font-size: 0.8125rem;
    font-weight: 700;
    font-family: var(--font-heading);
    color: #dc2626;
    margin: 0 0 6px 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.reality-label {
    color: #991b1b;
}

.problem-text,
.reality-text {
    font-size: 0.875rem;
    font-family: var(--font-body);
    line-height: 1.6;
    color: #666;
    margin: 0;
}

/* Central Solution Card */
.why-earnon-solution-card {
    background: linear-gradient(135deg, #FFFFFF 0%, #FFFBF8 100%);
    border-radius: 28px;
    padding: 40px 36px;
    box-shadow: 0 8px 32px rgba(255, 107, 0, 0.12), 0 0 0 1px rgba(255, 107, 0, 0.15), inset 0 1px 0 rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(255, 107, 0, 0.2);
    opacity: 0;
    animation: fadeInUp 0.8s ease 0.4s forwards;
    position: relative;
    transition: all 0.3s ease;
    justify-self: center;
    max-width: 100%;
    backdrop-filter: blur(10px);
    overflow: hidden;
}

.solution-card-image {
    position: absolute;
    top: 20px;
    right: 50px;
    width: 80px;
    height: 80px;
    z-index: 1;
    overflow: hidden;
}

.solution-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 0 28px 0 0;
}

.why-earnon-solution-card::after {
    content: '';
    position: absolute;
    top: -1px;
    left: -1px;
    right: -1px;
    bottom: -1px;
    background: linear-gradient(135deg, rgba(255, 107, 0, 0.1), rgba(255, 107, 0, 0.05));
    border-radius: 28px;
    z-index: -1;
    opacity: 0.5;
}

.solution-card-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, rgba(255, 107, 0, 0.15) 0%, rgba(255, 107, 0, 0.1) 100%);
    color: var(--primary-orange);
    padding: 10px 18px;
    border-radius: 10px;
    font-size: 20px;
    font-weight: 600;
    font-family: var(--font-body);
    margin-bottom: 28px;
    border: 1px solid rgba(255, 107, 0, 0.2);
    box-shadow: 0 2px 8px rgba(255, 107, 0, 0.1);
}

.badge-icon {
    font-size: 1rem;
}

.solution-card-logo {
    margin-bottom: 16px;
}

.earnon-logo-text {
    font-size: 2.25rem;
    font-weight: 700;
    font-family: var(--font-heading);
    color: var(--primary-orange);
    letter-spacing: -0.02em;
    display: inline;
    margin-right: 8px;
}

.solution-card-title {
    font-size: 1.875rem;
    font-weight: 700;
    font-family: var(--font-heading);
    color: #1a1a1a;
    margin: 0 0 14px 0;
    line-height: 1.3;
    letter-spacing: -0.01em;
    display: block;
}

.solution-card-title .earnon-logo-text {
    display: inline;
}

.solution-card-title .highlight {
    color: var(--primary-orange);
}

.solution-card-description {
    font-size: 1rem;
    font-family: var(--font-body);
    line-height: 1.7;
    color: #666;
    margin: 0 0 28px 0;
}

.solution-features {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-bottom: 32px;
}

.solution-feature-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 0.9375rem;
    font-family: var(--font-body);
    line-height: 1.6;
    color: #666;
}

.feature-check-wrapper {
    width: 22px;
    height: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(255, 107, 0, 0.12) 0%, rgba(255, 107, 0, 0.08) 100%);
    border-radius: 6px;
    color: var(--primary-orange);
    flex-shrink: 0;
    margin-top: 2px;
    border: 1px solid rgba(255, 107, 0, 0.15);
}

.feature-check-wrapper svg {
    width: 12px;
    height: 12px;
}

.solution-feature-item strong {
    color: #1a1a1a;
    font-weight: 600;
}

.solution-cta {
    padding-top: 28px;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.solution-cta-button {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, var(--primary-orange) 0%, #ef4444 100%);
    color: white;
    padding: 14px 28px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9375rem;
    font-family: var(--font-body);
    transition: all 0.3s ease;
    margin-bottom: 12px;
    box-shadow: 0 4px 12px rgba(255, 107, 0, 0.25);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.solution-cta-button svg {
    transition: transform 0.3s ease;
}

.solution-cta-button:hover {
    background: linear-gradient(135deg, #ef4444 0%, var(--primary-orange) 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(255, 107, 0, 0.35);
}

.solution-cta-button:hover svg {
    transform: translateX(3px);
}

.solution-cta-note {
    font-size: 13px;
    font-family: var(--font-body);
    color: #666;
    margin: 0 0 24px 0;
    text-align: left;
    line-height: 1.5;
    font-style: italic;
}

/* Responsive Design for Why EarnOn Special Section */
@media (max-width: 1200px) {
    .why-earnon-problem-card {
        width: 220px;
    }

    .why-earnon-problem-card.card-1 {
        left: 2%;
    }

    .why-earnon-problem-card.card-2 {
        right: 2%;
    }
}

@media (max-width: 1024px) {
    .why-earnon-special-section {
        padding: 80px var(--spacing-2xl) 40px;
        min-height: auto;
    }

    .why-earnon-headline {
        margin-bottom: 48px;
    }

    .why-earnon-main-title {
        font-size: clamp(1.75rem, 5vw, 2.5rem);
        margin-bottom: 20px;
    }

    .why-earnon-subtitle {
        font-size: clamp(0.9375rem, 2.5vw, 1.0625rem);
    }

    .why-earnon-cards-wrapper {
        grid-template-columns: 220px 1fr 220px;
        gap: 24px;
        align-items: start;
    }

    /* Ensure desktop columns are visible on tablets */
    .why-earnon-problems-column.left-column,
    .why-earnon-problems-column.right-column {
        display: block !important;
    }

    /* Hide mobile column on larger tablets */
    .why-earnon-problems-column.mobile-column {
        display: none !important;
    }

    .why-earnon-problems-column {
        height: auto;
        /* min-height: 500px; */
        max-height: 550px;
    }

    .why-earnon-solution-card {
        margin-top: 0;
        align-self: start;
    }

    .why-earnon-problem-card {
        padding: 20px;
    }

    .problem-card-title {
        font-size: 0.9375rem;
    }

    .reality-text,
    .problem-text {
        font-size: 0.8125rem;
    }

    .why-earnon-solution-card {
        padding: 36px 28px;
        margin-bottom: 0;
    }

    .solution-card-image {
        width: 120px;
        height: 120px;
    }

    .solution-card-title {
        font-size: clamp(1.5rem, 4vw, 1.75rem);
    }

    .solution-card-description {
        font-size: clamp(0.9375rem, 2vw, 1rem);
    }

    .solution-feature-item {
        font-size: clamp(0.875rem, 2vw, 0.9375rem);
    }
}

@media (min-width: 901px) and (max-width: 1024px) {

    /* Ensure desktop columns stay visible on tablets between 901-1024px */
    .why-earnon-problems-column.left-column,
    .why-earnon-problems-column.right-column {
        display: block !important;
    }

    .why-earnon-problems-column.mobile-column {
        display: none !important;
    }

    .why-earnon-problems-column {
        height: auto;
        min-height: 500px;
        max-height: 550px;
    }

    .why-earnon-cards-wrapper {
        align-items: start;
    }

    .why-earnon-solution-card {
        margin-top: 0;
        align-self: start;
    }
}

@media (max-width: 900px) {
    .why-earnon-special-section {
        padding: 70px var(--spacing-xl) 50px;
        min-height: auto;
    }

    .why-earnon-headline {
        margin-bottom: 40px;
    }

    .why-earnon-main-title {
        font-size: clamp(1.625rem, 6vw, 2.25rem);
        margin-bottom: 16px;
    }

    .why-earnon-subtitle {
        font-size: clamp(0.9375rem, 3vw, 1.0625rem);
    }

    .why-earnon-cards-wrapper {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    /* Hide desktop columns on smaller tablets */
    .why-earnon-problems-column.left-column,
    .why-earnon-problems-column.right-column {
        display: none !important;
    }

    /* Show mobile horizontal scroll */
    .why-earnon-problems-column.mobile-column {
        display: block !important;
        order: 2;
        margin-top: 24px;
        width: 100%;
        height: auto !important;
        overflow: visible;
    }

    .why-earnon-solution-card {
        order: 1;
        padding: 32px 24px;
        width: 100%;
    }

    .solution-card-title {
        font-size: clamp(1.375rem, 5vw, 1.625rem);
    }

    .solution-card-title .earnon-logo-text {
        font-size: clamp(1.5rem, 5vw, 1.875rem);
    }

    .solution-card-description {
        font-size: clamp(0.9375rem, 3vw, 1rem);
    }
}

@media (max-width: 768px) {
    .why-earnon-special-section {
        padding: 60px var(--spacing-md) 40px;
        min-height: auto;
    }

    .why-earnon-headline {
        margin-bottom: 36px;
    }

    .why-earnon-main-title {
        font-size: clamp(1.625rem, 6vw, 2.25rem);
        margin-bottom: 16px;
        line-height: 1.3;
    }

    .why-earnon-subtitle {
        font-size: clamp(0.9375rem, 3vw, 1.0625rem);
        line-height: 1.6;
    }

    .why-earnon-cards-wrapper {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    /* Hide both scrolling columns on mobile - we'll show cards differently */
    .why-earnon-problems-column.left-column,
    .why-earnon-problems-column.right-column {
        display: none;
    }

    /* Show problem cards in a horizontal scroll below solution card */
    .why-earnon-problems-column.mobile-column {
        display: block;
        height: auto !important;
        overflow: visible;
        order: 2;
        margin-top: 24px;
        width: 100%;
    }

    .why-earnon-solution-card {
        order: 1;
        padding: 28px 20px;
        width: 100%;
        box-sizing: border-box;
    }

    .solution-card-image {
        position: absolute;
        top: 16px;
        right: 16px;
        width: 80px;
        height: 80px;
        margin-bottom: 0;
        border-radius: 12px;
        overflow: hidden;
    }

    .solution-card-image img {
        border-radius: 12px;
    }

    .solution-card-badge {
        padding: 8px 16px;
        font-size: 0.875rem;
        margin-bottom: 24px;
    }

    .solution-card-title {
        font-size: clamp(1.375rem, 5vw, 1.625rem);
        margin-bottom: 12px;
    }

    .solution-card-title .earnon-logo-text {
        font-size: clamp(1.5rem, 5vw, 1.875rem);
        margin-right: 6px;
    }

    .solution-card-description {
        font-size: clamp(0.9375rem, 3vw, 1rem);
        line-height: 1.6;
        margin-bottom: 24px;
    }

    .solution-features {
        gap: 12px;
        margin-bottom: 28px;
    }

    .solution-feature-item {
        font-size: clamp(0.875rem, 3vw, 0.9375rem);
        gap: 10px;
    }

    .feature-check-wrapper {
        width: 20px;
        height: 20px;
        margin-top: 1px;
    }

    .feature-check-wrapper svg {
        width: 11px;
        height: 11px;
    }

    .solution-cta {
        padding-top: 24px;
    }

    .solution-cta-button {
        padding: 12px 24px;
        font-size: clamp(0.875rem, 3vw, 0.9375rem);
        width: 100%;
        justify-content: center;
    }
}

/* Mobile Horizontal Scroll for Problem Cards */
.why-earnon-problems-column.mobile-column {
    display: none;
    width: 100%;
    margin-top: 32px;
    height: auto !important;
    overflow: visible;
}

.why-earnon-problems-column.mobile-column .problems-scroll-container {
    height: auto;
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x mandatory;
    scrollbar-width: thin;
    padding: 8px var(--spacing-md) 16px;
    margin: 0;
    position: relative;
    width: 100%;
    box-sizing: border-box;
}

/* Add fade gradient hint on mobile scroll */
.why-earnon-problems-column.mobile-column .problems-scroll-container::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: 40px;
    background: linear-gradient(to left, rgba(250, 250, 250, 1), transparent);
    pointer-events: none;
    z-index: 1;
}

.why-earnon-problems-column.mobile-column .problems-scroll-container::before {
    display: none;
}

.why-earnon-problems-column.mobile-column .problems-scroll-container::-webkit-scrollbar {
    height: 4px;
}

.why-earnon-problems-column.mobile-column .problems-scroll-container::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, 0.05);
    border-radius: 2px;
}

.why-earnon-problems-column.mobile-column .problems-scroll-container::-webkit-scrollbar-thumb {
    background: rgba(220, 38, 38, 0.3);
    border-radius: 2px;
}

.why-earnon-problems-column.mobile-column .problems-scroll-container::-webkit-scrollbar-thumb:hover {
    background: rgba(220, 38, 38, 0.5);
}

.why-earnon-problems-column.mobile-column .problems-scroll-track {
    display: flex;
    flex-direction: row;
    gap: 16px;
    animation: none;
    width: max-content;
    padding: 0;
    margin: 0;
}

@media (max-width: 480px) {
    .why-earnon-problems-column.mobile-column .problems-scroll-track {
        padding-left: 0;
        padding-right: 0;
    }
}

.why-earnon-problems-column.mobile-column .why-earnon-problem-card {
    flex: 0 0 280px;
    min-width: 280px;
    max-width: 280px;
    scroll-snap-align: start;
    height: auto;
    padding: 20px;
}

@media (max-width: 374px) {
    .why-earnon-problems-column.mobile-column .why-earnon-problem-card {
        flex: 0 0 calc(100vw - 80px);
        min-width: calc(100vw - 80px);
        max-width: calc(100vw - 80px);
    }
}

.why-earnon-problems-column.mobile-column .problem-card-title {
    font-size: 0.9375rem;
    margin-bottom: 8px;
}

.why-earnon-problems-column.mobile-column .reality-text {
    font-size: 0.8125rem;
    line-height: 1.5;
}

.why-earnon-problems-column.mobile-column .problem-card-badge {
    font-size: 0.625rem;
    padding: 4px 10px;
}

@media (max-width: 768px) {
    .why-earnon-problems-column.mobile-column {
        display: block;
        height: auto !important;
        overflow: visible;
    }
}

@media (max-width: 480px) {
    .why-earnon-special-section {
        padding: 40px var(--spacing-md) 32px;
        min-height: auto;
    }

    .why-earnon-headline {
        margin-bottom: 32px;
    }

    .why-earnon-main-title {
        font-size: clamp(1.5rem, 7vw, 2rem);
        margin-bottom: 12px;
        line-height: 1.25;
    }

    .why-earnon-subtitle {
        font-size: clamp(0.875rem, 3.5vw, 1rem);
        line-height: 1.6;
    }

    .why-earnon-cards-wrapper {
        gap: 28px;
    }

    .why-earnon-problems-column.mobile-column {
        margin-top: 20px;
    }

    .why-earnon-problems-column.mobile-column .problems-scroll-container {
        margin: 0;
        padding: 8px var(--spacing-md) 16px;
        width: 100%;
        box-sizing: border-box;
    }

    .why-earnon-problems-column.mobile-column .problems-scroll-track {
        padding-left: 0;
        padding-right: 0;
    }

    .why-earnon-problems-column.mobile-column .why-earnon-problem-card {
        flex: 0 0 calc(100vw - 80px);
        min-width: calc(100vw - 80px);
        max-width: calc(100vw - 80px);
        padding: 18px;
        box-sizing: border-box;
    }

    @media (min-width: 375px) {
        .why-earnon-problems-column.mobile-column .why-earnon-problem-card {
            flex: 0 0 280px;
            min-width: 280px;
            max-width: 280px;
        }
    }

    .why-earnon-problems-column.mobile-column .problem-card-title {
        font-size: 0.875rem;
    }

    .why-earnon-problems-column.mobile-column .reality-text {
        font-size: 0.75rem;
    }

    .why-earnon-solution-card {
        padding: 28px 20px;
    }

    .solution-card-image {
        top: 12px;
        right: 12px;
        width: 80px;
        height: 80px;
    }

    .solution-card-badge {
        padding: 6px 14px;
        font-size: 0.8125rem;
        margin-bottom: 20px;
    }

    .solution-card-title {
        font-size: clamp(1.25rem, 6vw, 1.375rem);
        margin-bottom: 10px;
    }

    .solution-card-title .earnon-logo-text {
        font-size: clamp(1.375rem, 6vw, 1.625rem);
        margin-right: 6px;
    }

    .solution-card-description {
        font-size: clamp(0.875rem, 3.5vw, 0.9375rem);
        line-height: 1.6;
        margin-bottom: 20px;
    }

    .solution-features {
        gap: 10px;
        margin-bottom: 24px;
    }

    .solution-feature-item {
        font-size: clamp(0.8125rem, 3.5vw, 0.875rem);
        gap: 8px;
    }

    .feature-check-wrapper {
        width: 18px;
        height: 18px;
    }

    .feature-check-wrapper svg {
        width: 10px;
        height: 10px;
    }

    .solution-cta {
        padding-top: 20px;
    }

    .solution-cta-button {
        padding: 12px 20px;
        font-size: clamp(0.8125rem, 3.5vw, 0.875rem);
    }
}

@media (max-width: 360px) {
    .why-earnon-special-section {
        padding: 32px var(--spacing-sm) 24px;
        min-height: auto;
    }

    .why-earnon-headline {
        margin-bottom: 28px;
    }

    .why-earnon-main-title {
        font-size: clamp(1.375rem, 8vw, 1.875rem);
        margin-bottom: 10px;
    }

    .why-earnon-subtitle {
        font-size: clamp(0.8125rem, 4vw, 0.9375rem);
    }

    .why-earnon-cards-wrapper {
        gap: 24px;
    }

    .why-earnon-problems-column.mobile-column .why-earnon-problem-card {
        flex: 0 0 calc(100vw - 64px);
        min-width: calc(100vw - 64px);
        max-width: calc(100vw - 64px);
        padding: 16px;
        box-sizing: border-box;
    }

    .why-earnon-problems-column.mobile-column .problem-card-title {
        font-size: 0.8125rem;
    }

    .why-earnon-problems-column.mobile-column .reality-text {
        font-size: 0.6875rem;
    }

    .why-earnon-solution-card {
        padding: 24px 16px;
        box-sizing: border-box;
    }

    .solution-card-image {
        top: 10px;
        right: 10px;
        width: 70px;
        height: 70px;
    }

    .solution-card-badge {
        padding: 5px 12px;
        font-size: 0.75rem;
        margin-bottom: 16px;
    }

    .solution-card-title {
        font-size: clamp(1.125rem, 7vw, 1.25rem);
    }

    .solution-card-title .earnon-logo-text {
        font-size: clamp(1.25rem, 7vw, 1.5rem);
        margin-right: 4px;
    }

    .solution-card-description {
        font-size: clamp(0.8125rem, 4vw, 0.875rem);
        margin-bottom: 18px;
    }

    .solution-feature-item {
        font-size: clamp(0.75rem, 4vw, 0.8125rem);
    }

    .solution-cta-button {
        padding: 10px 18px;
        font-size: clamp(0.75rem, 4vw, 0.8125rem);
    }
}

/* Place Your Brand Section */
.brand-section {
    padding: var(--spacing-5xl) var(--spacing-2xl);
    background: linear-gradient(135deg, #FFFFFF 0%, rgba(255, 107, 0, 0.04) 100%);
    position: relative;
    overflow: hidden;
}

.brand-section::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    /* background: linear-gradient(135deg, rgba(255, 107, 0, 0.06) 0%, transparent 100%); */
    z-index: 0;
}

.brand-container {
    max-width: var(--container-max);
    margin: 0 auto;
    width: 100%;
    position: relative;
    z-index: 1;
}

.brand-header {
    text-align: center;
    margin-bottom: var(--section-header-margin-bottom);
}

.brand-title {
    font-size: var(--heading-h2-size);
    font-weight: var(--heading-weight);
    line-height: var(--heading-line-height);
    letter-spacing: var(--heading-letter-spacing);
    font-family: var(--font-heading);
    color: var(--dark-text);
    margin-bottom: var(--section-title-margin-bottom);
}

.brand-title .highlight {
    color: var(--primary-orange);
}

.brand-subtitle {
    font-size: var(--body-size-large);
    font-weight: var(--body-weight);
    line-height: var(--body-line-height);
    font-family: var(--font-body);
    color: var(--gray-text);
    margin: 0;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.brand-images-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-lg);
}

.brand-image-wrapper {
    position: relative;
    overflow: hidden;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-md);
    transition: all var(--transition-normal);
}

.brand-image-wrapper:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.brand-image {
    width: 100%;
    height: auto;
    display: block;
    transition: transform var(--transition-normal);
}

.brand-image-wrapper:hover .brand-image {
    transform: scale(1.05);
}

/* Responsive Design for Brand Section */
@media (max-width: 1024px) {
    .brand-section {
        padding: var(--spacing-4xl) var(--spacing-lg);
    }

    .brand-title {
        font-size: clamp(1.75rem, 6vw, 2.25rem);
    }

    .brand-subtitle {
        font-size: clamp(0.9375rem, 4vw, 1.125rem);
    }

    .brand-images-grid {
        gap: var(--spacing-md);
    }
}

@media (max-width: 768px) {
    .brand-section {
        padding: var(--spacing-4xl) var(--spacing-lg);
    }

    .brand-header {
        margin-bottom: var(--spacing-2xl);
    }

    .brand-title {
        font-size: clamp(1.5rem, 6vw, 2rem);
    }

    .brand-subtitle {
        font-size: clamp(0.875rem, 4vw, 1rem);
    }

    .brand-section {
        padding: var(--spacing-3xl) var(--spacing-md);
    }

    .brand-images-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-lg);
    }
}

@media (max-width: 480px) {
    .brand-section {
        padding: var(--spacing-3xl) var(--spacing-md);
    }

    .footer-section {
        padding: var(--spacing-3xl) var(--spacing-md) var(--spacing-lg);
    }

    .footer-social-icons {
        gap: var(--spacing-sm);
    }

    .social-icon {
        width: 36px;
        height: 36px;
    }

    .footer-app-stores {
        gap: var(--spacing-xs);
        margin-top: var(--spacing-sm);
    }

    .footer-app-store-badge img {
        height: 36px;
    }
}





/* ============================================
           AUTH MODALS - Login and Signup
           ============================================ */

.auth-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.auth-modal.active {
    opacity: 1;
    visibility: visible;
}

.auth-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
}

.auth-modal-container {
    position: relative;
    background: #FFFFFF;
    border-radius: 16px;
    max-width: 440px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.12), 0 0 0 1px rgba(0, 0, 0, 0.04);
    transform: scale(0.95) translateY(20px);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1;
    margin: auto;
}

.auth-modal-container::-webkit-scrollbar {
    width: 6px;
}

.auth-modal-container::-webkit-scrollbar-track {
    background: transparent;
}

.auth-modal-container::-webkit-scrollbar-thumb {
    background: #E0E0E0;
    border-radius: 3px;
}

.auth-modal-container::-webkit-scrollbar-thumb:hover {
    background: #CCCCCC;
}

.auth-modal.active .auth-modal-container {
    transform: scale(1) translateY(0);
}

.auth-modal-close {
    position: absolute;
    top: 16px;
    right: 16px;
    background: transparent;
    border: none;
    font-size: 20px;
    color: #666666;
    cursor: pointer;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
    transition: all 0.2s ease;
    z-index: 10;
}

.auth-modal-close:hover {
    background: #F5F5F5;
    color: var(--dark-text);
}

.auth-modal-content {
    padding: 28px 24px;
}

.auth-form-header {
    text-align: center;
    margin-bottom: 20px;
}

.auth-form-header h2 {
    font-size: 24px;
    font-weight: 600;
    font-family: var(--font-heading);
    color: var(--dark-text);
    margin: 0 0 6px 0;
}

.auth-form-header p {
    font-size: 14px;
    color: #666666;
    margin: 0;
}

.auth-form-group {
    margin-bottom: 14px;
}

.auth-form-label {
    display: block;
    font-size: var(--body-size);
    font-weight: 500;
    color: var(--dark-text);
    margin-bottom: var(--spacing-xs);
    font-family: var(--font-body);
}

.auth-form-input {
    width: 100%;
    padding: var(--spacing-md);
    border: 2px solid var(--gray-light);
    border-radius: var(--border-radius-small);
    font-size: var(--body-size);
    font-family: var(--font-body);
    transition: all var(--transition-normal);
    background: var(--white);
    color: var(--dark-text);
}

.auth-form-input:focus {
    outline: none;
    border-color: var(--primary-orange);
    box-shadow: 0 0 0 3px rgba(255, 107, 0, 0.1);
}

.auth-form-password {
    position: relative;
}

.auth-form-password .pass-eye-icon {
    position: absolute;
    right: var(--spacing-md);
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
    color: var(--gray-text);
    font-size: 1.2rem;
    transition: color 0.3s ease;
}

.auth-form-password .pass-eye-icon:hover {
    color: var(--primary-orange);
}

.auth-form-error {
    display: block;
    color: #dc3545;
    font-size: 0.875rem;
    margin-top: var(--spacing-xs);
    font-family: var(--font-body);
}

.auth-form-forgot {
    text-align: right;
}

.auth-form-forgot a {
    color: var(--primary-orange);
    text-decoration: none;
    font-size: var(--body-size-small);
    transition: color 0.3s ease;
}

.auth-form-forgot a:hover {
    color: var(--primary-orange-dark);
    text-decoration: underline;
}

.auth-form-submit {
    width: 100%;
    padding: var(--spacing-md) var(--spacing-lg);
    background: var(--primary-orange);
    color: var(--white);
    border: none;
    border-radius: var(--border-radius-button);
    font-size: var(--button-size);
    font-weight: var(--button-weight);
    font-family: var(--font-body);
    cursor: pointer;
    transition: all var(--transition-normal);
    margin-top: var(--spacing-md);
    min-height: var(--button-height);
}

.auth-form-submit:hover:not(:disabled) {
    background: var(--primary-orange-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-button);
}

.auth-form-submit:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

.auth-form-divider {
    display: flex;
    align-items: center;
    margin: var(--spacing-xl) 0;
    text-align: center;
}

.auth-form-divider::before,
.auth-form-divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background: var(--gray-light);
}

.auth-form-divider span {
    padding: 0 var(--spacing-md);
    color: var(--gray-text);
    font-size: var(--body-size-small);
}

.auth-form-social {
    display: flex;
    flex-direction: row;
    gap: 12px;
    width: 100%;
    margin-bottom: 20px;
}

.auth-social-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    background: transparent;
    border: none;
    border-radius: 8px;
    transition: all 0.2s ease;
    text-decoration: none;
    flex: 1;
    height: 44px;
    min-width: 0;
}

.auth-social-btn:hover {
    transform: translateY(-1px);
    opacity: 0.8;
}

.auth-social-btn img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.auth-social-btn svg {
    width: 24px;
    height: 24px;
}

.auth-social-btn i {
    font-size: 20px;
}

.auth-form-footer {
    text-align: center;
    margin-top: 16px;
    font-size: 14px;
    color: var(--gray-text);
}

.auth-form-footer a {
    color: var(--primary-orange);
    text-decoration: none;
    font-weight: 500;
    margin-left: var(--spacing-xs);
    transition: color 0.3s ease;
}

.auth-form-footer a:hover {
    color: var(--primary-orange-dark);
    text-decoration: underline;
}

.auth-form-terms {
    font-size: var(--body-size-small);
    color: var(--gray-text);
    text-align: center;
    margin: var(--spacing-md) 0;
    line-height: 1.5;
}

.auth-form-terms a {
    color: var(--primary-orange);
    text-decoration: none;
}

.auth-form-terms a:hover {
    text-decoration: underline;
}

/* Responsive */
@media (max-width: 768px) {
    .auth-modal-container {
        width: 95%;
        max-height: 95vh;
    }

    .auth-modal-content {
        padding: var(--spacing-2xl) var(--spacing-lg);
    }

    .auth-form-header h2 {
        font-size: clamp(1.5rem, 5vw, 2rem);
    }

    .auth-form-social {
        flex-wrap: wrap;
    }
}

@media (max-width: 480px) {
    .auth-modal-content {
        padding: var(--spacing-xl) var(--spacing-md);
    }
}

/* ============================================
           AUTH MODALS - Premium Modern Design
           ============================================ */

.auth-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1), visibility 0.4s;
    padding: 20px;
    overflow-y: auto;
}

.auth-modal.active {
    opacity: 1;
    visibility: visible;
}

.auth-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.75);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.auth-modal-container {
    position: relative;
    background: #FFFFFF;
    border-radius: 16px;
    max-width: 560px;
    width: 100%;
    max-height: 90vh;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.12), 0 0 0 1px rgba(0, 0, 0, 0.04);
    transform: scale(0.95) translateY(20px);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1;
    overflow-y: auto;
    margin: auto;
}

.auth-modal-container::-webkit-scrollbar {
    width: 6px;
}

.auth-modal-container::-webkit-scrollbar-track {
    background: transparent;
}

.auth-modal-container::-webkit-scrollbar-thumb {
    background: #E0E0E0;
    border-radius: 3px;
}

.auth-modal-container::-webkit-scrollbar-thumb:hover {
    background: #CCCCCC;
}

.auth-modal.active .auth-modal-container {
    transform: scale(1) translateY(0);
}

.auth-modal-close {
    position: absolute;
    top: 16px;
    right: 16px;
    background: transparent;
    border: none;
    font-size: 20px;
    color: #666666;
    cursor: pointer;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
    transition: all 0.2s ease;
    z-index: 10;
}

.auth-modal-close:hover {
    background: #F5F5F5;
    color: var(--dark-text);
}

.auth-modal-content {
    padding: 28px 24px;
}

.auth-form {
    display: flex;
    flex-direction: column;
}

.auth-form-header {
    text-align: center;
    margin-bottom: 20px;
}

.auth-form-header h2 {
    font-size: 22px;
    font-weight: 600;
    font-family: var(--font-heading);
    color: var(--dark-text);
    margin: 0 0 4px 0;
    letter-spacing: -0.3px;
}

.auth-form-header p {
    font-size: 13px;
    color: #666666;
    margin: 0;
    line-height: 1.4;
    font-weight: 400;
}

/* Social Login Buttons - Professional Design */
.auth-form-social {
    display: flex;
    flex-direction: row;
    gap: 8px;
    margin-bottom: 20px;
    width: 100%;
}

.auth-social-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    border: 1px solid #E0E0E0;
    border-radius: 8px;
    transition: all 0.2s ease;
    text-decoration: none;
    position: relative;
    flex: 1;
    height: 44px;
    min-width: 0;
}

.auth-social-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.auth-social-btn:active {
    transform: translateY(0);
}

.auth-social-btn img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.auth-social-btn svg {
    width: 20px;
    height: 20px;
    display: block;
}

.auth-social-btn i {
    font-size: 18px;
    z-index: 1;
    position: relative;
}

.auth-social-btn.social-google {
    background: #F8F9FA;
    border-color: #E0E0E0;
}

.auth-social-btn.social-google:hover {
    background: #F1F3F4;
    border-color: #4285F4;
}

.auth-social-btn.social-facebook {
    background: #F0F2F5;
    border-color: #E0E0E0;
}

.auth-social-btn.social-facebook:hover {
    background: #E7F3FF;
    border-color: #1877F2;
}

.auth-social-btn.social-twitter {
    background: #F5F8FA;
    border-color: #E0E0E0;
}

.auth-social-btn.social-twitter:hover {
    background: #E1F5FE;
    border-color: #000000;
}

.auth-form-divider {
    display: flex;
    align-items: center;
    margin: 20px 0;
    text-align: center;
}

.auth-form-divider::before,
.auth-form-divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background: #E0E0E0;
}

.auth-form-divider span {
    padding: 0 16px;
    color: #999999;
    font-size: 13px;
    font-weight: 400;
    background: #FFFFFF;
}

.auth-form-group {
    margin-bottom: 16px;
}

.auth-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-bottom: 16px;
}

.auth-form-label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: var(--dark-text);
    margin-bottom: 8px;
    font-family: var(--font-body);
}

.auth-form-input {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #E0E0E0;
    border-radius: 8px;
    font-size: 15px;
    font-family: var(--font-body);
    transition: all 0.2s ease;
    background: var(--white);
    color: var(--dark-text);
}

.auth-form-input:focus {
    outline: none;
    border-color: var(--primary-orange);
    box-shadow: 0 0 0 3px rgba(255, 107, 0, 0.08);
    background: var(--white);
}

.auth-form-input::placeholder {
    color: #9E9E9E;
}

.auth-form-password {
    position: relative;
}

.auth-form-password .pass-eye-icon {
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
    color: var(--gray-text);
    font-size: 18px;
    transition: all 0.3s ease;
    z-index: 2;
}

.auth-form-password .pass-eye-icon:hover {
    color: var(--primary-orange);
    transform: translateY(-50%) scale(1.1);
}

.auth-form-error {
    display: block;
    color: #EF4444;
    font-size: 13px;
    margin-top: 6px;
    font-family: var(--font-body);
    font-weight: 500;
}

.auth-form-forgot {
    text-align: right;
    margin-top: -4px;
    margin-bottom: 4px;
}

.auth-form-forgot a {
    color: var(--primary-orange);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.auth-form-forgot a:hover {
    color: var(--primary-orange-dark);
    text-decoration: underline;
}

.auth-form-submit {
    width: 100%;
    padding: 12px 24px;
    background: var(--primary-orange);
    color: var(--white);
    border: none;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 600;
    font-family: var(--font-body);
    cursor: pointer;
    transition: all 0.2s ease;
    margin-top: 4px;
    min-height: 44px;
    box-shadow: 0 2px 8px rgba(255, 107, 0, 0.2);
}

.auth-form-submit:hover:not(:disabled) {
    background: var(--primary-orange-dark);
    box-shadow: 0 4px 12px rgba(255, 107, 0, 0.3);
}

.auth-form-submit:active:not(:disabled) {
    transform: translateY(1px);
    box-shadow: 0 1px 4px rgba(255, 107, 0, 0.2);
}

.auth-form-submit:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}

.auth-form-footer {
    text-align: center;
    margin-top: 20px;
    font-size: 14px;
    color: var(--gray-text);
}

.auth-form-footer a {
    color: var(--primary-orange);
    text-decoration: none;
    font-weight: 600;
    margin-left: 6px;
    transition: all 0.3s ease;
}

.auth-form-footer a:hover {
    color: var(--primary-orange-dark);
    text-decoration: underline;
}

.auth-form-terms {
    font-size: 12px;
    color: var(--gray-text);
    text-align: center;
    margin: 12px 0;
    line-height: 1.5;
}

.auth-form-terms a {
    color: var(--primary-orange);
    text-decoration: none;
    font-weight: 500;
}

.auth-form-terms a:hover {
    text-decoration: underline;
}

/* Responsive - Tablet */
@media (max-width: 1024px) {
    .auth-modal-container {
        max-width: 520px;
    }
}

/* Responsive - Mobile Tablet */
@media (max-width: 768px) {
    .auth-modal {
        padding: 12px;
        align-items: flex-start;
        padding-top: 20px;
    }

    .auth-modal-container {
        width: 100%;
        max-width: 100%;
        border-radius: 16px 16px 0 0;
        max-height: calc(100vh - 20px);
        margin-top: auto;
    }

    .auth-modal-content {
        padding: 24px 20px;
    }

    .auth-form-header {
        margin-bottom: 18px;
    }

    .auth-form-header h2 {
        font-size: 20px;
    }

    .auth-form-header p {
        font-size: 13px;
    }

    .auth-form-row {
        grid-template-columns: 1fr;
        gap: 14px;
        margin-bottom: 14px;
    }

    .auth-form-group {
        margin-bottom: 14px;
    }

    .auth-form-social {
        gap: 8px;
        margin-bottom: 18px;
        width: 100%;
    }

    .auth-social-btn {
        flex: 1;
        height: 42px;
    }

    .auth-social-btn svg {
        width: 20px;
        height: 20px;
    }

    .auth-social-btn i {
        font-size: 18px;
    }

    .auth-form-divider {
        margin: 18px 0;
    }

    .auth-form-submit {
        padding: 12px 20px;
        min-height: 44px;
        font-size: 15px;
    }

    .auth-form-footer {
        margin-top: 16px;
        font-size: 13px;
    }

    .auth-form-terms {
        font-size: 11px;
        margin: 10px 0;
    }

    .auth-modal-close {
        top: 12px;
        right: 12px;
        width: 36px;
        height: 36px;
        font-size: 22px;
    }
}

/* Responsive - Small Mobile */
@media (max-width: 480px) {
    .auth-modal {
        padding: 8px;
        padding-top: 16px;
    }

    .auth-modal-container {
        border-radius: 12px 12px 0 0;
        max-height: calc(100vh - 16px);
    }

    .auth-modal-content {
        padding: 20px 16px;
    }

    .auth-form-header {
        margin-bottom: 16px;
    }

    .auth-form-header h2 {
        font-size: 18px;
    }

    .auth-form-header p {
        font-size: 12px;
    }

    .auth-form-label {
        font-size: 13px;
        margin-bottom: 6px;
    }

    .auth-form-input {
        padding: 10px 14px;
        font-size: 14px;
    }

    .auth-form-row {
        gap: 12px;
        margin-bottom: 12px;
    }

    .auth-form-group {
        margin-bottom: 12px;
    }

    .auth-form-social {
        gap: 6px;
        margin-bottom: 16px;
        width: 100%;
    }

    .auth-social-btn {
        flex: 1;
        height: 40px;
    }

    .auth-social-btn svg {
        width: 18px;
        height: 18px;
    }

    .auth-social-btn i {
        font-size: 16px;
    }

    .auth-form-divider {
        margin: 16px 0;
    }

    .auth-form-divider span {
        font-size: 12px;
        padding: 0 12px;
    }

    .auth-form-submit {
        padding: 11px 18px;
        min-height: 42px;
        font-size: 14px;
    }

    .auth-form-footer {
        margin-top: 14px;
        font-size: 12px;
    }

    .auth-form-terms {
        font-size: 10px;
        margin: 8px 0;
    }

    .auth-form-forgot {
        margin-top: -2px;
        margin-bottom: 2px;
    }

    .auth-form-forgot a {
        font-size: 12px;
    }

    .auth-modal-close {
        top: 10px;
        right: 10px;
        width: 32px;
        height: 32px;
        font-size: 20px;
    }
}

/* Responsive - Extra Small Mobile */
@media (max-width: 360px) {
    .auth-modal-content {
        padding: 18px 14px;
    }

    .auth-form-header h2 {
        font-size: 17px;
    }

    .auth-form-social {
        gap: 6px;
        width: 100%;
    }

    .auth-social-btn {
        flex: 1;
        height: 38px;
    }

    .auth-form-input {
        padding: 9px 12px;
        font-size: 13px;
    }
}

/* Landscape Orientation - Mobile */
@media (max-width: 768px) and (orientation: landscape) {
    .auth-modal {
        padding: 8px;
        align-items: center;
    }

    .auth-modal-container {
        max-height: 90vh;
        border-radius: 12px;
        margin-top: 0;
    }

    .auth-modal-content {
        padding: 20px 18px;
    }

    .auth-form-header {
        margin-bottom: 14px;
    }

    .auth-form-header h2 {
        font-size: 18px;
    }

    .auth-form-header p {
        font-size: 12px;
    }

    .auth-form-group {
        margin-bottom: 12px;
    }

    .auth-form-row {
        margin-bottom: 12px;
    }

    .auth-form-social {
        margin-bottom: 14px;
        width: 100%;
    }

    .auth-social-btn {
        flex: 1;
    }

    .auth-form-divider {
        margin: 14px 0;
    }

    .auth-form-footer {
        margin-top: 12px;
    }
}

/* Landscape Orientation - Small Mobile */
@media (max-width: 480px) and (orientation: landscape) {
    .auth-modal-container {
        max-height: 85vh;
    }

    .auth-modal-content {
        padding: 16px 14px;
    }

    .auth-form-header h2 {
        font-size: 17px;
    }

    .auth-form-group {
        margin-bottom: 10px;
    }

    .auth-form-row {
        margin-bottom: 10px;
    }
}

/* Very Tall Screens - Prevent Modal from being too tall */
@media (min-height: 900px) {
    .auth-modal-container {
        max-height: 85vh;
    }
}

/* Touch Device Optimizations */
@media (hover: none) and (pointer: coarse) {

    .auth-form-input,
    .auth-form-submit,
    .auth-social-btn,
    .auth-modal-close {
        min-height: 44px;
    }

    .auth-form-input {
        font-size: 16px;
        /* Prevents zoom on iOS */
    }

    .auth-social-btn {
        flex: 1;
        min-width: 0;
    }
}


/* PWA Install Button Styles */
.pwa-install-button {
    position: fixed !important;
    bottom: 100px !important;
    right: 24px !important;
    z-index: 999999 !important;
    animation: slideInUp 0.4s ease-out;
    pointer-events: auto !important;
    visibility: visible !important;
    display: block !important;
    opacity: 1 !important;
    padding: 17px !important;
}

.pwa-install-button.hidden {
    display: none !important;
    opacity: 0 !important;
    visibility: hidden !important;
}

@keyframes slideInUp {
    from {
        transform: translateY(100px);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.pwa-install-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 20px;
    background: linear-gradient(135deg, #f97316, #ef4444) !important;
    color: white;
    border: none;
    border-radius: 50px;
    font-size: 15px;
    font-weight: 600;
    font-family: var(--font-heading);
    cursor: pointer;
    box-shadow: 0 4px 16px rgba(255, 107, 53, 0.3);
    transition: all 0.3s ease;
    white-space: nowrap;
    position: relative;
    z-index: 99999;
    pointer-events: auto;
}

.pwa-install-btn:hover {
    background: #ff6b35;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.4);
}

.pwa-install-btn:active {
    transform: translateY(0);
}

.pwa-install-icon {
    flex-shrink: 0;
    width: 20px;
    height: 20px;
}

.pwa-install-text {
    font-size: 15px;
    letter-spacing: 0.01em;
}

/* Responsive */
@media (max-width: 768px) {
    .pwa-install-button {
        bottom: 20px;
        right: 20px;
    }

    .pwa-install-btn {
        padding: 12px 18px;
        font-size: 14px;
    }

    .pwa-install-text {
        font-size: 14px;
    }

    .pwa-install-icon {
        width: 18px;
        height: 18px;
    }
}

@media (max-width: 480px) {
    .pwa-install-button {
        bottom: 16px;
        right: 16px;
    }

    .pwa-install-btn {
        padding: 10px 16px;
        gap: 8px;
    }

    .pwa-install-text {
        display: none;
    }

    .pwa-install-icon {
        width: 20px;
        height: 20px;
    }
}

/* Hide when already installed */
.pwa-install-button.installed {
    display: none !important;
}



/* Header Styles */
header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    -webkit-backdrop-filter: blur(10px) saturate(150%);
    backdrop-filter: blur(95px) saturate(150%);
    z-index: 1000;
    padding: var(--spacing-md, 20px) 0;
    border-bottom: 1px solid rgba(255, 107, 0, 0.08);
    /* box-shadow: 0 1px 20px rgba(0, 0, 0, 0.03); */
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    font-family: var(--font-heading, 'Public Sans', sans-serif);
}

header.scrolled {
    background: rgba(255, 255, 255, 1);
    backdrop-filter: blur(80px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.08);
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.header-container {
    max-width: var(--container-max, 1200px);
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    z-index: 1001;
}

.logo {
    display: flex;
    align-items: center;
    gap: var(--spacing-xs, 8px);
    text-decoration: none;
}

.logo img {
    height: 48px;
    width: auto;
    object-fit: contain;
}

nav {
    display: flex;
    align-items: center;
    gap: var(--spacing-2xl, 40px);
}

nav a {
    color: var(--dark-text, #1a1a1a) !important;
    text-decoration: none;
    font-weight: 500;
    font-size: var(--body-size-small, 0.9375rem);
    font-family: var(--font-body, 'Rubik', sans-serif);
    transition: var(--transition-fast, 0.3s);
    display: inline-block !important;
    visibility: visible !important;
    opacity: 1 !important;
}

nav a:hover {
    color: var(--primary-orange, #FF6B00);
}

/* Active nav state */
nav a.active-nav {
    position: relative;
    color: var(--primary-orange, #FF6B00);
    font-weight: 600;
}

nav a.active-nav::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: -6px;
    height: 3px;
    border-radius: 999px;
    background: linear-gradient(135deg, #f97316, #ef4444);
}

/* Burger Menu */
.burger-menu {
    display: none;
    flex-direction: column;
    justify-content: space-around;
    width: 32px;
    height: 32px;
    min-width: 32px;
    min-height: 32px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 4px;
    z-index: 1002;
    position: relative;
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
    pointer-events: auto;
}

.burger-menu:focus {
    outline: 2px solid var(--primary-orange, #FF6B00);
    outline-offset: 2px;
}

.burger-menu span {
    width: 100%;
    height: 3px;
    background: var(--dark-text, #1a1a1a);
    border-radius: 3px;
    transition: all 0.3s ease;
    transform-origin: center;
    display: block;
}

.burger-menu.active span:nth-child(1) {
    transform: rotate(45deg) translate(7px, 7px);
}

.burger-menu.active span:nth-child(2) {
    opacity: 0;
    transform: translateX(-10px);
}

.burger-menu.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* Mobile Navigation */
.mobile-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    z-index: 1000;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    padding-top: 100px;
    transform: translateX(-100%);
    opacity: 0;
    visibility: hidden;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.3s ease, visibility 0.3s ease;
    overflow-y: auto;
    pointer-events: none;
}

.mobile-nav.active {
    transform: translateX(0);
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.mobile-nav a {
    color: var(--dark-text, #1a1a1a);
    text-decoration: none;
    font-size: var(--body-size-large, 1.125rem);
    font-weight: 500;
    font-family: var(--font-body, 'Rubik', sans-serif);
    padding: var(--spacing-lg, 24px) var(--spacing-2xl, 40px);
    width: 100%;
    text-align: center;
    border-bottom: 1px solid var(--gray-light, #f5f5f5);
    transition: all var(--transition-fast, 0.3s);
}

.mobile-nav a:hover,
.mobile-nav a:active,
.mobile-nav a.active-nav {
    color: var(--primary-orange, #FF6B00);
    background: rgba(255, 107, 0, 0.05);
    font-weight: 600;
}

.mobile-nav .btn-get-started {
    margin: var(--spacing-xl, 32px) auto;
    width: auto;
    min-width: 200px;
}

.btn-get-started {
    position: relative;
    background: linear-gradient(135deg, #f97316, #ef4444) !important;
    /* background: var(--primary-orange, #FF6B00); */
    color: var(--white, #FFFFFF);
    padding: var(--button-padding, 14px 32px);
    min-height: var(--button-height, 48px);
    min-width: var(--button-min-width, 140px);
    border-radius: var(--border-radius-button, 8px);
    text-decoration: none;
    font-weight: var(--button-weight, 600);
    font-size: var(--button-size, 15px);
    font-family: var(--font-body, 'Rubik', sans-serif);
    transition: all var(--transition-normal, 0.4s);
    border: none;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    box-shadow: var(--shadow-button, 0 4px 16px rgba(255, 107, 53, 0.2));
    z-index: 12;
    pointer-events: auto;
}

.btn-get-started::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.3) 0%, rgba(255, 255, 255, 0.1) 40%, transparent 70%);
    transform: translate(-50%, -50%);
    transition: width 0.6s cubic-bezier(0.4, 0, 0.2, 1), height 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    pointer-events: none;
    z-index: 0;
}

.btn-get-started::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0.05) 50%, transparent 70%);
    transform: translate(-50%, -50%);
    transition: width 0.8s cubic-bezier(0.4, 0, 0.2, 1), height 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    pointer-events: none;
    z-index: 0;
}

.btn-get-started:hover::before {
    width: 300px;
    height: 300px;
}

.btn-get-started:hover::after {
    width: 250px;
    height: 250px;
}

.btn-get-started:hover {
    background: var(--primary-orange-dark, #e55a2a);
    transform: translateY(-2px);
    box-shadow: var(--shadow-button-hover, 0 8px 24px rgba(255, 107, 53, 0.35));
}

.btn-get-started span,
.btn-get-started {
    position: relative;
    z-index: 12;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .header-container {
        padding: 0 var(--spacing-lg, 24px);
    }
}

@media (max-width: 768px) {
    .header-container {
        padding: 0 var(--spacing-md, 20px);
    }

    nav {
        display: none;
    }

    .btn-get-started {
        display: none;
    }

    .burger-menu {
        display: flex;
    }
}

@media (max-width: 480px) {
    .header-container {
        padding: 0 var(--spacing-sm, 12px);
    }

    .logo img {
        height: 40px;
    }
}



/* Footer Section Styles */
.footer-section {
    background: var(--light-bg, #FAFAFA);
    padding: var(--spacing-5xl, 100px) var(--spacing-2xl, 40px) var(--spacing-2xl, 40px);
    border-top: 1px solid var(--gray-light, #f5f5f5);
}

.footer-container {
    max-width: var(--container-max, 1200px);
    margin: 0 auto;
    width: 100%;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: var(--spacing-3xl, 48px);
    margin-bottom: var(--spacing-3xl, 48px);
}

.footer-logo-column {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md, 20px);
}

.footer-logo {
    display: flex;
    align-items: center;
}

.footer-logo-image {
    height: 48px;
    width: auto;
    object-fit: contain;
}

.footer-tagline {
    font-size: var(--body-size, 1rem);
    font-weight: var(--body-weight, 400);
    line-height: var(--body-line-height, 1.7);
    font-family: var(--font-body, 'Rubik', sans-serif);
    color: var(--gray-text, #666);
    margin: 0;
}

.footer-social-icons {
    display: flex;
    gap: var(--spacing-md, 20px);
    margin-top: var(--spacing-sm, 12px);
}

.social-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray-text, #666);
    transition: all var(--transition-normal, 0.4s);
    border-radius: 50%;
}

.social-icon:hover {
    color: var(--primary-orange, #FF6B00);
    background: rgba(255, 107, 53, 0.1);
    transform: translateY(-2px);
}

.footer-app-stores {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: var(--spacing-sm, 12px);
    margin-top: var(--spacing-md, 20px);
    padding-top: var(--spacing-md, 20px);
    border-top: 1px solid var(--gray-light, #f5f5f5);
}

.footer-app-store-badge {
    display: inline-block;
    transition: all var(--transition-normal, 0.4s);
    text-decoration: none;
    line-height: 0;
}

.footer-app-store-badge:hover {
    transform: translateY(-2px);
    opacity: 0.9;
}

.footer-app-store-badge img {
    height: 40px;
    width: auto;
    display: block;
    border-radius: 4px;
    max-width: 135px;
}

.footer-column-title {
    font-size: var(--heading-h5-size, 1.25rem);
    font-weight: var(--heading-weight, 650);
    font-family: var(--font-heading, 'Public Sans', sans-serif);
    color: var(--dark-text, #1a1a1a);
    margin: 0 0 var(--spacing-lg, 24px) 0;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: var(--spacing-sm, 12px);
}

.footer-links li {
    margin: 0;
}

.footer-links a {
    font-size: var(--body-size, 1rem);
    font-weight: var(--body-weight, 400);
    font-family: var(--font-body, 'Rubik', sans-serif);
    color: var(--gray-text, #666);
    text-decoration: none;
    transition: color var(--transition-fast, 0.3s);
    white-space: nowrap;
    display: inline-block;
}

.footer-links a:hover {
    color: var(--primary-orange, #FF6B00);
}

.footer-newsletter-column {
    display: flex;
    flex-direction: column;
}

.footer-newsletter-form {
    display: flex;
    gap: var(--spacing-sm, 12px);
    margin-top: var(--spacing-sm, 12px);
}

.footer-newsletter-input {
    flex: 1;
    padding: var(--spacing-md, 20px) var(--spacing-lg, 24px);
    border: 1px solid var(--gray-light, #f5f5f5);
    border-radius: var(--border-radius-button, 8px);
    font-size: var(--body-size, 1rem);
    font-family: var(--font-body, 'Rubik', sans-serif);
    color: var(--dark-text, #1a1a1a);
    background: var(--white, #FFFFFF);
    transition: all var(--transition-fast, 0.3s);
}

.footer-newsletter-input:focus {
    outline: none;
    border-color: var(--primary-orange, #FF6B00);
    box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.1);
}

.footer-newsletter-input::placeholder {
    color: var(--gray-text, #666);
}

.footer-newsletter-btn {
    position: relative;
    padding: var(--button-padding, 14px 32px);
    min-height: var(--button-height, 48px);
    min-width: var(--button-min-width, 140px);
    background: linear-gradient(135deg, #f97316, #ef4444) !important;
    color: var(--white, #FFFFFF);
    border: none;
    border-radius: var(--border-radius-button, 8px);
    font-size: var(--button-size, 15px);
    font-weight: var(--button-weight, 600);
    font-family: var(--font-body, 'Rubik', sans-serif);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: all var(--transition-normal, 0.4s);
    white-space: nowrap;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    box-shadow: var(--shadow-button, 0 4px 16px rgba(255, 107, 53, 0.2));
}

.footer-newsletter-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.3) 0%, rgba(255, 255, 255, 0.1) 40%, transparent 70%);
    transform: translate(-50%, -50%);
    transition: width 0.6s cubic-bezier(0.4, 0, 0.2, 1), height 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    pointer-events: none;
    z-index: 0;
}

.footer-newsletter-btn::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0.05) 50%, transparent 70%);
    transform: translate(-50%, -50%);
    transition: width 0.8s cubic-bezier(0.4, 0, 0.2, 1), height 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    pointer-events: none;
    z-index: 0;
}

.footer-newsletter-btn:hover::before {
    width: 300px;
    height: 300px;
}

.footer-newsletter-btn:hover::after {
    width: 250px;
    height: 250px;
}

.footer-newsletter-btn:hover {
    background: var(--primary-orange-dark, #e55a2a);
    transform: translateY(-2px);
    box-shadow: var(--shadow-button-hover, 0 8px 24px rgba(255, 107, 53, 0.35));
}

.footer-newsletter-btn:active {
    transform: translateY(0);
}

.footer-newsletter-btn span,
.footer-newsletter-btn {
    position: relative;
    z-index: 1;
}

.footer-copyright {
    text-align: center;
    padding-top: var(--spacing-2xl, 40px);
    border-top: 1px solid var(--gray-light, #f5f5f5);
}

.footer-copyright p {
    font-size: var(--body-size-small, 0.9375rem);
    font-weight: var(--body-weight, 400);
    font-family: var(--font-body, 'Rubik', sans-serif);
    color: var(--gray-text, #666);
    margin: 0;
}

/* Responsive Design for Footer */
@media (max-width: 1024px) {
    .footer-section {
        padding: var(--spacing-4xl, 60px) var(--spacing-lg, 24px) var(--spacing-xl, 32px);
    }

    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: var(--spacing-3xl, 48px);
    }

    .footer-logo-column {
        grid-column: 1 / -1;
    }

    .footer-column-title {
        font-size: clamp(1rem, 4vw, 1.125rem);
    }

    .footer-links a {
        font-size: clamp(0.875rem, 3vw, 1rem);
    }
}

@media (max-width: 768px) {
    .footer-section {
        padding: var(--spacing-3xl, 48px) var(--spacing-md, 20px) var(--spacing-xl, 32px);
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: var(--spacing-2xl, 40px);
    }

    .footer-newsletter-form {
        flex-direction: column;
    }

    .footer-newsletter-btn {
        width: 100%;
    }
}

/* ============================================
       AUTH PAGES - Login, Signup, Forgot Password, OTP, Reset Password
       ============================================ */

/* Base Auth Page Styles */
body.auth-page {
    font-family: 'Public Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    background: #FFFFFF;
    color: #1a1a1a;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.auth-container {
    width: 100%;
    max-width: 440px;
    margin: 0 auto;
}

.auth-logo {
    text-align: center;
    margin-bottom: 1.5rem;
}

.auth-logo a {
    display: inline-block;
}

.auth-logo img {
    height: 60px;
    width: auto;
}

.auth-card {
    background: #FFFFFF;
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    transition: min-height 0.3s ease, padding-bottom 0.3s ease;
    min-height: auto;
    overflow: visible;
}

.auth-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a1a1a;
    text-align: center;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
}

/* Back Button */
.back-button {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: #1a1a1a;
    text-decoration: none;
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: 1.25rem;
    transition: color 0.2s ease;
}

.back-button:hover {
    color: #FF6B00;
}

.back-button svg {
    width: 16px;
    height: 16px;
}

/* Social Login Buttons */
.social-login {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0.75rem;
    margin-bottom: 1.25rem;
}

@media (max-width: 640px) {
    .social-login {
        grid-template-columns: repeat(2, 1fr);
    }
}

.social-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem;
    background: #FFFFFF;
    border: 1.5px solid #E5E7EB;
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.2s ease;
    cursor: pointer;
}

.social-btn:hover {
    border-color: #FF6B00;
    background: #FFF8F5;
    transform: translateY(-1px);
    box-shadow: 0 2px 8px rgba(255, 107, 0, 0.1);
}

.social-btn svg {
    width: 20px;
    height: 20px;
}

/* Divider */
.divider {
    display: flex;
    align-items: center;
    text-align: center;
    margin: 1.25rem 0;
    color: #9CA3AF;
    font-size: 0.875rem;
}

.divider::before,
.divider::after {
    content: '';
    flex: 1;
    border-bottom: 1px solid #E5E7EB;
}

.divider span {
    padding: 0 1rem;
    background: #FFFFFF;
}

/* Form Styles */
.form-group {
    margin-bottom: 1rem;
    min-height: auto;
    transition: margin-bottom 0.3s ease;
    display: block;
    width: 100%;
}

.form-group.has-error {
    margin-bottom: 1.5rem;
}

.form-label {
    display: block;
    font-size: 0.875rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 0.5rem;
}

.form-input-wrapper {
    position: relative;
    margin-bottom: 0;
    display: flex;
    align-items: center;
    width: 100%;
    flex-wrap: nowrap;
    flex-shrink: 0;
}

/* Prevent errors from being inserted inside form-input-wrapper */
.form-input-wrapper .form-error,
.form-input-wrapper label.form-error {
    display: none !important;
}

.form-input {
    width: 100%;
    padding: 0.875rem 1rem;
    padding-right: 3rem;
    border: 1.5px solid #E5E7EB;
    border-radius: 12px;
    font-size: 1rem;
    background: #FFFFFF;
    color: #1a1a1a;
    transition: all 0.2s ease;
    box-sizing: border-box;
    flex: 1;
}

.form-input:focus {
    outline: none;
    border-color: #FF6B00;
    box-shadow: 0 0 0 3px rgba(255, 107, 0, 0.1);
}

.form-input::placeholder {
    color: #9CA3AF;
}

/* Number input styling for OTP */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

input[type=number] {
    -moz-appearance: textfield;
}

/* Password Toggle */
.password-toggle {
    position: absolute !important;
    right: 1rem !important;
    top: 50% !important;
    transform: translateY(-50%) !important;
    background: none !important;
    border: none !important;
    color: #6B7280;
    cursor: pointer;
    padding: 0.5rem !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    transition: color 0.2s ease;
    z-index: 20 !important;
    pointer-events: auto !important;
    width: auto !important;
    height: auto !important;
    margin: 0 !important;
    left: auto !important;
    bottom: auto !important;
    flex-shrink: 0 !important;
}

.password-toggle:hover {
    color: #FF6B00;
}

.password-toggle i {
    font-size: 1.125rem;
}

/* Form Error Messages */
.form-error {
    display: none !important;
    color: #DC2626 !important;
    font-size: 0.875rem;
    font-weight: 500;
    margin-top: 0.5rem;
    margin-bottom: 0;
    padding: 0.5rem 0.75rem;
    background: #FEF2F2;
    /* border-left: 3px solid #DC2626; */
    border-radius: 6px;
    line-height: 1.4;
    animation: slideDown 0.3s ease;
    width: 100% !important;
    box-sizing: border-box;
    clear: both !important;
    position: relative !important;
    float: none !important;
    order: 999 !important;
    flex-basis: 100% !important;
    flex-shrink: 0 !important;
    flex-grow: 0 !important;
    min-height: 1.25rem;
}

/* Ensure error appears below form-input-wrapper, not inside */
.form-group>.form-error,
.form-group>label.form-error {
    display: none !important;
    margin-top: 0.5rem;
    width: 100%;
}

.form-group>.form-error.show,
.form-group>label.form-error.show {
    display: block !important;
}

.form-error * {
    color: #DC2626 !important;
}

.form-error.show {
    display: block !important;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
        max-height: 0;
    }

    to {
        opacity: 1;
        transform: translateY(0);
        max-height: 100px;
    }
}

/* Form Success Messages */
.form-success {
    display: block;
    color: #065F46;
    font-size: 0.875rem;
    margin-top: 0;
    margin-bottom: 0;
}

/* Forgot Link */
.forgot-link {
    text-align: right;
    margin-top: -0.25rem;
    margin-bottom: 1.25rem;
}

.forgot-link a {
    color: #FF6B00;
    text-decoration: none;
    font-size: 0.875rem;
    font-weight: 500;
    transition: color 0.2s ease;
}

.forgot-link a:hover {
    color: #e55a2a;
    text-decoration: underline;
}

/* Submit Button */
.submit-btn {
    width: 100%;
    padding: 0.875rem 1.5rem;
    background: #1a1a1a;
    color: #FFFFFF;
    border: none;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.submit-btn:hover {
    background: linear-gradient(135deg, #f97316, #ef4444) !important;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(255, 107, 0, 0.3);
}

.submit-btn:active {
    transform: translateY(0);
}

.submit-btn:disabled {
    background: #9CA3AF;
    cursor: not-allowed;
    transform: none;
}

/* Legal Text */
.legal-text {
    margin-top: 1.25rem;
    font-size: 0.75rem;
    color: #6B7280;
    text-align: center;
    line-height: 1.5;
}

.legal-text a {
    color: #1a1a1a;
    text-decoration: underline;
}

/* Auth Footer */
.auth-footer {
    text-align: center;
    margin-top: 1.5rem;
    font-size: 0.875rem;
    color: #6B7280;
}

.auth-footer a {
    color: #1a1a1a;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.2s ease;
}

.auth-footer a:hover {
    color: #FF6B00;
}

/* Recaptcha Wrapper */
.recaptcha-wrapper {
    margin: 1rem 0;
    display: flex;
    justify-content: center;
}

/* OTP Specific Styles */
.otp-email {
    font-size: 0.875rem;
    color: #6B7280;
    text-align: center;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.otp-helper {
    font-size: 0.8125rem;
    color: #9CA3AF;
    text-align: center;
    margin: 0 0 1.5rem;
    line-height: 1.4;
}

.otp-container {
    display: flex;
    gap: 0.75rem;
    justify-content: center;
    margin-bottom: 1.25rem;
}

.otp-input {
    width: 56px;
    height: 56px;
    border: 1.5px solid #E5E7EB;
    border-radius: 12px;
    text-align: center;
    font-size: 1.5rem;
    font-weight: 600;
    color: #1a1a1a;
    background: #FFFFFF;
    transition: all 0.2s ease;
}

.otp-input:focus {
    outline: none;
    border-color: #FF6B00;
    box-shadow: 0 0 0 3px rgba(255, 107, 0, 0.1);
}

.otp-input:disabled {
    background: #F9FAFB;
    color: #9CA3AF;
}

/* Resend Link */
.resend-link {
    text-align: center;
    font-size: 0.875rem;
    color: #6B7280;
}

.resend-link a {
    color: #FF6B00;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.2s ease;
}

.resend-link a:hover {
    color: #e55a2a;
    text-decoration: underline;
}

/* Responsive - Auth Pages */
@media (max-width: 640px) {
    body.auth-page {
        padding: 0.75rem;
    }

    .auth-card {
        padding: 1.5rem;
    }

    .auth-title {
        font-size: 1.375rem;
        margin-bottom: 1.25rem;
    }

    .social-login {
        grid-template-columns: repeat(2, 1fr);
    }

    .otp-input {
        width: 50px;
        height: 50px;
        font-size: 1.25rem;
    }
}

@media (max-width: 480px) {
    .auth-logo {
        margin-bottom: 1.25rem;
    }

    .auth-logo img {
        height: 50px;
    }

    .auth-title {
        font-size: 1.25rem;
        margin-bottom: 1rem;
    }

    .auth-card {
        padding: 1.25rem;
    }

    .form-group {
        margin-bottom: 0.875rem;
    }

    .password-toggle {
        right: 0.75rem;
    }

    .otp-container {
        gap: 0.5rem;
    }

    .otp-input {
        width: 48px;
        height: 48px;
        font-size: 1.125rem;
    }
}

@media (max-height: 800px) {
    .auth-logo {
        margin-bottom: 1rem;
    }

    .auth-title {
        margin-bottom: 1rem;
    }

    .form-group {
        margin-bottom: 0.875rem;
    }

    .legal-text {
        margin-top: 1rem;
    }

    .otp-container {
        margin-bottom: 1rem;
    }
}

@media (max-height: 700px) {
    .auth-logo {
        margin-bottom: 1rem;
    }

    .auth-title {
        margin-bottom: 1rem;
    }

    .form-group {
        margin-bottom: 0.875rem;
    }
}

/* Match App Store badge styling */
.install-app-wrapper {
    display: inline-block;
    cursor: pointer;
    text-decoration: none;
    line-height: 0;
    position: relative;
    z-index: 11;
    pointer-events: auto;
}

.install-app-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    background: #000;
    color: #fff;
    border-radius: 4px;
    padding: 3px 10px;
    height: 40px;
    max-width: 135px;
    border: none;
    outline: none;
    cursor: pointer;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

/* Hover effect */
.install-app-btn:hover {
    transform: translateY(-2px) scale(1.02);
    opacity: 0.9;
}

.install-app-btn-footer {
    display: flex;
    align-items: center;
    gap: 8px;
    background: #000;
    color: #fff;
    border-radius: 4px;
    padding: 3px 10px;
    height: 40px;
    max-width: 135px;
    border: none;
    outline: none;
    cursor: pointer;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

/* Hover effect */
.install-app-btn-footer:hover {
    transform: translateY(-2px) scale(1.02);
    opacity: 0.9;
}

/* Your icon image */
.install-app-icon {
    height: 30px;
    /* Matches previous SVG size */
    width: auto;
    display: block;
}

.install-app-text {
    font-size: 14px;
    font-weight: 500;
    white-space: nowrap;
}

/* Stay Connected Section */
.stay-connected-section {
    padding: var(--spacing-5xl, 100px) var(--spacing-2xl, 40px);
    background: linear-gradient(135deg, rgba(255, 107, 0, 0.04) 0%, #FFFFFF 50%, rgba(255, 107, 0, 0.02) 100%);
    position: relative;
    overflow: hidden;
}

.stay-connected-section::before {
    content: '';
    position: absolute;
    top: 15%;
    left: -8%;
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(255, 107, 0, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 32s ease-in-out infinite;
    z-index: 0;
}

.stay-connected-container {
    max-width: var(--container-max, 1200px);
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

/* Centered Header */
.stay-connected-header {
    text-align: center;
    margin-bottom: var(--section-header-margin-bottom, 32px);
    opacity: 0;
    animation: fadeInUp 1s ease 0.2s forwards;
}

.stay-connected-title {
    font-size: var(--heading-h2-size);
    font-weight: var(--heading-weight);
    line-height: var(--heading-line-height);
    letter-spacing: var(--heading-letter-spacing);
    font-family: var(--font-heading);
    color: var(--dark-text);
    margin-bottom: var(--section-title-margin-bottom);
}

.stay-connected-title .highlight {
    color: var(--primary-orange);
}

.stay-connected-description {
    font-size: var(--body-size-large);
    font-weight: var(--body-weight);
    line-height: var(--body-line-height);
    letter-spacing: var(--body-letter-spacing);
    font-family: var(--font-body);
    color: var(--gray-text);
    max-width: 800px;
    margin: 0 auto;
}

/* Carousel Wrapper with Navigation */
.creators-carousel-wrapper {
    position: relative;
    width: 100%;
    /* margin-top: var(--spacing-3xl, 48px); */
}

.creators-carousel-header {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    margin-bottom: var(--spacing-lg, 24px);
}

/* Carousel Navigation Buttons */
.creators-carousel-nav {
    display: flex;
    gap: var(--spacing-sm, 12px);
    align-items: center;
    flex-shrink: 0;
    padding: 5px;
}

.creators-nav-btn {
    position: relative;
    width: 44px;
    height: 44px;
    border: 2px solid var(--primary-orange);
    border-radius: 50%;
    background: var(--white);
    color: var(--primary-orange);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition-normal);
    padding: 0;
    flex-shrink: 0;
    z-index: 50;
}

.creators-nav-btn span {
    color: var(--primary-orange);
    font-size: 20px;
    font-weight: bold;
    line-height: 0;
}

.creators-nav-btn:hover {
    background: rgba(255, 107, 0, 0.05);
    transform: scale(1.1);
    box-shadow: 0 4px 12px rgba(255, 107, 0, 0.2);
}

.creators-nav-btn:active {
    transform: scale(0.95);
}

.creators-carousel {
    position: relative;
    overflow: hidden;
    width: 100%;
}

.creators-track {
    display: flex;
    gap: var(--spacing-lg, 24px);
    will-change: transform;
}

/* Creator Card Styles */
.creator-card {
    flex: 0 0 280px;
    width: 280px;
    height: 420px;
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    cursor: pointer;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.creator-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.2);
}

.creator-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.creator-card-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: var(--spacing-xl, 32px);
    background: linear-gradient(to top, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.5) 50%, transparent 100%);
    z-index: 2;
}

.creator-card-title {
    font-size: 1.75rem;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.02em;
    font-family: var(--font-heading);
    color: var(--white);
    margin: 0 0 var(--spacing-xs, 8px) 0;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.8);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .stay-connected-header {
        text-align: center;
    }

    .stay-connected-description {
        margin: 0 auto;
    }

    .creator-card {
        flex: 0 0 240px;
        width: 240px;
        height: 360px;
    }

    .creator-card-title {
        font-size: 1.5rem;
    }

    .creators-nav-btn {
        width: 40px;
        height: 40px;
    }

    .creators-nav-btn span {
        font-size: 18px;
    }
}

@media (max-width: 768px) {
    .stay-connected-section {
        padding: var(--section-padding-tablet);
    }

    .stay-connected-header {
        text-align: center;
        margin-bottom: var(--spacing-2xl, 40px);
    }

    .stay-connected-title {
        font-size: clamp(1.75rem, 6vw, 2.25rem);
    }

    .stay-connected-description {
        font-size: clamp(0.9375rem, 4vw, 1.125rem);
        margin: 0 auto;
    }

    .creators-carousel-wrapper {
        margin-top: var(--spacing-2xl, 40px);
    }

    .creators-carousel-header {
        justify-content: flex-end;
        margin-bottom: var(--spacing-md, 20px);
    }

    .creator-card {
        flex: 0 0 200px;
        width: 200px;
        height: 320px;
    }

    .creator-card-title {
        font-size: 1.35rem;
    }

    .creator-card-overlay {
        padding: var(--spacing-lg, 24px);
    }

    .creators-nav-btn {
        width: 38px;
        height: 38px;
    }

    .creators-nav-btn span {
        font-size: 16px;
    }
}

@media (max-width: 640px) {
    .stay-connected-section {
        padding: var(--section-padding-mobile);
    }

    .stay-connected-header {
        text-align: center;
        margin-bottom: var(--spacing-xl, 32px);
    }

    .stay-connected-title {
        font-size: clamp(1.5rem, 6vw, 2rem);
        margin-bottom: var(--spacing-md, 20px);
    }

    .stay-connected-description {
        font-size: clamp(0.875rem, 3vw, 1rem);
        margin: 0 auto;
    }

    .creators-carousel-wrapper {
        margin-top: var(--spacing-xl, 32px);
    }

    .creators-carousel-header {
        justify-content: flex-end;
        margin-bottom: var(--spacing-md, 20px);
    }

    .creator-card {
        flex: 0 0 180px;
        width: 180px;
        height: 280px;
    }

    .creator-card-title {
        font-size: 1.2rem;
    }

    .creators-nav-btn {
        width: 36px;
        height: 36px;
    }

    .creators-nav-btn span {
        font-size: 14px;
    }

    .creators-carousel-nav {
        gap: var(--spacing-xs, 8px);
    }
}