/* ========================================
   NowOrNever - Main Stylesheet
   Modern, Gen Z-friendly, Mobile-first
   ======================================== */

/* CSS Variables */
:root {
    --coral-red: #FF6B6B;
    --electric-blue: #0066FF;
    --deep-black: #1A1A1A;
    --pure-white: #FFFFFF;
    --gray-100: #F8F9FA;
    --gray-200: #E9ECEF;
    --gray-300: #DEE2E6;
    --gray-700: #495057;
    --gray-800: #343A40;
    --gray-900: #212529;
    
    --gradient-primary: linear-gradient(135deg, var(--coral-red) 0%, #FF8787 100%);
    --gradient-secondary: linear-gradient(135deg, var(--electric-blue) 0%, #3399FF 100%);
    --gradient-dark: linear-gradient(135deg, var(--deep-black) 0%, var(--gray-900) 100%);
    
    --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    
    --transition-fast: 0.2s ease;
    --transition-smooth: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-bounce: 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    
    --shadow-sm: 0 2px 4px rgba(0,0,0,0.1);
    --shadow-md: 0 4px 6px rgba(0,0,0,0.12);
    --shadow-lg: 0 10px 30px rgba(0,0,0,0.15);
    --shadow-xl: 0 20px 50px rgba(0,0,0,0.2);
    
    --border-radius: 12px;
    --border-radius-sm: 8px;
    --border-radius-lg: 16px;
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-primary);
    color: var(--deep-black);
    background: var(--pure-white);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-smooth);
}

button {
    border: none;
    cursor: pointer;
    font-family: inherit;
    transition: var(--transition-smooth);
}

ul {
    list-style: none;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Section */
.section {
    padding: 100px 0;
}

.section-dark {
    background: var(--gradient-dark);
    color: var(--pure-white);
}

.section-title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 900;
    margin-bottom: 16px;
    text-align: center;
    line-height: 1.1;
}

