/* Remode - Main Styles (Merged from 41 files) */
/* Generated: Thu Aug  7 10:11:46 CEST 2025 */

/* ===== From styles.css ===== */

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

:root {
    /* Remode Brand Colors - Locked Spec */
    --pink-primary: #FF80B5;
    --purple-primary: #8B5CF6;
    --gradient-primary: linear-gradient(135deg, #FF80B5 0%, #8B5CF6 100%);
    
    /* Secondary Colors */
    --purple-dark: #7C3AED;
    --purple-light: #a855f7;
    --neutral-warm: #FFF8E7;
    
    /* Pastel Editorial Palette */
    --pastel-purple: #F6E6FF;
    --pastel-pink: #FFD6E0;
    --pastel-blue: #E3F2FD;
    --pastel-yellow: #FFF9E6;
    --pastel-lavender: #D9C2FF;
    
    /* Gradients - Brand Locked */
    --gradient-secondary: linear-gradient(135deg, #8B5CF6 0%, #EC4899 100%);
    --gradient-accent: linear-gradient(135deg, #FF6FCF 0%, #FFA4E3 100%);
    
    /* Fluid Responsive System */
    --fluid-min-width: 320;
    --fluid-max-width: 1440;
    
    /* Dynamic Spacing System */
    --space-3xs: clamp(0.25rem, 0.5vw, 0.5rem);
    --space-2xs: clamp(0.5rem, 1vw, 0.75rem);
    --space-xs: clamp(0.75rem, 1.5vw, 1rem);
    --space-s: clamp(1rem, 2vw, 1.5rem);
    --space-m: clamp(1.5rem, 3vw, 2rem);
    --space-l: clamp(2rem, 4vw, 3rem);
    --space-xl: clamp(3rem, 6vw, 4rem);
    --space-2xl: clamp(4rem, 8vw, 6rem);
    --space-3xl: clamp(6rem, 10vw, 8rem);
    
    /* Fluid Typography Scale */
    --font-size-xs: clamp(0.75rem, 0.5vw + 0.5rem, 0.875rem);
    --font-size-sm: clamp(0.875rem, 0.7vw + 0.6rem, 1rem);
    --font-size-base: clamp(1rem, 1vw + 0.75rem, 1.125rem);
    --font-size-lg: clamp(1.125rem, 1.5vw + 0.875rem, 1.5rem);
    --font-size-xl: clamp(1.25rem, 2vw + 1rem, 1.875rem);
    --font-size-2xl: clamp(1.5rem, 3vw + 1rem, 2.25rem);
    --font-size-3xl: clamp(2rem, 4vw + 1.5rem, 3rem);
    --font-size-4xl: clamp(2.5rem, 6vw + 1.5rem, 4rem);
    --font-size-5xl: clamp(3rem, 8vw + 1.5rem, 5rem);
    --font-size-hero: clamp(3rem, 10vw + 1rem, 6.5rem);
    
    /* Container Widths */
    --container-xs: min(100% - 2rem, 480px);
    --container-sm: min(100% - 3rem, 640px);
    --container-md: min(100% - 4rem, 768px);
    --container-lg: min(100% - 4rem, 1024px);
    --container-xl: min(100% - 5rem, 1280px);
    --container-2xl: min(100% - 6rem, 1536px);
    --gradient-pastel: linear-gradient(135deg, var(--pastel-pink) 0%, var(--pastel-purple) 50%, var(--pastel-blue) 100%);
    
    /* Text Colors */
    --text-primary: #ffffff;
    --text-secondary: rgba(255, 255, 255, 0.8);
    --text-dark: #1f2937;
    --text-gray: #6b7280;
    
    /* Backgrounds */
    --bg-white: #ffffff;
    --bg-light: #f9fafb;
    --bg-dark: #111827;
    
    /* Typography */
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

body {
    font-family: var(--font-body);
    color: var(--text-dark);
    font-size: 1rem; /* 16px */
    line-height: 1.6;
    letter-spacing: 0em;
    overflow-x: hidden;
}

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

/* Hero Section - Full Screen */
.hero {
    position: relative;
    height: 100vh;
    min-height: 100vh;
    min-height: 100dvh; /* Dynamic viewport height */
    overflow: hidden;
    background: #000;
    container-type: inline-size;
}

/* Magazine-style gradient transition - DISABLED */
.hero::after {
    display: none; /* Completely remove gradient */
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 250px;
    background: linear-gradient(to bottom,
        transparent 0%,
        rgba(255, 255, 255, 0) 30%,
        rgba(230, 230, 250, 0.08) 50%,
        rgba(221, 214, 243, 0.15) 65%,
        rgba(255, 235, 245, 0.2) 80%,
        rgba(250, 235, 255, 0.25) 90%,
        rgba(230, 230, 250, 0.3) 100%
    );
    pointer-events: none;
    z-index: 10;
}

/* Video Background */
.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    overflow: hidden;
    background: #000;
}

/* Video Loading State */
.video-loading {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #000;
    z-index: 1;
    opacity: 1;
    transition: opacity 0.5s ease;
}

.video-loading.loaded {
    opacity: 0;
    pointer-events: none;
}

.loading-spinner {
    width: 40px;
    height: 40px;
    border: 3px solid rgba(255, 255, 255, 0.1);
    border-top-color: var(--primary-purple);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 30%;
}


/* Premium gradient overlay with editorial tones */
.gradient-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    background: 
        /* Primary left-to-right gradient for text readability */
        linear-gradient(to right, 
            rgba(10, 8, 20, 0.65) 0%,      /* Slightly purple-tinted black at 65% */
            rgba(10, 8, 20, 0.4) 20%,       /* Fading to 40% */
            rgba(10, 8, 20, 0.0) 55%),      /* Fully transparent for video */
        /* Subtle vertical gradient for polish */
        linear-gradient(to bottom,
            rgba(10, 8, 20, 0.05) 0%,       /* Very subtle at top */
            rgba(10, 8, 20, 0.1) 50%,       /* Slightly more in middle */
            rgba(10, 8, 20, 0.2) 100%);     /* Gentle fade at bottom */
    z-index: 1;
    pointer-events: none;
}

/* Removed animated shimmers for cleaner design */

/* Hero Content with fade-in animation */
@keyframes heroFadeIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-content {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 10;
    display: flex;
    align-items: flex-start;
    padding-top: 20px; /* Move to very top */
    padding-left: 80px;
    padding-right: 60px;
}

/* Minimal Navigation */
.nav-minimal {
    position: absolute;
    top: 32px;
    left: 48px;
    z-index: 10;
}

.brand-logo-nav {
    height: 80px;
    width: auto;
    opacity: 1;
    transition: transform 0.3s ease;
}

.brand-logo-nav:hover {
    transform: scale(1.05);
}

/* Main Content Area */
.hero-main {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1400px;
    width: 100%;
    gap: 60px;
}

/* Split Layout for Hero */
.hero-content-split {
    display: flex;
    align-items: center;
    gap: 80px;
    width: 100%;
    max-width: 1400px;
}

.hero-content-split .hero-text-section {
    flex: 1;
    max-width: 600px;
    text-align: left;
}

.hero-mockups {
    position: absolute;
    right: 40px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
}

/* Mockup Flow Layout */
.mockup-flow {
    display: flex;
    align-items: center;
    gap: 30px;
    position: relative;
}

/* Make phones larger for better visibility */
.hero-mockups .phone-mockup {
    width: 240px;
}

.hero-mockups .phone-frame {
    width: 240px;
    height: 480px;
}

/* Fashion-forward angled layout */
.mockup-1 {
    z-index: 3;
    transform: rotate(-8deg) scale(1);
}

.mockup-2 {
    z-index: 2;
    transform: rotate(5deg) scale(0.95);
}

.mockup-3 {
    z-index: 1;
    transform: rotate(-3deg) scale(0.9);
}

/* Curved flow arrows */
.flow-arrow-hero {
    width: 40px;
    height: 40px;
    opacity: 0.5;
    color: rgba(255, 255, 255, 0.8);
    margin: 0 -10px;
}

/* Add subtle shadows for depth */
.hero-mockups .phone-mockup {
    filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.4));
    transition: transform 0.3s ease, filter 0.3s ease;
}

/* Hover effects for each mockup */
.mockup-1:hover {
    transform: rotate(-8deg) scale(1.05) translateY(-10px);
}

.mockup-2:hover {
    transform: rotate(5deg) scale(1) translateY(-10px);
}

.mockup-3:hover {
    transform: rotate(-3deg) scale(0.95) translateY(-10px);
}

/* Inline brand logos with better spacing */
.hero-brands-section {
    position: absolute;
    bottom: 40px;
    left: 0;
    right: 0;
    width: 100%;
    text-align: center;
    z-index: 10;
}

.hero-brands-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}

.hero-brands-inline {
    margin-top: 0;
    text-align: left;
    margin-bottom: 52px;
    transform: scale(0.94);
    transform-origin: left top;
}

.hero-brands-inline .brands-intro {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 0.688rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.6);
    letter-spacing: 0.15em;
    margin: 0 0 16px 0;
    text-transform: uppercase;
    text-align: left;
}

.hero-brands-inline .hero-brands-row {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 24px;
    margin-bottom: 16px;
    flex-wrap: nowrap;
    max-width: 100%;
    min-height: 32px;
}

/* Perfect vertical alignment */
.brand-logo,
.brand-logo-text {
    flex-shrink: 0;
    vertical-align: middle;
    display: inline-flex;
    align-items: center;
}

.hero-text-section {
    text-align: left;
    max-width: 700px;
}

/* Hero load animations */
.hero-headline,
.hero-subheadline {
    opacity: 0;
    transform: translateY(20px);
    animation: heroFadeIn 0.6s ease-out forwards;
}

.hero-subheadline {
    animation-delay: 0.1s;
}

.hero-app-badges {
    opacity: 0;
    animation: fadeIn 0.4s ease-out forwards;
    animation-delay: 0.3s;
}

.micro-trust {
    opacity: 0;
    animation: fadeIn 0.4s ease-out forwards;
    animation-delay: 0.4s;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 32px;
    letter-spacing: 0.02em;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.85);
    margin: 0 0 24px 0;
    letter-spacing: 0.02em;
}

@keyframes heroFadeIn {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    to {
        opacity: 1;
    }
}

/* Premium Typography - Perfected for Impact */
.hero-headline {
    font-family: 'Playfair Display', serif;
    font-size: clamp(72px, 9vw, 128px);
    font-weight: 900;
    line-height: 0.9;
    letter-spacing: -0.03em;
    color: #fff;
    margin-bottom: 24px;
}

.hero-subheadline {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 19px;
    font-weight: 400;
    line-height: 1.5;
    letter-spacing: 0.01em;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 56px;
    text-shadow: 0 1px 15px rgba(0, 0, 0, 0.3);
    max-width: 650px;
}


/* Hero CTA Group */
.hero-cta-group {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    margin-bottom: 3rem;
    align-items: center;
}

.cta-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 18px 36px;
    background: var(--gradient-purple-pink);
    color: white;
    text-decoration: none;
    font-size: 1.125rem;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 20px rgba(180, 75, 255, 0.3);
    letter-spacing: -0.01em;
}

.cta-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(180, 75, 255, 0.4);
}

.cta-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 18px 36px;
    background: transparent;
    color: white;
    text-decoration: none;
    font-size: 1.125rem;
    font-weight: 500;
    border: 2px solid rgba(255, 255, 255, 0.8);
    border-radius: 50px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    letter-spacing: -0.01em;
}

.cta-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: white;
}

/* Hero App Badges */
.hero-app-badges {
    display: flex;
    gap: 16px;
    align-items: center;
    justify-content: flex-start;
    margin-bottom: 14px;
}

.download-subtitle {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
    margin: 0 0 82px 0;
    font-weight: 400;
    letter-spacing: 0.02em;
}

/* Secondary CTA - Premium Glass Effect */
.scroll-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    font-size: 0.938rem;
    font-weight: 600;
    margin-top: 0;
    margin-bottom: 80px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    justify-content: flex-start;
    padding: 12px 24px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 30px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    position: relative;
    overflow: hidden;
}

/* Gradient shine effect on hover */
.scroll-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
        transparent, 
        rgba(255, 255, 255, 0.2), 
        transparent);
    transition: left 0.6s ease;
}

.scroll-cta:hover::before {
    left: 100%;
}

.scroll-cta:hover {
    color: rgba(255, 255, 255, 1);
    transform: translateY(-2px);
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.25);
    box-shadow: 0 8px 32px rgba(180, 75, 255, 0.2);
}

.scroll-cta svg {
    width: 16px;
    height: 16px;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(4px);
    }
    60% {
        transform: translateY(2px);
    }
}

/* Credibility Row */
.credibility-row {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-top: 0;
    margin-bottom: 40px;
    justify-content: flex-start;
}

.credibility-text {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 0.813rem;
    color: rgba(255, 255, 255, 0.75);
    font-weight: 400;
}

.credibility-divider {
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.813rem;
}

.hero-content-split .hero-app-badges {
    justify-content: flex-start;
}

.app-badge {
    display: inline-block;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0.95;
}


.app-badge img {
    height: 48px;
    width: auto;
    filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.25));
}

/* Ensure both badges are same visual size */
.app-badge img[alt="Get it on Google Play"] {
    height: 48px;
    width: 161px; /* Correct aspect ratio for Google Play badge */
}


/* Join Community Link */
.btn-join-community {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-weight: 400;
    font-size: 16px;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    transition: color 0.2s ease;
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.btn-join-community:hover {
    color: rgba(255, 255, 255, 1);
}

/* Hero Brands Wrapper */
.hero-brands-wrapper {
    position: absolute;
    bottom: 80px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

.brands-intro,
.hero-brands-section .brands-intro {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 0.75rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.7);
    letter-spacing: 0.1em;
    margin: 0 0 20px 0;
    text-transform: uppercase;
    text-align: center;
}

/* Hero Brands Row - Responsive Grid */
.hero-brands-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(80px, 1fr));
    gap: clamp(1rem, 3vw, 3rem);
    align-items: center;
    justify-items: center;
    margin-bottom: var(--space-s);
}

.hero-brands-row:first-child {
    gap: 56px;
}

/* Brand Logo with Fade-in Animation */
@keyframes brandFadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 0.75;
        transform: translateY(0);
    }
}

.brand-logo {
    height: 22px;
    width: auto;
    filter: brightness(0) invert(1);
    opacity: 0;
    transition: opacity 0.3s ease;
    animation: brandFadeIn 0.8s ease-out forwards;
}

/* Harmonized logo weights for perfect balance */
.zalando-logo {
    height: 24px;
    opacity: 0.65;
}

/* Brand logo specific adjustments */
/* Chanel logo - force larger size */
img.chanel-logo {
    height: 80px !important;
    width: auto !important;
    opacity: 0.85 !important;
    max-height: none !important;
}


.dior-logo {
    height: 22px;
    opacity: 0.75;
}

/* Override all other brand-logo styles for Chanel */
.hero-brands-row .chanel-logo,
.hero-brands-bottom .chanel-logo,
img.brand-logo.chanel-logo {
    height: 24px !important;
    width: auto !important;
    max-height: none !important;
    opacity: 0.85 !important;
}

/* White logos class - no filter needed */
.hero-brands-bottom .white-logo,
.brand-logo.white-logo {
    filter: none !important;
    background: transparent !important;
    opacity: 0.85 !important;
}

/* Specific white logo sizing */
.brand-logo.white-logo[alt="ASOS"] {
    height: 24px !important;
}

.brand-logo.white-logo[alt="UNIQLO"] {
    height: 24px !important;
}

.brand-logo.white-logo[alt="FARFETCH"] {
    height: 22px !important;
    filter: brightness(0) invert(1) !important; /* Convert black to white */
}

/* White logos that don't need inversion - use src selector like Chanel */
.hero-brands-bottom .brand-logo[src="asos-white.png"],
.hero-brands-bottom .brand-logo[src="uniqlo-white.png"],
.hero-brands-bottom .brand-logo[src="farfetch-white.png"],
.hero-brands-bottom .brand-logo[src="chanel-white-transparent.png"],
.brand-logo[src="asos-white.png"],
.brand-logo[src="uniqlo-white.png"],
.brand-logo[src="farfetch-white.png"],
.brand-logo[src="chanel-white-transparent.png"] {
    filter: none !important; /* Remove the invert filter for white logos */
    background: transparent !important;
}

/* Specific sizing for new white logos */
.hero-brands-bottom .brand-logo[src="asos-white.png"],
.brand-logo[src="asos-white.png"] {
    height: 32px !important; /* Increased size to match others */
    width: auto !important;
    opacity: 0.85 !important;
}

.hero-brands-bottom .brand-logo[src="uniqlo-white.png"],
.brand-logo[src="uniqlo-white.png"] {
    height: 26px !important;
    width: auto !important;
    opacity: 0.85 !important;
}

.hero-brands-bottom .brand-logo[src="farfetch-white.png"],
.brand-logo[src="farfetch-white.png"] {
    height: 24px !important;
    width: auto !important;
    opacity: 0.85 !important;
}

.brand-logo[alt="Zara"] {
    height: 20px;
    opacity: 0.7; /* Slightly higher for thin letterforms */
}

.brand-logo[alt="Nike"] {
    height: 26px; /* Balanced for swoosh */
    opacity: 0.6; /* Lower opacity for bold shape */
}

.brand-logo[alt="H&M"] {
    height: 26px;
    opacity: 0.65;
}

.brand-logo[alt="Adidas"] {
    height: 24px;
    opacity: 0.65;
}

.brand-logo[alt="Levi's"] {
    height: 22px;
    opacity: 0.68;
}

.brand-logo[alt="UNIQLO"] {
    height: 24px;
    opacity: 0.7;
}

/* Override hero-brands-bottom constraint for consistent sizing */
.hero-brands-bottom .hero-brands-row .brand-logo[alt="UNIQLO"],
.hero-brands-bottom .brand-logo[src="uniqlo-logo-transparent.png"],
.hero-brands-bottom img[src="uniqlo-logo-transparent.png"].brand-logo {
    height: 24px !important; /* Standardized */
    width: auto !important;
    opacity: 0.75 !important;
    filter: brightness(0) invert(1) !important; /* Ensure it's white */
}

/* FARFETCH logo styling */
.hero-brands-bottom .brand-logo[alt="FARFETCH"] {
    height: 24px !important; /* Standardized */
    opacity: 0.75 !important;
}

/* Ensure consistent sizing for all logos in hero-brands-bottom - standardized to 24px */
.hero-brands-bottom .brand-logo[alt="Zara"] {
    height: 24px !important;
}

.hero-brands-bottom .brand-logo[alt="Nike"] {
    height: 24px !important;
}

.hero-brands-bottom .brand-logo[alt="H&M"] {
    height: 24px !important;
}

.hero-brands-bottom .brand-logo[alt="Zalando"] {
    height: 24px !important;
}

.hero-brands-bottom .brand-logo[alt="Dior"] {
    height: 24px !important;
}

.hero-brands-bottom .brand-logo[alt="Levi's"] {
    height: 24px !important;
}

.hero-brands-bottom .brand-logo[alt="Adidas"] {
    height: 24px !important;
}

.brand-logo:hover {
    opacity: 0.85;
    transform: translateY(-1px);
}

.brand-logo-text {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 17px;
    font-weight: 600;
    letter-spacing: 2.5px;
    color: rgba(255, 255, 255, 0.65);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    text-transform: uppercase;
}

/* Luxury brands - subtle differentiation */
.hero-brands-row:last-child .brand-logo-text:nth-child(3),
.hero-brands-row:last-child .brand-logo-text:nth-child(4),
.hero-brands-row:last-child .brand-logo-text:nth-child(5),
.hero-brands-row:last-child .brand-logo-text:nth-child(6) {
    font-weight: 400;
    letter-spacing: 3px;
    font-size: 16px;
    color: rgba(255, 255, 255, 0.75);
}

.brand-logo-text:hover {
    opacity: 0.8;
}

