:root {
    --bg: #060609;
    --bg-soft: #0c0c12;
    --surface: rgba(255, 255, 255, 0.055);
    --surface-hover: rgba(255, 255, 255, 0.085);
    --border: rgba(255, 255, 255, 0.11);
    --border-strong: rgba(255, 255, 255, 0.20);

    --text: #ffffff;
    --muted: #a4a4b1;

    --accent: #705cff;
    --accent-dark: #523eea;
    --accent-light: #afa5ff;
    --blue: #61d5ff;

    --container: 1360px;
}

/* ========================================
   БАЗОВЫЕ СТИЛИ
======================================== */

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

html {
    scroll-behavior: smooth;
}

body {
    min-width: 320px;
    overflow-x: hidden;
    font-family: "Inter", Arial, sans-serif;
    color: var(--text);
    background: var(--bg);
}

body::before {
    content: "";
    position: fixed;
    inset: 0;
    z-index: -10;
    background:
        radial-gradient(
            700px circle at 88% 8%,
            rgba(112, 92, 255, 0.12),
            transparent 58%
        ),
        radial-gradient(
            500px circle at 8% 70%,
            rgba(57, 198, 255, 0.05),
            transparent 55%
        ),
        var(--bg);
    pointer-events: none;
}

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

button,
input,
textarea {
    font: inherit;
}

button {
    color: inherit;
}

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

section {
    position: relative;
}

.container {
    width: min(var(--container), calc(100% - 64px));
    margin: 0 auto;
}

/* ========================================
   ШАПКА
======================================== */

.header {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 50;
    width: 100%;
    padding: 20px 0;
}

.header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.logo {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-size: 20px;
    font-weight: 800;
    letter-spacing: -0.6px;
}

.logo__mark {
    display: grid;
    width: 40px;
    height: 40px;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 12px;
    background:
        linear-gradient(
            145deg,
            rgba(255, 255, 255, 0.22),
            transparent 55%
        ),
        var(--accent);
    box-shadow:
        0 12px 35px rgba(112, 92, 255, 0.34),
        inset 0 1px 0 rgba(255, 255, 255, 0.22);
}

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

.nav a {
    position: relative;
    color: var(--muted);
    font-size: 14px;
    font-weight: 500;
    transition: color 0.2s ease;
}

.nav a::after {
    content: "";
    position: absolute;
    right: 0;
    bottom: -8px;
    left: 0;
    height: 1px;
    background: var(--accent-light);
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 0.2s ease;
}

.nav a:hover {
    color: var(--text);
}

.nav a:hover::after {
    transform: scaleX(1);
}

.header__button {
    display: inline-flex;
    min-height: 48px;
    align-items: center;
    justify-content: center;
    padding: 0 22px;
    border: 1px solid var(--border);
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.055);
    font-size: 14px;
    font-weight: 700;
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    transition:
        transform 0.2s ease,
        background 0.2s ease,
        border-color 0.2s ease;
}

.header__button:hover {
    transform: translateY(-2px);
    border-color: var(--border-strong);
    background: rgba(255, 255, 255, 0.095);
}

/* ========================================
   КНОПКИ
======================================== */

.button {
    display: inline-flex;
    min-height: 58px;
    align-items: center;
    justify-content: center;
    padding: 0 28px;
    border: 0;
    border-radius: 15px;
    font-size: 15px;
    font-weight: 800;
    cursor: pointer;
    transition:
        transform 0.22s ease,
        box-shadow 0.22s ease,
        background 0.22s ease,
        border-color 0.22s ease;
}

.button:hover {
    transform: translateY(-3px);
}

.button--primary {
    background:
        linear-gradient(
            135deg,
            #7867ff,
            #5945f0
        );
    box-shadow:
        0 18px 50px rgba(112, 92, 255, 0.32),
        inset 0 1px 0 rgba(255, 255, 255, 0.18);
}

.button--primary:hover {
    box-shadow:
        0 24px 60px rgba(112, 92, 255, 0.46),
        inset 0 1px 0 rgba(255, 255, 255, 0.22);
}

.button--secondary {
    border: 1px solid var(--border);
    background: rgba(255, 255, 255, 0.045);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
}

.button--secondary:hover {
    border-color: var(--border-strong);
    background: rgba(255, 255, 255, 0.085);
}

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

.hero {
    min-height: 100vh;
    overflow: hidden;
}

.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    opacity: 0.18;
    background-image:
        linear-gradient(
            rgba(255, 255, 255, 0.035) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(255, 255, 255, 0.035) 1px,
            transparent 1px
        );
    background-size: 64px 64px;
    mask-image:
        linear-gradient(
            to bottom,
            transparent,
            black 18%,
            black 75%,
            transparent
        );
    -webkit-mask-image:
        linear-gradient(
            to bottom,
            transparent,
            black 18%,
            black 75%,
            transparent
        );
    pointer-events: none;
}

.hero::after {
    content: "";
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 5;
    height: 150px;
    background:
        linear-gradient(
            to bottom,
            transparent,
            var(--bg)
        );
    pointer-events: none;
}

.hero__inner {
    position: relative;
    z-index: 10;
    display: flex;
    min-height: 100vh;
    align-items: center;
    padding-top: 125px;
    padding-bottom: 70px;
}

.hero__content {
    display: grid;
    width: 100%;
    grid-template-columns: minmax(0, 1.08fr) minmax(430px, 0.92fr);
    align-items: center;
    gap: 54px;
}

.hero__left {
    position: relative;
    z-index: 5;
}

.hero__badge {
    display: inline-flex;
    min-height: 38px;
    align-items: center;
    gap: 9px;
    margin-bottom: 28px;
    padding: 0 16px;
    border: 1px solid var(--border);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.045);
    color: #d4d0ff;
    font-size: 13px;
    font-weight: 500;
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
}

