@import url('https://fonts.googleapis.com/css2?family=JetBrains+Mono:wght@300;400;500;600;700;800&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'JetBrains Mono', monospace;
    line-height: 1.6;
    color: #e0e0e0;
    background: radial-gradient(ellipse at center, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
    min-height: 100vh;
    position: relative;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 20%, rgba(0, 255, 255, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255, 0, 255, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 40% 60%, rgba(255, 255, 0, 0.03) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 1;
}

/* Header */
header {
    background: rgba(26, 26, 46, 0.95);
    backdrop-filter: blur(20px);
    color: #e0e0e0;
    padding: 1rem 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 30px rgba(0, 255, 255, 0.2);
    border-bottom: 2px solid #00ffff;
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.8rem;
    font-weight: 800;
    color: #00ffff;
    text-transform: uppercase;
    letter-spacing: 3px;
    position: relative;
}

.logo::before {
    content: '◉';
    color: #ff00ff;
    margin-right: 8px;
}

.logo::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, #00ffff, #ff00ff);
    animation: pulse 2s ease-in-out infinite alternate;
}

@keyframes pulse {
    0% { opacity: 0.5; }
    100% { opacity: 1; }
}

nav a {
    color: #e0e0e0;
    text-decoration: none;
    margin-left: 2rem;
    font-weight: 500;
    transition: all 0.3s ease;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
}

nav a::before {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #00ffff;
    transition: width 0.3s ease;
}

nav a:hover::before {
    width: 100%;
}

nav a:hover {
    color: #00ffff;
}

/* Hero Section */
.hero {
    background: rgba(26, 26, 46, 0.3);
    backdrop-filter: blur(10px);
    color: #e0e0e0;
    padding: 120px 0 80px;
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-content h1 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.1;
    background: linear-gradient(45deg, #00ffff, #ff00ff, #ffff00);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradient-shift 3s ease-in-out infinite alternate;
}

@keyframes gradient-shift {
    0% { filter: hue-rotate(0deg); }
    100% { filter: hue-rotate(30deg); }
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    opacity: 0.9;
    line-height: 1.7;
    font-weight: 400;
    color: #b0b0b0;
}

.cta-button {
    background: linear-gradient(45deg, #00ffff, #ff00ff);
    color: #1a1a2e;
    border: none;
    padding: 16px 32px;
    font-size: 1.1rem;
    font-weight: 700;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(0, 255, 255, 0.3);
    text-transform: uppercase;
    letter-spacing: 1px;
    text-decoration: none;
    display: inline-block;
    font-family: inherit;
    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(-2px);
    box-shadow: 0 6px 30px rgba(0, 255, 255, 0.5);
}

.hero-image img {
    width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 20px 60px rgba(0, 255, 255, 0.2);
    border: 2px solid rgba(0, 255, 255, 0.3);
    filter: brightness(1.1) contrast(1.1);
}

/* About Section */
.about {
    padding: 120px 0;
    background: rgba(26, 26, 46, 0.6);
    backdrop-filter: blur(15px);
    color: #e0e0e0;
}

.about h2 {
    font-size: 3rem;
    text-align: center;
    margin-bottom: 4rem;
    color: #00ffff;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    position: relative;
}

.about h2::before,
.about h2::after {
    content: '▲';
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    color: #ff00ff;
    font-size: 1.5rem;
}

.about h2::before {
    left: -50px;
}

.about h2::after {
    right: -50px;
}

.about p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
    line-height: 1.8;
    color: #b0b0b0;
    font-weight: 400;
}

/* Benefits Section */
.benefits {
    padding: 120px 0;
    background: rgba(15, 52, 96, 0.4);
    backdrop-filter: blur(15px);
    color: #e0e0e0;
}

.benefits h2 {
    font-size: 3rem;
    text-align: center;
    margin-bottom: 4rem;
    color: #ff00ff;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem;
}

.benefit-card {
    background: rgba(26, 26, 46, 0.8);
    backdrop-filter: blur(20px);
    padding: 3rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 15px 40px rgba(0, 255, 255, 0.1);
    transition: all 0.3s ease;
    border: 2px solid rgba(0, 255, 255, 0.2);
    position: relative;
    overflow: hidden;
}

.benefit-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #00ffff, #ff00ff, #ffff00);
}

.benefit-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 60px rgba(0, 255, 255, 0.2);
    border-color: #00ffff;
}