/* Primary CTA - Compact */
.cta-primary {
    display: inline-flex;
    align-items: center;
    padding: 14px 32px;
    background: #fff;
    color: #000;
    text-decoration: none;
    font-size: 15px;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.2s ease;
}

.cta-primary:hover {
    transform: translateY(-1px);
    box-shadow: 0 8px 20px rgba(255, 255, 255, 0.2);
}

/* Secondary CTA - Compact */
.cta-secondary {
    display: inline-flex;
    align-items: center;
    padding: 14px 32px;
    background: transparent;
    color: white;
    text-decoration: none;
    font-size: 15px;
    font-weight: 400;
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    transition: all 0.2s ease;
}

.cta-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
}

/* Removed fade transition for cleaner look */
.hero-fade {
    display: none;
}

.hero-background {
    position: absolute;
    inset: 0;
    z-index: 1;
}

/* Video Background Wrapper */
.hero-video-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-video-fullscreen {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.video-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(255, 182, 255, 0.25) 0%,      /* Light purple/pink with 25% opacity */
        rgba(255, 218, 245, 0.20) 25%,     /* Soft pink with 20% opacity */
        rgba(255, 235, 220, 0.15) 50%,     /* Peachy pink with 15% opacity */
        rgba(240, 200, 255, 0.20) 75%,     /* Lavender with 20% opacity */
        rgba(255, 220, 240, 0.25) 100%     /* Pink blush with 25% opacity */
    );
    mix-blend-mode: soft-light; /* This will make it blend naturally with the video */
}

/* Content Overlay */
.hero-content-overlay {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.nav-overlay {
    padding: 40px 60px;
}

.nav-logo {
    font-family: 'Playfair Display', serif;
    font-size: 24px;
    font-weight: 400;
    letter-spacing: 0.05em;
    color: #fff;
    opacity: 0.8;
}

/* Hero Center Content */
.hero-center-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0 20px;
}

.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem; /* 56px */
    font-weight: 700;
    line-height: 1.1;
    color: #fff;
    margin-bottom: 20px;
    letter-spacing: -0.02em;
}

.hero-subtitle {
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 40px;
    line-height: 1.5;
}

.hero-cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-hero-primary,
.btn-hero-secondary {
    padding: 16px 32px;
    border-radius: 50px;
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 500;
    text-decoration: none;
    transition: opacity 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
}

.btn-hero-primary {
    background: #fff;
    color: #000;
    border: none;
}

.btn-hero-primary:hover {
    opacity: 0.9;
}

.btn-hero-secondary {
    background: transparent;
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.5);
}

.btn-hero-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
}

/* Scroll Hint */
.scroll-hint {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: none; /* Hidden for cleaner look */
}

.video-gradient {
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(ellipse at center, transparent 0%, rgba(0, 0, 0, 0.4) 100%),
        linear-gradient(to right, rgba(0, 0, 0, 0.8) 0%, transparent 40%, transparent 100%);
    pointer-events: none;
}

/* Hide mockups on medium screens */
@media (max-width: 1200px) {
    .hero-mockups {
        display: none;
    }
}

/* Nest Hub and smaller displays */
@media (max-width: 1280px) and (min-width: 600px) and (max-height: 800px) {
    .hero {
        height: 100vh;
        overflow: hidden;
    }
    
    .hero-content {
        padding: 20px;
        height: 100vh;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .hero-main {
        width: 100%;
        max-width: 900px;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }
    
    .hero-text-section {
        padding: 20px 0;
        text-align: center;
        width: 100%;
    }
    
    .hero-headline {
        font-size: clamp(36px, 5vw, 48px);
        margin-bottom: 12px;
        line-height: 0.9;
    }
    
    .hero-subheadline {
        font-size: 15px;
        margin-bottom: 20px;
        line-height: 1.3;
        max-width: 500px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .hero-app-badges {
        margin-bottom: 16px;
        gap: 10px;
    }
    
    .app-badge img {
        height: 36px;
    }
    
    .app-badge img[alt="Get it on Google Play"] {
        height: 36px;
        width: 121px;
    }
    
    .scroll-cta {
        margin: 12px auto 16px;
        font-size: 0.813rem;
    }
    
    .credibility-row {
        margin-bottom: 0;
        gap: 8px;
    }
    
    .credibility-text {
        font-size: 0.75rem;
    }
    
    .hero-brands-section {
        position: absolute;
        bottom: 20px;
        left: 0;
        right: 0;
        padding: 0 20px;
    }
    
    .brands-intro {
        font-size: 0.625rem;
        margin-bottom: 12px;
    }
    
    .hero-brands-row {
        gap: 16px;
        margin-bottom: 8px;
    }
    
    .brand-logo {
        height: 16px;
    }
    
    .brand-logo-text {
        font-size: 0.75rem;
        letter-spacing: 1px;
    }
    
    /* Hide floating badges on smaller displays */
    .floating-badges {
        display: none;
    }
}

/* Nest Hub Max specific (1280x800) */
@media (width: 1280px) and (height: 800px) {
    .hero {
        height: 100vh;
    }
    
    .hero-content {
        padding: 40px;
        height: 100vh;
    }
    
    .hero-headline {
        font-size: 56px;
        margin-bottom: 20px;
    }
    
    .hero-subheadline {
        font-size: 18px;
        margin-bottom: 32px;
    }
    
    .hero-brands-section {
        bottom: 40px;
    }
    
    .hero-brands-row {
        gap: 32px;
    }
    
    .brand-logo {
        height: 20px;
    }
}

/* Surface Duo specific */
@media (min-width: 540px) and (max-width: 720px) {
    .hero-content {
        padding: 30px 20px;
    }
    
    .hero-headline {
        font-size: 48px;
    }
    
    .hero-subheadline {
        font-size: 17px;
    }
    
    .hero-brands-row {
        gap: 20px;
    }
    
    .brand-logo {
        height: 18px;
    }
}

/* Tablet and iPad specific optimizations */
@media (max-width: 1280px) and (min-width: 481px) {
    .hero {
        min-height: 100vh;
        position: relative;
    }
    
    .hero-content {
        padding: 40px;
        min-height: 100vh;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .hero-main {
        width: 100%;
        max-width: 800px;
        margin: 0 auto;
    }
    
    .hero-text-section {
        text-align: center;
        padding: 40px 0;
    }
    
    .hero-headline {
        font-size: clamp(48px, 6vw, 80px);
        margin-bottom: 24px;
        text-align: center;
    }
    
    .hero-subheadline {
        font-size: clamp(18px, 2vw, 20px);
        margin-bottom: 36px;
        max-width: 600px;
        margin-left: auto;
        margin-right: auto;
        padding: 0 20px;
    }
    
    .hero-app-badges {
        justify-content: center;
        margin-bottom: 28px;
    }
    
    .scroll-cta {
        margin: 20px auto 28px;
    }
    
    .credibility-row {
        justify-content: center;
        flex-wrap: wrap;
        gap: 16px 24px;
        margin-bottom: 40px;
    }
    
    .credibility-text {
        font-size: 0.875rem;
    }
    
    .hero-brands-inline {
        margin-top: 48px;
        padding: 0 40px;
        width: 100%;
    }
    
    .brands-intro {
        text-align: center;
        margin-bottom: 24px;
        font-size: 0.875rem;
    }
    
    .hero-brands-row {
        justify-content: center;
        gap: 32px;
        margin-bottom: 20px;
        flex-wrap: wrap;
    }
    
    .brand-logo {
        height: 24px;
    }
    
    .brand-logo-text {
        font-size: 16px;
    }
    
    /* Show floating badges on tablets */
    .floating-badges {
        display: flex;
    }
}

/* Medium phones like Samsung Galaxy A51/71 */
@media (max-width: 450px) and (min-width: 400px) {
    .hero {
        min-height: 100vh;
    }
    
    .hero-content {
        padding: 40px 20px;
        min-height: 100vh;
        display: flex;
        align-items: center;
    }
    
    .hero-text-section {
        padding: 40px 0;
        width: 100%;
    }
    
    .hero-headline {
        font-size: 48px;
        line-height: 0.95;
        margin-bottom: 20px;
    }
    
    .hero-subheadline {
        font-size: 17px;
        line-height: 1.4;
        margin-bottom: 28px;
        padding: 0 20px;
    }
    
    .hero-app-badges {
        margin-bottom: 24px;
    }
    
    .credibility-row {
        margin-bottom: 36px;
    }
    
    .hero-brands-section {
        position: relative;
        margin-top: 48px;
        padding: 0 20px;
    }
    
    .brands-intro {
        font-size: 0.75rem;
        margin-bottom: 20px;
    }
    
    .hero-brands-row {
        gap: 20px 24px;
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .brand-logo {
        height: 18px;
    }
    
    .brand-logo-text {
        font-size: 0.875rem;
    }
}

/* Mobile optimization for phones only */
@media (max-width: 768px) and (min-width: 481px) {
    .hero-video {
        object-position: center;
    }
    
    .hero-content {
        padding: 40px 30px;
    }
    
    .hero-headline {
        font-size: clamp(44px, 7vw, 56px);
    }
    
    .hero-subheadline {
        font-size: 17px;
    }
    
    .hero-brands-row {
        gap: 24px;
    }
    
    .brand-logo {
        height: 20px;
    }
}

/* Gradient Base */
.gradient-base {
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(135, 206, 235, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 255, 150, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 60% 60%, rgba(255, 182, 193, 0.2) 0%, transparent 50%);
}

/* Paint Elements */
.paint-element {
    position: absolute;
    filter: blur(60px);
    opacity: 0.6;
    animation: morph 20s ease-in-out infinite;
}

.element-1 {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, #87CEEB 0%, transparent 70%);
    top: -200px;
    left: -100px;
    animation-delay: 0s;
}

.element-2 {
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, #FFFF96 0%, transparent 70%);
    bottom: -150px;
    right: -200px;
    animation-delay: -5s;
}

.element-3 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, #FFB6C1 0%, transparent 70%);
    top: 40%;
    left: 40%;
    transform: translate(-50%, -50%);
    animation-delay: -10s;
}

/* Texture Overlays */
.texture-spray {
    position: absolute;
    inset: 0;
    opacity: 0.03;
    background-image: 
        repeating-radial-gradient(circle at 30% 40%, transparent 0, transparent 2px, rgba(147, 51, 234, 0.1) 2px, rgba(147, 51, 234, 0.1) 4px),
        repeating-radial-gradient(circle at 70% 60%, transparent 0, transparent 3px, rgba(255, 182, 193, 0.1) 3px, rgba(255, 182, 193, 0.1) 5px);
}

.texture-dots {
    position: absolute;
    inset: 0;
    opacity: 0.02;
    background-image: radial-gradient(circle, #9333ea 1px, transparent 1px);
    background-size: 50px 50px;
}

@keyframes morph {
    0%, 100% {
        border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
        transform: rotate(0deg) scale(1);
    }
    50% {
        border-radius: 30% 60% 70% 40% / 50% 60% 30% 60%;
        transform: rotate(180deg) scale(1.1);
    }
}

/* Old hero overlay removed for cleaner video */

/* Pastel Paint Splashes - DISABLED */
.paint-splash {
    position: absolute;
    border-radius: 50%;
    filter: blur(0px);
    mix-blend-mode: screen;
    opacity: 0; /* Completely hidden */
    display: none; /* Remove from layout */
}

.splash-1 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle at 30% 30%, 
        rgba(135, 206, 235, 0.9) 0%, 
        rgba(135, 206, 235, 0.6) 40%, 
        transparent 70%);
    top: 10%;
    left: 5%;
    transform: rotate(-15deg) scale(1.2);
    animation: float 8s ease-in-out infinite;
}

.splash-2 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle at 50% 50%, 
        rgba(255, 255, 150, 0.8) 0%, 
        rgba(255, 255, 150, 0.5) 45%, 
        transparent 75%);
    top: 20%;
    right: 10%;
    transform: rotate(25deg);
    animation: float 10s ease-in-out infinite reverse;
}

.splash-3 {
    width: 350px;
    height: 350px;
    background: radial-gradient(circle at 60% 40%, 
        rgba(255, 182, 193, 0.9) 0%, 
        rgba(255, 182, 193, 0.6) 35%, 
        transparent 65%);
    bottom: 15%;
    left: 30%;
    transform: rotate(45deg) scale(1.3);
    animation: float 12s ease-in-out infinite;
}

/* Paint Drips */
.paint-drip {
    position: absolute;
    opacity: 0.7;
    mix-blend-mode: screen;
}

.drip-1 {
    width: 80px;
    height: 200px;
    background: linear-gradient(to bottom, 
        rgba(255, 182, 193, 0.8) 0%, 
        rgba(255, 182, 193, 0.4) 70%, 
        transparent 100%);
    bottom: 0;
    left: 35%;
    border-radius: 40px 40px 0 0;
    transform: scaleY(1.5);
}

.drip-2 {
    width: 60px;
    height: 150px;
    background: linear-gradient(to bottom, 
        rgba(255, 255, 150, 0.7) 0%, 
        rgba(255, 255, 150, 0.3) 80%, 
        transparent 100%);
    bottom: 0;
    right: 25%;
    border-radius: 30px 30px 0 0;
}

/* Floating Animation */
@keyframes float {
    0%, 100% {
        transform: translateY(0px) rotate(-15deg) scale(1.2);
    }
    50% {
        transform: translateY(-30px) rotate(-15deg) scale(1.2);
    }
}

/* Trust Section */
.trust-section {
    padding: 80px 0;
    background: #FAFAFA;
    text-align: center;
}

.trust-heading {
    font-family: 'Playfair Display', serif;
    font-size: clamp(32px, 4vw, 48px);
    font-weight: 700;
    color: #111;
    margin-bottom: 16px;
}

.trust-subheading {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 18px;
    font-weight: 400;
    color: var(--text-gray);
    margin-bottom: 48px;
}

.trust-brands {
    display: flex;
    flex-direction: column;
    gap: 32px;
    align-items: center;
}

.trust-brands-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 48px;
    flex-wrap: wrap;
}

.trust-logo {
    height: 24px;
    width: auto;
    filter: grayscale(100%) opacity(0.6);
    transition: all 0.3s ease;
}

.trust-logo:hover {
    filter: grayscale(0%) opacity(1);
}

.trust-logo-text {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 20px;
    font-weight: 600;
    letter-spacing: 2px;
    color: var(--text-gray);
    transition: color 0.3s ease;
}

.trust-logo-text:hover {
    color: var(--text-dark);
}

/* Specific logo adjustments */
.trust-logo[alt="Zara"] {
    height: 20px;
}

.trust-logo[alt="H&M"] {
    height: 28px;
}

.trust-logo[alt="Nike"] {
    height: 22px;
}

.trust-logo[alt="Levi's"] {
    height: 20px;
}

/* App Flow Section - Premium Styling */
.app-flow-section {
    padding: 100px 20px 120px;
    background: var(--gradient-pastel);
    position: relative;
    overflow-x: visible;
    overflow-y: visible;
    min-height: 800px;
    width: 100%;
}

.app-flow-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -25%;
    width: 80%;
    height: 80%;
    background: radial-gradient(circle, rgba(255, 79, 154, 0.05) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.app-flow-header {
    text-align: center;
    margin-bottom: 60px;
}

.app-flow-header h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(40px, 5vw, 56px);
    font-weight: 300;
    color: #1a1a1a;
    margin-bottom: 20px;
    letter-spacing: -0.02em;
}

.app-flow-header p {
    font-family: 'Inter', sans-serif;
    font-size: 20px;
    font-weight: 300;
    color: var(--text-gray);
    letter-spacing: 0.01em;
}

.app-screens-flow {
    display: flex;
    flex-direction: row;
    gap: 60px;
    justify-content: center;
}

@media (max-width: 768px) {
    .app-screens-flow {
        flex-direction: column;
    }
}

.app-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
}

.phone-mockup {
    position: relative;
    transform: translateY(0);
    transition: transform 0.3s ease;
    animation: float 6s ease-in-out infinite;
}

/* Floating animation for mockups */
@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
}

/* Different timing for each mockup */
.how-step:nth-child(1) .phone-mockup {
    animation-delay: 0s;
}

.how-step:nth-child(2) .phone-mockup {
    animation-delay: 2s;
}

.how-step:nth-child(3) .phone-mockup {
    animation-delay: 4s;
}

.phone-mockup:hover {
    transform: translateY(-5px);
}

.phone-frame {
    position: relative;
    width: 280px;
    height: 570px;
    background: linear-gradient(145deg, #1a1a1a 0%, #2d2d2d 100%);
    border-radius: 40px;
    padding: 12px;
    box-shadow: 
        0 50px 100px -20px rgba(0, 0, 0, 0.3),
        0 30px 60px -30px rgba(0, 0, 0, 0.5),
        inset 0 -2px 6px 0 rgba(255, 255, 255, 0.1);
}

.phone-frame::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 150px;
    height: 25px;
    background: #1a1a1a;
    border-radius: 0 0 20px 20px;
    z-index: 10;
}

.phone-frame::after {
    content: '';
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: var(--bg-dark);
    border-radius: 2px;
    z-index: 11;
}

/* Side buttons */
.phone-frame::before {
    content: '';
    position: absolute;
    right: -3px;
    top: 120px;
    width: 3px;
    height: 60px;
    background: linear-gradient(to bottom, #2a2a2a, #1a1a1a);
    border-radius: 0 2px 2px 0;
    box-shadow: 
        inset 0 1px 0 rgba(255,255,255,0.2),
        0 0 2px rgba(0,0,0,0.3);
}


.phone-screen {
    position: relative;
    width: 100%;
    height: 100%;
    background: var(--bg-dark);
    border-radius: 28px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Premium screen glass effect */
.phone-screen::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg,
        rgba(255, 255, 255, 0.2) 0%,
        rgba(255, 255, 255, 0.05) 20%,
        transparent 40%,
        transparent 60%,
        rgba(255, 255, 255, 0.05) 80%,
        rgba(255, 255, 255, 0.1) 100%);
    pointer-events: none;
    z-index: 2;
}

/* Screen reflection */
.phone-screen::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at 30% 30%,
        rgba(255, 255, 255, 0.15) 0%,
        transparent 50%);
    transform: rotate(-20deg);
    pointer-events: none;
    z-index: 3;
}

.screen-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: relative;
    z-index: 1;
}

/* Camera specific styling */
.camera-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: relative;
    z-index: 1;
}

.phone-frame {
    width: 280px;
    height: 560px;
    background: linear-gradient(135deg, #2a2a2a 0%, #1a1a1a 100%);
    border-radius: 36px;
    padding: 10px;
    box-shadow: 
        /* Ambient glow */
        0 0 120px rgba(180, 75, 255, 0.15),
        /* Multiple shadow layers */
        0 50px 100px rgba(0, 0, 0, 0.3),
        0 30px 60px rgba(0, 0, 0, 0.22),
        0 15px 35px rgba(0, 0, 0, 0.16),
        0 5px 15px rgba(0, 0, 0, 0.12),
        /* Inner highlights */
        inset 0 0 0 1px rgba(255, 255, 255, 0.1),
        inset 0 0 20px rgba(255, 255, 255, 0.05);
    margin: 0 auto;
    position: relative;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}


.phone-screen {
    position: relative;
    width: 100%;
    height: 100%;
    background: var(--bg-dark);
    border-radius: 28px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Premium screen glass effect */
.phone-screen::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg,
        rgba(255, 255, 255, 0.2) 0%,
        rgba(255, 255, 255, 0.05) 20%,
        transparent 40%,
        transparent 60%,
        rgba(255, 255, 255, 0.05) 80%,
        rgba(255, 255, 255, 0.1) 100%);
    pointer-events: none;
    z-index: 2;
}

/* Screen reflection */
.phone-screen::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at 30% 30%,
        rgba(255, 255, 255, 0.15) 0%,
        transparent 50%);
    transform: rotate(-20deg);
    pointer-events: none;
    z-index: 3;
}

.screen-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: relative;
    z-index: 1;
}

