:root {
    --lime: #c8ff3d;
    --lime-dark: #a4dc10;
    --black: #111111;
    --text: #222222;
    --muted: #686868;
    --white: #ffffff;
    --soft: #f5f5f1;
    --line: #e8e8e4;
    --container: 1220px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    color: var(--text);
    background: var(--white);
    font-family: "Manrope", Arial, sans-serif;
    overflow-x: hidden;
}

a {
    color: inherit;
    text-decoration: none;
}

button,
input,
textarea {
    font: inherit;
}

button {
    cursor: pointer;
}

.container {
    width: min(calc(100% - 48px), var(--container));
    margin: 0 auto;
}

.section-space {
    padding: 110px 0;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 18px;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.eyebrow::before {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--lime);
    content: "";
}

.section-heading h2 {
    max-width: 850px;
    margin: 0;
    font-family: "Unbounded", sans-serif;
    font-size: clamp(32px, 4.2vw, 58px);
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -0.06em;
}

.section-heading p {
    max-width: 650px;
    margin: 22px 0 0;
    color: var(--muted);
    font-size: 17px;
    line-height: 1.65;
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 52px;
    padding: 13px 22px;
    border-radius: 999px;
    font-size: 14px;
    font-weight: 800;
    transition: transform 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.button span {
    margin-left: 8px;
    font-size: 18px;
    line-height: 1;
}

.button:hover {
    transform: translateY(-2px);
}

.button-lime {
    color: var(--black);
    background: var(--lime);
}

.button-lime:hover {
    background: var(--lime-dark);
    box-shadow: 0 10px 25px rgba(164, 220, 16, 0.28);
}

.button-dark {
    color: var(--white);
    background: var(--black);
}

.button-dark:hover {
    background: #303030;
}.site-header {
    position: sticky;
    z-index: 100;
    top: 0;
    background: rgba(255, 255, 255, 0.9);
    border-bottom: 1px solid rgba(17, 17, 17, 0.08);
    backdrop-filter: blur(14px);
}

.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 82px;
    gap: 24px;
}

.site-logo {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    color: var(--black);
    font-family: "Unbounded", sans-serif;
    font-size: 18px;
    font-weight: 800;
    letter-spacing: -0.08em;
}

.site-logo-mark {
    display: grid;
    width: 31px;
    height: 31px;
    place-items: center;
    background: var(--lime);
    border-radius: 9px;
    font-size: 17px;
    transform: rotate(-8deg);
}

.site-nav {
    display: flex;
    align-items: center;
    gap: 28px;
    font-size: 14px;
    font-weight: 700;
}

.site-nav a {
    transition: color 0.2s ease;
}

.site-nav a:hover {
    color: #729c00;
}

.header-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: 10px 18px;
    background: var(--lime);
    border-radius: 999px;
    font-size: 14px;
    font-weight: 800;
    transition: transform 0.2s ease, background 0.2s ease;
}

.header-button:hover {
    background: var(--lime-dark);
    transform: translateY(-2px);
}

.header-button span {
    margin-left: 7px;
    font-size: 17px;
}

.site-burger {
    display: none;
    width: 45px;
    height: 45px;
    padding: 0;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 12px;
}

.site-burger span {
    display: block;
    width: 19px;
    height: 2px;
    margin: 4px auto;
    background: var(--black);
    border-radius: 2px;
}/* ========================================================
   HERO-СЕКЦИЯ С АВАНГАРДНОЙ АРТ-КОМПОЗИЦИЕЙ
   ======================================================== */
.hero-section {
    position: relative;
    min-height: 740px;
    padding: 90px 0 80px;
    overflow: hidden;
    background: #fbfbf9;
}

/* Фоновая холст-сетка (Bauhaus Blueprint Grid) */
.hero-art-backdrop {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 1;
    overflow: hidden;
}

