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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #1a1a1a;
    background: 
        linear-gradient(180deg, 
            #ffffff 0%,
            #faf8ff 15%,
            #f4f1fd 30%,
            #ede8ff 50%,
            #f4f1fd 65%,
            #faf8ff 80%,
            #ffffff 100%
        );
    background-attachment: fixed;
    background-size: 100% 400vh;
    overflow-x: hidden;
    position: relative;
    /* Enhanced mobile touch scrolling */
    -webkit-overflow-scrolling: touch;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(ellipse at 20% 10%, rgba(139, 69, 255, 0.04) 0%, transparent 40%),
        radial-gradient(ellipse at 80% 20%, rgba(168, 85, 247, 0.03) 0%, transparent 50%),
        radial-gradient(ellipse at 40% 30%, rgba(147, 51, 234, 0.03) 0%, transparent 60%),
        radial-gradient(ellipse at 60% 70%, rgba(196, 181, 253, 0.04) 0%, transparent 45%),
        radial-gradient(ellipse at 10% 80%, rgba(124, 58, 237, 0.03) 0%, transparent 55%),
        radial-gradient(ellipse at 90% 90%, rgba(139, 69, 255, 0.03) 0%, transparent 40%);
    pointer-events: none;
    z-index: -2;
    animation: subtle-float 120s ease-in-out infinite alternate;
}

@keyframes subtle-float {
    0% { 
        transform: translateY(0) scale(1);
        opacity: 0.4;
    }
    50% { 
        transform: translateY(-20px) scale(1.02);
        opacity: 0.6;
    }
    100% { 
        transform: translateY(-40px) scale(1.05);
        opacity: 0.3;
    }
}

body::after {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(1px 1px at 40px 60px, rgba(139, 69, 255, 0.12), transparent),
        radial-gradient(1px 1px at 80px 120px, rgba(168, 85, 247, 0.1), transparent),
        radial-gradient(1px 1px at 120px 40px, rgba(147, 51, 234, 0.11), transparent),
        radial-gradient(1px 1px at 160px 100px, rgba(196, 181, 253, 0.09), transparent);
    background-repeat: repeat;
    background-size: 200px 160px;
    animation: gentle-shimmer 8s ease-in-out infinite alternate;
    pointer-events: none;
    z-index: -1;
}

@keyframes gentle-shimmer {
    0% { 
        opacity: 0.2; 
        transform: scale(1);
    }
    100% { 
        opacity: 0.4;
        transform: scale(1.1);
    }
}

/* Professional Floating Elements */
.cosmic-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: -1;
    overflow: hidden;
}

.shooting-star {
    position: absolute;
    width: 2px;
    height: 2px;
    background: linear-gradient(45deg, rgba(139, 69, 255, 0.5), rgba(168, 85, 247, 0.4));
    border-radius: 50%;
    animation: professional-drift 15s linear infinite;
    opacity: 0.6;
}

.shooting-star::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 30px;
    height: 1px;
    background: linear-gradient(to right, 
        rgba(139, 69, 255, 0.4), 
        transparent);
    transform: translateX(-30px);
}

@keyframes professional-drift {
    0% {
        transform: translateX(-50px) translateY(-50px);
        opacity: 0;
    }
    10% {
        opacity: 0.6;
    }
    90% {
        opacity: 0.6;
    }
    100% {
        transform: translateX(calc(100vw + 50px)) translateY(calc(100vh + 50px));
        opacity: 0;
    }
}

/* Subtle Professional Orbs */
.cosmic-orb {
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle, 
        rgba(139, 69, 255, 0.12) 0%, 
        rgba(168, 85, 247, 0.08) 50%,
        transparent 100%);
    animation: professional-float 20s ease-in-out infinite;
    pointer-events: none;
    border: 1px solid rgba(139, 69, 255, 0.15);
}

@keyframes professional-float {
    0%, 100% { 
        transform: translateY(0px) scale(1);
        opacity: 0.3;
    }
    50% { 
        transform: translateY(-20px) scale(1.05);
        opacity: 0.5;
    }
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 1;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(139, 69, 255, 0.2);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
    z-index: 1000;
    transition: all 0.3s ease;
}

