@import url('https://fonts.googleapis.com/css2?family=Source+Code+Pro:wght@300;400;500;600;700;800;900&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Source Code Pro', monospace;
    line-height: 1.6;
    color: #f0f0f0;
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 25%, #2c3e50 50%, #1a252f 75%, #0f1419 100%);
    min-height: 100vh;
    position: relative;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(90deg, rgba(52, 152, 219, 0.03) 1px, transparent 1px),
        linear-gradient(rgba(52, 152, 219, 0.03) 1px, transparent 1px);
    background-size: 20px 20px;
    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(15, 20, 25, 0.95);
    backdrop-filter: blur(20px);
    color: #f0f0f0;
    padding: 1rem 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 25px rgba(52, 152, 219, 0.2);
    border-bottom: 2px solid #3498db;
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 2rem;
    font-weight: 900;
    color: #3498db;
    text-transform: uppercase;
    letter-spacing: 2px;
    position: relative;
    font-family: 'Source Code Pro', monospace;
}

.logo::before {
    content: '{ ';
    color: #e74c3c;
}

.logo::after {
    content: ' }';
    color: #e74c3c;
}

nav a {
    color: #f0f0f0;
    text-decoration: none;
    margin-left: 2rem;
    font-weight: 600;
    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: linear-gradient(90deg, #3498db, #e74c3c);
    transition: width 0.3s ease;
}

nav a:hover::before {
    width: 100%;
}

nav a:hover {
    color: #3498db;
}

/* Hero Section */
.hero {
    background: rgba(15, 20, 25, 0.8);
    backdrop-filter: blur(10px);
    color: #f0f0f0;
    padding: 120px 0 80px;
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(52, 152, 219, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(231, 76, 60, 0.1) 0%, transparent 50%);
    z-index: 1;
}

.hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-content h1 {
    font-size: 3.8rem;
    font-weight: 900;
    margin-bottom: 1.5rem;
    line-height: 1.1;
    background: linear-gradient(45deg, #3498db, #e74c3c);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    opacity: 0.9;
    line-height: 1.7;
    font-weight: 400;
    color: #bdc3c7;
}

.cta-button {
    background: linear-gradient(45deg, #3498db, #e74c3c);
    color: white;
    border: none;
    padding: 16px 32px;
    font-size: 1.1rem;
    font-weight: 700;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(52, 152, 219, 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 25px rgba(52, 152, 219, 0.4);
}

.hero-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 20px 50px rgba(52, 152, 219, 0.2);
    border: 2px solid rgba(52, 152, 219, 0.3);
}

/* About Section */
.about {
    padding: 100px 0;
    background: rgba(44, 62, 80, 0.3);
    backdrop-filter: blur(10px);
    color: #f0f0f0;
}

.about h2 {
    font-size: 3rem;
    text-align: center;
    margin-bottom: 3rem;
    color: #3498db;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.about h2::before {
    content: '/* ';
    color: #e74c3c;
}

.about h2::after {
    content: ' */';
    color: #e74c3c;
}

.about p {
    font-size: 1.1rem;
    margin-bottom: 1.8rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
    line-height: 1.8;
    color: #bdc3c7;
    font-weight: 400;
}

/* Benefits Section */
.benefits {
    padding: 100px 0;
    background: rgba(15, 20, 25, 0.8);
    backdrop-filter: blur(10px);
    color: #f0f0f0;
}

.benefits h2 {
    font-size: 3rem;
    text-align: center;
    margin-bottom: 3rem;
    color: #e74c3c;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.benefits h2::before {
    content: '// ';
    color: #3498db;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem;
}

.benefit-card {
    background: rgba(44, 62, 80, 0.4);
    backdrop-filter: blur(15px);
    padding: 3rem;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(52, 152, 219, 0.1);
    transition: all 0.3s ease;
    border: 1px solid rgba(52, 152, 219, 0.2);
    position: relative;
}

.benefit-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #3498db, #e74c3c);
}

.benefit-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(52, 152, 219, 0.2);
    border-color: #3498db;
}

.benefit-card img {
    width: 80px;
    height: 80px;
    border-radius: 4px;
    margin-bottom: 1.5rem;
    object-fit: cover;
    border: 2px solid #3498db;
}

.benefit-card h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: #3498db;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.benefit-card p {
    color: #bdc3c7;
    line-height: 1.7;
    font-weight: 400;
}

