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

:root {
    --primary-pink: #FF6B9D;
    --primary-orange: #FF8A5B;
    --light-pink: #FFE5F0;
    --light-orange: #FFE8D6;
    --dark-pink: #E91E63;
    --dark-orange: #FF5722;
    --text-dark: #2C3E50;
    --text-light: #7F8C8D;
    --white: #FFFFFF;
    --black: #000000;
    --gradient-bg: linear-gradient(135deg, #FFE5F0 0%, #FFE8D6 100%);
    --gradient-primary: linear-gradient(135deg, var(--primary-pink) 0%, var(--primary-orange) 100%);
    --shadow-light: 0 4px 20px rgba(255, 107, 157, 0.1);
    --shadow-medium: 0 8px 30px rgba(255, 107, 157, 0.2);
    --shadow-heavy: 0 20px 60px rgba(255, 107, 157, 0.3);
    --border-radius: 20px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    overflow-x: hidden;
}

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

/* Typography */
.text-pink { color: var(--primary-pink); }
.text-orange { color: var(--primary-orange); }

h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.2;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    border-radius: var(--border-radius);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    font-size: 16px;
}

.btn-primary {
    background: var(--gradient-primary);
    color: var(--white);
    box-shadow: var(--shadow-medium);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-heavy);
}

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

.btn-secondary:hover {
    background: var(--primary-orange);
    color: var(--white);
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    color: var(--primary-pink);
    border: 2px solid var(--primary-pink);
    padding: 12px 24px;
}

.btn-outline:hover {
    background: var(--primary-pink);
    color: var(--white);
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    z-index: 1000;
    padding: 15px 0;
    transition: var(--transition);
}

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

.nav-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    /* gap: 12px;
    font-size: 24px;
    font-weight: 700;
    color: var(--text-dark); */
}

.nav-logo .logo-image {
    display: inline-block;
    height: 60px;
    width: auto;
}

.logo-icon {
    position: relative;
    width: 40px;
    height: 40px;
}

.logo-shape {
    position: absolute;
    width: 20px;
    height: 20px;
    border-radius: 50%;
}

.logo-shape.left {
    background: var(--primary-orange);
    left: 0;
    top: 0;
}

.logo-shape.right {
    background: var(--primary-pink);
    right: 0;
    bottom: 0;
}

.logo-bubble {
    position: absolute;
    width: 8px;
    height: 8px;
    background: var(--white);
    border-radius: 50%;
}

.logo-bubble.left-bubble {
    left: 6px;
    top: 6px;
}

.logo-bubble.right-bubble {
    right: 6px;
    bottom: 6px;
}

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

.nav-link {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    transition: var(--transition);
    position: relative;
}

.nav-link:hover {
    color: var(--primary-pink);
}

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

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

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 3px;
    background: var(--text-dark);
    margin: 3px 0;
    transition: var(--transition);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    background: var(--gradient-bg);
    display: flex;
    align-items: center;
    position: relative;
    padding-top: 100px;
}

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

.hero-title {
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 24px;
    line-height: 1.1;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-light);
    margin-bottom: 40px;
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

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

.hero-illustration {
    position: relative;
    width: 400px;
    height: 300px;
}

.table {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
}

.table-top {
    width: 200px;
    height: 20px;
    background: var(--black);
    border-radius: 10px;
}

.table-leg {
    width: 20px;
    height: 80px;
    background: var(--black);
    margin: 0 auto;
    border-radius: 10px;
}

.person {
    position: absolute;
    bottom: 100px;
}

.person-left {
    left: 50px;
}

.person-right {
    right: 50px;
}

.person-head {
    width: 40px;
    height: 40px;
    background: #FFB3B3;
    border-radius: 50%;
    margin: 0 auto 10px;
}

.person-body {
    width: 60px;
    height: 80px;
    background: var(--primary-pink);
    border-radius: 30px 30px 0 0;
    margin: 0 auto;
}

.person-right .person-body {
    background: var(--primary-orange);
}

.person-arm {
    position: absolute;
    top: 20px;
    width: 20px;
    height: 40px;
    background: #FFB3B3;
    border-radius: 10px;
}

.person-left .person-arm {
    right: -10px;
    transform: rotate(-30deg);
}

.person-right .person-arm {
    left: -10px;
    transform: rotate(30deg);
}

.glass {
    position: absolute;
    top: 30px;
    width: 15px;
    height: 25px;
    background: var(--white);
    border-radius: 0 0 15px 15px;
    border: 2px solid #E0E0E0;
}

.person-left .glass {
    right: -20px;
}

.person-right .glass {
    left: -20px;
}