.art-grid-overlay {
    position: absolute;
    inset: 0;
    background-image: 
        linear-gradient(rgba(17, 17, 17, 0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(17, 17, 17, 0.04) 1px, transparent 1px);
    background-size: 40px 40px;
    background-position: center center;
}

/* Координатные арт-маркеры */
.art-coordinate-label {
    position: absolute;
    top: 24px;
    right: 48px;
    font-family: "JetBrains Mono", monospace;
    font-size: 11px;
    letter-spacing: 0.15em;
    color: rgba(17, 17, 17, 0.35);
    font-weight: 600;
}

.art-crosshair {
    position: absolute;
    font-family: monospace;
    font-size: 18px;
    line-height: 1;
    color: rgba(17, 17, 17, 0.25);
    user-select: none;
}
.ch-1 { top: 120px; left: 8%; }
.ch-2 { bottom: 60px; left: 45%; }
.ch-3 { top: 40px; right: 28%; }

/* Геометрические арт-формы */
.art-shape {
    position: absolute;
}

/* 1. Большой наклонный лаймовый монолит */
.art-pylon {
    top: -120px;
    right: -80px;
    width: 620px;
    height: 720px;
    background: linear-gradient(145deg, #d4ff4d 0%, #b8f714 60%, #9fe000 100%);
    border-radius: 48px;
    transform: rotate(14deg);
    box-shadow: 0 30px 70px rgba(164, 220, 16, 0.18);
}

/* 2. Контурная арка черного цвета (Баухаус) */
.art-ring {
    right: 18%;
    bottom: -90px;
    width: 260px;
    height: 260px;
    border: 18px solid #111111;
    border-radius: 50%;
    transform: rotate(-10deg);
}

/* 3. Диагональный полосатый блок (штриховка гравюры) */
.art-stripes {
    top: 90px;
    right: 420px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    transform: rotate(-25deg);
}
.art-stripes span {
    display: block;
    width: 140px;
    height: 4px;
    background: #111111;
    border-radius: 2px;
}
.art-stripes span:nth-child(2) { width: 110px; background: var(--lime); }
.art-stripes span:nth-child(3) { width: 160px; }
.art-stripes span:nth-child(4) { width: 80px; }

/* 4. Конструктивный куб с черной гранью */
.art-cutout {
    top: 260px;
    right: 30px;
    width: 90px;
    height: 90px;
    background: #111111;
    border-radius: 18px;
    transform: rotate(45deg);
}

/* 5. Маленький акцентный круг */
.art-cube {
    bottom: 80px;
    right: 480px;
    width: 44px;
    height: 44px;
    background: #ffffff;
    border: 3px solid #111111;
    border-radius: 12px;
    transform: rotate(18deg);
}

.hero-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: minmax(0, 1.08fr) minmax(380px, 0.92fr);
    align-items: center;
    gap: 60px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 24px;
    padding: 8px 16px;
    background: #ffffff;
    border: 1px solid rgba(17, 17, 17, 0.12);
    border-radius: 999px;
    font-size: 13px;
    font-weight: 700;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.03);
}

.badge-dot {
    width: 8px;
    height: 8px;
    background: #729c00;
    border-radius: 50%;
}

.badge-tag {
    font-family: "JetBrains Mono", monospace;
    font-size: 10px;
    font-weight: 800;
    padding: 2px 7px;
    background: #111111;
    color: var(--lime);
    border-radius: 4px;
    letter-spacing: 0.05em;
}

.hero-title {
    max-width: 760px;
    margin: 0;
    color: var(--black);
    font-family: "Unbounded", sans-serif;
    font-size: clamp(42px, 5.5vw, 76px);
    font-weight: 700;
    line-height: 1.05;
    letter-spacing: -0.06em;
}

.hero-title mark {
    padding: 2px 8px;
    color: inherit;
    background: var(--lime);
    border-radius: 6px;
}

.hero-text {
    max-width: 610px;
    margin: 26px 0 0;
    color: #444444;
    font-size: 18px;
    line-height: 1.65;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 36px;
}

.hero-points {
    display: flex;
    flex-wrap: wrap;
    gap: 12px 28px;
    margin-top: 42px;
    color: #4a4a4a;
    font-size: 13px;
    font-weight: 700;
}

.hero-points span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.hero-points span::before {
    display: grid;
    width: 20px;
    height: 20px;
    place-items: center;
    color: var(--black);
    background: var(--lime);
    border-radius: 50%;
    content: "✓";
    font-size: 11px;
    font-weight: 900;
}

.hero-visual {
    position: relative;
    min-height: 520px;
}

.browser-card {
    position: absolute;
    top: 40px;
    right: 0;
    width: min(100%, 500px);
    overflow: hidden;
    background: var(--white);
    border: 2px solid #111111;
    border-radius: 20px;
    box-shadow: 20px 22px 0 #111111, 0 24px 45px rgba(0, 0, 0, 0.08);
    transform: rotate(2.5deg);
    transition: transform 0.3s ease;
}

