:root {
    --bg: #041326;
    --panel: #0a1f3d;
    --line: rgba(255, 255, 255, 0.08);
    --text: #eef4fb;
    --muted: #b6c4d6;
    --accent: #ffd12f;
    --container: min(1300px, calc(100vw - 32px));
    --radius: 28px;
    --shadow: 0 18px 56px rgba(0, 0, 0, 0.26);
}

/* ===== BASE ===== */

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: "Manrope", system-ui, -apple-system, "Segoe UI", sans-serif;
    color: var(--text);
    line-height: 1.55;

    background:
        linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px),
        radial-gradient(circle at 14% 0%, rgba(62, 106, 180, 0.14), transparent 28%),
        radial-gradient(circle at 88% 10%, rgba(255, 209, 47, 0.05), transparent 18%),
        linear-gradient(180deg, #041326 0%, #03101e 58%, #05162b 100%);

    background-size:
        120px 120px,
        120px 120px,
        auto,
        auto,
        auto;
}

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

img {
    display: block;
    max-width: 100%;
}

p {
    margin: 0 0 16px;
    color: var(--muted);
}

/* ===== LAYOUT ===== */

.container {
    width: var(--container);
    margin: 0 auto;
}

.section {
    padding: 72px 0;
}

.section--tight {
    padding: 48px 0;
}

.card {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius);
    border: 1px solid var(--line);
    background: linear-gradient(
        180deg,
        rgba(11, 31, 60, 0.92),
        rgba(6, 17, 33, 0.96)
    );
    box-shadow: var(--shadow);
}

.muted {
    color: var(--muted);
}

/* ===== TYPOGRAPHY ===== */

h1,
h2,
h3 {
    margin: 0 0 14px;
    line-height: 1.02;
    letter-spacing: -0.04em;
}

h1 {
    max-width: 18ch;
    font-size: clamp(36px, 4.5vw, 50px);
}

h2 {
    max-width: 26ch;
    font-size: clamp(28px, 3vw, 36px);
}

h3 {
    font-size: 22px;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 14px;

    color: var(--accent);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.eyebrow::before {
    content: "";
    width: 32px;
    height: 2px;
    background: linear-gradient(90deg, var(--accent), transparent);
}

/* ===== BUTTONS ===== */

.btn-row {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    min-height: 52px;
    padding: 0 22px;

    border: 1px solid transparent;
    border-radius: 999px;

    font-size: 15px;
    font-weight: 800;

    transition: 0.2s ease;
}

.btn:hover {
    transform: translateY(-2px);
}

.btn--accent {
    color: #17120a;
    background: linear-gradient(180deg, #ffe05f, #f6c81d);
    box-shadow: 0 14px 34px rgba(255, 209, 47, 0.22);
}

.btn--ghost {
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(255, 255, 255, 0.1);
}

/* ===== HEADER ===== */

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;

    background: rgba(3, 14, 29, 0.85);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid var(--line);
}

.site-header__inner {
    min-height: 84px;

    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
}

.brand {
    display: flex;
    align-items: center;
    gap: 14px;
    min-width: 0;
}

.brand__mark {
    width: 44px;
    flex: 0 0 44px;
    filter: drop-shadow(0 0 16px rgba(255, 209, 47, 0.24));
}

.brand__title {
    font-size: 18px;
    font-weight: 800;
    line-height: 1.05;
}

.brand__sub {
    color: var(--muted);
    font-size: 13px;
    line-height: 1.1;
}

/* ===== NAVIGATION ===== */

.nav-wrap {
    display: flex;
    align-items: center;
    gap: 18px;
}

.site-nav {
    display: flex;
    align-items: center;
    gap: 8px;
}

/* ВАЖНО: убираем точки меню */
.site-nav ul {
    display: flex;
    align-items: center;
    gap: 8px;

    margin: 0;
    padding: 0;
    list-style: none;
}

.site-nav li {
    margin: 0;
    padding: 0;
    list-style: none;
}

.site-nav li::marker {
    display: none;
    content: "";
}

.site-nav a {
    display: inline-flex;
    align-items: center;

    height: 40px;
    padding: 0 14px;

    border-radius: 999px;

    color: #d7e0ec;
    font-size: 15px;
    font-weight: 700;

    transition: 0.2s ease;
}

.site-nav a:hover,
.site-nav .current-menu-item a {
    background: rgba(255, 255, 255, 0.06);
}

.header-cta {
    display: flex;
    align-items: center;
    gap: 14px;
}

.header-phone {
    font-weight: 800;
    white-space: nowrap;
}

.mobile-toggle {
    display: none;

    width: 44px;
    height: 44px;

    border: 1px solid var(--line);
    border-radius: 14px;

    color: #fff;
    background: rgba(255, 255, 255, 0.05);
}

/* ===== HERO ===== */

.hero {
    padding: 42px 0 28px;
}

.hero__grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.02fr);
    gap: 22px;
    align-items: stretch;
}

