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

:root {
    --primary-bg: #ffffff;
    --secondary-bg: #f8f8f8;
    --tertiary-bg: #f0f0f0;
    --text-primary: #1a1a1a;
    --text-secondary: #4a4a4a;
    --white: #ffffff;
    --orange-primary: #ff6b35;
    --orange-secondary: #ff8c52;
    --orange-accent: #ffa777;
    --orange-dark: #e55a2b;
    --gray-light: #e5e5e5;
    --gray: #8a8a8a;
    --gray-dark: #6a6a6a;
    
    /* Legacy support - map old gold/amber to orange */
    --gold: var(--orange-primary);
    --amber: var(--orange-secondary);
    --amber-light: var(--orange-accent);
    
    /* Legacy black variables mapped to light theme */
    --primary-black: var(--text-primary);
    --secondary-black: var(--text-secondary);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background: var(--primary-bg);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    padding-top: 0;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Prevent horizontal scroll */
html, body {
    max-width: 100%;
    overflow-x: hidden;
}

/* Improve touch targets on mobile */
@media (max-width: 768px) {
    a, button {
        -webkit-tap-highlight-color: rgba(255, 107, 53, 0.2);
        touch-action: manipulation;
    }

    /* Prevent text size adjustment on iOS */
    * {
        -webkit-text-size-adjust: 100%;
        -moz-text-size-adjust: 100%;
        -ms-text-size-adjust: 100%;
        text-size-adjust: 100%;
    }
}

/* Improve image rendering on mobile */
img {
    max-width: 100%;
    height: auto;
    display: block;
}

body.loaded {
    opacity: 1;
}

body:not(.loaded) {
    opacity: 0;
    transition: opacity 0.3s ease;
}

/* ========================================
   SCROLL PROGRESS INDICATOR
   ======================================== */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    width: 0%;
    height: 4px;
    background: linear-gradient(90deg, var(--orange-primary) 0%, var(--orange-secondary) 100%);
    z-index: 9999;
    transition: width 0.1s ease-out;
    box-shadow: 0 2px 10px rgba(255, 107, 53, 0.4);
}

/* ========================================
   STICKY NAVIGATION
   ======================================== */
.sticky-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 107, 53, 0.2);
    transition: all 0.3s ease;
    padding: 1rem 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.sticky-nav.scrolled {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.1);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    display: flex;
    align-items: center;
    cursor: pointer;
    transition: transform 0.3s ease;
    text-decoration: none;
    height: auto;
}

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

.logo-image {
    height: 45px;
    width: auto;
    display: block;
    object-fit: contain;
    max-height: 100%;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-links a {
    color: var(--text-primary);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: color 0.3s ease;
    position: relative;
    padding: 0.5rem 0;
}

.nav-links a.nav-login,
.nav-links a.nav-cta {
    padding: 0.75rem 2.5rem;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--orange-primary);
    transition: width 0.3s ease;
}

.nav-links a:hover::after,
.nav-links a:focus::after {
    width: 100%;
}

.nav-links a:hover,
.nav-links a:focus {
    color: var(--orange-primary);
    outline: none;
}

.nav-login {
    background: transparent;
    color: var(--text-primary);
    padding: 0.75rem 2.5rem;
    min-width: 140px;
    border-radius: 50px;
    font-weight: 600;
    border: 2px solid rgba(255, 107, 53, 0.3);
    white-space: nowrap;
    transition: all 0.3s ease;
}

.nav-login::after {
    display: none;
}

.nav-login:hover,
.nav-login:focus {
    color: var(--orange-primary);
    border-color: var(--orange-primary);
    background: rgba(255, 107, 53, 0.05);
    transform: translateY(-2px);
}

.nav-cta {
    background: linear-gradient(135deg, var(--orange-primary) 0%, var(--orange-secondary) 100%);
    color: var(--white);
    padding: 0.75rem 2.5rem;
    min-width: 160px;
    border-radius: 50px;
    font-weight: 600;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    border: none;
}

.nav-cta::after {
    display: none;
}

.nav-cta:hover,
.nav-cta:focus {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(255, 107, 53, 0.4);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    gap: 4px;
}

.hamburger {
    width: 25px;
    height: 3px;
    background: var(--orange-primary);
    border-radius: 3px;
    transition: all 0.3s ease;
}

.nav-toggle.active .hamburger:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.nav-toggle.active .hamburger:nth-child(2) {
    opacity: 0;
}

.nav-toggle.active .hamburger:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* ========================================
   SCROLL TO TOP BUTTON
   ======================================== */
.scroll-to-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--orange-primary) 0%, var(--orange-secondary) 100%);
    color: var(--white);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 999;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(255, 107, 53, 0.4);
}

.scroll-to-top.visible {
    display: flex;
}

.scroll-to-top:hover,
.scroll-to-top:focus {
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.5);
    outline: none;
}

.scroll-to-top svg {
    width: 24px;
    height: 24px;
}

.scroll-to-top:focus {
    outline: 2px solid var(--orange-primary);
    outline-offset: 3px;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* ========================================
   HERO SECTION
   ======================================== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: var(--primary-bg);
    padding-top: 70px; /* Space for sticky nav */
}


