:root {
    --primary-gradient: linear-gradient(135deg, #28a745 0%, #20c997 100%);
    --secondary-gradient: linear-gradient(135deg, #34ce57 0%, #28a745 100%);
    --accent-gradient: linear-gradient(135deg, #28a745 0%, #48d163 100%);
    --dark-bg: #0a0a0f;
    --dark-surface: rgba(18, 18, 28, 0.8);
    --glass-bg: rgba(255, 255, 255, 0.05);
    --glass-border: rgba(255, 255, 255, 0.1);
    --text-primary: #ffffff;
    --text-secondary: rgba(255, 255, 255, 0.7);
    --text-muted: rgba(255, 255, 255, 0.5);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background: var(--dark-bg);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(10, 10, 15, 0.8);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border-bottom: 1px solid var(--glass-border);
    padding: 16px 0;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 24px;
    font-weight: 700;
}

.logo-icon {
    width: 32px;
    height: 32px;
    object-fit: contain;
}

.logo-text {
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-links a:hover {
    color: var(--text-primary);
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-gradient);
    transition: width 0.3s ease;
}

.nav-links a:hover::after {
    width: 100%;
}

.btn-download-nav {
    background: var(--primary-gradient);
    padding: 10px 24px;
    border-radius: 12px;
    color: var(--text-primary) !important;
}

.btn-download-nav::after {
    display: none;
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 80px 0 80px;
    overflow: hidden;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 400px;
    background: linear-gradient(to bottom, transparent 0%, var(--dark-bg) 100%);
    z-index: 1;
    pointer-events: none;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
    overflow: hidden;
}

.gradient-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.5;
    animation: float 20s ease-in-out infinite;
}

.orb-1 {
    width: 600px;
    height: 600px;
    background: var(--primary-gradient);
    top: -200px;
    left: -200px;
    animation-delay: 0s;
}

.orb-2 {
    width: 500px;
    height: 500px;
    background: var(--secondary-gradient);
    bottom: -250px;
    right: -200px;
    opacity: 0.3;
    animation-delay: 7s;
}

.orb-3 {
    width: 400px;
    height: 400px;
    background: var(--accent-gradient);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation-delay: 14s;
}

@keyframes float {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    33% {
        transform: translate(30px, -30px) scale(1.1);
    }
    66% {
        transform: translate(-20px, 20px) scale(0.9);
    }
}

.hero .container {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: visible;
}

.hero-content {
    animation: fadeInUp 1s ease-out;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    padding: 8px 16px;
    border-radius: 50px;
    margin-bottom: 24px;
    font-size: 14px;
    color: var(--text-secondary);
    animation: fadeInUp 1s ease-out 0.3s both;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hero-badge:hover {
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 8px 24px rgba(40, 167, 69, 0.2);
    border-color: rgba(40, 167, 69, 0.3);
}

.badge-icon {
    font-size: 18px;
}

.hero-title {
    font-size: 56px;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 24px;
    letter-spacing: -0.02em;
}

.gradient-text {
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-description {
    font-size: 18px;
    color: var(--text-secondary);
    margin-bottom: 40px;
    line-height: 1.6;
}

.hero-cta {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-bottom: 60px;
}

.btn-primary,
.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 16px 32px;
    border-radius: 16px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 16px;
}

.btn-primary {
    background: var(--primary-gradient);
    color: var(--text-primary);
    box-shadow: 0 8px 32px rgba(40, 167, 69, 0.3);
    position: relative;
    overflow: hidden;
}

.btn-primary > * {
    position: relative;
    z-index: 1;
}

.btn-primary::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 ease, height 0.6s ease;
}

.btn-primary:hover::before {
    width: 300px;
    height: 300px;
}

.btn-primary:hover {
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 16px 48px rgba(40, 167, 69, 0.5);
}

.btn-secondary {
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    color: var(--text-primary);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-4px) scale(1.03);
    border-color: rgba(40, 167, 69, 0.3);
}

.btn-icon {
    width: 20px;
    height: 20px;
}

.btn-arrow {
    width: 20px;
    height: 20px;
    transition: transform 0.3s ease;
}

.btn-secondary:hover .btn-arrow {
    transform: translateX(4px);
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 40px;
}

.stat-item {
    text-align: center;
    transition: transform 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-4px) scale(1.05);
}

.stat-value {
    font-size: 24px;
    font-weight: 700;
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 4px;
    animation: pulse 2s ease-in-out infinite;
}

.stat-label {
    font-size: 14px;
    color: var(--text-muted);
}

/* Hero Visual */
.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    animation: fadeInRight 1s ease-out;
    min-height: 0;
}

