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


body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    line-height: 1.6;
    color: #ffffff;
    background: radial-gradient(ellipse at center, #000000 0%, #07090d 50%, #0f0f0f 100%) !important;
    background-attachment: fixed !important;
    min-height: 100vh;
    overflow-x: hidden;
    position: relative;
}

html, body {
    background: radial-gradient(ellipse at center, #141422 0%, #11182e 50%, #06060e 100%) !important;
    background-attachment: fixed !important;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 80%, rgba(58, 57, 122, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(118, 51, 90, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(53, 52, 114, 0.2) 0%, transparent 50%);
    pointer-events: none;
    z-index: -1;
}

/* Navigation */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background: rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(5px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
    padding: 1rem 2rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, #7c77c6, #ff7ecb);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-decoration: none;
    transition: all 0.3s ease;
}

.logo:hover {
    transform: scale(1.05);
    filter: brightness(1.2);
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-links a {
    text-decoration: none;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
    transition: all 0.3s ease;
    padding: 0.5rem 1rem;
    border-radius: 0.5rem;
}

.nav-links a:hover {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

.login-btn {
    background: linear-gradient(135deg, rgba(120, 119, 198, 0.8), rgba(255, 119, 198, 0.8));
    color: white;
    padding: 0.75rem 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 0.75rem;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 15px rgba(120, 119, 198, 0.3);
}

.login-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(120, 119, 198, 0.4);
    background: linear-gradient(135deg, rgba(120, 119, 198, 1), rgba(255, 119, 198, 1));
}

/* Hero Section */
.hero {
    min-height: 88vh;
    position: relative;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    text-align: center;
    padding: 4rem 2rem 4rem 2rem;
    overflow: hidden;
    border-bottom-left-radius: 3rem;
    border-bottom-right-radius: 3rem;
}

.hero-content {
    max-width: 900px;
    z-index: 2;
    position: relative;
    background: rgba(255, 255, 255, 0.01);
    border: 1px solid rgba(255, 255, 255, 0.03);
    border-radius: 2rem;
    padding: 4rem 3rem 2rem 3rem;
    backdrop-filter: blur(5px);
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.hero h1 {
    font-size: clamp(3rem, 8vw, 6rem);
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #ffffff;
    line-height: 1.1;
    letter-spacing: -0.02em;
    text-shadow: 0 0 30px rgba(255, 255, 255, 0.3);
}

.hero p {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 2.5rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-primary {
    background: linear-gradient(135deg, rgba(120, 119, 198, 0.9), rgba(255, 119, 198, 0.9));
    color: white;
    padding: 1.25rem 2.5rem;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 1rem;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    box-shadow: 
        0 8px 25px rgba(120, 119, 198, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 
        0 15px 35px rgba(120, 119, 198, 0.6),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
    background: linear-gradient(135deg, rgba(120, 119, 198, 1), rgba(255, 119, 198, 1));
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.9);
    padding: 1.25rem 2.5rem;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 1rem;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    color: #ffffff;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.2);
}

/* In-app browser environment detection */
@supports (-webkit-touch-callout: none) {
    @media (max-width: 768px) {
        .hero {
            padding-top: max(8rem, env(safe-area-inset-top, 8rem)) !important; /* Extra space for iOS in-app browsers */
        }
    }
}

/* Android in-app browsers (Chrome Custom Tabs, WebView) */
@media (max-width: 768px) and (pointer: coarse) {
    .hero {
        padding-top: 7rem !important; /* Space for Android in-app browsers */
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .hero {
        padding: 1rem;
        padding-top: 6rem; /* Extra space for in-app browsers */
        min-height: 100vh;
    }

    .hero-content {
        padding: 3rem 2rem;
        margin-top: 2rem; /* Additional space from fixed header */
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .btn-primary,
    .btn-secondary {
        width: 100%;
        max-width: 300px;
    }
}

/* Floating Elements */
.floating-element {
    position: absolute;
    opacity: 0.6;
    font-size: 2rem;
    animation: float 6s ease-in-out infinite;
    filter: drop-shadow(0 0 10px rgba(120, 119, 198, 0.5));
}

.floating-element:nth-child(1) {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.floating-element:nth-child(2) {
    top: 22%;
    right: 10%;
    animation-delay: 3s;
}

.floating-element:nth-child(3) {
    bottom: 20%;
    left: 20%;
    animation-delay: 4s;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
    }
    50% {
        transform: translateY(-20px) rotate(5deg);
    }
}

/* Glass effect utilities */
.glass {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(15px);
    border-radius: 1rem;
}

.glass-dark {
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border-radius: 1rem;
}

/* Glow effects */
.glow {
    box-shadow: 0 0 20px rgba(59, 58, 105, 0.3);
}

.glow-pink {
    box-shadow: 0 0 20px rgba(255, 119, 198, 0.3);
}

/* Features Section */
.features {
    padding: 4rem 2rem 8rem 2rem;
    position: relative;
    overflow: hidden;
    background: #ffffff;
    color: #1a1a2e;
}

.features::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 70% 30%, rgba(120, 119, 198, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 30% 70%, rgba(255, 119, 198, 0.05) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

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

.features h2 {
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 500;
    text-align: center;
    margin-bottom: 4rem;
    color: #1a1a2e;
    text-shadow: none;
}

/* CTA Section */
.cta-section {
    text-align: center;
    margin: 4rem auto;
    max-width: 400px;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    background: linear-gradient(135deg, #7c77c6, #ff7ecb);
    color: white;
    padding: 1.25rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-size: 1.2rem;
    font-weight: 600;
    transition: all 0.4s ease;
    box-shadow: 0 8px 25px rgba(120, 119, 198, 0.3);
    position: relative;
    overflow: hidden;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.cta-button:hover::before {
    left: 100%;
}

.cta-button:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 15px 35px rgba(120, 119, 198, 0.4);
}

.cta-text {
    font-size: 1.2rem;
    font-weight: 600;
}

.cta-arrow {
    font-size: 1.5rem;
    transition: transform 0.3s ease;
}

.cta-button:hover .cta-arrow {
    transform: translateX(5px);
}

/* Responsive CTA */
@media (max-width: 768px) {
    .cta-section {
        margin: 3rem auto;
        max-width: 90%;
    }

    .cta-button {
        padding: 1rem 2rem;
        font-size: 1.1rem;
    }

    .cta-text {
        font-size: 1.1rem;
    }

    .cta-arrow {
        font-size: 1.3rem;
    }
}

/* How It Works Glass Container */
.how-it-works-glass {
    background: linear-gradient(135deg, rgba(120, 119, 198, 0.03) 0%, rgba(255, 119, 198, 0.02) 50%, rgba(120, 119, 198, 0.03) 100%);
    border: 1px solid rgba(120, 119, 198, 0.05);
    border-radius: 2rem;
    padding: 4rem;
    backdrop-filter: blur(5px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.02);
    margin: 6rem 0 0;
    max-width: 100vw;
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    position: relative;
    overflow: hidden;
}

.how-it-works-glass::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(120, 119, 198, 0.03) 0%, rgba(255, 119, 198, 0.02) 100%);
    pointer-events: none;
}

.how-it-works-glass h2 {
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 500;
    text-align: center;
    margin-bottom: 4rem;
    color: #1a1a2e;
    text-shadow: none;
}

.features-grid {
    background: rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(120, 119, 198, 0.15);
    border-radius: 2rem;
    padding: 4rem;
    backdrop-filter: blur(15px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 4rem;
    margin: 4rem auto 0;
    max-width: 1200px;
    position: relative;
    overflow: hidden;
}

.features-grid::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(120, 119, 198, 0.03) 0%, rgba(255, 119, 198, 0.02) 100%);
    pointer-events: none;
}

.feature-card {
    background: transparent;
    border: none;
    border-radius: 0;
    padding: 0;
    backdrop-filter: none;
    transition: all 0.4s ease;
    position: relative;
    overflow: visible;
    box-shadow: none;
    text-align: center;
    width: 100%;
}

.feature-card:hover {
    transform: translateY(-4px);
}

.feature-card:hover .feature-icon {
    transform: scale(1.1);
    filter: drop-shadow(0 0 15px rgba(120, 119, 198, 0.5));
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    display: block;
    filter: drop-shadow(0 0 10px rgba(120, 119, 198, 0.3));
    transition: all 0.4s ease;
}

.feature-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #1a1a2e;
    line-height: 1.3;
}

.feature-card p {
    color: rgba(26, 26, 46, 0.8);
    line-height: 1.6;
    font-size: 1rem;
}

/* Responsive Design for Features */
@media (max-width: 768px) {
    .features {
        padding: 4rem 1rem;
    }

    .features h2 {
        font-size: 2.5rem;
        margin-bottom: 3rem;
    }

    .features-grid {
        flex-direction: column;
        gap: 2rem;
        padding: 2rem;
        max-width: 100%;
    }

    .feature-icon {
        font-size: 2.5rem;
        margin-bottom: 1rem;
    }
}

/* Steps Container within Features */

.steps-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.step {
    background: transparent;
    border: none;
    border-radius: 0;
    padding: 2rem;
    text-align: center;
    flex: 1;
    max-width: 300px;
    min-width: 250px;
    backdrop-filter: none;
    box-shadow: none;
    transition: all 0.4s ease;
    position: relative;
    overflow: visible;
}

.step:hover {
    transform: translateY(-4px);
}

.step:hover .step-number {
    transform: scale(1.1);
    box-shadow: 0 8px 25px rgba(120, 119, 198, 0.4);
}

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #7c77c6, #ff7ecb);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 1.5rem;
    box-shadow: 0 4px 15px rgba(120, 119, 198, 0.3);
}

.step h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #1a1a2e;
}

.step p {
    color: rgba(26, 26, 46, 0.8);
    line-height: 1.6;
    font-size: 1rem;
}

.step-arrow {
    font-size: 2rem;
    color: rgba(120, 119, 198, 0.6);
    font-weight: bold;
    animation: pulse 2s infinite;
}

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

/* Responsive Design for Steps */
@media (max-width: 768px) {
    .how-it-works-glass {
        padding: 2rem;
        margin: 4rem 0 0;
        max-width: 100vw;
        width: 100vw;
        margin-left: calc(-50vw + 50%);
    }

    .steps-container {
        flex-direction: column;
        gap: 2rem;
    }

    .step {
        max-width: 100%;
        padding: 1rem;
    }

    .step-arrow {
        display: none;
    }
}

/* Pricing Section */
.pricing {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f0f23 100%);
    color: #ffffff;
    padding: 8rem 2rem;
    position: relative;
    overflow: hidden;
}

.pricing::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 80%, rgba(120, 119, 198, 0.2) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 119, 198, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(120, 119, 198, 0.15) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

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

.pricing h2 {
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 700;
    text-align: center;
    margin-bottom: 1rem;
    color: #ffffff;
    text-shadow: 0 0 30px rgba(255, 255, 255, 0.2);
}

.pricing-subtitle {
    font-size: 1.25rem;
    text-align: center;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 4rem;
}

.pricing-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.pricing-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 2rem;
    padding: 3rem 2rem;
    text-align: center;
    backdrop-filter: blur(15px);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    min-height: 580px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.pricing-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(120, 119, 198, 0.05) 0%, rgba(255, 119, 198, 0.02) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.pricing-card:hover {
    transform: translateY(-8px);
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.2);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.pricing-card:hover::before {
    opacity: 1;
}

.pricing-card.popular {
    border-color: rgba(120, 119, 198, 0.5);
    background: rgba(120, 119, 198, 0.1);
    transform: scale(1.05);
    min-height: 620px;
}

.pricing-card.popular:hover {
    transform: scale(1.05) translateY(-8px);
}

.popular-badge {
    position: absolute;
    top: -1px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #7c77c6, #ff7ecb);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 0 0 1rem 1rem;
    font-size: 0.875rem;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(120, 119, 198, 0.3);
}

.pricing-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #ffffff;
}

.price {
    font-size: 3rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 0.5rem;
}

.price span {
    font-size: 1rem;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.7);
}