.navbar.scrolled {
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(139, 69, 255, 0.2);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

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

.nav-logo .logo {
    height: 32px;
    width: auto;
}

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

.nav-link {
    text-decoration: none;
    color: #374151;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: #8b45ff;
}

.nav-link.white-text {
    color: #ffffff;
}

.nav-link.white-text:hover {
    color: #e4d4ff;
}

.cta-button, .primary-button {
    background: linear-gradient(135deg, #8b45ff 0%, #7c3aed 100%);
    color: white;
    border: none;
    padding: 14px 32px;
    border-radius: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 16px;
    box-shadow: 0 4px 15px rgba(139, 69, 255, 0.25);
    text-decoration: none;
    display: inline-block;
}

.cta-button:hover, .primary-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(139, 69, 255, 0.35);
    background: linear-gradient(135deg, #a855f7 0%, #9333ea 100%);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    background: none;
    border: none;
    padding: 8px;
    margin-left: auto;
    /* Enhanced touch target size for mobile */
    min-width: 44px;
    min-height: 44px;
    justify-content: center;
    align-items: center;
    z-index: 1001;
    transition: all 0.3s ease;
}

.hamburger:hover {
    background: rgba(139, 69, 255, 0.1);
    border-radius: 8px;
}

.bar {
    width: 25px;
    height: 3px;
    background: white;
    margin: 3px 0;
    transition: all 0.3s ease;
    border-radius: 2px;
}

/* Enhanced hamburger animation */
.hamburger.active .bar:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
}

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

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

/* Enhanced mobile navigation menu */
.nav-menu.active {
    display: flex;
    flex-direction: column;
    position: fixed;
    left: 0;
    top: 70px;
    width: 100%;
    height: calc(100vh - 70px);
    background: rgba(0, 0, 0, 0.98);
    backdrop-filter: blur(20px);
    text-align: center;
    transition: all 0.3s ease;
    padding: 2rem 1rem;
    gap: 2rem;
    z-index: 1000;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
}

/* Enhanced mobile menu links */
@media (max-width: 768px) {
    .nav-menu.active .nav-link,
    .nav-menu.active .cta-button {
        font-size: 18px;
        padding: 16px 24px;
        margin: 8px 0;
        border-radius: 12px;
        min-height: 44px;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: all 0.3s ease;
    }
    
    .nav-menu.active .nav-link:hover,
    .nav-menu.active .nav-link:focus {
        background: rgba(139, 69, 255, 0.2);
        transform: translateY(-2px);
    }
    
    .nav-menu.active .cta-button {
        background: linear-gradient(135deg, #8b45ff, #a855f7);
        color: white;
        text-decoration: none;
        margin-top: 1rem;
    }
}

/* Hero Section - Clean Professional Start */
.hero {
    padding: 120px 0 80px;
    background: 
        radial-gradient(ellipse at 50% 100%, rgba(139, 69, 255, 0.06) 0%, transparent 60%),
        radial-gradient(ellipse at 20% 50%, rgba(168, 85, 247, 0.04) 0%, transparent 70%),
        linear-gradient(180deg, 
            rgba(255, 255, 255, 1) 0%, 
            rgba(250, 248, 255, 0.9) 50%,
            rgba(244, 241, 253, 0.8) 100%);
    min-height: 90vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 15% 25%, rgba(139, 69, 255, 0.1) 0%, transparent 35%),
        radial-gradient(circle at 85% 75%, rgba(168, 85, 247, 0.08) 0%, transparent 40%),
        radial-gradient(circle at 50% 10%, rgba(147, 51, 234, 0.06) 0%, transparent 45%);
    pointer-events: none;
    animation: hero-subtle-drift 60s ease-in-out infinite alternate;
}

@keyframes hero-subtle-drift {
    0% { 
        transform: scale(1);
        opacity: 0.5;
    }
    100% { 
        transform: scale(1.02);
        opacity: 0.8;
    }
}

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

.hero-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
}

.hero-title {
    font-size: 56px;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 24px;
    color: #1f2937;
}