/* Testimonials Section */
.testimonials {
    padding: 100px 0;
    background: rgba(44, 62, 80, 0.3);
    backdrop-filter: blur(10px);
    color: #f0f0f0;
}

.testimonials h2 {
    font-size: 3rem;
    text-align: center;
    margin-bottom: 3rem;
    color: #3498db;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.testimonials h2::before {
    content: '/** ';
    color: #e74c3c;
}

.testimonials h2::after {
    content: ' **/';
    color: #e74c3c;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem;
}

.testimonial {
    background: linear-gradient(135deg, rgba(52, 152, 219, 0.05) 0%, rgba(231, 76, 60, 0.05) 100%);
    padding: 3rem;
    border-radius: 8px;
    border-left: 4px solid #3498db;
    transition: all 0.3s ease;
    position: relative;
    backdrop-filter: blur(10px);
}

.testimonial:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(52, 152, 219, 0.1);
    border-left-color: #e74c3c;
}

.testimonial::before {
    content: '"';
    font-size: 4rem;
    color: #3498db;
    position: absolute;
    top: 10px;
    left: 20px;
    opacity: 0.3;
    font-weight: 900;
}

.testimonial p {
    font-style: italic;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    line-height: 1.7;
    padding-left: 30px;
    font-weight: 400;
    color: #bdc3c7;
}

.testimonial cite {
    color: #3498db;
    font-weight: 700;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Contact Section */
.contact {
    padding: 100px 0;
    background: rgba(15, 20, 25, 0.8);
    backdrop-filter: blur(10px);
    color: #f0f0f0;
}

.contact h2 {
    font-size: 3rem;
    text-align: center;
    margin-bottom: 1.5rem;
    font-weight: 900;
    color: #e74c3c;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.contact h2::before {
    content: '>>> ';
    color: #3498db;
}

.contact > .container > p {
    text-align: center;
    font-size: 1.2rem;
    margin-bottom: 3rem;
    opacity: 0.9;
    line-height: 1.6;
    font-weight: 400;
    color: #bdc3c7;
}

.contact-form {
    max-width: 600px;
    margin: 0 auto;
    display: grid;
    gap: 1.5rem;
}

.contact-form input,
.contact-form textarea {
    padding: 16px 20px;
    border: 2px solid rgba(52, 152, 219, 0.3);
    border-radius: 4px;
    font-size: 1rem;
    font-family: inherit;
    background: rgba(44, 62, 80, 0.3);
    backdrop-filter: blur(10px);
    color: #f0f0f0;
    transition: all 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: #3498db;
    box-shadow: 0 0 0 3px rgba(52, 152, 219, 0.2);
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: rgba(240, 240, 240, 0.7);
}

.contact-form textarea {
    resize: vertical;
    min-height: 120px;
}

.contact-form button {
    background: linear-gradient(45deg, #3498db, #e74c3c);
    color: white;
    border: none;
    padding: 16px 32px;
    font-size: 1.1rem;
    font-weight: 700;
    border-radius: 4px;
    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 6px 20px rgba(52, 152, 219, 0.3);
}

/* Footer */
footer {
    background: rgba(15, 20, 25, 0.95);
    backdrop-filter: blur(20px);
    color: #f0f0f0;
    padding: 2.5rem 0;
    border-top: 2px solid #3498db;
}

footer .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-links a {
    color: #f0f0f0;
    text-decoration: none;
    margin-left: 2rem;
    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: #3498db;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero .container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-content h1 {
        font-size: 2.8rem;
    }
    
    .benefits-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    footer .container {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    nav a {
        margin-left: 1rem;
    }
    
    .about h2,
    .benefits h2,
    .testimonials h2,
    .contact h2 {
        font-size: 2.2rem;
    }
}