.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    width: 100%;
    position: relative;
}

.hero-content {
    text-align: left;
    padding: 2rem 0;
}

/* Hero Toggle Switch */
.hero-toggle {
    display: inline-flex;
    background: rgba(255, 107, 53, 0.1);
    border-radius: 50px;
    padding: 4px;
    margin-bottom: 2rem;
    gap: 4px;
    border: 1px solid rgba(255, 107, 53, 0.2);
}

.toggle-option {
    padding: 10px 24px;
    border: none;
    background: transparent;
    color: var(--text-secondary);
    font-family: 'Quicksand', sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    z-index: 1;
}

.toggle-option:hover {
    color: var(--text-primary);
}

.toggle-option.active {
    background: linear-gradient(135deg, var(--orange-primary) 0%, var(--orange-secondary) 100%);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
    border-radius: 50px;
    padding: 10px 24px;
}

/* Hero Views */
.hero-view {
    display: none;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.hero-view.active {
    display: block;
    opacity: 1;
    transform: translateY(0);
    animation: fadeInUp 0.5s ease-out forwards;
}

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

/* Hero App Buttons */
.hero-app-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-top: 1rem;
    align-items: center;
    justify-content: center;
}

/* Launching Soon Banner */
.launching-soon-banner {
    width: 100%;
    margin-bottom: 0.75rem;
    display: flex;
    justify-content: center;
    align-items: center;
}

.launching-soon-content {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.1) 0%, rgba(255, 140, 82, 0.1) 100%);
    border: 1.5px solid rgba(255, 107, 53, 0.3);
    border-radius: 50px;
    padding: 0.625rem 1.25rem;
    font-family: 'Quicksand', sans-serif;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--orange-primary);
    animation: launchingPulse 2s ease-in-out infinite;
}

.launching-soon-icon {
    color: var(--orange-primary);
    animation: launchingIconSpin 3s linear infinite;
}

.launching-soon-text {
    letter-spacing: 0.5px;
}

@keyframes launchingPulse {
    0%, 100% {
        border-color: rgba(255, 107, 53, 0.3);
        box-shadow: 0 0 0 0 rgba(255, 107, 53, 0.2);
    }
    50% {
        border-color: rgba(255, 107, 53, 0.5);
        box-shadow: 0 0 0 4px rgba(255, 107, 53, 0.1);
    }
}

@keyframes launchingIconSpin {
    0%, 100% {
        transform: rotate(0deg);
    }
    25% {
        transform: rotate(90deg);
    }
    50% {
        transform: rotate(180deg);
    }
    75% {
        transform: rotate(270deg);
    }
}

.hero-app-buttons .app-badge {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 20px;
    background: var(--primary-bg);
    border: 2px solid rgba(255, 107, 53, 0.2);
    border-radius: 12px;
    text-decoration: none;
    color: var(--text-primary);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    min-width: 180px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.hero-app-buttons .app-badge:hover {
    transform: translateY(-3px);
    border-color: var(--orange-primary);
    box-shadow: 0 8px 20px rgba(255, 107, 53, 0.2);
    background: rgba(255, 107, 53, 0.05);
}

.hero-app-buttons .badge-icon {
    font-size: 1.5rem;
    line-height: 1;
}

.hero-app-buttons .badge-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 2px;
}

.hero-app-buttons .badge-label {
    font-size: 0.7rem;
    color: var(--text-secondary);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.hero-app-buttons .badge-name {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-primary);
    font-family: 'Quicksand', sans-serif;
}

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

.hero-phone-wrapper {
    position: relative;
    width: 360px;
    height: 680px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 44px;
    overflow: hidden;
    background: var(--primary-bg);
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.25);
}

.hero-phone-screen-content {
    position: relative;
    width: 100%;
    height: 100%;
    background: transparent;
    border-radius: 44px;
    overflow: hidden;
    padding: 0;
    margin: 0;
    line-height: 0;
}

.hero-phone-header {
    padding: 15px 20px 10px;
    background: transparent;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 10;
    pointer-events: none;
}

.hero-status-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1rem;
    font-weight: 600;
    color: #000000;
    text-shadow: 0 1px 2px rgba(255, 255, 255, 0.8);
}

.hero-signal-bars,
.hero-battery {
    width: 24px;
    height: 14px;
    background: #000000;
    border-radius: 2px;
    box-shadow: 0 1px 2px rgba(255, 255, 255, 0.6);
}

.hero-poses-container {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    margin: 0;
    padding: 0;
}

.hero-poses-track {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
}

.hero-pose-item {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    margin: 0;
    padding: 0;
    opacity: 1;
    z-index: 2;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    transform: translateX(100%);
    will-change: transform;
}

.hero-pose-item.active {
    transform: translateX(0);
    z-index: 5;
}

.hero-pose-item.leaving {
    transform: translateX(-100%);
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1;
}

.hero-pose-item img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    margin: 0;
    padding: 0;
    border: none;
}

.hero-pose-buy-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.4) 50%, transparent 100%);
    z-index: 10;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.4s ease-in-out;
}

.hero-pose-item.active .hero-pose-buy-overlay {
    opacity: 1;
    pointer-events: auto;
}