/* Camera Screen with Scanning UI */
.camera-screen {
    position: relative;
    background: var(--bg-dark);
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.camera-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Scan UI Overlay */
.scan-ui-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background: linear-gradient(180deg, 
        rgba(0, 0, 0, 0.6) 0%, 
        rgba(0, 0, 0, 0.2) 20%, 
        rgba(0, 0, 0, 0.2) 80%, 
        rgba(0, 0, 0, 0.6) 100%);
    z-index: 10;
}

/* Top Bar */
.scan-top-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.7), transparent);
}

.scan-icon-btn {
    width: 36px;
    height: 36px;
    border: none;
    background: none;
    color: white;
    cursor: pointer;
    opacity: 0.8;
    transition: opacity 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
}

.scan-icon-btn:hover {
    opacity: 1;
}

.scan-close,
.scan-flash {
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    color: white;
    font-size: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.scan-logo {
    color: white;
    font-weight: 600;
    font-size: 18px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

/* Large Scan Frame */
.scan-frame-large {
    position: absolute;
    top: 10%;
    left: 8%;
    right: 8%;
    bottom: 20%;
}

.scan-corner {
    position: absolute;
    width: 60px;
    height: 60px;
    border: 2px solid rgba(255, 255, 255, 0.8);
}

.scan-corner.tl {
    top: 0;
    left: 0;
    border-right: none;
    border-bottom: none;
}

.scan-corner.tr {
    top: 0;
    right: 0;
    border-left: none;
    border-bottom: none;
}

.scan-corner.bl {
    bottom: 0;
    left: 0;
    border-right: none;
    border-top: none;
}

.scan-corner.br {
    bottom: 0;
    right: 0;
    border-left: none;
    border-top: none;
}

/* Removed scan line for cleaner look */

/* Bottom Controls */
.scan-bottom-bar {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    padding: 40px 20px 30px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
}

/* Zoom Controls */
.zoom-controls {
    display: flex;
    align-items: center;
    gap: 20px;
    background: rgba(0, 0, 0, 0.6);
    padding: 6px 16px;
    border-radius: 20px;
}

.zoom-btn {
    color: white;
    font-size: 18px;
    font-weight: 300;
    background: none;
    border: none;
    padding: 0 8px;
    cursor: pointer;
}

.zoom-value {
    color: white;
    font-size: 14px;
    font-weight: 500;
    min-width: 40px;
    text-align: center;
}

.scan-hint {
    color: white;
    font-size: 13px;
    font-weight: 500;
    opacity: 0.9;
}

.scan-button {
    width: 60px;
    height: 60px;
    background: #8B5CF6;
    border: 3px solid rgba(0, 0, 0, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    position: relative;
    box-shadow: 0 4px 12px rgba(139, 92, 246, 0.4);
}

.scan-button-inner {
    width: 24px;
    height: 24px;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="white"><path d="M12 2L4 7v10c0 5.55 3.84 10.74 8 12 4.16-1.26 8-6.45 8-12V7l-8-5z"/></svg>') center/contain no-repeat;
}

.step-info {
    max-width: 250px;
    margin: 0 auto;
}

.step-number {
    font-family: 'Playfair Display', serif;
    font-size: 64px;
    font-weight: 300;
    font-style: italic;
    color: transparent;
    background: linear-gradient(135deg, #FF4F9A 0%, #8B5CF6 100%);
    -webkit-background-clip: text;
    background-clip: text;
    margin-bottom: 20px;
    letter-spacing: -0.02em;
}

.step-info h3 {
    font-family: 'Inter', sans-serif;
    font-size: 20px;
    font-weight: 600;
    color: #000;
    margin-bottom: 8px;
}

.step-info p {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    color: var(--text-gray);
    line-height: 1.5;
}

.flow-arrow {
    color: #9333ea;
    opacity: 0.5;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: auto;
    flex: 0 0 auto;
}

.flow-arrow svg {
    width: 40px;
    height: 40px;
}

/* Removed duplicate How It Works section */

.stat-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 24px;
    border-radius: 20px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    animation: slideRight 3s ease-in-out infinite;
}

@keyframes slideRight {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

.stat-card:hover {
    transform: translateY(-4px);
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.2);
}

.stat-number {
    font-family: 'Playfair Display', serif;
    font-size: 32px;
    font-weight: 900;
    color: #fff;
    margin-bottom: 4px;
}

.stat-label {
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 8px;
}

.stat-trend {
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    color: #4ADE80;
    font-weight: 500;
}

.stat-card.highlight {
    background: linear-gradient(135deg, rgba(180, 75, 255, 0.1) 0%, rgba(255, 111, 207, 0.1) 100%);
    border-color: rgba(180, 75, 255, 0.3);
}

.stat-icon {
    font-size: 24px;
    margin-bottom: 8px;
}

/* Remove floating elements for cleaner experience */
.floating-tags,
.scroll-indicator,
.hero-wrapper,
.hero-badge,
.hero-description,
.hero-actions {
    display: none !important;
}

/* Animations */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes fadeInUp {
    from { 
        opacity: 0;
        transform: translateY(30px);
    }
    to { 
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInLeft {
    from { 
        opacity: 0;
        transform: translateX(-30px);
    }
    to { 
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from { 
        opacity: 0;
        transform: translateX(30px);
    }
    to { 
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}


/* Minimal Navigation */
.nav-minimal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    padding: 32px 48px;
}

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

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

.brand-mark {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #fff 0%, rgba(255, 255, 255, 0.8) 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Playfair Display', serif;
    font-weight: 900;
    font-size: 20px;
    color: #000;
    box-shadow: 0 4px 20px rgba(255, 255, 255, 0.2);
}

.brand-wordmark {
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 0.05em;
    color: #fff;
    opacity: 0;
    animation: fadeInRight 0.8s ease-out 0.5s forwards;
}

.menu-trigger {
    width: 32px;
    height: 32px;
    background: none;
    border: none;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 6px;
    padding: 0;
}

.menu-trigger span {
    width: 100%;
    height: 2px;
    background: #fff;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.menu-trigger:hover span:first-child {
    transform: translateX(4px);
}

.menu-trigger:hover span:last-child {
    transform: translateX(-4px);
}

/* Editorial Styles */
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 8px 16px;
    border-radius: 100px;
    margin-bottom: 32px;
}

.badge-dot {
    width: 8px;
    height: 8px;
    background: #4ADE80;
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}

.badge-text {
    font-family: 'Inter', sans-serif;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.9);
}

.hero-text {
    max-width: 600px;
}

.hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.editorial-phones {
    position: relative;
}

.gradient-orb {
    position: absolute;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(180, 75, 255, 0.3) 0%, rgba(255, 111, 207, 0.2) 50%, transparent 70%);
    filter: blur(60px);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: -1;
}

.btn-editorial {
    background: #1a1a1a;
    color: white;
    padding: 18px 36px;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    border-radius: 0;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    letter-spacing: 1px;
    text-transform: uppercase;
    border: 1px solid #1a1a1a;
}

.btn-editorial:hover {
    background: #9333ea;
    border-color: #9333ea;
    transform: none;
    box-shadow: none;
}

.btn-editorial-outline {
    background: transparent;
    color: #1a1a1a;
    padding: 18px 36px;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    border-radius: 0;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    letter-spacing: 1px;
    text-transform: uppercase;
    border: 1px solid #1a1a1a;
}

.btn-editorial-outline:hover {
    background: #1a1a1a;
    color: white;
}

.editorial-stats {
    display: flex;
    gap: 40px;
    margin-top: 60px;
    padding-top: 40px;
    border-top: 1px solid #e5e7eb;
}

.stat {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.stat-number {
    font-size: 32px;
    font-weight: 300;
    color: #1a1a1a;
    font-family: var(--font-heading);
}

.stat-label {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #6b7280;
}

/* Hero Wrapper */
.hero-wrapper {
    position: relative;
    z-index: 2;
    height: 100vh;
    display: flex;
    align-items: center;
    padding: 0 48px;
    max-width: 1600px;
    margin: 0 auto;
}

/* Hero Main Content */
.hero-main {
    flex: 1;
    max-width: 720px;
    animation: fadeInUp 1s ease-out;
}

.hero-headline {
    font-family: 'Playfair Display', serif;
    font-size: clamp(72px, 9vw, 128px);
    font-weight: 900;
    line-height: 0.9;
    letter-spacing: -0.015em; /* Increased by 0.5px for luxury feel */
    color: #fff;
    margin-bottom: 32px;
    display: flex;
    flex-direction: column;
}

.hero-headline span {
    display: block;
    letter-spacing: -0.04em;
}

.line-1 {
    font-size: 0.5em;
    font-weight: 400;
    opacity: 0.8;
    margin-bottom: 8px;
    animation: fadeInLeft 0.8s ease-out 0.2s both;
}

.line-2 {
    animation: fadeInLeft 0.8s ease-out 0.4s both;
}

.line-3 {
    animation: fadeInLeft 0.8s ease-out 0.6s both;
}

.accent-dot {
    color: transparent;
    background: linear-gradient(135deg, #B44BFF 0%, #FF6FCF 100%);
    -webkit-background-clip: text;
    background-clip: text;
}

.hero-description {
    font-family: 'Inter', sans-serif;
    font-size: 20px;
    font-weight: 400;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 48px;
    max-width: 520px;
    animation: fadeIn 1s ease-out 0.8s both;
}

.text-gradient {
    color: transparent;
    background: linear-gradient(to right, #B44BFF 0%, #FF6FCF 100%);
    -webkit-background-clip: text;
    background-clip: text;
    font-weight: 500;
}

/* Hero Actions */
.hero-actions {
    display: flex;
    align-items: center;
    gap: 20px;
    animation: fadeIn 1s ease-out 1s both;
}

.btn {
    padding: 16px 32px;
    font-size: 16px;
    font-weight: 500;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    border: none;
}

.btn-primary {
    background: white;
    color: var(--text-dark);
}

.btn-primary:hover {
    background: #f3f4f6;
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.btn-secondary:hover {
    background: white;
    color: var(--text-dark);
}

/* Hero Brands Wrapper */
.hero-brands-wrapper {
    position: absolute;
    bottom: 80px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

.brands-intro,
.hero-brands-section .brands-intro {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 0.75rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.7);
    letter-spacing: 0.1em;
    margin: 0 0 20px 0;
    text-transform: uppercase;
    text-align: center;
}

/* Hero Brands Row - Responsive Grid */
.hero-brands-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(80px, 1fr));
    gap: clamp(1rem, 3vw, 3rem);
    align-items: center;
    justify-items: center;
    margin-bottom: var(--space-s);
}

.hero-brands-row:first-child {
    gap: 56px; /* Slightly more space for primary brands */
}

/* Brand Logo with Fade-in Animation */
@keyframes brandFadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 0.75;
        transform: translateY(0);
    }
}

.brand-logo {
    height: 22px;
    width: auto;
    filter: brightness(0) invert(1);
    opacity: 0;
    transition: opacity 0.3s ease;
    animation: brandFadeIn 0.8s ease-out forwards;
}

/* Specific logo adjustments for visual balance */
.zalando-logo {
    height: 22px; /* Standard height */
}

.brand-logo[alt="Zara"] {
    height: 18px; /* Zara has tall letters */
}

.brand-logo[alt="Nike"] {
    height: 20px; /* Nike swoosh is compact */
}

.brand-logo[alt="H&M"] {
    height: 24px; /* H&M needs to be bigger to match visual weight */
}

.brand-logo[alt="Adidas"] {
    height: 22px; /* Standard height */
}

.brand-logo[alt="Levi's"] {
    height: 20px; /* Levi's is compact */
}

.brand-logo:hover {
    opacity: 0.9;
}

.brand-logo-text {
    font-family: 'SF Pro Display', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 2px;
    color: rgba(255, 255, 255, 0.6);
    transition: opacity 0.3s ease;
    text-transform: uppercase;
    opacity: 0;
    animation: brandFadeIn 0.8s ease-out forwards;
}

/* Staggered animation delays for brand logos */
.hero-brands-row > *:nth-child(1) { animation-delay: 0.1s; }
.hero-brands-row > *:nth-child(2) { animation-delay: 0.2s; }
.hero-brands-row > *:nth-child(3) { animation-delay: 0.3s; }
.hero-brands-row > *:nth-child(4) { animation-delay: 0.4s; }
.hero-brands-row > *:nth-child(5) { animation-delay: 0.5s; }

.brand-logo-text:hover {
    opacity: 0.8;
}

/* Hero Fashion Buttons */
.btn-download {
    position: relative;
    background: #fff;
    color: #000;
    border: none;
    padding: 0;
    border-radius: 16px;
    font-family: 'Inter', sans-serif;
    cursor: pointer;
    overflow: hidden;
    transition: all 0.3s ease;
}

.btn-inner {
    position: relative;
    padding: 20px 32px;
    display: flex;
    align-items: center;
    gap: 16px;
    z-index: 1;
}

.btn-text {
    font-size: 16px;
    font-weight: 700;
}

.btn-platforms {
    display: flex;
    gap: 8px;
    padding-left: 16px;
    border-left: 1px solid rgba(0, 0, 0, 0.1);
}

.btn-shimmer {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    animation: shimmer 3s ease-in-out infinite;
}

@keyframes shimmer {
    0% { left: -100%; }
    100% { left: 100%; }
}

.btn-download:hover {
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 10px 40px rgba(255, 255, 255, 0.3);
}

.btn-play {
    display: flex;
    align-items: center;
    gap: 12px;
    background: none;
    border: none;
    color: #fff;
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.play-icon {
    width: 56px;
    height: 56px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    position: relative;
}

.play-icon::before {
    content: '';
    position: absolute;
    inset: -8px;
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    animation: playPulse 2s ease-in-out infinite;
}

@keyframes playPulse {
    0%, 100% { transform: scale(1); opacity: 0; }
    50% { transform: scale(1.2); opacity: 1; }
}

.btn-play:hover .play-icon {
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.1);
}

.btn-play:hover span {
    opacity: 0.8;
}


.brand-logo.farfetch-logo {
    height: 20px;
}


.brand-logo-text {
    font-size: 16px;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.8);
    letter-spacing: 2px;
    font-family: var(--font-body);
    transition: all 0.3s ease;
}

.brand-logo-text:hover {
    color: rgba(255, 255, 255, 1);
    transform: translateY(-1px);
}

/* Hero Note */
.hero-note {
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.hero-note p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    font-style: italic;
    display: flex;
    align-items: center;
    gap: 5px;
}

/* How It Works Section */
.how-it-works {
    padding: 100px 0;
    background: var(--bg-white);
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-title {
    font-family: var(--font-heading);
    font-size: clamp(36px, 5vw, 48px);
    font-weight: 400;
    color: var(--text-dark);
    margin-bottom: 16px;
}

.section-subtitle {
    font-size: 18px;
    color: var(--text-gray);
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.step-card {
    text-align: center;
    padding: 40px 30px;
    background: var(--bg-light);
    border-radius: 20px;
    position: relative;
    transition: all 0.3s ease;
}

.step-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.step-card .step-number {
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 14px;
    font-weight: 600;
    color: var(--purple-primary);
}

.step-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 24px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.step-icon img {
    width: 40px;
    height: 40px;
    filter: brightness(0) invert(1);
}

.step-card h3 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--text-dark);
}

.step-card p {
    color: var(--text-gray);
    line-height: 1.6;
}

/* App Showcase Section */
.app-showcase {
    padding: 100px 0;
    background: var(--bg-light);
}

.showcase-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.showcase-text h2 {
    font-family: var(--font-heading);
    font-size: clamp(36px, 5vw, 48px);
    font-weight: 400;
    color: var(--text-dark);
    margin-bottom: 24px;
    line-height: 1.2;
}

.text-gradient {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.showcase-text > p {
    font-size: 18px;
    color: var(--text-gray);
    margin-bottom: 40px;
    line-height: 1.6;
}

.feature-list {
    margin-bottom: 40px;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 24px;
}

.feature-icon {
    font-size: 24px;
    line-height: 1;
    margin-top: 4px;
}

.feature-item h4 {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 4px;
}

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

.app-download {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.app-store-btn,
.google-play-btn {
    display: inline-block;
    transition: transform 0.3s ease;
}

.app-store-btn:hover,
.google-play-btn:hover {
    transform: translateY(-2px);
}

.app-store-btn img {
    height: 48px;
    width: auto;
}

.google-play-btn img {
    height: 48px;
    width: auto;
    transform: scale(1.4);
    margin: 0 -15px;
}

.showcase-phones {
    position: relative;
    height: 600px;
}

.showcase-phones .phone-mockup {
    position: absolute;
    width: 280px;
    height: auto;
    filter: drop-shadow(0 30px 60px rgba(0, 0, 0, 0.2));
}

.phone-1 {
    top: 0;
    left: 0;
    z-index: 2;
}

.phone-2 {
    top: 60px;
    right: 0;
    z-index: 1;
}

/* Stats Section */
.stats-section {
    padding: 80px 0;
    background: var(--gradient-primary);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    text-align: center;
}

.stat-card h3 {
    font-family: var(--font-heading);
    font-size: 48px;
    font-weight: 700;
    color: white;
    margin-bottom: 8px;
}

.stat-card p {
    color: var(--text-secondary);
    font-size: 16px;
    font-weight: 500;
}

/* CTA Section */
.cta-section {
    position: relative;
    padding: 120px 0;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.cta-background {
    position: absolute;
    inset: 0;
    z-index: -1;
}

.cta-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cta-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(0, 0, 0, 0.8) 0%,
        rgba(0, 0, 0, 0.6) 100%
    );
}

.cta-content {
    text-align: center;
    position: relative;
    z-index: 1;
}

.cta-content h2 {
    font-family: var(--font-heading);
    font-size: clamp(36px, 5vw, 56px);
    font-weight: 400;
    color: white;
    margin-bottom: 20px;
}

.cta-content p {
    font-size: 20px;
    color: var(--text-secondary);
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.btn-white {
    background: white;
    color: var(--text-dark);
}

.btn-white:hover {
    background: #f3f4f6;
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

/* App Demo Section - Hidden */
.app-demo {
    display: none;
}

.app-demo .container {
    max-width: none;
    width: 100%;
}

.app-demo-header {
    text-align: center;
    margin-bottom: 80px;
}

.app-demo-header h2 {
    font-family: var(--font-heading);
    font-size: clamp(36px, 5vw, 48px);
    font-weight: 400;
    color: var(--text-dark);
    margin-bottom: 16px;
}

.app-demo-header p {
    font-size: 18px;
    color: var(--text-gray);
    line-height: 1.5;
}

.app-demo.editorial {
    background: #ffffff;
}

.editorial-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 60px;
}

.editorial-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 120px;
    align-items: center;
}

.editorial-number {
    font-size: 180px;
    font-weight: 100;
    color: #f0f0f0;
    font-family: var(--font-heading);
    line-height: 1;
    position: absolute;
    top: -80px;
    left: -40px;
    z-index: 0;
}

.editorial-content {
    position: relative;
}

.editorial-headline {
    font-family: var(--font-heading);
    font-size: 72px;
    font-weight: 300;
    line-height: 0.9;
    color: #1a1a1a;
    margin-bottom: 30px;
    letter-spacing: -2px;
    position: relative;
    z-index: 1;
}

.editorial-lead {
    font-size: 20px;
    line-height: 1.6;
    color: #4a4a4a;
    margin-bottom: 60px;
    font-weight: 300;
}

.editorial-steps {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.step-item {
    display: grid;
    grid-template-columns: 40px 1fr;
    gap: 20px;
    align-items: start;
}

.step-number {
    font-family: var(--font-heading);
    font-size: 24px;
    color: #1a1a1a;
    font-style: italic;
}

.step-item h3 {
    grid-column: 2;
    font-size: 24px;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 8px;
    letter-spacing: -0.5px;
}

.step-item p {
    grid-column: 2;
    font-size: 16px;
    line-height: 1.6;
    color: #6b7280;
    font-weight: 300;
}

/* Minimal Phone Display */
.editorial-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.phone-display-minimal {
    position: relative;
    width: 300px;
    height: 600px;
    background: var(--bg-dark);
    border-radius: 30px;
    padding: 10px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

.app-screen-minimal {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
    filter: grayscale(100%) contrast(1.2);
    opacity: 0.8;
}

.screen-overlay {
    position: absolute;
    inset: 10px;
    border-radius: 20px;
    background: rgba(0, 0, 0, 0.2);
    pointer-events: none;
}


.app-flow {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 40px;
    padding: 0 40px;
    flex-wrap: nowrap;
}

.flow-arrow {
    font-size: 32px;
    color: var(--purple-primary);
    opacity: 0.5;
}

/* Phone Mockup */
.app-demo .phone-mockup {
    flex-shrink: 0;
    text-align: center;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: auto;
}

.phone-frame {
    width: 280px;
    height: 560px;
    background: #1a1a1a;
    border-radius: 36px;
    padding: 10px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    margin: 0 auto 24px;
    position: relative;
    z-index: 1;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.phone-mockup:hover .phone-frame {
    transform: translateY(-5px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.2);
}

.phone-frame::before {
    content: '';
    position: absolute;
    top: 35px;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 5px;
    background: var(--bg-dark);
    border-radius: 10px;
}

.phone-screen {
    position: relative;
    width: 100%;
    height: 100%;
    background: var(--bg-dark);
    border-radius: 28px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Premium screen glass effect */
.phone-screen::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg,
        rgba(255, 255, 255, 0.2) 0%,
        rgba(255, 255, 255, 0.05) 20%,
        transparent 40%,
        transparent 60%,
        rgba(255, 255, 255, 0.05) 80%,
        rgba(255, 255, 255, 0.1) 100%);
    pointer-events: none;
    z-index: 2;
}

/* Screen reflection */
.phone-screen::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at 30% 30%,
        rgba(255, 255, 255, 0.15) 0%,
        transparent 50%);
    transform: rotate(-20deg);
    pointer-events: none;
    z-index: 3;
}

.app-screenshot {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.95) saturate(0.85) contrast(0.95);
    transition: filter 0.3s ease;
}

.phone-mockup:hover .app-screenshot {
    filter: brightness(1) saturate(1) contrast(1);
}

.step-label {
    text-align: center;
}

.step-label .step-number {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: #f3ebfd;
    border: 1px solid #e4d4f4;
    border-radius: 50%;
    font-weight: 700;
    font-style: italic;
    font-size: 18px;
    margin: 0 auto 12px auto;
    color: #8b5cf6;
    box-shadow: 0 0 20px rgba(139, 92, 246, 0.15);
}

.step-label h4 {
    font-size: 24px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 8px;
}

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

.flow-arrow-container {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    align-self: center;
    margin-top: -50px;
}

/* Ensure app-demo phones are visible */
.app-demo .phone-frame {
    position: relative;
    z-index: 1;
}

/* Camera Interface Styles */
.camera-interface {
    position: relative;
    background: var(--bg-dark);
}

.camera-background {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center bottom;
    transform: scale(2.5);
    transform-origin: center bottom;
}

.camera-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background: radial-gradient(
        ellipse at center,
        transparent 20%,
        rgba(0, 0, 0, 0.4) 50%,
        rgba(0, 0, 0, 0.6) 100%
    );
}

/* Top Camera Controls */
.camera-top-controls {
    display: flex;
    justify-content: space-between;
    padding: 20px;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.8), transparent);
}

