:root {
    --blue: #0b6cff;
    --blue-dark: #0058df;
    --black: #090b11;
    --text: #4d5564;
    --muted: #7b8494;
    --line: rgba(15, 23, 42, 0.08);
    --white: #ffffff;
    --soft: #f5f8ff;
    --shadow: 0 24px 70px rgba(15, 23, 42, 0.10);
    --shadow-card: 0 16px 45px rgba(15, 23, 42, 0.08);
    --radius-xl: 34px;
    --radius-lg: 24px;
    --radius-md: 18px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Montserrat", sans-serif;
    color: var(--black);
    background: #ffffff;
}

a {
    color: inherit;
    text-decoration: none;
}

img {
    display: block;
    max-width: 100%;
}

button {
    font-family: inherit;
}

.container {
    width: min(1240px, calc(100% - 48px));
    margin: 0 auto;
}

/* HEADER */

.site-header {
    position: fixed;
    top: 18px;
    left: 0;
    width: 100%;
    z-index: 100;
    pointer-events: none;
}

.header-inner {
    height: 68px;
    padding: 0 18px 0 22px;
    display: flex;
    align-items: center;
    gap: 24px;
    border: 1px solid rgba(15, 23, 42, 0.08);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.78);
    backdrop-filter: blur(18px);
    box-shadow: 0 18px 40px rgba(15, 23, 42, 0.08);
    pointer-events: auto;
}

.logo {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    min-width: max-content;
    font-size: 15px;
    font-weight: 900;
    letter-spacing: -0.02em;
}

.logo-mark {
    width: 28px;
    height: 28px;
    border-radius: 9px;
    background:
        radial-gradient(circle at 30% 25%, #ffffff 0 10%, transparent 11%),
        linear-gradient(135deg, #0b6cff, #63a3ff);
    box-shadow: 0 10px 24px rgba(11, 108, 255, 0.25);
}

.nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 28px;
    margin-left: auto;
    margin-right: auto;
}

.nav a {
    color: #4b5563;
    font-size: 14px;
    font-weight: 600;
    transition: color 0.2s ease;
}

.nav a:hover {
    color: var(--blue);
}

.header-btn {
    min-width: max-content;
    height: 44px;
    padding: 0 18px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    background: var(--black);
    color: #ffffff;
    font-size: 14px;
    font-weight: 800;
    transition: transform 0.2s ease, background 0.2s ease;
}

.header-btn:hover {
    transform: translateY(-2px);
    background: var(--blue);
}

.burger {
    display: none;
    width: 44px;
    height: 44px;
    border: none;
    border-radius: 999px;
    background: #f1f5f9;
    cursor: pointer;
    position: relative;
}

.burger span {
    position: absolute;
    left: 12px;
    width: 20px;
    height: 2px;
    border-radius: 999px;
    background: #111827;
    transition: 0.25s ease;
}

.burger span:first-child {
    top: 16px;
}

.burger span:last-child {
    top: 25px;
}

.burger.active span:first-child {
    top: 21px;
    transform: rotate(45deg);
}

.burger.active span:last-child {
    top: 21px;
    transform: rotate(-45deg);
}

/* HERO */

.page {
    min-height: 100vh;
}

.hero-section {
    position: relative;
    
    overflow: hidden;
    padding: 130px 0 58px;
    background:
        radial-gradient(circle at 80% 18%, rgba(11, 108, 255, 0.14), transparent 28%),
        radial-gradient(circle at 12% 80%, rgba(11, 108, 255, 0.08), transparent 26%),
        linear-gradient(180deg, #ffffff 0%, #f7faff 100%);
}

.hero-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
    background-image:
        linear-gradient(rgba(11, 108, 255, 0.045) 1px, transparent 1px),
        linear-gradient(90deg, rgba(11, 108, 255, 0.045) 1px, transparent 1px);
    background-size: 54px 54px;
    mask-image: linear-gradient(to bottom, transparent 0%, black 14%, black 82%, transparent 100%);
}

.hero-section::before {
    content: "";
    position: absolute;
    width: 760px;
    height: 760px;
    right: -260px;
    top: 40px;
    border-radius: 50%;
    background: rgba(11, 108, 255, 0.08);
    filter: blur(4px);
    pointer-events: none;
}

.hero-section::after {
    content: "";
    position: absolute;
    width: 430px;
    height: 430px;
    left: -170px;
    bottom: 40px;
    border-radius: 50%;
    background: rgba(11, 108, 255, 0.08);
    filter: blur(8px);
    pointer-events: none;
}

.hero-container {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(420px, 560px);
    grid-template-areas:
        "content visual"
        "cards cards";
    align-items: center;
    column-gap: 66px;
    row-gap: 58px;
}

.hero-content {
    grid-area: content;
    max-width: 650px;
}

.hero-badge {
    width: fit-content;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 14px;
    margin-bottom: 24px;
    border: 1px solid rgba(11, 108, 255, 0.12);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.78);
    box-shadow: 0 12px 30px rgba(15, 23, 42, 0.05);
    color: #263244;
    font-size: 15px;
    font-weight: 700;
}

.hero-badge span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--blue);
    box-shadow: 0 0 0 5px rgba(11, 108, 255, 0.12);
}

.hero-title {
    max-width: 690px;
    font-size: clamp(52px, 6.4vw, 58px);
    line-height: 0.96;
    letter-spacing: -0.06em;
    font-weight: 900;
    margin-bottom: 26px;
}

.hero-title span {
    display: block;
    color: var(--blue);
}

.hero-text {
    max-width: 610px;
    margin-bottom: 34px;
    color: var(--text);
    font-size: clamp(18px, 1.7vw, 15px);
    line-height: 1.55;
    font-weight: 500;
}

.hero-actions {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 32px;
}

