/* CSS Reset */
* {
    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: #333;
    background-color: #ffffff;
    overflow-x: hidden;
}

/* Header */
.header {
    position: relative;
    background: #ffffff;
    padding: 30px 0;
    box-shadow: 0 2px 10px rgba(26, 42, 74, 0.1);
    z-index: 100;
}

.header-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    text-align: center;
}

.logo {
    height: 80px;
    width: auto;
    max-width: 500px;
}

/* Hero Section */
.hero-section {
    position: relative;
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #1A2A4A 0%, #2d4a6b 50%, #16a34a 100%);
    overflow: hidden;
}

.hero-container {
    position: relative;
    z-index: 10;
    text-align: center;
    padding: 80px 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.hero-title {
    font-size: clamp(2.5rem, 6vw, 5rem);
    font-weight: 800;
    color: #ffffff;
    line-height: 1.1;
    margin-bottom: 40px;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.highlight {
    color: #16a34a;
    text-shadow: 0 0 30px rgba(22, 163, 74, 0.5);
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.gradient-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(26, 42, 74, 0.9), rgba(22, 163, 74, 0.3));
}

.pattern-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.1) 1px, transparent 1px),
        radial-gradient(circle at 80% 80%, rgba(22, 163, 74, 0.2) 1px, transparent 1px);
    background-size: 60px 60px, 80px 80px;
    animation: floatPattern 20s linear infinite;
}

@keyframes floatPattern {
    0% { transform: translate(0, 0); }
    100% { transform: translate(60px, 60px); }
}

/* Content Section */
.content-section {
    background: #ffffff;
    padding: 100px 0;
}

.content-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
    text-align: center;
}

/* Subtitle Section */
.subtitle-section {
    margin-bottom: 80px;
}

.subtitle-section h2 {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    color: #1A2A4A;
    margin-bottom: 30px;
    font-weight: 700;
}

.subtitle-section p {
    font-size: clamp(1.1rem, 2vw, 1.3rem);
    color: #666;
    line-height: 1.8;
    max-width: 900px;
    margin: 0 auto;
}

/* Coming Soon */
.coming-soon {
    margin: 80px 0;
}

.coming-soon h3 {
    font-size: clamp(2rem, 5vw, 3.5rem);
    color: #1A2A4A;
    font-weight: 300;
    letter-spacing: -1px;
}

/* Waitlist Section */
.waitlist-section {
    background: linear-gradient(135deg, #f8fafc, #e2e8f0);
    border-radius: 20px;
    padding: 60px 40px;
    margin: 80px auto;
    max-width: 800px;
    box-shadow: 0 20px 40px rgba(26, 42, 74, 0.1);
}

.waitlist-section h4 {
    font-size: clamp(1.5rem, 3vw, 2rem);
    color: #1A2A4A;
    margin-bottom: 40px;
    font-weight: 700;
}

.waitlist-form {
    display: flex;
    flex-direction: column;
    gap: 25px;
    margin-bottom: 30px;
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    position: relative;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 18px 24px;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    font-size: 16px;
    background: #ffffff;
    transition: all 0.3s ease;
    font-family: inherit;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #1A2A4A;
    box-shadow: 0 0 0 3px rgba(26, 42, 74, 0.1);
    transform: translateY(-2px);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
    line-height: 1.6;
}

/* Checkbox Group */
.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    text-align: left;
    margin: 20px 0;
}

.checkbox-group input[type="checkbox"] {
    width: 20px;
    height: 20px;
    margin-top: 2px;
    accent-color: #1A2A4A;
    cursor: pointer;
}

.checkbox-group label {
    color: #666;
    font-size: 16px;
    line-height: 1.5;
    cursor: pointer;
    flex: 1;
}

.checkbox-group label:hover {
    color: #1A2A4A;
}

.recaptcha-container {
    display: flex;
    justify-content: center;
    margin: 30px 0;
}

.send-btn {
    background: linear-gradient(135deg, #1A2A4A, #16a34a);
    color: white;
    padding: 18px 50px;
    border: none;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    align-self: center;
    max-width: 200px;
    text-transform: uppercase;
    box-shadow: 0 10px 30px rgba(26, 42, 74, 0.3);
}

.send-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(26, 42, 74, 0.4);
    background: linear-gradient(135deg, #16a34a, #1A2A4A);
}

.send-btn:active {
    transform: translateY(-1px);
}

.privacy-notice {
    color: #666;
    font-size: 14px;
    line-height: 1.6;
    margin-top: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.privacy-notice a {
    color: #1A2A4A;
    text-decoration: none;
    font-weight: 600;
}

.privacy-notice a:hover {
    text-decoration: underline;
}

/* Footer */
.footer {
    background: linear-gradient(135deg, #1A2A4A, #0f1729);
    color: white;
    padding: 60px 0;
    text-align: center;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}

.footer p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 16px;
    margin-bottom: 20px;
}

.powered-by {
    margin-top: 20px;
}

.powered-by p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 10px;
}

.godaddy-text {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
}

.godaddy-text:hover {
    color: #16a34a;
}

/* Cookie Notice */
.cookie-notice {
    position: fixed;
    bottom: 30px;
    left: 30px;
    right: 30px;
    max-width: 500px;
    margin: 0 auto;
    background: linear-gradient(135deg, #1A2A4A, #2d4a6b);
    color: white;
    border-radius: 16px;
    box-shadow: 0 20px 40px rgba(26, 42, 74, 0.4);
    z-index: 1000;
    backdrop-filter: blur(10px);
    animation: slideUp 0.5s ease-out;
}

@keyframes slideUp {
    from {
        transform: translateY(100px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.cookie-content {
    padding: 25px;
}

.cookie-notice h4 {
    font-size: 18px;
    margin-bottom: 15px;
    color: white;
    font-weight: 700;
}

.cookie-notice p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 14px;
    margin-bottom: 20px;
    line-height: 1.5;
}

.accept-btn {
    background: #16a34a;
    color: white;
    padding: 12px 25px;
    border: none;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    text-transform: uppercase;
}

.accept-btn:hover {
    background: #15803d;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(22, 163, 74, 0.4);
}

.cookie-notice.hidden {
    display: none;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .header-container,
    .content-container,
    .footer-container {
        padding: 0 30px;
    }
    
    .waitlist-section {
        padding: 50px 30px;
        margin: 60px 20px;
    }
}

@media (max-width: 768px) {
    .header-container,
    .content-container,
    .footer-container {
        padding: 0 20px;
    }
    
    .hero-container {
        padding: 60px 20px;
    }
    
    .form-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .waitlist-section {
        padding: 40px 20px;
        margin: 40px 15px;
        border-radius: 15px;
    }
    
    .checkbox-group {
        flex-direction: column;
        gap: 10px;
        align-items: flex-start;
    }
    
    .checkbox-group input[type="checkbox"] {
        margin-top: 0;
    }
    
    .cookie-notice {
        left: 15px;
        right: 15px;
        bottom: 15px;
    }
    
    .cookie-content {
        padding: 20px;
    }
}

@media (max-width: 480px) {
    .logo {
        height: 60px;
    }
    
    .hero-container {
        padding: 40px 15px;
    }
    
    .content-container {
        padding: 0 15px;
    }
    
    .waitlist-section {
        padding: 30px 15px;
        margin: 30px 10px;
    }
    
    .send-btn {
        padding: 16px 40px;
        font-size: 14px;
        max-width: 180px;
    }
}