.hero-mockup {
    width: auto;
    max-width: none;
    height: 550px;
    object-fit: contain;
    transform: translateX(60px);
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Features Section */
.features {
    padding: 120px 0;
    position: relative;
    margin-top: -1px;
}

.section-header {
    text-align: center;
    margin-bottom: 80px;
}

.section-title {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 16px;
    letter-spacing: -0.02em;
}

.section-subtitle {
    font-size: 20px;
    color: var(--text-secondary);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 32px;
}

.feature-card {
    background: var(--glass-bg);
    backdrop-filter: blur(20px) saturate(180%);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    padding: 40px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.feature-card:hover {
    transform: translateY(-12px) scale(1.02);
    border-color: rgba(40, 167, 69, 0.3);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    background: rgba(255, 255, 255, 0.08);
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--primary-gradient);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.feature-card:hover::before {
    transform: scaleX(1);
}

.feature-icon {
    width: 56px;
    height: 56px;
    background: var(--primary-gradient);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    transition: all 0.3s ease;
}

.feature-card:hover .feature-icon {
    transform: translateY(-4px) rotate(5deg) scale(1.1);
    box-shadow: 0 8px 24px rgba(40, 167, 69, 0.4);
}

.feature-icon svg {
    width: 28px;
    height: 28px;
    color: var(--text-primary);
}

.feature-title {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 16px;
}

.feature-description {
    color: var(--text-secondary);
    margin-bottom: 24px;
    line-height: 1.6;
}

.feature-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.feature-list li {
    color: var(--text-secondary);
    padding-left: 24px;
    position: relative;
    font-size: 14px;
}

.feature-list li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--text-muted);
}

/* Premium Section */
.premium {
    padding: 120px 0;
    position: relative;
}

.premium-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.premium-header {
    text-align: left;
    margin-bottom: 40px;
}

.premium-subtitle {
    font-size: 20px;
    color: var(--text-secondary);
    margin-top: 16px;
    text-align: left;
}

.premium-features {
    list-style: disc;
    padding-left: 24px;
    margin-top: 40px;
    gap: 24px;
    display: flex;
    flex-direction: column;
}

.premium-feature-item {
    margin-bottom: 16px;
}

.premium-feature-item::marker {
    color: #28a745;
    font-size: 1.6em;
}

.premium-feature-item h4 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 4px;
    display: inline;
}

.premium-feature-item p {
    color: var(--text-secondary);
    font-size: 14px;
    margin-top: 4px;
}

.premium-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.premium-card {
    width: 400px;
    height: 400px;
    background: var(--primary-gradient);
    border-radius: 50% 30% 70% 40% / 60% 30% 70% 40%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
    overflow: hidden;
    transition: transform 0.3s ease, border-radius 0.3s ease;
    animation: morph 8s ease-in-out infinite;
}

.premium-card:hover {
    transform: translateY(-8px) scale(1.05) rotate(5deg);
    border-radius: 40% 60% 60% 40% / 60% 30% 70% 40%;
}

@keyframes morph {
    0%, 100% {
        border-radius: 50% 30% 70% 40% / 60% 30% 70% 40%;
    }
    25% {
        border-radius: 30% 60% 70% 40% / 50% 60% 30% 60%;
    }
    50% {
        border-radius: 50% 60% 30% 60% / 30% 30% 70% 60%;
    }
    75% {
        border-radius: 60% 40% 60% 40% / 60% 30% 60% 50%;
    }
}

@keyframes glow {
    0%, 100% {
        opacity: 0.3;
        transform: scale(1);
    }
    50% {
        opacity: 0.5;
        transform: scale(1.08);
    }
}

.premium-badge {
    background: rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(15px);
    padding: 30px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.4);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2),
                inset 0 2px 10px rgba(255, 255, 255, 0.3);
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 120px;
    height: 120px;
    animation: pulse 2s ease-in-out infinite;
}

.premium-icon {
    width: 80px;
    height: 80px;
    color: var(--text-primary);
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.05);
        opacity: 0.9;
    }
}

/* Download Section */
.download {
    padding: 120px 0;
    text-align: center;
}

.download-title {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 16px;
    letter-spacing: -0.02em;
}

.download-subtitle {
    font-size: 20px;
    color: var(--text-secondary);
    margin-bottom: 48px;
}

.download-buttons {
    display: flex;
    justify-content: center;
    gap: 24px;
    flex-wrap: wrap;
}

.download-btn {
    display: flex;
    align-items: center;
    gap: 16px;
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    padding: 16px 32px;
    text-decoration: none;
    color: var(--text-primary);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    min-width: 200px;
    position: relative;
    overflow: hidden;
}

