* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --teal-light: #00AAAA;
    --teal-medium: #008080;
    --teal-dark: #006464;
    --gray: #C0C0C0;
    --white: #EEEEEE;
    --orange: #EE2D00;
    --navy: #00324D;
    --navy-dark: #001F33;
}

body {
    font-family: 'Poppins', sans-serif;
    background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 50%, var(--teal-dark) 100%);
    color: var(--white);
    min-height: 100vh;
    line-height: 1.6;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

/* Header Styles */
header {
    text-align: center;
    padding: 40px 20px;
    animation: fadeInDown 1s ease-out;
}

.logo-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-bottom: 10px;
}

.logo {
    width: 80px;
    height: 80px;
    animation: float 3s ease-in-out infinite;
}

.brand-name {
    font-size: 3rem;
    font-weight: 700;
    color: var(--white);
    letter-spacing: 2px;
}

.brand-name .highlight {
    background: linear-gradient(90deg, var(--teal-light), var(--teal-medium));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    padding: 0 8px;
    border: 3px solid var(--teal-medium);
    border-radius: 8px;
}

.tagline {
    font-size: 1.2rem;
    color: var(--teal-light);
    font-weight: 300;
    letter-spacing: 1px;
}

/* Hero Section */
.hero-section {
    text-align: center;
    padding: 60px 20px;
    animation: fadeInUp 1s ease-out 0.3s both;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    background: linear-gradient(90deg, var(--teal-light), var(--white), var(--orange));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 20px;
    animation: glow 2s ease-in-out infinite alternate;
}

.hero-subtitle {
    font-size: 1.5rem;
    color: var(--gray);
    font-weight: 300;
}

/* Features Section */
.features-section {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    padding: 40px 20px;
    animation: fadeInUp 1s ease-out 0.6s both;
}

.feature-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left 0.5s;
}

.feature-card:hover::before {
    left: 100%;
}

.feature-card:hover {
    transform: translateY(-10px);
    border-color: var(--teal-light);
    box-shadow: 0 20px 40px rgba(0, 170, 170, 0.3);
}

.icon-circle {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: white;
}

.icon-circle.teal {
    background: linear-gradient(135deg, var(--teal-light), var(--teal-medium));
}

.icon-circle.navy {
    background: linear-gradient(135deg, #00324D, #005A8C);
}

.icon-circle.orange {
    background: linear-gradient(135deg, #EE2D00, #FF6B3D);
}

.feature-card h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
    color: var(--teal-light);
}

.feature-card p {
    color: var(--gray);
    font-size: 1rem;
    line-height: 1.8;
}

.coming-soon-tag {
    display: inline-block;
    background: var(--orange);
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 10px;
}

.coop-types {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    margin-top: 20px;
}

.badge {
    background: rgba(0, 170, 170, 0.2);
    border: 1px solid var(--teal-light);
    color: var(--teal-light);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
}

/* CTA Section */
.cta-section {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 30px;
    padding: 60px 40px;
    text-align: center;
    margin: 40px 20px;
    animation: fadeInUp 1s ease-out 0.9s both;
}

.cta-section h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    background: linear-gradient(90deg, var(--teal-light), var(--white));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.cta-description {
    font-size: 1.2rem;
    color: var(--gray);
    margin-bottom: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.benefits {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin: 40px 0;
    text-align: left;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    background: rgba(0, 170, 170, 0.1);
    border-radius: 10px;
    transition: all 0.3s ease;
}

.benefit-item:hover {
    background: rgba(0, 170, 170, 0.2);
    transform: translateX(10px);
}

.check-icon {
    width: 30px;
    height: 30px;
    background: var(--teal-light);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    flex-shrink: 0;
}

/* Notify Form */
.notify-form {
    margin-top: 60px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.notify-form h3 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: var(--teal-light);
}

.form-group {
    display: flex;
    gap: 10px;
    margin-bottom: 15px;
}

.form-group input {
    flex: 1;
    padding: 15px 20px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    background: rgba(255, 255, 255, 0.05);
    color: var(--white);
    font-size: 1rem;
    font-family: 'Poppins', sans-serif;
    transition: all 0.3s ease;
}

.form-group input:focus {
    outline: none;
    border-color: var(--teal-light);
    background: rgba(255, 255, 255, 0.1);
}

.form-group input::placeholder {
    color: var(--gray);
}

.btn-primary {
    padding: 15px 40px;
    background: linear-gradient(135deg, var(--teal-light), var(--teal-medium));
    color: white;
    border: none;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Poppins', sans-serif;
}

.btn-primary:hover {
    background: linear-gradient(135deg, var(--teal-medium), var(--teal-dark));
    transform: scale(1.05);
    box-shadow: 0 10px 30px rgba(0, 170, 170, 0.4);
}

.form-note {
    color: var(--gray);
    font-size: 0.9rem;
    margin-top: 10px;
}

/* Footer */
footer {
    text-align: center;
    padding: 40px 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 60px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-links {
    display: flex;
    gap: 30px;
}

.footer-links a {
    color: var(--gray);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--teal-light);
}

/* Animations */
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

@keyframes glow {
    from {
        text-shadow: 0 0 20px rgba(0, 170, 170, 0.5);
    }
    to {
        text-shadow: 0 0 30px rgba(0, 170, 170, 0.8), 0 0 40px rgba(0, 170, 170, 0.6);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .brand-name {
        font-size: 2rem;
    }

    .logo {
        width: 60px;
        height: 60px;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.2rem;
    }

    .features-section {
        grid-template-columns: 1fr;
    }

    .cta-section {
        padding: 40px 20px;
    }

    .cta-section h2 {
        font-size: 2rem;
    }

    .form-group {
        flex-direction: column;
    }

    .footer-content {
        flex-direction: column;
        text-align: center;
    }

    .benefits {
        grid-template-columns: 1fr;
    }
}