.gradient-text {
    background: linear-gradient(135deg, #8b45ff 0%, #a855f7 50%, #9333ea 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 20px;
    color: #6b7280;
    margin-bottom: 40px;
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    margin-bottom: 60px;
    align-items: center;
    justify-content: flex-start;
}

.secondary-button {
    background: transparent;
    color: #8b45ff;
    border: 2px solid #8b45ff;
    padding: 14px 32px;
    border-radius: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 16px;
    text-decoration: none;
    display: inline-block;
}

.secondary-button:hover {
    background: rgba(139, 69, 255, 0.1);
    color: #8b45ff;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(139, 69, 255, 0.25);
}

/* Hero subtitle mobile optimization */
.hero-subtitle-full {
    display: inline;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.stat {
    text-align: left;
}

.stat-number {
    display: block;
    font-size: 32px;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 4px;
}

.stat-label {
    font-size: 14px;
    color: #6b7280;
    font-weight: 500;
}

.hero-visual {
    position: relative;
    height: 500px;
}

.floating-card {
    position: absolute;
    background: white;
    border-radius: 16px;
    padding: 24px;
    box-shadow: 0 10px 30px rgba(139, 69, 255, 0.12);
    border: 1px solid rgba(196, 181, 253, 0.3);
    animation: professional-card-float 6s ease-in-out infinite;
}

.card-1 {
    top: 50px;
    left: 0;
    width: 280px;
    animation-delay: 0s;
}

.card-2 {
    top: 200px;
    right: 40px;
    width: 240px;
    animation-delay: 1s;
}

.card-3 {
    bottom: 100px;
    left: 60px;
    width: 200px;
    animation-delay: 2s;
}

.card-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.card-icon {
    font-size: 24px;
}

.card-balance {
    font-size: 28px;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 8px;
}

.card-change {
    font-size: 14px;
    font-weight: 600;
}

.positive {
    color: #10b981;
}

.transaction {
    display: flex;
    align-items: center;
    gap: 12px;
}

.transaction-icon {
    font-size: 20px;
}

.transaction-details span {
    display: block;
    font-weight: 600;
    color: #1f2937;
}

.transaction-details small {
    color: #6b7280;
    font-size: 12px;
}

.security-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 600;
    color: #8b45ff;
}

@keyframes professional-card-float {
    0%, 100% { 
        transform: translateY(0px) rotate(0deg);
    }
    50% { 
        transform: translateY(-10px) rotate(0.5deg);
    }
}

/* Features Section - Clean Professional Grid */
.features {
    padding: 100px 0;
    background: 
        radial-gradient(ellipse at 50% 0%, rgba(139, 69, 255, 0.04) 0%, transparent 60%),
        radial-gradient(ellipse at 0% 100%, rgba(168, 85, 247, 0.03) 0%, transparent 70%),
        radial-gradient(ellipse at 100% 50%, rgba(147, 51, 234, 0.03) 0%, transparent 80%),
        linear-gradient(180deg, 
            rgba(244, 241, 253, 0.8) 0%, 
            rgba(250, 248, 255, 0.9) 50%,
            rgba(255, 255, 255, 1) 100%);
    position: relative;
    overflow: hidden;
}

.features::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 25% 35%, rgba(139, 69, 255, 0.05) 0%, transparent 45%),
        radial-gradient(circle at 75% 65%, rgba(168, 85, 247, 0.04) 0%, transparent 55%);
    pointer-events: none;
    animation: features-drift 80s ease-in-out infinite alternate;
}

@keyframes features-drift {
    0% { 
        transform: translateY(0) scale(1);
        opacity: 0.6;
    }
    100% { 
        transform: translateY(-20px) scale(1.01);
        opacity: 0.8;
    }
}

.section-header {
    text-align: center;
    margin-bottom: 80px;
}

.section-header h2 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 16px;
    color: #1f2937;
}

.section-header p {
    font-size: 20px;
    color: #6b7280;
}

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

.feature-card {
    background: rgba(255, 255, 255, 0.8);
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(139, 69, 255, 0.08);
    border: 1px solid rgba(196, 181, 253, 0.4);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(139, 69, 255, 0.08), transparent);
    transition: left 0.5s;
}

.feature-card:hover::before {
    left: 100%;
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(139, 69, 255, 0.15);
    border-color: rgba(139, 69, 255, 0.3);
}

.feature-icon {
    font-size: 48px;
    margin-bottom: 24px;
    display: block;
}

.feature-card h3 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 16px;
    color: #1f2937;
}

.feature-card p {
    color: #6b7280;
    line-height: 1.6;
}

/* Security Section - Professional Trust Building */
.security {
    padding: 100px 0;
    background: 
        radial-gradient(ellipse at 50% 50%, rgba(139, 69, 255, 0.1) 0%, transparent 50%),
        radial-gradient(ellipse at 20% 20%, rgba(168, 85, 247, 0.08) 0%, transparent 60%),
        radial-gradient(ellipse at 80% 80%, rgba(147, 51, 234, 0.06) 0%, transparent 55%),
        linear-gradient(135deg, 
            rgba(250, 248, 255, 0.9) 0%, 
            rgba(244, 241, 253, 0.95) 25%,
            rgba(237, 232, 255, 0.8) 50%,
            rgba(244, 241, 253, 0.95) 75%,
            rgba(250, 248, 255, 0.9) 100%);
    color: #1f2937;
    position: relative;
    overflow: hidden;
}

