* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    letter-spacing: inherit;
}

:root {
    --primary: #FF4757;
    --primary-dark: #EE2E45;
    --primary-light: #FF6B7D;
    --secondary: #4ECDC4;
    --dark: #2D3436;
    --light: #F8F9FA;
    --gray: #636E72;
    --success: #00B894;
    --warning: #FDCB6E;
}

[data-theme="dark"] {
    --primary: #FF4757;
    --primary-dark: #FF6B7D;
    --primary-light: #FF8A95;
    --secondary: #4ECDC4;
    --dark: #F8F9FA;
    --light: #1A1A1A;
    --gray: #cfcfcf;
    --success: #00B894;
    --warning: #FDCB6E;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    font-weight: 500;
    color: var(--dark);
    line-height: 1.5;
    letter-spacing: -0.03em;
    overflow-x: hidden;
    background: var(--light);
    transition: background-color 0.3s ease, color 0.3s ease;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
    font-feature-settings: "kern" 1, "liga" 1;
}

/* Platform-specific font weight adjustments */
@media screen and (-webkit-min-device-pixel-ratio: 0) and (min-resolution: .001dpcm) {
    /* Chrome/Android specific */
    body {
        font-weight: 500;
    }

    p, li {
        line-height: 1.4;
    }
    
    h1, h2, h3, h4, h5, h6 {
        font-weight: 700;
    }
    
    .logo {
        font-weight: 900;
    }
}

/* High DPI Android devices */
@media screen and (-webkit-min-device-pixel-ratio: 2) and (max-width: 768px) {
    body {
        font-weight: 500;
    }
    
    p, span, div {
        font-weight: 500;
        letter-spacing: -0.03em;
    }
}

/* Video Background */
.video-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: -2;
}

.video-background video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    object-fit: cover;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(248, 249, 250, 0.50);
    z-index: 1;
}

[data-theme="dark"] .video-overlay {
    background: rgba(26, 26, 26, 0.3);
}

/* Hide video on mobile for performance */
@media (max-width: 768px) {
    .video-background {
        display: none;
    }
}

/* Navigation */
nav {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 1rem 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: background-color 0.3s ease;
}

[data-theme="dark"] nav {
    background: rgba(26, 26, 26, 0.95);
    box-shadow: 0 2px 10px rgba(255, 255, 255, 0.1);
}

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

.logo {
    font-size: 1.5rem;
    font-weight: 800;
    letter-spacing: -0.035em;
    color: var(--primary);
    text-decoration: none;
}

.nav-links {
    display: flex;
    gap: 2rem;
    align-items: center;
    z-index: 1002;
}

/* Dark Mode Toggle */
.theme-toggle {
    position: relative;
    width: 60px;
    height: 30px;
    background: var(--gray);
    border-radius: 30px;
    border: none;
    cursor: pointer;
    overflow: hidden;
    transition: background-color 0.3s ease;
    z-index: 1001;
}

.theme-toggle:hover {
    background: var(--primary);
}

.theme-toggle-slider {
    position: absolute;
    top: 3px;
    left: 3px;
    width: 24px;
    height: 24px;
    background: white;
    border-radius: 50%;
    transition: transform 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

[data-theme="dark"] .theme-toggle-slider {
    transform: translateX(30px);
}

.theme-toggle-slider::before {
    content: '☀️';
    font-size: 14px;
}

[data-theme="dark"] .theme-toggle-slider::before {
    content: '🌙';
}

.nav-links a {
    color: var(--dark);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s;
}

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

.cta-button {
    background: var(--primary);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    display: inline-block;
}

.cta-button:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(255, 71, 87, 0.4);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    margin-top: 70px;
    transition: background 0.3s ease;
}


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

.hero-content h1 {
    font-size: 3rem;
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: -0.04em;
    margin-bottom: 1.5rem;
    color: var(--dark);
}

.hero-content h1 span {
    color: var(--primary);
}

.hero-content p {
    font-size: 1.25rem;
    font-weight: 500;
    color: var(--gray);
    margin-bottom: 2rem;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    margin-bottom: 3rem;
}

.secondary-button {
    background: transparent;
    color: var(--dark);
    padding: 0.75rem 1.5rem;
    border: 2px solid var(--dark);
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    display: inline-block;
}

[data-theme="dark"] .secondary-button {
    color: var(--light);
    border-color: var(--light);
}

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