.hero__copy {
    min-height: 540px;
    padding: 38px;

    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hero__copy p {
    max-width: 44ch;
    font-size: 18px;
}

.hero__visual {
    min-height: 540px;

    background:
        linear-gradient(180deg, rgba(8, 18, 30, 0.16), rgba(8, 18, 30, 0.54)),
        url("https://task.harrismedia.kz/wp-content/uploads/212.jpg")
        center / cover no-repeat;
}

.hero__float {
    position: absolute;
    left: 20px;
    right: 20px;
    bottom: 20px;

    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}

.mini {
    padding: 16px 16px 14px;

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

    background: rgba(5, 13, 25, 0.74);
    backdrop-filter: blur(10px);
}

.mini strong {
    display: block;
    margin-bottom: 6px;

    color: var(--accent);
    font-size: 28px;
    line-height: 1;
}

.mini span {
    display: block;

    color: #edf3fb;
    font-size: 14px;
}

/* ===== METRICS ===== */

.metrics {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
}

.metric {
    min-height: 118px;
    padding: 20px;

    border: 1px solid var(--line);
    border-radius: 24px;

    background: rgba(7, 20, 39, 0.68);
}

.metric strong {
    display: block;
    margin-bottom: 8px;

    font-size: 18px;
}

.metric span {
    color: var(--muted);
    font-size: 14px;
}

/* ===== SECTION HEAD ===== */

.section-head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 24px;

    margin-bottom: 22px;
}

.section-head p {
    max-width: 560px;
}

/* ===== SERVICES ===== */