.security::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 30% 30%, rgba(139, 69, 255, 0.06) 0%, transparent 35%),
        radial-gradient(circle at 70% 70%, rgba(168, 85, 247, 0.05) 0%, transparent 50%);
    pointer-events: none;
    animation: security-drift 100s ease-in-out infinite alternate;
}

@keyframes security-drift {
    0% { 
        transform: scale(1);
        opacity: 0.7;
    }
    100% { 
        transform: scale(1.02);
        opacity: 1;
    }
}

.security-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.security h2 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 24px;
    color: #1f2937;
}

.security-subtitle {
    font-size: 20px;
    margin-bottom: 40px;
    color: #6b7280;
}

.security-features {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.security-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 18px;
    font-weight: 500;
    color: #374151;
}

.checkmark {
    color: #10b981;
    font-weight: 700;
    font-size: 20px;
}

.security-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.security-shield {
    position: relative;
    width: 200px;
    height: 200px;
}

.shield-layers {
    position: relative;
    width: 100%;
    height: 100%;
}

.layer {
    position: absolute;
    border-radius: 50%;
    border: 2px solid rgba(139, 69, 255, 0.4);
    animation: professional-pulse 4s ease-in-out infinite;
}

.layer-1 {
    width: 100%;
    height: 100%;
    animation-delay: 0s;
}

.layer-2 {
    width: 80%;
    height: 80%;
    top: 10%;
    left: 10%;
    animation-delay: 1s;
}

.layer-3 {
    width: 60%;
    height: 60%;
    top: 20%;
    left: 20%;
    animation-delay: 2s;
}

.shield-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 48px;
}

@keyframes professional-pulse {
    0%, 100% { opacity: 0.4; transform: scale(1); }
    50% { opacity: 0.8; transform: scale(1.05); }
}

/* About Section - Trust and Credibility */
.about {
    padding: 100px 0;
    background: 
        radial-gradient(ellipse at 70% 30%, rgba(139, 69, 255, 0.05) 0%, transparent 60%),
        radial-gradient(ellipse at 30% 70%, rgba(168, 85, 247, 0.04) 0%, transparent 70%),
        linear-gradient(180deg, 
            rgba(255, 255, 255, 1) 0%, 
            rgba(250, 248, 255, 0.9) 50%,
            rgba(244, 241, 253, 0.8) 100%);
    position: relative;
    overflow: hidden;
}

.about::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 40% 20%, rgba(139, 69, 255, 0.04) 0%, transparent 50%),
        radial-gradient(circle at 80% 60%, rgba(168, 85, 247, 0.03) 0%, transparent 55%);
    pointer-events: none;
    animation: about-drift 120s ease-in-out infinite alternate;
}

@keyframes about-drift {
    0% { 
        transform: translateX(0) scale(1);
        opacity: 0.6;
    }
    100% { 
        transform: translateX(10px) scale(1.01);
        opacity: 0.8;
    }
}

.about-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.about h2 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 32px;
    color: #1f2937;
}

.about p {
    font-size: 20px;
    color: #6b7280;
    margin-bottom: 60px;
    line-height: 1.6;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 60px;
}

.about-stat h3 {
    font-size: 48px;
    font-weight: 700;
    color: #8b45ff;
    margin-bottom: 8px;
}

.about-stat p {
    font-size: 16px;
    color: #6b7280;
    margin: 0;
}

/* CTA Section - Professional Call to Action */
.cta-section {
    padding: 100px 0;
    background: 
        radial-gradient(ellipse at 50% 0%, rgba(139, 69, 255, 0.1) 0%, transparent 60%),
        radial-gradient(ellipse at 0% 100%, rgba(168, 85, 247, 0.08) 0%, transparent 65%),
        radial-gradient(ellipse at 100% 100%, rgba(147, 51, 234, 0.06) 0%, transparent 70%),
        linear-gradient(135deg, 
            rgba(250, 248, 255, 0.95) 0%, 
            rgba(244, 241, 253, 0.9) 25%,
            rgba(237, 232, 255, 0.8) 50%,
            rgba(244, 241, 253, 0.9) 75%,
            rgba(250, 248, 255, 0.95) 100%);
    color: #1f2937;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 25% 25%, rgba(139, 69, 255, 0.05) 0%, transparent 45%),
        radial-gradient(circle at 75% 75%, rgba(168, 85, 247, 0.04) 0%, transparent 55%);
    pointer-events: none;
    animation: cta-drift 60s ease-in-out infinite alternate;
}

