:root {
    --navy: #07131f;
    --navy-2: #0c1d2b;
    --ink: #111827;
    --muted: #b8c3da;
    --muted-dark: #526079;
    --turquoise: #66e3ff;
    --turquoise-dark: #2678e8;
    --turquoise-soft: #edf6ff;
    --line: #d8e4e6;
    --white: #fff;
    --surface: #f4f8f8;
    --radius: 8px;
    --shadow: 0 22px 60px rgba(8, 35, 46, .12);
    --light: #ffffff;
    --light-2: #f4f8ff;
}
.section-light {
    background: radial-gradient(circle at 20% 10%, rgba(45, 217, 243, 0.22), transparent 34%), radial-gradient(circle at 86% 28%, rgba(36, 179, 243, 0.18), transparent 32%), var(--light);
    color: var(--ink);
}
.section-light.ai-choice-section {
    background: radial-gradient(circle at 20% 10%, rgba(45, 217, 243, 0.22), transparent 34%), radial-gradient(circle at 86% 28%, rgba(36, 179, 243, 0.18), transparent 0), var(--light);
}

.ai-choice-section{
    overflow: hidden;
    position: relative;
}

.ai-choice-section .section-heading p{
    margin: 18px auto 0;
    color: var(--muted-dark);
    font-size: 20px;
}
.ai-choice-section .section-heading{
    z-index: 1;
    position: relative;
    text-align: center;
    margin: 0 auto 42px;
}

.ai-choice-section::before {
    content: "";
    position: absolute;
    z-index: 1;
    inset: 0px;
    background: radial-gradient(circle, rgba(213, 245, 255, 0.20) 0%, rgb(236 236 236 / 65%) 100%);
}

.ai-choice-cards{
    z-index: 1;
    position: relative;
}

.ai-choice-layout{
    display: grid;
    grid-template-columns:  1fr 44%;
    gap: 40px;
}

@media (max-width: 1024px) {
    .ai-choice-layout{
        grid-template-columns:  1fr;
    }
}

.ai-choice-cards{
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.ai-choice-card{
    display: grid;
    grid-template-columns: 190px 1fr;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 0;
    background: #fff;
    align-items: center;
    transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
}

@media (max-width: 1024px) {
    .ai-choice-card{
        grid-template-columns: 120px 1fr;
    }
}

.ai-choice-card:nth-child(2n){
    background: rgb(245, 255, 254);
}

.ai-choice-card h3{
    padding: 16px 22px;
}

@media (max-width: 1024px) {
    .ai-choice-card h3{
        padding: 16px 0;
        font-size: 16px;
    }
}

.ai-choice-card div{
    padding: 14px 22px;
    line-height: 130%;
    border-left: 1px solid var(--line);
}

.ai-choice-image{

}

.ai-choice-image__wrap{
    position: relative;
    height: 100%;
}

.ai-choice-image img{
    position: absolute;
    left: 0;
    top: calc(50% - 304px);
    width: auto;
    height: auto;
    max-width: 800px;;
}
.ai-choice-card:hover{
    transform: translateY(-5px);
    border-color: var(--cyan2); /* var(--teal); */
    box-shadow: 0 0 30px rgba(40, 215, 255, 0.22);
}
@media (max-width: 1024px) {
    .ai-choice-image img {
        position: relative;
        left: 0;
        top: auto;
        width: auto;
        height: auto;
        max-width: 100%;
    }
}
.main-nav a, .phone-link, .sdo-link {
    transition: color 0.2s, border-color 0.2s ease-in-out, transform 0.2s, box-shadow 0.2s;
    font-weight: 800;
}

.sdo-link {
    padding: 12px 16px;
    border: 1px solid var(--light);
    border-radius: 10px;
    /*background: #070b1b;*/
    background: #202437;
    transition: color 0.2s, border-color 0.2s ease-in-out, transform 0.2s, box-shadow 0.2s;
}
.sdo-link:hover {
    color: var(--cyan2);
    border-color: var(--cyan);
    transform: translateY(-2px);
    /*box-shadow: 0 0 24px rgba(39, 214, 194, 0.24);*/
    background: rgba(59, 130, 246, .12);
    box-shadow: 0 14px 34px rgba(59, 130, 246, .22);
}


.section-kicker {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 14px;
    color: var(--turquoise);
    font-size: 13px;
    font-weight: 800;
    text-transform: uppercase;
}

.section-kicker::before {
    content: "";
    width: 28px;
    height: 2px;
    background: var(--turquoise);
}

h1, h2, h3, p {
    margin: 0;
}

h1 {
    font-size: clamp(38px, 4.2vw, 58px);
    line-height: 1.02;
    font-weight: 850;
    letter-spacing: 0;
}

h2 {
    font-size: clamp(30px, 4vw, 48px);
    line-height: 1.08;
    font-weight: 850;
    letter-spacing: 0;
}

h3 {
    font-size: 20px;
    line-height: 1.25;
    font-weight: 800;
}

.section-head {
    max-width: none;
    margin: 0 auto 42px;
    text-align: center;
}


.section-head p {
    margin-top: 16px;
    color: var(--muted-dark);
    font-size: 18px;
}

.problem-head p {
    max-width: none;
    margin-bottom: 40px;
}

.section-dark .section-head p {
    color: var(--muted);
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 30;
    color: var(--white);
    background: rgba(7, 19, 31, .94);
    border-bottom: 1px solid rgba(255, 255, 255, .1);
    backdrop-filter: blur(18px);
}


.brand {
    display: flex;
    align-items: center;
    flex: 0 0 auto;
}

.brand img {
    width: 50px;
    height: 50px;
    object-fit: contain;
}


.search-link {
    display: grid;
    width: 38px;
    height: 38px;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, .18);
    border-radius: 50%;
    transition: border-color .2s ease, box-shadow .2s ease;
}

.search-link:hover {
    border-color: var(--turquoise);
    box-shadow: 0 0 24px rgba(59, 130, 246, .28);
}

.search-link::before {
    content: "";
    width: 12px;
    height: 12px;
    border: 2px solid currentColor;
    border-radius: 50%;
    transform: translate(-1px, -1px);
}

.search-link::after {
    content: "";
    position: absolute;
    width: 7px;
    height: 2px;
    margin: 11px 0 0 11px;
    background: currentColor;
    transform: rotate(45deg);
}

.phone {
    white-space: nowrap;
    font-size: 16px;
    font-weight: 800;
}

.menu-toggle {
    display: none;
    width: 42px;
    height: 42px;
    border: 1px solid rgba(255, 255, 255, .2);
    border-radius: 50%;
    background: transparent;
    cursor: pointer;
}

.menu-toggle span,
.menu-toggle::before,
.menu-toggle::after {
    content: "";
    display: block;
    width: 18px;
    height: 2px;
    margin: 4px auto;
    background: currentColor;
}

.hero {
    position: relative;
    overflow: hidden;
}


.breadcrumbs-section, .ai-hero{
    background: transparent;
}
.hero-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: minmax(0, 1fr) 470px;
    align-items: center;
    gap: 52px;
}