.camera-control-btn {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.camera-control-btn:hover {
    background: rgba(255, 255, 255, 0.2);
}

/* Scanning Frame */
.scan-frame-container {
    position: absolute;
    top: 15%;
    left: 10%;
    right: 10%;
    bottom: 25%;
}

.scan-corner {
    position: absolute;
    width: 50px;
    height: 50px;
    border: 2px solid rgba(255, 255, 255, 0.8);
}

.scan-corner.top-left {
    top: 0;
    left: 0;
    border-right: none;
    border-bottom: none;
}

.scan-corner.top-right {
    top: 0;
    right: 0;
    border-left: none;
    border-bottom: none;
}

.scan-corner.bottom-left {
    bottom: 0;
    left: 0;
    border-right: none;
    border-top: none;
}

.scan-corner.bottom-right {
    bottom: 0;
    right: 0;
    border-left: none;
    border-top: none;
}

.scan-dots {
    position: absolute;
    inset: 0;
    display: flex;
    justify-content: space-around;
    align-items: center;
}

.scan-dot {
    width: 4px;
    height: 4px;
    background: #B44BFF;
    border-radius: 50%;
    opacity: 0.6;
}

/* Bottom Camera Controls */
.camera-bottom-controls {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    padding: 10px 20px 20px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.6), transparent);
}

.zoom-control {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 3px 10px;
    border-radius: 15px;
    opacity: 0.7;
}

.zoom-btn {
    background: none;
    border: none;
    color: white;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    padding: 0 4px;
}

.zoom-level {
    color: white;
    font-size: 11px;
    font-weight: 500;
    min-width: 25px;
    text-align: center;
}

.scan-instruction {
    color: rgba(255, 255, 255, 0.7);
    font-size: 10px;
    text-align: center;
    font-weight: 400;
    letter-spacing: 0.3px;
    margin-bottom: 5px;
}

.capture-button {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #9333ea 0%, #7c3aed 100%);
    border: 2px solid rgba(0, 0, 0, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 3px 15px rgba(147, 51, 234, 0.25);
}

.capture-button:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 25px rgba(180, 75, 255, 0.6);
}

