@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@400;500;600;700;800;900&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Orbitron', monospace;
    line-height: 1.6;
    color: #e8e8e8;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #f093fb 100%);
    min-height: 100vh;
    position: relative;
    overflow-x: hidden;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 25% 25%, rgba(102, 126, 234, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 75% 75%, rgba(240, 147, 251, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(118, 75, 162, 0.05) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
    animation: float 20s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    33% { transform: translateY(-20px) rotate(1deg); }
    66% { transform: translateY(10px) rotate(-1deg); }
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 1;
}

/* Header */
header {
    background: rgba(102, 126, 234, 0.15);
    backdrop-filter: blur(25px);
    color: #e8e8e8;
    padding: 1rem 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 30px rgba(102, 126, 234, 0.3);
    border-bottom: 2px solid rgba(240, 147, 251, 0.5);
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 2.2rem;
    font-weight: 900;
    color: #f093fb;
    text-transform: uppercase;
    letter-spacing: 3px;
    position: relative;
    text-shadow: 0 0 20px rgba(240, 147, 251, 0.5);
}

.logo::before {
    content: '◆';
    color: #667eea;
    margin-right: 10px;
    animation: pulse-glow 2s ease-in-out infinite alternate;
}

@keyframes pulse-glow {
    0% { text-shadow: 0 0 5px rgba(102, 126, 234, 0.5); }
    100% { text-shadow: 0 0 20px rgba(102, 126, 234, 1); }
}

nav a {
    color: #e8e8e8;
    text-decoration: none;
    margin-left: 2.5rem;
    font-weight: 600;
    transition: all 0.3s ease;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
}

nav a::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #667eea, #f093fb);
    transition: width 0.3s ease;
}

nav a:hover::after {
    width: 100%;
}

nav a:hover {
    color: #f093fb;
    text-shadow: 0 0 10px rgba(240, 147, 251, 0.5);
}

/* Hero Section */
.hero {
    background: rgba(118, 75, 162, 0.1);
    backdrop-filter: blur(15px);
    color: #e8e8e8;
    padding: 120px 0 80px;
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: 
        conic-gradient(from 0deg, transparent, rgba(102, 126, 234, 0.1), transparent, rgba(240, 147, 251, 0.1), transparent);
    animation: rotate 30s linear infinite;
    z-index: 1;
}

@keyframes rotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-content h1 {
    font-size: 4rem;
    font-weight: 900;
    margin-bottom: 1.5rem;
    line-height: 1.1;
    background: linear-gradient(45deg, #667eea, #f093fb, #764ba2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 30px rgba(240, 147, 251, 0.3);
}

.hero-content p {
    font-size: 1.3rem;
    margin-bottom: 2.5rem;
    opacity: 0.9;
    line-height: 1.7;
    font-weight: 400;
    color: #d0d0d0;
}

.cta-button {
    background: linear-gradient(45deg, #667eea, #f093fb);
    color: white;
    border: none;
    padding: 20px 40px;
    font-size: 1.2rem;
    font-weight: 700;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.4);
    text-transform: uppercase;
    letter-spacing: 2px;
    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.3), transparent);
    transition: left 0.6s ease;
}

.cta-button:hover::before {
    left: 100%;
}

.cta-button:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 12px 40px rgba(102, 126, 234, 0.6);
}

.hero-image img {
    width: 100%;
    height: auto;
    border-radius: 25px;
    box-shadow: 0 25px 70px rgba(102, 126, 234, 0.3);
    border: 3px solid rgba(240, 147, 251, 0.3);
    filter: brightness(1.1) saturate(1.2);
}

/* About Section */
.about {
    padding: 120px 0;
    background: rgba(240, 147, 251, 0.05);
    backdrop-filter: blur(20px);
    color: #e8e8e8;
}

.about h2 {
    font-size: 3.5rem;
    text-align: center;
    margin-bottom: 4rem;
    color: #f093fb;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 3px;
    text-shadow: 0 0 20px rgba(240, 147, 251, 0.5);
}

.about p {
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
    line-height: 1.8;
    color: #d0d0d0;
    font-weight: 400;
}

/* Benefits Section */
.benefits {
    padding: 120px 0;
    background: rgba(118, 75, 162, 0.1);
    backdrop-filter: blur(20px);
    color: #e8e8e8;
}

.benefits h2 {
    font-size: 3.5rem;
    text-align: center;
    margin-bottom: 4rem;
    color: #667eea;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 3px;
    text-shadow: 0 0 20px rgba(102, 126, 234, 0.5);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    gap: 3.5rem;
}

.benefit-card {
    background: rgba(240, 147, 251, 0.1);
    backdrop-filter: blur(25px);
    padding: 3.5rem;
    border-radius: 25px;
    text-align: center;
    box-shadow: 0 20px 50px rgba(102, 126, 234, 0.2);
    transition: all 0.4s ease;
    border: 2px solid rgba(240, 147, 251, 0.2);
    position: relative;
    overflow: hidden;
}

.benefit-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #667eea, #f093fb, #764ba2);
}

.benefit-card::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: radial-gradient(circle, rgba(240, 147, 251, 0.1) 0%, transparent 70%);
    transition: all 0.4s ease;
    transform: translate(-50%, -50%);
    z-index: 0;
}