@keyframes cta-drift {
    0% { 
        transform: scale(1);
        opacity: 0.8;
    }
    100% { 
        transform: scale(1.02);
        opacity: 1;
    }
}

.cta-content h2 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 24px;
    color: #1f2937;
    text-align: center;
    position: relative;
}

.cosmic-gradient {
    background: linear-gradient(135deg, #8b45ff 0%, #a855f7 50%, #9333ea 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.cosmic-gradient::before {
    display: none;
}

@keyframes cosmic-pulse {
    0% { 
        opacity: 0.8; 
        transform: scale(1);
    }
    100% { 
        opacity: 1; 
        transform: scale(1.02);
    }
}

.cta-content > p {
    font-size: 20px;
    margin-bottom: 40px;
    color: #6b7280;
    text-align: center;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 40px;
}

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

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

.form-group input {
    flex: 1;
    padding: 16px 20px;
    border: 1px solid #d1d5db;
    border-radius: 8px;
    font-size: 16px;
    background: white;
    color: #1f2937;
    transition: border-color 0.3s ease;
}

.form-group input::placeholder {
    color: #9ca3af;
}

.form-group input:focus {
    outline: none;
    border-color: #8b45ff;
    box-shadow: 0 0 0 3px rgba(139, 69, 255, 0.15);
}

.submit-button {
    background: linear-gradient(135deg, #8b45ff 0%, #7c3aed 100%);
    color: white;
    border: none;
    padding: 16px 32px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
    box-shadow: 0 4px 15px rgba(139, 69, 255, 0.25);
    text-decoration: none;
    display: inline-block;
}

.submit-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(139, 69, 255, 0.35);
    background: linear-gradient(135deg, #a855f7 0%, #9333ea 100%);
}

.cta-button-container {
    display: flex;
    justify-content: center;
    margin: 40px 0;
}

.form-disclaimer {
    font-size: 14px;
    color: #6b7280;
    line-height: 1.4;
}

.social-proof {
    margin-top: 60px;
}

.social-proof span {
    display: block;
    font-size: 14px;
    color: #6b7280;
    margin-bottom: 24px;
}

.company-logos {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.company-logo {
    font-size: 18px;
    font-weight: 600;
    color: #9ca3af;
    transition: color 0.3s ease;
}

.company-logo:hover {
    color: #8b45ff;
}

/* Footer - Clean Professional End */
.footer {
    background: 
        radial-gradient(ellipse at 50% 0%, rgba(139, 69, 255, 0.05) 0%, transparent 70%),
        linear-gradient(180deg, 
            rgba(244, 241, 253, 0.8) 0%, 
            rgba(250, 248, 255, 0.9) 25%,
            rgba(255, 255, 255, 1) 50%,
            rgba(255, 255, 255, 1) 100%);
    color: #1f2937;
    padding: 60px 0 20px;
    position: relative;
    overflow: hidden;
    border-top: 1px solid rgba(196, 181, 253, 0.5);
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 20%, rgba(139, 69, 255, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(168, 85, 247, 0.03) 0%, transparent 60%);
    pointer-events: none;
    animation: footer-drift 80s ease-in-out infinite alternate;
}

@keyframes footer-drift {
    0% { 
        transform: translateY(0) scale(1);
        opacity: 0.5;
    }
    100% { 
        transform: translateY(10px) scale(1.01);
        opacity: 0.7;
    }
}

.footer::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, 
        transparent 0%, 
        rgba(139, 69, 255, 0.3) 50%,
        transparent 100%);
}

/* Enhanced Footer Elements */
.footer-cosmic-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

.footer-orb {
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle, 
        rgba(139, 69, 255, 0.12) 0%, 
        rgba(168, 85, 247, 0.08) 50%,
        transparent 100%);
    animation: footer-professional-float 25s ease-in-out infinite;
    pointer-events: none;
    border: 1px solid rgba(139, 69, 255, 0.15);
}

@keyframes footer-professional-float {
    0%, 100% { 
        transform: translateY(0px) scale(1);
        opacity: 0.2;
    }
    50% { 
        transform: translateY(-15px) scale(1.05);
        opacity: 0.4;
    }
}