[data-theme="dark"] .secondary-button:hover {
    background: var(--light);
    color: var(--dark);
}

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

/* App Showcase */
.app-showcase {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
}

.phone-mockup {
    position: relative;
    width: 280px;
    height: 560px;
    background: #1a1a1a;
    border-radius: 35px;
    padding: 8px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.phone-screen {
    position: relative;
    width: 100%;
    height: 100%;
    background: #000;
    border-radius: 27px;
    overflow: hidden;
}

.app-screenshot {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
}

.app-screenshot.active {
    opacity: 1;
}

.screenshot-indicators {
    display: flex;
    gap: 0.5rem;
    justify-content: center;
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 71, 87, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
}

.indicator.active {
    background: var(--primary);
    transform: scale(1.2);
}

.indicator:hover {
    background: var(--primary);
    transform: scale(1.1);
}

/* Features Grid */
.features {
    padding: 5rem 0;
    background: white;
    transition: background-color 0.3s ease;
}

[data-theme="dark"] .features {
    background: #1A1A1A;
}

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

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

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 800;
    letter-spacing: -0.035em;
    margin-bottom: 1rem;
    color: var(--dark);
}

.section-header p {
    font-size: 1.25rem;
    font-weight: 500;
    color: var(--gray);
    max-width: 600px;
    margin: 0 auto;
}

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

.feature-card {
    background: var(--light);
    padding: 2rem;
    border-radius: 15px;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
}

[data-theme="dark"] .feature-card {
    background: #2A2A2A;
    border: 1px solid #333;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--primary-light));
    transform: translateX(-100%);
    transition: transform 0.3s;
}

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

.feature-card:hover::before {
    transform: translateX(0);
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: white;
    box-shadow: 0 5px 15px rgba(255, 71, 87, 0.3);
}

.feature-card h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: var(--dark);
}

.feature-card p {
    color: var(--gray);
    font-weight: 500;
}

/* How It Works */
.how-it-works {
    padding: 5rem 0;
    background: var(--light);
    transition: background-color 0.3s ease;
}

[data-theme="dark"] .how-it-works {
    background: #2A2A2A;
}

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

.step {
    text-align: center;
    position: relative;
}

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 800;
    margin: 0 auto 1.5rem;
    box-shadow: 0 5px 15px rgba(255, 71, 87, 0.3);
}

.step h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: var(--dark);
}

.step p {
    color: var(--gray);
    font-weight: 500;
}

/* Difficulty Levels */
.difficulty-levels {
    padding: 5rem 0;
    background: white;
    transition: background-color 0.3s ease;
}

[data-theme="dark"] .difficulty-levels {
    background: #1A1A1A;
}

.difficulty-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-top: 3rem;
}

.difficulty-card {
    background: var(--light);
    padding: 1.5rem;
    border-radius: 10px;
    text-align: center;
    transition: all 0.3s;
    cursor: pointer;
}

[data-theme="dark"] .difficulty-card {
    background: #2A2A2A;
    border: 1px solid #333;
}

.difficulty-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.difficulty-card h4 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: var(--dark);
}

.difficulty-card p {
    font-size: 0.9rem;
    color: var(--gray);
}

.difficulty-card.recommended {
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    color: white;
    box-shadow: 0 10px 25px rgba(255, 71, 87, 0.3);
}

.difficulty-card.recommended h4,
.difficulty-card.recommended p {
    color: white;
}

/* CTA Section */
.cta-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="40" height="40" viewBox="0 0 40 40" xmlns="http://www.w3.org/2000/svg"><g fill="none" fill-rule="evenodd"><g fill="%23ffffff" fill-opacity="0.05"><path d="M0 40L40 0H20L0 20M40 40V20L20 40"/></g></g></svg>');
    background-size: 40px 40px;
}

.cta-section h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

.cta-section p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.cta-section .cta-button {
    background: white;
    color: var(--primary);
    font-size: 1.1rem;
    padding: 1rem 2rem;
}

.cta-section .cta-button:hover {
    background: var(--light);
}

/* Footer */
footer {
    background: var(--dark);
    color: white;
    padding: 3rem 0;
    text-align: center;
    transition: background-color 0.3s ease;
}

[data-theme="dark"] footer {
    background: #0A0A0A;
    border-top: 1px solid #333;
}

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

.footer-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-links a {
    color: white;
    text-decoration: none;
    opacity: 0.8;
    transition: opacity 0.3s;
}

.footer-links a:hover {
    opacity: 1;
}