.hero__badge::before {
    content: "";
    width: 7px;
    height: 7px;
    flex-shrink: 0;
    border-radius: 50%;
    background: #8d7cff;
    box-shadow: 0 0 16px rgba(141, 124, 255, 0.9);
}

.hero__title {
    max-width: 800px;
    font-size: clamp(62px, 6.3vw, 100px);
    line-height: 0.95;
    letter-spacing: -5.5px;
    font-weight: 900;
}

.hero__title span {
    display: block;
    color: transparent;
    background:
        linear-gradient(
            90deg,
            #d8d2ff 0%,
            #998aff 48%,
            #65d7ff 100%
        );
    background-clip: text;
    -webkit-background-clip: text;
}

.hero__text {
    max-width: 650px;
    margin-top: 30px;
    color: var(--muted);
    font-size: 19px;
    line-height: 1.65;
}

.hero__actions {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-top: 38px;
}

.hero__features {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
    margin-top: 54px;
}

.hero__features > div {
    display: flex;
    min-height: 106px;
    flex-direction: column;
    justify-content: center;
    padding: 20px;
    border: 1px solid var(--border);
    border-radius: 17px;
    background:
        linear-gradient(
            145deg,
            rgba(255, 255, 255, 0.065),
            rgba(255, 255, 255, 0.025)
        );
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    transition:
        transform 0.22s ease,
        border-color 0.22s ease,
        background 0.22s ease;
}

.hero__features > div:hover {
    transform: translateY(-4px);
    border-color: var(--border-strong);
    background:
        linear-gradient(
            145deg,
            rgba(255, 255, 255, 0.09),
            rgba(255, 255, 255, 0.035)
        );
}

.hero__features strong {
    margin-bottom: 8px;
    font-size: 15px;
    line-height: 1.3;
}

.hero__features span {
    color: var(--muted);
    font-size: 12px;
    line-height: 1.5;
}

/* ========================================
   СВЕЧЕНИЕ HERO
======================================== */

.hero__glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(115px);
    pointer-events: none;
}

.hero__glow--one {
    top: 90px;
    right: -140px;
    width: 580px;
    height: 580px;
    background: rgba(112, 92, 255, 0.25);
    animation: glowMoveOne 9s ease-in-out infinite alternate;
}

.hero__glow--two {
    bottom: -220px;
    left: -170px;
    width: 520px;
    height: 520px;
    background: rgba(52, 188, 255, 0.11);
    animation: glowMoveTwo 11s ease-in-out infinite alternate;
}

/* ========================================
   ПРАВАЯ КОМПОЗИЦИЯ HERO
======================================== */

.hero__right {
    position: relative;
    display: flex;
    min-height: 600px;
    align-items: center;
    justify-content: center;
}

.dashboard {
    position: relative;
    width: 100%;
    max-width: 530px;
    height: 570px;
    perspective: 1200px;
}

.dashboard::before {
    content: "";
    position: absolute;
    top: 80px;
    left: 50%;
    width: 420px;
    height: 420px;
    border-radius: 50%;
    background: rgba(112, 92, 255, 0.2);
    filter: blur(90px);
    transform: translateX(-50%);
    pointer-events: none;
}

.card {
    border: 1px solid rgba(255, 255, 255, 0.14);
    background:
        linear-gradient(
            145deg,
            rgba(255, 255, 255, 0.105),
            rgba(255, 255, 255, 0.035)
        );
    box-shadow:
        0 42px 100px rgba(0, 0, 0, 0.44),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
}

.site-preview {
    position: absolute;
    top: 76px;
    left: 50%;
    z-index: 3;
    width: 440px;
    height: 405px;
    overflow: hidden;
    border-radius: 25px;
    transform:
        translateX(-50%)
        rotateY(-7deg)
        rotateX(3deg);
    animation: previewFloat 6s ease-in-out infinite;
}

.browser {
    display: flex;
    height: 44px;
    align-items: center;
    gap: 7px;
    padding: 0 17px;
    border-bottom: 1px solid var(--border);
    background: rgba(0, 0, 0, 0.18);
}

.browser span {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
}

.browser span:first-child {
    background: #ff6b6b;
}

.browser span:nth-child(2) {
    background: #ffd166;
}

.browser span:nth-child(3) {
    background: #5edb95;
}

.screen {
    position: relative;
    height: calc(100% - 44px);
    padding: 38px 34px;
    background:
        radial-gradient(
            circle at 85% 10%,
            rgba(112, 92, 255, 0.28),
            transparent 32%
        ),
        linear-gradient(
            150deg,
            #101019,
            #08080d
        );
}

.screen::after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 230px;
    height: 230px;
    border-radius: 50%;
    background: rgba(99, 215, 255, 0.08);
    filter: blur(45px);
}

.screen__badge {
    position: relative;
    z-index: 2;
    display: inline-flex;
    min-height: 25px;
    align-items: center;
    padding: 0 10px;
    border: 1px solid rgba(255, 255, 255, 0.11);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.06);
    color: #c9c3ff;
    font-size: 9px;
    font-weight: 600;
}

.line {
    position: relative;
    z-index: 2;
    width: 74%;
    height: 12px;
    margin-top: 12px;
    border-radius: 999px;
    background:
        linear-gradient(
            90deg,
            rgba(255, 255, 255, 0.28),
            rgba(255, 255, 255, 0.08)
        );
}

.line--big {
    width: 88%;
    height: 28px;
    margin-top: 26px;
    background:
        linear-gradient(
            90deg,
            #ffffff,
            #a99eff 62%,
            #68d7ff
        );
}

.line--short {
    width: 48%;
}

.button-demo {
    position: relative;
    z-index: 2;
    width: 112px;
    height: 34px;
    margin-top: 24px;
    border-radius: 10px;
    background:
        linear-gradient(
            135deg,
            #7867ff,
            #5945f0
        );
    box-shadow: 0 10px 30px rgba(112, 92, 255, 0.3);
}