.hero-pose-pack-title {
    font-family: 'Comfortaa', cursive;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--white);
    text-align: left;
    margin-bottom: 32px;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
    transform: translateY(10px);
    opacity: 0;
    animation: slideUpFadeIn 0.5s ease-out 0.2s forwards;
    letter-spacing: -0.01em;
}

.hero-buy-pose-btn {
    width: 100%;
    padding: 14px 20px;
    background: linear-gradient(135deg, var(--orange-primary) 0%, var(--orange-secondary) 100%);
    color: var(--white);
    border: none;
    border-radius: 14px;
    font-family: 'Quicksand', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.4);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    transform: translateY(10px);
    opacity: 0;
    animation: slideUpFadeIn 0.5s ease-out 0.3s forwards;
}

.hero-pose-item.active .hero-buy-pose-btn {
    animation: slideUpFadeIn 0.5s ease-out 0.3s forwards;
}

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

.hero-buy-pose-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.5);
    background: linear-gradient(135deg, var(--orange-secondary) 0%, var(--orange-primary) 100%);
}

.hero-buy-pose-btn:active {
    transform: translateY(0);
}

.buy-btn-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

.buy-btn-text {
    font-weight: 600;
    letter-spacing: 0.3px;
}

.buy-btn-price {
    font-weight: 700;
    font-size: 1.1rem;
    background: rgba(255, 255, 255, 0.2);
    padding: 4px 12px;
    border-radius: 8px;
    backdrop-filter: blur(10px);
}

.hero-pose-thumbnails {
    display: flex;
    gap: 10px;
    margin-top: 12px;
    overflow-x: auto;
    padding-bottom: 0;
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* IE and Edge */
    transform: translateY(10px);
    opacity: 0;
    animation: slideUpFadeIn 0.5s ease-out 0.5s forwards;
}

.hero-pose-thumbnails::-webkit-scrollbar {
    display: none; /* Chrome, Safari, Opera */
}

.hero-pose-item.active .hero-pose-thumbnails {
    animation: slideUpFadeIn 0.5s ease-out 0.5s forwards;
}

.hero-pose-thumbnail {
    flex-shrink: 0;
    width: 60px;
    height: 80px;
    border-radius: 8px;
    overflow: hidden;
    border: 2px solid rgba(255, 255, 255, 0.3);
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    position: relative;
}

.hero-pose-thumbnail:hover {
    transform: translateY(-3px) scale(1.05);
    border-color: rgba(255, 255, 255, 0.6);
    box-shadow: 0 4px 12px rgba(255, 107, 53, 0.4);
}

.hero-pose-thumbnail.premium-locked {
    cursor: not-allowed;
}

.hero-pose-thumbnail.premium-locked:hover {
    transform: none;
    border-color: rgba(255, 255, 255, 0.3);
    box-shadow: none;
}

.hero-pose-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.hero-pose-thumbnail.premium-locked img {
    filter: blur(3px) brightness(0.6);
}

.thumbnail-lock-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(3px);
    border-radius: 8px;
}

.premium-lock-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    filter: drop-shadow(0 2px 8px rgba(255, 215, 0, 0.6));
    animation: lockPulse 2s ease-in-out infinite;
}

.premium-lock-icon svg {
    width: 100%;
    height: 100%;
}

@keyframes lockPulse {
    0%, 100% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.08);
        opacity: 0.95;
    }
}

