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

:root {
    --primary-color: #0000aa;
    --primary-dark: #000088;
    --primary-light: #3b82f6;
    --secondary-color: #3b82f6;
    --accent-blue: #2563eb;
    --text-dark: #1f2937;
    --text-medium: #4b5563;
    --text-light: #6b7280;
    --bg-light: #f3f4f6;
    --bg-white: #ffffff;
    --border-color: #e5e7eb;
    --error-color: #ef4444;
    --success-color: #4ade80;
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--bg-white);
}

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

/* Header */
.header {
    background-color: var(--bg-white);
    padding: 20px 0;
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 100;
}

.logo {
    display: flex;
    align-items: center;
}

.brand-name {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-color);
    letter-spacing: -0.5px;
}

/* Hero Section */
.hero-section {
    background-color: var(--primary-color);
    padding: 60px 0 80px;
    text-align: center;
    color: white;
}

.logo {
    display: inline-flex;
    align-items: center;
    color: white;
}

.logo-text {
    font-size: 18px;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.hero-title {
    font-size: 52px;
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.1;
    color: white;
}

.hero-subtitle {
    font-size: 20px;
    font-weight: 400;
    margin-bottom: 30px;
    opacity: 0.95;
}

.btn-waitlist {
    background-color: var(--secondary-color);
    color: white;
    padding: 14px 40px;
    font-size: 16px;
    font-weight: 600;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-waitlist:hover {
    background-color: #2563eb;
    transform: translateY(-2px);
    box-shadow: 0 8px 16px rgba(59, 130, 246, 0.3);
}

.hero-image-container {
    max-width: 600px;
    margin: 0 auto;
}

.hero-image {
    width: 100%;
    border-radius: 16px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.hero-badge {
    display: inline-block;
    background-color: rgba(251, 191, 36, 0.2);
    color: #fbbf24;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
    border: 2px solid #fbbf24;
}

.hero-description {
    font-size: 18px;
    line-height: 1.8;
    opacity: 0.9;
    max-width: 700px;
    margin: 0 auto 40px;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 60px;
    margin-top: 40px;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 36px;
    font-weight: 700;
    color: #fbbf24;
    margin-bottom: 5px;
}

.stat-label {
    font-size: 14px;
    opacity: 0.8;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Social Proof Section */
.social-proof {
    padding: 40px 0;
    background-color: var(--bg-white);
    border-bottom: 1px solid var(--border-color);
}

.social-proof-title {
    text-align: center;
    font-size: 14px;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 30px;
    font-weight: 600;
}

.companies-grid {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
}

.company-placeholder {
    padding: 15px 30px;
    background-color: var(--bg-light);
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    color: var(--text-medium);
    border: 2px solid var(--border-color);
}

/* Features Section */
.features-section {
    padding: 80px 0;
    background-color: var(--bg-white);
}

.features-title {
    font-size: 36px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 20px;
    line-height: 1.3;
}

.features-text {
    font-size: 16px;
    color: var(--text-medium);
    line-height: 1.7;
}

.btn-register {
    background-color: var(--secondary-color);
    color: white;
    padding: 12px 32px;
    font-size: 16px;
    font-weight: 600;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-register:hover {
    background-color: #2563eb;
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(59, 130, 246, 0.3);
}

.feature-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.feature-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
}

.feature-content {
    flex: 1;
}

.feature-title {
    font-size: 20px;
    font-weight: 700;
    color: #0ea5e9;
    margin-bottom: 10px;
}

.feature-description {
    font-size: 15px;
    color: var(--text-medium);
    line-height: 1.6;
}

/* Brands Section */
.brands-section {
    padding: 60px 0;
    background-color: var(--bg-white);
}

.brands-heading {
    font-size: 24px;
    font-weight: 700;
    color: #0ea5e9;
    margin-bottom: 40px;
}

.brand-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.brand-name {
    font-size: 14px;
    color: var(--text-medium);
    margin: 0;
}

/* About Section */
.about-section {
    padding: 80px 0;
    background-color: var(--bg-light);
}

.about-title {
    font-size: 32px;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 20px;
}

.about-text {
    font-size: 16px;
    color: var(--text-medium);
    line-height: 1.7;
}

.about-image {
    width: 100%;
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
}

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

.about-text {
    padding-right: 20px;
}

.about-description {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-medium);
    margin-bottom: 20px;
}

.about-highlights {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-top: 30px;
}

.highlight-item {
    font-size: 15px;
    font-weight: 500;
    color: var(--text-dark);
    padding: 10px;
    background-color: var(--bg-white);
    border-radius: 6px;
    border-left: 3px solid var(--primary-color);
}

.about-image {
    display: flex;
    align-items: center;
    justify-content: center;
}

.image-placeholder {
    width: 100%;
    height: 400px;
    background-color: var(--primary-color);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
    font-weight: 600;
    box-shadow: var(--shadow-xl);
}

/* Features Section */
.features {
    padding: 80px 0;
    background-color: var(--bg-white);
}

.section-title {
    font-size: 36px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 60px;
    color: var(--text-dark);
}

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

.feature-card {
    text-align: center;
    padding: 30px;
    border-radius: 12px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    background-color: var(--bg-light);
}

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

.feature-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.feature-title {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.feature-description {
    font-size: 16px;
    color: var(--text-medium);
    line-height: 1.6;
}

/* Footer CTA Section */
.footer-cta-section {
    padding: 80px 0;
    background-color: var(--primary-color);
    text-align: center;
    color: white;
}

.gift-icon {
    margin-bottom: 20px;
    color: white;
}

.footer-cta-title {
    font-size: 40px;
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.2;
    color: white;
}

.footer-cta-text {
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 30px;
    opacity: 0.95;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.bonus-features {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.bonus-feature {
    font-size: 16px;
    font-weight: 600;
    padding: 12px 24px;
    background-color: rgba(255, 255, 255, 0.2);
    border-radius: 30px;
    backdrop-filter: blur(10px);
}

/* Signup Section */
.signup {
    padding: 80px 0;
    background-color: var(--primary-color);
}

.signup-card {
    max-width: 600px;
    margin: 0 auto;
    background-color: var(--bg-white);
    padding: 50px;
    border-radius: 16px;
    box-shadow: var(--shadow-xl);
    animation: fadeInUp 0.8s ease-out;
}

.signup-title {
    font-size: 32px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.signup-description {
    text-align: center;
    font-size: 16px;
    color: var(--text-medium);
    margin-bottom: 30px;
}

.waitlist-form {
    margin-bottom: 20px;
}

.form-group {
    margin-bottom: 20px;
}

.form-input {
    width: 100%;
    padding: 16px 20px;
    font-size: 16px;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    outline: none;
}

.form-input:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.form-input.error {
    border-color: var(--error-color);
}

.error-message {
    display: block;
    color: var(--error-color);
    font-size: 14px;
    margin-top: 8px;
    min-height: 20px;
}

.submit-btn {
    width: 100%;
    padding: 16px 32px;
    font-size: 18px;
    font-weight: 600;
    color: white;
    background-color: var(--secondary-color);
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    box-shadow: var(--shadow-md);
}

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

.submit-btn:active {
    transform: translateY(0);
}

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

.success-message {
    padding: 20px;
    background-color: #d1fae5;
    border: 2px solid var(--success-color);
    border-radius: 8px;
    text-align: center;
    margin-top: 20px;
    animation: slideDown 0.3s ease-out;
}

.success-message p {
    color: #065f46;
    font-weight: 500;
    margin: 0;
}

.error-alert {
    padding: 20px;
    background-color: #fee2e2;
    border: 2px solid var(--error-color);
    border-radius: 8px;
    text-align: center;
    margin-top: 20px;
    animation: slideDown 0.3s ease-out;
}

.error-alert p {
    color: #991b1b;
    font-weight: 500;
    margin: 0;
}

.privacy-notice {
    text-align: center;
    font-size: 14px;
    color: var(--text-light);
    margin-top: 20px;
    line-height: 1.5;
}

/* Footer */
.footer {
    background-color: var(--bg-white);
    border-top: 1px solid var(--border-color);
    padding: 30px 0;
}

.footer-logo {
    display: flex;
    align-items: center;
    color: var(--text-dark);
    font-weight: 600;
}

.footer-powered {
    display: flex;
    align-items: center;
}

.footer-powered .text-muted {
    color: var(--text-light);
    font-size: 14px;
}

.footer-powered strong {
    color: var(--text-dark);
    font-size: 14px;
}

.footer-powered a {
    text-decoration: none;
    color: var(--text-dark);
    transition: color 0.3s ease;
}

.footer-powered a:hover {
    color: var(--primary-color);
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Waitlist Modal Styling */
.modal-content {
    border-radius: 16px;
    border: none;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.modal-header {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: white;
    border-top-left-radius: 16px;
    border-top-right-radius: 16px;
    padding: 24px 28px;
    border-bottom: none;
}

.modal-header .modal-title {
    font-size: 24px;
    font-weight: 700;
    letter-spacing: -0.5px;
}

.modal-header .btn-close {
    filter: brightness(0) invert(1);
    opacity: 0.8;
}

.modal-header .btn-close:hover {
    opacity: 1;
}

.modal-body {
    padding: 32px 28px;
    background-color: #fafbfc;
}

.modal-body .form-label {
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 8px;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.modal-body .form-control {
    border: 2px solid #e1e4e8;
    border-radius: 8px;
    padding: 12px 16px;
    font-size: 15px;
    transition: all 0.2s ease;
}

.modal-body .form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 4px rgba(61, 82, 213, 0.1);
    background-color: white;
}

.modal-body .form-control.is-invalid {
    border-color: var(--error-color);
    background-color: #fff5f5;
}

.modal-body .form-control.is-invalid:focus {
    box-shadow: 0 0 0 4px rgba(239, 68, 68, 0.1);
}

.modal-body .form-text {
    color: #6c757d;
    font-size: 13px;
    margin-top: 6px;
}

.modal-body .invalid-feedback {
    color: var(--error-color);
    font-size: 13px;
    font-weight: 500;
    margin-top: 6px;
}

.modal-body .mb-3 {
    margin-bottom: 24px;
}

.modal-footer {
    padding: 20px 28px;
    background-color: white;
    border-top: 1px solid #e1e4e8;
    border-bottom-left-radius: 16px;
    border-bottom-right-radius: 16px;
}

.modal-footer .btn {
    padding: 12px 28px;
    font-weight: 600;
    font-size: 15px;
    border-radius: 8px;
    transition: all 0.2s ease;
}

.modal-footer .btn-secondary {
    background-color: #6c757d;
    border: none;
}

.modal-footer .btn-secondary:hover {
    background-color: #5a6268;
    transform: translateY(-1px);
}

.modal-footer .btn-success {
    background: linear-gradient(135deg, var(--secondary-color) 0%, #2563eb 100%);
    border: none;
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
}

.modal-footer .btn-success:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(59, 130, 246, 0.4);
}

.modal-footer .btn-success:active {
    transform: translateY(0);
}

/* Success/Error Alerts in Modal */
.modal-body .alert {
    border-radius: 8px;
    font-weight: 500;
    animation: slideDown 0.3s ease-out;
}

.modal-body .alert-success {
    background-color: #d1fae5;
    border: 2px solid var(--secondary-color);
    color: #065f46;
}

.modal-body .alert-danger {
    background-color: #fee2e2;
    border: 2px solid var(--error-color);
    color: #991b1b;
}

/* Form Input Icons/Visual Enhancement */
.modal-body input[type="email"]::placeholder,
.modal-body input[type="tel"]::placeholder,
.modal-body input[type="text"]::placeholder {
    color: #9ca3af;
    font-style: italic;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-section {
        padding: 40px 0 60px;
    }

    .hero-title {
        font-size: 36px;
    }

    .hero-subtitle {
        font-size: 18px;
    }

    .features-section {
        padding: 60px 0;
    }

    .features-title {
        font-size: 28px;
    }

    .brands-section {
        padding: 40px 0;
    }

    .about-section {
        padding: 60px 0;
    }

    .about-title {
        font-size: 28px;
    }

    .footer-cta-section {
        padding: 60px 0;
    }

    .footer-cta-title {
        font-size: 32px;
    }

    .footer-cta-text {
        font-size: 16px;
    }
}

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

    .hero-title {
        font-size: 28px;
    }

    .hero-subtitle {
        font-size: 16px;
    }

    .features-title {
        font-size: 24px;
    }

    .footer-cta-title {
        font-size: 26px;
    }

    .btn-waitlist, .btn-register {
        padding: 12px 30px;
        font-size: 15px;
    }
}
