/* =============================================
   MOVES - Premium Website Styles
   Full-screen animations, parallax, transitions
   ============================================= */

/* CSS Variables */
:root {
    --bg-dark: #0a0a0f;
    --bg-surface: #12121a;
    --text-primary: #ffffff;
    --text-secondary: #a0a0b0;
    --neon-pink: #FF3366;
    --neon-purple: #8360c3;
    --neon-green: #2ebf91;
    --gradient-primary: linear-gradient(135deg, #FF3366, #8360c3);
    --gradient-glow: linear-gradient(135deg, rgba(255,51,102,0.4), rgba(131,96,195,0.4));
    --glass-bg: rgba(255, 255, 255, 0.03);
    --glass-border: rgba(255, 255, 255, 0.08);
    --font-main: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --transition-smooth: cubic-bezier(0.4, 0, 0.2, 1);
    --transition-bounce: cubic-bezier(0.34, 1.56, 0.64, 1);
}

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

html {
    scroll-behavior: smooth;
}

html.lenis {
    height: auto;
}

.lenis.lenis-smooth {
    scroll-behavior: auto;
}

body {
    font-family: var(--font-main);
    background: var(--bg-dark);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

/* =============================================
   NOISE OVERLAY
   ============================================= */
.noise-overlay {
    position: fixed;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    pointer-events: none;
    z-index: 9999;
    opacity: 0.015;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
}

/* =============================================
   HEADER
   ============================================= */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 20px 40px;
    background: transparent;
    transition: all 0.5s var(--transition-smooth);
}

.header.scrolled {
    background: rgba(10, 10, 15, 0.9);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
}

.header-content {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.logo-icon {
    width: 40px;
    height: 40px;
}

.logo-text {
    font-size: 24px;
    font-weight: 800;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.header-nav {
    display: flex;
    gap: 40px;
}

.header-nav a {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

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

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

.header-nav a:hover::after {
    width: 100%;
}

.header-cta {
    padding: 12px 24px;
    background: var(--gradient-primary);
    color: white;
    text-decoration: none;
    border-radius: 30px;
    font-weight: 600;
    transition: all 0.3s var(--transition-bounce);
}

.header-cta:hover {
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 10px 30px rgba(255, 51, 102, 0.4);
}

/* =============================================
   DOT NAVIGATION
   ============================================= */
.dot-nav {
    position: fixed;
    right: 30px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1000;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.dot-nav-item {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--glass-border);
    cursor: pointer;
    transition: all 0.4s var(--transition-bounce);
    position: relative;
}

.dot-nav-item:hover,
.dot-nav-item.active {
    background: var(--neon-pink);
    transform: scale(1.4);
    box-shadow: 0 0 20px rgba(255, 51, 102, 0.6);
}

.dot-nav-item span {
    position: absolute;
    right: 24px;
    top: 50%;
    transform: translateY(-50%) translateX(10px);
    background: var(--bg-surface);
    padding: 8px 16px;
    border-radius: 8px;
    font-size: 13px;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s var(--transition-smooth);
    border: 1px solid var(--glass-border);
}

.dot-nav-item:hover span {
    opacity: 1;
    transform: translateY(-50%) translateX(0);
}

/* =============================================
   SECTIONS - BASE
   ============================================= */
.section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 100px 40px;
    overflow: hidden;
}

.section-content {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
}

/* Section Transition Effects */
.section {
    opacity: 1;
    transform: translateY(0) scale(1) rotate(0deg);
    transition: all 0.8s var(--transition-smooth);
}

.section.section-exit {
    opacity: 0;
    transform: translateY(-50px) scale(0.95);
    filter: blur(10px);
}

.section.section-entering {
    opacity: 0;
    transform: translateY(100px) scale(0.9);
}

.section.section-entered {
    opacity: 1;
    transform: translateY(0) scale(1);
}

/* =============================================
   ANIMATED TEXT - Letter by Letter
   ============================================= */
.section-title {
    font-size: clamp(36px, 5vw, 64px);
    font-weight: 800;
    text-align: center;
    margin-bottom: 16px;
    overflow: hidden;
}

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

.section-subtitle {
    font-size: 18px;
    color: var(--text-secondary);
    text-align: center;
    margin-bottom: 60px;
}

/* Split text animation */
.split-text .char {
    display: inline-block;
    opacity: 0;
    transform: translateY(100px) rotateX(-90deg);
    transition: all 0.6s var(--transition-bounce);
}

.split-text.animate .char {
    opacity: 1;
    transform: translateY(0) rotateX(0);
}

/* Staggered delays applied via JS */

/* =============================================
   HERO SECTION
   ============================================= */
.section-hero {
    background: var(--bg-dark);
    perspective: 1000px;
}

.hero-bg {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.gradient-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.4;
    will-change: transform;
}

.orb-1 {
    width: 700px;
    height: 700px;
    background: var(--neon-pink);
    top: -250px;
    right: -150px;
    animation: float1 25s ease-in-out infinite;
}

.orb-2 {
    width: 600px;
    height: 600px;
    background: var(--neon-purple);
    bottom: -200px;
    left: -150px;
    animation: float2 30s ease-in-out infinite;
}

.orb-3 {
    width: 500px;
    height: 500px;
    background: var(--neon-green);
    top: 40%;
    left: 40%;
    animation: float3 20s ease-in-out infinite;
}

@keyframes float1 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    25% { transform: translate(80px, -60px) scale(1.1); }
    50% { transform: translate(-40px, 40px) scale(0.9); }
    75% { transform: translate(40px, 80px) scale(1.05); }
}

@keyframes float2 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(-60px, -80px) scale(1.15); }
    66% { transform: translate(80px, 40px) scale(0.85); }
}