.capture-button-inner {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.arrow-svg {
    width: 40px;
    height: 40px;
    opacity: 0.6;
    transition: all 0.3s ease;
}

.arrow-svg:hover {
    opacity: 1;
    transform: translateX(3px);
}


/* Features Section */
.features {
    padding: 100px 0;
    background: linear-gradient(180deg, #FFFFFF 0%, #FAFBFD 100%);
}

.features h2 {
    text-align: center;
    font-family: var(--font-heading);
    font-size: clamp(36px, 5vw, 48px);
    font-weight: 400;
    color: var(--text-dark);
    margin-bottom: 60px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.feature-card {
    text-align: center;
    padding: 40px 30px;
    background: white;
    border-radius: 20px;
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.feature-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 24px;
    padding: 16px;
    background: linear-gradient(135deg, rgba(255, 79, 154, 0.1) 0%, rgba(139, 92, 246, 0.1) 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-icon svg {
    color: #8B5CF6;
}

.feature-card h3 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--text-dark);
}

.feature-card p {
    color: var(--text-gray);
    line-height: 1.6;
}

/* Download CTA */
.download-cta {
    padding: 120px 0;
    background: linear-gradient(135deg, #FF4F9A 0%, #8B5CF6 100%);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.download-cta::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
    animation: pulse 6s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1) rotate(0deg); }
    50% { transform: scale(1.2) rotate(180deg); }
}

.download-cta h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(40px, 5vw, 56px);
    font-weight: 300;
    color: white;
    margin-bottom: 16px;
    position: relative;
    z-index: 1;
}

.download-cta p {
    font-family: 'Inter', sans-serif;
    font-size: 20px;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 48px;
    position: relative;
    z-index: 1;
}

.download-buttons {
    display: flex;
    gap: 16px;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
}

/* Floating App Badges */
.floating-badges {
    position: absolute;
    top: 32px;
    right: 48px;
    display: flex;
    gap: 12px;
    z-index: 100;
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.floating-app-badge {
    display: inline-block;
    transition: transform 0.2s ease;
}

.floating-app-badge:hover {
    transform: translateY(-2px);
}

.floating-app-badge img {
    height: 36px;
    width: auto;
    display: block;
}

/* Make Google Play badge same visual size as Apple */
.floating-app-badge:last-child img {
    height: 50px;
    margin: -7px -9px;
}

@media (max-width: 480px) {
    .floating-badges {
        display: none; /* Hide floating badges only on small mobile */
    }
    
    /* Ensure hero main doesn't get cut off */
    .hero-main {
        min-height: auto;
        padding-bottom: 20px;
    }
    
    /* Prevent brand section from overlapping */
    .hero-brands-section {
        position: relative;
        bottom: auto;
    }
}

/* Footer */
.footer {
    position: relative;
    background: linear-gradient(180deg, #1a0d2e 0%, #0f0517 100%);
    color: #fff;
    padding: 80px 0 40px;
    overflow: hidden;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 120px;
    margin-bottom: 60px;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.footer-logo-wrapper {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.footer-logo-image {
    width: 80px;
    height: 80px;
    object-fit: contain;
    position: relative;
    top: 3px;
}

.footer-logo-text {
    font-family: 'Playfair Display', serif;
    font-size: 32px;
    font-weight: 500;
    letter-spacing: 0.05em;
    color: #fff;
}

.footer-tagline {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
    margin-bottom: 24px;
}

.footer-download {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.5);
    margin: 0 0 16px 0;
    font-weight: 400;
}

.footer-disclaimer {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.5);
    margin: 0;
    margin-bottom: 24px;
    font-style: italic;
}

.footer-apps {
    display: flex;
    gap: 12px;
    margin-top: 10px;
}

.footer-app-badge {
    height: 36px;
    opacity: 0.8;
    transition: all 0.2s ease;
}

.footer-app-badge:hover {
    opacity: 1;
    transform: translateY(-2px);
}

.footer-app-badge img {
    height: 36px;
    width: auto;
}

.footer-app-badge:last-child img {
    height: 50px;
    margin: -7px -10px;
}

.footer-nav {
    display: flex;
    flex-direction: row;
    gap: 48px;
}

.footer-personality {
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    font-weight: 500;
    font-style: italic;
    color: rgba(255, 255, 255, 0.7); /* Light color for dark footer */
    margin: 0 0 24px 0;
    letter-spacing: -0.01em;
}

.footer-column h4 {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin-bottom: 20px;
    color: rgba(255, 255, 255, 0.5);
}

.footer-column a {
    display: block;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 14px;
    padding: 6px 0;
    transition: all 0.2s ease;
}

.footer-column a:hover {
    color: #fff;
    transform: translateX(4px);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 13px;
    margin: 0;
}

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

.footer-social a {
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

/* Premium hover gradient */
.footer-social a::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--gradient-primary);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 0;
}

.footer-social a:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 8px 24px rgba(180, 75, 255, 0.25);
}

.footer-social a:hover::before {
    opacity: 0.1;
}

.footer-social svg {
    width: 22px;
    height: 22px;
    fill: rgba(255, 255, 255, 0.8);
    transition: all 0.4s ease;
    position: relative;
    z-index: 1;
}

.footer-social a:hover svg {
    fill: rgba(255, 255, 255, 1);
    transform: scale(1.1);
}

/* Mobile Responsive Footer */
@media (max-width: 768px) {
    .footer {
        padding: 50px 0 20px;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 40px;
    }
    
    .footer-nav {
        gap: 40px;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    
    .footer-social {
        order: -1;
    }
}

/* Responsive Design */
@media (max-width: 1200px) {
    .hero-wrapper {
        flex-direction: column;
        justify-content: center;
        text-align: center;
    }
    
    .hero-main {
        max-width: 600px;
        text-align: center;
    }
    
    .hero-stats {
        flex-direction: row;
        margin-left: 0;
        margin-top: 48px;
        justify-content: center;
    }
    
    .stat-card {
        min-width: 160px;
    }
    
    .hero-actions {
        justify-content: center;
    }
}

@media (max-width: 1024px) {
    .app-flow {
        flex-direction: column;
        gap: 40px;
        min-width: auto;
        align-items: center;
    }
    
    .flow-arrow-container {
        transform: rotate(90deg);
        margin-top: 0;
    }
    
    .floating-tags {
        display: none;
    }
}

@media (max-width: 768px) {
    /* Premium phone mockups on mobile */
    .premium-phone {
        width: 240px;
        height: 488px;
    }
    
    .phone-screen-content {
        top: 9%;
        left: 7%;
        width: 86%;
        height: 82%;
        border-radius: 32px;
    }
    
    .nav-header {
        top: 24px;
        left: 20px;
    }
    
    .brand-logo-nav {
        height: 40px;
    }
    
    .hero-content {
        padding: 0 20px;
    }
    
    .hero-content-wrapper {
        padding-left: 0;
        text-align: center;
    }
    
    .hero-headline {
        font-size: clamp(48px, 13vw, 64px);
        letter-spacing: -0.04em;
        line-height: 0.9;
        margin-bottom: 24px;
    }
    
    .hero-subheadline {
        font-size: 17px;
        margin-bottom: 36px;
        line-height: 1.5;
        br { display: none; }
    }
    
    .hero-cta-group {
        flex-direction: column;
        gap: 12px;
        align-items: center;
    }
    
    .app-store-btn img {
        height: 44px;
    }
    
    .google-play-btn img {
        height: 44px;
        transform: scale(1.35);
        margin: 0 -14px;
    }
    
    .brand-trust-wrapper {
        justify-content: center;
        gap: 20px;
    }
    
    .trust-logo {
        height: 20px;
    }
    
    .hero-main {
        margin-top: -20px;
    }
    
    .hero-headline {
        font-size: clamp(36px, 10vw, 48px);
        line-height: 1.1; /* Ensure max 3 lines on mobile */
    }
    
    .hero-subheadline {
        font-size: 16px;
        margin-bottom: 28px;
    }
    
    .hero-main {
        padding: 40px 20px;
        align-items: center;
    }
    
    .hero-text-section {
        text-align: center;
    }
    
    .hero-brands-inline,
    .hero-brands-inline .brands-intro {
        text-align: center;
    }
    
    .hero-brands-inline .hero-brands-row {
        justify-content: center;
    }
    
    .hero-app-badges {
        flex-direction: column;
        gap: 12px;
        align-items: center;
        justify-content: center;
    }
    
    .app-badge img {
        height: 44px;
    }
    
    .app-badge img[alt="Get it on Google Play"] {
        height: 44px;
        width: 148px;
    }
    
    .hero-brands-wrapper {
        position: relative;
        bottom: 40px;
        left: 50%;
        transform: translateX(-50%);
        gap: 16px;
    }
    
    .hero-brands-row {
        gap: 20px;
        flex-wrap: wrap;
        justify-content: center;
        max-width: 100%;
    }
    
    .hero-brands-row:first-child {
        gap: 20px;
        margin-bottom: 16px;
    }
    
    /* Stack logos in neat rows on mobile */
    .hero-brands-inline {
        margin-top: 60px;
        padding-top: 16px;
    }
    
    .hero-brands-inline .hero-brands-row {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 24px 16px;
        justify-items: center;
        align-items: center;
    }
    
    .brand-logo {
        height: 16px;
    }
    
    .zalando-logo {
        height: 16px;
    }
    
    .brand-logo[alt="Zara"] {
        height: 14px;
    }
    
    .brand-logo[alt="Nike"] {
        height: 15px;
    }
    
    .brand-logo[alt="H&M"] {
        height: 18px;
    }
    
    .brand-logo[alt="Adidas"] {
        height: 16px;
    }
    
    .brand-logo[alt="Levi's"] {
        height: 15px;
    }
    
    .brand-logo-text {
        font-size: 12px;
        letter-spacing: 1.5px;
    }
    
    .cta-group {
        flex-direction: column;
        width: 100%;
        align-items: center;
    }
    
    .cta-primary,
    .cta-secondary {
        width: 90%;
        max-width: 320px;
        justify-content: center;
    }
    
    .animated-shimmer {
        width: 200px;
        height: 200px;
    }
    
    .hero-fade {
        height: 150px;
    }
    
    
    .flow-arrow {
        transform: rotate(90deg);
    }
    
    .phone-frame {
        width: 260px;
        height: 520px;
    }
    
    .how-it-works {
        padding: 60px 20px;
    }
    
    .steps {
        gap: 40px;
    }
    
    .phone-frame {
        width: 260px;
        height: 520px;
    }
    
    .showcase-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .showcase-phones {
        height: 400px;
        margin-top: 40px;
    }
    
    .phone-mockup {
        width: 200px;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-content {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-links {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .phone-frame {
        width: 240px;
        height: 480px;
    }
    
    .brand-logos {
        gap: 20px;
    }
    
    .brand-logo {
        height: 20px;
    }
}
/* ─── How it Works Section (rebuilt) ─────────────────────────────── */
.how-works{
  margin-top: 0; /* Remove negative margin */
  padding: 120px 0 120px; /* Adjust padding */
  text-align:center;
  position: relative;
  overflow: visible;
  /* Keep section background clean */
  background: #FAFBFC;
}

/* Subtle gradient transition to next section */
.how-works::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 150px;
  background: linear-gradient(to bottom,
    transparent 0%,
    rgba(255, 249, 230, 0.1) 50%,
    rgba(255, 249, 230, 0.3) 100%
  );
  pointer-events: none;
  z-index: 1;
}

/* Hide the notch/top bar lines on mockups */
.how-works .phone-frame::before,
.how-works .phone-frame::after {
  display: none !important;
}

/* Premium Mockup Styles */
.premium-mockup {
    position: relative;
    width: 100%;
    max-width: 400px; /* Match other mockups */
    margin: 0 auto 30px; /* Space between mockup and text */
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    /* Remove constraints that were making it too small */
    box-shadow: none;
    align-items: center;
    justify-content: center;
}

/* Clean editorial layout - no individual backgrounds */
.how-step {
    padding: 80px 40px 60px; /* More breathing room */
    position: relative;
    overflow: visible;
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    cursor: pointer;
}

/* Premium hover effect */
/* Remove duplicate hover effect - keeping the better one below */

/* Enhanced shadow intensification on hover */
.how-step:hover .mockup-complete {
    filter: drop-shadow(0px 12px 28px rgba(0, 0, 0, 0.16));
    transform: translateY(-8px) scale(1.02);
}

/* Make scanner UI follow the mockup transform on hover */
.how-step:hover .scanner-ui {
    transform: translateY(-8px) scale(1.02);
}


.how-step:nth-child(1) .premium-mockup {
    animation-delay: 0s;
}

.how-step:nth-child(2) .premium-mockup {
    animation-delay: 2s;
}

.how-step:nth-child(3) .premium-mockup {
    animation-delay: 4s;
}

.how-step:hover {
    transform: translateY(-5px);
    z-index: 10;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Remove the old hover effects - now handled by container */

/* Removed gradient pulse effect for cleaner aesthetic */

/* Removed gradient glow on hover to avoid double background effect */

@keyframes glowIn {
    to {
        opacity: 1;
    }
}

.mockup-complete {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: contain; /* Show full mockup without cropping */
    /* Remove shadow - container handles it */
    filter: none;
    transition: all 0.3s cubic-bezier(0.23, 1, 0.32, 1);
    position: relative;
}

/* Mockup glass wrapper for premium effect */
.mockup-glass-wrapper {
    position: relative;
    width: 100%;
    max-width: 400px; /* Match phone-screen-wrapper */
    aspect-ratio: 9/19.5; /* iPhone aspect ratio */
    margin: 0 auto;
    border-radius: 50px;
    overflow: hidden;
    /* Remove shadow - container has it */
    box-shadow: none;
    transition: transform 0.3s ease;
}

/* Ensure ALL mockups are same size */
.premium-mockup,
.mockup-glass-wrapper,
.phone-screen-wrapper {
    width: 100% !important;
    max-width: 400px !important;
    aspect-ratio: 9/19.5 !important;
}


/* Soft glow effect for floating - removed to avoid conflict with glass reflection */

/* Phone Screen Wrapper */
.phone-screen-wrapper {
    position: relative;
    width: 100%;
    max-width: 400px; /* Much larger for scanner UI */
    margin: 0 auto;
    aspect-ratio: 9/19.5; /* iPhone aspect ratio */
    border-radius: 50px;
    overflow: hidden;
    /* Clip the overlay to phone boundaries */
    isolation: isolate;
    display: flex;
    align-items: center;
    justify-content: center;
    /* Remove shadow - container has it */
    box-shadow: none;
    transition: transform 0.3s ease;
}

.phone-screen-wrapper img {
    height: 100%;
    width: auto;
    object-fit: contain;
}

/* Premium glass effect overlay */
.phone-screen-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg,
        rgba(255, 255, 255, 0.15) 0%,
        rgba(255, 255, 255, 0.05) 20%,
        transparent 40%,
        transparent 60%,
        rgba(255, 255, 255, 0.05) 80%,
        rgba(255, 255, 255, 0.08) 100%);
    pointer-events: none;
    z-index: 200;
}

/* Screen reflection effect */
.phone-screen-wrapper::after {
    content: '';
    position: absolute;
    top: -20%;
    left: -10%;
    width: 50%;
    height: 120%;
    background: linear-gradient(105deg,
        transparent 40%,
        rgba(255, 255, 255, 0.1) 50%,
        rgba(255, 255, 255, 0.2) 52%,
        rgba(255, 255, 255, 0.1) 54%,
        transparent 60%);
    transform: skewX(-20deg);
    pointer-events: none;
    z-index: 201;
}

/* Scanner Overlay positioned within phone screen */
.scanner-overlay {
    position: absolute;
    /* Full screen scanner overlay */
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: transparent; /* NO BACKGROUND - just UI elements */
    overflow: hidden; /* Keep UI within bounds */
    border-radius: inherit; /* Match phone screen corners */
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    pointer-events: auto;
    z-index: 10;
}



/* Scanner Title */
.scanner-title {
    position: absolute;
    top: 80px; /* Same level as controls */
    left: 50%;
    transform: translateX(-50%);
    color: white;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 17px;
    font-weight: 600;
    letter-spacing: -0.5px;
    z-index: 20;
}

/* Top Controls */
.scanner-top-controls {
    position: absolute;
    top: 80px; /* Lower position, not at the very top */
    left: 20px;
    right: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 20;
}

.scanner-control {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(10px);
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
    pointer-events: auto; /* Make buttons clickable */
}

.scanner-control svg {
    width: 20px;
    height: 20px;
}

.scanner-control:hover {
    background: rgba(0, 0, 0, 0.7);
    transform: scale(1.05);
}

/* Full Screen Scan Borders */
.scan-borders {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 85%;
    height: 40%;
    pointer-events: none;
    z-index: 15;
}

.scan-corner {
    position: absolute;
    width: 50px;
    height: 50px;
}

.scan-corner::before,
.scan-corner::after {
    content: '';
    position: absolute;
    background: white;
    box-shadow: 0 0 8px rgba(255, 255, 255, 0.5);
}

/* Top-left corner L-shape */
.scan-corner.top-left {
    top: 0;
    left: 0;
}

.scan-corner.top-left::before {
    top: 0;
    left: 0;
    width: 50px;
    height: 1px;
}

.scan-corner.top-left::after {
    top: 0;
    left: 0;
    width: 1px;
    height: 50px;
}

/* Top-right corner L-shape */
.scan-corner.top-right {
    top: 0;
    right: 0;
}

.scan-corner.top-right::before {
    top: 0;
    right: 0;
    width: 50px;
    height: 1px;
}

.scan-corner.top-right::after {
    top: 0;
    right: 0;
    width: 1px;
    height: 50px;
}

/* Bottom-left corner L-shape */
.scan-corner.bottom-left {
    bottom: 0;
    left: 0;
}

.scan-corner.bottom-left::before {
    bottom: 0;
    left: 0;
    width: 50px;
    height: 1px;
}

.scan-corner.bottom-left::after {
    bottom: 0;
    left: 0;
    width: 1px;
    height: 50px;
}

/* Bottom-right corner L-shape */
.scan-corner.bottom-right {
    bottom: 0;
    right: 0;
}

.scan-corner.bottom-right::before {
    bottom: 0;
    right: 0;
    width: 50px;
    height: 1px;
}

.scan-corner.bottom-right::after {
    bottom: 0;
    right: 0;
    width: 1px;
    height: 50px;
}

/* Bottom Section */
.scanner-bottom {
    position: absolute;
    bottom: 80px; /* Higher up from bottom */
    left: 0;
    right: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    z-index: 20;
}

.scan-hint {
    color: white;
    font-size: 14px;
    font-weight: 500;
    text-align: center;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

/* Exact Snap Button from App - Matching images 2 & 3 */
.snap-button {
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
    transition: transform 0.2s ease;
    pointer-events: auto; /* Make button clickable */
}

.snap-button:active {
    transform: scale(0.95);
}

.snap-button-outer {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: #B44BFF; /* Purple button like reference */
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    box-shadow: 0 4px 12px rgba(180, 75, 255, 0.3);
}

.snap-button-inner {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: #B44BFF; /* Solid purple like in the app */
    box-shadow: 0 4px 20px rgba(180, 75, 255, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

/* Camera icon */
.snap-button-inner::after {
    content: '';
    position: absolute;
    width: 28px;
    height: 24px;
    background-image: url("data:image/svg+xml,%3Csvg width='28' height='24' viewBox='0 0 28 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M23 19a2 2 0 01-2 2H7a2 2 0 01-2-2V8a2 2 0 012-2h3.5l1.5-2h4l1.5 2H21a2 2 0 012 2v11z' stroke='white' stroke-width='2'/%3E%3Ccircle cx='14' cy='13' r='4' stroke='white' stroke-width='2'/%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

/* Remove flow line - clean container approach */

/* Hide the old arrows */
.flow-arrow {
    display: none;
}

/* Step labels */
.step-label {
    text-align: center;
    max-width: 320px;
    margin: 0 auto;
    padding-top: 40px;
}

.step-number {
    font-family: 'Inter', sans-serif;
    font-size: 1.375rem; /* 22px */
    font-weight: 800; /* Extra bold for impact */
    color: #B44BFF;
    margin-bottom: 16px;
    letter-spacing: 0.5px;
    letter-spacing: 0.2em; /* Wider spacing for luxury feel */
    text-transform: uppercase;
}

.step-title {
    font-family: 'Inter', sans-serif;
    font-size: 2rem; /* 32px - more impactful */
    font-weight: 800; /* Bold weight */
    color: var(--text-dark);
    margin: 0 0 20px 0; /* More breathing room */
    position: relative;
    display: inline-block;
    line-height: 1.2;
}

/* Premium accent underline */
.step-title::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #B44BFF 0%, #FF6FCF 100%);
    border-radius: 2px;
}

.step-desc {
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    color: var(--text-gray);
    line-height: 1.6;
    max-width: 320px;
    margin: 24px auto 0;
    font-weight: 400;
}




/* Fix z-index layering for hero content */
.hero-main {
    position: relative;
    z-index: 20;
}

.hero-text-section {
    position: relative;
    z-index: 25;
}

.hero-brands-section {
    z-index: 15;
}

/* Brand Logos at Bottom of Hero */
.hero-brands-bottom {
    position: absolute;
    bottom: 200px;
    left: 0;
    right: 0;
    z-index: 20;
    padding: 0 80px;
}

.hero-brands-bottom .brands-intro {
    font-size: 0.688rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 16px;
    text-align: left;
    font-weight: 600;
    padding-left: 0;
    margin-left: 0;
}

.hero-brands-row {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 32px;
    margin-bottom: 8px;
    padding-left: 0;
    margin-left: 0;
}

.hero-brands-row:last-child {
    margin-bottom: 0;
}

.hero-brands-bottom .brand-logo {
    height: 28px !important; /* Consistent height for all logos */
    width: auto !important;
    filter: brightness(0) invert(1);
    opacity: 0.8;
    background: transparent;
    object-fit: contain;
    display: inline-block;
    vertical-align: middle;
    max-height: 28px !important;
}

/* Default size for all logos - SMALLER */
.hero-brands-bottom .hero-brands-row img,
.hero-brands-inline .hero-brands-row img {
    height: 24px !important;
    min-height: 24px !important;
    max-height: 24px !important;
    width: auto !important;
    object-fit: contain !important;
    filter: brightness(0) invert(1);
    opacity: 0.8;
}

/* Make ASOS and Chanel even BIGGER */
.hero-brands-bottom img[src="asos-white.png"],
.hero-brands-inline img[src="asos-white.png"] {
    height: 46px !important;
    min-height: 46px !important;
    max-height: 46px !important;
    filter: none !important;
    opacity: 0.8 !important;
}

.hero-brands-bottom img[src="chanel-white-transparent.png"],
.hero-brands-inline img[src="chanel-white-transparent.png"] {
    height: 46px !important;
    min-height: 46px !important;
    max-height: 46px !important;
    filter: none !important;
    opacity: 0.8 !important;
}

.hero-brands-bottom img[src="uniqlo-logo-transparent.png"],
.hero-brands-inline img[src="uniqlo-logo-transparent.png"] {
    height: 42px !important;
    min-height: 42px !important;
    max-height: 42px !important;
    filter: brightness(0) invert(1) !important;
    opacity: 0.8 !important;
}

/* FARFETCH needs to be smaller */
.hero-brands-bottom img[src="farfetch-white.png"],
.hero-brands-inline img[src="farfetch-white.png"] {
    height: 16px !important;
    min-height: 16px !important;
    max-height: 16px !important;
    filter: none !important;
    opacity: 0.8 !important;
}

.hero-brands-bottom .brand-logo-text {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 2px;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
}

/* Bottom Credibility Row */
.hero-bottom-credibility {
    margin-top: 40px;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 20px;
}

.hero-bottom-credibility .credibility-text {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.875rem;
    font-weight: 500;
}

.hero-bottom-credibility .credibility-divider {
    color: rgba(255, 255, 255, 0.5);
}
.how-title {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem; /* 56px - more commanding */
    font-weight: 300;
    color: var(--text-dark);
    margin-bottom: 0.75rem;
    letter-spacing: -0.03em; /* Tighter for elegance */
    position: relative;
    z-index: 10;
    line-height: 1.1;
}
.how-sub {
    font-family: 'Inter', sans-serif;
    font-size: 1.375rem; /* 22px - slightly larger for readability */
    color: var(--text-gray);
    margin-bottom: 4rem;
    font-weight: 400;
    position: relative;
    z-index: 10;
    line-height: 1.5;
}

.how-flow{
  display:flex;
  gap:24px; /* 24px horizontal gap between containers */
  justify-content:center;
  align-items:stretch; /* Ensure equal height */
  width: 100%;
  max-width: 100%;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
}
.how-step{
  flex: 1;
  max-width: 420px; /* Larger container for bigger mockups */
  display:flex;
  flex-direction:column;
  align-items:center;
  opacity: 0;
  animation: stepFadeIn 0.8s ease-out forwards;
  position: relative;
  /* Individual step container styling */
  border-radius: 24px;
  padding: 40px 32px; /* Balanced padding */
  box-shadow: 0px 8px 20px rgba(0, 0, 0, 0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Gradient background for each step */
.how-step {
  background: linear-gradient(135deg, 
    rgba(255, 235, 241, 0.4) 0%, 
    rgba(248, 235, 255, 0.4) 100%);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

/* Remove the ::before pseudo element approach */
.how-step::before {
  display: none;
}

/* Clean mockup display */
.phone-screen-wrapper {
  position: relative;
  overflow: hidden; /* Contain overlay within screen bounds */
  border-radius: 50px; /* Match phone's rounded corners */
  isolation: isolate; /* Create stacking context */
}

/* Scanner overlay specific to phone wrapper - removed duplicate */

/* Scanner UI - Exact Measurements from Reference */
.scanner-ui {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 10;
  /* Smooth transition matching mockup */
  transition: transform 0.3s cubic-bezier(0.23, 1, 0.32, 1);
  transform-style: preserve-3d;
  will-change: transform;
  /* Ensure content is clipped */
  overflow: hidden;
  border-radius: 50px;
}

/* Screen bounds container - matches exact screen area */
.screen-bounds-container {
  position: absolute;
  /* Position and size to match actual phone screen */
  top: 12%;
  left: 10%;
  width: 80%;
  height: 79%; /* Extended just enough to cover bottom */
  overflow: hidden;
  pointer-events: none;
  z-index: 11;
  /* Match phone screen rounded corners */
  border-radius: 36px;
}

/* Dark overlay mask - creates perfect rectangular cutout */
.scan-overlay-mask {
  position: absolute;
  /* Position relative to screen bounds container */
  top: calc((50% - 12%) / 0.79); /* Adjusted for lowered scan frame */
  left: 50%;
  transform: translate(-50%, -50%);
  /* Scale scan frame size relative to container */
  width: calc(65% / 0.8); /* 65% of full width scaled to container */
  height: calc(50% / 0.79); /* Adjusted for new height */
  pointer-events: none;
  /* Create dark overlay outside this element */
  box-shadow: 0 0 0 1000px rgba(0, 0, 0, 0.35);
  /* Transition for hover */
  transition: transform 0.3s cubic-bezier(0.23, 1, 0.32, 1);
}


/* UI Buttons - Match real iOS camera UI */
.ui-button {
  position: absolute;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  pointer-events: auto;
  z-index: 20;
  transition: all 0.2s ease;
}

.ui-button:hover {
  background: rgba(0, 0, 0, 0.4);
  transform: scale(1.05);
}

.ui-button:active {
  transform: scale(0.95);
}

/* Position relative to phone screen area accounting for bezels */
.close-button {
  top: 18%; /* Lowered further down */
  left: 15%; /* Moved further inside screen */
}

.flash-button {
  top: 18%; /* Lowered further down */
  right: 15%; /* Moved further inside screen */
}

/* Scan Frame - Centered in middle of screen, moved inward and down */
.scan-frame {
  position: absolute;
  top: 50%; /* Lowered to give space for icons */
  left: 50%;
  transform: translate(-50%, -50%);
  width: 65%; /* Exact screen replica */
  height: 50%; /* Adjusted to fit between icons and camera button */
  pointer-events: none;
  z-index: 15;
}

.corner {
  position: absolute;
  width: 36px;
  height: 36px;
  border: 1.5px solid #FFFFFF; /* Thinner to match real UI */
  border-radius: 3px;
  opacity: 0.9; /* Slightly transparent */
}

.corner.tl {
  top: 0;
  left: 0;
  border-right: none;
  border-bottom: none;
}

.corner.tr {
  top: 0;
  right: 0;
  border-left: none;
  border-bottom: none;
}

.corner.bl {
  bottom: 0;
  left: 0;
  border-right: none;
  border-top: none;
}

.corner.br {
  bottom: 0;
  right: 0;
  border-left: none;
  border-top: none;
}

/* Camera Button - Match exact app specifications */
.camera-button {
  position: absolute;
  bottom: 12%; /* Raised 8px to match real UI */
  left: 50%;
  transform: translateX(-50%);
  width: 60px; /* Exact app size */
  height: 60px; /* Exact app size */
  border-radius: 30px; /* Half of width/height for perfect circle */
  background: linear-gradient(180deg, #9333ea 0%, #7c3aed 100%); /* Exact app colors */
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  pointer-events: auto;
  z-index: 20;
  box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.25);
  transition: transform 0.2s ease;
  padding: 0;
  margin-bottom: 8px; /* Exact app margin */
}

/* Scanner instruction text */
.scanner-text {
  position: absolute;
  top: calc(50% + 25% - 15px); /* Adjusted for new scan frame position */
  left: 50%;
  transform: translateX(-50%);
  font-family: 'Inter', sans-serif;
  font-size: 10px; /* Smaller to fit between corners */
  font-weight: 500;
  color: white;
  text-align: center;
  white-space: nowrap;
  letter-spacing: 0.2px;
  opacity: 0.9;
  z-index: 20;
  padding: 4px 12px; /* Increased horizontal padding to cover "item" */
  background: rgba(0, 0, 0, 0.3); /* Same as icons */
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-radius: 10px; /* Slightly smaller radius */
  pointer-events: none;
  width: auto; /* Auto width to cover full text */
}

.camera-button-inner {
  display: none;
}

.camera-button:active {
  transform: translateX(-50%) scale(0.95);
}

/* Ensure gradient is visible with shine effect */
.camera-button::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.3) 0%, transparent 50%);
  border-radius: 30px;
  pointer-events: none;
}

/* Zoom control bar - iOS camera style */
.zoom-control {
  position: absolute;
  bottom: calc(12% + 60px + 65px); /* Adjusted for 60px camera button */
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 8px;
  color: white;
  font-family: 'Inter', sans-serif;
  font-size: 11px; /* Adjusted to match scanner text */
  font-weight: 500;
  opacity: 0.9;
  z-index: 20;
  pointer-events: none;
}

.zoom-minus, .zoom-plus {
  color: white;
  font-size: 11px;
  opacity: 0.7;
  user-select: none;
}

.zoom-value {
  color: white;
  font-size: 11px;
  min-width: 30px;
  text-align: center;
}

/* Hover state for desktop */
@media (hover: hover) and (pointer: fine) {
  .how-step:hover {
    transform: translateY(-2px);
    box-shadow: 0px 12px 28px rgba(0, 0, 0, 0.08);
  }
}

/* Staggered animations */
.how-step:nth-child(1) {
  animation-delay: 0.2s;
}

.how-step:nth-child(2) {
  animation-delay: 0.4s;
}

.how-step:nth-child(3) {
  animation-delay: 0.6s;
}

@keyframes stepFadeIn {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.phone-img{width:100%;height:auto;display:block;}
.step-title {
    font-family: 'Inter', sans-serif;
    margin: 0 0 12px;
    font-size: 24px;
    font-weight: 700;
    color: #1a1a1a;
    line-height: 1.3;
}
.step-desc {
    font-family: 'Inter', sans-serif;
    margin: 0;
    font-size: 16px;
    color: #6b7280;
    font-weight: 400;
    line-height: 1.5;
}


/* Mobile < 768 px */
@media(max-width:768px){
  .how-flow{
    flex-direction:column;
    gap: 16px; /* 16px vertical gap on mobile */
  }
  
  .how-step {
    margin-bottom: 0; /* Remove any extra margin */
    padding: 32px 24px; /* Reduced padding on mobile */
    width: 100%;
    max-width: 100%;
  }
  
  .premium-mockup,
  .mockup-glass-wrapper,
  .phone-screen-wrapper {
    margin-bottom: 0; /* Let gap handle spacing */
    max-width: 340px; /* Larger on mobile too */
    width: 100%;
    aspect-ratio: 9/19.5;
  }
  
  .mockup-complete {
    height: 100%; /* Fill container on mobile */
    max-height: none;
    object-fit: contain !important;
  }
  
  /* Ensure perfect alignment */
  .how-works {
    padding: 60px 20px;
  }
  
  .how-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
  }
  
  .how-sub {
    font-size: 1.125rem;
    margin-bottom: 3rem;
  }
  
  .step-label {
    padding: 0 16px;
  }
}
/* ─────────────────────────────────────────────────────────────────── */

/* ─── Testimonials Section ─────────────────────────────────────────── */
.testimonials-section {
    padding: 120px 20px;
    background: linear-gradient(135deg,
        rgba(250, 235, 255, 0.2) 0%,
        rgba(255, 245, 250, 0.3) 50%,
        rgba(255, 252, 254, 0.4) 100%
    );
    text-align: center;
}

/* Star Rating Row */
.star-rating-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 32px;
    font-family: 'Inter', sans-serif;
}

.star-rating-row .stars {
    color: #E6A300; /* Darker gold for better contrast on cream background */
    font-size: 1.5625rem; /* Increased by 1px for better visibility */
    letter-spacing: 2px;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1); /* Subtle shadow for contrast */
}

.star-rating-row .rating-text {
    font-size: 1rem;
    font-weight: 500;
    color: #333333;
}

.testimonials-section h2 {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    font-weight: 300;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
    letter-spacing: -0.02em;
}

.testimonials-intro {
    font-family: 'Inter', sans-serif;
    font-size: 1.25rem;
    color: var(--text-dark);
    margin-bottom: 60px;
    font-weight: 400;
    opacity: 0.8;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    max-width: 1100px;
    margin: 0 auto;
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 40px 32px;
    border-radius: 24px;
    box-shadow: 0px 4px 14px rgba(0, 0, 0, 0.06);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1); /* Smoother transition */
    position: relative;
    min-height: 320px; /* Ensure identical height */
    height: 100%; /* Equal height in grid */
    display: flex;
    flex-direction: column;
}

.testimonial-card:hover {
    transform: translateY(-2px); /* Subtle lift as requested */
    box-shadow: 0px 10px 28px rgba(0, 0, 0, 0.15); /* Enhanced shadow */
}

.testimonial-card.featured {
    transform: scale(1.08);
    background: linear-gradient(135deg,
        rgba(255, 235, 245, 0.9) 0%,
        rgba(250, 235, 255, 0.9) 100%
    );
    box-shadow: 0 16px 48px rgba(180, 75, 255, 0.12);
    padding: 48px 40px;
}

.testimonial-header {
    display: flex;
    align-items: center;
    margin-bottom: 16px;
}

.testimonial-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 18px;
    letter-spacing: -0.5px;
}

.testimonial-avatar span {
    position: relative;
    z-index: 2;
    color: white;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

/* Warm gradient for Sarah - peachy/coral tones */
.testimonial-avatar[data-color="warm"] {
    background: linear-gradient(135deg, #FF8A80 0%, #FFB399 100%);
}

/* Cool gradient for Alex - urban blues/teals */
.testimonial-avatar[data-color="cool"] {
    background: linear-gradient(135deg, #5C7CFA 0%, #48BFE3 100%);
}

/* Vibrant gradient for Maya - brand colors */
.testimonial-avatar[data-color="vibrant"] {
    background: linear-gradient(135deg, #B44BFF 0%, #FF6FCF 100%);
}

/* Add subtle texture overlay for realism */
.testimonial-avatar::before {
    content: '';
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 70% 70%, rgba(0, 0, 0, 0.15) 0%, transparent 50%);
    mix-blend-mode: overlay;
}

/* Add subtle inner shadow for depth */
.testimonial-avatar::after {
    content: '';
    position: absolute;
    inset: 2px;
    border-radius: 50%;
    background: transparent;
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.1);
    z-index: 1;
}

.testimonial-title {
    font-family: 'Inter', sans-serif;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text-dark);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    opacity: 0.7;
    text-align: center;
    width: 100%;
}

.testimonial-rating {
    font-size: 0.875rem;
    margin-bottom: 20px;
    letter-spacing: 1px;
}

.testimonial-text {
    font-family: 'Inter', sans-serif;
    font-size: 1.125rem;
    line-height: 1.6;
    color: var(--text-dark);
    margin-bottom: 24px;
    font-style: italic;
    flex-grow: 1;
}

.testimonial-author {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.author-name {
    font-weight: 700;
    color: var(--text-dark);
    font-size: 1rem;
}

.author-title {
    font-size: 0.875rem;
    color: #666;
    font-weight: 400;
}

/* Testimonials CTA */
.testimonials-cta {
    margin-top: 60px;
    text-align: center;
    /* Exact in-app gradient with glassmorphism */
    background: linear-gradient(135deg, 
        rgba(250, 244, 255, 0.5) 0%, 
        rgba(251, 221, 250, 0.5) 100%);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 48px 32px;
    border-radius: 24px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    box-shadow: 0 8px 32px rgba(180, 75, 255, 0.06);
}

.testimonials-cta-text {
    font-family: 'Inter', sans-serif;
    font-size: 1.25rem;
    color: var(--text-dark);
    margin-bottom: 32px;
    font-weight: 400;
}

.testimonials-cta .hero-app-badges {
    justify-content: center;
}

@media (max-width: 968px) {
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .testimonial-card.featured {
        transform: scale(1);
        padding: 40px 32px;
    }
    
    .testimonials-section h2 {
        font-size: 2.5rem;
    }
    
    .testimonial-header {
        flex-direction: column;
        text-align: center;
    }
}

/* ─── Why Use Remode Section ─────────────────────────────────────── */
.why-remode {
    margin-top: -100px;
    padding: 200px 20px 0;
    background: 
        linear-gradient(to bottom,
            rgba(255, 248, 231, 0.3) 0%,
            var(--neutral-warm) 15%,
            var(--neutral-warm) 85%,
            rgba(246, 230, 255, 0.2) 100%
        );
    text-align: center;
    position: relative;
    overflow: hidden;
}

/* Subtle paper texture overlay */
.why-remode::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0.03;
    background-image: 
        repeating-linear-gradient(45deg, transparent, transparent 35px, rgba(180, 75, 255, 0.1) 35px, rgba(180, 75, 255, 0.1) 70px);
    pointer-events: none;
}

.why-remode::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255, 111, 207, 0.06) 0%, transparent 70%);
    pointer-events: none;
}

.why-remode::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -15%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(180, 75, 255, 0.05) 0%, transparent 70%);
    pointer-events: none;
}