.benefit-card img {
    width: 90px;
    height: 90px;
    border-radius: 10px;
    margin-bottom: 2rem;
    object-fit: cover;
    border: 2px solid #00ffff;
    filter: brightness(1.2) contrast(1.1);
}

.benefit-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: #00ffff;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.benefit-card p {
    color: #b0b0b0;
    line-height: 1.8;
    font-weight: 400;
    font-size: 1rem;
}

/* Testimonials Section */
.testimonials {
    padding: 120px 0;
    background: rgba(26, 26, 46, 0.6);
    backdrop-filter: blur(15px);
    color: #e0e0e0;
}

.testimonials h2 {
    font-size: 3rem;
    text-align: center;
    margin-bottom: 4rem;
    color: #00ffff;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem;
}

.testimonial {
    background: linear-gradient(135deg, rgba(0, 255, 255, 0.05) 0%, rgba(255, 0, 255, 0.05) 100%);
    padding: 3rem;
    border-radius: 15px;
    border-left: 4px solid #00ffff;
    transition: all 0.3s ease;
    position: relative;
    backdrop-filter: blur(10px);
}

.testimonial:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0, 255, 255, 0.15);
    border-left-color: #ff00ff;
}

.testimonial::before {
    content: '◢';
    font-size: 4rem;
    color: #00ffff;
    position: absolute;
    top: 10px;
    left: 20px;
    opacity: 0.3;
    font-weight: 800;
}

.testimonial p {
    font-style: italic;
    margin-bottom: 2rem;
    font-size: 1.1rem;
    line-height: 1.8;
    padding-left: 40px;
    font-weight: 400;
    color: #b0b0b0;
}

.testimonial cite {
    color: #00ffff;
    font-weight: 700;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Contact Section */
.contact {
    padding: 120px 0;
    background: rgba(15, 52, 96, 0.4);
    backdrop-filter: blur(15px);
    color: #e0e0e0;
}

.contact h2 {
    font-size: 3rem;
    text-align: center;
    margin-bottom: 2rem;
    font-weight: 800;
    color: #ff00ff;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.contact > .container > p {
    text-align: center;
    font-size: 1.2rem;
    margin-bottom: 4rem;
    line-height: 1.6;
    font-weight: 400;
    color: #b0b0b0;
}

.contact-form {
    max-width: 700px;
    margin: 0 auto;
    display: grid;
    gap: 2rem;
}

.contact-form input,
.contact-form textarea {
    padding: 18px 24px;
    border: 2px solid rgba(0, 255, 255, 0.3);
    border-radius: 10px;
    font-size: 1rem;
    font-family: inherit;
    background: rgba(26, 26, 46, 0.8);
    backdrop-filter: blur(10px);
    color: #e0e0e0;
    transition: all 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: #00ffff;
    box-shadow: 0 0 0 3px rgba(0, 255, 255, 0.2);
    background: rgba(26, 26, 46, 0.9);
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: rgba(224, 224, 224, 0.6);
}

.contact-form textarea {
    resize: vertical;
    min-height: 150px;
}

.contact-form button {
    background: linear-gradient(45deg, #00ffff, #ff00ff);
    color: #1a1a2e;
    border: none;
    padding: 18px 36px;
    font-size: 1.1rem;
    font-weight: 700;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    justify-self: center;
    width: fit-content;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-family: inherit;
}

.contact-form button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 255, 255, 0.4);
}

/* Footer */
footer {
    background: rgba(26, 26, 46, 0.95);
    backdrop-filter: blur(20px);
    color: #e0e0e0;
    padding: 3rem 0;
    border-top: 2px solid #00ffff;
}

footer .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-links a {
    color: #e0e0e0;
    text-decoration: none;
    margin-left: 2.5rem;
    opacity: 0.8;
    transition: all 0.3s ease;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.footer-links a:hover {
    opacity: 1;
    color: #00ffff;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero .container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .benefits-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    footer .container {
        flex-direction: column;
        gap: 2rem;
    }
    
    nav a {
        margin-left: 1rem;
    }
    
    .about h2,
    .benefits h2,
    .testimonials h2,
    .contact h2 {
        font-size: 2.2rem;
    }
    
    .about h2::before,
    .about h2::after {
        display: none;
    }
}