.speech-bubble {
    position: absolute;
    top: -30px;
    left: 50%;
    transform: translateX(-50%);
    width: 30px;
    height: 30px;
    background: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-pink);
    font-size: 14px;
}

.person-right .speech-bubble {
    color: var(--primary-orange);
}

.bottle {
    position: absolute;
    bottom: 120px;
    left: 50%;
    transform: translateX(-50%);
    width: 20px;
    height: 40px;
    background: #8B4513;
    border-radius: 10px;
}

.plates {
    position: absolute;
    bottom: 110px;
}

.plate {
    width: 30px;
    height: 30px;
    background: var(--white);
    border-radius: 50%;
    border: 2px solid #E0E0E0;
}

.plate:first-child {
    position: absolute;
    left: -80px;
}

.plate:last-child {
    position: absolute;
    right: -80px;
}

.hero-bg-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.floating-element {
    position: absolute;
    width: 100px;
    height: 100px;
    background: rgba(255, 107, 157, 0.1);
    border-radius: 50%;
    animation: float 6s ease-in-out infinite;
}

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

.floating-element:nth-child(2) {
    top: 60%;
    right: 15%;
    animation-delay: 2s;
}

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

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

/* Sections */
section {
    padding: 100px 0;
}

.section-title {
    text-align: center;
    font-size: 3rem;
    margin-bottom: 20px;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-subtitle {
    text-align: center;
    font-size: 1.25rem;
    color: var(--text-light);
    margin-bottom: 60px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Features Section */
.features {
    background: var(--white);
}

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

.feature-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: var(--border-radius);
    text-align: center;
    box-shadow: var(--shadow-light);
    transition: var(--transition);
    border: 1px solid rgba(255, 107, 157, 0.1);
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-medium);
}

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

.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 16px;
    color: var(--text-dark);
}

.feature-card p {
    color: var(--text-light);
    line-height: 1.6;
}

/* How It Works Section */
.how-it-works {
    background: var(--gradient-bg);
}

.steps-container {
    display: flex;
    flex-direction: column;
    gap: 40px;
    margin-top: 60px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.step {
    display: flex;
    align-items: center;
    gap: 30px;
    padding: 30px;
    background: var(--white);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-light);
    transition: var(--transition);
}

.step:hover {
    transform: translateX(10px);
    box-shadow: var(--shadow-medium);
}

.step-number {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
    color: var(--white);
    flex-shrink: 0;
}

.step-content h3 {
    font-size: 1.5rem;
    margin-bottom: 8px;
    color: var(--text-dark);
}

.step-content p {
    color: var(--text-light);
    line-height: 1.6;
}

/* Partners Section */
.partners {
    background: var(--white);
}

.partners-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.partner-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: var(--border-radius);
    text-align: center;
    box-shadow: var(--shadow-light);
    transition: var(--transition);
    border: 1px solid rgba(255, 138, 91, 0.1);
}

.partner-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-medium);
}

.partner-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-orange), var(--dark-orange));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    font-size: 32px;
    color: var(--white);
}

.partner-card h3 {
    font-size: 1.5rem;
    margin-bottom: 16px;
    color: var(--text-dark);
}

.partner-card p {
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 24px;
}

/* Download Section */
.download {
    background: var(--gradient-primary);
    color: var(--white);
    text-align: center;
}

.download-content h2 {
    font-size: 3rem;
    margin-bottom: 20px;
}

.download-content p {
    font-size: 1.25rem;
    margin-bottom: 40px;
    opacity: 0.9;
}

.download-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.download-btn {
    display: flex;
    align-items: center;
    gap: 15px;
    background: var(--white);
    color: var(--text-dark);
    padding: 20px 30px;
    border-radius: var(--border-radius);
    text-decoration: none;
    transition: var(--transition);
    box-shadow: var(--shadow-medium);
}

.download-btn:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-heavy);
}

.download-btn i {
    font-size: 32px;
    color: var(--primary-orange);
}

.download-text {
    display: flex;
    flex-direction: column;
    text-align: left;
}

.download-label {
    font-size: 12px;
    opacity: 0.7;
}

.download-platform {
    font-size: 18px;
    font-weight: 600;
}

/* Footer */
.footer {
    background: var(--text-dark);
    color: var(--white);
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 20px;
}

.footer-logo .logo-image {
    display: inline-block;
    height: 60px;
    width: auto;
}

.footer-logo .logo-icon {
    width: 32px;
    height: 32px;
}

.footer-logo .logo-shape {
    width: 16px;
    height: 16px;
}

.footer-logo .logo-bubble {
    width: 6px;
    height: 6px;
}

.footer-section h4 {
    margin-bottom: 20px;
    font-size: 1.2rem;
}

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

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section ul li a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: var(--transition);
}