.footer-content {
    display: flex;
    flex-direction: column;
    gap: 40px;
    margin-bottom: 40px;
    position: relative;
    z-index: 1;
}

/* Brand Section - Always Centered */
.footer-brand-section {
    text-align: left;
}

.footer-brand {
    display: inline-block;
    text-align: left;
}

/* Two-Column Grid for Links */
.footer-links-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    max-width: 500px;
    margin: 0 auto;
    align-items: start;
}

.footer-links-column {
    display: flex;
    flex-direction: column;
    gap: 30px;
    align-items: flex-start;
}

.footer-brand h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 12px;
    background: linear-gradient(135deg, #8b45ff 0%, #a855f7 50%, #9333ea 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-logo {
    height: 32px;
    width: auto;
    margin-bottom: 12px;
    display: block;
}

.footer-brand p {
    color: #6b7280;
    font-size: 16px;
}

.social-links {
    display: flex;
    gap: 16px;
    justify-content: flex-start;
    margin-top: 16px;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(139, 69, 255, 0.1);
    color: #6b7280;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid rgba(139, 69, 255, 0.2);
}

.social-link:hover {
    background: rgba(139, 69, 255, 0.2);
    color: #8b45ff;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(139, 69, 255, 0.3);
}

.social-link svg {
    transition: transform 0.3s ease;
}

.social-link:hover svg {
    transform: scale(1.1);
}

/* Desktop Layout Override */
@media (min-width: 769px) {
    .footer-content {
        display: grid;
        grid-template-columns: 1fr 2fr;
        gap: 80px;
        align-items: start;
    }
    
    .footer-brand-section {
        text-align: left;
    }
    
    .footer-links-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 40px;
        max-width: none;
        margin: 0;
    }
    
    .footer-links-column {
        display: contents;
    }
}

.footer-column {
    width: 100%;
}

.footer-column h4 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 16px;
    color: #374151;
    text-align: left;
}

.footer-column a {
    display: block;
    color: #6b7280;
    text-decoration: none;
    margin-bottom: 8px;
    font-size: 14px;
    transition: color 0.3s ease;
    position: relative;
    text-align: left;
}

.footer-column a:hover {
    color: #8b45ff;
}

.footer-column a::before {
    display: none;
}

.footer-column a:hover::before {
    display: none;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(196, 181, 253, 0.4);
    position: relative;
    z-index: 1;
}

.footer-bottom::before {
    display: none;
}

.footer-bottom p {
    color: #6b7280;
    font-size: 14px;
}