.hero-headline {
    font-family: 'Comfortaa', cursive;
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 700;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, var(--text-primary) 0%, var(--orange-primary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.hero-subheadline {
    font-size: clamp(1rem, 2vw, 1.25rem);
    color: var(--text-secondary);
    margin-bottom: 2.5rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.hero-cta {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    padding: 1rem 2.5rem;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: inline-block;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    border: none;
}

/* Magnetic/Pull Effect */
.btn {
    will-change: transform;
}

.btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn:hover::before {
    width: 300px;
    height: 300px;
}

.btn-primary {
    background: linear-gradient(135deg, var(--orange-primary) 0%, var(--orange-secondary) 100%);
    color: var(--white);
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 15px 40px rgba(255, 107, 53, 0.5);
}

.btn-primary:focus {
    outline: 3px solid var(--orange-primary);
    outline-offset: 3px;
}

.btn-secondary {
    background: transparent;
    color: var(--text-primary);
    border: 2px solid var(--orange-primary);
}

.btn-secondary:hover {
    background: var(--orange-primary);
    color: var(--white);
    transform: translateY(-3px) scale(1.02);
}

.btn-secondary:focus {
    outline: 3px solid var(--orange-primary);
    outline-offset: 3px;
}

/* Enhanced Focus States for All Interactive Elements */
a:focus,
button:focus {
    outline: 2px solid var(--orange-primary);
    outline-offset: 3px;
    border-radius: 4px;
}

a:focus:not(:focus-visible),
button:focus:not(:focus-visible) {
    outline: none;
}

a:focus-visible,
button:focus-visible {
    outline: 2px solid var(--orange-primary);
    outline-offset: 3px;
}


/* ========================================
   CREATOR SECTION (70% Focus)
   ======================================== */
.creator-section {
    padding: 8rem 0;
    background: var(--secondary-bg);
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: 5rem;
}

.section-title {
    font-family: 'Comfortaa', cursive;
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
    letter-spacing: -0.01em;
}

.section-description {
    font-size: 1.125rem;
    color: var(--text-secondary);
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.8;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 3rem;
    margin-bottom: 6rem;
}

.step-card {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 107, 53, 0.2);
    border-radius: 20px;
    padding: 2.5rem;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    will-change: transform;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.step-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 107, 53, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.step-card:hover::before {
    opacity: 1;
}

.step-card:hover {
    transform: translateY(-10px) rotateX(5deg) rotateY(-2deg);
    border-color: var(--orange-primary);
    box-shadow: 0 20px 40px rgba(255, 107, 53, 0.2);
    background: rgba(255, 255, 255, 0.95);
}

.step-card:focus-within {
    outline: 2px solid var(--orange-primary);
    outline-offset: 5px;
}

.step-number {
    font-family: 'Comfortaa', cursive;
    font-size: 4rem;
    font-weight: 700;
    color: var(--orange-primary);
    opacity: 0.3;
    position: absolute;
    top: -10px;
    left: 10px;
}

.step-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1.5rem;
    color: var(--orange-primary);
    position: relative;
    z-index: 1;
}

.step-card h3 {
    font-family: 'Quicksand', sans-serif;
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-primary);
    position: relative;
    z-index: 1;
}

.step-card p {
    color: var(--text-secondary);
    position: relative;
    z-index: 1;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.feature-card {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(255, 107, 53, 0.15);
    will-change: transform;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.feature-card:hover {
    transform: translateY(-5px) rotateY(3deg);
    border-color: var(--orange-primary);
    box-shadow: 0 15px 35px rgba(255, 107, 53, 0.2);
    background: rgba(255, 255, 255, 1);
}

.feature-card:focus-within {
    outline: 2px solid var(--orange-primary);
    outline-offset: 5px;
}

.feature-image {
    width: 100%;
    height: 250px;
    overflow: hidden;
}

.feature-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.feature-card:hover .feature-image img {
    transform: scale(1.1);
}

.feature-content {
    padding: 2rem;
}

.feature-content h3 {
    font-family: 'Quicksand', sans-serif;
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: var(--text-primary);
}

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

.creator-cta {
    text-align: center;
}

.btn-creator {
    background: linear-gradient(135deg, var(--orange-primary) 0%, var(--orange-secondary) 100%);
    color: var(--white);
    padding: 1.25rem 3rem;
    font-size: 1.125rem;
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.3);
}

.btn-creator:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(255, 107, 53, 0.5);
}

/* ========================================
   APP USER SECTION (30%)
   ======================================== */
.app-user-section {
    padding: 6rem 0;
    background: var(--primary-bg);
}

.app-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.app-text h2 {
    font-family: 'Comfortaa', cursive;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
    letter-spacing: -0.01em;
}

.app-text p {
    font-size: 1.125rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    line-height: 1.8;
}

.app-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.app-badge {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: #000;
    padding: 0.625rem 1rem;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 107, 53, 0.2);
    min-width: 160px;
}

.app-badge:hover {
    transform: translateY(-3px);
    border-color: var(--orange-primary);
    box-shadow: 0 5px 15px rgba(255, 107, 53, 0.3);
}

.badge-icon {
    font-size: 1.5rem;
    line-height: 1;
}

.badge-text {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.badge-label {
    font-size: 0.625rem;
    color: var(--gray);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.badge-name {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--white);
}

.play-store .badge-icon {
    font-size: 1rem;
    font-weight: bold;
}

.app-mockup {
    display: flex;
    justify-content: center;
    align-items: center;
}

.phone-frame {
    width: 280px;
    height: 560px;
    background: linear-gradient(135deg, #e0e0e0 0%, #f5f5f5 100%);
    border-radius: 40px;
    padding: 12px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15), 0 0 0 2px rgba(255, 107, 53, 0.3);
    position: relative;
}

.phone-frame::before {
    content: '';
    position: absolute;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 25px;
    background: var(--primary-bg);
    border-radius: 0 0 15px 15px;
    z-index: 2;
}

.phone-screen {
    width: 100%;
    height: 100%;
    background: var(--primary-bg);
    border-radius: 30px;
    overflow: hidden;
    position: relative;
}

.app-preview {
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, #f8f8f8 0%, #ffffff 100%);
}

.status-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
    color: var(--text-primary);
    font-size: 0.875rem;
    font-weight: 600;
}

.signal-bars,
.battery {
    width: 20px;
    height: 12px;
    background: var(--text-primary);
    border-radius: 2px;
}

.pack-showcase {
    padding: 2rem 1.5rem;
}

.pack-image {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 16px;
    margin-bottom: 1rem;
}

.pack-info {
    color: var(--text-primary);
}