.section-subtitle {
    font-size: clamp(1rem, 2.5vw, 1.25rem);
    text-align: center;
    color: var(--gray-700);
    margin-bottom: 60px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.section-dark .section-subtitle {
    color: rgba(255,255,255,0.8);
}

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

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 16px 0;
    transition: var(--transition-smooth);
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.navbar.scrolled {
    padding: 12px 0;
    box-shadow: var(--shadow-md);
}

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

.logo {
    height: 40px;
    transition: var(--transition-smooth);
}

.navbar.scrolled .logo {
    height: 36px;
}

/* Text Logo Styles */
.logo-text {
    font-size: 28px;
    font-weight: 900;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin: 0;
    transition: var(--transition-smooth);
    cursor: pointer;
}

.navbar.scrolled .logo-text {
    font-size: 24px;
}

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

.nav-link {
    font-weight: 500;
    color: var(--gray-800);
    position: relative;
    padding: 8px 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    transition: var(--transition-smooth);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-btn {
    margin-left: 16px;
}

.mobile-menu-btn {
    display: none;
    background: none;
    font-size: 24px;
    color: var(--deep-black);
    padding: 8px;
}

/* Buttons */
.btn {
    padding: 14px 28px;
    border-radius: var(--border-radius);
    font-weight: 600;
    font-size: 16px;
    transition: var(--transition-smooth);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: var(--gradient-primary);
    color: var(--pure-white);
    box-shadow: 0 4px 15px rgba(255, 107, 107, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 107, 107, 0.4);
}

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

.btn-secondary:hover {
    background: var(--pure-white);
    color: var(--deep-black);
}

.btn-hero {
    padding: 18px 36px;
    font-size: 18px;
    border-radius: var(--border-radius-lg);
}

.btn-large {
    padding: 16px 32px;
    font-size: 18px;
}

.btn-loading {
    display: none;
}

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

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

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background: var(--gradient-dark);
    color: var(--pure-white);
    padding-top: 100px;
    overflow: hidden;
}

.hero-bg-animation {
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(255, 107, 107, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(0, 102, 255, 0.1) 0%, transparent 50%);
    animation: bgPulse 10s ease-in-out infinite;
}

@keyframes bgPulse {
    0%, 100% { opacity: 0.5; transform: scale(1); }
    50% { opacity: 0.8; transform: scale(1.1); }
}

.hero-content {
    text-align: center;
    position: relative;
    z-index: 1;
    max-width: 900px;
    margin: 0 auto;
}

.animated-logo {
    width: 420px;
    height: 320px;
    margin: 0 auto 60px;
    cursor: pointer;
    transition: transform 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.hero-svg {
    width: 100%;
    height: 100%;
}

/* Two people animation - they move towards center on hover */
.person {
    transition: transform 0.5s ease, opacity 0.3s ease;
}

.person-1 {
    animation: personFloat1 3s ease-in-out infinite;
}

.person-2 {
    animation: personFloat2 3s ease-in-out infinite;
}

@keyframes personFloat1 {
    0%, 100% { transform: translate(0, 0); opacity: 0.8; }
    50% { transform: translate(5px, -3px); opacity: 1; }
}

@keyframes personFloat2 {
    0%, 100% { transform: translate(0, 0); opacity: 0.8; }
    50% { transform: translate(-5px, -3px); opacity: 1; }
}

/* Stopwatch circle animation */
.stopwatch-circle {
    animation: circleGlow 3s ease-in-out infinite;
    transform-origin: center;
}

@keyframes circleGlow {
    0%, 100% { 
        stroke-width: 5; 
        opacity: 0.95;
    }
    50% { 
        stroke-width: 6; 
        opacity: 1;
    }
}

/* Single timer button animation */
.timer-button {
    animation: buttonPulse 2s ease-in-out infinite;
    transform-origin: center;
}

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

/* Lightning bolt - electric pulse */
.lightning-bolt-center {
    animation: lightningPulse 2s ease-in-out infinite;
    transform-origin: center;
}

@keyframes lightningPulse {
    0%, 100% { 
        opacity: 1; 
        transform: scale(1);
    }
    25% { 
        opacity: 0.7; 
        transform: scale(0.95);
    }
    50% { 
        opacity: 1; 
        transform: scale(1.08);
    }
    75% { 
        opacity: 0.85; 
        transform: scale(0.98);
    }
}

/* HOVER EFFECTS - Two people meet and create love! */
.animated-logo:hover .person-1 {
    animation: meetingMove1 1s ease-in-out forwards;
}

.animated-logo:hover .person-2 {
    animation: meetingMove2 1s ease-in-out forwards;
}

@keyframes meetingMove1 {
    0% { transform: translate(0, 0); opacity: 0.8; }
    100% { transform: translate(35px, 0); opacity: 1; }
}

@keyframes meetingMove2 {
    0% { transform: translate(0, 0); opacity: 0.8; }
    100% { transform: translate(-35px, 0); opacity: 1; }
}

/* Connection line appears */
.animated-logo:hover .connection-line {
    animation: lineAppear 0.8s ease-out forwards;
}

@keyframes lineAppear {
    0% { opacity: 0; stroke-dashoffset: 100; }
    100% { opacity: 1; stroke-dashoffset: 0; }
}

/* Stopwatch energizes */
.animated-logo:hover .stopwatch-circle {
    animation: circleEnergize 0.6s ease-in-out forwards;
    stroke: #FF6B6B;
}

@keyframes circleEnergize {
    0% { stroke-width: 5; transform: scale(1) rotate(0deg); }
    50% { stroke-width: 7; transform: scale(1.1) rotate(180deg); }
    100% { stroke-width: 6; transform: scale(1.05) rotate(360deg); }
}

/* Lightning intensifies */
.animated-logo:hover .lightning-bolt-center {
    animation: lightningStrike 0.4s ease-in-out infinite;
}

@keyframes lightningStrike {
    0%, 100% { 
        opacity: 1; 
        transform: scale(1);
        filter: drop-shadow(0 0 15px rgba(255, 107, 107, 1));
    }
    50% { 
        opacity: 0.8; 
        transform: scale(1.15) rotate(5deg);
        filter: drop-shadow(0 0 25px rgba(255, 107, 107, 1));
    }
}

/* Timer button gets excited */
.animated-logo:hover .timer-button {
    fill: #FF6B6B;
    animation: buttonExcited 0.3s ease-in-out infinite;
}

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

/* LOVE HEART APPEARS! */
.animated-logo:hover .love-heart {
    animation: heartAppear 1s ease-out forwards;
}

@keyframes heartAppear {
    0% { 
        opacity: 0; 
        transform: scale(0) translateY(20px);
    }
    60% { 
        opacity: 1; 
        transform: scale(1.2) translateY(-10px);
    }
    100% { 
        opacity: 1; 
        transform: scale(1) translateY(-5px);
    }
}

.love-glow {
    animation: glowPulse 1.5s ease-in-out infinite;
}

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

.heart-shape {
    animation: heartBeat 1s ease-in-out infinite;
    transform-origin: center;
}

@keyframes heartBeat {
    0%, 100% { transform: scale(1); }
    30% { transform: scale(1.1); }
    60% { transform: scale(0.95); }
}

/* Click effect - explosion of love */
.animated-logo.clicked .love-heart {
    animation: loveExplosion 0.8s ease-out forwards;
}

@keyframes loveExplosion {
    0% { opacity: 1; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.5); }
    100% { opacity: 0; transform: scale(2); }
}

.hero-title {
    font-size: clamp(2.5rem, 8vw, 5rem);
    font-weight: 900;
    margin-bottom: 24px;
    line-height: 1.1;
}

.hero-subtitle {
    font-size: clamp(1.25rem, 3vw, 2rem);
    margin-bottom: 16px;
    font-weight: 600;
}

.hero-description {
    font-size: clamp(1rem, 2vw, 1.25rem);
    color: rgba(255,255,255,0.9);
    margin-bottom: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

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

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

.store-badge {
    height: 50px;
    opacity: 0.6;
    filter: grayscale(1);
    transition: var(--transition-smooth);
}

.store-badge:hover {
    opacity: 0.8;
}

.coming-soon-label {
    color: var(--coral-red);
    font-weight: 600;
    font-size: 14px;
}

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 24px;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
    40% { transform: translateX(-50%) translateY(-10px); }
    60% { transform: translateX(-50%) translateY(-5px); }
}

/* Social Proof */
.social-proof {
    background: var(--pure-white);
    padding: 40px 0;
    border-bottom: 1px solid var(--gray-200);
}

.proof-card {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
    text-align: center;
}

.proof-card i {
    color: var(--coral-red);
    font-size: 28px;
}

.proof-card p {
    font-size: 18px;
    color: var(--gray-800);
}

.proof-card strong {
    color: var(--coral-red);
}

.proof-card span {
    display: block;
    font-size: 14px;
    color: var(--gray-700);
}

/* Steps Grid */
.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.step-card {
    background: var(--pure-white);
    padding: 40px 32px;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-lg);
    position: relative;
    transition: var(--transition-smooth);
}