.why-remode .container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.why-remode h2 {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    font-weight: 300;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
    letter-spacing: -0.02em;
}

.why-intro {
    font-family: 'Inter', sans-serif;
    font-size: 1.25rem;
    color: var(--text-dark);
    margin-bottom: 4rem;
    font-weight: 400;
    letter-spacing: -0.01em;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.5;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 280px), 1fr));
    gap: var(--space-xl);
    margin: 0 auto;
    max-width: var(--container-xl);
    align-items: start;
}

.benefit-card {
    padding: 20px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    min-height: 320px;
}

/* Cards aligned on same level */
.benefit-card:nth-child(1),
.benefit-card:nth-child(2),
.benefit-card:nth-child(3) {
    margin-top: 0;
}

.benefit-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(180, 75, 255, 0.03) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.4s ease;
}



.benefit-icon {
    width: 48px; /* Set to 48px as requested */
    height: 48px; /* Set to 48px as requested */
    margin: 0 auto 24px;
    background: rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 16px; /* Proportionally smaller radius */
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.benefit-icon::before {
    content: '';
    position: absolute;
    inset: -1px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.3) 0%, transparent 100%);
    border-radius: 20px;
    opacity: 0.6;
}

.benefit-emoji {
    font-size: 24px; /* Proportionally smaller for 48px container */
    line-height: 1;
    z-index: 1;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.15)); /* Enhanced shadow for emoji contrast */
}

.benefit-card h3 {
    font-family: 'Inter', sans-serif;
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--text-dark);
    letter-spacing: -0.01em;
    line-height: 1.3;
}

.benefit-card p {
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--text-gray);
    margin: 0 0 12px;
    opacity: 0.8;
}

.micro-stat {
    font-family: 'Inter', sans-serif;
    font-size: 0.813rem;
    font-weight: 500;
    color: var(--text-dark);
    opacity: 0.6;
    display: block;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}


.section-cta {
    margin-top: 80px;
    text-align: center;
    /* Exact in-app gradient with glassmorphism */
    background: linear-gradient(135deg, 
        rgba(250, 244, 255, 0.6) 0%, 
        rgba(251, 221, 250, 0.6) 100%);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 48px 32px;
    border-radius: 24px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    box-shadow: 0 8px 32px rgba(180, 75, 255, 0.08);
}

.cta-personality {
    font-size: 1.125rem;
    font-weight: 500;
    color: #333333;
    margin-bottom: 8px;
    font-family: 'Inter', sans-serif;
}

.section-cta .cta-text {
    font-family: 'Inter', sans-serif;
    font-size: 1.375rem;
    font-weight: 500;
    color: var(--text-dark);
    margin-bottom: 32px;
    letter-spacing: -0.01em;
}

.section-cta .hero-app-badges {
    justify-content: center;
    margin-bottom: 0;
}

/* Stats Bar */
.stats-bar {
    background: rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(20px) saturate(150%);
    -webkit-backdrop-filter: blur(20px) saturate(150%);
    padding: 36px 20px 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 32px;
    flex-wrap: wrap;
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-gray);
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    position: relative;
}

/* Magazine-style fade to footer */
.stats-bar::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    height: 120px;
    background: linear-gradient(to bottom,
        transparent 0%,
        rgba(26, 15, 46, 0.02) 30%,
        rgba(26, 15, 46, 0.05) 60%,
        rgba(26, 15, 46, 0.1) 100%
    );
    pointer-events: none;
}

.stat-item {
    white-space: nowrap;
    color: var(--text-dark);
    font-weight: 600;
    font-size: 0.9375rem;
    transition: opacity 0.3s ease;
}


.stat-separator {
    color: rgba(180, 75, 255, 0.3);
    font-size: 0.875rem;
}

/* Responsive Design */
@media (max-width: 968px) {
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 24px;
        max-width: 500px;
    }
    
    .why-remode h2 {
        font-size: 3rem;
    }
    
    .why-intro {
        font-size: 1.25rem;
    }
    
    .benefit-card {
        padding: 40px 32px;
    }
}

@media (max-width: 768px) {
    .why-remode {
        padding: 80px 20px 0;
    }
    
    .why-remode h2 {
        font-size: 2.5rem;
    }
    
    .why-intro {
        font-size: 1.125rem;
        margin-bottom: 3rem;
    }
    
    .benefit-card h3 {
        font-size: 1.25rem;
    }
    
    .benefit-icon {
        width: 60px;
        height: 60px;
    }
    
    .benefit-emoji {
        font-size: 30px;
    }
    
    .benefit-card p {
        /* No line clamp - show full text */
    }
    
    .why-cta-text {
        font-size: 1.25rem;
        margin: 60px 0 36px;
    }
    
    .stats-bar {
        flex-direction: column;
        gap: 12px;
        padding: 24px;
    }
    
    .stat-separator {
        display: none;
    }
    
    .stat-item {
        font-size: 0.813rem;
    }
}

/* ─── iPhone Pro Max and larger phones ─────────────────────────────── */
@media (max-width: 430px) and (min-width: 390px) and (min-height: 840px) {
    .hero-headline {
        font-size: 56px;
    }
    
    .hero-subheadline {
        font-size: 19px;
        line-height: 1.45;
        max-width: 360px;
    }
    
    .app-badge img {
        height: 50px;
    }
    
    .app-badge img[alt="Get it on Google Play"] {
        height: 50px;
        width: 168px;
    }
    
    .hero-brands-bottom .brand-logo {
        height: 16px;
    }
    
    .hero-brands-bottom .brand-logo-text {
        font-size: 12px;
    }
    
    .credibility-text {
        font-size: 0.813rem;
    }
}