.benefit-card:hover::after {
    width: 300px;
    height: 300px;
}

.benefit-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 30px 80px rgba(102, 126, 234, 0.3);
    border-color: #f093fb;
}

.benefit-card > * {
    position: relative;
    z-index: 1;
}

.benefit-card img {
    width: 110px;
    height: 110px;
    border-radius: 20px;
    margin-bottom: 2rem;
    object-fit: cover;
    border: 3px solid #667eea;
    filter: brightness(1.2) saturate(1.1);
}

.benefit-card h3 {
    font-size: 1.7rem;
    margin-bottom: 1.5rem;
    color: #f093fb;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.benefit-card p {
    color: #d0d0d0;
    line-height: 1.8;
    font-weight: 400;
    font-size: 1.1rem;
}

/* Testimonials Section */
.testimonials {
    padding: 120px 0;
    background: rgba(240, 147, 251, 0.05);
    backdrop-filter: blur(20px);
    color: #e8e8e8;
}

.testimonials h2 {
    font-size: 3.5rem;
    text-align: center;
    margin-bottom: 4rem;
    color: #f093fb;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 3px;
    text-shadow: 0 0 20px rgba(240, 147, 251, 0.5);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    gap: 3.5rem;
}

.testimonial {
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.1) 0%, rgba(240, 147, 251, 0.1) 100%);
    padding: 3.5rem;
    border-radius: 25px;
    border-left: 6px solid #667eea;
    transition: all 0.4s ease;
    position: relative;
    backdrop-filter: blur(15px);
    box-shadow: 0 15px 40px rgba(102, 126, 234, 0.15);
}

.testimonial:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 60px rgba(102, 126, 234, 0.25);
    border-left-color: #f093fb;
}

.testimonial::before {
    content: '◈';
    font-size: 5rem;
    color: #667eea;
    position: absolute;
    top: -5px;
    left: 25px;
    opacity: 0.3;
    font-weight: 900;
}

.testimonial p {
    font-style: italic;
    margin-bottom: 2.5rem;
    font-size: 1.2rem;
    line-height: 1.8;
    padding-left: 50px;
    font-weight: 400;
    color: #d0d0d0;
}

.testimonial cite {
    color: #f093fb;
    font-weight: 800;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Contact Section */
.contact {
    padding: 120px 0;
    background: rgba(118, 75, 162, 0.1);
    backdrop-filter: blur(20px);
    color: #e8e8e8;
}

.contact h2 {
    font-size: 3.5rem;
    text-align: center;
    margin-bottom: 2rem;
    font-weight: 900;
    color: #667eea;
    text-transform: uppercase;
    letter-spacing: 3px;
    text-shadow: 0 0 20px rgba(102, 126, 234, 0.5);
}

.contact > .container > p {
    text-align: center;
    font-size: 1.3rem;
    margin-bottom: 4rem;
    line-height: 1.6;
    font-weight: 400;
    color: #d0d0d0;
}

.contact-form {
    max-width: 700px;
    margin: 0 auto;
    display: grid;
    gap: 2.5rem;
}

.contact-form input,
.contact-form textarea {
    padding: 22px 28px;
    border: 3px solid rgba(102, 126, 234, 0.3);
    border-radius: 15px;
    font-size: 1.1rem;
    font-family: inherit;
    background: rgba(240, 147, 251, 0.1);
    backdrop-filter: blur(15px);
    color: #e8e8e8;
    transition: all 0.3s ease;
    font-weight: 500;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: #667eea;
    box-shadow: 0 0 0 4px rgba(102, 126, 234, 0.2);
    background: rgba(240, 147, 251, 0.15);
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: rgba(232, 232, 232, 0.7);
}

.contact-form textarea {
    resize: vertical;
    min-height: 160px;
}

.contact-form button {
    background: linear-gradient(45deg, #667eea, #f093fb);
    color: white;
    border: none;
    padding: 22px 44px;
    font-size: 1.2rem;
    font-weight: 700;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    justify-self: center;
    width: fit-content;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-family: inherit;
}

.contact-form button:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 12px 35px rgba(102, 126, 234, 0.5);
}

/* Footer */
footer {
    background: rgba(102, 126, 234, 0.2);
    backdrop-filter: blur(25px);
    color: #e8e8e8;
    padding: 3.5rem 0;
    border-top: 3px solid rgba(240, 147, 251, 0.5);
}

footer .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-links a {
    color: #e8e8e8;
    text-decoration: none;
    margin-left: 2.5rem;
    opacity: 0.9;
    transition: all 0.3s ease;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.footer-links a:hover {
    opacity: 1;
    color: #f093fb;
    text-shadow: 0 0 10px rgba(240, 147, 251, 0.5);
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero .container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-content h1 {
        font-size: 3rem;
    }
    
    .benefits-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    footer .container {
        flex-direction: column;
        gap: 2rem;
    }
    
    nav a {
        margin-left: 1.5rem;
    }
    
    .about h2,
    .benefits h2,
    .testimonials h2,
    .contact h2 {
        font-size: 2.5rem;
    }
}