@keyframes float3 {
    0%, 100% { transform: translate(0, 0) scale(1) rotate(0deg); }
    50% { transform: translate(-100px, 60px) scale(1.2) rotate(180deg); }
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-text {
    transform-style: preserve-3d;
}

.hero-title {
    font-size: clamp(48px, 7vw, 90px);
    font-weight: 900;
    line-height: 1.05;
    margin-bottom: 24px;
    perspective: 1000px;
}

.title-line {
    display: block;
    overflow: hidden;
    white-space: nowrap;
}

.title-line .char {
    display: inline-block;
    opacity: 0;
    transform: translateY(120%) rotateX(-80deg);
    transform-origin: center top;
    transition: all 0.8s var(--transition-bounce);
}

.title-line.animate .char {
    opacity: 1;
    transform: translateY(0) rotateX(0);
}

.title-line.highlight {
    font-size: 1.15em;
}

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

.hero-subtitle {
    font-size: 20px;
    color: var(--text-secondary);
    margin-bottom: 32px;
    line-height: 1.7;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s var(--transition-smooth) 0.5s;
}

.hero-subtitle.animate {
    opacity: 1;
    transform: translateY(0);
}

.hero-ctas {
    display: flex;
    gap: 16px;
    margin-bottom: 48px;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s var(--transition-smooth) 0.7s;
}

.hero-ctas.animate {
    opacity: 1;
    transform: translateY(0);
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 16px;
    text-decoration: none;
    transition: all 0.4s var(--transition-bounce);
    cursor: pointer;
    border: none;
    position: relative;
    overflow: hidden;
}

.btn::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.5s ease;
}

.btn:hover::before {
    left: 100%;
}

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

.btn-primary:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 20px 40px rgba(255, 51, 102, 0.4);
}

.btn-secondary {
    background: var(--glass-bg);
    color: white;
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--neon-pink);
    transform: translateY(-4px);
}

.btn-large {
    padding: 20px 48px;
    font-size: 18px;
}

.hero-stats {
    display: flex;
    gap: 32px;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s var(--transition-smooth) 0.9s;
}

.hero-stats.animate {
    opacity: 1;
    transform: translateY(0);
}

.hero-stat {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-secondary);
    font-size: 14px;
}

.hero-stat i {
    color: var(--neon-pink);
    font-size: 16px;
}

/* Hero Phone - 3D Effect */
.hero-phone {
    display: flex;
    justify-content: center;
    perspective: 1000px;
}