.step-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.step-number {
    position: absolute;
    top: -20px;
    left: 32px;
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    color: var(--pure-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 900;
    box-shadow: var(--shadow-md);
}

.step-icon {
    font-size: 48px;
    color: var(--electric-blue);
    margin-bottom: 24px;
}

.step-card h3 {
    font-size: 24px;
    margin-bottom: 12px;
    color: var(--deep-black);
}

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

/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 32px;
    margin-top: 60px;
}

.feature-card {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: var(--border-radius-lg);
    padding: 40px 32px;
    text-align: center;
    transition: var(--transition-smooth);
}

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

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

.feature-card h3 {
    font-size: 22px;
    margin-bottom: 12px;
}

.feature-card p {
    color: rgba(255,255,255,0.8);
    line-height: 1.7;
}

/* Stats Grid */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.stat-card {
    text-align: center;
    padding: 32px;
    background: var(--gray-100);
    border-radius: var(--border-radius-lg);
    transition: var(--transition-smooth);
}

.stat-card:hover {
    background: var(--pure-white);
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
}

.stat-number {
    font-size: 64px;
    font-weight: 900;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 8px;
    line-height: 1;
}

.stat-label {
    font-size: 18px;
    font-weight: 600;
    color: var(--deep-black);
    margin-bottom: 8px;
}

.stat-description {
    font-size: 14px;
    color: var(--gray-700);
}

/* Testimonials */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
    margin-top: 60px;
}

.testimonial-card {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: var(--border-radius-lg);
    padding: 32px;
    transition: var(--transition-smooth);
}

.testimonial-card:hover {
    background: rgba(255,255,255,0.1);
    transform: translateY(-4px);
}

.testimonial-stars {
    color: #FFD700;
    font-size: 18px;
    margin-bottom: 16px;
}

.testimonial-text {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 24px;
    color: rgba(255,255,255,0.9);
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 16px;
}

.testimonial-author img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

.testimonial-author strong {
    display: block;
    font-size: 16px;
    margin-bottom: 4px;
}

.testimonial-author span {
    font-size: 14px;
    color: rgba(255,255,255,0.7);
}

/* Event Map */
.map-container {
    position: relative;
    max-width: 600px;
    margin: 0 auto 40px;
    padding: 40px;
    background: var(--gray-100);
    border-radius: var(--border-radius-lg);
}

.map-placeholder {
    position: relative;
}

.india-map {
    width: 100%;
    height: auto;
    opacity: 0.3;
}

.map-marker {
    position: absolute;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--coral-red);
    font-size: 24px;
    cursor: pointer;
    z-index: 2;
    animation: markerPulse 2s ease-in-out infinite;
}

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

.marker-pulse {
    position: absolute;
    width: 100%;
    height: 100%;
    background: var(--coral-red);
    border-radius: 50%;
    opacity: 0.3;
    animation: pulse 2s ease-out infinite;
}