.screen__cards {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    margin-top: 34px;
}

.screen__card {
    min-height: 90px;
    padding: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.045);
}

.screen__icon {
    width: 25px;
    height: 25px;
    margin-bottom: 13px;
    border-radius: 8px;
    background:
        linear-gradient(
            135deg,
            #8274ff,
            #57cfff
        );
}

.screen__card span {
    display: block;
    width: 90%;
    height: 5px;
    margin-top: 6px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.17);
}

.screen__card span:last-child {
    width: 65%;
}

/* ========================================
   ПЛАВАЮЩИЕ КАРТОЧКИ HERO
======================================== */

.floating-card {
    position: absolute;
    z-index: 6;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px 17px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 16px;
    background: rgba(18, 18, 27, 0.82);
    box-shadow:
        0 22px 60px rgba(0, 0, 0, 0.34),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(22px);
    -webkit-backdrop-filter: blur(22px);
}

.floating-card strong {
    display: block;
    font-size: 14px;
    line-height: 1.35;
}

.floating-card span {
    display: block;
    margin-top: 3px;
    color: var(--muted);
    font-size: 10px;
    line-height: 1.35;
}

.floating-card__icon {
    display: grid;
    width: 38px;
    height: 38px;
    flex-shrink: 0;
    place-items: center;
    border-radius: 12px;
    background:
        linear-gradient(
            135deg,
            #6955ff,
            #40cfff
        );
    font-size: 20px;
    font-weight: 800;
    box-shadow: 0 10px 30px rgba(112, 92, 255, 0.28);
}

.stats {
    top: 38px;
    right: -8px;
    min-width: 210px;
    animation: cardFloatOne 5s ease-in-out infinite;
}

.seo {
    bottom: 35px;
    left: -14px;
    min-width: 220px;
    animation: cardFloatTwo 6s ease-in-out infinite;
}

.floating-card__score {
    display: grid;
    width: 44px;
    height: 44px;
    flex-shrink: 0;
    place-items: center;
    border: 3px solid #67d6ff;
    border-radius: 50%;
    color: #ffffff;
    font-size: 12px;
    font-weight: 800;
    box-shadow:
        0 0 25px rgba(103, 214, 255, 0.2),
        inset 0 0 18px rgba(103, 214, 255, 0.08);
}

.conversion {
    right: -2px;
    bottom: 88px;
    display: block;
    width: 150px;
    animation: cardFloatThree 5.5s ease-in-out infinite;
}

.conversion > span {
    margin: 0 0 5px;
    font-size: 10px;
}

.conversion > strong {
    font-size: 21px;
}

.conversion__bar {
    width: 100%;
    height: 6px;
    margin-top: 11px;
    overflow: hidden;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.1);
}

.conversion__bar span {
    width: 100%;
    height: 100%;
    margin: 0;
    border-radius: inherit;
    background:
        linear-gradient(
            90deg,
            #7663ff,
            #61d6ff
        );
}

/* ========================================
   ОБЩИЕ ЗАГОЛОВКИ СЕКЦИЙ
======================================== */

.section-heading {
    display: grid;
    grid-template-columns: 0.55fr 1.2fr 0.85fr;
    align-items: end;
    gap: 34px;
    margin-bottom: 58px;
}

.section-heading__label {
    color: var(--accent-light);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.section-heading h2 {
    max-width: 760px;
    font-size: clamp(42px, 5vw, 72px);
    line-height: 1;
    letter-spacing: -3px;
}

.section-heading p {
    color: var(--muted);
    font-size: 16px;
    line-height: 1.7;
}

.section-heading--center {
    display: flex;
    max-width: 850px;
    flex-direction: column;
    align-items: center;
    margin-right: auto;
    margin-bottom: 58px;
    margin-left: auto;
    text-align: center;
}

.section-heading--center h2 {
    max-width: 800px;
    margin-top: 18px;
}

.section-heading--center p {
    max-width: 680px;
    margin-top: 22px;
}

/* ========================================
   ОБЩИЕ КАРТОЧКИ
======================================== */

.advantage-card,
.service-card,
.process-card {
    position: relative;
    overflow: hidden;
    border: 1px solid var(--border);
    background:
        linear-gradient(
            145deg,
            rgba(255, 255, 255, 0.07),
            rgba(255, 255, 255, 0.025)
        );
    transition:
        transform 0.25s ease,
        border-color 0.25s ease,
        background 0.25s ease;
}

.advantage-card::after,
.service-card::after {
    content: "";
    position: absolute;
    right: -90px;
    bottom: -110px;
    width: 240px;
    height: 240px;
    border-radius: 50%;
    background: rgba(112, 92, 255, 0.1);
    filter: blur(50px);
    transition: transform 0.35s ease;
}

.advantage-card:hover,
.service-card:hover {
    transform: translateY(-6px);
    border-color: var(--border-strong);
    background:
        linear-gradient(
            145deg,
            rgba(255, 255, 255, 0.095),
            rgba(255, 255, 255, 0.035)
        );
}

.advantage-card:hover::after,
.service-card:hover::after {
    transform: scale(1.2);
}

.advantage-card__icon,
.service-card__icon {
    display: grid;
    width: 54px;
    height: 54px;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 16px;
    background:
        linear-gradient(
            145deg,
            rgba(255, 255, 255, 0.14),
            rgba(255, 255, 255, 0.04)
        );
    font-size: 24px;
    box-shadow: 0 15px 38px rgba(0, 0, 0, 0.2);
}

/* ========================================
   РАЗДЕЛИТЕЛИ СЕКЦИЙ
======================================== */

.advantages::before,
.services::before,
.first-project::before,
.portfolio::before,
.testimonials::before,
.process::before,
.faq::before,
.contact::before {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    width: min(var(--container), calc(100% - 64px));
    height: 1px;
    background:
        linear-gradient(
            90deg,
            transparent,
            rgba(255, 255, 255, 0.11),
            transparent
        );
    transform: translateX(-50%);
}

/* ========================================
   ПОЧЕМУ С НАМИ СПОКОЙНО
======================================== */

.advantages {
    padding: 140px 0 100px;
    background:
        radial-gradient(
            620px circle at 12% 48%,
            rgba(90, 170, 255, 0.075),
            transparent 58%
        );
}

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

.advantage-card {
    min-height: 270px;
    padding: 32px;
    border-radius: 24px;
}

.advantage-card__icon {
    margin-bottom: 52px;
}

.advantage-card h3 {
    position: relative;
    z-index: 2;
    margin-bottom: 14px;
    font-size: 24px;
    letter-spacing: -0.8px;
}

.advantage-card p {
    position: relative;
    z-index: 2;
    color: var(--muted);
    font-size: 15px;
    line-height: 1.7;
}

/* ========================================
   УСЛУГИ
======================================== */

.services {
    padding: 100px 0 140px;
    background:
        radial-gradient(
            680px circle at 88% 16%,
            rgba(112, 92, 255, 0.10),
            transparent 56%
        );
}

.services__grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}