.phone-frame {
    position: relative;
    width: 300px;
    border-radius: 45px;
    padding: 14px;
    background: linear-gradient(145deg, #2a2a3a, #1a1a2a);
    box-shadow:
        0 60px 120px rgba(0, 0, 0, 0.5),
        0 0 0 1px rgba(255, 255, 255, 0.1),
        inset 0 0 30px rgba(255, 255, 255, 0.05);
    transform: rotateY(-15deg) rotateX(5deg);
    transform-style: preserve-3d;
    transition: transform 0.6s var(--transition-smooth);
    opacity: 0;
    animation: phoneEntry 1s var(--transition-bounce) 0.3s forwards;
}

@keyframes phoneEntry {
    0% {
        opacity: 0;
        transform: rotateY(-30deg) rotateX(15deg) translateY(100px) scale(0.8);
    }
    100% {
        opacity: 1;
        transform: rotateY(-15deg) rotateX(5deg) translateY(0) scale(1);
    }
}

.phone-frame:hover {
    transform: rotateY(-5deg) rotateX(2deg) translateY(-10px);
}

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

.phone-frame::after {
    content: '';
    position: absolute;
    inset: -2px;
    border-radius: 47px;
    background: var(--gradient-primary);
    z-index: -1;
    opacity: 0.3;
    filter: blur(20px);
}

.phone-screen {
    width: 100%;
    border-radius: 35px;
    display: block;
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: var(--text-secondary);
    font-size: 14px;
    opacity: 0;
    animation: fadeInBounce 1s var(--transition-smooth) 1.2s forwards;
}

@keyframes fadeInBounce {
    0% { opacity: 0; transform: translateX(-50%) translateY(20px); }
    100% { opacity: 1; transform: translateX(-50%) translateY(0); }
}

.scroll-indicator i {
    animation: bounceDown 2s infinite;
}

@keyframes bounceDown {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(10px); }
}

/* =============================================
   FEATURES SECTION - STICKY PHONE
   ============================================= */
.section-features {
    min-height: auto;
    padding: 0;
    overflow: visible !important;
    background: linear-gradient(180deg, var(--bg-dark) 0%, var(--bg-surface) 50%, var(--bg-dark) 100%);
}

.features-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 100vh;
}

.features-phone-wrapper {
    position: sticky;
    top: 50px;
    height: calc(100vh - 50px);
    display: flex;
    align-items: center;
    justify-content: center;
    perspective: 1000px;
    align-self: flex-start;
}

.sticky-phone {
    transform: scale(0.85) rotateY(10deg);
    transition: all 0.6s var(--transition-smooth);
}

.sticky-phone:hover {
    transform: scale(0.88) rotateY(5deg);
}

.sticky-phone .phone-screen {
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.features-list {
    padding: 100px 60px;
    display: flex;
    flex-direction: column;
}

.feature-item {
    display: flex;
    gap: 30px;
    padding: 80px 0;
    border-bottom: 1px solid var(--glass-border);
    opacity: 0.2;
    transform: translateX(60px);
    transition: all 0.7s var(--transition-smooth);
    cursor: default;
}

.feature-item.active {
    opacity: 1;
    transform: translateX(0);
}

.feature-item:hover {
    transform: translateX(10px);
}

.feature-number {
    font-size: 56px;
    font-weight: 900;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    opacity: 0.2;
    line-height: 1;
    transition: all 0.5s var(--transition-smooth);
}

.feature-item.active .feature-number {
    opacity: 1;
    transform: scale(1.1);
}

.feature-content h3 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 12px;
    transition: color 0.3s ease;
}

.feature-item.active .feature-content h3 {
    color: var(--neon-pink);
}

.feature-content p {
    color: var(--text-secondary);
    font-size: 16px;
    line-height: 1.7;
}

/* =============================================
   PROBLEMS SECTION - Staggered Cards
   ============================================= */
.section-problems {
    background: var(--bg-surface);
}

.problems-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    perspective: 1000px;
}

.problem-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.5s var(--transition-bounce);
    transform-style: preserve-3d;
}

.problem-card:hover {
    border-color: var(--neon-pink);
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 30px 60px rgba(255, 51, 102, 0.2);
}

.problem-icon {
    font-size: 56px;
    margin-bottom: 20px;
    display: inline-block;
    animation: iconFloat 3s ease-in-out infinite;
}

@keyframes iconFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

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

.problem-card p {
    color: var(--text-secondary);
    font-size: 15px;
    line-height: 1.6;
}

/* =============================================
   HOW IT WORKS - Animated Steps
   ============================================= */
.section-how {
    background: var(--bg-dark);
}

.steps-container {
    display: flex;
    justify-content: center;
    gap: 80px;
    flex-wrap: wrap;
    position: relative;
}

.steps-container::before {
    content: '';
    position: absolute;
    top: 40px;
    left: 20%;
    right: 20%;
    height: 2px;
    background: var(--gradient-primary);
    opacity: 0.3;
}

.step {
    flex: 1;
    min-width: 280px;
    max-width: 350px;
    text-align: center;
    transition: all 0.5s var(--transition-bounce);
    position: relative;
    z-index: 1;
}

.step-number {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    font-weight: 800;
    margin: 0 auto 24px;
    box-shadow: 0 10px 40px rgba(255, 51, 102, 0.4);
    transition: all 0.4s var(--transition-bounce);
}