.pack-info h4 {
    font-family: 'Quicksand', sans-serif;
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.pack-info p {
    color: var(--text-secondary);
    font-size: 0.875rem;
}

/* ========================================
   GLOBAL COMMUNITY SECTION
   ======================================== */
/* UK Launch Section */
.uk-launch-section {
    padding: 6rem 0;
    background: linear-gradient(180deg, var(--primary-bg) 0%, var(--secondary-bg) 100%);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.launch-header {
    margin-bottom: 4rem;
}

.launch-header .section-title {
    max-width: 900px;
    margin: 0 auto 1.5rem;
}

.launch-header .section-description {
    max-width: 700px;
    margin: 0 auto;
    font-size: 1.1rem;
    color: var(--text-secondary);
    line-height: 1.8;
}

.uk-cities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 1.5rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem 0;
}

.city-card {
    position: relative;
    background: var(--primary-bg);
    border: 2px solid rgba(255, 107, 53, 0.15);
    border-radius: 20px;
    padding: 0;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
    opacity: 0;
    transform: translateY(30px) scale(0.9);
    animation: cityCardAppear 0.6s ease-out forwards;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
}

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

.city-card::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 107, 53, 0.1) 0%, transparent 70%);
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
}

.city-card:hover::before {
    width: 300px;
    height: 300px;
}

.city-glow {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 107, 53, 0.1) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.4s ease;
    animation: cityGlowPulse 3s ease-in-out infinite;
}

@keyframes cityGlowPulse {
    0%, 100% {
        opacity: 0;
        transform: scale(1);
    }
    50% {
        opacity: 0.6;
        transform: scale(1.1);
    }
}

.city-card:hover .city-glow {
    opacity: 0.8;
}

.city-card:hover {
    transform: translateY(-8px) scale(1.02);
    border-color: var(--orange-primary);
    box-shadow: 0 12px 30px rgba(255, 107, 53, 0.2);
    background: rgba(255, 255, 255, 0.98);
}

.city-content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    padding: 1.5rem 1rem;
}

.city-image {
    width: 100%;
    height: 180px;
    overflow: hidden;
    position: relative;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.1) 0%, rgba(255, 140, 82, 0.1) 100%);
}

.city-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    filter: brightness(1) saturate(1);
}

.city-card:hover .city-image img {
    transform: scale(1.15);
    filter: brightness(1.1) saturate(1.2);
}

.city-name {
    font-family: 'Comfortaa', cursive;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-primary);
    margin: 0;
    position: relative;
}

.city-name::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--orange-primary) 0%, var(--orange-secondary) 100%);
    transition: width 0.3s ease;
}

.city-card:hover .city-name::after {
    width: 100%;
}

.city-badge {
    font-size: 0.75rem;
    font-weight: 600;
    padding: 4px 12px;
    border-radius: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-family: 'Quicksand', sans-serif;
}

.city-card[data-city="london"] .city-badge {
    background: linear-gradient(135deg, var(--orange-primary) 0%, var(--orange-secondary) 100%);
    color: var(--white);
    box-shadow: 0 2px 8px rgba(255, 107, 53, 0.4);
    animation: badgePulse 2s ease-in-out infinite;
}

@keyframes badgePulse {
    0%, 100% {
        box-shadow: 0 2px 8px rgba(255, 107, 53, 0.4);
    }
    50% {
        box-shadow: 0 4px 16px rgba(255, 107, 53, 0.6);
    }
}

.city-card:not([data-city="london"]) .city-badge {
    background: rgba(255, 107, 53, 0.1);
    color: var(--orange-primary);
    border: 1px solid rgba(255, 107, 53, 0.2);
}

.marker-dot {
    width: 12px;
    height: 12px;
    background: var(--orange-primary);
    border-radius: 50%;
    position: relative;
    z-index: 2;
    box-shadow: 0 0 20px var(--orange-primary);
}


/* Old city-marker styles removed - using city-card instead */

/* ========================================
   WHY SECTION
   ======================================== */
.why-section {
    padding: 6rem 0;
    background: var(--primary-bg);
}

.why-section .section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.why-section .section-title {
    max-width: 900px;
    margin: 0 auto 1.5rem;
}

.why-section .section-description {
    max-width: 700px;
    margin: 0 auto;
    font-size: 1.1rem;
    color: var(--text-secondary);
    line-height: 1.8;
}

.story-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.story-card {
    background: var(--primary-bg);
    border: 2px solid rgba(255, 107, 53, 0.15);
    border-radius: 20px;
    padding: 2.5rem 2rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    opacity: 0;
    transform: translateY(30px);
    animation: storyCardAppear 0.6s ease-out forwards;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.story-card:nth-child(1) { animation-delay: 0.1s; }
.story-card:nth-child(2) { animation-delay: 0.2s; }
.story-card:nth-child(3) { animation-delay: 0.3s; }
.story-card:nth-child(4) { animation-delay: 0.4s; }

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

.story-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--orange-primary) 0%, var(--orange-secondary) 100%);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.story-card:hover::before {
    transform: scaleX(1);
}

.story-card:hover {
    transform: translateY(-8px);
    border-color: var(--orange-primary);
    box-shadow: 0 12px 35px rgba(255, 107, 53, 0.2);
    background: rgba(255, 255, 255, 0.98);
}

.story-card-featured {
    border-color: rgba(255, 107, 53, 0.3);
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.05) 0%, rgba(255, 140, 82, 0.05) 100%);
    position: relative;
}

