:root {
    --bg-dark: #0a0a1a;
    --bg-light: #1a1a2e;
    --primary-neon: #00ffff;
    --secondary-neon: #ff00ff;
    --text-light: #e0e0e0;
    --text-dark: #a0a0c0;
    --font-heading: 'Orbitron', sans-serif;
    --font-body: 'Roboto', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: var(--bg-dark);
    color: var(--text-light);
    font-family: var(--font-body);
    line-height: 1.6;
}

.container {
    width: 90%;
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 1rem;
}

h1, h2, h3 {
    font-family: var(--font-heading);
    color: var(--primary-neon);
    text-shadow: 0 0 5px var(--primary-neon), 0 0 10px rgba(0, 255, 255, 0.5);
    margin-bottom: 1rem;
}

p {
    color: var(--text-dark);
    margin-bottom: 1rem;
}

a {
    color: var(--primary-neon);
    text-decoration: none;
    transition: color 0.3s ease, text-shadow 0.3s ease;
}

a:hover {
    color: #fff;
    text-shadow: 0 0 10px var(--primary-neon);
}

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 0;
    border-bottom: 1px solid rgba(0, 255, 255, 0.2);
}

.logo {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 700;
}

header nav ul {
    list-style: none;
    display: flex;
    gap: 1.5rem;
}

header nav a {
    font-weight: 700;
    font-size: 1rem;
}

.btn {
    display: inline-block;
    background: var(--primary-neon);
    color: var(--bg-dark);
    padding: 0.8rem 1.8rem;
    border: none;
    border-radius: 4px;
    font-family: var(--font-heading);
    font-weight: 700;
    cursor: pointer;
    text-transform: uppercase;
    transition: background 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
    box-shadow: 0 0 10px rgba(0, 255, 255, 0.5);
}

.btn:hover {
    background: #fff;
    color: var(--bg-dark);
    box-shadow: 0 0 20px rgba(0, 255, 255, 0.8);
    transform: scale(1.05);
}

section {
    padding: 4rem 0;
    border-bottom: 1px solid rgba(0, 255, 255, 0.1);
}

.hero {
    text-align: center;
    padding: 6rem 0;
}
.hero h1 {
    font-size: 3.5rem;
    color: #fff;
    text-shadow: 0 0 15px var(--primary-neon);
}
.hero p {
    font-size: 1.2rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 1rem auto 2rem;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
}
.service-card {
    background: var(--bg-light);
    padding: 2rem;
    border: 1px solid rgba(0, 255, 255, 0.3);
    border-radius: 8px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0, 255, 255, 0.2);
}

.about p {
    color: var(--text-light);
}
.features ul {
    list-style: none;
}
.features li {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    color: var(--text-light);
}
.feature-icon {
    color: var(--primary-neon);
    margin-right: 10px;
    font-size: 1.5rem;
}

.contact {
    text-align: center;
}
.contact-form {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    margin-top: 2rem;
}
.contact-form input {
    background: var(--bg-light);
    border: 1px solid var(--primary-neon);
    padding: 0.8rem;
    width: 100%;
    max-width: 400px;
    color: var(--text-light);
    font-family: var(--font-body);
}
.contact-form input::placeholder {
    color: var(--text-dark);
}

footer {
    background: #050510;
    padding: 2rem 0;
    color: var(--text-dark);
    font-size: 0.9rem;
}
.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 2rem;
    margin-bottom: 2rem;
}
.footer-logo {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--primary-neon);
}
.footer-details p {
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}
.copyright {
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 1.5rem;
    margin-top: 1.5rem;
}

.content-block {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.content-block.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.step {
    background: var(--bg-light);
    border-left: 3px solid var(--secondary-neon);
    padding: 1.5rem;
    position: relative;
}

.step-number {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    color: var(--primary-neon);
    opacity: 0.3;
    position: absolute;
    top: 0.5rem;
    right: 1rem;
    font-weight: 700;
}

.step h3 {
    color: var(--secondary-neon);
    text-shadow: 0 0 5px var(--secondary-neon);
    margin-bottom: 0.5rem;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

.testimonial-card {
    background: transparent;
    border: 1px solid rgba(0, 255, 255, 0.3);
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 0 15px rgba(0, 255, 255, 0.1);
}

.testimonial-card p {
    font-size: 1.1rem;
    font-style: italic;
    color: var(--text-light);
    margin-bottom: 1rem;
}

.testimonial-card h4 {
    font-family: var(--font-heading);
    color: var(--primary-neon);
    text-align: right;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 1.5rem;
    margin-top: 1.5rem;
}

.copyright {
    margin: 0;
    padding: 0;
    border: none;
}

.privacy-link a {
    color: var(--text-dark);
}
.privacy-link a:hover {
    color: var(--primary-neon);
    text-decoration: underline;
}

@media (max-width: 768px) {
    section {
        padding: 2.5rem 0;
    }

    .container {
        width: 95%;
    }

    header {
        flex-direction: column;
        gap: 1.5rem;
        padding: 1rem 0;
    }

    header nav ul {
        flex-wrap: wrap;
        justify-content: center;
        gap: 1rem;
    }

    .hero {
        padding: 4rem 0;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .hero p {
        font-size: 1rem;
    }

    .services-grid,
    .process-steps {
        grid-template-columns: 1fr;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .contact-form input {
        width: 100%;
    }

    .footer-content,
    .footer-bottom {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .footer-details {
        margin-top: 1rem;
    }

    .footer-bottom {
        gap: 0.5rem;
    }

    .privacy-container .container {
        padding: 1.5rem;
    }
}

@media (max-width: 480px) {

    .hero h1 {
        font-size: 2rem;
    }

    .step-number {
        display: none;
    }
}