.price-description {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 2rem;
    font-size: 0.95rem;
}

.features-list {
    list-style: none;
    margin-bottom: 2rem;
    text-align: center;
}

.features-list li {
    padding: 0.5rem 0;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.95rem;
    line-height: 1.5;
}

.pricing-btn {
    width: 100%;
    padding: 1rem 2rem;
    border-radius: 1rem;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    text-decoration: none;
    display: inline-block;
}

.pricing-btn.primary {
    background: linear-gradient(135deg, #7c77c6, #ff7ecb);
    color: white;
    box-shadow: 0 4px 15px rgba(120, 119, 198, 0.3);
}

.pricing-btn.primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(120, 119, 198, 0.4);
}

.pricing-btn.secondary {
    background: rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.pricing-btn.secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    color: #ffffff;
    transform: translateY(-2px);
}


/* Responsive Design for Pricing */
@media (max-width: 768px) {
    .pricing {
        padding: 4rem 1rem;
    }

    .pricing h2 {
        font-size: 2.5rem;
        margin-bottom: 1rem;
    }

    .pricing-subtitle {
        margin-bottom: 3rem;
    }

    .pricing-cards {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .pricing-card {
        padding: 2rem 1.5rem;
    }

    .pricing-card.popular {
        transform: none;
    }

    .pricing-card.popular:hover {
        transform: translateY(-8px);
    }

    .price {
        font-size: 2.5rem;
    }
}

/* Footer Section */
.footer {
    background: #0f0f23;
    color: rgba(255, 255, 255, 0.8);
    padding: 4rem 2rem 2rem;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 30% 20%, rgba(120, 119, 198, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 70% 80%, rgba(255, 119, 198, 0.05) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

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

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 3rem;
    gap: 4rem;
}

.footer-left {
    flex: 1;
}

.footer-logo {
    font-size: 1.8rem;
    font-weight: 700;
    background: linear-gradient(135deg, #7c77c6, #ff7ecb);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
}

.footer-description {
    color: rgba(255, 255, 255, 0.6);
    font-size: 1rem;
    line-height: 1.5;
}

.footer-links {
    display: flex;
    gap: 3rem;
    justify-content: center;
}

.footer-column h4 {
    color: #ffffff;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.footer-column ul {
    list-style: none;
}

.footer-column ul li {
    margin-bottom: 0.5rem;
}

.footer-column ul li a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 0.95rem;
}

.footer-column ul li a:hover {
    color: #7c77c6;
}

.footer-column ul li:not(:has(a)) {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
}

.contact-person {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
    margin-bottom: 1rem !important;
}

.contact-person .name {
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
    font-size: 0.95rem;
}

.contact-person a {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
    margin-left: 0;
}

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

.footer-bottom p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
    margin: 0;
}

/* Responsive Design for Footer */
@media (max-width: 768px) {
    .footer {
        padding: 3rem 1rem 2rem;
        text-align: center;
    }

    .footer-container {
        text-align: center;
    }

    .footer-content {
        flex-direction: column;
        gap: 2rem;
        margin-bottom: 2rem;
        text-align: center;
        align-items: center;
    }

    .footer-left {
        margin-bottom: 1rem;
        text-align: center;
        width: 100%;
    }

    .footer-logo {
        text-align: center;
    }

    .footer-description {
        text-align: center;
    }

    .footer-links {
        flex-direction: column;
        gap: 2rem;
        justify-content: center;
        align-items: center;
        width: 100%;
    }

    .footer-column {
        text-align: center;
        width: 100%;
    }

    .footer-column h4 {
        text-align: center;
    }

    .footer-column ul {
        text-align: center;
    }

    .footer-column h4 {
        margin-bottom: 0.75rem;
        font-size: 1rem;
    }

    .footer-column ul li {
        margin-bottom: 0.4rem;
    }

    .footer-column ul li a,
    .footer-column ul li {
        font-size: 0.85rem;
    }

    .contact-person {
        margin-bottom: 0.75rem !important;
    }

    .contact-person .name {
        font-size: 0.85rem;
    }

    .contact-person a {
        font-size: 0.75rem;
    }

    .footer-logo {
        font-size: 1.5rem;
    }

    .footer-description {
        font-size: 0.9rem;
        margin-bottom: 0;
    }

    .footer-bottom {
        padding-top: 1.5rem;
    }

    .footer-bottom p {
        font-size: 0.8rem;
    }
}

/* Extra small phones */
@media (max-width: 480px) {
    .footer {
        padding: 2rem 1rem 1.5rem;
    }

    .footer-links {
        flex-direction: column;
        gap: 1.5rem;
    }

    .footer-content {
        gap: 1.5rem;
        margin-bottom: 1.5rem;
        text-align: center;
    }

    .footer-left {
        text-align: center;
    }

    .footer-logo {
        font-size: 1.3rem;
    }

    .footer-description {
        font-size: 0.85rem;
    }

    .footer-column h4 {
        font-size: 0.95rem;
        margin-bottom: 0.5rem;
    }

    .footer-column ul li a,
    .footer-column ul li {
        font-size: 0.8rem;
    }

    .contact-person .name {
        font-size: 0.8rem;
    }

    .contact-person a {
        font-size: 0.7rem;
    }

    .footer-bottom {
        padding-top: 1rem;
    }

    .footer-bottom p {
        font-size: 0.75rem;
    }
}

/* Waitlist Modal */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.modal-overlay.active {
    display: flex;
    opacity: 1;
    visibility: visible;
}

.modal-container {
    position: relative;
    max-width: 500px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    transform: scale(0.8) translateY(50px);
    transition: all 0.3s ease;
}

.modal-overlay.active .modal-container {
    transform: scale(1) translateY(0);
}

.modal-content {
    background: linear-gradient(135deg, rgba(26, 26, 46, 0.95) 0%, rgba(22, 33, 62, 0.95) 100%);
    border: 2px solid rgba(255, 215, 0, 0.3);
    border-radius: 2rem;
    padding: 3rem;
    backdrop-filter: blur(20px);
    box-shadow: 
        0 25px 50px rgba(0, 0, 0, 0.5),
        0 0 30px rgba(255, 215, 0, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    position: relative;
    color: #ffffff;
}

.modal-close {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    cursor: pointer;
    z-index: 10;
    justify-content: center;
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.5rem;
    transition: all 0.3s ease;
}

.modal-close:hover {
    background: rgba(255, 255, 255, 0.2);
    color: #ffffff;
    transform: scale(1.1);
}

.modal-header {
    text-align: center;
    margin-bottom: 2rem;
}

.modal-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    filter: drop-shadow(0 0 20px rgba(120, 119, 198, 0.5));
}

.modal-header h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    background: linear-gradient(135deg, #7c77c6, #ff7ecb);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.modal-header p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.1rem;
    line-height: 1.5;
}

.modal-body {
    margin-top: 2rem;
}

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

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
    font-size: 0.95rem;
}