.footer-section ul li a:hover {
    color: var(--primary-pink);
}

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

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 100%;
        flex-direction: column;
        background-color: var(--white);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: var(--shadow-medium);
        padding: 20px 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-toggle {
        display: flex;
    }

    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }

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

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

    .features-grid {
        grid-template-columns: 1fr;
    }

    .step {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }

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

    .partners-grid {
        grid-template-columns: 1fr;
    }

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

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .hero-title {
        font-size: 2rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .btn {
        padding: 14px 24px;
        font-size: 14px;
    }

    .feature-card,
    .partner-card {
        padding: 30px 20px;
    }
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Animation Classes */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease-out;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--light-pink);
}

::-webkit-scrollbar-thumb {
    background: var(--gradient-primary);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--dark-pink);
}

/* Selection styling */
::selection {
    background: var(--primary-pink);
    color: var(--white);
}

::-moz-selection {
    background: var(--primary-pink);
    color: var(--white);
}

/* Focus styles for accessibility */
.btn:focus,
.nav-link:focus {
    outline: 2px solid var(--primary-pink);
    outline-offset: 2px;
}

/* Enhanced hover effects */
.feature-card:hover .feature-icon {
    transform: scale(1.1) rotate(5deg);
}

.partner-card:hover .partner-icon {
    transform: scale(1.1) rotate(-5deg);
}

/* Loading animation enhancement */
@keyframes shimmer {
    0% { background-position: -200px 0; }
    100% { background-position: calc(200px + 100%) 0; }
}

.loading-shimmer {
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 200px 100%;
    animation: shimmer 1.5s infinite;
}

/* Enhanced mobile menu animation */
.nav-menu {
    /* transform: translateX(-100%); */
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-menu.active {
    transform: translateX(0);
}

/* Improved button states */
.btn:active {
    transform: scale(0.98);
}

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

/* Enhanced card shadows */
.feature-card,
.partner-card,
.step {
    box-shadow: 0 4px 20px rgba(255, 107, 157, 0.1);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.feature-card:hover,
.partner-card:hover {
    box-shadow: 0 20px 60px rgba(255, 107, 157, 0.2);
}

.step:hover {
    box-shadow: 0 15px 45px rgba(255, 107, 157, 0.15);
}

/* Smooth page transitions */
.page-transition {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease-out;
}

.page-transition.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Enhanced typography */
.hero-title {
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.section-title {
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}

/* Improved mobile responsiveness */
@media (max-width: 768px) {
    .hero-illustration {
        width: 300px;
        height: 225px;
    }
    
    .floating-element {
        width: 60px;
        height: 60px;
    }
    
    .step {
        margin: 0 10px;
    }
}

@media (max-width: 480px) {

    .hero-visual {
        margin-top: 50px;
    }
    .hero-illustration {
        width: 250px;
        height: 188px;
    }
    
    .floating-element {
        width: 40px;
        height: 40px;
    }
    
    .nav-container {
        padding: 0 15px;
    }
    
    .hero-container {
        padding: 0 15px;
    }
    
    .countdown-timer {
        gap: 15px;
    }
    
    .countdown-item {
        min-width: 70px;
    }
    
    .countdown-number {
        font-size: 2rem;
    }
    
    .coming-soon-badges {
        flex-direction: column;
        align-items: center;
    }
}

/* Waitlist Section */
.waitlist {
    background: var(--gradient-bg);
    padding: 120px 0;
}

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

.waitlist-content h2 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.launch-date {
    font-size: 1.5rem;
    color: var(--text-dark);
    margin-bottom: 40px;
    font-weight: 500;
}

/* Countdown Timer */
.countdown-container {
    background: var(--white);
    padding: 40px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-medium);
    margin-bottom: 50px;
    border: 2px solid rgba(255, 107, 157, 0.1);
}

.countdown-container h3 {
    font-size: 1.8rem;
    margin-bottom: 30px;
    color: var(--text-dark);
}

.countdown-timer {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.countdown-item {
    text-align: center;
    min-width: 100px;
}

.countdown-number {
    display: block;
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-pink);
    line-height: 1;
    margin-bottom: 10px;
}

.countdown-label {
    font-size: 1rem;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 500;
}

/* Waitlist Info */
.waitlist-info {
    margin-bottom: 50px;
}

.waitlist-info h3 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.waitlist-info p {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 30px;
    line-height: 1.6;
}

.benefits {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin: 0 auto;
    max-width: 600px;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 15px;
    background: var(--white);
    padding: 20px;
    border-radius: 15px;
    box-shadow: var(--shadow-light);
    border: 1px solid rgba(255, 107, 157, 0.1);
}

.benefit-item i {
    font-size: 24px;
    color: var(--primary-pink);
    width: 30px;
    text-align: center;
}

.benefit-item span {
    font-weight: 500;
    color: var(--text-dark);
}

/* Waitlist Form */
.waitlist-form-container {
    background: var(--white);
    padding: 50px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-medium);
    border: 2px solid rgba(255, 107, 157, 0.1);
    margin-bottom: 40px;
}

.form-header {
    text-align: center;
    margin-bottom: 40px;
}

.form-header h3 {
    font-size: 2rem;
    margin-bottom: 10px;
    color: var(--text-dark);
}

.form-header p {
    color: var(--text-light);
    font-size: 1.1rem;
}

/* Role Selector */
.role-selector {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 40px;
}

.role-option {
    cursor: pointer;
    position: relative;
}

.role-option input[type="radio"] {
    display: none;
}

.role-content {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 25px;
    border: 2px solid #E0E0E0;
    border-radius: 15px;
    transition: var(--transition);
    background: var(--white);
}

.role-option input[type="radio"]:checked + .role-content {
    border-color: var(--primary-pink);
    background: rgba(255, 107, 157, 0.05);
    box-shadow: var(--shadow-light);
}

.role-content i {
    font-size: 24px;
    color: var(--primary-pink);
    width: 30px;
    text-align: center;
}

.role-content strong {
    display: block;
    font-size: 1.1rem;
    color: var(--text-dark);
    margin-bottom: 5px;
}

.role-content small {
    color: var(--text-light);
    font-size: 0.9rem;
}

/* Form Fields */
.form-fields {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin-bottom: 40px;
}

.input-group {
    text-align: left;
}

.input-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: var(--text-dark);
}