.service-card {
    display: flex;
    min-height: 330px;
    flex-direction: column;
    padding: 30px;
    border-radius: 24px;
}

.service-card__icon {
    margin-bottom: 48px;
}

.service-card__icon svg {
    width: 25px;
    height: 25px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.7;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.service-card h3 {
    position: relative;
    z-index: 2;
    margin-bottom: 12px;
    font-size: 28px;
    line-height: 1.15;
    letter-spacing: -1px;
}

.service-card p {
    position: relative;
    z-index: 2;
    min-height: 52px;
    max-width: 540px;
    color: var(--muted);
    font-size: 15px;
    line-height: 1.7;
}

.service-card ul {
    position: relative;
    z-index: 2;
    display: grid;
    gap: 11px;
    margin-top: 22px;
    list-style: none;
}

.service-card li {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #d8d8e1;
    font-size: 14px;
}

.service-card li::before {
    content: "✓";
    display: grid;
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    place-items: center;
    border-radius: 6px;
    background: rgba(112, 92, 255, 0.15);
    color: var(--accent-light);
    font-size: 10px;
    font-weight: 800;
}

/* ========================================
   ВПЕРВЫЕ ЗАКАЗЫВАЕТЕ САЙТ
======================================== */

.first-project {
    padding: 45px 0 145px;
    background:
        radial-gradient(
            620px circle at 92% 100%,
            rgba(75, 200, 255, 0.08),
            transparent 58%
        );
}

.first-project__box {
    display: grid;
    grid-template-columns: 0.85fr 1fr;
    gap: 75px;
    align-items: center;
    overflow: hidden;
    padding: 65px;
    border: 1px solid var(--border);
    border-radius: 30px;
    background:
        radial-gradient(
            circle at 15% 15%,
            rgba(112, 92, 255, 0.18),
            transparent 34%
        ),
        radial-gradient(
            circle at 90% 90%,
            rgba(75, 204, 255, 0.08),
            transparent 28%
        ),
        linear-gradient(
            145deg,
            rgba(255, 255, 255, 0.075),
            rgba(255, 255, 255, 0.025)
        );
}

.first-project__content h2 {
    max-width: 620px;
    margin-top: 18px;
    font-size: clamp(42px, 4.5vw, 66px);
    line-height: 1.02;
    letter-spacing: -3px;
}

.first-project__content p {
    max-width: 590px;
    margin-top: 24px;
    color: var(--muted);
    font-size: 16px;
    line-height: 1.75;
}

.first-project__content .button {
    margin-top: 32px;
}

.first-project__list {
    display: grid;
    gap: 12px;
}

.first-project__item {
    display: grid;
    grid-template-columns: 48px 1fr;
    gap: 15px;
    align-items: start;
    padding: 19px;
    border: 1px solid var(--border);
    border-radius: 17px;
    background: rgba(255, 255, 255, 0.04);
    transition:
        transform 0.22s ease,
        border-color 0.22s ease,
        background 0.22s ease;
}

.first-project__item:hover {
    transform: translateX(5px);
    border-color: var(--border-strong);
    background: rgba(255, 255, 255, 0.07);
}

.first-project__item > span {
    display: grid;
    width: 40px;
    height: 40px;
    place-items: center;
    border: 1px solid rgba(175, 165, 255, 0.25);
    border-radius: 12px;
    background: rgba(112, 92, 255, 0.13);
    color: var(--accent-light);
}

.first-project__item > span svg {
    width: 20px;
    height: 20px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.first-project__item strong {
    display: block;
    margin-bottom: 6px;
    font-size: 15px;
}

.first-project__item p {
    color: var(--muted);
    font-size: 13px;
    line-height: 1.55;
}

/* ========================================
   ПОРТФОЛИО
======================================== */

.portfolio {
    padding: 150px 0;
    background:
        radial-gradient(
            720px circle at 88% 24%,
            rgba(112, 92, 255, 0.10),
            transparent 58%
        );
}

.portfolio__grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}

.project-card {
    overflow: hidden;
    border: 1px solid var(--border);
    border-radius: 26px;
    background:
        linear-gradient(
            145deg,
            rgba(255, 255, 255, 0.07),
            rgba(255, 255, 255, 0.025)
        );
    transition:
        transform 0.25s ease,
        border-color 0.25s ease,
        box-shadow 0.25s ease;
}

.project-card:hover {
    transform: translateY(-6px);
    border-color: var(--border-strong);
    box-shadow: 0 28px 70px rgba(0, 0, 0, 0.28);
}

.project-card--large {
    grid-column: span 2;
}

.project-card__preview {
    padding: 18px 18px 0;
}

.project-browser {
    display: flex;
    height: 38px;
    align-items: center;
    gap: 6px;
    padding: 0 14px;
    border: 1px solid var(--border);
    border-bottom: 0;
    border-radius: 17px 17px 0 0;
    background: rgba(255, 255, 255, 0.045);
}

.project-browser span {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.18);
}