.story-card-featured::after {
    content: '⭐ Featured';
    position: absolute;
    top: 1rem;
    right: 1rem;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--orange-primary);
    font-family: 'Quicksand', sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.story-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.1) 0%, rgba(255, 140, 82, 0.1) 100%);
    border-radius: 16px;
    color: var(--orange-primary);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.story-card:hover .story-icon {
    transform: scale(1.1) rotate(5deg);
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.2) 0%, rgba(255, 140, 82, 0.2) 100%);
}

.story-title {
    font-family: 'Comfortaa', cursive;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1rem;
    text-align: center;
}

.story-text {
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 1.5rem;
    text-align: center;
    font-size: 1rem;
}

.story-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem;
    background: rgba(255, 107, 53, 0.05);
    border-radius: 12px;
    margin-top: 1rem;
}

.stat-highlight {
    font-family: 'Comfortaa', cursive;
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--orange-primary);
    display: block;
}

.stat-label {
    font-size: 0.875rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-family: 'Quicksand', sans-serif;
    font-weight: 600;
}

.stat-counter:hover {
    transform: scale(1.05);
    border-color: var(--orange-primary);
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.2);
}

.stat-counter:focus-within {
    outline: 2px solid var(--orange-primary);
    outline-offset: 5px;
}

.stat-number {
    font-family: 'Comfortaa', cursive;
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--orange-primary);
    margin-bottom: 0.5rem;
}

.stat-label {
    color: var(--text-secondary);
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ========================================
   FOOTER
   ======================================== */
.footer {
    padding: 3rem 0;
    background: var(--secondary-bg);
    border-top: 1px solid rgba(255, 107, 53, 0.2);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    flex-wrap: wrap;
    gap: 2rem;
}

.footer-links {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.footer-links a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.3s ease;
}

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

.footer-social {
    display: flex;
    gap: 1rem;
}

.social-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
    transition: all 0.3s ease;
    border-radius: 50%;
    border: 1px solid rgba(255, 107, 53, 0.2);
    background: rgba(255, 255, 255, 0.5);
}

.social-icon svg {
    width: 20px;
    height: 20px;
}

.social-icon:hover {
    color: var(--orange-primary);
    border-color: var(--orange-primary);
    transform: translateY(-3px);
}

.footer-copyright {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 107, 53, 0.2);
}

.footer-copyright p {
    color: var(--text-primary);
    font-size: 0.875rem;
}

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

/* Tablet and below */
@media (max-width: 1024px) {
    .hero-container {
        gap: 3rem;
    }

    .nav-container {
        padding: 0 1.5rem;
    }

    .container {
        padding: 0 1.5rem;
    }

    .process-steps {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 2rem;
    }

    .feature-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }

    .section-header {
        margin-bottom: 3rem;
    }
}