.step:hover .step-number {
    transform: scale(1.15) rotate(10deg);
    box-shadow: 0 20px 50px rgba(255, 51, 102, 0.5);
}

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

.step-content p {
    color: var(--text-secondary);
    font-size: 15px;
    line-height: 1.7;
}

/* =============================================
   SCREENSHOTS - Horizontal Scroll
   ============================================= */
.section-screenshots {
    background: var(--bg-surface);
    overflow: hidden;
}

.screenshots-carousel {
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    overflow: hidden;
    padding: 40px 0;
    mask-image: linear-gradient(90deg, transparent, black 10%, black 90%, transparent);
    -webkit-mask-image: linear-gradient(90deg, transparent, black 10%, black 90%, transparent);
}

.screenshots-track {
    display: flex;
    gap: 30px;
    padding: 0 40px;
    animation: scrollCarousel 50s linear infinite;
    width: max-content;
}

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

.screenshots-track:hover {
    animation-play-state: paused;
}

.screenshot-card {
    flex: 0 0 220px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    transition: all 0.4s var(--transition-bounce);
}

.screenshot-card:hover {
    transform: scale(1.08) translateY(-10px);
}

.screenshot-card img {
    width: 220px;
    border-radius: 24px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
    border: 2px solid var(--glass-border);
    transition: all 0.4s ease;
}

.screenshot-card:hover img {
    border-color: var(--neon-pink);
    box-shadow: 0 40px 80px rgba(255, 51, 102, 0.3);
}

.screenshot-card span {
    color: var(--text-secondary);
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* =============================================
   FAQ - Smooth Accordion
   ============================================= */
.section-faq {
    background: var(--bg-dark);
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid var(--glass-border);
    overflow: hidden;
    transition: all 0.3s var(--transition-smooth);
}

.faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 28px 0;
    cursor: pointer;
    transition: all 0.3s ease;
}

.faq-question:hover {
    color: var(--neon-pink);
    padding-left: 10px;
}

.faq-question h3 {
    font-size: 18px;
    font-weight: 600;
}

.faq-question i {
    transition: transform 0.4s var(--transition-bounce);
    font-size: 14px;
}

.faq-item.active .faq-question {
    color: var(--neon-pink);
}

.faq-item.active .faq-question i {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: all 0.5s var(--transition-smooth);
}

.faq-item.active .faq-answer {
    max-height: 200px;
    padding-bottom: 28px;
}

.faq-answer p {
    color: var(--text-secondary);
    line-height: 1.8;
}

/* =============================================
   BETA SECTION
   ============================================= */
.section-beta {
    background: var(--bg-surface);
    position: relative;
    overflow: hidden;
}

.beta-bg {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.beta-bg .orb-1 {
    width: 600px;
    height: 600px;
    top: -250px;
    left: -150px;
}

.beta-bg .orb-2 {
    width: 500px;
    height: 500px;
    bottom: -200px;
    right: -150px;
}

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

.beta-perks {
    display: flex;
    justify-content: center;
    gap: 48px;
    margin-bottom: 48px;
    flex-wrap: wrap;
}

.perk {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--text-secondary);
    font-size: 16px;
}

.perk i {
    color: var(--neon-pink);
    font-size: 20px;
}

.beta-form {
    max-width: 500px;
    margin: 0 auto;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 16px;
}

.beta-form input {
    width: 100%;
    padding: 18px 22px;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 14px;
    color: white;
    font-size: 16px;
    transition: all 0.3s ease;
}

.beta-form input:focus {
    outline: none;
    border-color: var(--neon-pink);
    box-shadow: 0 0 20px rgba(255, 51, 102, 0.2);
}

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

.city-input-wrapper {
    position: relative;
}

.city-suggestions {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--bg-surface);
    border: 1px solid var(--glass-border);
    border-radius: 14px;
    margin-top: 4px;
    display: none;
    z-index: 100;
    max-height: 200px;
    overflow-y: auto;
}

.city-suggestions.show {
    display: block;
}

