:root {
    --bg: #050a14;
    --bg-soft: #0b1220;
    --card: rgba(255, 255, 255, 0.04);
    --border: rgba(96, 165, 250, 0.18);
    --text: #ffffff;
    --muted: #cbd5e1;
    --blue: #175ddc;
    --blue-light: #60a5fa;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    background: var(--bg);
    color: var(--text);
    font-family: "Work Sans", Arial, Helvetica, sans-serif;
}

img {
    max-width: 100%;
}

a {
    color: inherit;
    text-decoration: none;
}

.container {
    width: min(1200px, 92%);
    margin: 0 auto;
}

.narrow {
    max-width: 900px;
}

.center {
    text-align: center;
}

/* NAVBAR */

.jin-navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;

    z-index: 999;

    background: rgba(5, 10, 20, 0.72);
    backdrop-filter: blur(14px);

    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.navbar-brand img {
    width: 104px;
    height: 104px;
    object-fit: contain;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 34px;
}

.nav-links a {
    font-weight: 700;
    color: #e5e7eb;
    transition: 0.25s ease;
}

.nav-links a:hover {
    color: var(--blue-light);
    text-shadow: 0 0 18px rgba(96, 165, 250, 0.6);
}

/* HERO */

.hero {
    min-height: 100vh;
    position: relative;

    display: flex;
    align-items: center;

    overflow: hidden;

    background:
        radial-gradient(circle at 72% 42%, rgba(23, 93, 220, 0.32), transparent 32%),
        linear-gradient(
            90deg,
            rgba(4, 10, 20, 0.98) 0%,
            rgba(4, 10, 20, 0.84) 40%,
            rgba(4, 10, 20, 0.36) 100%
        ),
        url("/assets/img/background/gae7d137e77c913d0a43dca14082972bb01ce92b2a15d17eb25230de3720e06adfc866a7abf9ffbc9a5b45300f1c3a8b896dff8ba74087d5aef711268f8debb6e_640.jpg");

    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero::before {
    content: "";
    position: absolute;
    inset: 0;

    background:
        radial-gradient(circle at 20% 60%, rgba(96, 165, 250, 0.14), transparent 32%),
        linear-gradient(180deg, transparent 72%, var(--bg) 100%);

    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 2;

    max-width: 720px;
    padding-top: 120px;
}

.hero-badge {
    display: inline-block;

    padding: 10px 18px;
    margin-bottom: 24px;

    border: 1px solid rgba(96, 165, 250, 0.7);
    border-radius: 999px;

    background: rgba(23, 93, 220, 0.16);
    color: #9cc7ff;

    box-shadow: 0 0 25px rgba(23, 93, 220, 0.35);
    backdrop-filter: blur(10px);

    font-weight: 700;
}

.hero h1 {
    font-size: clamp(3rem, 8vw, 6.5rem);
    font-weight: 900;
    line-height: 0.95;

    margin-bottom: 24px;

    text-transform: uppercase;
    letter-spacing: -0.04em;

    text-shadow: 0 0 40px rgba(23, 93, 220, 0.35);
}

.hero p {
    max-width: 620px;

    font-size: 1.25rem;
    line-height: 1.8;

    color: var(--muted);

    margin-bottom: 36px;
}

.hero-buttons,
.contact-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

/* BUTTONS */

.btn {
    display: inline-block;

    padding: 14px 26px;

    border-radius: 12px;

    font-weight: 700;

    transition: 0.25s ease;
}

.btn-primary {
    color: white;

    background: linear-gradient(135deg, #175ddc, #3b82f6);

    box-shadow: 0 0 25px rgba(23, 93, 220, 0.45);
}

.btn-primary:hover {
    background: linear-gradient(135deg, #2469e8, #60a5fa);

    box-shadow: 0 0 35px rgba(23, 93, 220, 0.65);

    transform: translateY(-2px);
}

.btn-outline {
    border: 1px solid rgba(96, 165, 250, 0.8);

    color: #9cc7ff;

    background: rgba(23, 93, 220, 0.08);

    box-shadow: 0 0 20px rgba(23, 93, 220, 0.25);
}

.btn-outline:hover {
    background: #175ddc;
    color: white;

    box-shadow: 0 0 30px rgba(23, 93, 220, 0.55);

    transform: translateY(-2px);
}

/* SECTIONS */

.section {
    padding: 110px 0;
}

.intro-section {
    background:
        radial-gradient(circle at 20% 20%, rgba(23, 93, 220, 0.18), transparent 32%),
        var(--bg);
}

.section h2,
.section-heading h2 {
    font-size: clamp(2.3rem, 5vw, 4rem);
    font-weight: 800;

    margin-bottom: 22px;

    letter-spacing: -0.03em;
}

.section p {
    color: var(--muted);

    font-size: 1.2rem;
    line-height: 1.8;
}

.section-heading {
    text-align: center;

    max-width: 850px;

    margin: 0 auto 60px;
}

.section-heading span {
    display: inline-block;

    margin-bottom: 12px;

    color: var(--blue-light);

    font-weight: 700;

    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.steps-section,
.gallery-preview {
    background: var(--bg-soft);
}

/* STEPS */

.steps-grid {
    display: grid;
    gap: 26px;
}

.step-card {
    display: grid;

    grid-template-columns: 260px 1fr;

    gap: 30px;

    align-items: center;

    padding: 24px;

    border-radius: 22px;

    background: var(--card);

    border: 1px solid var(--border);

    box-shadow: 0 0 35px rgba(23, 93, 220, 0.12);

    backdrop-filter: blur(12px);

    transition: 0.25s ease;
}

.step-card:hover {
    transform: translateY(-4px);

    border-color: rgba(96, 165, 250, 0.45);

    box-shadow: 0 0 45px rgba(23, 93, 220, 0.24);
}

.step-card img {
    width: 100%;
    height: 190px;

    object-fit: contain;
    object-position: center;

    padding: 14px;

    background: rgba(255, 255, 255, 0.04);

    border-radius: 16px;
}

.step-card span {
    color: var(--blue-light);

    font-weight: 800;
}

.step-card h3 {
    font-size: 1.7rem;

    margin: 8px 0 10px;
}

.step-card p {
    margin: 0;

    font-size: 1.05rem;
}

/* CONTACT */

.contact-section {
    background:
        radial-gradient(circle at 50% 0%, rgba(23, 93, 220, 0.22), transparent 35%),
        var(--bg);
}

.contact-section a:not(.btn) {
    color: var(--blue-light);

    font-weight: 700;
}

.contact-buttons {
    justify-content: center;

    margin-top: 34px;
}

/* GALLERY PREVIEW */

.components-box {
    max-width: 920px;

    margin: 0 auto 45px;

    padding: 28px;

    text-align: center;

    background: var(--card);

    border: 1px solid var(--border);

    border-radius: 20px;
}

.gallery-grid {
    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 16px;
}

.gallery-grid img {
    width: 100%;
    height: 260px;

    object-fit: cover;

    border-radius: 18px;

    border: 1px solid rgba(255, 255, 255, 0.08);

    transition: 0.25s ease;
}

.gallery-grid img:hover {
    transform: scale(1.02);

    box-shadow: 0 0 35px rgba(23, 93, 220, 0.35);
}

/* FOOTER */

.footer {
    background: #030712;

    border-top: 1px solid rgba(255, 255, 255, 0.08);

    padding: 60px 0 25px;
}

.footer-grid {
    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 40px;
}

.footer h3 {
    font-size: 1rem;

    color: white;

    margin-bottom: 14px;
}

.footer p,
.footer a {
    color: var(--muted);
}

.footer a:hover {
    color: var(--blue-light);
}

.copyright {
    text-align: center;

    color: #94a3b8;

    margin-top: 40px;

    font-size: 0.95rem;
}

/* RESPONSIVE */

@media (max-width: 900px) {
    .navbar-brand img {
        width: 82px;
        height: 82px;
    }

    .nav-links {
        gap: 18px;
        font-size: 0.95rem;
    }

    .hero-content {
        padding-top: 130px;
    }

    .step-card {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .step-card img {
        height: auto;
        max-height: 260px;
        object-fit: contain;
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

@media (max-width: 600px) {
    .nav-container {
        flex-direction: column;
        gap: 8px;

        padding-bottom: 12px;
    }

    .navbar-brand img {
        width: 72px;
        height: 72px;
    }

    .nav-links {
        gap: 16px;
    }

    .hero {
        text-align: center;
    }

    .hero-content {
        padding-top: 160px;
    }

    .hero p {
        font-size: 1.05rem;
    }

    .hero-buttons {
        justify-content: center;
    }

    .section {
        padding: 70px 0;
    }

    .step-card {
        padding: 18px;
    }

    .step-card img {
        width: 100%;
        height: auto;
        max-height: none;

        padding: 10px;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .gallery-grid img {
        height: auto;
        object-fit: contain;
    }
}

@media (max-width: 750px) {
    .hosting-teaser-box {
        flex-direction: column;
        text-align: center;
        padding: 28px;
    }
}

.hosting-teaser {
    background:
        radial-gradient(circle at 80% 50%, rgba(23, 93, 220, 0.25), transparent 35%),
        var(--bg-soft);
}

.hosting-teaser-box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;

    padding: 42px;

    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 26px;

    box-shadow: 0 0 45px rgba(23, 93, 220, 0.16);
}

.hosting-teaser h2 {
    margin-bottom: 14px;
}

.hosting-teaser p {
    max-width: 720px;
    margin: 0;
}

.footer,
.footer * {
    font-weight: 400 !important;
}

.footer h3 {
    font-weight: 700 !important;
}

.footer p,
.footer a {
    font-size: 1rem !important;
    line-height: 1.6 !important;
}

.footer p {
    line-height: 1.8;
}

.footer a {
    display: inline-block;
    margin-bottom: 6px;
}