/* Responsive */
@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    
    .mobile-theme-toggle {
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
        display: flex;
        flex-direction: column;
    }
    
    .hero-content {
        order: 1;
    }
    
    .hero-video {
        order: 2;
    }

    .hero-content h1 {
        font-size: 2rem;
    }

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

    .section-header h2 {
        font-size: 2rem;
    }
}

/* Mobile Dark Mode Toggle */
.mobile-theme-toggle {
    display: none;
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    border-radius: 50%;
    border: none;
    cursor: pointer;
    box-shadow: 0 5px 20px rgba(255, 71, 87, 0.4);
    z-index: 999;
    transition: all 0.3s ease;
    color: white;
}

.mobile-theme-toggle:hover {
    transform: scale(1.1);
}

/* Beta Sign-up Section */
.beta-signup {
    padding: 5rem 0;
    background: var(--light);
    transition: background-color 0.3s ease;
}

[data-theme="dark"] .beta-signup {
    background: #2A2A2A;
}

.signup-header {
    text-align: center;
    margin-bottom: 3rem;
}

.signup-header h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    color: var(--dark);
}

.beta-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-top: 2rem;
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary);
}

.stat-label {
    display: block;
    font-size: 0.9rem;
    color: var(--gray);
    margin-top: 0.5rem;
}

.signup-form-container {
    max-width: 600px;
    margin: 0 auto;
    background: white;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

[data-theme="dark"] .signup-form-container {
    background: #1A1A1A;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.beta-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    position: relative;
    animation: slideInUp 0.6s ease-out forwards;
    opacity: 0;
}

.form-group:nth-child(1) { animation-delay: 0.1s; }
.form-group:nth-child(2) { animation-delay: 0.2s; }
.form-group:nth-child(3) { animation-delay: 0.3s; }
.form-group:nth-child(4) { animation-delay: 0.4s; }
.form-group:nth-child(5) { animation-delay: 0.5s; }

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

.form-group input,
.form-group select {
    width: 100%;
    padding: 1rem;
    border: 2px solid #E0E0E0;
    border-radius: 10px;
    font-size: 1rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    background: var(--light);
    color: var(--dark);
}

[data-theme="dark"] .form-group input,
[data-theme="dark"] .form-group select {
    border-color: #444;
    background: #2A2A2A;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(255, 71, 87, 0.1);
    transform: translateY(-2px);
}

.form-group:hover input:not(:focus),
.form-group:hover select:not(:focus) {
    border-color: var(--primary-light);
    transform: translateY(-1px);
}

.form-group input:valid {
    border-color: var(--success);
}

.form-group input:invalid:not(:placeholder-shown) {
    border-color: var(--primary);
    animation: shake 0.3s ease-in-out;
}

.form-group input.error,
.form-group select.error,
.form-group textarea.error {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(255, 71, 87, 0.1);
}

.form-group input.success,
.form-group select.success,
.form-group textarea.success {
    border-color: var(--success);
    box-shadow: 0 0 0 3px rgba(0, 184, 148, 0.1);
}

.field-error {
    color: var(--primary);
    font-size: 0.875rem;
    margin-top: 0.25rem;
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.field-error::before {
    content: '⚠️';
    font-size: 0.75rem;
}

.character-count {
    text-align: right;
    font-size: 0.875rem;
    color: var(--gray);
    margin-top: 0.25rem;
    transition: color 0.3s ease;
}

.character-count.warning {
    color: var(--warning);
}

.character-count.error {
    color: var(--primary);
}

@keyframes shake {
    0%, 100% { transform: translateX(0); }
    25% { transform: translateX(-5px); }
    75% { transform: translateX(5px); }
}

.form-group label {
    position: absolute;
    top: -10px;
    left: 12px;
    background: white;
    padding: 0 8px;
    font-size: 0.875rem;
    color: var(--gray);
    transition: all 0.3s ease;
}

[data-theme="dark"] .form-group label {
    background: #1A1A1A;
}

.form-help {
    display: block;
    font-size: 0.875rem;
    color: var(--gray);
    margin-top: 0.25rem;
    font-style: italic;
}

.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid #E0E0E0;
    border-radius: 10px;
    font-size: 1rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    background: var(--light);
    color: var(--dark);
    resize: vertical;
    min-height: 80px;
    font-family: inherit;
}

[data-theme="dark"] .form-group textarea {
    border-color: #444;
    background: #2A2A2A;
}

.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(255, 71, 87, 0.1);
    transform: translateY(-2px);
}