.city-suggestion {
    padding: 14px 18px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.city-suggestion:hover {
    background: var(--glass-bg);
    color: var(--neon-pink);
}

.beta-form button {
    width: 100%;
    margin-top: 8px;
}

.btn-loading {
    display: none;
}

.btn.loading .btn-text {
    display: none;
}

.btn.loading .btn-loading {
    display: inline;
}

.form-message {
    margin-top: 20px;
    padding: 18px;
    border-radius: 14px;
    display: none;
    font-weight: 500;
}

.form-message.success {
    display: block;
    background: rgba(46, 191, 145, 0.15);
    border: 1px solid var(--neon-green);
    color: var(--neon-green);
}

.form-message.error {
    display: block;
    background: rgba(255, 51, 102, 0.15);
    border: 1px solid var(--neon-pink);
    color: var(--neon-pink);
}

.form-note {
    margin-top: 20px;
    color: var(--text-secondary);
    font-size: 14px;
}

.form-note i {
    margin-right: 8px;
}

/* =============================================
   FOOTER
   ============================================= */
.footer {
    background: var(--bg-dark);
    padding: 80px 40px 40px;
    border-top: 1px solid var(--glass-border);
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 80px;
    margin-bottom: 60px;
}

.footer-logo {
    width: 48px;
    margin-bottom: 16px;
}

.footer-brand p {
    color: var(--text-secondary);
    font-size: 15px;
    line-height: 1.6;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

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

.footer-links a:hover {
    color: var(--neon-pink);
    transform: translateX(5px);
}

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

.social-link {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 18px;
    transition: all 0.4s var(--transition-bounce);
}

.social-link:hover {
    background: var(--neon-pink);
    border-color: var(--neon-pink);
    color: white;
    transform: translateY(-5px) scale(1.1);
}

.footer-bottom {
    text-align: center;
    padding-top: 40px;
    border-top: 1px solid var(--glass-border);
}

.footer-bottom p {
    color: var(--text-secondary);
    font-size: 14px;
}

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 60px;
    }

    .hero-ctas {
        justify-content: center;
    }

    .hero-stats {
        justify-content: center;
    }

    .phone-frame {
        transform: rotateY(0) rotateX(0);
    }

    .phone-frame:hover {
        transform: translateY(-10px);
    }

    .features-container {
        grid-template-columns: 1fr;
    }

    .features-phone-wrapper {
        display: none;
    }

    .features-list {
        padding: 80px 30px;
    }

    .steps-container::before {
        display: none;
    }

    .steps-container {
        flex-direction: column;
        align-items: center;
        gap: 40px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 50px;
    }

    .footer-links {
        flex-direction: row;
        justify-content: center;
        flex-wrap: wrap;
        gap: 20px;
    }

    .footer-social {
        justify-content: center;
    }
}

/* =============================================
   CINEMATIC SECTION ANIMATIONS
   ============================================= */
.section-hidden {
    opacity: 0;
    transform: translateY(60px);
}

.section-visible {
    opacity: 1;
    transform: translateY(0);
    transition: all 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Premium typography enhancements */
.section-title {
    letter-spacing: -0.02em;
    text-shadow: 0 0 80px rgba(255, 51, 102, 0.3);
}

.hero-title {
    letter-spacing: -0.03em;
}

/* Luxurious glow effects */
.btn-primary {
    box-shadow: 0 0 40px rgba(255, 51, 102, 0.4),
                0 8px 32px rgba(0, 0, 0, 0.3);
}

.btn-primary:hover {
    box-shadow: 0 0 60px rgba(255, 51, 102, 0.6),
                0 12px 48px rgba(0, 0, 0, 0.4);
}

/* Elegant section separators */
.section::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
}

.section:last-of-type::after {
    display: none;
}

/* Premium card hover states */
.problem-card,
.step,
.faq-item {
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.problem-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4),
                0 0 40px rgba(255, 51, 102, 0.1);
}

/* Exclusive badge styling */
.highlight {
    position: relative;
}

.highlight::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gradient-primary);
    border-radius: 2px;
    opacity: 0.5;
}

/* Status aura for premium feel */
.hero-phone {
    filter: drop-shadow(0 0 60px rgba(255, 51, 102, 0.3));
}

.phone-frame::before {
    content: '';
    position: absolute;
    inset: -20px;
    background: radial-gradient(ellipse at center, rgba(255, 51, 102, 0.15), transparent 70%);
    z-index: -1;
    border-radius: 60px;
}

@media (max-width: 768px) {
    .section {
        padding: 80px 20px;
    }

    .header {
        padding: 16px 20px;
    }

    .header-nav {
        display: none;
    }

    .dot-nav {
        display: none;
    }

    .hero-title {
        font-size: 36px;
    }

    .hero-ctas {
        flex-direction: column;
        align-items: center;
    }

    .hero-stats {
        flex-direction: column;
        gap: 16px;
    }

    .phone-frame {
        width: 240px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .beta-perks {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }

    .problems-grid {
        grid-template-columns: 1fr;
    }

    .feature-item {
        flex-direction: column;
        gap: 16px;
    }

    .feature-number {
        font-size: 40px;
    }
}
