:root {
    --dark-bg: #010d2b;
    --dark-text: #eef2ff;
    --light-bg: #e9e9e9;
    --light-text: #1b2230;
    --line: #d8dbe3;
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    padding-top: 78px;
    font-family: "Manrope", "Segoe UI", sans-serif;
    color: var(--light-text);
    background: var(--light-bg);
}

.topbar {
    background: #ececec;
    min-height: 78px;
    padding: 0 1.75rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
}

.brand {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
}

.brand img {
    width: 44px;
    height: 44px;
    object-fit: cover;
}

.main-nav {
    margin-left: auto;
    display: flex;
    align-items: center;
    gap: 2.7rem;
}

.main-nav a {
    color: #262b35;
    text-decoration: none;
    font-size: 1.3rem;
    line-height: 1;
}

.main-nav a.active {
    padding-bottom: 0.25rem;
    border-bottom: 2px solid #2b2f3a;
}

.social-links {
    margin-left: 2.8rem;
    display: flex;
    align-items: center;
    gap: 1.8rem;
}

.social-links a {
    color: #111827;
    text-decoration: none;
    font-family: "Sora", sans-serif;
    font-size: 1.45rem;
    font-weight: 600;
    line-height: 1;
}

.social-links a img {
    width: 1.02rem;
    height: 1.02rem;
    display: block;
    object-fit: contain;
}

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

.hero-pricing {
    background: linear-gradient(90deg, #010816, #021236 60%, #04142f);
    color: var(--dark-text);
    padding: 2rem 0 5rem;
    border: 1px solid #3f4a65;
}

.hero-pricing h1 {
    margin: 0 0 1rem;
    font-family: "Sora", sans-serif;
    font-size: clamp(2.15rem, 3.5vw, 3.15rem);
    line-height: 1.12;
    letter-spacing: -0.015em;
}

.hero-pricing p {
    max-width: 99ch;
    line-height: 1.5;
    color: #d8def1;
    font-size: 1.125rem;
    margin: 0.55rem 0;
}

.service-grid {
    margin-top: 3rem;
    display: grid;
    gap: 1.3rem;
    grid-template-columns: repeat(5, minmax(0, 1fr));
}

.service-card {
    color: #ecf1ff;
    display: flex;
    flex-direction: column;
}

.service-grid article img {
    width: 100%;
    height: 178px;
    object-fit: cover;
}

.service-grid h2,
.service-grid h3 {
    font-family: "Sora", sans-serif;
    font-size: 1.5rem;
    line-height: 1.15;
    margin: 0.9rem 0 0.65rem;
    min-height: 4.75rem;
}

.service-grid p {
    margin: 0;
    font-size: 1.125rem;
    line-height: 1.48;
    color: #ced8ef;
    min-height: 4.95rem;
}

.service-card ul {
    margin: 0.85rem 0 0;
    padding: 0;
    list-style: none;
    font-size: 1.125rem;
    color: #d9e2f4;
    line-height: 1.44;
}

.service-card li {
    margin-bottom: 0.34rem;
}

.service-card li::before {
    content: "✔ ";
}

.price-list-wrap {
    padding: 1.55rem 0 2.4rem;
    background: #ececec;
}

.price-list-wrap h2 {
    text-align: center;
    margin: 0 0 2.6rem;
    font-family: "Sora", sans-serif;
    font-size: clamp(2.15rem, 3vw, 3.45rem);
    letter-spacing: -0.015em;
}

.price-row {
    display: grid;
    grid-template-columns: 47% 53%;
    gap: 1.45rem;
    align-items: center;
    padding: 1.08rem 0 1.22rem;
    border-top: 1px solid var(--line);
}

.price-row:first-of-type {
    border-top: none;
}

.price-row h3 {
    text-align: center;
    font-family: "Sora", sans-serif;
    font-size: clamp(1.18rem, 1.95vw, 2.05rem);
    line-height: 1.22;
    margin: 0 0 1rem;
}

.price-row ul {
    margin: 0;
    padding-left: 1.28rem;
    line-height: 1.47;
    font-size: 1.125rem;
    color: #444;
    max-width: 40ch;
}

.price-row li {
    margin-bottom: 0.52rem;
}

.price-row img {
    width: 100%;
    height: 210px;
    object-fit: cover;
}

.page-footer {
    margin-top: 1.6rem;
    padding: 1.5rem 0 0.3rem;
}

.footer-social {
    display: flex;
    gap: 1.1rem;
    margin-bottom: 1.55rem;
}

.footer-social a {
    width: 1.3rem;
    height: 1.3rem;
    text-decoration: none;
    color: #101827;
    border: 1px solid #101827;
    border-radius: 50%;
    display: grid;
    place-items: center;
    font-family: "Sora", sans-serif;
    font-size: 0.6rem;
    text-transform: uppercase;
}

.footer-social a img {
    width: 0.76rem;
    height: 0.76rem;
    display: block;
    object-fit: contain;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.footer-links a {
    color: #3a3f49;
    font-size: 0.82rem;
    text-decoration: underline;
}

.floating-wa {
    position: fixed;
    right: 1.1rem;
    bottom: 1rem;
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    text-decoration: none;
    background: #fff;
    color: #111827;
    border: 1px solid #d0d4de;
    display: grid;
    place-items: center;
    font-family: "Sora", sans-serif;
    font-size: 0.95rem;
}

@media (max-width: 1080px) {
    body {
        padding-top: 64px;
    }

    .topbar {
        min-height: 64px;
        padding: 0 0.9rem;
        gap: 0.6rem;
    }

    .main-nav {
        margin-left: auto;
        gap: 0.85rem;
    }

    .main-nav a {
        font-size: 0.95rem;
    }

    .social-links {
        margin-left: 0.9rem;
        gap: 0.65rem;
    }

    .social-links a {
        font-size: 0.92rem;
    }

    .brand img {
        width: 34px;
        height: 34px;
    }

    .service-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (max-width: 800px) {
    .container {
        width: min(98%, 740px);
    }

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

    .price-row {
        grid-template-columns: 1fr;
        gap: 0.92rem;
    }

    .price-row h3 {
        text-align: left;
    }

    .price-row ul {
        max-width: 100%;
    }
}

@media (max-width: 560px) {
    .service-grid {
        grid-template-columns: 1fr;
    }
}