/* Mobile and Tablet */
@media (max-width: 768px) {

    .hero {
        align-items: flex-start;
        padding-top: 80px;
    }

    .hero-container {
        grid-template-columns: 1fr;
        gap: 2.5rem;
        text-align: center;
        padding: 0 1rem;
        padding-top: 2rem;
        display: grid;
    }

    .hero-content {
        text-align: center;
        padding: 1.5rem 0;
    }

    .hero-toggle {
        justify-content: center;
        margin: 0 auto 2rem;
        width: 100%;
        max-width: 320px;
    }

    .toggle-option {
        padding: 10px 20px;
        font-size: 0.875rem;
        min-height: 44px;
        flex: 1;
    }

    .hero-headline {
        font-size: clamp(2rem, 8vw, 3rem);
        margin-bottom: 1.25rem;
        line-height: 1.15;
    }

    .hero-subheadline {
        font-size: clamp(0.95rem, 2.5vw, 1.1rem);
        margin-bottom: 2rem;
        padding: 0 0.5rem;
    }

    .hero-cta {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }

    .hero-app-buttons {
        flex-direction: column;
        align-items: center;
        width: 100%;
        gap: 1rem;
    }

    .launching-soon-banner {
        width: 100%;
        margin-bottom: 0.5rem;
    }

    .launching-soon-content {
        font-size: 0.8rem;
        padding: 0.5rem 1rem;
    }

    .launching-soon-icon {
        width: 16px;
        height: 16px;
    }

    .hero-app-buttons .app-badge {
        width: 100%;
        max-width: 280px;
        justify-content: center;
        min-height: 60px;
        padding: 14px 20px;
    }

    .btn {
        width: 100%;
        max-width: 300px;
        text-align: center;
        min-height: 48px;
        padding: 1rem 2rem;
        font-size: 1rem;
    }

    .hero-phone {
        order: -1;
        margin-top: 2rem;
        margin-bottom: 1rem;
    }

    .hero-phone-wrapper {
        width: 320px;
        height: 600px;
        margin: 0 auto;
    }

    .hero-phone-screen-content {
        border-radius: 35px;
    }

    .hero-pose-buy-overlay {
        padding: 15px;
    }

    .hero-buy-pose-btn {
        padding: 12px 16px;
        font-size: 0.9rem;
        min-height: 48px;
    }

    .buy-btn-price {
        font-size: 1rem;
        padding: 3px 10px;
    }

    .hero-pose-thumbnails {
        gap: 8px;
        margin-top: 10px;
    }

    .hero-pose-thumbnail {
        width: 50px;
        height: 70px;
        border-width: 1.5px;
        min-width: 50px;
    }

    .premium-lock-icon {
        width: 28px;
        height: 28px;
    }

    .hero-pose-pack-title {
        font-size: 1.2rem;
        margin-bottom: 24px;
    }

    .creator-section {
        padding: 4rem 0;
    }

    .process-steps {
        grid-template-columns: 1fr;
        gap: 2rem;
        margin-bottom: 4rem;
    }

    .step-card {
        padding: 2rem 1.5rem;
    }

    .step-number {
        font-size: 3rem;
    }

    .step-icon {
        width: 50px;
        height: 50px;
        margin-bottom: 1.25rem;
    }

    .step-card h3 {
        font-size: 1.25rem;
        margin-bottom: 0.875rem;
    }

    .step-card p {
        font-size: 0.95rem;
    }

    .feature-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        margin-bottom: 3rem;
    }

    .feature-card {
        overflow: visible;
    }

    .feature-image {
        height: 200px;
    }

    .feature-content {
        padding: 1.5rem;
    }

    .feature-content h3 {
        font-size: 1.125rem;
    }

    .feature-content p {
        font-size: 0.95rem;
    }

    .app-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

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

    .poses-masonry {
        grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
        grid-auto-rows: 100px;
        gap: 6px;
        padding: 15px;
    }

    .why-section {
        padding: 4rem 0;
    }

    .story-cards-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .story-card {
        padding: 2rem 1.5rem;
    }

    .why-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .stats-center {
        order: -1;
    }

    .section-title {
        font-size: clamp(1.75rem, 6vw, 2.5rem);
        margin-bottom: 1.25rem;
    }

    .section-description {
        font-size: 1rem;
        line-height: 1.7;
        padding: 0 0.5rem;
    }

    .creator-cta {
        margin-top: 2rem;
    }

    .btn-creator {
        width: 100%;
        max-width: 300px;
    }

    .footer {
        padding: 2.5rem 0;
    }

    .footer-content {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
    }

    .footer-links {
        justify-content: center;
        flex-wrap: wrap;
        gap: 1.5rem;
    }

    .footer-links a {
        font-size: 0.95rem;
        min-height: 44px;
        display: flex;
        align-items: center;
    }

    .footer-social {
        justify-content: center;
        gap: 1rem;
    }

    .social-icon {
        width: 44px;
        height: 44px;
        min-width: 44px;
        min-height: 44px;
    }

    .world-map {
        height: 400px;
    }

    .nav-container {
        padding: 0 1rem;
    }

    .nav-logo {
        height: auto;
    }

    .logo-image {
        height: 38px;
    }

    .nav-links {
        position: fixed;
        top: 60px;
        right: -100%;
        width: 85%;
        max-width: 320px;
        height: calc(100vh - 60px);
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(30px);
        -webkit-backdrop-filter: blur(30px);
        flex-direction: column;
        align-items: flex-start;
        padding: 1.25rem 1.5rem;
        gap: 0;
        transition: right 0.3s ease;
        border-left: 1px solid rgba(255, 107, 53, 0.2);
        box-shadow: -5px 0 20px rgba(0, 0, 0, 0.1);
        overflow-y: auto;
    }

    .nav-links.active {
        right: 0;
    }

    .nav-links li {
        width: 100%;
        margin-bottom: 0;
    }

    .nav-links a {
        display: block;
        width: 100%;
        padding: 0.625rem 1rem;
        min-height: 44px;
        border-radius: 8px;
        transition: all 0.3s ease;
    }

    .nav-links a.nav-login,
    .nav-links a.nav-cta {
        width: 100%;
        text-align: center;
        margin-top: 0.125rem;
    }

    .nav-links a:hover,
    .nav-links a:focus {
        background: rgba(255, 107, 53, 0.1);
    }

    .nav-toggle {
        display: flex;
        min-width: 44px;
        min-height: 44px;
        padding: 0.5rem;
    }

    .sticky-nav {
        padding: 0.75rem 0;
    }

    .scroll-to-top {
        bottom: 1.5rem;
        right: 1.5rem;
        width: 48px;
        height: 48px;
        min-width: 48px;
        min-height: 48px;
    }

    .scroll-to-top svg {
        width: 20px;
        height: 20px;
    }

    .uk-cities-grid {
        grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
        gap: 1.25rem;
    }

    .city-card {
        padding: 0;
    }

    .city-content {
        padding: 1.5rem 1rem;
    }

    .city-image {
        height: 160px;
    }

    .city-name {
        font-size: 1.15rem;
    }

    .launch-header .section-description {
        font-size: 1rem;
        padding: 0 1rem;
    }
}