.browser-card:hover {
    transform: rotate(0deg) scale(1.02);
}

.browser-dots {
    display: flex;
    align-items: center;
    gap: 7px;
    height: 42px;
    padding: 0 16px;
    background: #f0f0ea;
    border-bottom: 2px solid #111111;
}

.browser-dots i {
    width: 10px;
    height: 10px;
    background: #111111;
    border-radius: 50%;
}

.browser-content {
    padding: 24px;
}

.browser-nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.04em;
}

.browser-brand {
    padding: 6px 12px;
    background: var(--lime);
    border: 1px solid #111111;
    border-radius: 6px;
}

.browser-lines {
    display: grid;
    gap: 12px;
    margin-top: 44px;
}

.browser-lines b {
    display: block;
    height: 12px;
    background: #111111;
    border-radius: 4px;
}

.browser-lines b:nth-child(1) { width: 78%; }
.browser-lines b:nth-child(2) { width: 60%; }
.browser-lines b:nth-child(3) { width: 85%; background: var(--lime); }

.browser-blocks {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin-top: 36px;
}

.browser-blocks span {
    height: 115px;
    background: #f4f4ee;
    border: 1px solid rgba(17, 17, 17, 0.1);
    border-radius: 12px;
}

.browser-blocks span:nth-child(2) {
    background: var(--lime);
    border-color: #111111;
}

.hero-floating-card {
    position: absolute;
    z-index: 4;
    bottom: 0px;
    left: -20px;
    width: 215px;
    padding: 18px;
    color: var(--white);
    background: #111111;
    border-radius: 16px;
    border: 2px solid var(--lime);
    box-shadow: 0 16px 30px rgba(0, 0, 0, 0.25);
    transform: rotate(-5deg);
}

.hero-floating-card small {
    display: block;
    color: var(--lime);
    font-family: "JetBrains Mono", monospace;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.1em;
}

.hero-floating-card strong {
    display: block;
    margin-top: 6px;
    font-family: "Unbounded", sans-serif;
    font-size: 15px;
    line-height: 1.3;
}

.services-heading {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 30px;
}

.services-heading p {
    margin-bottom: 4px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 52px;
}