.form-group:hover textarea:not(:focus) {
    border-color: var(--primary-light);
    transform: translateY(-1px);
}

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

.form-benefits {
    background: var(--light);
    padding: 1.5rem;
    border-radius: 10px;
    margin: 1rem 0;
    animation: fadeInScale 0.6s ease-out 0.7s forwards;
    opacity: 0;
    transform: scale(0.95);
}

@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: scale(0.95);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

[data-theme="dark"] .form-benefits {
    background: #2A2A2A;
}

.form-benefits p {
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--dark);
}

.form-benefits ul {
    list-style: none;
    padding: 0;
}

.form-benefits li {
    color: var(--gray);
    margin: 0.5rem 0;
}

.submit-button {
    background: var(--primary);
    color: white;
    border: none;
    padding: 1.25rem 2rem;
    border-radius: 30px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    animation: fadeInScale 0.6s ease-out 0.8s forwards;
    opacity: 0;
    transform: scale(0.95);
}

.submit-button:hover:not(:disabled) {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(255, 71, 87, 0.4);
}

.submit-button:active {
    transform: translateY(0);
}

.submit-button:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

.submit-button.loading {
    position: relative;
    color: transparent;
}

.submit-button.loading::after {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    top: 50%;
    left: 50%;
    margin-left: -10px;
    margin-top: -10px;
    border: 2px solid transparent;
    border-top: 2px solid white;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.form-disclaimer {
    text-align: left;
    font-size: 0.875rem;
    color: var(--gray);
    margin-top: 1rem;
    background: var(--light);
    padding: 1rem;
    border-radius: 10px;
    border-left: 3px solid var(--success);
}

[data-theme="dark"] .form-disclaimer {
    background: #2A2A2A;
    border: 1px solid #333;
    border-left: 3px solid var(--success);
}

.form-disclaimer p {
    margin-bottom: 0.5rem;
}

.checkbox-container {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    margin-top: 1rem;
    cursor: pointer;
    font-size: 0.875rem;
    line-height: 1.4;
}

.checkbox-container input[type="checkbox"] {
    margin: 0;
    width: 18px;
    height: 18px;
    accent-color: var(--primary);
    flex-shrink: 0;
    margin-top: 2px;
}

.checkbox-container a {
    color: var(--primary);
    text-decoration: none;
}

.checkbox-container a:hover {
    text-decoration: underline;
}

.signup-success {
    text-align: center;
    padding: 3rem;
}

.success-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
    display: flex;
    justify-content: center;
}

.discord-link {
    display: inline-block;
    margin-top: 1rem;
    background: #5865F2;
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 30px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.discord-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(88, 101, 242, 0.3);
}

.beta-process {
    margin-top: 4rem;
    text-align: center;
}

.beta-process h3 {
    font-size: 1.75rem;
    margin-bottom: 2rem;
    color: var(--dark);
}

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

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

.step-icon {
    font-size: 2.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    color: var(--primary);
}

.process-step h4 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: var(--dark);
}

.process-step p {
    font-size: 0.9rem;
    color: var(--gray);
}

@media (max-width: 768px) {
    .beta-stats {
        gap: 1.5rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .signup-form-container {
        padding: 2rem;
    }
}

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

.animate-on-scroll {
    opacity: 0;
    animation: fadeInUp 0.8s ease forwards;
}

/* Unique Elements */
.badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--success), #00D68F);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1rem;
    box-shadow: 0 3px 10px rgba(0, 184, 148, 0.3);
}