/* Enhanced Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }
    
    .hamburger {
        display: flex;
    }
    
    .hero {
        padding: 120px 0 80px;
    }
    
    .hero-container {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
        padding: 0 20px;
    }
    
    .hero-content {
        text-align: center;
        align-items: center;
    }
    
    .hero-title {
        font-size: clamp(32px, 8vw, 48px);
        line-height: 1.2;
        margin-bottom: 20px;
    }
    
    .hero-subtitle {
        font-size: 18px;
        line-height: 1.6;
        margin-bottom: 32px;
        padding: 0 10px;
    }
    
    .hero-subtitle-full {
        display: none;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 16px;
        margin-bottom: 40px;
    }
    
    .primary-button,
    .secondary-button,
    .cta-button {
        width: auto;
        min-width: 200px;
        min-height: 44px;
        font-size: 16px;
        padding: 14px 24px;
        border-radius: 12px;
        touch-action: manipulation;
        -webkit-tap-highlight-color: transparent;
        text-align: center;
    }
    
    .secondary-button {
        background: transparent;
        color: #8b45ff;
        border: none;
    }
    
    .hero-stats {
        justify-content: center;
        flex-wrap: wrap;
        gap: 24px;
        margin-top: 20px;
    }
    
    .stat {
        min-width: 120px;
        text-align: center;
    }
    
    .hero-visual {
        height: 300px;
        padding: 0 20px;
    }
    
    .floating-card {
        position: relative !important;
        margin-bottom: 16px;
        width: 100% !important;
        max-width: 300px;
        margin-left: auto;
        margin-right: auto;
        top: auto !important;
        left: auto !important;
        right: auto !important;
        bottom: auto !important;
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
        border-radius: 16px;
        animation: none;
    }
    
    .features {
        padding: 80px 0;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 24px;
        padding: 0 20px;
    }
    
    .feature-card {
        padding: 32px 24px;
        border-radius: 16px;
        text-align: center;
    }
    
    .feature-icon {
        font-size: 40px;
        margin-bottom: 20px;
    }
    
    .security {
        padding: 80px 0;
    }
    
    .security-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
        padding: 0 20px;
    }
    
    .security-visual {
        order: -1;
        margin-bottom: 20px;
    }
    
    .security-shield {
        max-width: 200px;
        margin: 0 auto;
    }
    
    .about {
        padding: 80px 0;
    }
    
    .about-content {
        padding: 0 20px;
        text-align: center;
    }
    
    .about-stats {
        grid-template-columns: 1fr;
        gap: 32px;
        margin-top: 40px;
    }
    
    .cta-section {
        padding: 80px 0;
    }
    
    .cta-content {
        padding: 0 20px;
        text-align: center;
    }
    
    .form-group {
        flex-direction: column;
        gap: 16px;
    }
    
    .company-logos {
        gap: 20px;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .company-logo {
        font-size: 14px;
        padding: 8px 16px;
    }
    
    .footer {
        padding: 60px 0 40px;
    }
    
    .footer-content {
        gap: 30px;
        padding: 0 20px;
    }
    
    .footer-links-grid {
        grid-template-columns: 1fr 1fr;
        gap: 32px;
        max-width: 400px;
        align-items: start;
    }
    
    .footer-links-column {
        gap: 24px;
        align-items: flex-start;
    }
    
    .footer-column {
        text-align: left;
        width: 100%;
    }
    
    .footer-column h4 {
        margin-bottom: 12px;
        font-size: 15px;
    }
    
    .footer-column a {
        margin-bottom: 6px;
        font-size: 14px;
    }
    
    .section-header h2,
    .security h2,
    .about h2,
    .cta-content h2 {
        font-size: clamp(28px, 6vw, 36px);
        line-height: 1.3;
    }
    
    .section-header p {
        font-size: 16px;
        line-height: 1.6;
    }
    
    /* Enhanced touch targets for mobile */
    a, button, .nav-link, .feature-card {
        min-height: 44px;
        touch-action: manipulation;
        -webkit-tap-highlight-color: transparent;
    }
    
    /* Prevent zoom on input focus */
    input, select, textarea {
        font-size: 16px;
    }
    
    .social-links {
        gap: 12px;
        margin-top: 12px;
    }
    
    .social-link {
        width: 36px;
        height: 36px;
    }
    
    .social-link svg {
        width: 18px;
        height: 18px;
    }
}

/* Legal Document Styles */
.legal-document {
    padding: 140px 0 80px;
    min-height: 100vh;
    position: relative;
    z-index: 1;
}

.legal-header {
    text-align: center;
    margin-bottom: 60px;
}