.services {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.service {
    padding: 22px;

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

    background: rgba(7, 20, 39, 0.72);
}

.service__num {
    width: 46px;
    height: 46px;
    margin-bottom: 14px;

    display: grid;
    place-items: center;

    border-radius: 14px;

    color: #16120a;
    font-weight: 800;

    background: linear-gradient(180deg, #ffe05f, #f6c81d);
}

.service p {
    font-size: 15px;
}

.service ul {
    margin: 14px 0 0;
    padding-left: 18px;

    color: var(--muted);
}

.service li + li {
    margin-top: 6px;
}

/* ===== OBJECTS ===== */

.objects {
    display: grid;
    grid-template-columns: 1.2fr 1fr 1fr;
    gap: 16px;
}

.object {
    position: relative;
    overflow: hidden;

	max-height: 280px;

    border: 1px solid var(--line);
    border-radius: 28px;

    box-shadow: var(--shadow);
}

.object img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.object::after {
    content: "";
    position: absolute;
    inset: 0;

    background: linear-gradient(
        180deg,
        rgba(0, 0, 0, 0.06),
        rgba(0, 0, 0, 0.72)
    );
}

.object__content {
    position: absolute;
    left: 20px;
    right: 20px;
    bottom: 18px;
    z-index: 2;
}

.object__content strong {
    display: block;
    font-size: 20px;
}

.object__content span {
    display: block;
    margin-top: 8px;

    color: #edf4fb;
    font-size: 15px;
}

.object--tall {
    grid-row: span 2;
    min-height: 576px;
}

/* ===== ABOUT ===== */

.about {
    display: grid;
    grid-template-columns: 0.96fr 1.04fr;
    gap: 22px;
}

.about__photo {
    min-height: 540px;

    background:
        linear-gradient(180deg, rgba(8, 18, 30, 0.12), rgba(8, 18, 30, 0.34)),
        url("https://task.harrismedia.kz/wp-content/uploads/2149374433.jpg")
        center / cover no-repeat;
}

.about__copy {
    padding: 34px;
}

.features {
    display: grid;
    gap: 12px;
    margin-top: 20px;
}

.feature {
    padding: 16px 18px;

    border: 1px solid var(--line);
    border-radius: 20px;

    background: rgba(0, 0, 0, 0.12);
}

.feature strong {
    display: block;
    margin-bottom: 4px;

    font-size: 17px;
}

.feature span {
    color: var(--muted);
    font-size: 15px;
}

/* ===== PROCESS ===== */

.process {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.step {
    padding: 22px;

    border: 1px solid var(--line);
    border-radius: 24px;

    background: rgba(7, 20, 39, 0.72);
}

.step__num {
    margin-bottom: 12px;

    color: var(--accent);
    font-size: 42px;
    font-weight: 800;
    line-height: 1;
}

.step p {
    font-size: 15px;
}

/* ===== REVIEWS ===== */

.reviews {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.review {
    padding: 22px;

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

    background: rgba(7, 20, 39, 0.74);
}

.review__top {
    display: flex;
    align-items: center;
    gap: 12px;

    margin-bottom: 14px;
}

.review__avatar {
    width: 52px;
    height: 52px;
    flex: 0 0 52px;

    display: grid;
    place-items: center;

    border-radius: 50%;

    font-weight: 800;

    background: linear-gradient(180deg, #86a8ff, #4d71ff);
}

.review--two .review__avatar {
    color: #1d140a;
    background: linear-gradient(180deg, #ffd88c, #f0b42c);
}

.review--three .review__avatar {
    color: #0b2215;
    background: linear-gradient(180deg, #8ee4b6, #46c985);
}

.review__name {
    font-weight: 800;
}

.review__meta {
    color: var(--muted);
    font-size: 13px;
}

.stars {
    margin-top: 3px;

    color: var(--accent);
    font-size: 13px;
    letter-spacing: 0.12em;
}

.review blockquote {
    margin: 0 0 14px;

    color: #eef4fa;
    font-size: 15px;
}

.review__tag {
    display: inline-flex;
    padding: 7px 12px;

    border-radius: 999px;

    color: #dce7f2;
    font-size: 12px;
    font-weight: 800;

    background: rgba(255, 255, 255, 0.06);
}

/* ===== CTA ===== */

.cta {
    padding: 34px;
}

.cta__grid {
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    gap: 24px;
}

/* ===== CONTACT ===== */

.contact {
    display: grid;
    grid-template-columns: 0.92fr 1.08fr;
    gap: 22px;
}

.contact__card {
    padding: 30px;
}

.contact__form {
    display: grid;
    gap: 12px;
    margin-top: 20px;
}

.input,
.textarea {
    width: 100%;

    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 18px;

    color: #fff;
    background: rgba(255, 255, 255, 0.04);
}

.input {
    height: 54px;
    padding: 0 16px;
}

.textarea {
    min-height: 120px;
    padding: 16px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;

    margin-top: 18px;
}

.contact-item__icon {
    width: 48px;
    height: 48px;
    flex: 0 0 48px;

    display: grid;
    place-items: center;

    border-radius: 16px;

    color: #17120a;
    font-weight: 800;

    background: linear-gradient(180deg, #ffe05f, #f6c81d);
}

.map-box {
    position: relative;
    overflow: hidden;

    min-height: 470px;

    border: 1px solid var(--line);
    border-radius: 28px;

    background: linear-gradient(135deg, #ddd6c0 0%, #d6cfb6 100%);
}

.map-box::before {
    content: "";
    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            60deg,
            transparent 0 21%,
            rgba(145, 136, 112, 0.35) 21% 22%,
            transparent 22% 100%
        ),
        linear-gradient(
            -40deg,
            transparent 0 29%,
            rgba(145, 136, 112, 0.32) 29% 30%,
            transparent 30% 100%
        );
}

.map-box::after {
    content: "";
    position: absolute;
    left: 57%;
    top: 44%;

    width: 30px;
    height: 30px;

    border: 8px solid rgba(255, 255, 255, 0.95);
    border-radius: 50%;

    background: #007bff;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

/* ===== PAGE ===== */

.page-wrap {
    padding: 52px 0 24px;
}

.page-card {
    padding: 34px;
}

.page-card h1 {
    max-width: 28ch;
    font-size: clamp(34px, 4vw, 54px);
}

.page-card h2 {
    max-width: none;
    margin-top: 22px;

    font-size: 28px;
}

.about-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;

    margin-top: 20px;
}

.about-box {
    padding: 20px;

    border: 1px solid var(--line);
    border-radius: 24px;

    background: rgba(0, 0, 0, 0.12);
}

.about-box strong {
    display: block;
    margin-bottom: 8px;

    color: var(--accent);
    font-size: 30px;
    line-height: 1;
}

/* ===== FOOTER ===== */

.site-footer {
    margin-top: 18px;
    padding: 32px 0 42px;

    border-top: 1px solid var(--line);
}

.site-footer__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.site-footer__links {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;

    color: var(--muted);
}

/* ===== RESPONSIVE ===== */

@media (max-width: 1100px) {
    .hero__grid,
    .about,
    .contact,
    .cta__grid {
        grid-template-columns: 1fr;
    }

    .metrics,
    .services,
    .process,
    .reviews,
    .about-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

    .object--tall {
        grid-row: auto;
        min-height: 340px;
    }
}

@media (max-width: 860px) {
    .mobile-toggle {
        display: grid;
        place-items: center;
    }

    .nav-wrap {
        position: fixed;
        left: 16px;
        right: 16px;
        top: 84px;

        display: none;
        flex-direction: column;
        align-items: stretch;
        gap: 14px;

        padding: 14px;

        border: 1px solid var(--line);
        border-radius: 24px;

        background: rgba(3, 14, 29, 0.98);
        box-shadow: var(--shadow);
    }

    .nav-wrap.is-open {
        display: flex;
    }

    .site-nav,
    .site-nav ul,
    .header-cta {
        width: 100%;
        flex-direction: column;
        align-items: stretch;
    }

    .site-nav a,
    .header-cta .btn,
    .header-phone {
        width: 100%;
        justify-content: center;
    }

    .hero__grid,
    .about,
    .contact,
    .cta__grid,
    .metrics,
    .services,
    .objects,
    .process,
    .reviews,
    .about-grid {
        grid-template-columns: 1fr;
    }

    .hero__copy,
    .hero__visual {
        min-height: auto;
    }

    .hero__copy {
        padding: 28px;
    }

    .hero__visual {
        min-height: 420px;
    }

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

    .section-head {
        display: block;
    }

    .section {
        padding: 64px 0;
    }
}

@media (max-width: 560px) {
    .container {
        width: min(calc(100vw - 20px), var(--container));
    }

    .site-header__inner {
        min-height: 76px;
    }

    .brand__sub {
        display: none;
    }

    .card,
    .object,
    .map-box {
        border-radius: 24px;
    }

    .hero__copy,
    .about__copy,
    .contact__card,
    .page-card,
    .cta {
        padding: 22px;
    }

    h1 {
        max-width: none;
        font-size: clamp(32px, 9vw, 46px);
    }

    .hero__copy p {
        font-size: 17px;
    }

    .btn-row {
        display: grid;
        grid-template-columns: 1fr;
    }

    .section {
        padding: 56px 0;
    }
}