.hero-copy {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hero-copy h1 {
    font-size: clamp(34px, 4.4vw, 46px);
    line-height: 1.05;
    letter-spacing: 0;
}

.hero-copy h1 span {
    color: var(--turquoise);
}

.hero-lead {
    max-width: 690px;
    margin-top: 18px;
    color: #c4d3da;
    font-size: 17px;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    width: 100%;
    max-width: 690px;
    margin-top: 22px;
}

.hero-actions .btn {
    flex: 1 1 0;
    min-width: 0;
}

.hero-actions .btn-primary {
    color: #061126;
    background: linear-gradient(135deg, var(--cyan, #28d7ff), var(--cyan2, #67e8f9));
    box-shadow: 0 0 34px rgba(40, 215, 255, .24);
}

.hero-actions .btn-primary:hover {
    box-shadow: 0 0 34px rgba(40, 215, 255, .42);
}
.hero-stats {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin-top: 34px;
    padding-bottom: 58px;
}

.stat {
    min-height: 90px;
    padding: 22px;
    border: 1px solid rgba(102, 227, 255, .36);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, .05);
    box-shadow: inset 0 0 28px rgba(39, 214, 176, .05);
    transition: transform .2s ease, box-shadow .2s ease;
}

.stat:hover {
    transform: translateY(-4px);
    box-shadow: 0 0 30px rgba(39, 214, 176, .18);
}

.stat strong {
    display: block;
    color: var(--turquoise);
    padding-bottom: 8px;
    font-size: 36px;
    line-height: 1;
}

.stat span {
    display: block;
    padding-top: 6px;
    color: var(--muted);
    font-size: 15px;
    font-weight: 700;
}
.hero-actions .btn-outline {
    border-color: rgba(103, 232, 249, .42);
    color: #d8f9ff;
}
.ai-hero-note {
    color: #d5def3;
    font-size: 18px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.ai-hero-note:before {
    content: "";
    position: relative;
    display: grid;
    width: 40px;
    height: 40px;
    padding-left: 10px;
    place-items: center;
    color: white;
    font-size: 22px;
    font-weight: 900;
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    background-image: url("/products/ai-resheniya/ai-pomoshnik/img/icon-guarantee.png");
}
.hero-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0 14px;
    max-width: 690px;
    margin: 22px 0 0;
    padding: 0;
    list-style: none;
}

.hero-list li br{
    display: block;
}
.hero-list li {
    font-size: 16px;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 12px 14px;
    color: #fff;
    font-weight: 800;
    width: calc(50% - 14px);
}

.hero-list li::before {
    content: "";
    display: block;
    flex: 0 0 auto;
    width: 8px;
    height: 8px;
    margin-right: 10px;
    border-radius: 50%;
    background-color: var(--cyan2, #67e8f9);
    box-shadow: 0 0 18px rgba(40, 215, 255, 1);
}

.hero-visual {
    position: relative;
    width: min(470px, 100%);
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-visual-frame {
    position: relative;
    z-index: 2;
    display: flex;
    width: 100%;
    height: 100%;
    align-items: flex-end;
    justify-content: center;
    overflow: hidden;
    border: 1px solid rgba(102, 227, 255, .24);
    border-radius: 50%;
    box-shadow: 0 0 90px rgba(59, 130, 246, .3),
    inset 0 0 70px rgba(102, 227, 255, .1);
}

.hero-visual::before {
    content: "";
    position: absolute;
    width: 450px;
    height: 110px;
    left: 50%;
    bottom: -80px;
    border-radius: 50%;
    background: rgba(59, 130, 246, .24);
    filter: blur(42px);
    transform: translateX(-50%);
}

.hero-visual::after {
    display: none;
}

.hero-visual img {
    position: relative;
    width: 116%;
    top: 3px;
    left: 36px;
    max-width: none;
    filter: drop-shadow(0 28px 34px rgba(0, 0, 0, .3));
}

.knowledge-access-section {
    color: var(--ink);
    background: var(--white);
}

.knowledge-access-head {
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(320px, .75fr);
    align-items: start;
    gap: clamp(48px, 8vw, 120px);
    margin-bottom: 48px;
}

.knowledge-access-head h2 {
    max-width: 720px;
    font-size: clamp(28px, 4.5vw, 44px);
    line-height: 1.08;
}

.knowledge-access-head > p {
    max-width: 460px;
    justify-self: end;
    color: var(--muted-dark);
    font-size: 17px;
    line-height: 1.65;
}

.knowledge-access-layout {
    display: grid;
    grid-template-columns: minmax(300px, .82fr) minmax(0, 1.18fr);
    gap: 28px;
}

.knowledge-access-summary {
    display: flex;
    min-height: 410px;
    flex-direction: column;
    justify-content: space-between;
    padding: clamp(28px, 3.3vw, 46px);
    background: var(--surface);
}

.knowledge-access-summary h3 {
    max-width: 430px;
    color: var(--muted-dark);
    font-size: clamp(25px, 2.4vw, 34px);
    line-height: 1.16;
    font-weight: 850;
}

.knowledge-access-summary p {
    max-width: 430px;
    color: var(--muted-dark);
    font-size: 15px;
    line-height: 1.55;
}

.knowledge-access-list {
    margin: 0;
    padding: 0;
    border-top: 1px solid var(--line);
    list-style: none;
}

.knowledge-access-list li {
    display: grid;
    grid-template-columns: 40px minmax(0, 1fr);
    gap: 20px;
    min-height: 82px;
    padding: 20px 4px;
    border-bottom: 1px solid var(--line);
}

.knowledge-access-number {
    padding-top: 3px;
    color: var(--turquoise);
    font-size: 12px;
    line-height: 1.3;
    font-weight: 850;
}

.knowledge-access-list h3 {
    margin-bottom: 7px;
    font-size: 18px;
    line-height: 1.25;
}

.knowledge-access-list p {
    color: var(--muted-dark);
    font-size: 14px;
    line-height: 1.5;
}

.security-placement-section {
    color: var(--ink);
    background: var(--surface);
}

.security-placement-head {
    display: grid;
    grid-template-columns: minmax(0, 2fr) minmax(300px, .7fr);
    align-items: end;
    gap: clamp(48px, 8vw, 120px);
    margin-bottom: 46px;
}

.security-placement-head h2 {
    max-width: 760px;
    color: var(--ink);
    font-size: clamp(34px, 4vw, 44px);
    line-height: 1.12;
}

.security-placement-head p {
    max-width: 430px;
    justify-self: end;
    color: var(--muted-dark);
    font-size: 17px;
    line-height: 1.6;
}

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

.security-placement-card {
    display: flex;
    min-height: 320px;
    flex-direction: column;
    padding: clamp(30px, 3vw, 42px);
    border: 1px solid var(--line);
    background: var(--white);
}

.security-placement-label {
    align-self: flex-start;
    margin-bottom: 34px;
    padding: 8px 14px;
    border-radius: 999px;
    color: var(--navy);
    background: var(--turquoise);
    font-size: 12px;
    line-height: 1;
    font-weight: 850;
    text-transform: uppercase;
}

.security-placement-card h3 {
    margin-bottom: 30px;
    color: var(--ink);
    font-size: 28px;
}

.security-placement-card > div {
    display: grid;
    gap: 16px;
}

.security-placement-card p {
    color: var(--muted-dark);
    font-size: 15px;
    line-height: 1.55;
}

.security-placement-features {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    margin: 18px 0 0;
    padding: 24px 20px;
    border: 1px solid var(--line);
    background: var(--white);
    list-style: none;
}

.security-placement-features li {
    display: flex;
    min-height: 52px;
    align-items: center;
    padding: 8px 18px;
    border-right: 1px solid var(--line);
    color: var(--muted-dark);
    font-size: 13px;
    line-height: 1.4;
}

.security-placement-features li:last-child {
    border-right: 0;
}

.grid {
    display: grid;
    gap: 18px;
}

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

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

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

.card {
    position: relative;
    padding: 26px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--white);
    transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}

.interactive-card {
    border-color: rgba(102, 227, 255, .55);
}

.interactive-card:hover {
    z-index: 2;
    transform: translateY(-7px);
    border-color: var(--turquoise);
    box-shadow: 0 20px 50px rgba(34, 91, 170, .17), 0 0 0 1px rgba(102, 227, 255, .1);
}

.icon {
    display: grid;
    width: 46px;
    height: 46px;
    margin-bottom: 22px;
    place-items: center;
    border-radius: var(--radius);
    color: #174f93;
    background: var(--turquoise-soft);
    font-size: 22px;
    font-weight: 900;
}

.card h3 {
    margin-bottom: 12px;
    font-size: 18px;
}

.card p {
    color: var(--muted-dark);
}

.problem-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 72px minmax(0, 1fr);
    align-items: center;
    gap: 28px;
}

.problem-section {
    color: var(--white);
    background: var(--navy);
}

.problem-section .problem-head h2 {
    color: var(--white);
}

.problem-section .problem-head p {
    color: var(--muted);
}

.problem-panel {
    position: relative;
    min-height: 330px;
    padding: 64px 38px 34px;
    border: 1px solid rgba(102, 227, 255, .62);
    border-radius: var(--radius);
    background: var(--navy-2);
    transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}

.problem-panel:hover {
    transform: translateY(-7px);
    border-color: var(--turquoise);
    box-shadow: 0 18px 44px rgba(34, 91, 170, .16), 0 0 34px rgba(102, 227, 255, .18);
}

.problem-panel h3 {
    position: absolute;
    top: 0;
    left: 50%;
    min-width: 280px;
    margin: 0;
    padding: 16px 22px;
    border: 1px solid rgba(102, 227, 255, .62);
    border-radius: var(--radius);
    background: var(--navy);
    color: var(--white);
    text-align: center;
    transform: translate(-50%, -50%);
}

.problem-metrics {
    display: grid;
    gap: 22px;
    margin: 0;
    padding: 0;
}

.problem-metric {
    display: grid;
    grid-template-columns: 42px minmax(0, 1fr);
    align-items: center;
    gap: 18px;
    text-align: left;
}

.problem-metric-icon {
    display: grid;
    width: 34px;
    height: 34px;
    place-items: center;
}

.problem-panel-negative .problem-metric-icon {
    background: url("/products/ai-resheniya/ai-pomoshnik/img/clock-icon.svg") center / contain no-repeat;
}

.problem-panel-positive .problem-metric-icon::before {
    color: var(--cyan2);
    content: "✓";
    font-weight: 900;
    font-size: 28px;
    margin-right: 10px;
}

.problem-metric strong {
    display: block;
    color: var(--turquoise);
    font-size: clamp(30px, 4vw, 44px);
    line-height: 1;
}

.problem-metric span:not(.problem-metric-icon) {
    display: block;
    margin-top: 8px;
    color: var(--muted);
    font-size: 17px;
    line-height: 1.35;
    font-weight: 750;
}

.problem-arrow {
    position: relative;
    width: 72px;
    height: 30px;
    justify-self: center;
    background: linear-gradient(135deg, #4f8cff, var(--turquoise));
    clip-path: polygon(0 24%, 62% 24%, 62% 0, 100% 50%, 62% 100%, 62% 76%, 0 76%);
    filter: drop-shadow(0 10px 18px rgba(79, 140, 255, .28));
}

.deployment-section {
    background: linear-gradient(135deg, #07131f, #0b2431);
}


.deployment-head p {
    max-width: none;
    padding: 20px 24px;
    border: 1px solid var(--turquoise);
    border-radius: var(--radius);
    background: rgba(102, 227, 255, .08);
    color: var(--muted);
    font-weight: 850;
}

.deployment-table-wrap {
    overflow-x: auto;
    padding: 4px 0 12px;
}

.deployment-table {
    display: grid;
    min-width: 920px;
    overflow: hidden;
    border: 1px solid rgba(102, 227, 255, .58);
    border-radius: var(--radius);
    background: rgba(5, 20, 32, .72);
    box-shadow: inset 0 0 36px rgba(102, 227, 255, .05);
}

.deployment-table-row {
    display: grid;
    grid-template-columns: minmax(215px, .72fr) repeat(2, minmax(0, 1fr));
    border-top: 1px solid rgba(102, 227, 255, .24);
}

.deployment-table-row:first-child {
    border-top: 0;
}

.deployment-table-cell {
    min-height: 96px;
    padding: 20px;
    border-left: 1px solid rgba(102, 227, 255, .24);
    background: rgba(255, 255, 255, .025);
    color: #d4e2e9;
    transition: background .22s ease, color .22s ease;
}

.deployment-table-cell:first-child {
    border-left: 0;
}

.deployment-table-row:not(.deployment-table-head):hover .deployment-table-cell {
    background: rgba(102, 227, 255, .075);
}

.deployment-table-head .deployment-table-cell {
    display: flex;
    align-items: center;
    gap: 14px;
    min-height: 76px;
    background: linear-gradient(135deg, rgba(102, 227, 255, .16), rgba(79, 140, 255, .08));
    color: var(--white);
    font-size: 21px;
    font-weight: 850;
}

.deployment-table-head .deployment-table-cell span:not(.deployment-table-icon) {
    color: var(--muted);
    font-size: .82em;
}

.deployment-table-icon {
    display: grid;
    flex: 0 0 38px;
    width: 38px;
    height: 38px;
    place-items: center;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--turquoise), #d9fbff);
    box-shadow: 0 0 22px rgba(102, 227, 255, .32);
    font-size: 19px;
}

.deployment-table-criterion {
    display: flex;
    align-items: center;
    background: rgba(2, 12, 22, .36);
    color: var(--white);
    font-weight: 850;
}

.deployment-table-cell strong {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 8px;
    color: var(--white);
    font-size: 22px;
    line-height: 1.2;
}

.deployment-table-cell strong span {
    color: var(--turquoise);
}

.deployment-table-cell p {
    margin: 0;
    color: var(--muted);
    font-size: 15px;
    line-height: 1.45;
}

.model-choice {
    margin-top: 42px;
}

.model-choice h3 {
    margin-bottom: 18px;
    color: var(--white);
    font-size: clamp(26px, 3vw, 38px);
}

.model-choice-list {
    display: grid;
    gap: 10px;
}

.model-choice-row {
    display: grid;
    grid-template-columns: minmax(220px, .9fr) minmax(0, 1.4fr);
    align-items: center;
    gap: 28px;
    min-height: 64px;
    padding: 14px 24px;
    border: 1px solid rgba(102, 227, 255, .32);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, .04);
    transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
}

.model-choice-row:nth-child(odd) {
    background: rgba(102, 227, 255, .08);
}

.model-choice-row:hover {
    transform: translateY(-4px);
    border-color: var(--turquoise);
    box-shadow: 0 0 26px rgba(102, 227, 255, .16);
}

.model-choice-row strong {
    color: var(--white);
    font-size: 19px;
}

.model-choice-row span {
    color: var(--muted);
    font-size: 17px;
}



.skills-section {
    background: linear-gradient(135deg, #07131f, #082538);
}

.skills-section .skills-head h2 {
    color: var(--white);
}

.skills-head p,
.roi-head p {
    max-width: none;
}

.skills-head p {
    color: var(--muted);
}

.skill-thought {
    width: 100%;
    margin: 0 auto 36px;
    padding: 20px 24px;
    border: 1px solid var(--turquoise);
    border-radius: var(--radius);
    background: rgba(102, 227, 255, .08);
    color: var(--white);
    font-size: 18px;
    font-weight: 900;
    text-align: center;
}

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

.skill-card {
    display: flex;
    flex-direction: column;
    min-height: 555px;
    padding: 34px 24px 28px;
    border-color: rgba(102, 227, 255, .58);
    border-radius: 16px;
    background: rgba(255, 255, 255, .045);
    color: var(--white);
    text-align: center;
    box-shadow: inset 0 0 34px rgba(102, 227, 255, .035);
}

.skill-card-icon {
    display: block;
    width: 104px;
    height: 104px;
    margin: 0 auto 22px;
    object-fit: contain;
    filter: drop-shadow(0 0 24px rgba(102, 227, 255, .34));
}

.skill-card h3 {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 70px;
    margin: 0 0 24px;
    color: var(--white);
    font-size: 24px;
    line-height: 1.08;
    text-align: center;
}

.skill-card p {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 136px;
    margin: 0 0 24px;
    padding: 20px 18px;
    border: 2px solid var(--turquoise);
    border-radius: 6px;
    color: var(--white);
    font-weight: 850;
    line-height: 1.55;
}

.skill-metrics {
    display: grid;
    gap: 24px;
    margin: auto 0 0;
    padding: 0;
    list-style: none;
}

.skill-metrics li {
    min-height: 66px;
    padding: 0;
    border: 0;
    color: var(--white);
    line-height: 1.3;
    text-align: center;
}

.skill-metrics strong {
    display: block;
    margin-bottom: 10px;
    color: var(--turquoise);
    font-size: 34px;
    font-weight: 900;
    line-height: 1;
}

.skill-metrics span {
    display: block;
    color: var(--white);
    font-size: 15px;
}

.number {
    display: inline-grid;
    min-width: 48px;
    height: 34px;
    margin-bottom: 24px;
    padding: 0 10px;
    place-items: center;
    border-radius: 6px;
    color: var(--white);
    background: linear-gradient(135deg, #4f8cff, #66e3ff);
    font-size: 17px;
    font-weight: 900;
}

.process-heading {
    max-width: none;
    text-align: center;
}



.launch-section .process-heading h2 {
    color: var(--white);
}

.process-heading p {
    max-width: none;
    color: var(--muted);
}

.launch-steps {
    position: relative;
    display: grid;
    gap: 28px;
    align-items: center;
    padding: 50px;
    overflow: hidden;
    border: 1px solid rgba(102, 227, 255, .36);
    border-radius: var(--radius);
    background: #070c1e;
    background-image: url("../img/launch.png");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    box-shadow: var(--shadow);
}

.launch-steps__bg {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle, rgba(213, 245, 255, .1) 0%, rgba(236, 236, 236, .35) 100%);
    pointer-events: none;
}

.launch-steps article {
    position: relative;
    display: grid;
    grid-template-columns: 60px 340px 1fr;
    align-items: center;
    gap: 0;
    padding: 20px;
    border: 1px solid rgba(102, 227, 255, .34);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, .9);
    color: var(--ink);
    transition: transform .22s ease, border-color .22s ease, box-shadow .22s ease;
}

.launch-steps article:hover {
    transform: translateY(-5px);
    border-color: var(--turquoise);
    box-shadow: 0 0 30px rgba(102, 227, 255, .22);
}

.launch-steps article:not(:last-child)::after {
    content: "";
    position: absolute;
    right: calc(50% - 10px);
    bottom: -25px;
    width: 28px;
    height: 20px;
    background-image: url("../img/arrow-icon.svg");
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    transform: rotate(90deg);
}

.launch-steps__num {
    display: flex;
    align-items: center;
    justify-content: center;
}

.launch-steps strong {
    display: block;
    color: var(--turquoise);
    font-size: 48px;
    line-height: 1;
    text-align: center;
}

.launch-steps__title {
    display: flex;
    align-items: center;
    justify-content: center;
    padding-right: 15px;
}

.launch-steps h3 {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0;
    text-align: center;
}

.launch-steps ul {
    margin: 0;
    padding-left: 15px;
}

.launch-steps li {
    position: relative;
    color: var(--muted-dark);
    margin-bottom: 8px;
    line-height: 1.4;
    list-style-type: none;
}

.launch-steps li:not(:last-child) {
    padding-bottom: 2px;
}

.launch-steps li:last-child {
    padding-bottom: 0;
    margin-bottom: 0;
}

.launch-steps li::before {
    content: "✓";
    position: absolute;
    left: -20px;
    color: var(--turquoise);
    font-weight: 900;
    margin-right: 10px;
}

.roi-head {
    text-align: center;
}

.roi-section {
    background: linear-gradient(135deg, var(--navy), var(--navy-2));
    color: var(--white);
}

.roi-head p {
    color: var(--muted);
}

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

.roi-card {
    display: grid;
    min-height: 210px;
    padding: 30px 24px 26px;
    border: 1px solid rgba(102, 227, 255, .42);
    border-radius: var(--radius);
    background: var(--navy-2);
    text-align: center;
    box-shadow: 0 18px 44px rgba(8, 35, 46, .08);
    transition: transform .22s ease, border-color .22s ease, box-shadow .22s ease;
}

.roi-card:hover {
    transform: translateY(-7px);
    border-color: var(--turquoise);
    box-shadow: 0 18px 44px rgba(34, 91, 170, .16), 0 0 34px rgba(102, 227, 255, .18);
}

.roi-card strong {
    display: block;
    color: var(--turquoise);
    font-size: clamp(42px, 5vw, 58px);
    line-height: 1;
}

.roi-card span {
    display: block;
    margin-top: 10px;
    color: var(--white);
    font-size: 19px;
    font-weight: 850;
}

.roi-card p {
    margin-top: 18px;
    padding-top: 18px;
    border-top: 1px solid rgba(102, 227, 255, .22);
    color: var(--muted);
    font-weight: 700;
}

.evidence-section {
    color: var(--ink);
    background: var(--white);
}

.cases-section {
    color: var(--ink);
    background: var(--white);
}

.evidence-head {
    display: grid;
    grid-template-columns: minmax(0, 1.3fr) minmax(300px, .7fr);
    align-items: start;
    gap: clamp(48px, 8vw, 120px);
    margin-bottom: 46px;
}

.evidence-head h2 {
    max-width: 760px;
    font-size: clamp(38px, 4.5vw, 44px);
    line-height: 1.08;
}

.evidence-head p {
    max-width: 430px;
    justify-self: end;
    color: var(--muted-dark);
    font-size: 17px;
    line-height: 1.6;
}

.evidence-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    border-top: 1px solid var(--line);
    border-left: 1px solid var(--line);
}

.evidence-card {
    min-height: 230px;
    padding: clamp(26px, 3vw, 38px);
    border-right: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}

.evidence-label {
    display: block;
    margin-bottom: 22px;
    color: var(--turquoise);
    font-size: 13px;
    line-height: 1;
    font-weight: 850;
    letter-spacing: .08em;
}

.evidence-card h3 {
    margin-bottom: 20px;
    font-size: 20px;
}

.evidence-card p {
    color: var(--muted-dark);
    font-size: 15px;
    line-height: 1.55;
}

.evidence-card strong {
    display: block;
    margin-top: 14px;
    color: var(--ink);
    font-size: 13px;
    line-height: 1.45;
}

.document-flow-section {
    position: relative;
    overflow: hidden;
    color: var(--white);
    background:
        radial-gradient(circle at 82% 15%, rgba(38, 120, 232, .13), transparent 32%),
        var(--navy);
}

.document-flow-head {
    display: grid;
    grid-template-columns: minmax(0, 2fr) minmax(300px, .7fr);
    align-items: center;
    gap: clamp(48px, 8vw, 120px);
    margin-bottom: 48px;
}

.document-flow-head h2 {
    max-width: 760px;
    font-size: clamp(38px, 4.5vw, 44px);
    line-height: 1.08;
}

.document-flow-head p {
    max-width: 430px;
    justify-self: end;
    color: var(--muted);
    font-size: 17px;
    line-height: 1.6;
}

.document-flow-steps {
    position: relative;
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 30px;
    margin: 0;
    padding: 34px 0 42px;
    list-style: none;
}

.document-flow-steps::before {
    content: "";
    position: absolute;
    top: 4px;
    right: 0;
    left: 0;
    height: 1px;
    background: rgba(102, 227, 255, .25);
}

.document-flow-steps li {
    position: relative;
}

.document-flow-steps li::before {
    content: "";
    position: absolute;
    top: -30px;
    left: 0;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--turquoise);
    box-shadow: 0 0 18px rgba(53, 215, 229, .32);
    transform: translateY(-50%);
}