.project-browser span:first-child {
    background: #ff6b6b;
}

.project-browser span:nth-child(2) {
    background: #ffd166;
}

.project-browser span:nth-child(3) {
    background: #5edb95;
}

.project-screen {
    position: relative;
    min-height: 330px;
    overflow: hidden;
    border: 1px solid var(--border);
    border-radius: 0 0 18px 18px;
}

.project-card--large .project-screen {
    min-height: 470px;
}

.project-screen__header {
    position: relative;
    z-index: 3;
    display: flex;
    height: 58px;
    align-items: center;
    justify-content: space-between;
    padding: 0 24px;
}

.project-screen__logo {
    width: 72px;
    height: 10px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.78);
}

.project-screen__nav {
    display: flex;
    gap: 14px;
}

.project-screen__nav span {
    width: 38px;
    height: 6px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.2);
}

.project-screen__content {
    position: relative;
    z-index: 3;
    width: 58%;
    padding: 52px 0 40px 40px;
}

.project-screen__tag {
    width: 96px;
    height: 24px;
    margin-bottom: 22px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.12);
}

.project-screen__title {
    width: 95%;
    height: 29px;
    margin-bottom: 10px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.9);
}

.project-screen__title--short {
    width: 68%;
}

.project-screen__text {
    width: 82%;
    height: 9px;
    margin-top: 24px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.24);
}

.project-screen__text--short {
    width: 58%;
    margin-top: 9px;
}

.project-screen__button {
    width: 122px;
    height: 38px;
    margin-top: 28px;
    border-radius: 11px;
    background:
        linear-gradient(
            135deg,
            #7968ff,
            #5743ef
        );
    box-shadow: 0 12px 30px rgba(112, 92, 255, 0.25);
}

.project-screen--clinic {
    background:
        radial-gradient(
            circle at 80% 35%,
            rgba(97, 213, 255, 0.18),
            transparent 30%
        ),
        linear-gradient(
            145deg,
            #10202a,
            #0a1017
        );
}

.project-screen__visual {
    position: absolute;
    right: 5%;
    bottom: 0;
    width: 37%;
    height: 85%;
}

.project-screen__circle {
    position: absolute;
    right: 10px;
    bottom: 65px;
    width: 220px;
    height: 220px;
    border-radius: 50%;
    background:
        linear-gradient(
            145deg,
            rgba(101, 215, 255, 0.85),
            rgba(112, 92, 255, 0.5)
        );
    opacity: 0.85;
}

.project-screen__panel {
    position: absolute;
    right: 24px;
    bottom: 35px;
    width: 205px;
    height: 118px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.09);
    backdrop-filter: blur(18px);
}

.project-screen--construction {
    background:
        linear-gradient(
            145deg,
            #28200e,
            #10100e
        );
}

.project-screen--construction .project-screen__content {
    width: 65%;
}

.project-screen__building {
    position: absolute;
    right: 4%;
    bottom: 0;
    display: flex;
    height: 76%;
    align-items: flex-end;
    gap: 8px;
}

.project-screen__building span {
    display: block;
    width: 54px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    background:
        linear-gradient(
            to top,
            rgba(234, 180, 65, 0.18),
            rgba(255, 255, 255, 0.08)
        );
}

.project-screen__building span:first-child {
    height: 55%;
}

.project-screen__building span:nth-child(2) {
    height: 82%;
}

.project-screen__building span:nth-child(3) {
    height: 68%;
}

.project-screen--beauty {
    background:
        radial-gradient(
            circle at 80% 25%,
            rgba(255, 193, 221, 0.2),
            transparent 30%
        ),
        linear-gradient(
            145deg,
            #25161f,
            #100c11
        );
}

.project-screen--beauty .project-screen__content {
    width: 64%;
}

.project-screen__portrait {
    position: absolute;
    right: 7%;
    bottom: -36px;
    width: 155px;
    height: 255px;
    border-radius: 80px 80px 24px 24px;
    background:
        linear-gradient(
            145deg,
            #d5a0b9,
            #7b4e6a
        );
    opacity: 0.8;
}

.project-card__content {
    padding: 28px 30px 32px;
}

.project-card__top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 18px;
}

.project-card__type,
.project-card__year {
    color: var(--muted);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.project-card h3 {
    margin-bottom: 13px;
    font-size: 26px;
    letter-spacing: -0.9px;
}

.project-card p {
    max-width: 660px;
    color: var(--muted);
    font-size: 14px;
    line-height: 1.7;
}

.project-card__tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 22px;
}

.project-card__tags span {
    display: inline-flex;
    min-height: 32px;
    align-items: center;
    padding: 0 12px;
    border: 1px solid var(--border);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.035);
    color: #d1d1da;
    font-size: 11px;
}

.portfolio__note {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
    margin-top: 28px;
    padding: 24px 26px;
    border: 1px solid var(--border);
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.035);
}

.portfolio__note p {
    color: var(--muted);
    font-size: 14px;
}

/* ========================================
   ОТЗЫВЫ
======================================== */

.testimonials {
    padding: 45px 0 135px;
    background:
        radial-gradient(
            620px circle at 10% 18%,
            rgba(112, 92, 255, 0.08),
            transparent 58%
        );
}