.testimonial {
    background: var(--light);
    padding: 2rem;
    border-radius: 15px;
    margin: 2rem 0;
    border-left: 4px solid var(--primary);
    transition: background-color 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

[data-theme="dark"] .testimonial {
    background: #2A2A2A;
    border: 1px solid #333;
    border-left: 4px solid var(--primary);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.testimonial p {
    font-style: italic;
    margin-bottom: 1rem;
    color: var(--dark);
}

.testimonial cite {
    color: var(--gray);
    font-size: 0.9rem;
}

/* Legal Pages */
.legal-page {
    min-height: 100vh;
    padding: 120px 0 5rem;
    background: var(--light);
    transition: background-color 0.3s ease;
}

[data-theme="dark"] .legal-page {
    background: #1A1A1A;
}

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

.legal-header h1 {
    font-size: 3rem;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 1rem;
}

.legal-header .subtitle,
.legal-header .last-updated {
    font-size: 1.1rem;
    color: var(--gray);
}

.legal-content {
    max-width: 800px;
    margin: 0 auto;
}

.legal-section {
    margin-bottom: 3rem;
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

[data-theme="dark"] .legal-section {
    background: #2A2A2A;
    border: 1px solid #333;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.legal-section h2 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 1rem;
    border-bottom: 2px solid var(--primary);
    padding-bottom: 0.5rem;
}

.legal-section p {
    color: var(--dark);
    line-height: 1.5;
    margin-bottom: 1rem;
}

.legal-section ul {
    margin: 1rem 0;
    padding-left: 1.5rem;
}

.legal-section li {
    color: var(--dark);
    line-height: 1.5;
    margin-bottom: 0.5rem;
}

.legal-section a {
    color: var(--primary);
    text-decoration: none;
    transition: color 0.3s ease;
}

.legal-section a:hover {
    color: var(--primary-dark);
    text-decoration: underline;
}

.company-info,
.contact-info {
    background: var(--light);
    padding: 1.5rem;
    border-radius: 10px;
    border-left: 4px solid var(--primary);
    margin: 1rem 0;
}

[data-theme="dark"] .company-info,
[data-theme="dark"] .contact-info {
    background: #1A1A1A;
    border: 1px solid #333;
    border-left: 4px solid var(--primary);
}

@media (max-width: 768px) {
    .legal-page {
        padding: 100px 0 3rem;
    }
    
    .legal-header h1 {
        font-size: 2rem;
    }
    
    .legal-section {
        padding: 1.5rem;
        margin-bottom: 2rem;
    }
    
    .legal-content {
        padding: 0 1rem;
    }
}

/* App Preview Section */
.app-preview {
    padding: 5rem 0;
    background: white;
    transition: background-color 0.3s ease;
}

[data-theme="dark"] .app-preview {
    background: #1A1A1A;
}

.app-journey {
    display: flex;
    flex-direction: column;
    gap: 4rem;
    margin-top: 3rem;
}

.journey-step {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.journey-step.reverse {
    direction: rtl;
}

.journey-step.reverse > * {
    direction: ltr;
}

.step-phone {
    display: flex;
    justify-content: center;
    align-items: center;
}

.step-phone img {
    width: 200px;
    height: auto;
    border-radius: 25px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
}

.step-phone img:hover {
    transform: scale(1.05);
}

.step-content h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 1rem;
}

.step-content p {
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--gray);
    line-height: 1.5;
}

@media (max-width: 768px) {
    .app-journey {
        gap: 3rem;
    }
    
    .journey-step {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 1.5rem;
        display: flex;
        flex-direction: column;
    }
    
    .journey-step.reverse {
        direction: ltr;
        flex-direction: column;
    }
    
    /* Ensure content appears first on mobile */
    .journey-step .step-content {
        order: 1;
    }
    
    .journey-step .step-phone {
        order: 2;
    }
    
    .step-phone img {
        width: 160px;
    }
    
    .phone-mockup {
        width: 200px;
        height: 400px;
    }
}

/* Cookie Consent Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--dark);
    color: white;
    z-index: 1001;
    padding: 1rem 0;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.2);
    animation: slideUp 0.3s ease-out;
}

[data-theme="dark"] .cookie-banner {
    background: #0A0A0A;
    border-top: 1px solid #333;
}

@keyframes slideUp {
    from {
        transform: translateY(100%);
    }
    to {
        transform: translateY(0);
    }
}

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

.cookie-text h4 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: white;
}

.cookie-text p {
    font-size: 0.875rem;
    line-height: 1.4;
    opacity: 0.9;
    margin: 0;
}

.cookie-buttons {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-shrink: 0;
}

.cookie-btn {
    padding: 0.5rem 1rem;
    border-radius: 5px;
    border: none;
    font-size: 0.875rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

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

.cookie-btn.accept:hover {
    background: var(--primary-dark);
}

.cookie-btn.essential {
    background: transparent;
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.cookie-btn.essential:hover {
    background: rgba(255, 255, 255, 0.1);
}

.cookie-link {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 0.875rem;
    white-space: nowrap;
}

.cookie-link:hover {
    color: white;
    text-decoration: underline;
}

@media (max-width: 768px) {
    .cookie-content {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .cookie-buttons {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .cookie-text {
        text-align: center;
    }
}