@keyframes pulse {
    0% { transform: scale(0.8); opacity: 0.8; }
    100% { transform: scale(2.5); opacity: 0; }
}

.event-types {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.event-type-badge {
    padding: 12px 24px;
    background: var(--pure-white);
    border-radius: 50px;
    font-weight: 600;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-smooth);
}

.event-type-badge:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

/* Waitlist Section */
.waitlist {
    background: var(--gradient-primary);
    text-align: center;
}

.waitlist-form {
    max-width: 600px;
    margin: 0 auto;
}

.form-row {
    display: flex;
    gap: 16px;
    margin-bottom: 16px;
}

.form-input {
    flex: 1;
    padding: 18px 24px;
    border: none;
    border-radius: var(--border-radius);
    font-size: 16px;
    background: var(--pure-white);
    color: var(--deep-black);
}

.form-input:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(255,255,255,0.3);
}

.form-note {
    font-size: 14px;
    color: rgba(255,255,255,0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.form-success,
.form-error {
    display: none;
    padding: 16px;
    border-radius: var(--border-radius);
    margin-top: 16px;
}

.form-success {
    background: rgba(76, 175, 80, 0.2);
    border: 1px solid rgba(76, 175, 80, 0.5);
}

.form-error {
    background: rgba(244, 67, 54, 0.2);
    border: 1px solid rgba(244, 67, 54, 0.5);
}

.form-success.show,
.form-error.show {
    display: block;
    animation: slideIn 0.3s ease;
}

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

/* Footer */
.footer {
    background: var(--deep-black);
    color: var(--pure-white);
    padding: 60px 0 24px;
}

.footer-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 40px;
    margin-bottom: 40px;
}

@media (max-width: 1024px) {
    .footer-content {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 32px;
        text-align: center;
    }
}

.footer-logo {
    height: 40px;
    margin-bottom: 16px;
}

.footer-logo-text {
    font-size: 32px;
    font-weight: 900;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin: 0 0 16px 0;
}

.footer-tagline {
    color: rgba(255,255,255,0.7);
    margin-bottom: 24px;
}

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

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    transition: var(--transition-smooth);
}

.social-links a:hover {
    background: var(--coral-red);
    transform: translateY(-2px);
}

.footer-column h4 {
    font-size: 18px;
    margin-bottom: 16px;
    color: var(--coral-red);
}

.footer-column ul li {
    margin-bottom: 12px;
}

.footer-column a {
    word-break: break-word;
    display: inline-block;
}

.footer-column a:hover {
    color: var(--coral-red);
    padding-left: 4px;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 24px;
    text-align: center;
    color: rgba(255,255,255,0.6);
}

.footer-bottom i {
    color: var(--coral-red);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .animated-logo {
        width: 360px;
        height: 270px;
    }
}

@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        background: var(--pure-white);
        flex-direction: column;
        padding: 24px;
        box-shadow: var(--shadow-lg);
        transform: translateY(-100%);
        opacity: 0;
        pointer-events: none;
        transition: var(--transition-smooth);
    }
    
    .nav-links.active {
        transform: translateY(0);
        opacity: 1;
        pointer-events: all;
    }
    
    .mobile-menu-btn {
        display: block;
    }
    
    .hero {
        min-height: auto;
        padding: 120px 0 60px;
    }
    
    .animated-logo {
        width: 300px;
        height: 225px;
    }
    
    .hero-cta {
        flex-direction: column;
    }
    
    .btn-hero {
        width: 100%;
    }
    
    .form-row {
        flex-direction: column;
    }
    
    .section {
        padding: 60px 0;
    }
    
    .steps-grid,
    .features-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .stats-grid {
        grid-template-columns: 1fr;
    }
}

/* Loading Animation */
.loading-spinner {
    width: 40px;
    height: 40px;
    border: 4px solid rgba(255,255,255,0.3);
    border-top-color: var(--pure-white);
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

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

/* Utility Classes */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }
.mb-small { margin-bottom: 16px; }
.mb-medium { margin-bottom: 32px; }
.mb-large { margin-bottom: 64px; }
.mt-small { margin-top: 16px; }
.mt-medium { margin-top: 32px; }
.mt-large { margin-top: 64px; }

/* AOS Animation Overrides */
[data-aos] {
    pointer-events: auto;
}

[data-aos="fade-up"] {
    transform: translateY(50px);
    opacity: 0;
}

[data-aos="fade-up"].aos-animate {
    transform: translateY(0);
    opacity: 1;
}

[data-aos="zoom-in"] {
    transform: scale(0.9);
    opacity: 0;
}

[data-aos="zoom-in"].aos-animate {
    transform: scale(1);
    opacity: 1;
}