.testimonials__box {
    position: relative;
    display: grid;
    grid-template-columns: 0.9fr 1fr;
    gap: 80px;
    align-items: center;
    overflow: hidden;
    padding: 65px;
    border: 1px solid var(--border);
    border-radius: 30px;
    background:
        radial-gradient(
            circle at 10% 10%,
            rgba(112, 92, 255, 0.17),
            transparent 34%
        ),
        radial-gradient(
            circle at 90% 90%,
            rgba(97, 213, 255, 0.07),
            transparent 30%
        ),
        linear-gradient(
            145deg,
            rgba(255, 255, 255, 0.075),
            rgba(255, 255, 255, 0.025)
        );
}

.testimonials__box::before {
    content: "“";
    position: absolute;
    top: -65px;
    left: 36px;
    color: rgba(255, 255, 255, 0.035);
    font-family: Georgia, serif;
    font-size: 300px;
    line-height: 1;
    pointer-events: none;
}

.testimonials__content {
    position: relative;
    z-index: 2;
}

.testimonials__content h2 {
    max-width: 650px;
    margin-top: 19px;
    font-size: clamp(42px, 4.7vw, 68px);
    line-height: 1.02;
    letter-spacing: -3.2px;
}

.testimonials__content p {
    max-width: 620px;
    margin-top: 25px;
    color: var(--muted);
    font-size: 16px;
    line-height: 1.75;
}

.testimonials__content .button {
    margin-top: 32px;
}

.testimonials__principles {
    position: relative;
    z-index: 2;
    display: grid;
    gap: 13px;
}

.testimonial-principle {
    display: grid;
    grid-template-columns: 54px 1fr;
    gap: 17px;
    align-items: start;
    padding: 21px;
    border: 1px solid var(--border);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.04);
    transition:
        transform 0.22s ease,
        border-color 0.22s ease,
        background 0.22s ease;
}

.testimonial-principle:hover {
    transform: translateX(5px);
    border-color: var(--border-strong);
    background: rgba(255, 255, 255, 0.07);
}

.testimonial-principle__icon {
    display: grid;
    width: 48px;
    height: 48px;
    place-items: center;
    border: 1px solid rgba(175, 165, 255, 0.25);
    border-radius: 14px;
    background: rgba(112, 92, 255, 0.13);
    color: var(--accent-light);
}