.document-flow-number {
    display: block;
    margin-bottom: 20px;
    color: var(--turquoise);
    font-size: 13px;
    line-height: 1;
    font-weight: 850;
}

.document-flow-steps h3 {
    margin-bottom: 14px;
    color: var(--white);
    font-size: 20px;
}

.document-flow-steps p {
    color: var(--muted);
    font-size: 14px;
    line-height: 1.55;
}

.document-flow-examples {
    padding: 28px 30px;
    border: 1px solid rgba(102, 227, 255, .26);
    background: rgba(102, 227, 255, .045);
}

.document-flow-examples > strong {
    display: block;
    margin-bottom: 18px;
    color: var(--turquoise);
    font-size: 13px;
    line-height: 1;
    font-weight: 850;
    letter-spacing: .1em;
    text-transform: uppercase;
}

.document-flow-examples ul {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.document-flow-examples li {
    padding: 10px 14px;
    border: 1px solid rgba(102, 227, 255, .34);
    border-radius: 999px;
    color: var(--muted);
    font-size: 13px;
    line-height: 1.25;
}

.pilot-section {
    color: var(--ink);
    background:
        radial-gradient(circle at 88% 10%, rgba(45, 217, 243, .12), transparent 30%),
        var(--white);
}

.pilot-head {
    display: grid;
    grid-template-columns: minmax(0, 1.25fr) minmax(300px, .75fr);
    align-items: start;
    gap: clamp(48px, 8vw, 120px);
    margin-bottom: 44px;
}

.pilot-head h2 {
    max-width: 760px;
    font-size: clamp(38px, 4.5vw, 44px);
    line-height: 1.08;
}

.pilot-head p {
    max-width: 440px;
    justify-self: end;
    color: var(--muted-dark);
    font-size: 17px;
    line-height: 1.6;
}

.pilot-layout {
    display: grid;
    grid-template-columns: minmax(300px, .8fr) minmax(0, 1.2fr);
    gap: clamp(36px, 6vw, 80px);
    align-items: stretch;
}

.pilot-summary {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.pilot-price {
    display: block;
    color: var(--turquoise);
    font-size: clamp(40px, 5vw, 64px);
    line-height: 1;
    font-weight: 850;
}

.pilot-summary > h3 {
    margin-top: 12px;
    font-size: 21px;
}

.pilot-summary > p {
    margin-top: 24px;
    color: var(--muted-dark);
    font-size: 15px;
    line-height: 1.55;
}

.pilot-result {
    width: 100%;
    margin-top: 30px;
    padding: 24px;
    border: 1px solid var(--cyan2);
    border-radius: var(--radius);
    background: rgba(39, 214, 176, 0.08);
    color: var(--ink);
    font-size: 18px;
    font-weight: 900;
    text-align: center;
}

.pilot-result h3 {
    margin-bottom: 14px;
    font-size: 18px;
}

.pilot-result p {
    font-size: 14px;
    line-height: 1.55;
}

.pilot-button {
    display: inline-flex;
    min-width: 220px;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    margin-top: 20px;
    border: 1px solid var(--muted-dark);
    color: var(--ink);
    background: transparent;
}

.pilot-button:hover {
    border-color: var(--turquoise);
    color: var(--ink);
    background: rgba(22, 186, 200, .1);
}

.pilot-details {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}

.pilot-list {
    padding: 28px 32px;
}

.pilot-list + .pilot-list {
    border-left: 1px solid var(--line);
}

.pilot-list h3 {
    margin-bottom: 24px;
    font-size: 21px;
}

.pilot-list ul {
    display: grid;
    gap: 17px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.pilot-list li {
    position: relative;
    padding-left: 22px;
    color: var(--muted-dark);
    font-size: 15px;
    line-height: 1.45;
}

.pilot-list li::before {
    content: "✓";
    position: absolute;
    top: 0;
    left: 0;
    color: var(--turquoise);
    font-size: 18px;
    line-height: 1.2;
    font-weight: 850;
}

.interface-grid {
    display: grid;
    grid-template-columns: .72fr 1.28fr;
    align-items: center;
    gap: 52px;
}

.interface-head {
    text-align: center;
}

.interface-list {
    display: grid;
    gap: 14px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.interface-list li {
    position: relative;
    padding-left: 34px;
    color: var(--muted-dark);
    font-size: 18px;
    line-height: 1.45;
}

.interface-list li::before {
    content: "✓";
    position: absolute;
    top: 1px;
    left: 0;
    display: grid;
    width: 24px;
    height: 24px;
    place-items: center;
    border-radius: 50%;
    color: #061126;
    background: var(--turquoise);
    font-size: 14px;
    font-weight: 900;
}

.interface-preview {
    display: block;
    overflow: hidden;
    border: 1px solid rgba(102, 227, 255, .55);
    border-radius: var(--radius);
    background: var(--white);
    box-shadow: var(--shadow);
    cursor: zoom-in;
    transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

.interface-preview:hover {
    transform: translateY(-7px);
    border-color: var(--turquoise);
    box-shadow: 0 30px 80px rgba(10, 157, 150, .2), 0 0 34px rgba(102, 227, 255, .18);
}

.interface-preview img {
    display: block;
    width: 100%;
    height: auto;
}

.app-window {
    overflow: hidden;
    border: 1px solid #c8d7da;
    border-radius: var(--radius);
    background: var(--white);
    box-shadow: var(--shadow);
    transition: transform .25s ease, box-shadow .25s ease;
}

.app-window:hover {
    transform: translateY(-7px);
    box-shadow: 0 30px 80px rgba(10, 157, 150, .2);
}

.app-top {
    display: flex;
    align-items: center;
    gap: 7px;
    height: 50px;
    padding: 0 18px;
    color: #59717c;
    background: #edf4f4;
    font-size: 13px;
    font-weight: 750;
}

.app-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #a8b9bd;
}

.app-title {
    margin-left: 10px;
}

.app-body {
    display: grid;
    grid-template-columns: 170px 1fr;
    min-height: 420px;
}

.app-side {
    padding: 18px 12px;
    color: #b8cbd1;
    background: var(--navy-2);
}

.side-line {
    height: 38px;
    margin-bottom: 8px;
    border-radius: 5px;
    background: rgba(255, 255, 255, .06);
}

.side-line.active {
    background: rgba(59, 130, 246, .22);
    border-left: 3px solid var(--turquoise);
}

.chat {
    padding: 28px;
    background: #f8fbfb;
}

.message {
    max-width: 88%;
    padding: 15px 17px;
    border-radius: var(--radius);
    background: var(--white);
    box-shadow: 0 8px 24px rgba(13, 49, 58, .07);
}

.message.user {
    margin-left: auto;
    color: #174f93;
    background: #e7f2ff;
}

.message.answer {
    margin-top: 20px;
}

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

.source {
    padding: 12px;
    border: 1px solid #d5e2e4;
    border-radius: 6px;
    background: var(--white);
    font-size: 12px;
}

.source strong {
    display: block;
    color: var(--turquoise);
    font-size: 15px;
}

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

.advantages-section {
    background: linear-gradient(135deg, #07131f, #0b2431);
}

.advantages-section .section-head h2 {
    color: var(--white);
}

.advantages-section .section-head p {
    max-width: none;
    color: var(--muted);
}

.check {
    display: grid;
    width: 42px;
    height: 34px;
    margin-bottom: 22px;
    place-items: center;
    border-radius: 6px;
    color: var(--white);
    background: linear-gradient(135deg, #4f8cff, #66e3ff);
    font-size: 20px;
    font-weight: 900;
}

.advantage-card {
    border-color: rgba(102, 227, 255, .55);
    background: rgba(255, 255, 255, .045);
}

.advantage-card h3 {
    color: var(--white);
}

.advantage-card p {
    color: var(--muted);
}

.advantage-card .check {
    color: #061126;
    background: var(--turquoise);
}

.advantage-card:hover {
    transform: translateY(-7px);
    border-color: var(--turquoise);
    box-shadow: 0 18px 44px rgba(34, 91, 170, .16), 0 0 34px rgba(102, 227, 255, .18);
}

.faq-section {
    background: linear-gradient(135deg, #07131f, #0b2431);
}

.faq-section .section-head h2 {
    color: var(--white);
}

.faq-block {
    display: grid;
    width: min(980px, 100%);
    margin: 0 auto;
    gap: 12px;
}

.faq-block details {
    border: 1px solid rgba(102, 227, 255, .32);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, .055);
    color: var(--white);
    transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}

.faq-block details:hover,
.faq-block details[open] {
    transform: translateY(-3px);
    border-color: var(--turquoise);
    box-shadow: 0 0 30px rgba(102, 227, 255, .2);
}

.faq-block summary {
    cursor: pointer;
    padding: 22px 24px;
    color: var(--white);
    font-weight: 900;
}

.faq-block details p {
    margin: 0;
    padding: 0 24px 22px;
    color: var(--muted);
}

.faq-block summary::marker {
    color: var(--turquoise);
}


.consultation {
    background: linear-gradient(135deg, #07131f, #0e2835);
    color: var(--white);
}

.consultation .section-head h2 {
    color: var(--white);
}

.consultation .section-head p {
    color: var(--muted);
}

.consult-grid {
    display: grid;
    grid-template-columns: .82fr 1.18fr;
    gap: 54px;
    align-items: start;
}
.consult-copy h2{
    text-align: start;
}
.consult-copy p {
    margin-top: 18px;
    color: var(--muted);
    font-size: 17px;
}

.consult-list {
    display: grid;
    gap: 12px;
    margin-top: 28px;
}

.consult-list div {
    display: flex;
    gap: 11px;
    color: var(--muted);
}

.consult-list div::before {
    content: "✓";
    color: var(--turquoise);
    font-weight: 900;
}




.field.full {
    grid-column: 1 / -1;
}

.field label {
    display: block;
    margin-bottom: 7px;
    color: #bfd0d6;
    font-size: 13px;
    font-weight: 750;
}

.field input, .field textarea {
    width: 100%;
    border: 1px solid rgba(255, 255, 255, .16);
    border-radius: 6px;
    outline: 0;
    color: var(--white);
    background: rgba(255, 255, 255, .07);
    transition: border-color .2s ease, box-shadow .2s ease;
}

.field input {
    height: 48px;
    padding: 0 14px;
}

.field textarea {
    min-height: 112px;
    padding: 13px 14px;
    resize: vertical;
}

.field input:focus, .field textarea:focus {
    border-color: var(--turquoise);
    box-shadow: 0 0 0 3px rgba(59, 130, 246, .14);
}

.field input::placeholder, .field textarea::placeholder {
    color: #81969f;
}

.policy {
    margin: 16px 0 20px;
    color: #849aa3;
    font-size: 12px;
}

footer {
    color: #b7c8cf;
    background: #040c12;
}

.footer-main {
    display: grid;
    grid-template-columns: 1.2fr 1fr 1fr 1fr;
    gap: 38px;
    padding: 56px 0 38px;
}

.footer-logo {
    width: 58px;
    height: 58px;
    object-fit: contain;
}

.footer-main h3 {
    margin-bottom: 14px;
    color: var(--white);
    font-size: 15px;
}

.footer-main p, .footer-main a {
    color: #8ea4ad;
    font-size: 14px;
}

.footer-main a:hover {
    color: var(--turquoise);
}

.socials {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 18px;
}

.socials a {
    display: grid;
    width: 38px;
    height: 38px;
    place-items: center;
    border: 1px solid #29404a;
    border-radius: 50%;
    color: var(--white);
    font-size: 11px;
    font-weight: 900;
}

.socials a:hover {
    border-color: var(--turquoise);
}

.footer-bottom {
    display: flex;
    align-items: center;
    gap: 24px;
    padding: 20px 0 28px;
    border-top: 1px solid #1c3039;
    font-size: 12px;
}

.footer-bottom a {
    color: #80959e;
}



@media (max-width: 1060px) {
    .pilot-layout {
        grid-template-columns: minmax(280px, .7fr) minmax(0, 1.3fr);
        gap: 36px;
    }

    .pilot-list {
        padding: 26px 22px;
    }

    .security-placement-features {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .security-placement-features li:nth-child(3) {
        border-right: 0;
    }

    .security-placement-features li:nth-child(-n+3) {
        border-bottom: 1px solid rgba(102, 227, 255, .24);
    }

    .document-flow-steps {
        gap: 18px;
    }

    .knowledge-access-head {
        gap: 48px;
    }

    .knowledge-access-layout {
        grid-template-columns: minmax(280px, .75fr) minmax(0, 1.25fr);
    }

    .hero-list li br{
        display: none;
    }
    .hero-list li {
       max-width: 100%;
        font-size: 18px;
    }
    .phone {
        display: none;
    }

    .hero-grid {
        grid-template-columns: 1fr 420px;
    }

    .hero-list {
        max-width: 620px;
    }

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

    .stat {
        min-height: auto;
    }

    .hero-visual {
        width: min(420px, 100%);
    }

    .problem-grid {
        grid-template-columns: minmax(0, 1fr) 58px minmax(0, 1fr);
        gap: 18px;
    }

    .problem-panel {
        min-height: 360px;
        padding: 58px 24px 28px;
    }

    .problem-panel h3 {
        min-width: 220px;
    }

    .problem-metric strong {
        font-size: 34px;
    }

    .problem-metric span:not(.problem-metric-icon) {
        font-size: 15px;
    }

    .deployment-table {
        min-width: 820px;
    }

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

    .skill-card {
        min-height: 500px;
    }

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

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

    .launch-steps {
        padding: 34px;
    }

    .launch-steps article {
        grid-template-columns: 50px 236px 1fr;
    }

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

}

@media (max-width: 780px) {

    .pilot-head,
    .pilot-layout {
        grid-template-columns: 1fr;
    }

    .pilot-head {
        gap: 22px;
        margin-bottom: 32px;
    }

    .pilot-head p {
        max-width: none;
        justify-self: stretch;
    }

    .security-placement-head {
        grid-template-columns: 1fr;
        align-items: start;
        gap: 22px;
        margin-bottom: 32px;
    }

    .security-placement-head p {
        max-width: none;
        justify-self: stretch;
    }

    .security-placement-grid {
        grid-template-columns: 1fr;
    }

    .security-placement-card {
        min-height: 0;
    }

    .document-flow-head {
        grid-template-columns: 1fr;
        gap: 22px;
        margin-bottom: 36px;
    }

    .document-flow-head h2 br {
        display: none;
    }

    .document-flow-head p {
        max-width: none;
        justify-self: stretch;
    }

    .document-flow-steps {
        grid-template-columns: 1fr;
        gap: 0;
        padding: 0 0 10px 32px;
    }

    .document-flow-steps::before {
        top: 4px;
        right: auto;
        bottom: 28px;
        left: 5px;
        width: 1px;
        height: auto;
    }

    .document-flow-steps li {
        padding-bottom: 30px;
    }

    .document-flow-steps li::before {
        top: 3px;
        left: -32px;
        transform: none;
    }

    .document-flow-number {
        margin-bottom: 12px;
    }

    .document-flow-steps h3 {
        margin-bottom: 9px;
    }

    .evidence-head {
        grid-template-columns: 1fr;
        gap: 22px;
        margin-bottom: 32px;
    }

    .evidence-head h2 br {
        display: none;
    }

    .evidence-head p {
        max-width: none;
        justify-self: stretch;
    }

    .knowledge-access-head,
    .knowledge-access-layout {
        grid-template-columns: 1fr;
    }

    .knowledge-access-head {
        gap: 22px;
        margin-bottom: 32px;
    }

    .knowledge-access-head h2 br {
        display: none;
    }

    .knowledge-access-head > p {
        max-width: none;
        justify-self: stretch;
    }

    .knowledge-access-summary {
        min-height: 320px;
    }

    .hero-grid {
        grid-template-columns: 1fr;
        min-height: auto;
        padding: 28px 0 0;
    }

    .hero-copy {
        padding: 0;
    }

    .hero-lead {
        font-size: 17px;
    }

    .hero-stats {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        margin-top: 38px;
        padding-bottom: 48px;
    }

    .stat {
        padding: 14px;
    }

    .stat strong {
        font-size: 27px;
    }

    .stat span {
        font-size: 12px;
    }

    .hero-list {
        gap: 0 10px;
    }

    .hero-visual {
        width: min(360px, 80%);
        margin: 10px auto 0;
    }

    .hero-visual::before {
        width: 360px;
        height: 90px;
        bottom: -74px;
    }

    .hero-visual img {
        top: 36px;
    }

    .problem-head {
        margin-bottom: 28px;
    }

    .problem-grid {
        grid-template-columns: 1fr;
        gap: 26px;
    }

    .problem-panel {
        min-height: 0;
        padding: 54px 24px 26px;
    }

    .problem-panel h3 {
        min-width: 210px;
        padding: 14px 18px;
    }

    .problem-metrics {
        gap: 16px;
    }

    .problem-metric strong {
        font-size: 34px;
    }

    .problem-metric span:not(.problem-metric-icon) {
        font-size: 16px;
    }

    .problem-arrow {
        width: 30px;
        height: 58px;
        transform: rotate(90deg);
    }

    .interface-grid, .consult-grid {
        grid-template-columns: 1fr;
    }

    .interface-grid {
        gap: 34px;
    }

    .app-body {
        grid-template-columns: 1fr;
        min-height: auto;
    }

    .app-side {
        display: none;
    }

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

    .footer-bottom {
        align-items: flex-start;
        flex-wrap: wrap;
    }

    .deployment-table {
        min-width: 760px;
    }

    .deployment-table-row {
        grid-template-columns: 215px repeat(2, minmax(0, 1fr));
    }

    .deployment-table-cell {
        min-height: 88px;
        padding: 16px;
    }

    .deployment-table-head .deployment-table-cell {
        font-size: 18px;
    }

    .launch-steps {
        padding: 30px;
    }

    .launch-steps article {
        grid-template-columns: 1fr;
    }

    .launch-steps h3 {
        padding-bottom: 15px;
    }

    .model-choice-row {
        grid-template-columns: 1fr;
        gap: 6px;
    }



}

@media (max-width: 560px) {
    .pilot-head h2 {
        font-size: 34px;
    }

    .pilot-price {
        font-size: 42px;
    }

    .pilot-details {
        grid-template-columns: 1fr;
    }

    .pilot-list {
        padding: 24px 18px;
    }

    .pilot-list + .pilot-list {
        border-top: 1px solid var(--line);
        border-left: 0;
    }

    .pilot-result {
        padding: 22px 18px;
    }

    .pilot-button {
        width: 100%;
    }

    .security-placement-head h2 {
        font-size: 32px;
    }

    .security-placement-card {
        padding: 24px;
    }

    .security-placement-label {
        margin-bottom: 24px;
    }

    .security-placement-card h3 {
        margin-bottom: 20px;
        font-size: 24px;
    }

    .security-placement-features {
        grid-template-columns: 1fr;
        padding: 8px 18px;
    }

    .security-placement-features li,
    .security-placement-features li:nth-child(3) {
        min-height: 0;
        padding: 13px 4px;
        border-right: 0;
        border-bottom: 1px solid rgba(102, 227, 255, .24);
    }

    .security-placement-features li:last-child {
        border-bottom: 0;
    }

    .document-flow-head h2 {
        font-size: 34px;
    }

    .document-flow-examples {
        padding: 22px 18px;
    }

    .document-flow-examples ul {
        display: grid;
    }

    .document-flow-examples li {
        border-radius: 6px;
    }

    .evidence-head h2 {
        font-size: 34px;
    }

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

    .evidence-card {
        min-height: 0;
        padding: 24px;
    }

    .evidence-label {
        margin-bottom: 16px;
    }

    .evidence-card h3 {
        margin-bottom: 12px;
        font-size: 18px;
    }

    .knowledge-access-head h2 {
        font-size: 34px;
    }

    .knowledge-access-summary {
        min-height: 0;
        gap: 52px;
        padding: 24px;
    }

    .knowledge-access-summary h3 {
        font-size: 24px;
    }

    .knowledge-access-list li {
        grid-template-columns: 30px minmax(0, 1fr);
        gap: 12px;
        padding: 17px 0;
    }

    .knowledge-access-list h3 {
        font-size: 17px;
    }

    h1 {
        font-size: 39px;
    }

    h2 {
        font-size: 31px;
    }

    .section-head {
        margin-bottom: 30px;
    }

    .search-link {
        display: none;
    }

    .hero-actions .btn {
        width: 100%;
        flex-basis: 100%;
    }

    .hero-stats {
        grid-template-columns: 1fr;
        gap: 12px;
        margin-top: 28px;
        padding-bottom: 42px;
    }

    .stat {
        display: grid;
        grid-template-columns: 90px 1fr;
        align-items: center;
        gap: 10px;
    }

    .stat span {
        padding-top: 0;
        font-size: 13px;
    }

    .stat strong {
        padding-bottom: 0;
    }

    .hero-list {
        flex-direction: column;
        gap: 0;
        margin-top: 16px;
    }

    .hero-list li {
        padding: 8px 0;
        font-size: 16px;
        width: 100%;
    }

    .hero-visual {
        width: min(330px, 84%);
    }

    .hero-visual::before {
        width: 300px;
        height: 76px;
        bottom: -58px;
    }

    .hero-visual img {
        top: 32px;
    }

    .problem-head {
        text-align: left;
    }

    .problem-panel {
        padding: 48px 18px 22px;
    }

    .problem-panel h3 {
        min-width: 0;
        width: calc(100% - 44px);
        font-size: 18px;
    }

    .problem-metrics {
        gap: 12px;
    }

    .problem-metric {
        grid-template-columns: 34px minmax(0, 1fr);
        gap: 12px;
    }

    .problem-metric-icon {
        width: 28px;
        height: 28px;
    }

    .problem-panel-positive .problem-metric-icon::before {
        width: 26px;
        height: 26px;
        font-size: 16px;
    }

    .problem-metric strong {
        font-size: 28px;
    }

    .problem-metric span:not(.problem-metric-icon) {
        font-size: 14px;
    }

    .deployment-head p {
        padding: 16px;
    }

    .deployment-table {
        min-width: 700px;
    }

    .deployment-table-row {
        grid-template-columns: 215px repeat(2, minmax(0, 1fr));
    }

    .deployment-table-cell {
        padding: 14px;
    }

    .deployment-table-head .deployment-table-cell {
        font-size: 16px;
    }

    .deployment-table-icon {
        flex-basis: 32px;
        width: 32px;
        height: 32px;
        font-size: 16px;
    }

    .deployment-table-cell strong {
        font-size: 18px;
    }

    .deployment-table-cell p {
        font-size: 14px;
    }

    .model-choice {
        margin-top: 34px;
    }

    .model-choice-row {
        padding: 14px 16px;
    }

    .model-choice-row strong {
        font-size: 17px;
    }

    .model-choice-row span {
        font-size: 15px;
    }

    .problem-grid, .skill-grid, .grid-2, .grid-3, .grid-4,
    .advantage-grid, .form-grid, .sources {
        grid-template-columns: 1fr;
    }

    .skill-thought {
        padding: 16px;
        font-size: 16px;
    }

    .skill-card {
        min-height: 0;
        padding: 28px 20px 24px;
    }

    .skill-card-icon {
        width: 86px;
        height: 86px;
        margin-bottom: 16px;
    }

    .skill-card h3 {
        min-height: 0;
        margin-bottom: 18px;
        font-size: 22px;
    }

    .skill-card p {
        min-height: 112px;
        padding: 16px;
    }

    .skill-metrics {
        gap: 18px;
    }

    .launch-steps {
        padding: 24px;
    }

    .launch-steps article {
        grid-template-columns: 1fr;
        padding: 22px 18px;
    }

    .launch-steps article:not(:last-child)::after {
        bottom: -23px;
    }

    .launch-steps strong {
        font-size: 40px;
    }

    .launch-steps h3 {
        padding-bottom: 15px;
    }

    .field.full {
        grid-column: auto;
    }

    .card {
        padding: 22px;
    }

    .footer-main {
        grid-template-columns: 1fr;
    }

    .form {
        padding: 22px;
    }
}