/* ─── Tablet Optimization ─────────────────────────────── */
@media (max-width: 768px) and (min-width: 481px) {
    .hero-video {
        object-position: center center;
    }
    
    .hero-content {
        padding: 40px 30px;
        align-items: center;
        justify-content: center;
    }
    
    .hero-main {
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .hero-text-section {
        text-align: center;
        align-items: center;
    }
    
    .hero-headline {
        font-size: clamp(48px, 8vw, 64px);
        text-align: center;
    }
    
    .hero-subheadline {
        font-size: 18px;
        text-align: center;
        max-width: 500px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .hero-app-badges {
        justify-content: center;
    }
    
    .scroll-cta {
        margin: 20px auto;
    }
    
    .credibility-row {
        justify-content: center;
    }
    
    .hero-brands-bottom {
        bottom: 80px;
        left: 40px;
        right: 40px;
    }
    
    .hero-brands-bottom .brands-intro {
        text-align: center;
        font-size: 0.625rem;
    }
    
    .hero-brands-row {
        justify-content: center;
        gap: 30px;
    }
    
    .hero-brands-bottom .brand-logo {
        height: 16px;
    }
    
    .hero-brands-bottom .brand-logo-text {
        font-size: 12px;
    }
}

/* ─── Comprehensive Mobile Optimization (Small Screens) ─────────────────────────────── */
@media (max-width: 480px) {
    /* Global mobile adjustments */
    body {
        font-size: 14px;
    }
    
    .container {
        padding: 0 16px;
    }
    
    /* Hero section mobile */
    .hero {
        min-height: 100vh;
        height: 100vh;
        position: relative;
        overflow: hidden !important;
        isolation: isolate;
    }
    
    .hero-content {
        width: 100%;
        height: 100%;
        min-height: 100vh;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        padding: 80px 24px 120px;
        position: relative;
        z-index: 10;
    }
    
    .hero-video {
        object-position: center center;
    }
    
    .hero-main {
        padding: 0;
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        width: 100%;
        height: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .hero-text-section {
        text-align: center;
        width: 100%;
        padding: 40px 0;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .hero-headline {
        font-size: clamp(48px, 12vw, 64px);
        line-height: 0.95;
        margin-bottom: 20px;
        text-align: center;
        letter-spacing: -0.015em;
        font-weight: 300;
    }
    
    .hero-subheadline {
        font-size: 18px;
        line-height: 1.4;
        margin-bottom: 32px;
        text-align: center;
        padding: 0 24px;
        max-width: 380px;
        margin-left: auto;
        margin-right: auto;
        color: rgba(255, 255, 255, 0.9);
    }
    
    .hero-app-badges {
        justify-content: center;
        gap: 12px;
        margin-bottom: 28px;
        flex-wrap: wrap;
    }
    
    .app-badge {
        display: block;
    }
    
    .app-badge img {
        height: 48px;
        width: auto;
    }
    
    .app-badge img[alt="Get it on Google Play"] {
        height: 48px;
        width: 161px;
    }
    
    .scroll-cta {
        display: inline-flex;
        justify-content: center;
        margin: 20px auto 32px;
        font-size: 0.938rem;
        padding: 12px 24px;
        background: rgba(255, 255, 255, 0.15);
        border-radius: 24px;
        backdrop-filter: blur(10px);
        font-weight: 500;
        gap: 8px;
        align-items: center;
        border: 1px solid rgba(255, 255, 255, 0.2);
    }
    
    .credibility-row {
        flex-direction: column;
        gap: 8px;
        margin-top: 24px;
        margin-bottom: 0;
        align-items: center;
    }
    
    .credibility-divider {
        display: none;
    }
    
    .credibility-text {
        font-size: 0.813rem;
        line-height: 1.3;
        text-align: center;
        font-weight: 500;
        color: rgba(255, 255, 255, 0.8);
    }
    
    /* Brand section mobile positioning */
    .hero-brands-bottom {
        position: absolute;
        bottom: 60px;
        left: 20px;
        right: 20px;
        z-index: 20;
    }
    
    .hero-brands-bottom .brands-intro {
        font-size: 0.625rem;
        text-align: center;
        margin-bottom: 16px;
        letter-spacing: 0.12em;
        color: rgba(255, 255, 255, 0.6);
        text-transform: uppercase;
        font-weight: 600;
    }
    
    .hero-brands-row {
        display: flex;
        justify-content: center;
        gap: 20px;
        margin-bottom: 10px;
        flex-wrap: wrap;
    }
    
    .hero-brands-bottom .brand-logo {
        height: 14px;
        opacity: 0.7;
    }
    
    .hero-brands-bottom .brand-logo-text {
        font-size: 11px;
        letter-spacing: 1.5px;
        font-weight: 700;
        opacity: 0.7;
    }
    
    .hero-brands-inline {
        margin-top: 40px;
        text-align: center;
        width: 100%;
        padding: 0 20px;
    }
    
    .brands-intro {
        font-size: 0.6875rem;
        margin-bottom: 20px;
        text-align: center;
        text-transform: uppercase;
        letter-spacing: 0.1em;
        opacity: 0.7;
        font-weight: 600;
    }
    
    .hero-brands-row {
        gap: 16px 20px;
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        justify-items: center;
        align-items: center;
        margin-bottom: 12px;
    }
    
    .hero-brands-row:last-child {
        grid-template-columns: repeat(3, 1fr);
        max-width: 100%;
        margin: 0 auto;
    }
    
    /* Hide some luxury brands on mobile for cleaner layout */
    .hero-brands-row:last-child .brand-logo-text:nth-child(5) {
        display: none;
    }
    
    .brand-logo {
        height: 16px;
        max-width: 50px;
        opacity: 0.7;
    }
    
    .brand-logo-text {
        font-size: 0.75rem;
        letter-spacing: 1.5px;
        opacity: 0.7;
    }
    
    /* How it works mobile */
    .how-works {
        padding: 180px 16px 80px;
        margin-top: -100px;
        text-align: center;
        /* Clean background on mobile too */
        background: #FAFBFC;
    }
    
    .how-title {
        font-size: 32px;
        line-height: 1.1;
        margin-bottom: 12px;
        text-align: center;
    }
    
    .how-sub {
        font-size: 17px;
        line-height: 1.4;
        padding: 0 20px;
        text-align: center;
        margin-bottom: 48px;
    }
    
    .how-flow {
        gap: 56px;
        align-items: center;
        justify-content: center;
    }
    
    .how-step {
        max-width: 280px;
        width: 100%;
        margin: 0 auto;
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .phone-mockup {
        margin: 0 auto 24px;
    }
    
    .step-label .step-number {
        width: 36px;
        height: 36px;
        font-size: 16px;
        margin-bottom: 12px;
        background: #f3ebfd;
        border: 1px solid #e4d4f4;
        color: #8b5cf6;
        box-shadow: 0 0 18px rgba(139, 92, 246, 0.15);
    }
    
    .step-title {
        font-size: 20px;
        text-align: center;
        margin-bottom: 10px;
    }
    
    .step-desc {
        font-size: 15px;
        text-align: center;
        color: #6b7280;
        max-width: 280px;
        margin: 0 auto;
    }
    
    /* Adjust mockup height for mobile */
    .phone-screen-wrapper {
        height: 500px;
    }
    
    /* Testimonials mobile */
    .testimonials-section {
        padding: 60px 16px;
    }
    
    .testimonials-section h2 {
        font-size: 28px;
        line-height: 1.2;
    }
    
    .testimonials-intro {
        font-size: 16px;
        line-height: 1.4;
        margin-bottom: 40px;
    }
    
    .testimonial-card {
        padding: 28px 20px;
    }
    
    .testimonial-card.featured {
        padding: 28px 20px;
    }
    
    .testimonial-header {
        flex-direction: row;
        text-align: left;
    }
    
    .testimonial-avatar {
        width: 40px;
        height: 40px;
    }
    
    .testimonial-title {
        font-size: 0.75rem;
    }
    
    .testimonial-text {
        font-size: 15px;
        line-height: 1.5;
    }
    
    .author-name {
        font-size: 0.9rem;
    }
    
    .author-title {
        font-size: 0.8rem;
    }
    
    .testimonials-cta-text {
        font-size: 18px;
        margin-bottom: 24px;
    }
    
    /* Why use Remode mobile */
    .why-remode {
        padding: 140px 16px 0;
        margin-top: -80px;
    }
    
    .why-remode h2 {
        font-size: 28px;
        line-height: 1.2;
    }
    
    .why-intro {
        font-size: 16px;
        line-height: 1.4;
        margin-bottom: 40px;
        padding: 0 10px;
    }
    
    .benefits-grid {
        gap: 32px;
    }
    
    .benefit-card {
        padding: 16px;
    }
    
    /* Reset asymmetrical layout on mobile */
    .benefit-card:nth-child(1),
    .benefit-card:nth-child(2),
    .benefit-card:nth-child(3) {
        margin-top: 0;
    }
    
    .benefit-icon {
        width: 64px;
        height: 64px;
        margin-bottom: 20px;
    }
    
    .benefit-emoji {
        font-size: 28px;
    }
    
    .benefit-card h3 {
        font-size: 20px;
        margin-bottom: 12px;
    }
    
    .benefit-card p {
        font-size: 14px;
        line-height: 1.5;
    }
    
    .micro-stat {
        font-size: 0.75rem;
    }
    
    .section-cta {
        margin-top: 48px;
    }
    
    .cta-text {
        font-size: 16px;
        margin-bottom: 24px;
    }
    
    /* Footer mobile */
    .footer {
        padding: 40px 0 20px;
    }
    
    .footer-logo {
        font-size: 28px;
    }
    
    .footer-tagline {
        font-size: 0.875rem;
    }
    
    .footer-column h4 {
        font-size: 1rem;
    }
    
    .footer-column a {
        font-size: 0.875rem;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 16px;
        text-align: center;
        padding-top: 20px;
    }
    
    .footer-bottom p {
        font-size: 0.8rem;
    }
    
    /* Premium mockup mobile styles */
    .premium-mockup {
        width: 100%;
        margin: 0 auto 30px;
    }
    
    .how-step {
        width: 100%;
        max-width: 400px;
        transform: none !important;
        margin: 0 auto !important;
        /* Keep individual backgrounds on mobile */
        padding: 50px 30px 40px;
    }
    
    .how-step:nth-child(2) {
        transform: scale(1) !important;
    }
    
    .how-flow {
        flex-direction: column;
        gap: 40px;
        padding: 0 20px;
        align-items: center;
    }
    
    /* Vertical flow line for mobile */
    .how-flow::before {
        width: 3px;
        height: 80%;
        left: 50%;
        top: 10%;
        right: auto;
        transform: translateX(-50%);
        background: linear-gradient(180deg, 
            rgba(255, 229, 241, 0) 0%,
            rgba(255, 229, 241, 0.6) 10%,
            rgba(255, 232, 229, 0.6) 50%,
            rgba(243, 229, 255, 0.6) 90%,
            rgba(243, 229, 255, 0) 100%);
    }
    
    /* Scanner overlay mobile adjustments */
    .scanner-overlay {
        /* Full overlay on mobile too */
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        border-radius: 36px; /* Match phone screen corners on mobile */
    }
    
    .scanner-control {
        width: 32px;
        height: 32px;
    }
    
    .scanner-control svg {
        width: 18px;
        height: 18px;
    }
    
    .scan-corner {
        width: 50px;
        height: 50px;
    }
    
    /* Adjust scan borders for mobile */
    .scan-borders {
        top: 50px;
        bottom: 25px; /* Keep borders low on mobile */
    }
    
    .scanner-bottom {
        padding: 10px 15px 25px;
    }
    
    .snap-button-outer {
        width: 64px;
        height: 64px;
    }
    
    .snap-button-inner {
        width: 52px;
        height: 52px;
    }
    
    .snap-button-inner::after {
        width: 20px;
        height: 20px;
    }
    
    .step-label {
        margin-top: 20px;
    }
    
    .step-title {
        font-size: 1.125rem;
    }
}

/* Fix text overlap on mobile devices */
@media screen and (max-width: 768px) {
    .step-label {
        margin-top: 30px !important;
        padding: 0 20px;
        width: 100%;
        max-width: 320px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .step-title {
        font-size: 1.25rem !important;
        line-height: 1.4 !important;
        margin-bottom: 10px !important;
        word-wrap: break-word;
        hyphens: auto;
    }
    
    .step-desc {
        font-size: 0.875rem !important;
        line-height: 1.5 !important;
        margin-bottom: 30px;
    }
    
    .how-step {
        padding-bottom: 40px !important;
        margin-bottom: 40px !important;
    }
    
    /* Ensure mockups don't overlap with text */
    .premium-mockup,
    .mockup-glass-wrapper {
        margin-bottom: 20px !important;
    }
    
    .mockup-complete {
        max-height: 400px !important;
        width: auto !important;
    }
}

/* Even smaller screens (iPhone SE, etc) */
@media screen and (max-width: 375px) {
    /* Fix hero title visibility on iPhone SE */
    .hero-headline {
        font-size: 36px !important;
        line-height: 1.05 !important;
        margin-bottom: 16px !important;
    }
    
    .hero-subheadline {
        font-size: 15px !important;
        line-height: 1.4 !important;
        margin-bottom: 24px !important;
    }
    
    .hero-content {
        padding-top: 5px !important; /* Minimal padding for iPhone SE */
    }
    
    .step-title {
        font-size: 1.125rem !important;
    }
    
    .step-desc {
        font-size: 0.813rem !important;
    }
    
    .step-label {
        padding: 0 15px;
    }
}

/* Mobile Responsive Breakpoints for New Changes */
@media screen and (max-width: 768px) {
    /* Typography adjustments */
    .hero-title {
        font-size: 2.5rem; /* Reduced from 3.5rem */
    }
    
    .micro-trust {
        font-size: 1rem; /* Reduced from 1.125rem */
    }
    
    /* Brand logos */
    .hero-brands-bottom .brand-logo {
        height: 20px; /* Reduced from 24px */
    }
    
    .hero-brands-row {
        gap: 24px; /* Reduced from 32px */
    }
    
    /* Star rating */
    .star-rating-row {
        flex-direction: column;
        gap: 8px;
    }
    
    .star-rating-row .stars {
        font-size: 1.25rem;
    }
    
    .star-rating-row .rating-text {
        font-size: 0.875rem;
    }
    
    /* Footer */
    .footer {
        padding: 40px 0 20px; /* Further reduced for mobile */
    }
    
    /* CTA personality */
    .cta-personality {
        font-size: 1rem;
        margin-bottom: 12px;
    }
}

@media screen and (max-width: 480px) {
    /* Extra small screens */
    .hero-title {
        font-size: 2rem;
    }
    
    .step-number {
        font-size: 1.125rem;
    }
    
    .hero-brands-bottom .brand-logo {
        height: 18px;
    }
    
    .hero-brands-row {
        gap: 20px;
    }
    
    /* Stack app badges on small screens */
    .hero-app-badges {
        flex-direction: column;
        gap: 12px;
        align-items: center;
    }
    
    .app-badge img {
        max-width: 160px;
    }
}

/* Mobile-only fixes for hero section */
@media (max-width: 767px) {
  /* Fix text readability on mobile */
  .hero-headline {
    font-size: 2.5rem;
  }
  
  .hero-subheadline {
    font-size: 1rem;
  }
  
  /* Fix brand logos on mobile */
  .hero-brands-bottom {
    padding: 1.5rem 1rem;
  }
  
  .hero-brands-bottom img.brand-logo {
    height: 16px !important;
  }
  
  /* Prevent horizontal scroll */
  .hero-brands-row {
    flex-wrap: wrap;
    max-width: 100%;
  }
}

/* Loading States */
.loading-spinner {
    display: inline-block;
    width: 50px;
    height: 50px;
    border: 3px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    border-top-color: #B44BFF;
    animation: spin 1s ease-in-out infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

.video-loading {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #B44BFF 0%, #FF6FCF 100%);
    z-index: 1;
}

/* Image Loading States */
img {
    transition: opacity 0.3s ease;
}

img.loading {
    opacity: 0;
}

img.loaded {
    opacity: 1;
}

/* Skeleton Loading for Cards */
.skeleton {
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 200% 100%;
    animation: shimmer 1.5s infinite;
}

/* Loading shimmer for images */
.image-skeleton {
    position: relative;
    overflow: hidden;
    background: #f0f0f0;
}

.image-skeleton::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    transform: translateX(-100%);
    background: linear-gradient(
        90deg,
        rgba(255, 255, 255, 0) 0,
        rgba(255, 255, 255, 0.2) 20%,
        rgba(255, 255, 255, 0.5) 60%,
        rgba(255, 255, 255, 0)
    );
    animation: shimmer 2s infinite;
}

@keyframes shimmer {
    100% {
        transform: translateX(100%);
    }
}

/* Focus States for Accessibility */
a:focus,
button:focus,
.app-badge:focus,
.scroll-cta:focus {
    outline: 3px solid #B44BFF;
    outline-offset: 2px;
}

/* Consistent hover states for all CTAs */
.app-badge,
.scroll-cta,
.btn,
.cta {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.app-badge:hover,
.scroll-cta:hover,
.btn:hover,
.cta:hover {
    opacity: 0.85;
    transform: scale(1.02);
}

/* Active states */
.app-badge:active,
.scroll-cta:active,
.btn:active,
.cta:active {
    transform: scale(0.98);
}

/* Skip to Main Content Link */
.skip-to-main {
    position: absolute;
    left: -10000px;
    top: auto;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

.skip-to-main:focus {
    position: absolute;
    left: 50%;
    top: 20px;
    transform: translateX(-50%);
    width: auto;
    height: auto;
    padding: 15px 25px;
    background: #B44BFF;
    color: white;
    border-radius: 8px;
    z-index: 10000;
    text-decoration: none;
    font-weight: 600;
}

/* High Contrast Mode Support */
@media (prefers-contrast: high) {
    .gradient-overlay {
        background: rgba(0, 0, 0, 0.7) !important;
    }
    
    .hero-text-section {
        background: rgba(0, 0, 0, 0.9);
        padding: 20px;
        border-radius: 8px;
    }
    
    .app-badge img {
        filter: contrast(1.2);
    }
    
    .testimonial-card {
        border: 2px solid #000;
    }
    
    .benefit-card {
        border: 2px solid #000;
    }
    
    .hero-video {
        display: none;
    }
    
    .hero-background::after {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-image: url('sidewalk.png');
        background-size: cover;
        background-position: center;
        z-index: 0;
    }
}

/* Color Contrast Improvements for WCAG AA */
.micro-trust {
    color: #e0e0e0; /* Improved contrast on dark backgrounds */
}

.credibility-text {
    color: rgba(255, 255, 255, 0.95); /* Better contrast */
}

.brands-intro {
    color: rgba(255, 255, 255, 0.95); /* Better contrast */
}

/* Ensure links have proper contrast */
a {
    color: #B44BFF;
    text-decoration: underline;
}

a:hover {
    color: #9a3fe6;
}

/* Better contrast for form elements */
input, textarea, select {
    border: 2px solid #666;
    background: white;
    color: #1a1a1a;
}

input:focus, textarea:focus, select:focus {
    border-color: #B44BFF;
    outline: 3px solid rgba(180, 75, 255, 0.25);
    outline-offset: 2px;
}

/* Ensure proper contrast in testimonials */
.testimonial-text {
    color: #4a4a4a; /* Darker for better contrast */
}

.author-name {
    color: #2a2a2a; /* Even darker for names */
}

/* Accessibility: Respect prefers-reduced-motion */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
    
    .hero-headline,
    .hero-subheadline,
    .hero-app-badges,
    .micro-trust {
        opacity: 1;
        transform: none;
    }
    
    .premium-mockup,
    .mockup-glass-wrapper,
    .phone-screen-wrapper {
        opacity: 1;
        transform: none;
    }
    
    .scroll-cta svg {
        animation: none;
    }
}

/* ─────────────────────────────────────────────────────────────────── */

/* ===== From conversion-optimizations.css ===== */
/* ===================================================================
   CONVERSION OPTIMIZATION STYLES
   =================================================================== */

/* Hero brand logos row - Desktop ultra-premium layout */
@media (min-width: 1024px) {
    /* Consistent left alignment for all hero elements */
    .hero-text-section {
        padding-left: 64px !important;
        min-width: 0;
        position: relative; /* Ensure proper child positioning */
    }
    
    /* Premium spacing adjustments */
    .hero-headline {
        margin-bottom: 32px !important; /* 32px space to app badges */
        margin-left: 0 !important; /* Ensure left alignment */
        padding-left: 0 !important;
    }
    
    .hero-subheadline {
        line-height: 1.45 !important; /* Improved readability */
        margin-bottom: 0 !important;
        margin-left: 0 !important; /* Ensure left alignment */
        padding-left: 0 !important;
    }
    
    .hero-app-badges {
        margin-top: 0 !important;
        margin-bottom: 0 !important;
        margin-left: 0 !important; /* Ensure left alignment */
        padding-left: 0 !important;
        justify-content: flex-start !important; /* Align badges to left */
    }
    
    .app-badges-subtext {
        margin-bottom: 44px !important; /* Added 10px more space to logos */
        margin-left: 0 !important; /* Ensure left alignment */
        padding-left: 0 !important;
        text-align: left !important;
    }
    
    .hero-brand-logos {
        display: flex;
        align-items: center;
        justify-content: flex-start;
        gap: 18px; /* Tighter horizontal spacing */
        row-gap: 14px; /* Tighter vertical spacing between rows */
        margin-top: 0;
        margin-bottom: 20px; /* Reduced margin to credibility row */
        margin-left: 0; /* Ensure no extra margin */
        flex-wrap: wrap;
        max-width: 600px; /* Slightly narrower to encourage tighter layout */
        opacity: 0;
        animation: fadeIn 0.4s ease-out forwards;
        animation-delay: 0.7s;
        padding-left: 0; /* Align with text above */
    }
    
    .hero-brand-logos .hero-brand-logo {
        margin: 0; /* Remove all margins */
    }
    
    .hero-brand-logos .brand-divider {
        margin: 0; /* Remove all margins */
        padding: 0;
    }
    
    /* Normalized logo height for visual consistency */
    .hero-brand-logo {
        height: 26px; /* Base height for all logos */
        width: auto;
        object-fit: contain;
        opacity: 1;
        transition: opacity 0.3s ease;
        image-rendering: -webkit-optimize-contrast; /* Crisp rendering */
        -webkit-font-smoothing: antialiased;
    }
    
    /* Force 2-row layout - break after Nike */
    .hero-brand-logos .hero-brand-logo[alt="Nike"] + .brand-divider {
        width: 100%;
        height: 0;
        opacity: 0;
        flex-basis: 100%;
        margin: 0;
        display: block;
        padding: 0;
    }
    
    /* Hide last divider */
    .hero-brand-logos .brand-divider:last-child {
        display: none; /* Hide last divider after Dior */
    }
    
    /* Desktop-specific divider styling - more visible */
    .hero-brand-logos .brand-divider {
        opacity: 0.6;
        font-size: 14px;
        line-height: 26px; /* Match logo height */
        display: inline-flex;
        align-items: center;
        margin: 0 2px;
        color: rgba(255, 255, 255, 0.6);
        font-weight: 400;
    }
}

/* Default mobile/tablet styles */
.hero-brand-logos {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    margin-top: 16px;
    margin-bottom: 20px;
    flex-wrap: wrap;
    opacity: 0;
    animation: fadeIn 0.4s ease-out forwards;
    animation-delay: 0.7s;
}

.hero-brand-logo {
    height: 20px;
    width: auto;
    object-fit: contain;
    opacity: 1;
    transition: opacity 0.3s ease;
}

.hero-brand-logo:hover {
    opacity: 0.8;
}

.brand-divider {
    color: rgba(255, 255, 255, 0.6);
    font-size: 16px;
    user-select: none;
    margin: 0 4px;
    line-height: 1;
    font-weight: 400;
}

/* Desktop-specific optical adjustments for visual consistency */
@media (min-width: 1024px) {
    /* Base height for visual consistency */
    .hero-brand-logo {
        height: 26px !important;
        width: auto !important;
        object-fit: contain;
    }
    
    /* Reduce size of visually heavier logos by 12-15% */
    .hero-brand-logo[alt="Farfetch"],
    .hero-brand-logo[alt="Levi's"],
    .hero-brand-logo[alt="Zalando"] {
        height: 22px !important; /* ~15% smaller */
    }
    
    /* Ensure ASOS and Uniqlo match others */
    .hero-brand-logo[alt="ASOS"],
    .hero-brand-logo[alt="Uniqlo"] {
        height: 26px !important;
        min-height: 26px !important;
    }
}

/* Ensure pure white (#FFFFFF) for all logos with crisp rendering */
.hero-brand-logo {
    filter: brightness(0) invert(1); /* Force pure white */
    -webkit-backface-visibility: hidden; /* Fix for crisp rendering */
    transform: translateZ(0); /* GPU acceleration for sharpness */
    -webkit-font-smoothing: antialiased;
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
}

/* Don't apply filter to already white PNGs */
.hero-brand-logo[src*="asos-white"],
.hero-brand-logo[src*="uniqlo-logo"],
.hero-brand-logo[src*="farfetch-white"],
.hero-brand-logos img[src*="asos-white"],
.hero-brand-logos img[src*="uniqlo-logo"],
.hero-brand-logos img[src*="farfetch-white"] {
    filter: none !important;
}


/* No visual weight adjustments - all logos equal */
/* Removed individual contrast boosts to maintain consistency */

/* CRITICAL OVERRIDES - Desktop only */
@media (min-width: 1024px) {
    /* ASOS needs to be much larger to match visual weight */
    .hero-brand-logos img[src="asos-white.png"],
    img.hero-brand-logo[src="asos-white.png"] {
        height: 34px !important;
        min-height: 34px !important;
        max-height: 34px !important;
        width: auto !important;
    }
    
    /* Uniqlo also needs to be larger */
    .hero-brand-logos img[src="uniqlo-logo-transparent.png"],
    img.hero-brand-logo[src="uniqlo-logo-transparent.png"] {
        height: 30px !important;
        min-height: 30px !important;
        max-height: 30px !important;
        width: auto !important;
    }
    
    /* Force alignment */
    .hero-text-section .hero-brand-logos {
        justify-content: flex-start !important;
        padding-left: 0 !important;
        margin-left: 0 !important;
    }
}


/* App badges subtext */
.app-badges-subtext {
    font-size: 0.813rem;
    color: rgba(255, 255, 255, 0.6);
    margin-top: 8px;
    margin-bottom: 0;
    font-family: 'Inter', sans-serif;
    font-weight: 300;
    opacity: 0;
    animation: fadeIn 0.4s ease-out forwards;
    animation-delay: 0.6s;
}

/* Reduce spacing in hero for tighter layout */
.hero-app-badges {
    margin-bottom: 12px !important;
}

/* Enhanced how-it-works step hover */
.how-step {
    transition: all 0.2s ease-out !important;
    transform: translateY(0);
}

.how-step:hover {
    transform: translateY(-6px) scale(1.02) !important;
    box-shadow: 0 16px 48px rgba(147, 51, 234, 0.12), 
                0 8px 24px rgba(0, 0, 0, 0.08) !important;
}

/* Add shadows to phone mockups for depth */
.how-step .premium-mockup {
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.15)) 
            drop-shadow(0 8px 16px rgba(147, 51, 234, 0.1));
    transition: filter 0.3s ease-out;
}

.how-step:hover .premium-mockup {
    filter: drop-shadow(0 30px 60px rgba(0, 0, 0, 0.2)) 
            drop-shadow(0 12px 24px rgba(147, 51, 234, 0.15));
}

/* Aggregate rating styles */
.aggregate-rating {
    margin-bottom: 20px;
}

.stars-large {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 2.5rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 8px;
}

.star-icon {
    font-size: 2rem;
}

.rating-number {
    font-family: 'Inter', sans-serif;
}

.rating-divider {
    opacity: 0.3;
    font-weight: 400;
}

.rating-total {
    opacity: 0.5;
    font-size: 2rem;
}

.rating-subtitle {
    font-size: 1rem;
    color: #666;
    font-family: 'Inter', sans-serif;
    margin: 0;
}

/* Hide the old star rating row since we have the new aggregate rating */
.star-rating-row {
    display: none;
}

/* Trust tagline under CTA */
.trust-tagline {
    font-size: 0.875rem;
    color: #666;
    margin-top: 15px;
    font-family: 'Inter', sans-serif;
    opacity: 0.8;
}

/* CTA text styling */
.cta-text {
    font-size: 1.25rem !important;
    font-weight: 600 !important;
    margin-bottom: 20px !important;
}

/* Footer privacy statement */
.footer-privacy-statement {
    text-align: center;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.938rem;
    margin-bottom: 40px;
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    padding: 20px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Tablet optimization - prevent overlap with subject */
@media (min-width: 768px) and (max-width: 1024px) {
    .hero-text-section {
        padding-left: 20px; /* Slight left shift to avoid bag overlap */
    }
    
    .hero-subheadline {
        margin-bottom: 60px !important; /* Generous breathing room on tablets */
    }
    
    .hero-app-badges {
        margin-top: 8px !important; /* Add some top margin too */
    }
    
    .app-badges-subtext {
        margin-bottom: 32px !important; /* Better spacing flow */
    }
}

/* Mobile optimizations - keep existing behavior */
@media (max-width: 1023px) {
    .hero-brand-logos {
        justify-content: center;
        gap: 14px;
        margin-top: 16px;
        margin-bottom: 20px;
    }
    
    .hero-brand-logo {
        height: 20px;
    }
    
    /* Mobile can stay as single row or scroll */
    .hero-brand-logo[alt="Uniqlo"] + .brand-divider {
        display: inline-block;
        width: auto;
        height: auto;
        flex-basis: auto;
    }
    
    .app-badges-subtext {
        text-align: center;
    }
    
    /* Stronger overlay on mobile for better text legibility */
    .gradient-overlay {
        background: linear-gradient(to bottom, 
            rgba(0,0,0,0.5) 0%,
            rgba(0,0,0,0.7) 100%) !important;
    }
}
    
    .aggregate-rating {
        margin-bottom: 15px;
    }
    
    .stars-large {
        font-size: 2rem;
    }
    
    .star-icon {
        font-size: 1.5rem;
    }
    
    .rating-total {
        font-size: 1.5rem;
    }
    
    .rating-subtitle {
        font-size: 0.875rem;
    }
}

/* Tighten hero section spacing */
.hero-headline {
    margin-bottom: 16px !important;
}

.hero-subheadline {
    margin-bottom: 0 !important;
}

.scroll-cta {
    margin-bottom: 20px !important;
}

/* Ensure proper brand logo sizing in trust strip */
.trust-logo[alt="Farfetch"] {
    height: 12px;
}

.trust-logo[alt="Dior"] {
    height: 14px;
}

/* Animation for trust elements */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Medium Screens - Subject Scaling Breakpoint */
@media (max-width: 1200px) and (min-width: 769px) {
    /* Scale down video/background to prevent text overlap */
    .hero-video {
        transform: scale(0.94);
        transform-origin: center right;
    }
    
    /* Adjust content spacing */
    .hero-content {
        padding-left: 45px !important;
        padding-right: 45px !important;
    }
    
    /* Slightly smaller text for this range */
    .hero-headline {
        font-size: 60px !important;
    }
    
    .hero-subheadline {
        font-size: 18px !important;
    }
}

/* Mobile Responsive Optimizations */
@media (max-width: 480px) {
    /* Tighter headline sizing */
    .hero-headline {
        font-size: clamp(38px, 10.5vw, 48px) \!important; /* ~10% smaller */
        line-height: 1.02 \!important;
        margin-bottom: 12px \!important;
    }
    
    .hero-subheadline {
        font-size: 15px !important;
        line-height: 1.35 !important;
        margin-bottom: 32px !important; /* More space before app badges */
    }
    
    /* Tighter app badge spacing */
    .hero-app-badges {
        margin-bottom: 10px \!important;
    }
    
    .app-badges-subtext {
        margin-bottom: 16px \!important;
        font-size: 0.75rem \!important;
    }
    
    /* Smaller brand logos on mobile */
    .hero-brand-logos {
        margin-bottom: 14px \!important;
    }
    
    /* Tighter credibility row */
    .credibility-row {
        margin-bottom: 20px \!important;
        font-size: 0.75rem \!important;
    }
}

/* ===== From enhancements.css ===== */
/* ===================================================================
   FINAL ENHANCEMENTS - Testimonials, Why Use Remode, Footer
   =================================================================== */

/* Enhanced testimonials section background */
.testimonials-section {
    background: linear-gradient(135deg,
        rgba(250, 240, 255, 0.5) 0%,
        rgba(255, 245, 250, 0.6) 50%,
        rgba(252, 248, 255, 0.5) 100%
    ) !important;
    position: relative;
}

.testimonials-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 30% 20%, rgba(147, 51, 234, 0.05) 0%, transparent 40%),
        radial-gradient(circle at 70% 80%, rgba(255, 111, 207, 0.05) 0%, transparent 40%);
    pointer-events: none;
}

/* Enhanced testimonial cards */
.testimonial-card {
    background: rgba(255, 255, 255, 0.85) !important;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.08),
                0 4px 12px rgba(147, 51, 234, 0.06) !important;
    border: 1px solid rgba(255, 255, 255, 0.7) !important;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.testimonial-card:hover {
    transform: translateY(-4px) !important;
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.12),
                0 6px 16px rgba(147, 51, 234, 0.08) !important;
}

/* Enhanced star ratings */
.testimonial-rating {
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.15));
    font-size: 0.938rem !important;
}