.service-card {
    min-height: 360px;
    padding: 28px;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 22px;
    transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.service-card:hover {
    border-color: #badf58;
    box-shadow: 0 20px 38px rgba(29, 41, 4, 0.1);
    transform: translateY(-7px);
}

.service-number {
    display: grid;
    width: 48px;
    height: 48px;
    place-items: center;
    background: var(--lime);
    border-radius: 14px;
    font-family: "Unbounded", sans-serif;
    font-size: 14px;
    font-weight: 700;
}

.service-card h3 {
    margin: 58px 0 14px;
    font-family: "Unbounded", sans-serif;
    font-size: 24px;
    letter-spacing: -0.06em;
}

.service-card p {
    margin: 0;
    color: var(--muted);
    font-size: 15px;
    line-height: 1.65;
}

.service-card a {
    display: inline-flex;
    gap: 8px;
    margin-top: 28px;
    font-size: 14px;
    font-weight: 800;
}

.service-card a span {
    font-size: 18px;
    line-height: 0.85;
}.process-section {
    color: var(--white);
    background: var(--black);
}

.process-section .section-heading p {
    color: #b9b9b9;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    margin-top: 62px;
    border-top: 1px solid rgba(255, 255, 255, 0.24);
}

.process-card {
    padding: 30px 25px 10px 0;
    border-right: 1px solid rgba(255, 255, 255, 0.24);
}

.process-card:not(:first-child) {
    padding-left: 25px;
}

.process-card:last-child {
    border-right: 0;
}

.process-card > span {
    color: var(--lime);
    font-family: "Unbounded", sans-serif;
    font-size: 12px;
}

.process-card h3 {
    margin: 42px 0 12px;
    font-family: "Unbounded", sans-serif;
    font-size: 19px;
    line-height: 1.3;
    letter-spacing: -0.05em;
}

.process-card p {
    margin: 0;
    color: #bdbdbd;
    font-size: 14px;
    line-height: 1.6;
}.advantages-grid {
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    gap: 50px;
    align-items: center;
}

.advantages-accent {
    min-height: 460px;
    padding: 42px;
    background: var(--lime);
    border-radius: 28px;
}

.advantages-accent h2 {
    max-width: 450px;
    margin: 0;
    font-family: "Unbounded", sans-serif;
    font-size: clamp(28px, 3vw, 40px);
    line-height: 1.15;
    letter-spacing: -0.065em;
}

.accent-dots {
    display: flex;
    gap: 12px;
    margin-top: 145px;
}

.accent-dots i {
    width: 30px;
    height: 30px;
    background: var(--black);
    border-radius: 50%;
}

.accent-dots i:nth-child(2) {
    background: var(--white);
}

.advantages-list {
    display: grid;
}

.advantage-row {
    display: grid;
    grid-template-columns: 50px 1fr;
    gap: 18px;
    padding: 24px 0;
    border-bottom: 1px solid var(--line);
}

.advantage-row:first-child {
    border-top: 1px solid var(--line);
}

.advantage-row > span {
    display: grid;
    width: 40px;
    height: 40px;
    place-items: center;
    background: var(--soft);
    border-radius: 12px;
    font-size: 14px;
    font-weight: 800;
}

.advantage-row h3 {
    margin: 0 0 7px;
    font-size: 17px;
}

.advantage-row p {
    margin: 0;
    color: var(--muted);
    font-size: 14px;
    line-height: 1.55;
}.portfolio-section {
    background: var(--soft);
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-top: 52px;
}

.project-card {
    overflow: hidden;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 22px;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.project-card:hover {
    box-shadow: 0 18px 38px rgba(0, 0, 0, 0.1);
    transform: translateY(-6px);
}

.project-preview {
    position: relative;
    height: 315px;
    padding: 24px;
    overflow: hidden;
}

.project-preview > span {
    position: relative;
    z-index: 2;
    display: inline-block;
    padding: 8px 10px;
    background: var(--white);
    border-radius: 999px;
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
}

.project-preview strong {
    position: absolute;
    z-index: 2;
    bottom: 25px;
    left: 24px;
    max-width: 75%;
    color: var(--white);
    font-family: "Unbounded", sans-serif;
    font-size: clamp(26px, 3vw, 44px);
    font-weight: 700;
    line-height: 1.08;
    letter-spacing: -0.07em;
}

.project-preview i {
    position: absolute;
    right: -62px;
    bottom: -75px;
    width: 270px;
    height: 270px;
    background: var(--lime);
    border-radius: 50%;
}

.preview-dark {
    background: linear-gradient(135deg, #111111 0%, #373737 100%);
}

.preview-lime {
    background: #dfffc6;
}

.preview-lime strong,
.preview-yellow strong,
.preview-gray strong {
    color: var(--black);
}

.preview-lime i {
    right: 12%;
    bottom: 43px;
    width: 170px;
    height: 170px;
    background: transparent;
    border: 18px solid var(--black);
}

.preview-yellow {
    background: #fff5cf;
}

.preview-yellow i {
    right: 8%;
    bottom: 25px;
    width: 180px;
    height: 180px;
    background: var(--black);
    border-radius: 18px;
    transform: rotate(20deg);
}

.preview-gray {
    background: #e5e5e5;
}

.preview-gray i {
    background: var(--white);
}

.project-info {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 20px 23px;
}

.project-info h3 {
    margin: 0;
    font-size: 17px;
}

.project-info p {
    margin: 6px 0 0;
    color: var(--muted);
    font-size: 13px;
}

.project-info b {
    display: grid;
    width: 39px;
    height: 39px;
    flex: 0 0 auto;
    place-items: center;
    background: var(--lime);
    border-radius: 50%;
    font-size: 20px;
}.contacts-section {
    padding: 100px 0;
}

.contacts-box {
    position: relative;
    overflow: hidden;
    padding: 72px;
    color: var(--white);
    background: var(--black);
    border-radius: 30px;
}

.contacts-content {
    position: relative;
    z-index: 2;
    max-width: 760px;
}

.contacts-content h2 {
    max-width: 730px;
    margin: 0;
    font-family: "Unbounded", sans-serif;
    font-size: clamp(33px, 4.5vw, 57px);
    line-height: 1.1;
    letter-spacing: -0.065em;
}

.contacts-content p {
    max-width: 570px;
    margin: 22px 0 32px;
    color: #c8c8c8;
    font-size: 17px;
    line-height: 1.65;
}

.contacts-decoration {
    position: absolute;
    right: -92px;
    bottom: -130px;
    width: 390px;
    height: 390px;
    background: var(--lime);
    border-radius: 50%;
}.site-footer {
    padding: 30px 0;
    border-top: 1px solid var(--line);
}

.footer-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.footer-container p {
    margin: 0;
    color: var(--muted);
    font-size: 13px;
}@media (max-width: 960px) {
    .site-burger {
        display: block;
    }

    .header-button {
        display: none;
    }

    .site-nav {
        position: absolute;
        top: 82px;
        right: 16px;
        left: 16px;
        display: none;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        padding: 12px;
        background: var(--white);
        border: 1px solid var(--line);
        border-radius: 16px;
        box-shadow: 0 14px 35px rgba(0, 0, 0, 0.12);
    }

    .site-nav.is-open {
        display: flex;
    }

    .site-nav a {
        padding: 13px;
    }

    .hero-grid,
    .advantages-grid {
        grid-template-columns: 1fr;
    }

    .hero-section {
        min-height: auto;
    }

    .hero-visual {
        width: min(100%, 540px);
        min-height: 500px;
        margin: 0 auto;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .service-card {
        min-height: 280px;
    }

    .service-card h3 {
        margin-top: 38px;
    }

    .process-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .process-card:nth-child(2) {
        border-right: 0;
    }

    .process-card:nth-child(3) {
        padding-left: 0;
    }

    .portfolio-grid {
        grid-template-columns: 1fr;
    }

    .advantages-accent {
        min-height: 340px;
    }
}

@media (max-width: 600px) {
    .container {
        width: min(calc(100% - 32px), var(--container));
    }

    .section-space {
        padding: 68px 0;
    }

    .header-container {
        min-height: 70px;
    }

    .site-nav {
        top: 70px;
    }

    .site-logo {
        font-size: 15px;
    }

    .site-logo-mark {
        width: 28px;
        height: 28px;
    }

    .hero-section {
        padding: 52px 0 36px;
    }

    .hero-section::before {
        top: -175px;
        right: -190px;
        width: 430px;
        height: 430px;
    }

    .hero-section::after {
        display: none;
    }

    .hero-title {
        font-size: clamp(36px, 11.4vw, 48px);
        line-height: 1.07;
    }

    .hero-text {
        font-size: 16px;
    }

    .hero-actions {
        flex-direction: column;
    }

    .hero-actions .button {
        width: 100%;
    }

    .hero-points {
        display: grid;
        gap: 13px;
    }

    .hero-visual {
        min-height: 370px;
        margin-top: 4px;
    }

    .browser-card {
        top: 34px;
        width: calc(100% - 25px);
        box-shadow: 13px 15px 0 var(--black), 0 20px 35px rgba(0, 0, 0, 0.12);
    }

    .browser-content {
        padding: 17px;
    }

    .browser-lines {
        margin-top: 34px;
    }

    .browser-blocks {
        margin-top: 25px;
    }

    .browser-blocks span {
        height: 80px;
    }

    .hero-floating-card {
        bottom: 0;
        left: 0;
        width: 172px;
        padding: 14px;
    }

    .hero-floating-card strong {
        font-size: 15px;
    }

    .section-heading p {
        font-size: 16px;
    }

    .services-heading {
        display: block;
    }

    .service-card {
        min-height: auto;
        padding: 24px;
    }

    .service-card h3 {
        font-size: 21px;
    }

    .process-grid {
        grid-template-columns: 1fr;
        margin-top: 42px;
    }

    .process-card,
    .process-card:not(:first-child) {
        padding: 25px 0;
        border-right: 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.24);
    }

    .process-card:last-child {
        border-bottom: 0;
    }

    .process-card h3 {
        margin-top: 25px;
    }

    .advantages-accent {
        min-height: 300px;
        padding: 30px 25px;
        border-radius: 22px;
    }

    .accent-dots {
        margin-top: 75px;
    }

    .project-preview {
        height: 245px;
    }

    .project-info {
        padding: 18px;
    }

    .contacts-section {
        padding: 68px 0;
    }

    .contacts-box {
        padding: 40px 24px;
        border-radius: 22px;
    }

    .contacts-decoration {
        right: -150px;
        bottom: -170px;
        width: 300px;
        height: 300px;
    }

    .contacts-content p {
        font-size: 15px;
    }

    .footer-container {
        flex-direction: column;
        align-items: flex-start;
    }
}
/* ========================================================
   ТИПОГРАФИЧЕСКИЙ АРТ-ЭЛЕМЕНТ В ПРАВОЙ ФИГУРЕ
   ======================================================== */
.pylon-typography {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
    padding: 60px 40px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

/* Огромная контрастная надпись ART на фоне */
.pylon-watermark {
    position: absolute;
    top: 60px;
    left: -20px;
    font-family: "Unbounded", sans-serif;
    font-size: 190px;
    font-weight: 900;
    line-height: 0.8;
    color: rgba(17, 17, 17, 0.08);
    letter-spacing: -0.08em;
    user-select: none;
    pointer-events: none;
    transform: rotate(-14deg);
}

/* Спецификация дизайн-студии (плашка со свойствами) */
.pylon-specs {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-top: 40px;
    margin-left: 20px;
    font-family: "JetBrains Mono", monospace;
    font-size: 11px;
    font-weight: 700;
    color: rgba(17, 17, 17, 0.65);
    letter-spacing: 0.1em;
}

.spec-label {
    display: inline-block;
    padding: 3px 8px;
    background: #111111;
    color: var(--lime);
    border-radius: 4px;
    width: fit-content;
    font-size: 10px;
}

.spec-code {
    font-size: 14px;
    color: #111111;
    font-weight: 800;
}

/* Геометрическая разметка с градусом */
.pylon-geometry {
    position: absolute;
    bottom: 80px;
    left: 60px;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 12px;
}

.geo-circle {
    width: 32px;
    height: 32px;
    border: 3px dashed rgba(17, 17, 17, 0.35);
    border-radius: 50%;
}

.geo-line {
    width: 60px;
    height: 2px;
    background: rgba(17, 17, 17, 0.3);
}

.geo-degree {
    font-family: "JetBrains Mono", monospace;
    font-size: 12px;
    font-weight: 800;
    color: rgba(17, 17, 17, 0.6);
}

/* ========================================================
   ЛЕВАЯ ТИПОГРАФИЧЕСКАЯ АРТ-ФИГУРА
   ======================================================== */
.art-shape-left {
    position: absolute;
    top: 90px;
    left: -40px;
    z-index: 1;
    pointer-events: none;
    user-select: none;
}

/* Контурная геометрическая рамка слева */
.left-art-frame {
    position: relative;
    width: 220px;
    height: 380px;
    border: 2px solid rgba(17, 17, 17, 0.08);
    border-left: 5px solid var(--lime);
    background: linear-gradient(135deg, rgba(200, 255, 61, 0.05) 0%, rgba(255, 255, 255, 0.5) 100%);
    border-radius: 20px;
    padding: 24px 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transform: rotate(-6deg);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.03);
}

.frame-tag {
    font-family: "JetBrains Mono", monospace;
    font-size: 10px;
    font-weight: 800;
    color: rgba(17, 17, 17, 0.4);
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

.frame-index {
    font-family: "Unbounded", sans-serif;
    font-size: 46px;
    font-weight: 900;
    line-height: 1;
    color: rgba(17, 17, 17, 0.12);
    letter-spacing: -0.05em;
}

/* Шкала миллиметровки внизу левой рамки */
.frame-scale {
    display: flex;
    align-items: flex-end;
    gap: 5px;
    height: 24px;
}

.frame-scale span {
    display: block;
    width: 2px;
    background: rgba(17, 17, 17, 0.25);
    border-radius: 1px;
}
.frame-scale span:nth-child(1) { height: 12px; }
.frame-scale span:nth-child(2) { height: 18px; background: var(--lime-dark); }
.frame-scale span:nth-child(3) { height: 8px; }
.frame-scale span:nth-child(4) { height: 24px; background: #111111; }
.frame-scale span:nth-child(5) { height: 14px; }

/* Полукруг за левой рамкой */
.left-art-circle {
    position: absolute;
    bottom: -40px;
    right: -30px;
    width: 90px;
    height: 90px;
    border: 12px solid rgba(17, 17, 17, 0.06);
    border-radius: 50%;
}

@media (max-width: 960px) {
    .art-shape-left {
        display: none;
    }
}

/* ========================================================
   СКВОЗНЫЕ АРТ-СТИЛИ ДЛЯ ВСЕХ СЕКЦИЙ САЙТА
   ======================================================== */

/* Технические микро-теги для заголовков */
.eyebrow-code {
    font-family: "JetBrains Mono", monospace;
    font-size: 10px;
    font-weight: 800;
    padding: 2px 6px;
    background: #111111;
    color: var(--lime);
    border-radius: 4px;
    margin-right: 6px;
    letter-spacing: 0.05em;
}

.eyebrow-dark {
    color: #ffffff !important;
}

.eyebrow-dark .eyebrow-code {
    background: var(--lime);
    color: #111111;
}

.eyebrow-lime {
    color: var(--lime) !important;
}

.eyebrow-lime .eyebrow-code {
    background: var(--lime);
    color: #111111;
}

/* Сетка карточек Услуг (Services) */
.service-card {
    position: relative;
    border: 2px solid #111111;
    border-radius: 20px;
    background: #ffffff;
    box-shadow: 6px 6px 0px #111111;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.service-card:hover {
    transform: translate(-3px, -3px);
    box-shadow: 10px 10px 0px #111111;
}

.service-card-featured {
    background: #fbfbf7;
    border-color: #111111;
    border-top: 6px solid var(--lime);
}

.service-card-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 24px;
}

.service-number {
    display: inline-grid;
    width: 44px;
    height: 44px;
    place-items: center;
    background: var(--lime);
    color: #111111;
    border: 2px solid #111111;
    border-radius: 10px;
    font-family: "Unbounded", sans-serif;
    font-size: 16px;
    font-weight: 800;
}

.service-tech-tag {
    font-family: "JetBrains Mono", monospace;
    font-size: 11px;
    font-weight: 700;
    color: rgba(17, 17, 17, 0.4);
    letter-spacing: 0.1em;
}

.service-link {
    font-weight: 800;
    font-size: 14px;
    margin-top: 24px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: #111111;
}

.service-link span {
    transition: transform 0.2s ease;
}

.service-card:hover .service-link span {
    transform: translate(3px, -3px);
}

/* Процесс (Process) */
.process-section {
    background: #111111;
    color: #ffffff;
    position: relative;
    overflow: hidden;
}

.process-grid {
    border-top: 2px solid rgba(255, 255, 255, 0.15);
    margin-top: 60px;
}

.process-card {
    border-right: 1px solid rgba(255, 255, 255, 0.12);
    padding: 32px 24px 20px 0;
}

.process-step-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 24px;
}

.step-badge {
    font-family: "JetBrains Mono", monospace;
    font-size: 10px;
    font-weight: 800;
    color: var(--lime);
    background: rgba(200, 255, 61, 0.1);
    border: 1px solid rgba(200, 255, 61, 0.3);
    padding: 3px 8px;
    border-radius: 4px;
    letter-spacing: 0.1em;
}

.step-num {
    font-family: "Unbounded", sans-serif;
    font-size: 28px;
    font-weight: 800;
    color: rgba(255, 255, 255, 0.15);
}

.process-card h3 {
    color: #ffffff;
    font-family: "Unbounded", sans-serif;
    font-size: 20px;
    line-height: 1.25;
    margin-bottom: 12px;
}

.process-card p {
    color: rgba(255, 255, 255, 0.65);
    font-size: 14px;
    line-height: 1.6;
}

/* Преимущества (Advantages) */
.advantages-accent {
    position: relative;
    background: linear-gradient(145deg, #d4ff4d 0%, #b8f714 60%, #9fe000 100%);
    border: 2px solid #111111;
    border-radius: 28px;
    box-shadow: 10px 10px 0px #111111;
    padding: 44px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.accent-top-tag {
    font-family: "JetBrains Mono", monospace;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.15em;
    color: #111111;
}

.accent-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 48px;
}

.accent-ratio {
    font-family: "JetBrains Mono", monospace;
    font-size: 11px;
    font-weight: 700;
    color: rgba(17, 17, 17, 0.6);
}

.advantage-row {
    display: grid;
    grid-template-columns: 56px 1fr;
    gap: 20px;
    padding: 24px 0;
    border-bottom: 1px solid rgba(17, 17, 17, 0.12);
}

.adv-num {
    display: grid;
    width: 44px;
    height: 44px;
    place-items: center;
    background: #111111;
    color: var(--lime);
    border-radius: 12px;
    font-family: "JetBrains Mono", monospace;
    font-size: 14px;
    font-weight: 800;
}

.advantage-row h3 {
    font-size: 18px;
    font-weight: 800;
    margin: 0 0 6px 0;
    color: #111111;
}

.advantage-row p {
    font-size: 14px;
    color: #555555;
    margin: 0;
    line-height: 1.6;
}

/* Портфолио (Portfolio) */
.project-card {
    border: 2px solid #111111;
    border-radius: 22px;
    overflow: hidden;
    background: #ffffff;
    box-shadow: 6px 6px 0px #111111;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.project-card:hover {
    transform: translate(-3px, -3px);
    box-shadow: 10px 10px 0px #111111;
}

.project-meta-bar {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

.project-category {
    font-family: "JetBrains Mono", monospace;
    font-size: 10px;
    font-weight: 800;
    padding: 4px 10px;
    background: #ffffff;
    border: 1px solid #111111;
    border-radius: 6px;
    color: #111111;
    letter-spacing: 0.05em;
}

.project-year {
    font-family: "JetBrains Mono", monospace;
    font-size: 11px;
    font-weight: 700;
    color: rgba(17, 17, 17, 0.5);
}

.preview-dark .project-year {
    color: rgba(255, 255, 255, 0.5);
}

.project-arrow-btn {
    display: grid;
    width: 44px;
    height: 44px;
    place-items: center;
    background: var(--lime);
    border: 2px solid #111111;
    border-radius: 50%;
    font-size: 18px;
    color: #111111;
    transition: transform 0.2s ease;
}

.project-card:hover .project-arrow-btn {
    transform: rotate(45deg);
}

/* Контакты (Contact) */
.contacts-box {
    position: relative;
    background: #111111;
    border: 2px solid #111111;
    border-radius: 32px;
    padding: 70px 60px;
    color: #ffffff;
    overflow: hidden;
    box-shadow: 12px 12px 0px var(--lime);
}

.contacts-art-badge {
    position: absolute;
    top: 32px;
    right: 40px;
    font-family: "JetBrains Mono", monospace;
    font-size: 11px;
    font-weight: 800;
    color: var(--lime);
    letter-spacing: 0.15em;
}

.contacts-art-ring {
    position: absolute;
    right: -80px;
    bottom: -80px;
    width: 280px;
    height: 280px;
    border: 20px solid var(--lime);
    border-radius: 50%;
    opacity: 0.4;
}

/* ========================================================
   ИСПРАВЛЕНИЕ ХОЛОДНОГО БЕЙДЖА HERO (MOD. 01)
   ======================================================== */
.hero-badge {
    display: inline-flex !important;
    align-items: center !important;
    gap: 8px !important;
    width: fit-content !important;
    max-width: 100% !important;
    margin-bottom: 24px !important;
    padding: 6px 14px 6px 10px !important;
    background: #ffffff !important;
    border: 1px solid rgba(17, 17, 17, 0.15) !important;
    border-radius: 999px !important;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.04) !important;
    white-space: nowrap !important;
}

/* Сбрасываем старое сжатие всех span в кружочки 9x9 */
.hero-badge span {
    width: auto !important;
    height: auto !important;
    background: transparent !important;
    border-radius: 0 !important;
    display: inline !important;
    font-size: 11px !important;
    font-weight: 800 !important;
    letter-spacing: 0.08em !important;
    color: #111111 !important;
}

/* Зеленая точка-индикатор */
.hero-badge .badge-dot {
    display: inline-block !important;
    width: 8px !important;
    height: 8px !important;
    min-width: 8px !important;
    background: #729c00 !important;
    border-radius: 50% !important;
    margin-right: 2px !important;
}

/* Черный бейдж с кодом MOD. 01 */
.hero-badge .eyebrow-code {
    display: inline-block !important;
    font-family: "JetBrains Mono", monospace !important;
    font-size: 10px !important;
    font-weight: 800 !important;
    padding: 2px 7px !important;
    background: #111111 !important;
    color: var(--lime, #c8ff3d) !important;
    border-radius: 4px !important;
    letter-spacing: 0.05em !important;
    margin-right: 4px !important;
}
