* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: Inter, Arial, sans-serif;
    color: #111827;
    background: #f8f9ff;
}

a {
    color: inherit;
    text-decoration: none;
}

button,
input,
textarea {
    font-family: inherit;
}

button {
    border: none;
    cursor: pointer;
}

img {
    max-width: 100%;
    display: block;
}

.site-page {
    min-height: 100vh;
    overflow: hidden;
    background:
        radial-gradient(circle at 78% 8%, rgba(128, 108, 255, 0.20), transparent 28%),
        radial-gradient(circle at 85% 48%, rgba(153, 170, 255, 0.18), transparent 26%),
        linear-gradient(180deg, #fbfcff 0%, #f6f7ff 45%, #ffffff 100%);
}

.container {
    width: min(100% - 40px, 1500px);
    margin: 0 auto;
}

.section {
    padding: 80px 0;
}

.header {
    position: relative;
    z-index: 20;
    background: rgba(255, 255, 255, 0.96);
    border-bottom: 1px solid rgba(17, 24, 39, 0.08);
}

.header-inner {
    height: 66px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 34px;
}

.header-logo {
    flex-shrink: 0;
    font-size: 21px;
    font-weight: 700;
    letter-spacing: -0.04em;
    color: #111827;
    max-width: 150px;
    max-height: 110px;
    display: inline-flex;
    align-items: center;
}

.header-logo::after {
    content: "";
    width: 5px;
    height: 5px;
    margin-left: 5px;
    margin-top: 8px;
    border-radius: 50%;
    background: #7c5cff;
}

.header-nav {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 36px;
}

.header-nav a {
    font-size: 13px;
    font-weight: 500;
    color: #4b5563;
    transition: color 0.2s ease;
}

.header-nav a:hover {
    color: #111827;
}

.header-button {
    flex-shrink: 0;
    min-height: 38px;
    padding: 0 18px;
    border-radius: 12px;
    background: #070b18;
    color: #ffffff;
    font-size: 13px;
    font-weight: 400;

    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;

    box-shadow: 0 12px 28px rgba(7, 11, 24, 0.18);
    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease,
        background 0.2s ease;
}

.header-button:hover {
    transform: translateY(-1px);
    background: #111827;
    box-shadow: 0 16px 34px rgba(7, 11, 24, 0.24);
}

.header-button span {
    font-size: 14px;
    line-height: 1;
}

.header-burger {
    display: none;
    width: 38px;
    height: 38px;
    border-radius: 8px;
    background: #070b18;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
    z-index: 60;
}

.header-burger span {
    width: 17px;
    height: 1.5px;
    background: #ffffff;
    border-radius: 999px;
}


.hero {
    position: relative;
    min-height: 640px;
    padding: 74px 0 32px;
    overflow: hidden;
    background: #fbfcff;
}

.hero::before {
    content: "";
    position: absolute;
    top: 45px;
    right: 0px;

    width: 1280px;
    height: 760px;

    background-image: url("Resources/1.jpg");
    background-repeat: no-repeat;
    background-position: center top;
    background-size: cover;

    z-index: 0;
    pointer-events: none;

     -webkit-mask-image: linear-gradient(
    to bottom,
    transparent 0%,
    black 18%,
    black 78%,
    transparent 100%
);
mask-image: linear-gradient(
    to bottom,
    transparent 0%,
    black 18%,
    black 78%,
    transparent 100%
);
}

.hero .container {
    position: relative;
    z-index: 1;
}

.hero-content {
    max-width: 610px;
    position: relative;
    z-index: 2;
}

.hero-label {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 28px;

    font-size: 14px;
    font-weight: 500;
    color: #5f6675;
}

.hero-label::before {
    content: "";
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: linear-gradient(135deg, #4f8cff, #8c5cff);
    box-shadow: 0 0 10px rgba(92, 115, 255, 0.35);
    flex-shrink: 0;
}

.hero-title {
    margin-bottom: 24px;

    font-size: clamp(39px, 4vw, 57px);
    line-height: 1.06;
    font-weight: 700;
    letter-spacing: -0.055em;
    color: #111827;
}

.hero-title span {
    background: linear-gradient(90deg, #4f8cff 0%, #7567ff 48%, #b66cff 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.hero-description {
    max-width: 610px;
    margin-bottom: 32px;

    font-size: 17px;
    line-height: 1.65;
    color: #5f6675;
}

.hero-actions {
    display: flex;
    align-items: center;
    gap: 18px;
    flex-wrap: wrap;
}

.hero-button {
    min-height: 48px;
    padding: 0 24px;
    border-radius: 12px;

    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;

    font-size: 14px;
    font-weight: 400;
    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease,
        background 0.2s ease;
}

.hero-button-dark {
    background: #070b18;
    color: #ffffff;
    box-shadow: 0 14px 32px rgba(7, 11, 24, 0.18);
}

.hero-button-dark:hover {
    background: #111827;
    transform: translateY(-1px);
    box-shadow: 0 18px 38px rgba(7, 11, 24, 0.24);
}

.hero-button-light {
    background: rgba(255, 255, 255, 0);
    color: #111827;
}

.hero-button-light:hover {
    background: #ffffff15;
    transform: translateY(-1px);
}

.hero-button span {
    font-size: 15px;
    line-height: 1;
}

.hero-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
    margin-top: 54px;
    position: relative;
    z-index: 2;
}

.service-card {
    width: calc((100% - 90px) / 6);
    min-width: 165px;
    padding: 18px 16px 20px;
    border-radius: 20px;

    background: rgba(255, 255, 255, 0.58);
    border: 1px solid rgba(132, 145, 180, 0.14);
    box-shadow: 0 12px 30px rgba(90, 105, 150, 0.08);
    backdrop-filter: blur(10px);

    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.service-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 18px 34px rgba(90, 105, 150, 0.12);
}

.service-card-icon {
    width: 34px;
    height: 34px;
    margin-bottom: 18px;
    border-radius: 12px;
    overflow: hidden;
    flex-shrink: 0;
}

.service-card-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

.service-card-title {
    margin-bottom: 10px;
    font-size: 16px;
    line-height: 1.25;
    font-weight: 600;
    color: #111827;
}

.service-card-text {
    font-size: 14px;
    line-height: 1.55;
    color: #6b7280;
}

.hero-trust {
    position: relative;
    z-index: 2;

    display: flex;
    align-items: center;
    gap: 54px;
    margin-top: 42px;
    padding-bottom: 10px;
}

.hero-trust-title {
    flex-shrink: 0;

    font-size: 15px;
    line-height: 1;
    font-weight: 500;
    color: #30363f;
}

.hero-trust-logos {
    flex: 1;

    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 42px;
    flex-wrap: wrap;
}

.hero-trust-logos img {
    max-height: 24px;
    max-width: 140px;
    object-fit: contain;

    opacity: 0.45;
    filter: grayscale(1);
}


.consulting {
    position: relative;
    padding: 74px 0 70px;
    overflow: hidden;
    background: linear-gradient(180deg, #f8f8ff 0%, #f3f4ff 100%);
}

.consulting::before,
.consulting::after {
    content: "";
    position: absolute;
    left: 0;
    width: 100%;
    height: 70px;
    pointer-events: none;
    z-index: 1;
}

.consulting::before {
    top: 0;
    background: linear-gradient(
        to bottom,
        #fbfbff 0%,
        rgba(255, 255, 255, 0) 100%
    );
}

.consulting::after {
    bottom: 0;
    background: linear-gradient(
        to top,
        #ffffff 0%,
        rgba(255, 255, 255, 0) 100%
    );
}
.consulting-inner {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 1fr) 360px;
    align-items: center;
    gap: 60px;
}

.consulting-content {
    position: relative;
    z-index: 2;
}

.consulting-title {
    max-width: 620px;
    margin-bottom: 14px;

    font-size: clamp(25px, 2.4vw, 34px);
    line-height: 1.18;
    font-weight: 700;
    letter-spacing: -0.035em;
    color: #111827;
}

.consulting-description {
    max-width: 520px;
    margin-bottom: 58px;

    font-size: 15px;
    line-height: 1.65;
    color: #697180;
}

.consulting-steps {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 34px;
}

.consulting-step {
    min-width: 0;
    min-height: 150px;

    display: flex;
    flex-direction: column;
}

.consulting-step h3 {
    margin-bottom: 10px;

    font-size: 15px;
    line-height: 1.35;
    font-weight: 700;
    color: #111827;
}

.consulting-step p {
    max-width: 180px;

    font-size: 13px;
    line-height: 1.55;
    color: #6b7280;
}

.consulting-step span {
    margin-top: auto;

    font-size: 13px;
    font-weight: 500;
    color: rgba(17, 24, 39, 0.34);
}

.consulting-visual {
    position: relative;
    z-index: 1;

    display: flex;
    align-items: center;
    justify-content: center;
}

.consulting-visual img {
    width: 320px;
    max-width: 100%;
    opacity: 0.82;
    filter: drop-shadow(0 24px 40px rgba(110, 100, 220, 0.18));
    pointer-events: none;
}

.section-label {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 18px;

    font-size: 13px;
    font-weight: 500;
    color: #697180;
}

.section-label::before {
    content: "";
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: linear-gradient(135deg, #6b8cff, #a06cff);
    box-shadow: 0 0 8px rgba(124, 92, 255, 0.25);
    flex-shrink: 0;
}

.process {
    padding: 80px 0 84px;
    background: #fbfcff;
}

.process-title {
    margin-bottom: 34px;

    font-size: clamp(30px, 3vw, 46px);
    line-height: 1.12;
    font-weight: 700;
    letter-spacing: -0.04em;
    color: #111827;
}

.process-list {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 14px;
}

.process-card {
    min-height: 190px;
    padding: 18px 18px 16px;
    border-radius: 14px;

    background: rgba(255, 255, 255, 0.82);
    border: 1px solid rgba(17, 24, 39, 0.06);
    box-shadow: 0 8px 24px rgba(80, 90, 130, 0.04);

    display: flex;
    flex-direction: column;
}

.process-card-icon {
    width: 32px;
    height: 32px;
    margin-bottom: 18px;
    flex-shrink: 0;
}

.process-card-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

.process-card-title {
    margin-bottom: 10px;

    font-size: 15px;
    line-height: 1.3;
    font-weight: 600;
    color: #111827;
}

.process-card-text {
    font-size: 13px;
    line-height: 1.55;
    color: #6b7280;
}

.process-card-bottom {
    margin-top: auto;

    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding-top: 24px;
}

.process-card-line {
    width: 18px;
    height: 1px;
    background: rgba(17, 24, 39, 0.22);
    flex-shrink: 0;
}

.process-card-number {
    font-size: 12px;
    font-weight: 500;
    color: rgba(17, 24, 39, 0.35);
}

.about {
    position: relative;
    padding: 82px 0 78px;
    background: #fbfcff;
    overflow: hidden;
}

.about::before {
    content: "";
    position: absolute;
    top: 40px;
    right: 0px;

    width: 1580px;
    height: 560px;

    background-image: url("Resources/2.jpg");
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;

    z-index: 0;
    pointer-events: none;

     -webkit-mask-image: linear-gradient(
    to bottom,
    transparent 0%,
    black 18%,
    black 78%,
    transparent 100%)
}
.about .container {
    position: relative;
    z-index: 2;
}

.about-top {
    display: grid;
    grid-template-columns: minmax(0, 520px) minmax(0, 1fr);
    align-items: center;
    gap: 56px;
    margin-bottom: 56px;
}

.about-content {
    position: relative;
    z-index: 2;
}

.about-title {
    margin-bottom: 24px;

    font-size: clamp(34px, 4vw, 48px);
    line-height: 1.12;
    font-weight: 700;
    letter-spacing: -0.05em;
    color: #111827;
}

.about-title span {
    background: linear-gradient(90deg, #4f8cff 0%, #7567ff 48%, #b66cff 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.about-description {
    max-width: 520px;

    font-size: 17px;
    line-height: 1.7;
    color: #697180;
}

.about-visual {
    position: relative;
    min-height: 310px;

    display: flex;
    align-items: center;
    justify-content: center;
}

.about-visual img {
    width: 100%;
    max-width: 670px;
    object-fit: contain;
    opacity: 0.9;
    pointer-events: none;
}

.about-cards {
    position: relative;
    z-index: 2;

    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
    margin-bottom: 16px;
}

.about-card {
    min-height: 220px;
    padding: 28px 26px 26px;
    border-radius: 20px;

    background: rgba(255, 255, 255, 0.82);
    border: 1px solid rgba(17, 24, 39, 0.06);
    box-shadow: 0 14px 34px rgba(80, 90, 130, 0.06);
}

.about-card-icon {
    width: 46px;
    height: 46px;
    margin-bottom: 28px;
    border-radius: 13px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: linear-gradient(135deg, #6e8cff 0%, #9c63ff 100%);
    color: #ffffff;
    font-size: 20px;
    box-shadow: 0 12px 22px rgba(124, 92, 255, 0.24);
}

.about-card-icon svg {
    width: 24px;
    height: 24px;
}

.about-card-icon svg path {
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.about-card h3 {
    margin-bottom: 14px;

    font-size: 20px;
    line-height: 1.25;
    font-weight: 700;
    color: #111827;
}

.about-card p {
    font-size: 16px;
    line-height: 1.6;
    color: #697180;
}

.about-features {
    position: relative;
    z-index: 2;

    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));

    border-radius: 18px;
    background: rgba(255, 255, 255, 0.82);
    border: 1px solid rgba(17, 24, 39, 0.06);
    box-shadow: 0 12px 28px rgba(80, 90, 130, 0.05);
    overflow: hidden;
}

.about-feature {
    min-height: 70px;
    padding: 0 28px;

    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;

    font-size: 18px;
    font-weight: 500;
    color: #374151;
}

.about-feature:not(:last-child) {
    border-right: 1px solid rgba(17, 24, 39, 0.07);
}

.about-feature span {
    width: 32px;
    height: 32px;
    border-radius: 50%;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    color: #8b6cff;
    font-size: 20px;
}

.cases {
    padding: 84px 0;
    background: #fbfcff;
}

.cases-top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 34px;
}

.cases-title {
    font-size: clamp(30px, 3vw, 46px);
    line-height: 1.12;
    font-weight: 700;
    letter-spacing: -0.04em;
    color: #111827;
}

.cases-all-link {
    flex-shrink: 0;
    margin-top: 30px;

    display: inline-flex;
    align-items: center;
    gap: 8px;

    font-size: 14px;
    font-weight: 500;
    color: #4b5563;
    transition: color 0.2s ease;
}

.cases-all-link:hover {
    color: #111827;
}

.cases-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.case-card {
    overflow: hidden;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.88);
    border: 1px solid rgba(17, 24, 39, 0.06);
    box-shadow: 0 10px 26px rgba(80, 90, 130, 0.05);
}

.case-card-image {
    height: 220px;
    overflow: hidden;
    background: #f3f4ff;
}

.case-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.case-card-body {
    padding: 18px 18px 20px;
}

.case-tag {
    display: inline-flex;
    align-items: center;
    min-height: 24px;
    padding: 0 10px;
    margin-bottom: 14px;
    border-radius: 999px;

    background: rgba(132, 105, 255, 0.10);
    color: #7b61ff;
    font-size: 12px;
    font-weight: 500;
}

.case-title {
    margin-bottom: 10px;

    font-size: 18px;
    line-height: 1.3;
    font-weight: 600;
    color: #111827;
}

.case-text {
    margin-bottom: 18px;

    font-size: 14px;
    line-height: 1.6;
    color: #6b7280;
}

.case-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;

    font-size: 14px;
    font-weight: 500;
    color: #7b61ff;
    transition: color 0.2s ease;
}

.case-link:hover {
    color: #5d46d8;
}

.cta {
    padding: 10px 0 80px;
    background: #fbfcff;
}

.cta-box {
    position: relative;
    overflow: hidden;

    min-height: 230px;
    padding: 44px 48px;
    border-radius: 22px;

     background:
        url("Resources/cta-bg.png") no-repeat right 10px center / 430px auto,
        linear-gradient(180deg, #cdc2fa 0%, #bfb0ff 100%);
    border: 1px solid rgba(17, 24, 39, 0.05);
}

.cta-content {
    position: relative;
    z-index: 2;
    max-width: 420px;
}

.cta-title {
    margin-bottom: 16px;

    font-size: clamp(30px, 3vw, 44px);
    line-height: 1.15;
    font-weight: 700;
    letter-spacing: -0.04em;
    color: #111827;
}

.cta-text {
    margin-bottom: 24px;

    font-size: 15px;
    line-height: 1.65;
    color: #697180;
}

.cta-button {
    min-height: 44px;
    padding: 0 18px;
    border-radius: 10px;

    display: inline-flex;
    align-items: center;
    gap: 9px;

    background: #070b18;
    color: #ffffff;
    font-size: 14px;
    font-weight: 400;

    box-shadow: 0 10px 24px rgba(7, 11, 24, 0.16);
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.cta-button:hover {
    background: #111827;
    transform: translateY(-1px);
    box-shadow: 0 14px 30px rgba(7, 11, 24, 0.22);
}

.cta-visual {
    position: relative;
    z-index: 1;
    flex-shrink: 0;
    width: 660px;
    height: 280px;

    background-image: url("Resources/cta-bg.png");
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;

}

.team-stats {
    padding: 28px 0 22px;
    background: #fbfcff;
}

.team-stats-inner {
    display: grid;
    grid-template-columns: minmax(0, 520px) minmax(0, 1fr);
    align-items: end;
    gap: 52px;
}

.team-stats-content {
    min-width: 0;
}

.team-stats-title {
    margin-bottom: 18px;

    font-size: clamp(22px, 3vw, 32px);
    line-height: 1.14;
    font-weight: 700;
    letter-spacing: -0.04em;
    color: #111827;
}

.team-stats-text {
    max-width: 500px;

    font-size: 15px;
    line-height: 1.7;
    color: #697180;
}

.team-stats-list {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 12px;
}

.team-stat-card {
    min-height: 112px;
    padding: 24px 22px;
    border-radius: 14px;

    background: rgba(255, 255, 255, 0.78);
    border: 1px solid rgba(17, 24, 39, 0.06);
    box-shadow: 0 10px 26px rgba(80, 90, 130, 0.045);

    display: flex;
    flex-direction: column;
    justify-content: center;
}

.team-stat-card strong {
    margin-bottom: 8px;

    font-size: 30px;
    line-height: 1;
    font-weight: 700;
    letter-spacing: -0.04em;

    background: linear-gradient(90deg, #5f8cff 0%, #8a63ff 65%, #b66cff 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.team-stat-card span {
    font-size: 13px;
    line-height: 1.45;
    color: #697180;
}

.footer {
    padding: 48px 0 28px;
    background: #fbfcff;
    border-top: 1px solid rgba(17, 24, 39, 0.06);
}

.footer-main {
    display: grid;
    grid-template-columns: minmax(0, 1.5fr) repeat(3, minmax(0, 1fr));
    gap: 54px;
    padding-bottom: 42px;
}

.footer-logo {
    display: inline-flex;
    align-items: center;
    margin-bottom: 18px;

    font-size: 22px;
    line-height: 1;
    font-weight: 700;
    letter-spacing: -0.045em;
    color: #111827;
}

.footer-logo::after {
    content: "";
    width: 5px;
    height: 5px;
    margin-left: 5px;
    margin-top: 10px;
    border-radius: 50%;
    background: linear-gradient(135deg, #6c8cff, #9b5cff);
    box-shadow: 0 0 8px rgba(124, 92, 255, 0.35);
}

.footer-description {
    max-width: 280px;
    margin-bottom: 22px;

    font-size: 14px;
    line-height: 1.65;
    color: #697180;
}

.footer-socials {
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-socials a {
    width: 34px;
    height: 34px;
    border-radius: 50%;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    background: rgba(255, 255, 255, 0.78);
    border: 1px solid rgba(17, 24, 39, 0.06);
    color: #6b7280;

    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;

    transition: 
        background 0.2s ease,
        color 0.2s ease,
        transform 0.2s ease;
}

.footer-socials a:hover {
    background: #111827;
    color: #ffffff;
    transform: translateY(-2px);
}

.footer-column {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.footer-column h3 {
    margin-bottom: 18px;

    font-size: 14px;
    line-height: 1;
    font-weight: 700;
    color: #111827;
}

.footer-column a,
.footer-column p {
    margin-bottom: 11px;

    font-size: 14px;
    line-height: 1.45;
    color: #697180;
}

.footer-column a {
    transition: color 0.2s ease;
}

.footer-column a:hover {
    color: #111827;
}

.footer-contacts p {
    margin-bottom: 0;
}

.footer-bottom {
    padding-top: 24px;
    border-top: 1px solid rgba(17, 24, 39, 0.06);

    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.footer-bottom p,
.footer-bottom a {
    font-size: 13px;
    line-height: 1.4;
    color: rgba(105, 113, 128, 0.85);
}

.footer-bottom-links {
    display: flex;
    align-items: center;
    gap: 34px;
}

.footer-bottom a {
    transition: color 0.2s ease;
}

.footer-bottom a:hover {
    color: #111827;
}

.contact-form-section {
    position: relative;
    padding: 84px 0;
    background:
        radial-gradient(circle at 78% 16%, rgba(134, 111, 255, 0.14), transparent 28%),
        linear-gradient(180deg, #fbfcff 0%, #f7f5ff 100%);
    overflow: hidden;
}

.contact-form-inner {
    display: grid;
    grid-template-columns: minmax(0, 470px) minmax(0, 1fr);
    align-items: start;
    gap: 72px;
}

.contact-form-content {
    position: sticky;
    top: 90px;
}

.contact-form-title {
    margin-bottom: 22px;

    font-size: clamp(34px, 4vw, 56px);
    line-height: 1.12;
    font-weight: 700;
    letter-spacing: -0.05em;
    color: #111827;
}

.contact-form-text {
    max-width: 430px;
    margin-bottom: 30px;

    font-size: 16px;
    line-height: 1.7;
    color: #697180;
}

.contact-form-info {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.contact-form-info a {
    width: fit-content;

    font-size: 15px;
    font-weight: 500;
    color: #7b61ff;
    transition: color 0.2s ease;
}

.contact-form-info a:hover {
    color: #111827;
}

.contact-form {
    padding: 34px;
    border-radius: 24px;

    background: rgba(255, 255, 255, 0.78);
    border: 1px solid rgba(17, 24, 39, 0.07);
    box-shadow: 0 20px 46px rgba(80, 90, 130, 0.08);
    backdrop-filter: blur(14px);
}

.form-row {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}

.form-group {
    margin-bottom: 18px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;

    font-size: 13px;
    font-weight: 600;
    color: #374151;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    min-height: 48px;
    padding: 0 16px;

    border: 1px solid rgba(17, 24, 39, 0.09);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.86);

    font-size: 14px;
    color: #111827;
    outline: none;

    transition:
        border-color 0.2s ease,
        box-shadow 0.2s ease,
        background 0.2s ease;
}

.form-group textarea {
    min-height: 130px;
    padding: 14px 16px;
    resize: vertical;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(105, 113, 128, 0.65);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: rgba(123, 97, 255, 0.55);
    background: #ffffff;
    box-shadow: 0 0 0 4px rgba(123, 97, 255, 0.10);
}

.form-agreement {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin: 4px 0 24px;

    font-size: 13px;
    line-height: 1.5;
    color: #697180;
    cursor: pointer;
}

.form-agreement input {
    margin-top: 3px;
    accent-color: #7b61ff;
}

.contact-form-button {
    min-height: 50px;
    width: 100%;
    padding: 0 22px;
    border-radius: 12px;

    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;

    background: #070b18;
    color: #ffffff;
    font-size: 14px;
    font-weight: 400;

    box-shadow: 0 14px 32px rgba(7, 11, 24, 0.18);
    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease,
        background 0.2s ease;
}

.contact-form-button:hover {
    background: #111827;
    transform: translateY(-1px);
    box-shadow: 0 18px 38px rgba(7, 11, 24, 0.24);
}

@media (max-width: 1024px) {
    .section {
        padding: 64px 0;
    }

    .container {
        width: min(100% - 32px, 1180px);
    }
}

@media (max-width: 768px) {
    .section {
        padding: 52px 0;
    }

    .container {
        width: min(100% - 24px, 1180px);
    }
}

@media (max-width: 480px) {
    .section {
        padding: 42px 0;
    }

    .container {
        width: min(100% - 20px, 1180px);
    }
}

@media (max-width: 900px) {
    .header-nav,
    .header-button {
        display: none;
    }

    .header-burger {
        display: flex;
    }

    .header-inner {
        height: 62px;
    }
}

@media (max-width: 480px) {
    .header-logo {
        font-size: 19px;
    }

    .header-inner {
        height: 58px;
    }
}

@media (max-width: 1200px) {
    .service-card {
        width: calc((100% - 54px) / 4);
    }
}

@media (max-width: 900px) {
    .hero-cards {
        gap: 16px;
    }

    .service-card {
        width: calc((100% - 16px) / 2);
    }
}

@media (max-width: 560px) {
    .hero-cards {
        margin-top: 36px;
    }

    .service-card {
        width: 100%;
        min-width: unset;
    }
}

@media (max-width: 1024px) {
    .hero::before {
        top: 70px;
        right: -330px;
        width: 950px;
        height: 540px;
        opacity: 0.65;
    }
}

@media (max-width: 768px) {
    .hero::before {
        top: 90px;
        right: -480px;
        width: 900px;
        height: 520px;
        opacity: 0.28;
    }
}

@media (max-width: 900px) {
    .hero-trust {
        align-items: flex-start;
        flex-direction: column;
        gap: 24px;
        margin-top: 38px;
    }

    .hero-trust-logos {
        justify-content: flex-start;
        gap: 26px 34px;
    }

    .hero-trust-logos span {
        font-size: 19px;
    }
}

@media (max-width: 560px) {
    .hero-trust {
        margin-top: 32px;
    }

    .hero-trust-logos {
        gap: 20px 26px;
    }

    .hero-trust-logos span {
        font-size: 17px;
    }
}

@media (max-width: 1024px) {
    .consulting-inner {
        grid-template-columns: 1fr 280px;
        gap: 36px;
    }

    .consulting-steps {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 34px 42px;
    }

    .consulting-description {
        margin-bottom: 44px;
    }
}

@media (max-width: 768px) {
    .consulting {
        padding: 58px 0 56px;
    }

    .consulting-inner {
        grid-template-columns: 1fr;
    }

    .consulting-visual {
        position: absolute;
        right: -90px;
        top: 18px;
        width: 260px;
        opacity: 0.35;
    }

    .consulting-steps {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 520px) {

    .consulting-step {
        min-height: auto;
    }

    .consulting-step span {
        margin-top: 14px;
    }

    .consulting-steps {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .consulting-step p {
        max-width: 100%;
        margin-bottom: 14px;
    }

    .consulting-visual {
        right: -130px;
        top: 20px;
        width: 250px;
        opacity: 0.22;
    }
}

@media (max-width: 1100px) {
    .process-list {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (max-width: 768px) {
    .process {
        padding: 60px 0 64px;
    }

    .process-title {
        margin-bottom: 26px;
    }

    .process-list {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 520px) {
    .process-list {
        grid-template-columns: 1fr;
    }

    .process-card {
        min-height: 170px;
    }
}

@media (max-width: 1024px) {
    .cases-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 768px) {
    .cases {
        padding: 64px 0;
    }

    .cases-top {
        flex-direction: column;
        margin-bottom: 28px;
    }

    .cases-all-link {
        margin-top: 0;
    }
}

@media (max-width: 560px) {
    .cases-grid {
        grid-template-columns: 1fr;
    }

    .case-card-image {
        height: 200px;
    }

    .case-title {
        font-size: 17px;
    }
}

@media (max-width: 1100px) {
    .about-top {
        grid-template-columns: 1fr;
        gap: 34px;
    }

    .about-visual {
        min-height: auto;
        justify-content: flex-start;
        opacity: 0.85;
    }

    .about-visual img {
        max-width: 620px;
    }

    .about-cards {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 768px) {
    .about {
        padding: 64px 0;
    }

    .about-top {
        margin-bottom: 38px;
    }

    .about-description {
        font-size: 15px;
    }

    .about-card {
        min-height: auto;
        padding: 24px 22px;
    }

    .about-card p {
        font-size: 14px;
    }

    .about-features {
        grid-template-columns: 1fr;
    }

    .about-feature {
        justify-content: flex-start;
        min-height: 64px;
    }

    .about-feature:not(:last-child) {
        border-right: none;
        border-bottom: 1px solid rgba(17, 24, 39, 0.07);
    }
}

@media (max-width: 560px) {
    .about-cards {
        grid-template-columns: 1fr;
    }

    .about-title {
        font-size: 36px;
    }

    .about-visual {
        display: none;
    }
}

@media (max-width: 900px) {
    .cta-box {
        padding: 36px 32px;
        background:
            url("Resources/cta-bg.png") no-repeat right -20px center / 250px auto,
            linear-gradient(180deg, #f7f5ff 0%, #f2efff 100%);
    }
}

@media (max-width: 768px) {
    .cta-box {
        min-height: auto;
        padding: 32px 24px;

        background:
            linear-gradient(180deg, #f7f5ff 0%, #f2efff 100%);
    }

    .cta-content {
        max-width: 100%;
    }

    .cta-title {
        font-size: 30px;
    }

    .cta-text {
        font-size: 14px;
    }
}

@media (max-width: 1100px) {
    .team-stats-inner {
        grid-template-columns: 1fr;
        align-items: start;
        gap: 34px;
    }

    .team-stats-list {
        max-width: 760px;
    }
}

@media (max-width: 768px) {
    .team-stats {
        padding: 62px 0 58px;
    }

    .team-stats-list {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 460px) {
    .team-stats-list {
        grid-template-columns: 1fr;
    }

    .team-stat-card {
        min-height: 96px;
    }
}

@media (max-width: 900px) {
    .footer-main {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 38px 42px;
    }

    .footer-brand {
        grid-column: 1 / -1;
    }

    .footer-description {
        max-width: 440px;
    }
}

@media (max-width: 640px) {
    .footer {
        padding: 40px 0 24px;
    }

    .footer-main {
        grid-template-columns: 1fr;
        gap: 32px;
        padding-bottom: 34px;
    }

    .footer-bottom {
        align-items: flex-start;
        flex-direction: column;
        gap: 16px;
    }

    .footer-bottom-links {
        align-items: flex-start;
        flex-direction: column;
        gap: 10px;
    }
}

@media (max-width: 960px) {
    .contact-form-inner {
        grid-template-columns: 1fr;
        gap: 38px;
    }

    .contact-form-content {
        position: static;
    }

    .contact-form-text {
        max-width: 620px;
    }
}

@media (max-width: 640px) {
    .contact-form-section {
        padding: 64px 0;
    }

    .contact-form {
        padding: 24px;
        border-radius: 20px;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .contact-form-title {
        font-size: 36px;
    }
}

@media (max-width: 420px) {
    .contact-form {
        padding: 20px;
    }

    .contact-form-title {
        font-size: 32px;
    }
}

@media (max-width: 1024px) {
    .about::before {
        right: -320px;
        width: 950px;
        height: 520px;
        opacity: 0.65;
    }
}

@media (max-width: 768px) {
    .about::before {
        right: -480px;
        width: 850px;
        height: 480px;
        opacity: 0.25;
    }
}

@media (max-width: 768px) {
    .hero-trust {
        gap: 18px;
        margin-top: 34px;
    }

    .hero-trust-logos {
        width: 100%;
        display: flex;
        flex-wrap: nowrap;
        justify-content: flex-start;
        gap: 18px;

        overflow-x: auto;
        overflow-y: hidden;

        scroll-snap-type: x mandatory;
        scroll-behavior: smooth;
        -webkit-overflow-scrolling: touch;

        padding: 4px 0 14px;
    }

    .hero-trust-logos img {
        flex: 0 0 auto;
        scroll-snap-align: start;

        max-width: none;
        width: auto;
        height: 26px;
        max-height: 26px;

        opacity: 0.55;
        filter: grayscale(1);
    }

    .hero-trust-logos::-webkit-scrollbar {
        display: none;
    }

    .hero-trust-logos {
        scrollbar-width: none;
    }
}

.hero-trust {
    align-items: flex-start;
}

.hero-trust-logos {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.hero-trust-row {
    display: flex;
    align-items: center;
    gap: 42px;
    margin-top: 50px;
}

.hero-trust-row-top {
    justify-content: flex-end;
}

.hero-trust-row-bottom {
    justify-content: flex-start;
}

.hero-trust-row img {
    max-height: 24px;
    max-width: 140px;
    object-fit: contain;
    opacity: 0.45;
    filter: grayscale(1);
}

@media (max-width: 768px) {
    .hero-trust {
        flex-direction: column;
        gap: 18px;
    }

    .hero-trust-logos {
        width: 100%;
        gap: 14px;
    }

    .hero-trust-row {
        width: 100%;
        display: flex;
        flex-wrap: nowrap;
        justify-content: flex-start;
        gap: 18px;

        overflow-x: auto;
        overflow-y: hidden;

        scroll-snap-type: x mandatory;
        scroll-behavior: smooth;
        -webkit-overflow-scrolling: touch;

        padding: 4px 0 12px;
    }

    .hero-trust-row::-webkit-scrollbar {
        display: none;
    }

    .hero-trust-row {
        scrollbar-width: none;
    }

    .hero-trust-row img {
        flex: 0 0 auto;
        height: 26px;
        max-height: 26px;
        max-width: none;
        scroll-snap-align: start;
    }

    .hero-trust-row-top {
        direction: rtl;
    }

    .hero-trust-row-top img {
        direction: ltr;
    }

    .hero-trust-row-bottom {
        direction: ltr;
    }
}

.hero-trust-row img,
.hero-trust-logos img {
    max-height: 48px;
    max-width: 280px;
    width: auto;
    object-fit: contain;
}

.hero-trust {
    flex-direction: column;
    align-items: center;
    gap: 28px;
    text-align: center;
}

.hero-trust-title {
    width: 100%;
    font-size: 18px;
    font-weight: 400;
    color: #30363f;
}

.hero-trust-logos {
    width: 100%;
}

@media (max-width: 768px) {
    .hero-trust-row {
        gap: 0;
        justify-content: flex-start;

        overflow-x: auto;
        overflow-y: hidden;

        scroll-snap-type: x mandatory;
        scroll-behavior: smooth;
        -webkit-overflow-scrolling: touch;

        padding: 4px 0 14px;
    }

    .hero-trust-row img {
        flex: 0 0 100%;
        width: 100%;
        max-width: 100%;
        height: 52px;
        max-height: 52px;

        object-fit: contain;
        scroll-snap-align: center;
    }

    .hero-trust-row::-webkit-scrollbar {
        display: none;
    }

    .hero-trust-row {
        scrollbar-width: none;
    }

    .hero-trust-row-top {
        direction: rtl;
    }

    .hero-trust-row-top img {
        direction: ltr;
    }

    .hero-trust-row-bottom {
        direction: ltr;
    }
}

@media (max-width: 560px) {
    .hero-actions {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 10px;
    }

    .hero-button {
        width: 100%;
        min-height: 46px;
        padding: 0 12px;
        font-size: 13px;
        white-space: nowrap;
    }
}

@media (max-width: 768px) {
    .cases {
        overflow: hidden;
    }

    .cases-grid {
        display: flex;
        grid-template-columns: none;
        gap: 16px;

        overflow-x: auto;
        overflow-y: hidden;

        scroll-snap-type: x mandatory;
        scroll-behavior: smooth;
        -webkit-overflow-scrolling: touch;

        padding: 2px 0 18px;
    }

    .case-card {
        flex: 0 0 100%;
        scroll-snap-align: start;
    }

    .cases-grid::-webkit-scrollbar {
        display: none;
    }

    .cases-grid {
        scrollbar-width: none;
    }
}

body.modal-open {
    overflow: hidden;
}

.modal {
    position: fixed;
    inset: 0;
    z-index: 1000;

    display: flex;
    align-items: center;
    justify-content: center;

    padding: 20px;

    opacity: 0;
    visibility: hidden;
    pointer-events: none;

    transition:
        opacity 0.25s ease,
        visibility 0.25s ease;
}

.modal.is-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.modal-overlay {
    position: absolute;
    inset: 0;
    background: rgba(7, 11, 24, 0.48);
    backdrop-filter: blur(8px);
}

.modal-window {
    position: relative;
    z-index: 2;

    width: min(100%, 520px);
    max-height: calc(100vh - 40px);
    overflow-y: auto;

    padding: 34px;
    border-radius: 24px;

    background:
        radial-gradient(circle at 90% 0%, rgba(124, 92, 255, 0.14), transparent 34%),
        rgba(255, 255, 255, 0.94);

    border: 1px solid rgba(255, 255, 255, 0.7);
    box-shadow: 0 28px 80px rgba(7, 11, 24, 0.24);

    transform: translateY(18px) scale(0.96);
    transition: transform 0.25s ease;
}

.modal.is-open .modal-window {
    transform: translateY(0) scale(1);
}

.modal-close {
    position: absolute;
    top: 16px;
    right: 16px;

    width: 36px;
    height: 36px;
    border-radius: 50%;

    display: flex;
    align-items: center;
    justify-content: center;

    background: rgba(17, 24, 39, 0.06);
    color: #111827;

    font-size: 24px;
    line-height: 1;

    transition:
        background 0.2s ease,
        transform 0.2s ease;
}

.modal-close:hover {
    background: rgba(17, 24, 39, 0.11);
    transform: rotate(90deg);
}

.modal-title {
    margin-bottom: 14px;
    padding-right: 34px;

    font-size: clamp(28px, 4vw, 42px);
    line-height: 1.12;
    font-weight: 700;
    letter-spacing: -0.05em;
    color: #111827;
}

.modal-text {
    margin-bottom: 26px;

    font-size: 15px;
    line-height: 1.65;
    color: #697180;
}

.modal-form .form-group:last-of-type {
    margin-bottom: 18px;
}

@media (max-width: 520px) {
    .modal {
        padding: 12px;
        align-items: flex-end;
    }

    .modal-window {
        width: 100%;
        padding: 26px 20px 22px;
        border-radius: 22px 22px 18px 18px;
        max-height: calc(100vh - 24px);
    }

    .modal-title {
        font-size: 30px;
    }

    .modal-text {
        font-size: 14px;
    }
}

@media (max-width: 900px) {
    .header {
        position: relative;
    }

    .header-nav {
        position: absolute;
        top: 100%;
        left: 16px;
        right: 16px;
        z-index: 50;

        display: flex;
        flex-direction: column;
        align-items: stretch;
        gap: 0;

        padding: 12px;
        border-radius: 18px;
        background: rgba(255, 255, 255, 0.96);
        border: 1px solid rgba(17, 24, 39, 0.08);
        box-shadow: 0 18px 42px rgba(7, 11, 24, 0.14);
        backdrop-filter: blur(14px);

        opacity: 0;
        visibility: hidden;
        transform: translateY(10px);
        pointer-events: none;

        transition:
            opacity 0.2s ease,
            visibility 0.2s ease,
            transform 0.2s ease;
    }

    .header-nav a {
        padding: 13px 14px;
        border-radius: 12px;
        font-size: 14px;
    }

    .header-nav a:hover {
        background: rgba(123, 97, 255, 0.08);
    }

    .header.is-open .header-nav {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
        pointer-events: auto;
    }
}

@media (max-width: 560px) {
    .hero-cards {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 10px;
        margin-top: 34px;
    }

    .service-card {
        width: auto;
        min-width: 0;
        min-height: 150px;
        padding: 14px 12px 16px;
        border-radius: 16px;
    }

    .service-card-icon {
        width: 30px;
        height: 30px;
        margin-bottom: 12px;
        border-radius: 10px;
    }

    .service-card-title {
        margin-bottom: 7px;
        font-size: 13px;
        line-height: 1.2;
    }

    .service-card-text {
        font-size: 11.5px;
        line-height: 1.4;
    }
}

@media (max-width: 390px) {
    .service-card {
        padding: 12px 10px 14px;
    }

    .service-card-title {
        font-size: 12px;
    }

    .service-card-text {
        font-size: 10.5px;
        line-height: 1.35;
    }
}

@media (max-width: 560px) {
    .about-cards {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 10px;
    }

    .about-card {
        min-height: 160px;
        padding: 14px 12px 16px;
        border-radius: 16px;
    }

    .about-card-icon {
        width: 32px;
        height: 32px;
        margin-bottom: 12px;
        border-radius: 10px;
        font-size: 15px;
    }

    .about-card-icon svg {
        width: 18px;
        height: 18px;
    }

    .about-card h3 {
        margin-bottom: 7px;
        font-size: 13px;
        line-height: 1.2;
    }

    .about-card p {
        font-size: 11.5px;
        line-height: 1.4;
    }
}

@media (max-width: 390px) {
    .about-card {
        min-height: 150px;
        padding: 12px 10px 14px;
    }

    .about-card h3 {
        font-size: 12px;
    }

    .about-card p {
        font-size: 10.5px;
        line-height: 1.35;
    }

    .about-card-icon {
        width: 28px;
        height: 28px;
        margin-bottom: 10px;
    }
}

@media (max-width: 768px) {
    .cases {
        overflow: hidden;
    }

    .cases-grid {
        display: flex;
        grid-template-columns: none;
        gap: 14px;

        overflow-x: auto;
        overflow-y: hidden;

        scroll-snap-type: x mandatory;
        scroll-behavior: smooth;
        -webkit-overflow-scrolling: touch;

        padding: 2px 24px 18px 0;
    }

    .case-card {
        flex: 0 0 82%;
        scroll-snap-align: start;
    }

    .cases-grid::-webkit-scrollbar {
        display: none;
    }

    .cases-grid {
        scrollbar-width: none;
    }
}

@media (max-width: 768px) {
    .case-card-image {
        height: 180px;
    }

    .case-title {
        font-size: 16px;
    }

    .case-text {
        font-size: 13px;
    }
}

@media (max-width: 768px) {
    .hero-trust-row {
        gap: 12px;
        padding: 4px 0 12px;
    }

    .hero-trust-row img,
    .hero-trust-logos img {
        flex: 0 0 42%;
        width: 42%;
        max-width: 42%;

        height: 26px;
        max-height: 26px;

        object-fit: contain;
        scroll-snap-align: start;

        opacity: 0.55;
        filter: grayscale(1);
    }
}

.cta-button span,
.hero-button span,
.case-link span,
.header-button span {
    font-family: Arial, sans-serif;
    line-height: 1;
}

.button-arrow {
    width: 14px;
    height: 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.button-arrow svg {
    width: 100%;
    height: 100%;
}

.button-arrow path {
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}