/* Small mobile devices */
@media (max-width: 480px) {
    .container {
        padding: 0 1rem;
    }

    .nav-container {
        padding: 0 1rem;
    }

    .hero {
        min-height: 85vh;
        padding-top: 70px;
        align-items: flex-start;
    }


    .hero-container {
        padding: 0 0.75rem;
        padding-top: 1.5rem;
        gap: 2rem;
    }

    .hero-content {
        padding: 1rem 0;
    }

    .hero-headline {
        font-size: clamp(1.75rem, 9vw, 2.5rem);
        margin-bottom: 1rem;
    }

    .hero-subheadline {
        font-size: clamp(0.9rem, 3vw, 1rem);
        margin-bottom: 1.5rem;
        padding: 0;
    }

    .hero-toggle {
        max-width: 100%;
        padding: 3px;
    }

    .toggle-option {
        padding: 8px 16px;
        font-size: 0.8rem;
    }

    .hero-phone-wrapper {
        width: 280px;
        height: 540px;
    }

    .launching-soon-content {
        font-size: 0.75rem;
        padding: 0.5rem 0.875rem;
    }

    .launching-soon-icon {
        width: 14px;
        height: 14px;
    }

    .hero-app-buttons .app-badge {
        max-width: 100%;
        padding: 12px 18px;
    }

    .btn {
        max-width: 100%;
        padding: 0.875rem 1.5rem;
        font-size: 0.95rem;
    }

    .creator-section,
    .app-user-section,
    .uk-launch-section,
    .why-section {
        padding: 3rem 0;
    }

    .section-header {
        margin-bottom: 2.5rem;
    }

    .section-title {
        font-size: clamp(1.5rem, 7vw, 2rem);
        margin-bottom: 1rem;
    }

    .section-description {
        font-size: 0.95rem;
        padding: 0;
    }

    .story-cards-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 0;
    }

    .story-card {
        padding: 1.75rem 1.25rem;
    }

    .story-icon {
        width: 52px;
        height: 52px;
        margin-bottom: 1.25rem;
    }

    .story-icon svg {
        width: 32px;
        height: 32px;
    }

    .story-title {
        font-size: 1.15rem;
        margin-bottom: 0.875rem;
    }

    .story-text {
        font-size: 0.9rem;
        margin-bottom: 1.25rem;
    }

    .stat-highlight {
        font-size: 1.4rem;
    }

    .stat-label {
        font-size: 0.75rem;
    }

    .story-stat {
        padding: 0.875rem;
    }

    .uk-cities-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
        padding: 0;
    }

    .city-card {
        padding: 0;
    }

    .city-image {
        height: 140px;
    }

    .city-content {
        padding: 1.25rem 0.875rem;
    }

    .city-name {
        font-size: 1rem;
    }

    .city-badge {
        font-size: 0.7rem;
        padding: 3px 10px;
    }

    .launch-header .section-description {
        font-size: 0.95rem;
        padding: 0 0.5rem;
    }

    .process-steps {
        gap: 1.5rem;
        margin-bottom: 3rem;
    }

    .step-card {
        padding: 1.75rem 1.25rem;
    }

    .step-number {
        font-size: 2.5rem;
        top: -5px;
        left: 5px;
    }

    .step-icon {
        width: 48px;
        height: 48px;
        margin-bottom: 1rem;
    }

    .step-card h3 {
        font-size: 1.15rem;
        margin-bottom: 0.75rem;
    }

    .step-card p {
        font-size: 0.9rem;
    }

    .feature-grid {
        gap: 1.5rem;
        margin-bottom: 2.5rem;
    }

    .feature-image {
        height: 180px;
    }

    .feature-content {
        padding: 1.25rem;
    }

    .feature-content h3 {
        font-size: 1.05rem;
        margin-bottom: 0.625rem;
    }

    .feature-content p {
        font-size: 0.9rem;
    }

    .btn-creator {
        max-width: 100%;
        padding: 1.125rem 2rem;
        font-size: 1rem;
    }

    .footer {
        padding: 2rem 0;
    }

    .footer-content {
        gap: 1.25rem;
    }

    .footer-links {
        flex-direction: column;
        gap: 0.75rem;
        width: 100%;
    }

    .footer-links a {
        justify-content: center;
        padding: 0.75rem;
    }

    .footer-social {
        width: 100%;
        justify-content: center;
    }


    .nav-links {
        top: 55px;
        height: calc(100vh - 55px);
        padding: 1rem 1rem;
    }

    .scroll-to-top {
        bottom: 1rem;
        right: 1rem;
        width: 44px;
        height: 44px;
        min-width: 44px;
        min-height: 44px;
    }

    .scroll-to-top svg {
        width: 18px;
        height: 18px;
    }

    .hero-pose-buy-overlay {
        padding: 12px;
    }

    .hero-pose-pack-title {
        font-size: 1.1rem;
        margin-bottom: 20px;
    }

    .hero-buy-pose-btn {
        padding: 10px 14px;
        font-size: 0.85rem;
        min-height: 44px;
    }

    .buy-btn-price {
        font-size: 0.95rem;
        padding: 2px 8px;
    }

    .hero-pose-thumbnail {
        width: 45px;
        height: 65px;
    }
}

/* ========================================
   ANIMATIONS & TRANSITIONS
   ======================================== */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Glassmorphism effect */
.glass {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}