.input-group input {
    width: 100%;
    padding: 15px;
    border: 2px solid #E0E0E0;
    border-radius: 10px;
    font-size: 16px;
    transition: var(--transition);
    background: var(--white);
}

.input-group input:focus {
    outline: none;
    border-color: var(--primary-pink);
    box-shadow: 0 0 0 3px rgba(255, 107, 157, 0.1);
}

.input-group input::placeholder {
    color: #B0B0B0;
}

.btn-large {
    padding: 20px 40px;
    font-size: 18px;
    font-weight: 600;
}

/* Success Message */
.success-message {
    background: var(--white);
    padding: 50px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-medium);
    border: 2px solid rgba(76, 175, 80, 0.2);
    text-align: center;
}

.success-icon {
    font-size: 4rem;
    color: #4CAF50;
    margin-bottom: 20px;
}

.success-message h3 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.success-message p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 30px;
    line-height: 1.6;
}

.success-details {
    text-align: left;
    background: rgba(76, 175, 80, 0.05);
    padding: 25px;
    border-radius: 15px;
    margin-bottom: 30px;
}

.success-details p {
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 15px;
}

.success-details ul {
    list-style: none;
    padding: 0;
}

.success-details li {
    padding: 8px 0;
    color: var(--text-light);
    border-bottom: 1px solid rgba(76, 175, 80, 0.1);
}

.success-details li:last-child {
    border-bottom: none;
}

.launch-reminder {
    font-size: 1.1rem;
    color: var(--text-dark);
    background: rgba(255, 107, 157, 0.1);
    padding: 20px;
    border-radius: 10px;
    border-left: 4px solid var(--primary-pink);
}

/* Coming Soon Badges */
.coming-soon-badges {
    display: flex;
    gap: 30px;
    justify-content: center;
    flex-wrap: wrap;
}

.coming-soon-badge {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    padding: 30px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    min-width: 150px;
}

.coming-soon-badge i {
    font-size: 48px;
    color: rgba(255, 255, 255, 0.8);
}

.coming-soon-badge span {
    font-size: 1.2rem;
    font-weight: 600;
}

.coming-soon-badge small {
    font-size: 0.9rem;
    opacity: 0.8;
    text-transform: uppercase;
    letter-spacing: 1px;
}

@media (max-width: 767px) {
    section {
        padding: 10vh 0;
    }
    .nav-menu {
        gap: 10px;
    }
    .nav-link {
        display: block;
        width: 100%;
        padding: 10px;
    }
    .role-selector {
        grid-template-columns: 1fr;
    }
    .waitlist {
        padding: 10vh 0;
    }
    .waitlist-content h2 {
        font-size: 2rem;
    }
    .waitlist-content h3 {
        font-size: 1.5rem;
    }
    .waitlist-form-container {
        padding: 25px 15px;
    }
    .download-content h2 {
        font-size: 2.5rem;
    }
} 