.download-btn.coming-soon {
    cursor: default;
    opacity: 0.7;
    pointer-events: none;
}

.download-btn.coming-soon::before {
    display: none;
}

.download-btn.coming-soon:hover {
    transform: none;
    background: var(--glass-bg);
    border-color: var(--glass-border);
    box-shadow: none;
}

.download-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(40, 167, 69, 0.2), transparent);
    transition: left 0.6s ease;
}

.download-btn:hover::before {
    left: 100%;
}

.download-btn:hover {
    transform: translateY(-6px) scale(1.05);
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(40, 167, 69, 0.6);
    box-shadow: 0 16px 40px rgba(40, 167, 69, 0.3);
}

.download-btn > * {
    position: relative;
    z-index: 1;
}

.download-btn svg {
    width: 32px;
    height: 32px;
}

.download-label {
    font-size: 12px;
    color: var(--text-muted);
    text-align: left;
}

.download-platform {
    font-size: 18px;
    font-weight: 600;
    text-align: left;
}

/* Waitlist Section */
.waitlist {
    padding: 120px 0;
    text-align: center;
}

.waitlist-title {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 16px;
    letter-spacing: -0.02em;
}

.waitlist-subtitle {
    font-size: 20px;
    color: var(--text-secondary);
    margin-bottom: 48px;
}

.waitlist-form {
    max-width: 600px;
    margin: 0 auto;
}

.form-group {
    display: flex;
    gap: 12px;
    margin-bottom: 16px;
}

.waitlist-input {
    flex: 1;
    padding: 16px 24px;
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    color: var(--text-primary);
    font-size: 16px;
    font-family: inherit;
    transition: all 0.3s ease;
    outline: none;
}

.waitlist-input::placeholder {
    color: var(--text-muted);
}

.waitlist-input:focus {
    border-color: rgba(40, 167, 69, 0.6);
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 0 0 3px rgba(40, 167, 69, 0.1);
}

.waitlist-submit {
    padding: 16px 32px;
    white-space: nowrap;
    font-size: 16px;
    font-weight: 600;
}

.waitlist-message {
    min-height: 24px;
    font-size: 14px;
    margin-top: 12px;
    transition: all 0.3s ease;
}

.waitlist-message.success {
    color: #28a745;
}

.waitlist-message.error {
    color: #dc3545;
}

.waitlist-message:empty {
    display: none;
}

/* Footer */
.footer {
    padding: 80px 0 40px;
    border-top: 1px solid var(--glass-border);
    margin-top: 120px;
}

.footer-content {
    display: grid;
    grid-template-columns: 1.5fr 2fr;
    gap: 60px;
    margin-bottom: 60px;
}

.footer-tagline {
    color: var(--text-secondary);
    margin-top: 12px;
    font-size: 14px;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

.footer-column h4 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 16px;
    color: var(--text-primary);
}

.footer-column a {
    display: block;
    color: var(--text-secondary);
    text-decoration: none;
    margin-bottom: 12px;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-column a:hover {
    color: var(--text-primary);
}

.footer-bottom {
    text-align: center;
    padding-top: 40px;
    border-top: 1px solid var(--glass-border);
    color: var(--text-muted);
    font-size: 14px;
}

.footer-bottom p {
    margin-bottom: 8px;
}

.footer-company {
    font-size: 12px;
    opacity: 0.7;
}

/* Privacy Policy Page */
.privacy-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 40px 0;
    color: var(--text-primary);
}