/* Enhanced Why Use Remode section */
.why-remode {
    background: linear-gradient(135deg, #f8f7f9 0%, #f3f1f5 50%, #ebe8ee 100%) !important;
}

.why-remode::after {
    content: '';
    position: absolute;
    width: 200%;
    height: 200%;
    top: -50%;
    left: -50%;
    background-image: 
        radial-gradient(circle at 20% 80%, rgba(180, 75, 255, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 111, 207, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(147, 51, 234, 0.02) 0%, transparent 50%);
    animation: float 20s ease-in-out infinite;
    pointer-events: none;
}

/* Enhanced benefit cards in Why Use Remode */
.benefit-card {
    background: rgba(255, 255, 255, 0.95) !important;
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.06),
                0 2px 8px rgba(147, 51, 234, 0.08) !important;
    border: 1px solid rgba(147, 51, 234, 0.1) !important;
}

.benefit-card:hover {
    transform: translateY(-8px) scale(1.02) !important;
    box-shadow: 0 20px 48px rgba(0, 0, 0, 0.1),
                0 8px 24px rgba(147, 51, 234, 0.15) !important;
}

/* Enhanced icon containers */
.benefit-icon {
    background: linear-gradient(135deg, rgba(180, 75, 255, 0.12) 0%, rgba(255, 111, 207, 0.12) 100%) !important;
    box-shadow: 0 4px 16px rgba(147, 51, 234, 0.2),
                inset 0 2px 4px rgba(255, 255, 255, 0.6) !important;
}

.benefit-card:hover .benefit-icon {
    transform: scale(1.1) !important;
    background: linear-gradient(135deg, rgba(180, 75, 255, 0.18) 0%, rgba(255, 111, 207, 0.18) 100%) !important;
}

/* Better contrast for micro stats - much darker for readability */
.micro-stat {
    color: #5B21B6 !important; /* Deep purple for strong contrast */
    font-weight: 700 !important; /* Bold weight */
    font-size: 0.813rem !important;
    letter-spacing: 0.08em !important;
    text-transform: uppercase !important;
    opacity: 1 !important; /* Ensure full opacity */
}

/* Alternative: Use a purple-tinted gray for even better readability */
@media screen {
    .micro-stat {
        color: #4C3575 !important; /* Purple-tinted dark gray */
    }
}

.benefit-card:hover .micro-stat {
    color: #4C1D95 !important; /* Royal purple on hover */
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1); /* Subtle shadow for depth */
}

/* Enhanced footer design */
.footer {
    background: linear-gradient(135deg, 
        rgba(20, 12, 35, 0.98) 0%, 
        rgba(35, 20, 55, 0.96) 50%,
        rgba(50, 28, 75, 0.98) 100%) !important;
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(180, 75, 255, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255, 111, 207, 0.06) 0%, transparent 40%);
    pointer-events: none;
}

/* Enhanced footer links */
.footer-column a {
    color: rgba(255, 255, 255, 0.75) !important;
    font-weight: 400;
    transition: all 0.3s ease;
}

.footer-column a:hover {
    color: white !important;
    transform: translateX(4px);
    text-shadow: 0 2px 8px rgba(180, 75, 255, 0.4);
}

/* Better footer bottom styling */
.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.2) !important;
    position: relative;
}

.footer-bottom::before {
    content: '';
    position: absolute;
    top: -1px;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, 
        transparent 0%, 
        rgba(180, 75, 255, 0.4) 50%, 
        transparent 100%);
}

/* Enhanced footer privacy statement */
.footer-privacy-statement {
    background: rgba(255, 255, 255, 0.08) !important;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

/* Float animation */
@keyframes float {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    33% { transform: translate(30px, -30px) rotate(120deg); }
    66% { transform: translate(-20px, 20px) rotate(240deg); }
}

/* Enhanced footer tagline */
.footer-tagline {
    font-size: 1.125rem !important;
    color: rgba(255, 255, 255, 0.85) !important;
    font-weight: 500 !important;
}

/* Center app badges in CTA sections */
.testimonials-cta .hero-app-badges,
.section-cta .hero-app-badges {
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    gap: 12px !important;
    margin: 0 auto !important;
    width: 100% !important;
}

/* Enhanced footer logo */
.footer-logo {
    font-size: 2.5rem !important;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

/* Enhanced footer disclaimer */
.footer-disclaimer {
    color: rgba(255, 255, 255, 0.7) !important;
    line-height: 1.6 !important;
}

/* Enhanced footer personality text */
.footer-personality {
    color: rgba(255, 255, 255, 0.85) !important;
    font-weight: 500 !important;
    font-size: 0.938rem !important;
}
/* ===== From hero-overlays.css ===== */
/* Hero Dark Overlay and Vignette - Restored */

/* Dark gradient overlay for text readability */
.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    max-height: 100vh;
    background: linear-gradient(90deg, 
        rgba(0, 0, 0, 0.95) 0%,     /* Near-black at 95% opacity */
        rgba(0, 0, 0, 0.85) 15%,    /* Still very dark */
        rgba(0, 0, 0, 0.7) 25%,     /* Dark */
        rgba(0, 0, 0, 0.5) 35%,     /* Medium dark */
        rgba(0, 0, 0, 0.2) 45%,     /* Light */
        rgba(0, 0, 0, 0.0) 55%      /* Fully transparent */
    ) !important;
    z-index: 2 !important;
    pointer-events: none;
}

/* Vignette effect for cinematic focus */
.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    max-height: 100vh;
    background: radial-gradient(ellipse at center, 
        transparent 0%,
        transparent 60%,
        rgba(0, 0, 0, 0.1) 80%,
        rgba(0, 0, 0, 0.2) 95%,
        rgba(0, 0, 0, 0.3) 100%) !important;
    pointer-events: none;
    z-index: 2 !important;
}

/* Ensure proper stacking and containment */
.hero {
    position: relative;
    overflow: hidden !important;
    isolation: isolate;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
}

.hero-content {
    position: relative;
    z-index: 10;
}

/* Video background */
.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

/* Mobile and tablet overlay adjustments */
@media (max-width: 968px) {
    /* Full-width overlay with slight gradient for better readability */
    .hero::before {
        background: linear-gradient(180deg,
            rgba(0, 0, 0, 0.75) 0%,    /* Darker at top for text */
            rgba(0, 0, 0, 0.7) 50%,     /* Consistent middle */
            rgba(0, 0, 0, 0.65) 100%    /* Slightly lighter at bottom */
        ) !important;
    }
    
    /* Stronger vignette for mobile */
    .hero::after {
        background: radial-gradient(ellipse at center, 
            transparent 0%,
            transparent 30%,
            rgba(0, 0, 0, 0.1) 50%,
            rgba(0, 0, 0, 0.3) 80%,
            rgba(0, 0, 0, 0.5) 100%) !important;
    }
}

/* Specific adjustments for very small screens */
@media (max-width: 480px) {
    .hero::before {
        background: rgba(0, 0, 0, 0.75) !important; /* Even darker for small screens */
    }
}

/* Gradient overlay element for additional control */
.gradient-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
        rgba(0, 0, 0, 0.95) 0%,     /* Near-black at 95% opacity */
        rgba(0, 0, 0, 0.85) 15%,    /* Still very dark */
        rgba(0, 0, 0, 0.7) 25%,     /* Dark */
        rgba(0, 0, 0, 0.5) 35%,     /* Medium dark */
        rgba(0, 0, 0, 0.2) 45%,     /* Light */
        rgba(0, 0, 0, 0.0) 55%      /* Fully transparent */
    ) !important;
    z-index: 2 !important;
    pointer-events: none;
}
/* ===== From beta-styles.css ===== */
/* Beta-specific styles for Remode */

/* Beta primary button - enhanced with depth */
.beta-primary-btn {
    display: inline-flex;
    align-items: center;
    padding: 16px 32px;
    font-size: 18px;
    font-weight: 600;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background: linear-gradient(135deg, #B44BFF 0%, #9333EA 100%);
    color: white;
    text-decoration: none;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(180, 75, 255, 0.25);
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
}

.beta-primary-btn:hover {
    box-shadow: 0 6px 20px rgba(180, 75, 255, 0.35);
    color: white !important; /* Keep text white on hover */
}

.beta-primary-btn:active {
    transform: translateY(0);
}

/* Beta disclaimer text */
.beta-disclaimer {
    color: rgba(255, 255, 255, 0.8);
    text-align: left;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

/* Beta CTA section styles */
.section-cta .beta-primary-btn {
    margin-top: 24px;
}



/* Mobile responsiveness */
@media (max-width: 768px) {
    .beta-primary-btn {
        font-size: 16px;
        padding: 14px 28px;
    }
}

@media (max-width: 375px) {
    .beta-primary-btn {
        font-size: 14px;
        padding: 12px 24px;
    }
    
    .beta-disclaimer {
        font-size: 0.75rem !important;
    }
}

/* Remove download subtitle in beta */
.beta-version .download-subtitle {
    display: none;
}



/* Spacing adjustments */
.hero-brands-inline {
    margin-top: 48px !important; /* Reduce space between CTA and logos */
}

/* Mobile spacing adjustments */
@media (max-width: 768px) {
    .hero-headline {
        margin-bottom: 20px !important; /* Add space after title on mobile */
    }
    
    .hero-brands-inline {
        margin-top: 36px !important; /* Even less space on mobile */
    }
}

/* iPhone SE specific adjustments */
@media screen and (max-width: 375px) and (max-height: 667px) {
    .hero-content {
        padding-top: 40px !important; /* Move content higher */
    }
    
    .hero-headline {
        margin-top: 0 !important;
        margin-bottom: 16px !important; /* More space between title and subline */
    }
    
    .hero-subheadline {
        margin-bottom: 24px !important; /* Adjust space after subline */
    }
}

/* Section CTA styling */
.section-cta .beta-primary-btn {
    margin-top: 24px;
}


/* ===== MERGED FIXES (Previously separate files) ===== */

/* Fix for Scanning... status visibility and purple dot animation */

/* Scanning status - properly positioned at top of scanner */
.scanning-status {
    position: absolute !important;
    top: 25% !important;
    left: 50% !important;
    transform: translateX(-50%) !important;
    display: flex !important;
    align-items: center !important;
    gap: 8px !important;
    background: rgba(0, 0, 0, 0.7) !important;
    backdrop-filter: blur(10px) !important;
    padding: 8px 16px !important;
    border-radius: 20px !important;
    z-index: 100 !important;
}

/* Purple blinking dot */
.scanning-dot {
    width: 10px !important;
    height: 10px !important;
    background: #B44BFF !important;
    border-radius: 50% !important;
    animation: pulseDot 1.5s ease-in-out infinite !important;
    box-shadow: 0 0 10px rgba(180, 75, 255, 0.6) !important;
}

/* Scanning text */
.scanning-text {
    color: white !important;
    font-size: 14px !important;
    font-weight: 500 !important;
    letter-spacing: 0.5px !important;
}

/* Purple dot pulse animation */
@keyframes pulseDot {
    0%, 100% { 
        opacity: 1;
        transform: scale(1);
        background: #B44BFF;
    }
    50% { 
        opacity: 0.4;
        transform: scale(0.8);
        background: #B44BFF;
    }
}

/* Mobile specific adjustments */
@media (max-width: 768px) {
    .scanning-status {
        top: 22% !important;
        font-size: 12px !important;
        padding: 6px 12px !important;
    }
    
    .scanning-dot {
        width: 8px !important;
        height: 8px !important;
    }
    
    .scanning-text {
        font-size: 12px !important;
    }
}

/* Small mobile (iPhone SE) */
@media (max-width: 375px) {
    .scanning-status {
        top: 20% !important;
        padding: 4px 10px !important;
    }
    
    .scanning-dot {
        width: 6px !important;
        height: 6px !important;
    }
    
    .scanning-text {
        font-size: 11px !important;
    }
}

/* Tablet adjustments */
@media (min-width: 768px) and (max-width: 1024px) {
    .scanning-status {
        top: 23% !important;
        padding: 8px 14px !important;
    }
}/* Fix for missing bottom-right scan border/corner */

/* Scan frame with purple borders */
.scan-frame {
    position: absolute !important;
    top: 50% !important;
    left: 50% !important;
    transform: translate(-50%, -50%) !important;
    width: 65% !important;
    height: 35% !important;
    pointer-events: none !important;
    z-index: 10 !important;
}

/* Corner brackets - all four corners */
.corner {
    position: absolute !important;
    width: 30px !important;
    height: 30px !important;
    border: 3px solid #B44BFF !important;
    z-index: 11 !important;
}

/* Top-left corner */
.corner.tl {
    top: -2px !important;
    left: -2px !important;
    border-right: none !important;
    border-bottom: none !important;
    border-top-left-radius: 8px !important;
}

/* Top-right corner */
.corner.tr {
    top: -2px !important;
    right: -2px !important;
    border-left: none !important;
    border-bottom: none !important;
    border-top-right-radius: 8px !important;
}

/* Bottom-left corner */
.corner.bl {
    bottom: -2px !important;
    left: -2px !important;
    border-right: none !important;
    border-top: none !important;
    border-bottom-left-radius: 8px !important;
}

/* Bottom-right corner - ENSURE VISIBILITY */
.corner.br {
    bottom: -2px !important;
    right: -2px !important;
    border-left: none !important;
    border-top: none !important;
    border-bottom-right-radius: 8px !important;
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
}

/* Make sure scan frame doesn't overflow */
.screen-bounds-container {
    overflow: visible !important;
}

/* Mobile adjustments */
@media (max-width: 768px) {
    .scan-frame {
        width: 60% !important;
        height: 38% !important;
    }
    
    .corner {
        width: 25px !important;
        height: 25px !important;
        border-width: 2.5px !important;
    }
}

/* Small mobile (iPhone SE) */
@media (max-width: 375px) {
    .scan-frame {
        width: 55% !important;
        height: 35% !important;
    }
    
    .corner {
        width: 20px !important;
        height: 20px !important;
        border-width: 2px !important;
    }
}

/* Tablet adjustments */
@media (min-width: 768px) and (max-width: 1024px) {
    .scan-frame {
        width: 62% !important;
        height: 40% !important;
    }
    
    .corner {
        width: 28px !important;
        height: 28px !important;
    }
}

/* Ensure all corners are visible with higher specificity */
.scanner-ui .scan-frame .corner,
.how-step .scanner-ui .scan-frame .corner {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
}

/* Extra specificity for bottom-right corner */
.scanner-ui .scan-frame .corner.br,
.how-step .scanner-ui .scan-frame .corner.br,
.corner.br,
.scan-frame .corner.br {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    border-left: none !important;
    border-top: none !important;
    border-right: 3px solid #B44BFF !important;
    border-bottom: 3px solid #B44BFF !important;
}/* Fix Why Use Remode section - ensure consistent background across all devices */

/* Desktop and all devices - purple/gray gradient (matches desktop) */
.why-remode {
    background: linear-gradient(135deg, #f8f7f9 0%, #f3f1f5 50%, #ebe8ee 100%) !important;
    margin-top: -100px !important;
    padding: 200px 20px 100px !important;
    text-align: center !important;
    position: relative !important;
}

/* Remove the yellow/pastel background on mobile */
@media (max-width: 767px) {
    .why-remode {
        /* Keep the purple/gray gradient, just adjust spacing */
        background: linear-gradient(135deg, #f8f7f9 0%, #f3f1f5 50%, #ebe8ee 100%) !important;
        padding: 100px 20px 80px !important;
        margin-top: -50px !important;
    }
}

/* Small mobile devices */
@media (max-width: 374px) {
    .why-remode {
        background: linear-gradient(135deg, #f8f7f9 0%, #f3f1f5 50%, #ebe8ee 100%) !important;
        padding: 80px 16px 60px !important;
    }
}

/* Tablet optimizations */
@media (min-width: 768px) and (max-width: 1024px) {
    .why-remode {
        background: linear-gradient(135deg, #f8f7f9 0%, #f3f1f5 50%, #ebe8ee 100%) !important;
        padding: 120px 40px 100px !important;
    }
}

/* Landscape mobile */
@media (max-width: 767px) and (orientation: landscape) {
    .why-remode {
        background: linear-gradient(135deg, #f8f7f9 0%, #f3f1f5 50%, #ebe8ee 100%) !important;
        padding: 60px 40px 60px !important;
    }
}

/* Override any other conflicting styles with higher specificity */
body .why-remode,
html body .why-remode,
main .why-remode,
.why-remode.why-remode {
    background: linear-gradient(135deg, #f8f7f9 0%, #f3f1f5 50%, #ebe8ee 100%) !important;
}

/* Ensure decorative elements work consistently */
.why-remode::before,
.why-remode::after {
    display: none !important; /* Remove on all devices for consistency */
}