body {
    margin: 0;
    background: #050d18;
    color: #ffffff;
    font-family: Inter, system-ui, sans-serif;
}

.hero {
    position: relative;
    overflow: hidden;
    min-height: calc(100vh - 145px);
    display: flex;
    align-items: center;
    padding: 0 7%;
    background:
        linear-gradient(
            90deg,
            rgba(5, 13, 24, 0.96) 0%,
            rgba(5, 13, 24, 0.82) 30%,
            rgba(5, 13, 24, 0.55) 60%,
            rgba(5, 13, 24, 0.25) 100%
        ),
        url("/assets/images/hero-background.png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -1px;
    height: 150px;
    background: linear-gradient(to bottom, rgba(5, 13, 24, 0) 0%, rgba(5, 13, 24, 0.55) 55%, rgba(5, 13, 24, 1) 100%);
    pointer-events: none;
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 48rem;
}

.hero-content > span {
    display: inline-block;
    margin-bottom: 1rem;
    color: #00a6ff;
    font-size: 0.95rem;
    font-weight: 800;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.hero-title {
    display: flex;
    flex-direction: column;
    gap: 0.05em;
    margin: 0;
}

.hero-title .print-line {
    display: block;
    width: fit-content;
    color: rgba(255, 255, 255, 0.72);
    font-size: clamp(2.2rem, 4.5vw, 4rem);
    font-weight: 900;
    line-height: 0.95;
    text-transform: uppercase;
    opacity: 0;
    transform: translateX(-60px);
    animation: slideInLine 0.7s ease forwards;
}

.hero-title .print-line.delay-1 {
    animation-delay: 0.3s;
}

.hero-title .print-line.delay-2 {
    animation-delay: 0.9s;
}

.hero-title .print-line.delay-3 {
    animation-delay: 1.5s;
}
.hero-content p {
    max-width: 38rem;
    margin-top: 1.75rem;
    color: #c7d4e6;
    font-size: 1.15rem;
    line-height: 1.8;
    opacity: 0;
    animation: fadeInHero 0.8s ease forwards;
    animation-delay: 2.2s;
}

.hero-cta {
    margin-top: 2rem;
    padding: 1rem 1.8rem;
    border: none;
    border-radius: 0.5rem;
    background: linear-gradient(135deg, #006dff, #00a6ff);
    color: #ffffff;
    font-size: 1rem;
    font-weight: 800;
    cursor: pointer;
    opacity: 0;
    animation: fadeInHero 0.8s ease forwards;
    animation-delay: 2.6s;
    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease;
}

.hero-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 1rem rgba(0, 166, 255, 0.5);
}

.section-heading {
    text-align: center;
    margin-bottom: 3rem;
}

.section-heading span {
    color: #00a6ff;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    font-size: 0.85rem;
    font-weight: 800;
}

.section-heading h2 {
    margin-top: 0.75rem;
    font-size: clamp(2rem, 4vw, 3rem);
}

.service-section {
    padding: 6rem 8%;
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 2rem;
}

.service-grid article {
    padding: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 1rem;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(12px);
}

.service-grid h3 {
    margin-top: 0;
}

.contact-teaser {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 3rem;
    padding: 6rem 8%;
}

.contact-teaser span {
    color: #00a6ff;
    text-transform: uppercase;
    font-weight: 800;
}

.contact-teaser h2 {
    margin: 1rem 0;
}

@keyframes slideInLine {
    from {
        opacity: 0;
        transform: translateX(-60px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInHero {
    from {
        opacity: 0;
        transform: translateY(12px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 900px) {
    .hero {
        min-height: 70vh;
        padding: 3.5rem 8% 5rem;
        background-position: 68% center;
    }

    .hero-title .print-line {
        font-size: clamp(2.3rem, 10vw, 4rem);
        transform: translateX(-32px);
    }

    .contact-teaser {
        flex-direction: column;
        align-items: flex-start;
    }

    @keyframes slideInLine {
        from {
            opacity: 0;
            transform: translateX(-32px);
        }

        to {
            opacity: 1;
            transform: translateX(0);
        }
    }
}

@media (max-width: 600px) {
    .hero {
        min-height: 72vh;
        padding: 3rem 8% 4rem;
        background-position: 72% center;
    }

    .hero-content > span {
        font-size: 0.78rem;
        letter-spacing: 0.16em;
    }

    .hero-title .print-line {
        font-size: clamp(2rem, 9.5vw, 3.2rem);
        line-height: 1;
    }

    .hero-content p {
        font-size: 1rem;
        line-height: 1.7;
    }

    .hero-cta {
        width: fit-content;
        padding: 0.95rem 1.55rem;
    }
}