.btn {
    min-height: 62px;
    padding: 0 24px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    border-radius: 16px;
    font-size: 17px;
    font-weight: 900;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.btn span {
    font-size: 24px;
    line-height: 1;
}

.btn:hover {
    transform: translateY(-3px);
}

.btn-primary {
    background: linear-gradient(135deg, #0b6cff, #2682ff);
    color: #ffffff;
    box-shadow: 0 18px 38px rgba(11, 108, 255, 0.24);
}

.btn-primary:hover {
    box-shadow: 0 24px 48px rgba(11, 108, 255, 0.30);
}

.btn-secondary {
    background: #ffffff;
    color: #111827;
    border: 1px solid rgba(15, 23, 42, 0.08);
    box-shadow: 0 14px 34px rgba(15, 23, 42, 0.08);
}

.btn-secondary:hover {
    box-shadow: 0 20px 42px rgba(15, 23, 42, 0.12);
}

.hero-trust {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

.hero-trust div {
    min-width: 132px;
    padding: 14px 16px;
    border: 1px solid rgba(15, 23, 42, 0.07);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.66);
    box-shadow: 0 12px 30px rgba(15, 23, 42, 0.05);
}

.hero-trust strong {
    display: block;
    color: var(--black);
    font-size: 18px;
    font-weight: 900;
    letter-spacing: -0.03em;
    margin-bottom: 4px;
}

.hero-trust span {
    display: block;
    color: var(--muted);
    font-size: 12px;
    font-weight: 700;
}

/* VISUAL */
.hero-visual {
    grid-area: visual;
    display: flex;
    justify-content: center;
    align-items: center;
}

.mac-window-wrap {
    position: relative;
    width: 100%;
    max-width: 620px;
}

.mac-window {
    position: relative;
    overflow: hidden;
    border-radius: 28px;
    border: 1px solid rgba(15, 23, 42, 0.10);
    background: rgba(255, 255, 255, 0.88);
    box-shadow: 0 28px 70px rgba(15, 23, 42, 0.14);
    backdrop-filter: blur(18px);
}

.mac-window::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: linear-gradient(
        180deg,
        rgba(255, 255, 255, 0.45) 0%,
        rgba(255, 255, 255, 0.06) 100%
    );
    z-index: 1;
}

.mac-window-top {
    position: relative;
    z-index: 2;
    height: 58px;
    display: flex;
    align-items: center;
    padding: 0 18px;
    gap: 16px;
    border-bottom: 1px solid rgba(15, 23, 42, 0.06);
    background: linear-gradient(180deg, #f8fafc 0%, #f2f5f9 100%);
}

.mac-window-controls {
    display: flex;
    align-items: center;
    gap: 8px;
    flex: 0 0 auto;
}

.mac-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    display: block;
}

.mac-dot-red {
    background: #ff5f57;
}

.mac-dot-yellow {
    background: #febc2e;
}

.mac-dot-green {
    background: #28c840;
}

.mac-window-address {
    flex: 1;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 16px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid rgba(15, 23, 42, 0.06);
    color: #6b7280;
    font-size: 13px;
    font-weight: 600;
    text-align: center;
}

.mac-window-body {
    position: relative;
    z-index: 2;
    padding: 14px;
    background:
        radial-gradient(circle at 85% 20%, rgba(11, 108, 255, 0.10), transparent 26%),
        linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
}

.mac-window-image {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 18px;
    border: 1px solid rgba(15, 23, 42, 0.06);
    box-shadow: 0 14px 32px rgba(15, 23, 42, 0.10);
}

.mac-floating-card {
    position: absolute;
    left: -28px;
    bottom: 26px;
    z-index: 5;
    max-width: 260px;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 16px;
    border-radius: 18px;
    border: 1px solid rgba(15, 23, 42, 0.08);
    background: rgba(255, 255, 255, 0.92);
    box-shadow: 0 18px 40px rgba(15, 23, 42, 0.12);
    backdrop-filter: blur(14px);
}

.mac-floating-icon {
    width: 42px;
    height: 42px;
    flex: 0 0 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    background: #eaf3ff;
    color: var(--blue);
    font-size: 18px;
    font-weight: 900;
}

.mac-floating-text strong {
    display: block;
    color: #111827;
    font-size: 14px;
    font-weight: 800;
    margin-bottom: 4px;
}

.mac-floating-text span {
    display: block;
    color: #6b7280;
    font-size: 12px;
    line-height: 1.35;
    font-weight: 600;
}

/* CARDS */

.hero-cards {
    grid-area: cards;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.hero-card {
    position: relative;
    min-height: 154px;
    padding: 22px;
    display: flex;
    align-items: flex-start;
    gap: 18px;
    overflow: hidden;
    border: 1px solid rgba(15, 23, 42, 0.08);
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.82);
    box-shadow: var(--shadow-card);
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.hero-card::before {
    content: "";
    position: absolute;
    width: 140px;
    height: 140px;
    right: -78px;
    top: -78px;
    border-radius: 50%;
    background: rgba(11, 108, 255, 0.08);
    transition: 0.2s ease;
}

.hero-card:hover {
    transform: translateY(-5px);
    border-color: rgba(11, 108, 255, 0.18);
    box-shadow: 0 22px 55px rgba(15, 23, 42, 0.11);
}

.hero-card:hover::before {
    transform: scale(1.18);
    background: rgba(11, 108, 255, 0.12);
}

.hero-card-icon {
    position: relative;
    z-index: 2;
    width: 66px;
    height: 66px;
    flex: 0 0 66px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 18px;
    background: #eef5ff;
}

.hero-card-icon img {
    width: 34px;
    height: 34px;
    object-fit: contain;
}

.hero-card div:last-child {
    position: relative;
    z-index: 2;
}

.hero-card h3 {
    color: #111827;
    font-size: 21px;
    line-height: 1.15;
    font-weight: 900;
    letter-spacing: -0.03em;
    margin-bottom: 8px;
}

.hero-card p {
    color: #5f6878;
    font-size: 15px;
    line-height: 1.45;
    font-weight: 500;
}

/* ADAPTIVE */

@media (max-width: 1120px) {
    .hero-container {
        grid-template-columns: minmax(0, 1fr) minmax(380px, 500px);
        column-gap: 36px;
    }

    .hero-title {
        font-size: clamp(48px, 6vw, 74px);
    }

    .visual-body {
        min-height: 360px;
    }
}

@media (max-width: 940px) {
    .site-header {
        top: 12px;
    }

    .header-inner {
        height: 62px;
    }

    .nav {
        position: absolute;
        top: 76px;
        left: 24px;
        right: 24px;
        display: none;
        flex-direction: column;
        gap: 0;
        padding: 12px;
        border: 1px solid rgba(15, 23, 42, 0.08);
        border-radius: 24px;
        background: rgba(255, 255, 255, 0.96);
        box-shadow: 0 22px 50px rgba(15, 23, 42, 0.12);
    }

    .nav.active {
        display: flex;
    }

    .nav a {
        width: 100%;
        padding: 15px;
        border-radius: 16px;
    }

    .nav a:hover {
        background: #f3f7ff;
    }

    .header-btn {
        display: none;
    }

    .burger {
        display: block;
        margin-left: auto;
    }

    .hero-section {
        padding: 110px 0 42px;
    }

    .hero-container {
        grid-template-columns: 1fr;
        grid-template-areas:
            "content"
            "visual"
            "cards";
        row-gap: 36px;
    }

    .hero-content {
        max-width: 760px;
        text-align: center;
        margin: 0 auto;
    }

    .hero-badge {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-title,
    .hero-text {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-actions,
    .hero-trust {
        justify-content: center;
    }

    .mac-window-wrap {
        max-width: 680px;
        margin: 0 auto;
    }

    .mac-floating-card {
        left: 18px;
        bottom: 18px;
    }

    .hero-cards {
        grid-template-columns: 1fr;
        max-width: 720px;
        margin: 0 auto;
    }

    .hero-card {
        min-height: auto;
    }
}

@media (max-width: 640px) {
    .container {
        width: min(100% - 28px, 1240px);
    }

    .logo span:last-child {
        font-size: 13px;
    }

    .header-inner {
        padding: 0 10px 0 16px;
    }

    .hero-section {
        padding: 96px 0 30px;
    }

    .hero-bg {
        background-size: 36px 36px;
    }

    .hero-badge {
        padding: 8px 12px;
        font-size: 13px;
        margin-bottom: 18px;
    }

    .hero-title {
        font-size: 43px;
        line-height: 1;
        letter-spacing: -0.045em;
        margin-bottom: 18px;
    }

    .hero-text {
        font-size: 16px;
        line-height: 1.55;
        margin-bottom: 24px;
    }

    .hero-actions {
        gap: 12px;
        margin-bottom: 24px;
    }

    .btn {
        width: 100%;
        min-height: 56px;
        border-radius: 14px;
        font-size: 15px;
    }

    .hero-trust {
        display: grid;
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .hero-trust div {
        min-width: 0;
    }

    .mac-window {
        border-radius: 22px;
    }

    .mac-window-top {
        height: 50px;
        padding: 0 12px;
        gap: 10px;
    }

    .mac-dot {
        width: 10px;
        height: 10px;
    }

    .mac-window-address {
        height: 30px;
        font-size: 11px;
        padding: 0 10px;
    }

    .mac-window-body {
        padding: 10px;
    }

    .mac-window-image {
        border-radius: 14px;
    }

    .mac-floating-card {
        position: relative;
        left: 0;
        bottom: 0;
        margin-top: 14px;
        max-width: 100%;
        padding: 12px 14px;
        border-radius: 16px;
    }

    .mac-floating-icon {
        width: 36px;
        height: 36px;
        flex-basis: 36px;
        border-radius: 12px;
        font-size: 16px;
    }

    .mac-floating-text strong {
        font-size: 13px;
    }

    .mac-floating-text span {
        font-size: 11px;
    }

    .hero-cards {
        gap: 12px;
    }

    .hero-card {
        padding: 18px;
        gap: 14px;
        border-radius: 20px;
    }

    .hero-card-icon {
        width: 58px;
        height: 58px;
        flex-basis: 58px;
        border-radius: 16px;
    }

    .hero-card-icon img {
        width: 30px;
        height: 30px;
    }

    .hero-card h3 {
        font-size: 18px;
    }

    .hero-card p {
        font-size: 14px;
    }
}

@media (max-width: 390px) {
    .hero-title {
        font-size: 37px;
    }

    .hero-card {
        flex-direction: column;
    }
}
/* =========================
   FULL WIDTH HEADER
========================= */

.full-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    transition: 0.25s ease;
}

.full-header__inner {
    height: 84px;
    display: flex;
    align-items: center;
    gap: 34px;
}

/* LIGHT */

.full-header--light {
    background: rgba(255, 255, 255, 0.88);
    border-bottom: 1px solid rgba(15, 23, 42, 0.08);
    backdrop-filter: blur(18px);
    box-shadow: 0 10px 34px rgba(15, 23, 42, 0.05);
}

.full-header--light .full-header__logo {
    color: #090b11;
}

.full-header--light .full-header__nav a {
    color: #596273;
}

.full-header--light .full-header__nav a:hover,
.full-header--light .full-header__nav a.active {
    color: #0b6cff;
}

.full-header--light .full-header__button {
    background: #0b6cff;
    color: #ffffff;
}

.full-header--light .full-header__button:hover {
    background: #090b11;
}

.full-header--light .full-header__burger {
    background: #f1f5f9;
}

.full-header--light .full-header__burger span {
    background: #090b11;
}

/* DARK */

.full-header--dark {
    background: rgba(8, 10, 16, 0.94);
    border-bottom: 1px solid rgba(255, 255, 255, 0.10);
    backdrop-filter: blur(18px);
    box-shadow: 0 16px 45px rgba(0, 0, 0, 0.22);
}

.full-header--dark .full-header__logo {
    color: #ffffff;
}

.full-header--dark .full-header__nav a {
    color: rgba(255, 255, 255, 0.68);
}

.full-header--dark .full-header__nav a:hover,
.full-header--dark .full-header__nav a.active {
    color: #ffffff;
}

.full-header--dark .full-header__button {
    background: #ffffff;
    color: #080a10;
}

.full-header--dark .full-header__button:hover {
    background: #0b6cff;
    color: #ffffff;
}

.full-header--dark .full-header__burger {
    background: rgba(255, 255, 255, 0.10);
}

.full-header--dark .full-header__burger span {
    background: #ffffff;
}

/* COMMON */

.full-header__logo {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    min-width: max-content;
    font-size: 16px;
    font-weight: 900;
    letter-spacing: -0.035em;
}

.full-header__logo-mark {
    width: 36px;
    height: 36px;
    border-radius: 12px;
    background:
        radial-gradient(circle at 32% 28%, #ffffff 0 10%, transparent 11%),
        linear-gradient(135deg, #0b6cff, #68a8ff);
    box-shadow: 0 12px 28px rgba(11, 108, 255, 0.28);
}

.full-header__nav {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 34px;
}

.full-header__nav a {
    position: relative;
    font-size: 14px;
    font-weight: 700;
    transition: 0.2s ease;
}

.full-header__nav a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -9px;
    width: 0;
    height: 2px;
    border-radius: 999px;
    background: #0b6cff;
    transition: width 0.22s ease;
}

.full-header__nav a:hover::after,
.full-header__nav a.active::after {
    width: 100%;
}

.full-header__button {
    min-width: max-content;
    height: 48px;
    padding: 0 21px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 900;
    transition: 0.22s ease;
}

.full-header__button span {
    font-size: 18px;
    line-height: 1;
}

.full-header__button:hover {
    transform: translateY(-2px);
    box-shadow: 0 16px 34px rgba(11, 108, 255, 0.24);
}

.full-header__burger {
    display: none;
    width: 46px;
    height: 46px;
    flex: 0 0 46px;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    position: relative;
}

.full-header__burger span {
    position: absolute;
    left: 13px;
    width: 20px;
    height: 2px;
    border-radius: 999px;
    transition: 0.22s ease;
}

.full-header__burger span:first-child {
    top: 17px;
}

.full-header__burger span:last-child {
    top: 27px;
}

.full-header__burger.active span:first-child {
    top: 22px;
    transform: rotate(45deg);
}

.full-header__burger.active span:last-child {
    top: 22px;
    transform: rotate(-45deg);
}

/* MOBILE */

@media (max-width: 980px) {
    .full-header__inner {
        height: 72px;
    }

    .full-header__nav {
        position: absolute;
        top: 72px;
        left: 0;
        width: 100%;
        display: none;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        padding: 14px 24px 22px;
        border-top: 1px solid rgba(15, 23, 42, 0.08);
    }

    .full-header--light .full-header__nav {
        background: rgba(255, 255, 255, 0.98);
    }

    .full-header--dark .full-header__nav {
        background: rgba(8, 10, 16, 0.98);
    }

    .full-header__nav.active {
        display: flex;
    }

    .full-header__nav a {
        width: 100%;
        padding: 17px 0;
        font-size: 16px;
    }

    .full-header__nav a::after {
        display: none;
    }

    .full-header__button {
        display: none;
    }

    .full-header__burger {
        display: block;
        margin-left: auto;
    }
}

@media (max-width: 520px) {
    .full-header__inner {
        height: 66px;
    }

    .full-header__logo {
        font-size: 14px;
    }

    .full-header__logo-mark {
        width: 32px;
        height: 32px;
        border-radius: 10px;
    }

    .full-header__burger {
        width: 42px;
        height: 42px;
        flex-basis: 42px;
    }

    .full-header__burger span {
        left: 11px;
    }

    .full-header__nav {
        top: 66px;
        padding-left: 18px;
        padding-right: 18px;
    }
}
/* =========================
   INCLUDED SECTION
========================= */

.included-section {
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(circle at 14% 18%, rgba(11, 108, 255, 0.07), transparent 25%),
        radial-gradient(circle at 86% 42%, rgba(11, 108, 255, 0.06), transparent 26%),
        linear-gradient(180deg, #f8fbff 0%, #ffffff 45%, #f8fbff 100%);
}

.included-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(11, 108, 255, 0.035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(11, 108, 255, 0.035) 1px, transparent 1px);
    background-size: 54px 54px;
    mask-image: linear-gradient(to bottom, transparent, black 12%, black 80%, transparent);
    pointer-events: none;
}

.included-section .container {
    position: relative;
    z-index: 2;
}

.included-head {
    max-width: 720px;
    margin-bottom: 42px;
}

.section-label {
    display: inline-flex;
    align-items: center;
    width: fit-content;
    margin-bottom: 16px;
    padding: 9px 13px;
    border-radius: 999px;
    background: rgba(11, 108, 255, 0.08);
    color: #0b6cff;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: -0.01em;
}

.included-head h2 {
    color: #111827;
    font-size: clamp(36px, 4.2vw, 50px);
    line-height: 1.05;
    font-weight: 900;
    letter-spacing: -0.055em;
    margin-bottom: 18px;
}

.included-head p {
    max-width: 640px;
    color: #5f6878;
    font-size: 20px;
    line-height: 1.55;
    font-weight: 500;
}

.included-layout {
    display: grid;
    grid-template-columns: 340px minmax(0, 1fr);
    gap: 28px;
    align-items: stretch;
}

/* Left process */

.process-panel {
    position: relative;
    min-height: 100%;
    padding: 38px 34px 34px;
    border-radius: 26px;
    border: 1px solid rgba(15, 23, 42, 0.08);
    background: rgba(255, 255, 255, 0.82);
    box-shadow: 0 22px 60px rgba(15, 23, 42, 0.08);
    backdrop-filter: blur(14px);
}

.process-line {
    position: absolute;
    left: 55px;
    top: 70px;
    bottom: 110px;
    width: 2px;
    background: linear-gradient(180deg, rgba(11, 108, 255, 0.25), rgba(11, 108, 255, 0.05));
}

.process-step {
    position: relative;
    display: grid;
    grid-template-columns: 44px 1fr;
    gap: 18px;
    align-items: flex-start;
    margin-bottom: 36px;
}

.process-step:last-of-type {
    margin-bottom: 34px;
}

.process-number {
    position: relative;
    z-index: 2;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: linear-gradient(135deg, #0b6cff, #1e7dff);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 19px;
    font-weight: 900;
    box-shadow: 0 12px 28px rgba(11, 108, 255, 0.28);
}

.process-step h3 {
    color: #111827;
    font-size: 20px;
    line-height: 1.15;
    font-weight: 900;
    margin-bottom: 10px;
}

.process-step p {
    color: #5f6878;
    font-size: 14px;
    line-height: 1.55;
    font-weight: 600;
}

.process-badge {
    width: fit-content;
    display: inline-flex;
    align-items: center;
    gap: 9px;
    padding: 12px 16px;
    border-radius: 999px;
    background: #0b6cff;
    color: #ffffff;
    font-size: 13px;
    font-weight: 800;
    box-shadow: 0 16px 34px rgba(11, 108, 255, 0.24);
}

.process-badge span {
    width: 19px;
    height: 19px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.16);
}

.process-badge svg {
    width: 13px;
    height: 13px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2.4;
    stroke-linecap: round;
    stroke-linejoin: round;
}

/* Cards */

.included-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.included-card {
    min-height: 250px;
    padding: 34px 30px 30px;
    border-radius: 26px;
    border: 1px solid rgba(15, 23, 42, 0.08);
    background: rgba(255, 255, 255, 0.82);
    box-shadow: 0 20px 55px rgba(15, 23, 42, 0.07);
    backdrop-filter: blur(14px);
    transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.included-card:hover {
    transform: translateY(-5px);
    border-color: rgba(11, 108, 255, 0.18);
    box-shadow: 0 26px 70px rgba(15, 23, 42, 0.11);
}

.included-icon {
    width: 70px;
    height: 70px;
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.included-icon img,
.included-icon svg {
    width: 62px;
    height: 62px;
    object-fit: contain;
}


.included-card h3 {
    color: #111827;
    font-size: 16px;
    line-height: 1.25;
    font-weight: 900;
    letter-spacing: -0.035em;
    margin-bottom: 14px;
}

.included-card h3 span {
    color: #0b6cff;
    margin-right: 7px;
}

.included-card p {
    color: #5f6878;
    font-size: 16px;
    line-height: 1.55;
    font-weight: 500;
}

/* Bottom benefits */

.included-benefits {
    margin-top: 34px;
    margin-bottom: 10px;
    padding: 22px 26px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    border-radius: 24px;
    border: 1px solid rgba(15, 23, 42, 0.08);
    background: rgba(255, 255, 255, 0.82);
    box-shadow: 0 20px 55px rgba(15, 23, 42, 0.07);
    backdrop-filter: blur(14px);
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 10px 22px;
    border-right: 1px solid rgba(15, 23, 42, 0.08);
}

.benefit-item:first-child {
    padding-left: 0;
}

.benefit-item:last-child {
    border-right: none;
    padding-right: 0;
}

.benefit-icon {
    width: 42px;
    height: 42px;
    flex: 0 0 42px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.benefit-icon img,
.benefit-icon svg {
    width: 36px;
    height: 36px;
    object-fit: contain;
}
.benefit-item h4 {
    color: #111827;
    font-size: 14px;
    line-height: 1.25;
    font-weight: 900;
    margin-bottom: 4px;
}

.benefit-item p {
    color: #6b7280;
    font-size: 12px;
    line-height: 1.35;
    font-weight: 600;
}

/* Adaptive */

@media (max-width: 1180px) {
    .included-layout {
        grid-template-columns: 310px 1fr;
    }

    .included-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .included-benefits {
        grid-template-columns: repeat(2, 1fr);
    }

    .benefit-item {
        border-right: none;
        border-bottom: 1px solid rgba(15, 23, 42, 0.08);
        padding: 16px;
    }

    .benefit-item:nth-child(3),
    .benefit-item:nth-child(4) {
        border-bottom: none;
    }

    .benefit-item:first-child,
    .benefit-item:last-child {
        padding: 16px;
    }
}

@media (max-width: 920px) {
    .included-section {
        padding: 82px 0 72px;
    }

    .included-head {
        text-align: center;
        margin-left: auto;
        margin-right: auto;
    }

    .section-label {
        margin-left: auto;
        margin-right: auto;
    }

    .included-head p {
        margin-left: auto;
        margin-right: auto;
    }

    .included-layout {
        grid-template-columns: 1fr;
    }

    .process-panel {
        max-width: 720px;
        width: 100%;
        margin: 0 auto;
    }

    .included-grid {
        max-width: 720px;
        width: 100%;
        margin: 0 auto;
    }

    .included-benefits {
        max-width: 720px;
        margin-left: auto;
        margin-right: auto;
    }
}

@media (max-width: 640px) {
    .included-section {
        padding: 64px 0 58px;
    }

    .included-head {
        margin-bottom: 28px;
    }

    .section-label {
        font-size: 12px;
        padding: 8px 12px;
    }

    .included-head h2 {
        font-size: 34px;
        line-height: 1.08;
        margin-bottom: 14px;
    }

    .included-head p {
        font-size: 16px;
        line-height: 1.55;
    }

    .process-panel {
        padding: 26px 20px 24px;
        border-radius: 22px;
    }

    .process-line {
        left: 40px;
        top: 58px;
        bottom: 96px;
    }

    .process-step {
        grid-template-columns: 40px 1fr;
        gap: 14px;
        margin-bottom: 28px;
    }

    .process-number {
        width: 40px;
        height: 40px;
        font-size: 17px;
    }

    .process-step h3 {
        font-size: 18px;
        margin-bottom: 7px;
    }

    .process-step p {
        font-size: 13px;
    }

    .included-grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .included-card {
        min-height: auto;
        padding: 24px;
        border-radius: 22px;
    }

    .included-icon {
        width: 58px;
        height: 58px;
        margin-bottom: 20px;
    }

    .included-icon img,
    .included-icon svg {
        width: 52px;
        height: 52px;
    }
    .included-card h3 {
        font-size: 18px;
        margin-bottom: 10px;
    }

    .included-card p {
        font-size: 14px;
        line-height: 1.5;
    }

    .included-benefits {
        grid-template-columns: 1fr;
        padding: 12px;
        border-radius: 22px;
    }

    .benefit-item,
    .benefit-item:first-child,
    .benefit-item:last-child {
        padding: 16px 12px;
        border-right: none;
        border-bottom: 1px solid rgba(15, 23, 42, 0.08);
    }

    .benefit-item:last-child {
        border-bottom: none;
    }

    .benefit-item:nth-child(3) {
        border-bottom: 1px solid rgba(15, 23, 42, 0.08);
    }
}
/* =========================
   TELEGRAM BOT SECTION
========================= */

.bot-section {
    position: relative;
    overflow: hidden;
    padding: 96px 0 108px;
    background:
        radial-gradient(circle at 18% 42%, rgba(22, 160, 230, 0.08), transparent 28%),
        radial-gradient(circle at 82% 58%, rgba(11, 108, 255, 0.06), transparent 26%),
        linear-gradient(180deg, #f8fbff 0%, #ffffff 45%, #f8fbff 100%);
}

.bot-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(11, 108, 255, 0.035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(11, 108, 255, 0.035) 1px, transparent 1px);
    background-size: 54px 54px;
    mask-image: linear-gradient(to bottom, transparent, black 16%, black 80%, transparent);
    pointer-events: none;
}

.bot-layout {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: minmax(360px, 0.9fr) minmax(0, 1.1fr);
    align-items: center;
    gap: 70px;
}

.bot-visual {
    position: relative;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.bot-visual::before {
    content: "";
    position: absolute;
    width: 390px;
    height: 390px;
    border-radius: 50%;
    background: rgba(22, 160, 230, 0.10);
    filter: blur(30px);
    z-index: -1;
}

.bot-robot-img {
    position: relative;
    z-index: 2;
    width: min(100%, 500px);
    filter: drop-shadow(0 30px 36px rgba(15, 23, 42, 0.14));
}

.bot-telegram-badge {
    position: absolute;
    top: -50px;
    right: -55px;
    z-index: 3;
    width: 132px;
    height: 132px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.bot-telegram-badge img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 20px 34px rgba(3, 155, 229, 0.25));
}

.bot-content {
    max-width: 640px;
}

.bot-label {
    width: fit-content;
    margin-bottom: 18px;
    padding: 9px 14px;
    border-radius: 999px;
    background: rgba(22, 160, 230, 0.10);
    color: #0797d8;
    font-size: 13px;
    font-weight: 800;
}

.bot-content h2 {
    color: #3b414c;
    font-size: clamp(42px, 4.5vw, 64px);
    line-height: 0.98;
    letter-spacing: -0.06em;
    font-weight: 900;
    margin-bottom: 14px;
}

.bot-content h2 span {
    display: block;
    color: #139fe3;
    text-transform: uppercase;
}

.bot-title-line {
    width: 100%;
    max-width: 500px;
    height: 1px;
    margin-bottom: 18px;
    background: linear-gradient(90deg, rgba(15, 23, 42, 0.22), transparent);
}

.bot-text {
    max-width: 560px;
    color: #4d5564;
    font-size: 21px;
    line-height: 1.45;
    font-weight: 500;
    margin-bottom: 22px;
}

.bot-text strong,
.bot-list strong {
    color: #138fd0;
    font-weight: 800;
}

.bot-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 13px;
    margin: 0;
    padding: 0;
}

.bot-list li {
    display: flex;
    align-items: flex-start;
    gap: 14px;
}

.bot-dot {
    width: 10px;
    height: 10px;
    flex: 0 0 10px;
    margin-top: 9px;
    border-radius: 50%;
    background: #4fc3f7;
    box-shadow: 0 0 0 5px rgba(79, 195, 247, 0.14);
}

.bot-list-text {
    margin: 0;
    color: #4d5564;
    font-size: 18px;
    line-height: 1.45;
    font-weight: 600;
}

.bot-list-text strong {
    display: inline;
    color: #138fd0;
    font-weight: 800;
}

.bot-actions {
    margin-top: 30px;
}

.bot-btn {
    min-height: 58px;
    padding: 0 24px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 11px;
    border-radius: 16px;
    background: linear-gradient(135deg, #139fe3, #0b6cff);
    color: #ffffff;
    font-size: 16px;
    font-weight: 900;
    box-shadow: 0 18px 38px rgba(11, 108, 255, 0.22);
    transition: 0.22s ease;
}

.bot-btn span {
    font-size: 22px;
    line-height: 1;
}

.bot-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 24px 48px rgba(11, 108, 255, 0.28);
}

/* Adaptive */

@media (max-width: 1060px) {
    .bot-layout {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .bot-visual {
        min-height: 420px;
        order: 1;
    }

    .bot-content {
        order: 2;
        max-width: 760px;
        text-align: center;
        margin: 0 auto;
    }

    .bot-label {
        margin-left: auto;
        margin-right: auto;
    }

    .bot-title-line {
        margin-left: auto;
        margin-right: auto;
        background: linear-gradient(90deg, transparent, rgba(15, 23, 42, 0.22), transparent);
    }

    .bot-text {
        margin-left: auto;
        margin-right: auto;
    }

    .bot-list {
        max-width: 620px;
        margin: 0 auto;
        text-align: left;
    }

    .bot-actions {
        display: flex;
        justify-content: center;
    }

    .bot-telegram-badge {
        right: 18%;
    }
}

@media (max-width: 640px) {
    .bot-section {
        padding: 64px 0 72px;
    }

    .bot-layout {
        gap: 24px;
    }

    .bot-visual {
        min-height: 300px;
    }

    .bot-visual::before {
        width: 260px;
        height: 260px;
    }

    .bot-robot-img {
        width: min(100%, 310px);
    }

    .bot-telegram-badge {
        top: 8px;
        right: 8px;
        width: 78px;
        height: 78px;
    }

    .bot-telegram-badge img {
        width: 100%;
        height: 100%;
    }

    .bot-content h2 {
        font-size: 34px;
        line-height: 1.03;
        margin-bottom: 12px;
    }

    .bot-text {
        font-size: 16px;
        line-height: 1.55;
        margin-bottom: 18px;
    }

    .bot-list {
        gap: 11px;
    }

    .bot-list-text {
        font-size: 15px;
        line-height: 1.45;
    }

    .bot-btn {
        width: 100%;
        min-height: 56px;
        font-size: 14px;
        border-radius: 14px;
        padding: 0 16px;
    }
}
/* =========================
   BOT DEMO SECTION
========================= */

.bot-demo-section {
    position: relative;
    overflow: hidden;
    padding: 96px 0 108px;
    background:
        radial-gradient(circle at 18% 34%, rgba(11, 108, 255, 0.07), transparent 28%),
        radial-gradient(circle at 84% 62%, rgba(11, 108, 255, 0.06), transparent 25%),
        linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
}

.bot-demo-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(11, 108, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(11, 108, 255, 0.03) 1px, transparent 1px);
    background-size: 54px 54px;
    mask-image: linear-gradient(to bottom, transparent, black 14%, black 82%, transparent);
    pointer-events: none;
}

.bot-demo-layout {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: minmax(320px, 0.95fr) minmax(0, 1.05fr);
    gap: 54px;
    align-items: center;
}

/* Left telegram chat */

.tg-demo-card {
    width: 100%;
    max-width: 560px;
    border-radius: 24px;
    overflow: hidden;
    border: 1px solid rgba(15, 23, 42, 0.08);
    background: #ffffff;
    box-shadow: 0 26px 70px rgba(15, 23, 42, 0.10);
}

.tg-demo-top {
    height: 72px;
    padding: 14px 18px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #ffffff;
    border-bottom: 1px solid rgba(15, 23, 42, 0.06);
}

.tg-demo-profile {
    display: flex;
    align-items: center;
    gap: 12px;
}

.tg-demo-avatar {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    overflow: hidden;
    background: #f2f6fb;
    flex: 0 0 42px;
    border: 1px solid rgba(15, 23, 42, 0.08);
}

.tg-demo-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.tg-demo-profile-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.tg-demo-profile-text strong {
    color: #2d3441;
    font-size: 15px;
    line-height: 1.1;
    font-weight: 800;
}

.tg-demo-profile-text span {
    color: #8b97a8;
    font-size: 12px;
    line-height: 1.2;
    font-weight: 600;
}

.tg-demo-actions {
    display: flex;
    align-items: center;
    gap: 14px;
}

.tg-demo-actions span {
    position: relative;
    display: block;
    width: 18px;
    height: 18px;
    opacity: 0.45;
}

.tg-demo-actions span:first-child {
    border: 2px solid #8b97a8;
    border-radius: 50%;
}

.tg-demo-actions span:first-child::after {
    content: "";
    position: absolute;
    right: -4px;
    bottom: -3px;
    width: 7px;
    height: 2px;
    border-radius: 99px;
    background: #8b97a8;
    transform: rotate(45deg);
}

.tg-demo-actions span:last-child::before,
.tg-demo-actions span:last-child::after {
    content: "";
    position: absolute;
    left: 7px;
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: #8b97a8;
}

.tg-demo-actions span:last-child::before {
    top: 2px;
    box-shadow: 0 6px 0 #8b97a8, 0 12px 0 #8b97a8;
}

.tg-demo-chat {
    height: 350px;
    padding: 22px 18px;
    overflow-y: auto;

    background-image:
        linear-gradient(rgba(255, 255, 255, 0.10), rgba(255, 255, 255, 0.10)),
        url("../img/bot/chat-bg.jpg");

    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

    display: flex;
    flex-direction: column;
    gap: 14px;
}

.tg-demo-message {
    display: flex;
    width: 100%;
}

.tg-demo-message.bot {
    justify-content: flex-start;
}

.tg-demo-message.user {
    justify-content: flex-end;
}

.tg-demo-bubble {
    max-width: 78%;
    padding: 12px 14px;
    border-radius: 16px;
    font-size: 16px;
    line-height: 1.35;
    font-weight: 500;
    box-shadow: 0 10px 24px rgba(15, 23, 42, 0.08);
}

.tg-demo-message.bot .tg-demo-bubble {
    background: #ffffff;
    color: #2d3441;
    border-top-left-radius: 8px;
}

.tg-demo-message.user .tg-demo-bubble {
    background: #d9f2ff;
    color: #1f3d52;
    border-top-right-radius: 8px;
}

.tg-demo-inputbar {
    min-height: 74px;
    padding: 12px 14px;
    display: flex;
    align-items: center;
    gap: 12px;
    background: #ffffff;
    border-top: 1px solid rgba(15, 23, 42, 0.06);
}

.tg-demo-menu-btn {
    height: 44px;
    padding: 0 16px;
    border: none;
    border-radius: 999px;
    background: linear-gradient(135deg, #5dc0ff, #46aef3);
    color: #ffffff;
    font-size: 14px;
    font-weight: 800;
    cursor: pointer;
    transition: 0.2s ease;
}

.tg-demo-menu-btn:hover {
    transform: translateY(-1px);
}

.tg-demo-input {
    flex: 1;
    height: 46px;
    padding: 0 16px;
    border: 1px solid rgba(15, 23, 42, 0.08);
    border-radius: 14px;
    background: #f8fbff;
    color: #2d3441;
    font-size: 15px;
    font-weight: 600;
    outline: none;
    transition: 0.2s ease;
}

.tg-demo-input:focus {
    border-color: rgba(11, 108, 255, 0.28);
    box-shadow: 0 0 0 4px rgba(11, 108, 255, 0.08);
    background: #ffffff;
}

.tg-demo-input::placeholder {
    color: #9aa7b8;
    font-weight: 500;
}

.tg-demo-send-btn {
    width: 46px;
    height: 46px;
    flex: 0 0 46px;
    border: none;
    border-radius: 14px;
    background: linear-gradient(135deg, #1db4ff, #0b6cff);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: 0.2s ease;
}

.tg-demo-send-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 12px 24px rgba(11, 108, 255, 0.18);
}

.tg-demo-send-btn svg {
    width: 18px;
    height: 18px;
    fill: none;
    stroke: #ffffff;
    stroke-width: 2.2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

/* Right content */

.bot-demo-content {
    max-width: 620px;
}

.bot-demo-label {
    display: inline-flex;
    align-items: center;
    margin-bottom: 16px;
    padding: 9px 14px;
    border-radius: 999px;
    background: rgba(11, 108, 255, 0.08);
    color: #0b6cff;
    font-size: 13px;
    font-weight: 800;
}

.bot-demo-content h2 {
    color: #111827;
    font-size: clamp(38px, 4.5vw, 58px);
    line-height: 0.98;
    letter-spacing: -0.055em;
    font-weight: 900;
    margin-bottom: 18px;
}

.bot-demo-content h2 span {
    display: block;
    color: #1f9ae8;
    text-transform: uppercase;
}

.bot-demo-line {
    width: 100%;
    max-width: 420px;
    height: 1px;
    margin-bottom: 24px;
    background: linear-gradient(90deg, rgba(15, 23, 42, 0.18), transparent);
}

.bot-demo-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin: 0;
    padding: 0;
}

.bot-demo-list li {
    display: flex;
    align-items: flex-start;
    gap: 14px;
}

.bot-demo-dot {
    width: 10px;
    height: 10px;
    flex: 0 0 10px;
    margin-top: 9px;
    border-radius: 50%;
    background: #52c4ff;
    box-shadow: 0 0 0 5px rgba(82, 196, 255, 0.14);
}

.bot-demo-list p {
    margin: 0;
    color: #4d5564;
    font-size: 18px;
    line-height: 1.42;
    font-weight: 600;
}

.bot-demo-list strong {
    color: #1f9ae8;
    font-weight: 800;
}

.bot-demo-note {
    margin-top: 28px;
    padding: 18px 20px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.72);
    border: 1px solid rgba(15, 23, 42, 0.06);
    color: #586172;
    font-size: 15px;
    line-height: 1.55;
    font-weight: 600;
    box-shadow: 0 16px 34px rgba(15, 23, 42, 0.06);
}

/* Adaptive */

@media (max-width: 1060px) {
    .bot-demo-layout {
        grid-template-columns: 1fr;
        gap: 34px;
    }

    .tg-demo-card {
        max-width: 720px;
        margin: 0 auto;
    }

    .bot-demo-content {
        max-width: 760px;
        margin: 0 auto;
        text-align: center;
    }

    .bot-demo-line {
        margin-left: auto;
        margin-right: auto;
        background: linear-gradient(90deg, transparent, rgba(15, 23, 42, 0.18), transparent);
    }

    .bot-demo-list {
        max-width: 620px;
        margin: 0 auto;
        text-align: left;
    }

    .bot-demo-note {
        max-width: 620px;
        margin-left: auto;
        margin-right: auto;
        text-align: left;
    }
}

@media (max-width: 640px) {
    .bot-demo-section {
        padding: 64px 0 72px;
    }

    .bot-demo-layout {
        gap: 24px;
    }

    .tg-demo-card {
        border-radius: 20px;
    }

    .tg-demo-top {
        height: auto;
        padding: 12px;
    }

    .tg-demo-avatar {
        width: 38px;
        height: 38px;
        flex-basis: 38px;
    }

    .tg-demo-profile-text strong {
        font-size: 14px;
    }

    .tg-demo-profile-text span {
        font-size: 11px;
    }

    .tg-demo-chat {
        height: 300px;
        padding: 14px 12px;
    }

    .tg-demo-bubble {
        max-width: 86%;
        font-size: 14px;
        padding: 11px 12px;
    }

    .tg-demo-inputbar {
        padding: 10px;
        gap: 8px;
    }

    .tg-demo-menu-btn {
        height: 40px;
        padding: 0 12px;
        font-size: 13px;
    }

    .tg-demo-input {
        height: 42px;
        font-size: 14px;
        padding: 0 12px;
    }

    .tg-demo-send-btn {
        width: 42px;
        height: 42px;
        flex-basis: 42px;
    }

    .bot-demo-content h2 {
        font-size: 34px;
        line-height: 1.03;
        margin-bottom: 14px;
    }

    .bot-demo-list {
        gap: 12px;
    }

    .bot-demo-list p {
        font-size: 15px;
        line-height: 1.45;
    }

    .bot-demo-note {
        padding: 16px;
        font-size: 14px;
    }
}
/* =========================
   AI UPGRADE SECTION
========================= */

.ai-upgrade-section {
    position: relative;
    overflow: hidden;
    padding: 96px 0 110px;
    background:
        radial-gradient(circle at 15% 24%, rgba(11, 108, 255, 0.07), transparent 24%),
        radial-gradient(circle at 82% 64%, rgba(97, 76, 255, 0.07), transparent 25%),
        linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
}

.ai-upgrade-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(11, 108, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(11, 108, 255, 0.03) 1px, transparent 1px);
    background-size: 54px 54px;
    mask-image: linear-gradient(to bottom, transparent, black 14%, black 82%, transparent);
    pointer-events: none;
}

.ai-upgrade-head {
    position: relative;
    z-index: 2;
    max-width: 980px;
    margin: 0 auto 42px;
    text-align: center;
}

.ai-upgrade-head h2 {
    color: #111827;
    font-size: clamp(34px, 4vw, 48px);
    line-height: 1.08;
    letter-spacing: -0.05em;
    font-weight: 900;
    margin-bottom: 18px;
}

.ai-upgrade-head h2 span {
    color: #1d8ed8;
    text-transform: uppercase;
}

.ai-upgrade-head p {
    max-width: 760px;
    margin: 0 auto 18px;
    color: #596273;
    font-size: 22px;
    line-height: 1.4;
    font-weight: 500;
}

.ai-upgrade-subtitle {
    color: #596273;
    font-size: 18px;
    line-height: 1.4;
    font-weight: 600;
}

.ai-upgrade-subtitle span {
    color: #0b6cff;
    font-weight: 800;
}

.ai-upgrade-stage {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: minmax(260px, 320px) minmax(220px, 1fr) minmax(260px, 320px);
    gap: 28px;
    align-items: end;
    min-height: 520px;
}

.ai-wave-bg {
    position: absolute;
    left: 4%;
    right: 4%;
    top: 10%;
    bottom: 4%;
    border-radius: 34px;
    background:
        radial-gradient(circle at 40% 30%, rgba(255,255,255,0.85) 0, rgba(255,255,255,0.2) 22%, transparent 45%),
        linear-gradient(135deg, rgba(11, 108, 255, 0.10), rgba(132, 96, 255, 0.08)),
        radial-gradient(circle at 20% 50%, rgba(64, 198, 255, 0.15), transparent 35%);
    overflow: hidden;
    pointer-events: none;
}

.ai-wave-bg::before {
    content: "";
    position: absolute;
    width: 120%;
    height: 120px;
    left: -10%;
    top: 32%;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.55);
    filter: blur(8px);
    transform: rotate(-6deg);
}

.ai-wave-bg::after {
    content: "";
    position: absolute;
    width: 130%;
    height: 140px;
    left: -12%;
    top: 44%;
    border-radius: 50%;
    background: rgba(124, 185, 255, 0.26);
    filter: blur(12px);
    transform: rotate(4deg);
}

.ai-particles {
    position: absolute;
    inset: 0;
    pointer-events: none;
    opacity: 0.55;
}

.ai-particles::before,
.ai-particles::after {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(circle, rgba(255,255,255,0.9) 0 1px, transparent 2px),
        radial-gradient(circle, rgba(255,255,255,0.7) 0 1px, transparent 2px);
    background-size: 120px 120px, 90px 90px;
    background-position: 0 0, 40px 20px;
}

.upgrade-card {
    position: relative;
    z-index: 3;
    overflow: hidden;
    border-radius: 26px;
    border: 1px solid rgba(15, 23, 42, 0.10);
    background: rgba(255, 255, 255, 0.88);
    box-shadow: 0 20px 50px rgba(15, 23, 42, 0.10);
    transition: 0.45s ease;
}

.upgrade-card-title {
    min-height: 72px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 16px 18px;
    border-bottom: 1px solid rgba(15, 23, 42, 0.08);
    color: #111827;
    font-size: 20px;
    font-weight: 900;
    text-align: center;
    letter-spacing: -0.03em;
}

.simple-card .upgrade-card-image {
    min-height: 250px;
    padding: 20px 18px 0;
    display: flex;
    align-items: end;
    justify-content: center;
    background: linear-gradient(180deg, #f8fbff 0%, #ffffff 100%);
}

.upgrade-card-image img {
    width: min(100%, 220px);
    display: block;
    filter: drop-shadow(0 18px 28px rgba(15, 23, 42, 0.12));
}

.upgrade-card-list {
    list-style: none;
    margin: 0;
    padding: 18px 20px 22px;
    display: grid;
    gap: 12px;
}

.upgrade-card-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #374151;
    font-size: 16px;
    font-weight: 600;
}

.upgrade-card-list li span {
    width: 22px;
    height: 22px;
    flex: 0 0 22px;
    border-radius: 50%;
    background: #1997e6;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    font-weight: 900;
}

.upgrade-center {
    position: relative;
    z-index: 4;
    padding-bottom: 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 22px;
}

.upgrade-ai-btn {
    position: relative;
    min-width: 250px;
    min-height: 72px;
    padding: 0 28px;
    border: none;
    border-radius: 999px;
    background: linear-gradient(135deg, #13a6ea, #0b6cff);
    color: #ffffff;
    font-size: 28px;
    font-weight: 900;
    letter-spacing: -0.03em;
    box-shadow: 0 18px 45px rgba(11, 108, 255, 0.28);
    cursor: pointer;
    overflow: hidden;
    transition: 0.25s ease;
}

.upgrade-ai-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 24px 54px rgba(11, 108, 255, 0.34);
}

.upgrade-ai-btn-glow {
    content: "";
    position: absolute;
    inset: -30%;
    background: radial-gradient(circle, rgba(255,255,255,0.38), transparent 55%);
    opacity: 0.8;
    animation: aiGlowPulse 2.6s infinite ease-in-out;
    pointer-events: none;
}

.upgrade-ai-btn-text {
    position: relative;
    z-index: 2;
}

.upgrade-chat-preview {
    width: 100%;
    max-width: 290px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.upgrade-chat-bubble {
    max-width: 100%;
    padding: 14px 16px;
    border-radius: 18px;
    font-size: 14px;
    line-height: 1.35;
    font-weight: 600;
    box-shadow: 0 12px 22px rgba(15, 23, 42, 0.08);
    transition: 0.35s ease;
}

.upgrade-chat-bubble.user {
    align-self: flex-start;
    background: #ffffff;
    color: #50596a;
    border-top-left-radius: 10px;
}

.upgrade-chat-bubble.bot {
    align-self: flex-end;
    background: #eefaf0;
    color: #35765d;
    border-top-right-radius: 10px;
}

.upgrade-beam {
    position: absolute;
    top: 74px;
    left: 50%;
    width: 320px;
    height: 320px;
    border-radius: 50%;
    transform: translateX(-50%) scale(0.3);
    background: radial-gradient(circle, rgba(64, 197, 255, 0.26), rgba(104, 100, 255, 0.18), transparent 70%);
    filter: blur(18px);
    opacity: 0;
    pointer-events: none;
    transition: 0.55s ease;
}

.ai-card {
    transform: translateY(-10px);
    opacity: 0.72;
    border-color: rgba(104, 100, 255, 0.12);
    background: linear-gradient(180deg, rgba(248, 246, 255, 0.92), rgba(240, 245, 255, 0.92));
}

.ai-card .upgrade-card-title {
    color: #5f6fff;
    font-size: 24px;
    background: linear-gradient(180deg, rgba(255,255,255,0.4), rgba(146, 107, 255, 0.05));
}

.upgrade-ai-features {
    padding: 18px 18px 12px;
    border-bottom: 1px solid rgba(15, 23, 42, 0.08);
    display: grid;
    gap: 12px;
}

.upgrade-ai-features div {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #374151;
    font-size: 15px;
    font-weight: 700;
}

.upgrade-ai-feature-icon {
    width: 34px;
    height: 34px;
    flex: 0 0 34px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.upgrade-ai-feature-icon img {
    width: 34px;
    height: 34px;
    object-fit: contain;
}
.ai-image {
    min-height: 190px;
    padding: 14px 16px 8px;
    display: flex;
    align-items: end;
    justify-content: center;
    background:
        radial-gradient(circle at 50% 20%, rgba(80, 178, 255, 0.14), transparent 42%),
        linear-gradient(180deg, rgba(255,255,255,0.14), rgba(164, 183, 255, 0.14));
}

.ai-image img {
    width: min(100%, 180px);
}

.upgrade-ai-footer {
    min-height: 28px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 14px 10px;
}

.upgrade-ai-footer-line {
    flex: 1;
    height: 12px;
    border-radius: 999px;
    background: rgba(15, 23, 42, 0.06);
}

.upgrade-ai-footer-icons {
    display: flex;
    gap: 8px;
    margin-left: 12px;
}

.upgrade-ai-footer-icons span {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: rgba(15, 23, 42, 0.08);
}

.ai-upgrade-bottom-text {
    position: relative;
    z-index: 2;
    margin-top: 22px;
    text-align: center;
    color: #6b7280;
    font-size: 18px;
    font-weight: 500;
}

/* Active state */

.ai-upgrade-stage.upgraded .upgrade-beam {
    opacity: 1;
    transform: translateX(-50%) scale(1.05);
}

.ai-upgrade-stage.upgraded .simple-card {
    opacity: 0.78;
    transform: scale(0.985);
}

.ai-upgrade-stage.upgraded .ai-card {
    opacity: 1;
    transform: translateY(-16px) scale(1.03);
    border-color: rgba(95, 111, 255, 0.24);
    box-shadow: 0 24px 60px rgba(95, 111, 255, 0.18);
}

.ai-upgrade-stage.upgraded .ai-card::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 26px;
    pointer-events: none;
    box-shadow: inset 0 0 0 1px rgba(95, 111, 255, 0.16);
}

.ai-upgrade-stage.upgraded .upgrade-ai-btn {
    background: linear-gradient(135deg, #5b7dff, #7a4cff);
    box-shadow: 0 20px 50px rgba(95, 111, 255, 0.30);
}



.ai-upgrade-stage.upgraded #upgradeBotReply {
    background: #eaf1ff;
    color: #4156b5;
}

/* Animations */

@keyframes aiGlowPulse {
    0%, 100% {
        transform: scale(0.9);
        opacity: 0.55;
    }
    50% {
        transform: scale(1.08);
        opacity: 1;
    }
}

/* Adaptive */

@media (max-width: 1180px) {
    .ai-upgrade-stage {
        grid-template-columns: 1fr;
        gap: 24px;
        max-width: 760px;
        margin: 0 auto;
    }

    .upgrade-center {
        order: 2;
        padding-bottom: 0;
    }

    .simple-card {
        order: 1;
    }

    .ai-card {
        order: 3;
    }

    .upgrade-beam {
        top: 0;
    }

    .ai-wave-bg {
        left: 0;
        right: 0;
    }
}

@media (max-width: 640px) {
    .ai-upgrade-section {
        padding: 64px 0 78px;
    }

    .ai-upgrade-head {
        margin-bottom: 28px;
    }

    .ai-upgrade-head p {
        font-size: 16px;
    }

    .ai-upgrade-subtitle {
        font-size: 15px;
    }

    .upgrade-card {
        border-radius: 22px;
    }

    .upgrade-card-title {
        min-height: 62px;
        font-size: 18px;
        padding: 14px;
    }

    .simple-card .upgrade-card-image {
        min-height: 220px;
    }

    .upgrade-card-image img {
        width: min(100%, 180px);
    }

    .upgrade-card-list {
        padding: 16px;
        gap: 10px;
    }

    .upgrade-card-list li {
        font-size: 14px;
    }

    .upgrade-ai-btn {
        min-width: 220px;
        min-height: 62px;
        font-size: 22px;
        padding: 0 20px;
    }

    .upgrade-chat-preview {
        max-width: 100%;
    }

    .upgrade-chat-bubble {
        font-size: 13px;
        padding: 12px 14px;
    }

    .upgrade-ai-features {
        padding: 16px 14px 10px;
    }

    .upgrade-ai-features div {
        font-size: 14px;
    }

    .ai-image {
        min-height: 170px;
    }

    .ai-image img {
        width: min(100%, 150px);
    }

    .ai-upgrade-bottom-text {
        font-size: 15px;
        margin-top: 16px;
    }
}
/* =========================
   EXTRA AI EFFECTS
========================= */

.upgrade-flash {
    position: absolute;
    inset: 50% auto auto 50%;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    transform: translate(-50%, -50%) scale(0);
    background: radial-gradient(circle, rgba(255,255,255,0.95) 0%, rgba(95, 170, 255, 0.55) 35%, rgba(95, 111, 255, 0.18) 60%, transparent 75%);
    opacity: 0;
    pointer-events: none;
    z-index: 5;
}

.upgrade-particle-burst {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 5;
    overflow: hidden;
}

.upgrade-particle {
    position: absolute;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: linear-gradient(135deg, #74d7ff, #6a6cff);
    box-shadow: 0 0 12px rgba(106, 108, 255, 0.45);
    opacity: 0;
}

.ai-activated-badge {
    position: absolute;
    top: 14px;
    right: 14px;
    z-index: 4;
    padding: 8px 12px;
    border-radius: 999px;
    background: linear-gradient(135deg, #5b7dff, #7a4cff);
    color: #ffffff;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.02em;
    box-shadow: 0 12px 28px rgba(95, 111, 255, 0.24);
    opacity: 0;
    transform: translateY(-8px) scale(0.9);
    transition: 0.35s ease;
}

.upgrade-center::before,
.upgrade-center::after {
    content: "";
    position: absolute;
    left: 50%;
    top: 62px;
    width: 130px;
    height: 130px;
    border-radius: 50%;
    transform: translateX(-50%) scale(0.4);
    opacity: 0;
    pointer-events: none;
    z-index: 1;
}

.upgrade-center::before {
    border: 2px solid rgba(85, 184, 255, 0.45);
}

.upgrade-center::after {
    border: 2px solid rgba(123, 93, 255, 0.32);
}

.ai-upgrade-stage.is-upgrading .upgrade-center::before {
    animation: aiRingExpand 0.9s ease-out forwards;
}

.ai-upgrade-stage.is-upgrading .upgrade-center::after {
    animation: aiRingExpand 1.15s ease-out 0.12s forwards;
}

.ai-upgrade-stage.is-upgrading .upgrade-flash {
    animation: aiFlashBoom 0.7s ease-out forwards;
}

.ai-upgrade-stage.is-upgrading .upgrade-ai-btn {
    animation: aiButtonCharge 0.9s ease-in-out;
}

.ai-upgrade-stage.is-upgrading .simple-card {
    transform: scale(0.97) translateY(4px);
    opacity: 0.55;
    filter: saturate(0.85);
}

.ai-upgrade-stage.is-upgrading .ai-card {
    transform: translateY(-14px) scale(1.025);
    box-shadow: 0 28px 70px rgba(95, 111, 255, 0.20);
}

.ai-upgrade-stage.is-upgrading .upgrade-ai-features {
    background: linear-gradient(180deg, rgba(255,255,255,0.18), rgba(97, 115, 255, 0.05));
}

.ai-upgrade-stage.upgraded .ai-activated-badge {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.ai-upgrade-stage.upgraded .ai-card {
    background:
        radial-gradient(circle at 50% 0%, rgba(119, 176, 255, 0.20), transparent 35%),
        linear-gradient(180deg, rgba(248, 246, 255, 0.98), rgba(240, 245, 255, 0.96));
}

.ai-upgrade-stage.upgraded .ai-image::before {
    content: "";
    position: absolute;
    width: 180px;
    height: 180px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(106, 197, 255, 0.28), rgba(123, 93, 255, 0.14), transparent 70%);
    filter: blur(8px);
    left: 50%;
    bottom: 24px;
    transform: translateX(-50%);
    pointer-events: none;
}

.ai-upgrade-stage.upgraded .ai-image {
    position: relative;
}

.ai-upgrade-stage.upgraded .upgrade-ai-btn-text {
    letter-spacing: -0.02em;
}

.ai-upgrade-stage.upgraded .upgrade-ai-btn {
    background: linear-gradient(135deg, #5b7dff, #7a4cff);
}

.ai-upgrade-stage.upgraded .upgrade-ai-btn-text::after {

    font-size: 0.86em;
}

@keyframes aiFlashBoom {
    0% {
        opacity: 0;
        transform: translate(-50%, -50%) scale(0);
    }
    20% {
        opacity: 1;
        transform: translate(-50%, -50%) scale(5);
    }
    100% {
        opacity: 0;
        transform: translate(-50%, -50%) scale(13);
    }
}

@keyframes aiRingExpand {
    0% {
        opacity: 0.9;
        transform: translateX(-50%) scale(0.35);
    }
    100% {
        opacity: 0;
        transform: translateX(-50%) scale(2.1);
    }
}

@keyframes aiButtonCharge {
    0% {
        transform: scale(1);
        box-shadow: 0 18px 45px rgba(11, 108, 255, 0.28);
    }
    30% {
        transform: scale(1.03);
        box-shadow: 0 0 0 14px rgba(86, 183, 255, 0.15), 0 22px 54px rgba(11, 108, 255, 0.36);
    }
    60% {
        transform: scale(0.985);
        box-shadow: 0 0 0 28px rgba(122, 76, 255, 0.08), 0 24px 58px rgba(95, 111, 255, 0.34);
    }
    100% {
        transform: scale(1);
        box-shadow: 0 20px 50px rgba(95, 111, 255, 0.30);
    }
}

@keyframes aiParticleFly {
    0% {
        opacity: 0;
        transform: translate(0, 0) scale(0.4);
    }
    12% {
        opacity: 1;
    }
    100% {
        opacity: 0;
        transform: translate(var(--tx), var(--ty)) scale(1.3);
    }
}
/* =========================
   INSTAGRAM BLOCK
========================= */
/* =========================
   INSTAGRAM BLOCK — FIXED
========================= */

.instagram-block {
    position: relative;
    overflow: hidden;
    min-height: 760px;
    padding: 105px 0 110px;
    background:
        radial-gradient(circle at 14% 24%, rgba(251, 146, 60, 0.07), transparent 24%),
        radial-gradient(circle at 82% 44%, rgba(236, 72, 153, 0.08), transparent 28%),
        radial-gradient(circle at 74% 84%, rgba(139, 92, 246, 0.08), transparent 26%),
        linear-gradient(180deg, #f8fbff 0%, #ffffff 46%, #fff7fb 100%);
}

.instagram-block::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(168, 85, 247, 0.025) 1px, transparent 1px),
        linear-gradient(90deg, rgba(168, 85, 247, 0.025) 1px, transparent 1px);
    background-size: 54px 54px;
    pointer-events: none;
    mask-image: linear-gradient(to bottom, transparent, black 14%, black 82%, transparent);
}

.instagram-block__inner {
    position: relative;
    z-index: 2;
    width: min(1240px, calc(100% - 48px));
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(460px, 1.1fr);
    gap: 70px;
    align-items: center;
}

/* CONTENT */

.instagram-content {
    position: relative;
    z-index: 4;
    max-width: 620px;
    margin: 0;
}

.ig-badge {
    width: fit-content;
    display: inline-flex;
    align-items: center;
    padding: 10px 18px;
    margin-bottom: 24px;
    border-radius: 999px;
    border: 1px solid rgba(168, 85, 247, 0.36);
    background: rgba(255, 255, 255, 0.68);
    color: #9333ea;
    font-size: 12px;
    line-height: 1;
    font-weight: 900;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    box-shadow: 0 12px 30px rgba(168, 85, 247, 0.08);
}

.instagram-content h2 {
    margin: 0 0 22px;
    color: #0f172a;
    font-size: clamp(38px, 4.6vw, 48px);
    line-height: 1.04;
    letter-spacing: -0.055em;
    font-weight: 900;
}

.instagram-content h2 span {
    display: block;
}

.instagram-content p {
    max-width: 590px;
    margin: 0 0 28px;
    color: #64748b;
    font-size: 19px;
    line-height: 1.55;
    font-weight: 500;
}

.ig-checklist {
    max-width: 500px;
    display: grid;
    gap: 13px;
    margin-bottom: 32px;
}

.ig-checklist div {
    position: relative;
    min-height: 38px;
    display: flex;
    align-items: center;
    padding-left: 46px;
    color: #1e293b;
    font-size: 17px;
    line-height: 1.35;
    font-weight: 700;
}

.ig-checklist div::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 50%;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    color: #ffffff;
    font-size: 14px;
    font-weight: 900;
    background: linear-gradient(135deg, #fb923c, #ec4899, #8b5cf6);
    box-shadow: 0 10px 22px rgba(236, 72, 153, 0.22);
    transform: translateY(-50%);
}

.ig-buttons {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

.ig-btn-main,
.ig-btn-second {
    min-height: 56px;
    padding: 0 24px;
    border-radius: 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    text-decoration: none;
    font-size: 15px;
    font-weight: 900;
    transition: 0.22s ease;
}

.ig-btn-main span,
.ig-btn-second span {
    font-size: 20px;
    line-height: 1;
}

.ig-btn-main {
    color: #ffffff;
    background: linear-gradient(135deg, #fb923c, #ec4899, #8b5cf6);
    box-shadow: 0 18px 45px rgba(236, 72, 153, 0.25);
}

.ig-btn-second {
    color: #7c3aed;
    background: rgba(255, 255, 255, 0.78);
    border: 1px solid rgba(124, 58, 237, 0.30);
    box-shadow: 0 14px 34px rgba(15, 23, 42, 0.06);
}

.ig-btn-main:hover,
.ig-btn-second:hover {
    transform: translateY(-3px);
}

.ig-btn-main:hover {
    box-shadow: 0 24px 54px rgba(236, 72, 153, 0.32);
}

/* VISUAL */

.instagram-visual {
    position: relative;
    z-index: 3;
    min-height: 660px;
    margin: 0;
}

.ig-glow {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
}

.ig-glow-1 {
    width: 520px;
    height: 520px;
    left: 12%;
    top: 6%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.9), rgba(217, 70, 239, 0.12), transparent 68%);
    filter: blur(10px);
}

.ig-glow-2 {
    width: 340px;
    height: 340px;
    right: 4%;
    bottom: 8%;
    background: radial-gradient(circle, rgba(251, 146, 60, 0.14), transparent 68%);
    filter: blur(18px);
}

.ig-phone {
    position: absolute;
    z-index: 5;
    left: 0;
    top: -10px;
    width: clamp(360px, 38vw, 510px);
    height: auto;
    filter: drop-shadow(0 34px 45px rgba(15, 23, 42, 0.20));
}

.ig-card {
    position: absolute;
    z-index: 4;
    width: 250px;
    height: auto;
    border-radius: 26px;
    filter: drop-shadow(0 24px 42px rgba(15, 23, 42, 0.14));
    transition: 0.25s ease;
}

.ig-card:hover {
    transform: translateY(-6px) rotate(0deg);
}

.ig-card-1 {
    right: 0;
    top: 52px;
    transform: rotate(3deg);
}

.ig-card-2 {
    right: 24px;
    bottom: 70px;
    transform: rotate(-4deg);
}

.ig-icon {
    position: absolute;
    z-index: 6;
    left: 24px;
    bottom: 140px;
    width: 94px;
    height: auto;
    filter: drop-shadow(0 18px 35px rgba(236, 72, 153, 0.28));
}

/* =========================
   ADAPTIVE
========================= */

@media (max-width: 1120px) {
    .instagram-block {
        padding: 82px 0 88px;
    }

    .instagram-block__inner {
        width: min(100% - 48px, 760px);
        grid-template-columns: 1fr;
        gap: 36px;
    }

    .instagram-content {
        max-width: 760px;
        margin: 0 auto;
        text-align: center;
    }

    .ig-badge {
        margin-left: auto;
        margin-right: auto;
    }

    .instagram-content p {
        margin-left: auto;
        margin-right: auto;
    }

    .ig-checklist {
        max-width: 540px;
        margin-left: auto;
        margin-right: auto;
        text-align: left;
    }

    .ig-buttons {
        justify-content: center;
    }

    .instagram-visual {
        width: 100%;
        max-width: 760px;
        min-height: 650px;
        margin: 0 auto;
    }

    .ig-phone {
        left: 50%;
        top: -10px;
        width: 430px;
        transform: translateX(-50%);
    }

    .ig-card-1 {
        right: 42px;
        top: 48px;
    }

    .ig-card-2 {
        right: 56px;
        bottom: 60px;
    }

    .ig-icon {
        left: 56px;
        bottom: 140px;
    }
}

@media (max-width: 640px) {
    .instagram-block {
        padding: 64px 0 72px;
    }

    .instagram-block__inner {
        width: min(100% - 28px, 760px);
        gap: 24px;
    }

    .ig-badge {
        padding: 8px 13px;
        font-size: 10px;
        letter-spacing: 0.12em;
        margin-bottom: 16px;
    }

    .instagram-content h2 {
        font-size: 33px;
        line-height: 1.08;
        margin-bottom: 14px;
    }

    .instagram-content p {
        font-size: 15px;
        line-height: 1.55;
        margin-bottom: 22px;
    }

    .ig-checklist {
        gap: 10px;
        margin-bottom: 24px;
    }

    .ig-checklist div {
        min-height: 34px;
        padding-left: 40px;
        font-size: 14px;
    }

    .ig-checklist div::before {
        width: 25px;
        height: 25px;
        font-size: 12px;
    }

    .ig-buttons {
        gap: 10px;
    }

    .ig-btn-main,
    .ig-btn-second {
        width: 100%;
        min-height: 52px;
        font-size: 14px;
    }

    .instagram-visual {
        min-height: 520px;
    }

    .ig-phone {
        width: 255px;
        top: 18px;
        left: 50%;
        transform: translateX(-50%);
    }

    .ig-card {
        border-radius: 18px;
    }

    .ig-card-1 {
        width: 140px;
        right: 0;
        top: 58px;
        transform: rotate(4deg);
        z-index: 9;
    }

    .ig-card-2 {
        width: 150px;
        right: 8px;
        bottom: 58px;
        transform: rotate(-4deg);
        z-index: 9;
    }

    .ig-icon {
        width: 66px;
        left: 0;
        bottom: 130px;
    }

    .ig-glow-1 {
        width: 320px;
        height: 320px;
        left: 50%;
        top: 12%;
        transform: translateX(-50%);
    }

    .ig-glow-2 {
        width: 220px;
        height: 220px;
    }
}

@media (max-width: 390px) {
    .instagram-content h2 {
        font-size: 29px;
    }

    .instagram-visual {
        min-height: 470px;
    }

    .ig-phone {
        width: 730px;
    }

    .ig-card-1 {
        width: 118px;
    }

    .ig-card-2 {
        width: 128px;
    }
}
/* =========================
   LEAD MODAL MAC STYLE — COMPACT
========================= */

.lead-modal {
    position: fixed;
    inset: 0;
    z-index: 999;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 18px;
}

.lead-modal.active {
    display: flex;
}

.lead-modal__overlay {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 50% 30%, rgba(11, 108, 255, 0.14), transparent 35%),
        rgba(5, 8, 15, 0.58);
    backdrop-filter: blur(12px);
}

.lead-modal__window {
    position: relative;
    z-index: 2;
    width: min(100%, 620px);
    max-height: calc(100vh - 36px);
    overflow: hidden;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.96);
    border: 1px solid rgba(255, 255, 255, 0.42);
    box-shadow:
        0 34px 90px rgba(0, 0, 0, 0.30),
        inset 0 1px 0 rgba(255, 255, 255, 0.70);
    animation: leadModalIn 0.28s ease both;
}

.lead-modal__top {
    height: 48px;
    padding: 0 16px;
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 12px;
    background: linear-gradient(180deg, #f9fafb 0%, #eef2f7 100%);
    border-bottom: 1px solid rgba(15, 23, 42, 0.08);
}

.lead-modal__dots {
    display: flex;
    align-items: center;
    gap: 8px;
}

.lead-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    display: block;
    border: none;
}

.lead-dot-red {
    background: #ff5f57;
    cursor: pointer;
}

.lead-dot-yellow {
    background: #febc2e;
}

.lead-dot-green {
    background: #28c840;
}

.lead-modal__titlebar {
    height: 30px;
    max-width: 300px;
    margin: 0 auto;
    padding: 0 16px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.82);
    border: 1px solid rgba(15, 23, 42, 0.07);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #7b8494;
    font-size: 12px;
    font-weight: 700;
}

.lead-modal__body {
    max-height: calc(100vh - 84px);
    overflow-y: auto;
    padding: 26px 32px 28px;
}

.lead-modal__body::-webkit-scrollbar {
    width: 8px;
}

.lead-modal__body::-webkit-scrollbar-thumb {
    background: rgba(15, 23, 42, 0.18);
    border-radius: 999px;
}

.lead-modal__head {
    margin-bottom: 20px;
}

.lead-modal__head span {
    display: inline-flex;
    width: fit-content;

    padding: 7px 1px;
    border-radius: 999px;

    color: #0b6cff;
    font-size: 11px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.lead-modal__head h2 {
    margin: 0 0 10px;
    color: #111827;
    font-size: clamp(28px, 3.4vw, 38px);
    line-height: 1.04;
    letter-spacing: -0.05em;
    font-weight: 900;
}

.lead-modal__head p {
    margin: 0;
    max-width: 520px;
    color: #667085;
    font-size: 14px;
    line-height: 1.5;
    font-weight: 500;
}

.lead-form {
    display: grid;
    gap: 13px;
}

.lead-form__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

.lead-field {
    display: grid;
    gap: 6px;
}

.lead-field span {
    color: #344054;
    font-size: 13px;
    font-weight: 800;
}

.lead-field input,
.lead-field textarea {
    width: 100%;
    border: 1px solid rgba(15, 23, 42, 0.10);
    border-radius: 13px;
    background: #f8fafc;
    color: #111827;
    font-family: inherit;
    font-size: 14px;
    font-weight: 600;
    outline: none;
    transition: 0.2s ease;
}

.lead-field input {
    height: 46px;
    padding: 0 15px;
}

.lead-field textarea {
    min-height: 82px;
    max-height: 130px;
    padding: 13px 15px;
    resize: vertical;
}

.lead-field input:focus,
.lead-field textarea:focus {
    background: #ffffff;
    border-color: rgba(11, 108, 255, 0.34);
    box-shadow: 0 0 0 4px rgba(11, 108, 255, 0.08);
}

.lead-field input::placeholder,
.lead-field textarea::placeholder {
    color: #9aa4b2;
    font-weight: 500;
}

.lead-submit {
    height: 52px;
    border: none;
    border-radius: 15px;
    background: linear-gradient(135deg, #0b6cff, #2485ff);
    color: #ffffff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-family: inherit;
    font-size: 15px;
    font-weight: 900;
    cursor: pointer;
    box-shadow: 0 18px 38px rgba(11, 108, 255, 0.24);
    transition: 0.22s ease;
}

.lead-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 24px 48px rgba(11, 108, 255, 0.30);
}

.lead-submit:disabled {
    opacity: 0.65;
    cursor: not-allowed;
    transform: none;
}

.lead-submit span {
    font-size: 21px;
    line-height: 1;
}

.lead-form__message {
    display: none;
    padding: 12px 14px;
    border-radius: 13px;
    font-size: 13px;
    line-height: 1.4;
    font-weight: 700;
}

.lead-form__message.active {
    display: block;
}

.lead-form__message.success {
    background: rgba(34, 197, 94, 0.10);
    color: #15803d;
    border: 1px solid rgba(34, 197, 94, 0.18);
}

.lead-form__message.error {
    background: rgba(239, 68, 68, 0.10);
    color: #b91c1c;
    border: 1px solid rgba(239, 68, 68, 0.18);
}

body.modal-open {
    overflow: hidden;
}

@keyframes leadModalIn {
    from {
        opacity: 0;
        transform: translateY(18px) scale(0.96);
    }

    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* Низкие экраны ноутбуков */
@media (max-height: 760px) {
    .lead-modal {
        align-items: flex-start;
        padding-top: 12px;
        padding-bottom: 12px;
    }

    .lead-modal__window {
        max-height: calc(100vh - 24px);
    }

    .lead-modal__body {
        max-height: calc(100vh - 72px);
        padding: 20px 28px 22px;
    }

    .lead-modal__head {
        margin-bottom: 16px;
    }

    .lead-modal__head h2 {
        font-size: 32px;
    }

    .lead-field input {
        height: 42px;
    }

    .lead-field textarea {
        min-height: 70px;
    }

    .lead-submit {
        height: 48px;
    }
}

@media (max-width: 640px) {
    .lead-modal {
        padding: 10px;
        align-items: flex-start;
    }

    .lead-modal__window {
        max-height: calc(100vh - 20px);
        border-radius: 20px;
    }

    .lead-modal__top {
        height: 48px;
        padding: 0 12px;
    }

    .lead-modal__titlebar {
        max-width: 210px;
        height: 28px;
        font-size: 10px;
        padding: 0 10px;
    }

    .lead-modal__body {
        max-height: calc(100vh - 68px);
        padding: 20px 16px 18px;
    }

    .lead-form__grid {
        grid-template-columns: 1fr;
    }

    .lead-modal__head h2 {
        font-size: 28px;
    }

    .lead-modal__head p {
        font-size: 13px;
    }

    .lead-submit {
        height: 52px;
    }
}
/* =========================
   WHATSAPP FLOAT BUTTON
========================= */

.whatsapp-float {
    position: fixed;
    right: 22px;
    bottom: 28px;
    z-index: 900;

    width: 60px;
    height: 60px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;
    background: linear-gradient(135deg, #25D366, #16b857);
    color: #ffffff;
    text-decoration: none;

    box-shadow:
        0 18px 38px rgba(37, 211, 102, 0.28),
        0 0 0 8px rgba(37, 211, 102, 0.08);

    transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.whatsapp-float:hover {
    transform: translateY(-4px) scale(1.04);
    box-shadow:
        0 24px 50px rgba(37, 211, 102, 0.36),
        0 0 0 12px rgba(37, 211, 102, 0.10);
}

.whatsapp-float svg {
    width: 32px;
    height: 32px;
    fill: currentColor;
}

.whatsapp-float::before {
    content: "";
    position: absolute;
    inset: -8px;
    z-index: -1;
    border-radius: inherit;
    border: 1px solid rgba(37, 211, 102, 0.36);
    animation: whatsappPulse 2.2s ease-out infinite;
}

@keyframes whatsappPulse {
    0% {
        opacity: 0.75;
        transform: scale(0.92);
    }

    100% {
        opacity: 0;
        transform: scale(1.35);
    }
}

@media (max-width: 640px) {
    .whatsapp-float {
        right: 14px;
        bottom: 16px;
        width: 56px;
        height: 56px;
    }

    .whatsapp-float svg {
        width: 30px;
        height: 30px;
    }
}
/* =========================
   SCROLL TO TOP BUTTON
========================= */

.scroll-top-btn {
    position: fixed;
    right: 22px;
    bottom: 102px;
    z-index: 899;

    width: 54px;
    height: 54px;

    display: flex;
    align-items: center;
    justify-content: center;

    border: none;
    border-radius: 50%;

    background: rgba(255, 255, 255, 0.88);
    color: #0b6cff;

    box-shadow:
        0 18px 38px rgba(15, 23, 42, 0.14),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);

    backdrop-filter: blur(14px);

    cursor: pointer;

    opacity: 0;
    visibility: hidden;
    transform: translateY(16px) scale(0.92);

    transition:
        opacity 0.22s ease,
        visibility 0.22s ease,
        transform 0.22s ease,
        background 0.22s ease,
        color 0.22s ease;
}

.scroll-top-btn.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
}

.scroll-top-btn:hover {
    background: #0b6cff;
    color: #ffffff;
    transform: translateY(-4px) scale(1.04);
}

.scroll-top-btn svg {
    width: 25px;
    height: 25px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2.4;
    stroke-linecap: round;
    stroke-linejoin: round;
}

@media (max-width: 640px) {
    .scroll-top-btn {
        right: 15px;
        bottom: 86px;
        width: 50px;
        height: 50px;
    }

    .scroll-top-btn svg {
        width: 23px;
        height: 23px;
    }
}
/* =========================
   FOOTER DARK FULL WIDTH
========================= */

.site-footer {
    position: relative;
    overflow: hidden;
    width: 100%;
    padding: 96px 0 30px;
    background:
        radial-gradient(circle at 12% 20%, rgba(11, 108, 255, 0.22), transparent 30%),
        radial-gradient(circle at 88% 72%, rgba(124, 58, 237, 0.22), transparent 32%),
        linear-gradient(180deg, #080a10 0%, #0b1020 48%, #05070d 100%);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    color: #ffffff;
}

.site-footer::before {
    content: "";
    position: absolute;
    inset: 0;
    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: 54px 54px;
    pointer-events: none;
    mask-image: linear-gradient(to bottom, transparent, black 12%, black 88%, transparent);
}

.site-footer .container {
    position: relative;
    z-index: 2;
}

.footer-main {
    display: grid;
    grid-template-columns: minmax(300px, 1.4fr) repeat(3, minmax(170px, 1fr));
    gap: 46px;
    padding: 0;
    border: none;
    background: transparent;
    box-shadow: none;
    backdrop-filter: none;
    border-radius: 0;
}

.footer-brand {
    max-width: 430px;
}

.footer-logo {
    width: fit-content;
    display: inline-flex;
    align-items: center;
    gap: 13px;
    margin-bottom: 22px;
    color: #ffffff;
    text-decoration: none;
    font-size: 20px;
    font-weight: 900;
    letter-spacing: -0.04em;
}

.footer-logo-mark {
    width: 46px;
    height: 46px;
    border-radius: 15px;
    background:
        radial-gradient(circle at 32% 28%, #ffffff 0 10%, transparent 11%),
        linear-gradient(135deg, #0b6cff, #68a8ff);
    box-shadow: 0 16px 34px rgba(11, 108, 255, 0.38);
}

.footer-brand p {
    margin: 0 0 26px;
    color: rgba(255, 255, 255, 0.68);
    font-size: 17px;
    line-height: 1.65;
    font-weight: 500;
}

.footer-btn {
    min-height: 56px;
    padding: 0 24px;
    border: none;
    border-radius: 16px;
    background: linear-gradient(135deg, #0b6cff, #2485ff);
    color: #ffffff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-family: inherit;
    font-size: 15px;
    font-weight: 900;
    cursor: pointer;
    box-shadow: 0 18px 38px rgba(11, 108, 255, 0.28);
    transition: 0.22s ease;
}

.footer-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 24px 48px rgba(11, 108, 255, 0.38);
}

.footer-btn span {
    font-size: 21px;
    line-height: 1;
}

.footer-column h3 {
    margin: 0 0 20px;
    color: #ffffff;
    font-size: 17px;
    line-height: 1.2;
    font-weight: 900;
}

.footer-column nav {
    display: grid;
    gap: 14px;
}

.footer-column nav a {
    width: fit-content;
    color: rgba(255, 255, 255, 0.62);
    text-decoration: none;
    font-size: 15px;
    line-height: 1.35;
    font-weight: 650;
    transition: 0.2s ease;
}

.footer-column nav a:hover {
    color: #68a8ff;
    transform: translateX(4px);
}

.footer-contacts {
    display: grid;
    align-content: start;
    gap: 17px;
}

.footer-contact-item {
    display: grid;
    gap: 6px;
}

.footer-contact-item span {
    color: rgba(255, 255, 255, 0.42);
    font-size: 12px;
    line-height: 1.2;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.footer-contact-item a {
    width: fit-content;
    color: rgba(255, 255, 255, 0.86);
    text-decoration: none;
    font-size: 15px;
    line-height: 1.35;
    font-weight: 850;
    transition: 0.2s ease;
}

.footer-contact-item a:hover {
    color: #68a8ff;
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    margin-top: 64px;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.10);
    color: rgba(255, 255, 255, 0.48);
}

.footer-bottom p {
    margin: 0;
    font-size: 13px;
    line-height: 1.4;
    font-weight: 650;
}

.footer-bottom-links {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.footer-bottom-links a {
    color: rgba(255, 255, 255, 0.48);
    text-decoration: none;
    font-size: 13px;
    line-height: 1.4;
    font-weight: 650;
    transition: 0.2s ease;
}

.footer-bottom-links a:hover {
    color: #68a8ff;
}

/* Adaptive */

@media (max-width: 1020px) {
    .footer-main {
        grid-template-columns: 1fr 1fr;
        gap: 38px;
    }

    .footer-brand {
        max-width: 100%;
    }
}

@media (max-width: 640px) {
    .site-footer {
        padding: 70px 0 24px;
    }

    .footer-main {
        grid-template-columns: 1fr;
        gap: 34px;
    }

    .footer-logo {
        font-size: 17px;
    }

    .footer-logo-mark {
        width: 40px;
        height: 40px;
        border-radius: 13px;
    }

    .footer-brand p {
        font-size: 15px;
    }

    .footer-btn {
        width: 100%;
    }

    .footer-column h3 {
        margin-bottom: 14px;
    }

    .footer-column nav {
        gap: 11px;
    }

    .footer-bottom {
        margin-top: 42px;
        flex-direction: column;
        align-items: flex-start;
        gap: 14px;
    }

    .footer-bottom-links {
        gap: 12px;
        flex-direction: column;
        align-items: flex-start;
    }
}
/* =========================
   CASES SECTION — UPDATED
========================= */

.cases-section {
    position: relative;
    overflow: hidden;
    padding: 110px 0 120px;
    background:
        radial-gradient(circle at 12% 20%, rgba(11, 108, 255, 0.08), transparent 28%),
        radial-gradient(circle at 86% 18%, rgba(168, 85, 247, 0.10), transparent 30%),
        linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
}

.cases-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(11, 108, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(11, 108, 255, 0.03) 1px, transparent 1px);
    background-size: 54px 54px;
    pointer-events: none;
    mask-image: linear-gradient(to bottom, transparent, black 14%, black 84%, transparent);
}

.cases-section .container {
    position: relative;
    z-index: 2;
    width: min(1500px, calc(100% - 64px));
}

/* HEAD */

.cases-head {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 420px;
    gap: 40px;
    align-items: center;
    margin-bottom: 34px;
}

.cases-head-content {
    max-width: 780px;
}

.cases-badge {
    width: fit-content;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 18px;
    padding: 8px 13px;
    border-radius: 999px;
    background: rgba(11, 108, 255, 0.10);
    color: #0b6cff;
    font-size: 13px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.cases-badge span {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #0b6cff;
}

.cases-head h2 {
    margin: 0 0 18px;
    color: #0f172a;
    font-size: clamp(50px, 6vw, 86px);
    line-height: 0.96;
    letter-spacing: -0.07em;
    font-weight: 900;
}

.cases-head p {
    max-width: 650px;
    margin: 0 0 28px;
    color: #5f6878;
    font-size: 20px;
    line-height: 1.55;
    font-weight: 500;
}

.cases-actions {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
}

.cases-main-btn,
.cases-second-btn {
    min-height: 56px;
    padding: 0 24px;
    border-radius: 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    font-family: inherit;
    font-size: 16px;
    font-weight: 900;
    text-decoration: none;
    cursor: pointer;
    transition: 0.22s ease;
}

.cases-main-btn {
    border: none;
    background: linear-gradient(135deg, #234cff, #0b6cff);
    color: #ffffff;
    box-shadow: 0 18px 38px rgba(11, 108, 255, 0.26);
}

.cases-second-btn {
    border: 1px solid rgba(15, 23, 42, 0.08);
    background: rgba(255, 255, 255, 0.78);
    color: #111827;
    box-shadow: 0 14px 32px rgba(15, 23, 42, 0.06);
}

.cases-main-btn:hover,
.cases-second-btn:hover {
    transform: translateY(-3px);
}

/* FILTER */

.cases-filter {
    display: flex;
    gap: 14px;
    align-items: center;
    flex-wrap: wrap;
    margin-bottom: 26px;
}

.cases-filter button {
    height: 54px;
    padding: 0 24px;
    border: 1px solid rgba(15, 23, 42, 0.08);
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.82);
    color: #4d5564;
    font-family: inherit;
    font-size: 15px;
    font-weight: 800;
    cursor: pointer;
    box-shadow: 0 14px 32px rgba(15, 23, 42, 0.06);
    transition: 0.22s ease;
}

.cases-filter button:hover {
    transform: translateY(-2px);
    color: #0b6cff;
}

.cases-filter button.active {
    background: linear-gradient(135deg, #234cff, #0b6cff);
    color: #ffffff;
    border-color: transparent;
    box-shadow: 0 18px 38px rgba(11, 108, 255, 0.24);
}

/* GRID */

.cases-grid {
    display: grid;
    grid-template-columns: minmax(520px, 1.15fr) minmax(300px, 0.92fr) minmax(300px, 0.92fr);
    gap: 22px;
    align-items: stretch;
}

.case-card {
    position: relative;
    overflow: hidden;
    border-radius: 26px;
    border: 1px solid rgba(15, 23, 42, 0.08);
    background: rgba(255, 255, 255, 0.88);
    box-shadow: 0 22px 60px rgba(15, 23, 42, 0.08);
    backdrop-filter: blur(16px);
    transition: 0.26s ease;
}

.case-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 30px 80px rgba(15, 23, 42, 0.12);
}

.case-card.case-hidden {
    display: none;
}

/* BIG CASE */

.case-card-large {
    position: relative;
    min-height: 640px;
    grid-row: span 2;
    display: block;
    overflow: hidden;
    background:
        radial-gradient(circle at 8% 88%, rgba(255, 121, 168, 0.20), transparent 38%),
        linear-gradient(135deg, #fff5f8 0%, #ffffff 52%, #fff1f4 100%);
}

.case-popular {
    position: absolute;
    left: 28px;
    top: 28px;
    z-index: 8;
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 8px 12px;
    border-radius: 999px;
    background: rgba(255, 230, 238, 0.92);
    color: #ef3f6b;
    font-size: 12px;
    font-weight: 900;
}

.case-large-content {
    position: relative;
    z-index: 6;
    width: 46%;
    min-height: 640px;
    padding: 96px 34px 34px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.case-logo-text {
    margin-bottom: 28px;
    color: #111827;
    font-size: 24px;
    line-height: 1.12;
    font-weight: 900;
}

.case-card h3 {
    margin: 0 0 8px;
    color: #111827;
    font-size: 26px;
    line-height: 1.14;
    letter-spacing: -0.04em;
    font-weight: 900;
}

.case-card-large h3 {
    font-size: 42px;
    line-height: 1.02;
}

.case-type {
    margin: 0 0 20px;
    color: #315cff;
    font-size: 16px;
    font-weight: 800;
}

.case-description,
.case-card-body p {
    margin: 0 0 22px;
    color: #5f6878;
    font-size: 15px;
    line-height: 1.6;
    font-weight: 600;
}

.case-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 9px;
    margin-top: auto;
    margin-bottom: 24px;
}

.case-tags span {
    padding: 7px 12px;
    border-radius: 999px;
    background: rgba(11, 108, 255, 0.08);
    color: #315cff;
    font-size: 12px;
    font-weight: 800;
}

.case-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #315cff;
    text-decoration: none;
    font-size: 14px;
    font-weight: 900;
}

.case-link span {
    font-size: 20px;
    line-height: 1;
    transition: 0.2s ease;
}

.case-link:hover span {
    transform: translateX(4px);
}

/* PHONE ABSOLUTE */

.case-large-image {
    position: absolute;
    z-index: 4;
    right: -38px;
    bottom: -18px;

    width: 62%;
    height: 94%;

    padding: 0;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    overflow: visible;
    pointer-events: none;
}

.case-large-image img {
    display: block;
    width: auto;
    height: 100%;
    max-height: 680px;
    max-width: none;
    object-fit: contain;
    object-position: bottom center;
    filter: drop-shadow(0 34px 44px rgba(15, 23, 42, 0.22));
}

/* SMALL CARDS */
/* SMALL CARDS */

.case-card-small {
    min-height: 420px;
    display: flex;
    flex-direction: column;
}

.case-image {
    height: 440px;
    padding: 0;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.35);
}

.case-image img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

/* если нужно управлять конкретной картинкой */
.case-card-blue .case-image img {
    object-position: center;
}

.case-card-gray .case-image img {
    object-position: center;
}

.case-card-orange .case-image img {
    object-position: center;
}

.case-card-green .case-image img {
    object-position: center;
}

.case-card-body {
    flex: 1;
    padding: 22px 24px 24px;
    display: flex;
    flex-direction: column;
}

.case-card-small h3 {
    font-size: 24px;
}

.case-card-body .case-tags {
    margin-top: auto;
}

/* ADAPTIVE */

@media (max-width: 1180px) {
    .cases-section .container {
        width: min(100% - 48px, 1180px);
    }

    .cases-head {
        grid-template-columns: 1fr;
    }

    .cases-grid {
        grid-template-columns: 1fr 1fr;
    }

    .case-card-large {
        grid-column: 1 / -1;
        min-height: 580px;
    }

    .case-large-content {
        width: 48%;
        min-height: 580px;
    }

    .case-large-image {
        right: 0;
        bottom: -12px;
        width: 56%;
        height: 90%;
    }

    .case-large-image img {
        max-height: 560px;
    }
}

@media (max-width: 760px) {
    .cases-section {
        padding: 72px 0 84px;
    }

    .cases-section .container {
        width: min(100% - 28px, 1180px);
    }

    .cases-head h2 {
        font-size: 48px;
    }

    .cases-head p {
        font-size: 16px;
    }

    .cases-actions {
        width: 100%;
    }

    .cases-main-btn,
    .cases-second-btn {
        width: 100%;
    }

    .cases-filter {
        gap: 10px;
        overflow-x: auto;
        flex-wrap: nowrap;
        padding-bottom: 8px;
    }

    .cases-filter button {
        flex: 0 0 auto;
        height: 48px;
        padding: 0 18px;
        font-size: 13px;
    }

    .cases-grid {
        grid-template-columns: 1fr;
    }

    .case-card-large {
        min-height: auto;
        display: flex;
        flex-direction: column;
    }

    .case-large-content {
        width: 100%;
        min-height: auto;
        padding: 88px 24px 24px;
    }

    .case-card-large h3 {
        font-size: 32px;
    }

    .case-large-image {
        position: relative;
        right: auto;
        bottom: auto;
        width: 100%;
        height: auto;
        padding: 0 24px 24px;
    }

    .case-large-image img {
        width: min(100%, 330px);
        height: auto;
        max-height: none;
    }

    .case-card-small {
        min-height: auto;
    }

    .case-image {
        height: 220px;
        padding: 0;
    }

    .case-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center;
    }

    .case-card-body {
        padding: 20px;
    }
}
/* =========================
   CONTACTS PAGE
========================= */

.contacts-page {
    overflow: hidden;
}

.contacts-hero {
    position: relative;
    padding: 150px 0 90px;
    background:
        radial-gradient(circle at 14% 26%, rgba(11, 108, 255, 0.10), transparent 28%),
        radial-gradient(circle at 86% 52%, rgba(168, 85, 247, 0.10), transparent 30%),
        linear-gradient(180deg, #f8fbff 0%, #ffffff 100%);
}

.contacts-hero::before,
.contacts-form-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(11, 108, 255, 0.035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(11, 108, 255, 0.035) 1px, transparent 1px);
    background-size: 54px 54px;
    pointer-events: none;
    mask-image: linear-gradient(to bottom, transparent, black 12%, black 84%, transparent);
}

.contacts-layout {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(420px, 520px);
    gap: 64px;
    align-items: center;
}

.contacts-content {
    max-width: 760px;
}

.contacts-badge {
    width: fit-content;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 20px;
    padding: 8px 14px;
    border-radius: 999px;
    background: rgba(11, 108, 255, 0.10);
    color: #0b6cff;
    font-size: 13px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.contacts-badge span {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #0b6cff;
}

.contacts-content h1 {
    margin: 0 0 22px;
    color: #0f172a;
    font-size: clamp(48px, 6vw, 66px);
    line-height: 0.98;
    letter-spacing: -0.07em;
    font-weight: 900;
}

.contacts-content h1 span {
    display: block;
    color: #0b6cff;
}

.contacts-content p {
    max-width: 680px;
    margin: 0 0 32px;
    color: #5f6878;
    font-size: 20px;
    line-height: 1.6;
    font-weight: 500;
}

.contacts-actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

.contacts-main-btn,
.contacts-second-btn {
    min-height: 58px;
    padding: 0 24px;
    border-radius: 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 11px;
    text-decoration: none;
    font-size: 15px;
    font-weight: 900;
    transition: 0.22s ease;
}

.contacts-main-btn {
    background: linear-gradient(135deg, #0b6cff, #2485ff);
    color: #ffffff;
    box-shadow: 0 18px 38px rgba(11, 108, 255, 0.24);
}

.contacts-second-btn {
    background: rgba(255, 255, 255, 0.78);
    color: #111827;
    border: 1px solid rgba(15, 23, 42, 0.08);
    box-shadow: 0 14px 32px rgba(15, 23, 42, 0.06);
}

.contacts-main-btn:hover,
.contacts-second-btn:hover {
    transform: translateY(-3px);
}

.contacts-card {
    overflow: hidden;
    border-radius: 28px;
    border: 1px solid rgba(15, 23, 42, 0.09);
    background: rgba(255, 255, 255, 0.90);
    box-shadow: 0 30px 80px rgba(15, 23, 42, 0.12);
    backdrop-filter: blur(18px);
}

.contacts-window-top {
    height: 58px;
    padding: 0 18px;
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 14px;
    align-items: center;
    background: linear-gradient(180deg, #f9fafb 0%, #eef2f7 100%);
    border-bottom: 1px solid rgba(15, 23, 42, 0.08);
}

.contacts-window-dots {
    display: flex;
    gap: 8px;
}

.contacts-window-dots span {
    width: 13px;
    height: 13px;
    border-radius: 50%;
}

.dot-red {
    background: #ff5f57;
}

.dot-yellow {
    background: #febc2e;
}

.dot-green {
    background: #28c840;
}

.contacts-window-title {
    justify-self: center;
    max-width: 260px;
    height: 34px;
    padding: 0 18px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.86);
    border: 1px solid rgba(15, 23, 42, 0.07);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #7b8494;
    font-size: 13px;
    font-weight: 700;
}

.contacts-card-body {
    padding: 34px;
}

.contact-person {
    display: flex;
    align-items: center;
    gap: 18px;
    margin-bottom: 28px;
}

.contact-avatar {
    width: 68px;
    height: 68px;
    flex: 0 0 68px;
    border-radius: 22px;
    background: linear-gradient(135deg, #0b6cff, #68a8ff);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    font-weight: 900;
    box-shadow: 0 18px 34px rgba(11, 108, 255, 0.28);
}

.contact-person h2 {
    margin: 0 0 5px;
    color: #111827;
    font-size: 25px;
    line-height: 1.15;
    font-weight: 900;
    letter-spacing: -0.04em;
}

.contact-person p {
    margin: 0;
    color: #6b7280;
    font-size: 14px;
    font-weight: 700;
}

.contact-list {
    display: grid;
    gap: 14px;
}

.contact-item {
    padding: 18px;
    display: flex;
    align-items: center;
    gap: 16px;
    border-radius: 18px;
    background: #f8fbff;
    border: 1px solid rgba(15, 23, 42, 0.06);
    text-decoration: none;
    transition: 0.22s ease;
}

.contact-item:hover {
    background: #ffffff;
    transform: translateY(-3px);
    box-shadow: 0 18px 38px rgba(15, 23, 42, 0.08);
}

.contact-icon {
    width: 48px;
    height: 48px;
    flex: 0 0 48px;
    border-radius: 16px;
    background: rgba(11, 108, 255, 0.10);
    color: #0b6cff;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-icon-whatsapp {
    background: rgba(37, 211, 102, 0.12);
    color: #16b857;
}

.contact-icon svg {
    width: 24px;
    height: 24px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2.2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.contact-icon-whatsapp svg {
    fill: currentColor;
    stroke: none;
}

.contact-item span {
    display: block;
    margin-bottom: 4px;
    color: #8a94a6;
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.contact-item strong {
    display: block;
    color: #111827;
    font-size: 16px;
    line-height: 1.3;
    font-weight: 900;
}

/* FORM SECTION */

.contacts-form-section {
    position: relative;
    overflow: hidden;
    padding: 90px 0 110px;
    background:
        radial-gradient(circle at 82% 36%, rgba(11, 108, 255, 0.08), transparent 30%),
        linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
}

.contacts-form-layout {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(420px, 1.1fr);
    gap: 56px;
    align-items: start;
}

.contacts-form-info h2 {
    margin: 0 0 18px;
    color: #111827;
    font-size: clamp(38px, 4vw, 60px);
    line-height: 1.05;
    letter-spacing: -0.06em;
    font-weight: 900;
}

.contacts-form-info h2 span {
    display: block;
    color: #0b6cff;
}

.contacts-form-info p {
    max-width: 560px;
    margin: 0;
    color: #5f6878;
    font-size: 18px;
    line-height: 1.6;
    font-weight: 500;
}

.contact-page-form {
    display: grid;
    gap: 16px;
    padding: 34px;
    border-radius: 28px;
    background: rgba(255, 255, 255, 0.86);
    border: 1px solid rgba(15, 23, 42, 0.08);
    box-shadow: 0 28px 80px rgba(15, 23, 42, 0.08);
    backdrop-filter: blur(18px);
}

.contact-form-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
}

.contact-page-form label {
    display: grid;
    gap: 8px;
}

.contact-page-form label span {
    color: #344054;
    font-size: 13px;
    font-weight: 800;
}

.contact-page-form input,
.contact-page-form textarea {
    width: 100%;
    border: 1px solid rgba(15, 23, 42, 0.10);
    border-radius: 14px;
    background: #f8fafc;
    color: #111827;
    font-family: inherit;
    font-size: 15px;
    font-weight: 600;
    outline: none;
    transition: 0.2s ease;
}

.contact-page-form input {
    height: 52px;
    padding: 0 16px;
}

.contact-page-form textarea {
    min-height: 118px;
    padding: 15px 16px;
    resize: vertical;
}

.contact-page-form input:focus,
.contact-page-form textarea:focus {
    background: #ffffff;
    border-color: rgba(11, 108, 255, 0.34);
    box-shadow: 0 0 0 4px rgba(11, 108, 255, 0.08);
}

.contact-form-submit {
    height: 58px;
    border: none;
    border-radius: 16px;
    background: linear-gradient(135deg, #0b6cff, #2485ff);
    color: #ffffff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-family: inherit;
    font-size: 16px;
    font-weight: 900;
    cursor: pointer;
    box-shadow: 0 18px 38px rgba(11, 108, 255, 0.24);
    transition: 0.22s ease;
}

.contact-form-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 24px 48px rgba(11, 108, 255, 0.30);
}

.contact-form-submit:disabled {
    opacity: 0.65;
    cursor: not-allowed;
    transform: none;
}

.contact-form-message {
    display: none;
    padding: 13px 15px;
    border-radius: 14px;
    font-size: 14px;
    line-height: 1.4;
    font-weight: 700;
}

.contact-form-message.active {
    display: block;
}

.contact-form-message.success {
    background: rgba(34, 197, 94, 0.10);
    color: #15803d;
    border: 1px solid rgba(34, 197, 94, 0.18);
}

.contact-form-message.error {
    background: rgba(239, 68, 68, 0.10);
    color: #b91c1c;
    border: 1px solid rgba(239, 68, 68, 0.18);
}

/* ADAPTIVE */

@media (max-width: 1020px) {
    .contacts-layout,
    .contacts-form-layout {
        grid-template-columns: 1fr;
    }

    .contacts-content,
    .contacts-form-info {
        text-align: center;
        margin: 0 auto;
    }

    .contacts-badge {
        margin-left: auto;
        margin-right: auto;
    }

    .contacts-content p,
    .contacts-form-info p {
        margin-left: auto;
        margin-right: auto;
    }

    .contacts-actions {
        justify-content: center;
    }

    .contacts-card,
    .contact-page-form {
        max-width: 720px;
        width: 100%;
        margin: 0 auto;
    }
}

@media (max-width: 640px) {
    .contacts-hero {
        padding: 110px 0 64px;
    }

    .contacts-content h1 {
        font-size: 42px;
    }

    .contacts-content p {
        font-size: 16px;
    }

    .contacts-actions {
        width: 100%;
    }

    .contacts-main-btn,
    .contacts-second-btn {
        width: 100%;
    }

    .contacts-card {
        border-radius: 22px;
    }

    .contacts-window-top {
        height: 52px;
        padding: 0 12px;
    }

    .contacts-window-title {
        max-width: 210px;
        height: 30px;
        font-size: 11px;
        padding: 0 10px;
    }

    .contacts-card-body {
        padding: 22px;
    }

    .contact-person {
        align-items: flex-start;
    }

    .contact-avatar {
        width: 58px;
        height: 58px;
        flex-basis: 58px;
        border-radius: 18px;
        font-size: 19px;
    }

    .contact-person h2 {
        font-size: 22px;
    }

    .contact-item {
        padding: 15px;
        align-items: flex-start;
    }

    .contact-item strong {
        font-size: 14px;
        word-break: break-word;
    }

    .contacts-form-section {
        padding: 64px 0 76px;
    }

    .contacts-form-info h2 {
        font-size: 34px;
    }

    .contacts-form-info p {
        font-size: 15px;
    }

    .contact-page-form {
        padding: 22px;
        border-radius: 22px;
    }

    .contact-form-grid {
        grid-template-columns: 1fr;
    }
}
/* =========================
   LEGAL PAGES
========================= */

.legal-page {
    overflow: hidden;
}

.legal-hero {
    position: relative;
    overflow: hidden;
    padding: 150px 0 80px;
    background:
        radial-gradient(circle at 14% 24%, rgba(11, 108, 255, 0.10), transparent 28%),
        radial-gradient(circle at 84% 46%, rgba(168, 85, 247, 0.10), transparent 30%),
        linear-gradient(180deg, #f8fbff 0%, #ffffff 100%);
}

.legal-hero::before,
.legal-content-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(11, 108, 255, 0.035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(11, 108, 255, 0.035) 1px, transparent 1px);
    background-size: 54px 54px;
    pointer-events: none;
    mask-image: linear-gradient(to bottom, transparent, black 12%, black 84%, transparent);
}

.legal-container {
    position: relative;
    z-index: 2;
    max-width: 980px;
}

.legal-badge {
    width: fit-content;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 20px;
    padding: 8px 14px;
    border-radius: 999px;
    background: rgba(11, 108, 255, 0.10);
    color: #0b6cff;
    font-size: 13px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.legal-badge span {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #0b6cff;
}

.legal-hero h1 {
    margin: 0 0 22px;
    color: #0f172a;
    font-size: clamp(42px, 6vw, 78px);
    line-height: 0.98;
    letter-spacing: -0.07em;
    font-weight: 900;
}

.legal-hero p {
    max-width: 860px;
    margin: 0 0 24px;
    color: #5f6878;
    font-size: 20px;
    line-height: 1.6;
    font-weight: 500;
}

.legal-date {
    width: fit-content;
    padding: 10px 14px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.78);
    border: 1px solid rgba(15, 23, 42, 0.08);
    color: #667085;
    font-size: 13px;
    font-weight: 800;
}

.legal-content-section {
    position: relative;
    overflow: hidden;
    padding: 70px 0 100px;
    background:
        radial-gradient(circle at 86% 24%, rgba(11, 108, 255, 0.06), transparent 30%),
        linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
}

.legal-content {
    position: relative;
    z-index: 2;
    max-width: 980px;
}

.legal-card {
    padding: 44px;
    border-radius: 30px;
    background: rgba(255, 255, 255, 0.88);
    border: 1px solid rgba(15, 23, 42, 0.08);
    box-shadow: 0 28px 80px rgba(15, 23, 42, 0.08);
    backdrop-filter: blur(18px);
}

.legal-card h2 {
    margin: 34px 0 14px;
    color: #111827;
    font-size: 26px;
    line-height: 1.18;
    letter-spacing: -0.04em;
    font-weight: 900;
}

.legal-card h2:first-child {
    margin-top: 0;
}

.legal-card p {
    margin: 0 0 16px;
    color: #4f5b6d;
    font-size: 16px;
    line-height: 1.75;
    font-weight: 500;
}

.legal-card ul {
    margin: 0 0 18px;
    padding-left: 22px;
    color: #4f5b6d;
}

.legal-card li {
    margin-bottom: 9px;
    font-size: 16px;
    line-height: 1.6;
    font-weight: 500;
}

.legal-card a {
    color: #0b6cff;
    font-weight: 800;
    text-decoration: none;
}

.legal-card a:hover {
    text-decoration: underline;
}

.legal-contact-box {
    margin: 18px 0 8px;
    padding: 20px;
    display: grid;
    gap: 10px;
    border-radius: 20px;
    background: #f8fbff;
    border: 1px solid rgba(15, 23, 42, 0.08);
}

.legal-contact-box a,
.legal-contact-box span {
    width: fit-content;
    color: #111827;
    font-size: 16px;
    line-height: 1.35;
    font-weight: 800;
    text-decoration: none;
}

.legal-contact-box a:hover {
    color: #0b6cff;
}

@media (max-width: 760px) {
    .legal-hero {
        padding: 112px 0 56px;
    }

    .legal-hero h1 {
        font-size: 40px;
    }

    .legal-hero p {
        font-size: 16px;
    }

    .legal-content-section {
        padding: 48px 0 74px;
    }

    .legal-card {
        padding: 24px;
        border-radius: 24px;
    }

    .legal-card h2 {
        font-size: 22px;
        margin-top: 28px;
    }

    .legal-card p,
    .legal-card li {
        font-size: 14px;
    }
}
.lead-telegram-text-link {
    width: fit-content;
    margin-top: 12px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #229ED9;
    text-decoration: none;
    font-size: 14px;
    line-height: 1.3;
    font-weight: 800;
    transition: 0.2s ease;
}

.lead-telegram-text-link svg {
    width: 18px;
    height: 18px;
    flex: 0 0 18px;
    fill: currentColor;
}

.lead-telegram-text-link:hover {
    color: #0b6cff;
    transform: translateX(3px);
}

.lead-telegram-text-link:hover span {
    text-decoration: underline;
}
/* =========================
   INSTAGRAM TARGET SECTION
========================= */

.target-section {
    position: relative;
    overflow: hidden;
    padding: 110px 0 100px;
    background:
        radial-gradient(circle at 16% 20%, rgba(255, 122, 89, 0.08), transparent 28%),
        radial-gradient(circle at 82% 34%, rgba(217, 70, 239, 0.10), transparent 30%),
        radial-gradient(circle at 86% 78%, rgba(124, 58, 237, 0.08), transparent 28%),
        linear-gradient(180deg, #ffffff 0%, #fff8fb 52%, #ffffff 100%);
}

.target-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(168, 85, 247, 0.025) 1px, transparent 1px),
        linear-gradient(90deg, rgba(168, 85, 247, 0.025) 1px, transparent 1px);
    background-size: 54px 54px;
    pointer-events: none;
    mask-image: linear-gradient(to bottom, transparent, black 14%, black 84%, transparent);
}

.target-section .container {
    position: relative;
    z-index: 2;
}

.target-layout {
    display: grid;
    grid-template-columns: minmax(0, 0.92fr) minmax(520px, 1.08fr);
    gap: 64px;
    align-items: center;
}

.target-content {
    position: relative;
    z-index: 5;
    max-width: 680px;
}

.target-badge {
    width: fit-content;
    margin-bottom: 28px;
    padding: 12px 25px;
    border-radius: 999px;
    border: 2px solid rgba(168, 85, 247, 0.45);
    background: rgba(255, 255, 255, 0.68);
    color: #d946ef;
    font-size: 13px;
    line-height: 1;
    font-weight: 900;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    box-shadow: 0 16px 36px rgba(217, 70, 239, 0.08);
}

.target-content h2 {
    margin: 0 0 26px;
    color: #111827;
    font-size: clamp(42px, 4.8vw, 30px);
    line-height: 1.08;
    letter-spacing: -0.06em;
    font-weight: 900;
}

.target-content h2 span {
    display: block;
}

.target-content p {
    max-width: 640px;
    margin: 0 0 28px;
    color: #5f6878;
    font-size: 20px;
    line-height: 1.58;
    font-weight: 500;
}

.target-checklist {
    max-width: 560px;
    display: grid;
    gap: 17px;
    margin-bottom: 30px;
    padding: 26px 28px;
    border-radius: 26px;
    background: rgba(255, 255, 255, 0.82);
    border: 1px solid rgba(15, 23, 42, 0.08);
    box-shadow: 0 24px 65px rgba(15, 23, 42, 0.08);
    backdrop-filter: blur(16px);
}

.target-checklist div {
    position: relative;
    min-height: 30px;
    display: flex;
    align-items: center;
    padding-left: 46px;
    color: #2f3747;
    font-size: 17px;
    line-height: 1.35;
    font-weight: 700;
}

.target-checklist div::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 50%;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    color: #ffffff;
    font-size: 14px;
    font-weight: 900;
    background: linear-gradient(135deg, #ff6b4a, #e238d7, #7c3aed);
    box-shadow: 0 10px 22px rgba(217, 70, 239, 0.22);
    transform: translateY(-50%);
}

.target-buttons {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}

.target-btn-main,
.target-btn-second {
    min-height: 58px;
    padding: 0 28px;
    border-radius: 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: inherit;
    font-size: 15px;
    font-weight: 900;
    text-decoration: none;
    cursor: pointer;
    transition: 0.22s ease;
}

.target-btn-main {
    border: none;
    color: #ffffff;
    background: linear-gradient(135deg, #ff6b4a, #d946ef, #7c3aed);
    box-shadow: 0 20px 44px rgba(217, 70, 239, 0.26);
}

.target-btn-second {
    color: #111827;
    background: rgba(255, 255, 255, 0.78);
    border: 1px solid rgba(168, 85, 247, 0.28);
    box-shadow: 0 16px 36px rgba(15, 23, 42, 0.06);
}

.target-btn-main:hover,
.target-btn-second:hover {
    transform: translateY(-3px);
}

/* Visual */

.target-visual {
    position: relative;
    min-height: 720px;
}

.target-soft-glow {
    position: absolute;
    right: 6%;
    top: 8%;
    width: 560px;
    height: 560px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(217, 70, 239, 0.12), rgba(255, 122, 89, 0.08), transparent 68%);
    filter: blur(20px);
}

.target-phone {
    position: absolute;
    z-index: 5;
    left: 3%;
    top: -8px;
    width: 560px;
    height: auto;
    filter: drop-shadow(0 36px 46px rgba(15, 23, 42, 0.22));
}

.target-stat-card {
    position: absolute;
    z-index: 6;
    left: -5%;
    top: 150px;
    width: 210px;
    height: auto;
    filter: drop-shadow(0 24px 42px rgba(15, 23, 42, 0.12));
}
.target-instagram-icon {
    position: absolute;
    z-index: 7;
    right: 6%;
    top: 92px;
    width: 132px;
    height: auto;
    filter: drop-shadow(0 20px 34px rgba(217, 70, 239, 0.26));
}

.target-work-card {
    position: absolute;
    z-index: 6;
    right: 0;
    top: 260px;
    width: 230px;
    height: auto;
    filter: drop-shadow(0 24px 44px rgba(15, 23, 42, 0.13));
}

.target-lead-card {
    position: absolute;
    z-index: 6;
    right: 2%;
    bottom: 190px;
    width: 270px;
    height: auto;
    filter: drop-shadow(0 24px 44px rgba(15, 23, 42, 0.13));
}
/* Bottom panel */

.target-bottom-panel {
    position: relative;
    z-index: 10;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    margin-top: 20px;
    padding: 22px 28px;
    border-radius: 28px;
    background: rgba(255, 255, 255, 0.84);
    border: 1px solid rgba(15, 23, 42, 0.08);
    box-shadow: 0 28px 80px rgba(15, 23, 42, 0.08);
    backdrop-filter: blur(18px);
}

.target-bottom-item {
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 0 28px;
    border-right: 1px solid rgba(15, 23, 42, 0.08);
}

.target-bottom-item:first-child {
    padding-left: 0;
}

.target-bottom-item:last-child {
    border-right: none;
    padding-right: 0;
}

.target-bottom-icon {
    width: 58px;
    height: 58px;
    flex: 0 0 58px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 18px;
    background: linear-gradient(135deg, rgba(217, 70, 239, 0.10), rgba(255, 122, 89, 0.08));
}

.target-bottom-icon img {
    width: 32px;
    height: 32px;
    object-fit: contain;
}

.target-bottom-item h3 {
    margin: 0 0 5px;
    color: #111827;
    font-size: 17px;
    line-height: 1.2;
    font-weight: 900;
}

.target-bottom-item p {
    margin: 0;
    color: #7b8494;
    font-size: 14px;
    line-height: 1.35;
    font-weight: 600;
}

/* Adaptive */

@media (max-width: 1180px) {
    .target-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .target-content {
        max-width: 860px;
        margin: 0 auto;
        text-align: center;
    }

    .target-badge {
        margin-left: auto;
        margin-right: auto;
    }

    .target-content p {
        margin-left: auto;
        margin-right: auto;
    }

    .target-checklist {
        margin-left: auto;
        margin-right: auto;
        text-align: left;
    }

    .target-buttons {
        justify-content: center;
    }

    .target-visual {
        width: 100%;
        max-width: 760px;
        min-height: 680px;
        margin: 0 auto;
    }

    .target-phone {
        left: 50%;
        transform: translateX(-50%);
    }

    .target-stat-card {
        left: 0;
    }

    .target-instagram-icon {
        right: 40px;
    }

    .target-work-card {
        right: 0;
    }

    .target-lead-card {
        right: 20px;
    }

    .target-bottom-panel {
        grid-template-columns: repeat(2, 1fr);
        row-gap: 24px;
        margin-top: 20px;
    }

    .target-bottom-item:nth-child(2) {
        border-right: none;
    }

    .target-bottom-item:nth-child(3) {
        padding-left: 0;
    }
}

@media (max-width: 640px) {
    .target-section {
        padding: 72px 0 78px;
    }

    .target-content h2 {
        font-size: 35px;
        line-height: 1.1;
    }

    .target-content p {
        font-size: 16px;
    }

    .target-checklist {
        padding: 22px;
        border-radius: 22px;
    }

    .target-checklist div {
        font-size: 14px;
        padding-left: 40px;
    }

    .target-buttons {
        width: 100%;
    }

    .target-btn-main,
    .target-btn-second {
        width: 100%;
    }

    .target-visual {
        min-height: 560px;
    }

    .target-phone {
        width: 950px;
        top: 40px;
    }

    .target-stat-card {
        width: 132px;
        left: 0;
        top: 116px;
    }

    .target-instagram-icon {
        width: 82px;
        right: 8px;
        top: 60px;
    }

    .target-work-card {
        width: 148px;
        right: 0;
        top: 250px;
    }

    .target-lead-card {
        width: 182px;
        right: 0;
        bottom: 70px;
    }

    .target-bottom-panel {
        grid-template-columns: 1fr;
        padding: 12px;
        border-radius: 22px;
    }

    .target-bottom-item,
    .target-bottom-item:first-child,
    .target-bottom-item:last-child {
        padding: 16px 10px;
        border-right: none;
        border-bottom: 1px solid rgba(15, 23, 42, 0.08);
    }

    .target-bottom-item:last-child {
        border-bottom: none;
    }
}
.full-header__logo {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
    flex: 0 0 auto;
}

.full-header__logo-img {
    display: block;
    width: auto;
    height: 42px;
    object-fit: contain;
}
@media (max-width: 640px) {
    .full-header__logo-img {
        height: 36px;
    }
}
.footer-logo {
    display: inline-flex;
    align-items: center;
    width: fit-content;
    text-decoration: none;
}

.footer-logo-img {
    display: block;
    width: auto;
    height: 94px;
    object-fit: contain;
}
@media (max-width: 640px) {
    .footer-logo-img {
        height: 38px;
    }
}