.testimonial-principle__icon svg {
    width: 23px;
    height: 23px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.7;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.testimonial-principle strong {
    display: block;
    margin: 2px 0 7px;
    font-size: 16px;
}

.testimonial-principle p {
    color: var(--muted);
    font-size: 13px;
    line-height: 1.6;
}

/* ========================================
   ПРОЦЕСС
======================================== */

.process {
    padding: 130px 0;
    background:
        radial-gradient(
            640px circle at 10% 75%,
            rgba(71, 199, 255, 0.06),
            transparent 58%
        );
}

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

.process-card {
    min-height: 270px;
    padding: 30px;
    border-radius: 22px;
}

.process-card::after {
    display: none !important;
    content: none !important;
}

.process-card__icon {
    display: grid;
    width: 48px;
    height: 48px;
    place-items: center;
    margin-bottom: 58px;
    border: 1px solid var(--border);
    border-radius: 15px;
    background:
        linear-gradient(
            145deg,
            rgba(255, 255, 255, 0.11),
            rgba(255, 255, 255, 0.035)
        );
    color: var(--accent-light);
}

.process-card__icon svg {
    width: 25px;
    height: 25px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.7;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.process-card h3 {
    margin-bottom: 13px;
    font-size: 21px;
    letter-spacing: -0.6px;
}

.process-card p {
    color: var(--muted);
    font-size: 14px;
    line-height: 1.65;
}

/* ========================================
   РЕЗУЛЬТАТ
======================================== */

.result {
    padding: 45px 0 135px;
}

.result__box {
    display: grid;
    grid-template-columns: 1fr 0.8fr;
    gap: 70px;
    align-items: center;
    overflow: hidden;
    padding: 65px;
    border: 1px solid var(--border);
    border-radius: 30px;
    background:
        radial-gradient(
            circle at 90% 15%,
            rgba(112, 92, 255, 0.18),
            transparent 32%
        ),
        linear-gradient(
            145deg,
            rgba(255, 255, 255, 0.075),
            rgba(255, 255, 255, 0.025)
        );
}

.result__content h2 {
    max-width: 700px;
    margin-top: 20px;
    font-size: clamp(40px, 4.5vw, 66px);
    line-height: 1.03;
    letter-spacing: -3px;
}

.result__content p {
    max-width: 650px;
    margin-top: 24px;
    color: var(--muted);
    font-size: 16px;
    line-height: 1.75;
}

.result__list {
    display: grid;
    gap: 13px;
}

.result__list > div {
    display: flex;
    min-height: 58px;
    align-items: center;
    gap: 14px;
    padding: 0 18px;
    border: 1px solid var(--border);
    border-radius: 15px;
    background: rgba(255, 255, 255, 0.045);
    color: #dedee7;
    font-size: 14px;
}

.result__list > div > span {
    display: grid;
    width: 26px;
    height: 26px;
    flex-shrink: 0;
    place-items: center;
    border-radius: 8px;
    background: rgba(112, 92, 255, 0.2);
    color: var(--accent-light);
    font-weight: 800;
}

/* ========================================
   FAQ
======================================== */

.faq {
    padding: 145px 0;
    background:
        radial-gradient(
            620px circle at 8% 18%,
            rgba(112, 92, 255, 0.09),
            transparent 58%
        );
}

.faq__layout {
    display: grid;
    grid-template-columns: 0.72fr 1fr;
    gap: 90px;
    align-items: start;
}

.faq__heading {
    position: sticky;
    top: 40px;
}

.faq__heading h2 {
    max-width: 620px;
    margin-top: 20px;
    font-size: clamp(42px, 4.8vw, 68px);
    line-height: 1.02;
    letter-spacing: -3.2px;
}

.faq__heading p {
    max-width: 540px;
    margin-top: 24px;
    color: var(--muted);
    font-size: 16px;
    line-height: 1.75;
}

.faq__heading .button {
    margin-top: 32px;
}

.faq__list {
    display: grid;
    gap: 12px;
}

.faq-item {
    overflow: hidden;
    border: 1px solid var(--border);
    border-radius: 19px;
    background:
        linear-gradient(
            145deg,
            rgba(255, 255, 255, 0.065),
            rgba(255, 255, 255, 0.025)
        );
    transition:
        border-color 0.22s ease,
        background 0.22s ease;
}

.faq-item:hover,
.faq-item.is-open {
    border-color: var(--border-strong);
    background:
        linear-gradient(
            145deg,
            rgba(255, 255, 255, 0.085),
            rgba(255, 255, 255, 0.035)
        );
}

.faq-item__button {
    display: flex;
    width: 100%;
    min-height: 82px;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 20px 23px;
    border: 0;
    background: transparent;
    color: var(--text);
    text-align: left;
    cursor: pointer;
}

.faq-item__button > span:first-child {
    font-size: 17px;
    font-weight: 700;
    line-height: 1.4;
}

.faq-item__icon {
    display: grid;
    width: 38px;
    height: 38px;
    flex-shrink: 0;
    place-items: center;
    border: 1px solid var(--border);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.045);
    color: var(--accent-light);
    transition:
        transform 0.25s ease,
        background 0.25s ease;
}

.faq-item__icon svg {
    width: 19px;
    height: 19px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.faq-item.is-open .faq-item__icon {
    transform: rotate(180deg);
    background: rgba(112, 92, 255, 0.14);
}

.faq-item__answer {
    display: grid;
    grid-template-rows: 0fr;
    opacity: 0;
    transition:
        grid-template-rows 0.3s ease,
        opacity 0.3s ease;
}

.faq-item__answer > div {
    overflow: hidden;
}

.faq-item__answer p {
    max-width: 720px;
    padding: 0 74px 24px 23px;
    color: var(--muted);
    font-size: 14px;
    line-height: 1.75;
}

.faq-item.is-open .faq-item__answer {
    grid-template-rows: 1fr;
    opacity: 1;
}

/* ========================================
   КОНТАКТЫ
======================================== */

.contact {
    padding: 140px 0;
    background:
        radial-gradient(
            680px circle at 18% 30%,
            rgba(112, 92, 255, 0.09),
            transparent 58%
        ),
        radial-gradient(
            520px circle at 92% 75%,
            rgba(97, 213, 255, 0.05),
            transparent 55%
        );
}

.contact__box {
    display: grid;
    grid-template-columns: 0.85fr 1fr;
    gap: 90px;
    align-items: start;
}

.contact__content {
    padding-top: 30px;
}

.contact__content h2 {
    max-width: 600px;
    margin-top: 20px;
    font-size: clamp(44px, 5vw, 72px);
    line-height: 1;
    letter-spacing: -3.5px;
}

.contact__content p {
    max-width: 570px;
    margin-top: 25px;
    color: var(--muted);
    font-size: 17px;
    line-height: 1.75;
}

.contact-form {
    display: grid;
    gap: 20px;
    padding: 36px;
    border: 1px solid var(--border);
    border-radius: 26px;
    background:
        linear-gradient(
            145deg,
            rgba(255, 255, 255, 0.075),
            rgba(255, 255, 255, 0.025)
        );
}

.contact-form label {
    display: grid;
    gap: 9px;
}

.contact-form label > span {
    color: #d7d7e0;
    font-size: 13px;
    font-weight: 600;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    border: 1px solid var(--border);
    outline: none;
    border-radius: 14px;
    background: rgba(0, 0, 0, 0.22);
    color: var(--text);
    transition:
        border-color 0.2s ease,
        background 0.2s ease,
        box-shadow 0.2s ease;
}

.contact-form input {
    height: 56px;
    padding: 0 17px;
}

.contact-form textarea {
    min-height: 140px;
    padding: 16px 17px;
    resize: vertical;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: #71717d;
}

.contact-form input:focus,
.contact-form textarea:focus {
    border-color: rgba(151, 136, 255, 0.65);
    background: rgba(255, 255, 255, 0.045);
    box-shadow: 0 0 0 4px rgba(112, 92, 255, 0.11);
}

.contact-form__button {
    width: 100%;
}

.contact-form__note {
    color: #767682;
    font-size: 11px;
    line-height: 1.5;
    text-align: center;
}

/* ========================================
   ПОДВАЛ
======================================== */

.footer {
    padding: 35px 0;
    border-top: 1px solid var(--border);
    background: #050507;
}

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

.footer__inner p,
.footer__inner > span {
    color: var(--muted);
    font-size: 13px;
}

/* ========================================
   АНИМАЦИИ
======================================== */

@keyframes previewFloat {
    0%,
    100% {
        transform:
            translateX(-50%)
            translateY(0)
            rotateY(-7deg)
            rotateX(3deg);
    }

    50% {
        transform:
            translateX(-50%)
            translateY(-12px)
            rotateY(-4deg)
            rotateX(2deg);
    }
}

@keyframes cardFloatOne {
    0%,
    100% {
        transform: translateY(0) rotate(1deg);
    }

    50% {
        transform: translateY(-13px) rotate(-1deg);
    }
}

@keyframes cardFloatTwo {
    0%,
    100% {
        transform: translateY(0) rotate(-1deg);
    }

    50% {
        transform: translateY(-11px) rotate(1deg);
    }
}

@keyframes cardFloatThree {
    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(10px);
    }
}

@keyframes glowMoveOne {
    from {
        transform: translate3d(0, 0, 0);
    }

    to {
        transform: translate3d(-80px, 45px, 0);
    }
}

@keyframes glowMoveTwo {
    from {
        transform: translate3d(0, 0, 0);
    }

    to {
        transform: translate3d(90px, -45px, 0);
    }
}

/* ========================================
   АДАПТИВНОСТЬ
======================================== */

@media (max-width: 1180px) {
    .hero__content {
        grid-template-columns: minmax(0, 1fr) 430px;
        gap: 28px;
    }

    .hero__title {
        font-size: clamp(58px, 6.4vw, 84px);
        letter-spacing: -4.5px;
    }

    .dashboard {
        transform: scale(0.9);
        transform-origin: center;
    }
}

@media (max-width: 980px) {
    .hero__inner {
        padding-top: 145px;
    }

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

    .hero__left {
        text-align: center;
    }

    .hero__badge {
        margin-right: auto;
        margin-left: auto;
    }

    .hero__title,
    .hero__text {
        margin-right: auto;
        margin-left: auto;
    }

    .hero__actions {
        justify-content: center;
    }

    .hero__features {
        text-align: left;
    }

    .hero__right {
        min-height: 560px;
    }

    .dashboard {
        transform: scale(1);
    }

    .section-heading {
        grid-template-columns: 1fr;
        align-items: start;
    }

    .section-heading p {
        max-width: 650px;
    }

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

    .service-card {
        min-height: auto;
    }

    .first-project__box,
    .testimonials__box,
    .result__box,
    .contact__box {
        grid-template-columns: 1fr;
        gap: 45px;
        padding: 48px;
    }

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

    .project-card--large {
        grid-column: auto;
    }

    .project-card--large .project-screen,
    .project-screen {
        min-height: 390px;
    }

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

    .process-card:not(:last-child)::after {
        display: none;
    }

    .faq__layout {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .faq__heading {
        position: static;
    }

    .contact__content {
        padding-top: 0;
    }
}

@media (max-width: 760px) {
    .container {
        width: min(100% - 32px, var(--container));
    }

    .nav {
        display: none;
    }

    .hero__inner {
        padding-top: 120px;
    }

    .hero__title {
        font-size: clamp(50px, 13vw, 72px);
        letter-spacing: -3px;
    }

    .hero__text {
        font-size: 17px;
    }

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

    .hero__right {
        min-height: 500px;
    }

    .dashboard {
        left: 50%;
        width: 530px;
        transform: translateX(-50%) scale(0.84);
        transform-origin: top center;
    }

    .advantages,
    .services,
    .portfolio,
    .process,
    .faq,
    .contact {
        padding: 90px 0;
    }

    .first-project,
    .testimonials,
    .result {
        padding: 25px 0 90px;
    }

    .section-heading {
        margin-bottom: 42px;
    }

    .section-heading h2,
    .first-project__content h2,
    .testimonials__content h2,
    .result__content h2,
    .faq__heading h2,
    .contact__content h2 {
        letter-spacing: -2px;
    }

    .services__grid,
    .process__grid {
        grid-template-columns: 1fr;
    }

    .service-card {
        min-height: auto;
    }

    .process-card {
        min-height: 230px;
    }

    .first-project__box,
    .testimonials__box,
    .result__box {
        padding: 32px 24px;
        border-radius: 24px;
    }

    .project-card__preview {
        padding: 12px 12px 0;
    }

    .project-screen,
    .project-card--large .project-screen {
        min-height: 330px;
    }

    .project-screen__content {
        width: 75%;
        padding: 40px 0 30px 24px;
    }

    .project-screen__visual,
    .project-screen__building,
    .project-screen__portrait {
        opacity: 0.55;
    }

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

    .faq-item__button {
        min-height: 74px;
        padding: 18px;
    }

    .faq-item__answer p {
        padding: 0 65px 21px 18px;
    }

    .contact-form {
        padding: 25px 20px;
    }

    .footer__inner {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 540px) {
    .header__button {
        display: none;
    }

    .logo {
        font-size: 18px;
    }

    .logo__mark {
        width: 37px;
        height: 37px;
    }

    .hero__title {
        font-size: clamp(44px, 14vw, 60px);
        letter-spacing: -2.5px;
    }

    .hero__actions {
        width: 100%;
        flex-direction: column;
    }

    .button {
        width: 100%;
    }

    .hero__features {
        margin-top: 42px;
    }

    .hero__right {
        min-height: 420px;
    }

    .dashboard {
        transform: translateX(-50%) scale(0.67);
    }

    .section-heading h2,
    .first-project__content h2,
    .testimonials__content h2,
    .result__content h2,
    .faq__heading h2,
    .contact__content h2 {
        font-size: 40px;
    }

    .advantage-card,
    .service-card {
        padding: 25px;
    }

    .first-project__item {
        grid-template-columns: 42px 1fr;
        padding: 16px;
    }

    .first-project__item > span {
        width: 36px;
        height: 36px;
    }

    .testimonial-principle {
        grid-template-columns: 44px 1fr;
        gap: 13px;
        padding: 17px;
    }

    .testimonial-principle__icon {
        width: 42px;
        height: 42px;
    }

    .project-screen,
    .project-card--large .project-screen {
        min-height: 290px;
    }

    .project-screen__header {
        padding: 0 17px;
    }

    .project-screen__nav {
        display: none;
    }

    .project-screen__content {
        width: 88%;
        padding-left: 18px;
    }

    .project-screen__title {
        height: 23px;
    }

    .project-card__content {
        padding: 24px 22px 26px;
    }

    .project-card h3 {
        font-size: 22px;
    }

    .faq-item__button {
        gap: 14px;
    }

    .faq-item__button > span:first-child {
        font-size: 15px;
    }

    .faq-item__icon {
        width: 34px;
        height: 34px;
    }

    .faq-item__answer p {
        padding-right: 18px;
        font-size: 13px;
    }
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}