.privacy-content h1 {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 32px;
    letter-spacing: -0.02em;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.privacy-content h2 {
    font-size: 32px;
    font-weight: 700;
    margin-top: 48px;
    margin-bottom: 20px;
    color: var(--text-primary);
}

.privacy-content h3 {
    font-size: 24px;
    font-weight: 600;
    margin-top: 32px;
    margin-bottom: 16px;
    color: var(--text-primary);
}

.privacy-content p {
    margin-bottom: 16px;
    color: var(--text-secondary);
    line-height: 1.7;
}

.privacy-content ul,
.privacy-content ol {
    margin-bottom: 20px;
    padding-left: 24px;
    color: var(--text-secondary);
}

.privacy-content li {
    margin-bottom: 8px;
    line-height: 1.7;
}

.privacy-content a {
    color: #28a745;
    text-decoration: none;
    transition: color 0.3s ease;
}

.privacy-content a:hover {
    color: #20c997;
    text-decoration: underline;
}

.privacy-content strong {
    color: var(--text-primary);
    font-weight: 600;
}

.privacy-content hr {
    margin: 60px 0;
    border: none;
    border-top: 1px solid var(--glass-border);
}

.privacy-content em {
    color: var(--text-secondary);
    font-style: italic;
}

/* Responsive Design */
@media (max-width: 968px) {
    .container {
        padding: 0 20px;
    }

    .hero {
        padding: 100px 0 80px;
    }

    .hero .container {
        text-align: center;
    }

    .hero-title {
        font-size: 40px;
    }

    .hero-stats {
        justify-content: center;
        gap: 30px;
    }

    .features {
        padding: 80px 0;
    }

    .features-grid {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .feature-card {
        padding: 32px;
    }

    .premium {
        padding: 80px 0;
    }

    .premium-content {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .premium-visual {
        order: -1;
    }

    .premium-card {
        width: 320px;
        height: 320px;
        margin: 0 auto;
    }

    .download {
        padding: 80px 0;
    }

    .footer {
        padding: 60px 0 40px;
        margin-top: 80px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .footer-links {
        grid-template-columns: repeat(4, 1fr);
        gap: 30px;
    }
}

@media (max-width: 640px) {
    .container {
        padding: 0 16px;
    }

    .nav-links {
        gap: 16px;
    }

    .nav-links a:not(.btn-download-nav) {
        display: none;
    }

    /* Hero Section Mobile */
    .hero {
        padding: 60px 0 60px;
        min-height: auto;
    }

    .hero-title {
        font-size: 32px;
        line-height: 1.2;
    }

    .hero-description {
        font-size: 16px;
    }

    .hero-cta {
        flex-direction: column;
        gap: 12px;
        margin-bottom: 40px;
        align-items: center;
    }

    .btn-primary,
    .btn-secondary {
        width: auto;
        max-width: 280px;
        justify-content: center;
        padding: 14px 28px;
        font-size: 15px;
    }

    .hero-stats {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }

    .stat-value {
        font-size: 20px;
    }

    .stat-label {
        font-size: 13px;
    }


    /* Features Section Mobile */
    .features {
        padding: 60px 0;
    }

    .section-header {
        margin-bottom: 40px;
    }

    .section-title {
        font-size: 32px;
    }

    .section-subtitle {
        font-size: 16px;
    }

    .features-grid {
        gap: 24px;
    }

    .feature-card {
        padding: 24px;
    }

    .feature-icon {
        width: 48px;
        height: 48px;
        margin-bottom: 20px;
    }

    .feature-icon svg {
        width: 24px;
        height: 24px;
    }

    .feature-title {
        font-size: 20px;
        margin-bottom: 12px;
    }

    .feature-description {
        font-size: 14px;
        margin-bottom: 20px;
    }

    .feature-list {
        gap: 10px;
    }

    .feature-list li {
        font-size: 13px;
        padding-left: 20px;
    }

    /* Premium Section Mobile */
    .premium {
        padding: 60px 0;
    }

    .premium-content {
        gap: 40px;
    }

    .premium-header {
        margin-bottom: 30px;
    }

    .premium-subtitle {
        font-size: 16px;
    }

    .premium-features {
        margin-top: 30px;
        gap: 20px;
    }

    .premium-feature-item h4 {
        font-size: 16px;
    }

    .premium-feature-item p {
        font-size: 13px;
    }

    .premium-card {
        width: 280px;
        height: 280px;
    }

    .premium-badge {
        width: 100px;
        height: 100px;
        padding: 24px;
    }

    .premium-icon {
        width: 60px;
        height: 60px;
    }

    /* Download Section Mobile */
    .download {
        padding: 60px 0;
    }

    .download-title {
        font-size: 32px;
    }

    .download-subtitle {
        font-size: 16px;
        margin-bottom: 32px;
    }

    .waitlist {
        padding: 60px 0;
    }

    .waitlist-title {
        font-size: 32px;
    }

    .waitlist-subtitle {
        font-size: 16px;
        margin-bottom: 32px;
    }

    .form-group {
        flex-direction: column;
    }

    .waitlist-submit {
        width: 100%;
    }

    .download-buttons {
        gap: 16px;
    }

    .download-btn {
        width: auto;
        max-width: 280px;
        padding: 14px 28px;
    }

    /* Footer Mobile */
    .footer {
        padding: 60px 0 30px;
        margin-top: 60px;
    }

    .footer-content {
        gap: 40px;
        margin-bottom: 40px;
    }

    .footer-links {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }

    .footer-bottom {
        padding-top: 30px;
    }

    .footer-bottom p {
        font-size: 12px;
        margin-bottom: 6px;
    }

    .footer-company {
        font-size: 11px;
    }
}