.form-group input {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 1rem;
    padding: 1rem 1.5rem;
    color: #ffffff;
    font-size: 1rem;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.form-group input:focus {
    outline: none;
    border-color: rgba(120, 119, 198, 0.5);
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 0 0 3px rgba(120, 119, 198, 0.1);
}

.form-group input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.submit-btn {
    background: linear-gradient(135deg, #7c77c6, #ff7ecb);
    border: 1px solid rgba(255, 215, 0, 0.4);
    border-radius: 1rem;
    padding: 1.25rem 2rem;
    color: white;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 1rem;
    position: relative;
    overflow: hidden;
    box-shadow: 0 0 15px rgba(255, 215, 0, 0.3);
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(120, 119, 198, 0.4), 0 0 20px rgba(255, 215, 0, 0.4);
}

.submit-btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}

.success-message,
.error-message {
    text-align: center;
    padding: 2rem;
    border-radius: 1rem;
    margin-top: 1rem;
}

.success-message {
    background: rgba(34, 197, 94, 0.1);
    border: 1px solid rgba(34, 197, 94, 0.3);
}

.error-message {
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.3);
}

.success-icon,
.error-icon {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.success-message h3,
.error-message h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.success-message p,
.error-message p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1rem;
}

/* Responsive Modal */
@media (max-width: 768px) {
    .modal-container {
        width: 95%;
    }

    .modal-content {
        padding: 2rem;
    }

    .modal-header h2 {
        font-size: 1.5rem;
    }

    .modal-header p {
        font-size: 1rem;
    }

    .modal-icon {
        font-size: 2.5rem;
    }

    .form-group input {
        padding: 0.875rem 1.25rem;
    }

    .submit-btn {
        padding: 1rem 1.5rem;
        font-size: 1rem;
    }
}