.legal-header h1 {
    font-size: 48px;
    font-weight: 700;
    background: linear-gradient(135deg, #8b45ff, #a855f7, #9333ea);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 10px;
}

.last-updated {
    color: #666;
    font-size: 14px;
    font-style: italic;
}

.legal-content {
    max-width: 800px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 20px 40px rgba(139, 69, 255, 0.1);
    border: 1px solid rgba(139, 69, 255, 0.1);
}

.legal-section {
    margin-bottom: 40px;
    padding-bottom: 30px;
    border-bottom: 1px solid rgba(139, 69, 255, 0.1);
}

.legal-section:last-of-type {
    border-bottom: none;
}

.legal-section h2 {
    font-size: 24px;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 15px;
    position: relative;
}

.legal-section h2::before {
    content: '';
    position: absolute;
    left: -20px;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 20px;
    background: linear-gradient(135deg, #8b45ff, #a855f7);
    border-radius: 2px;
}

.legal-section p {
    color: #444;
    line-height: 1.7;
    margin-bottom: 15px;
}

.legal-section ul {
    margin-left: 20px;
    margin-bottom: 15px;
}

.legal-section li {
    color: #444;
    line-height: 1.7;
    margin-bottom: 8px;
}

.legal-disclaimer {
    background: rgba(139, 69, 255, 0.05);
    border: 1px solid rgba(139, 69, 255, 0.2);
    border-radius: 15px;
    padding: 25px;
    margin-top: 30px;
}

.legal-disclaimer p {
    margin: 0;
    font-size: 14px;
    color: #666;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .legal-document {
        padding: 120px 0 60px;
    }
    
    .legal-header h1 {
        font-size: 36px;
    }
    
    .legal-content {
        padding: 30px 20px;
        margin: 0 20px;
    }
    
    .legal-section h2 {
        font-size: 20px;
    }
    
    .legal-section h2::before {
        left: -15px;
        width: 3px;
        height: 16px;
    }
}

/* Enhanced Mobile Design for Small Screens */
@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }
    
    .nav-container {
        padding: 0 16px;
    }
    
    .hero {
        padding: 100px 0 60px;
    }
    
    .hero-container {
        padding: 0 16px;
        text-align: center;
    }
    
    .hero-content {
        text-align: center;
        align-items: center;
    }
    
    .hero-title {
        font-size: clamp(28px, 7vw, 36px);
        line-height: 1.2;
    }
    
    .hero-subtitle {
        font-size: 16px;
        line-height: 1.5;
        padding: 0 8px;
    }
    
    .hero-buttons {
        gap: 12px;
    }
    
    .primary-button,
    .secondary-button,
    .cta-button {
        width: auto;
        min-width: 180px;
        min-height: 48px;
        font-size: 15px;
        padding: 12px 20px;
        text-align: center;
    }
    
    .secondary-button {
        background: transparent;
        color: #8b45ff;
        border: none;
    }
    
    .hero-stats {
        gap: 16px;
        margin-top: 32px;
    }
    
    .stat-number {
        font-size: 20px;
    }
    
    .stat-label {
        font-size: 12px;
    }
    
    .floating-card {
        max-width: 280px;
        margin-bottom: 12px;
        padding: 16px;
    }
    
    .features-grid {
        padding: 0 16px;
        gap: 20px;
    }
    
    .feature-card {
        padding: 24px 20px;
        border-radius: 12px;
    }
    
    .feature-icon {
        font-size: 36px;
        margin-bottom: 16px;
    }
    
    .feature-card h3 {
        font-size: 18px;
        margin-bottom: 12px;
    }
    
    .feature-card p {
        font-size: 14px;
        line-height: 1.5;
    }
    
    .security-content,
    .about-content,
    .cta-content {
        padding: 0 16px;
    }
    
    .security-shield {
        max-width: 160px;
    }
    
    .about-stats {
        gap: 24px;
    }
    
    .about-stat h3 {
        font-size: 24px;
    }
    
    .about-stat p {
        font-size: 14px;
    }
    
    .section-header h2,
    .security h2,
    .about h2,
    .cta-content h2 {
        font-size: clamp(24px, 6vw, 32px);
        line-height: 1.3;
        margin-bottom: 16px;
    }
    
    .section-header p,
    .security-subtitle,
    .about p,
    .cta-content > p {
        font-size: 15px;
        line-height: 1.6;
    }
    
    .company-logos {
        gap: 12px;
    }
    
    .company-logo {
        font-size: 12px;
        padding: 6px 12px;
    }
    
    .footer-content {
        padding: 0 16px;
        gap: 24px;
    }
    
    .footer-links-grid {
        grid-template-columns: 1fr 1fr;
        gap: 24px;
        max-width: 320px;
        align-items: start;
    }
    
    .footer-links-column {
        gap: 20px;
        align-items: flex-start;
    }
    
    .footer-column h4 {
        margin-bottom: 10px;
        font-size: 14px;
    }
    
    .footer-column a {
        margin-bottom: 5px;
        font-size: 13px;
    }
    
    /* Enhanced mobile navigation */
    .nav-menu.active {
        top: 60px;
        height: calc(100vh - 60px);
        padding: 1.5rem 1rem;
    }
    
    .nav-menu.active .nav-link,
    .nav-menu.active .cta-button {
        font-size: 16px;
        padding: 14px 20px;
        min-height: 48px;
    }
    
    /* Legal pages mobile optimization */
    .legal-header h1 {
        font-size: clamp(24px, 6vw, 32px);
    }
    
    .legal-content {
        margin: 0 15px;
        padding: 25px 15px;
        border-radius: 16px;
    }
    
    .legal-section h2 {
        font-size: 18px;
        margin-bottom: 12px;
    }
    
    .legal-section p,
    .legal-section li {
        font-size: 14px;
        line-height: 1.6;
    }
    
    /* Better mobile spacing */
    .features,
    .security,
    .about,
    .cta-section {
        padding: 60px 0;
    }
    
    .footer {
        padding: 40px 0 30px;
    }
    
    /* Mobile-specific animations */
    .floating-card {
        transform: none;
        animation: gentle-mobile-float 6s ease-in-out infinite;
    }
    
    @keyframes gentle-mobile-float {
        0%, 100% { transform: translateY(0px); }
        50% { transform: translateY(-8px); }
    }
} 