:root {
    --brand-blue: #26a1b7;
    --hover-blue: #67b3fd;
    --hover-red: #e31f25;
    --light-blue: #e0f0ff;
    --dark-blue: #0a3c5e;
    --s32: 32px;
}
:root {
    --font-family: "PT Sans", sans-serif;
    --second-family: "Inter", sans-serif;
}

body {
    margin: 0;
    padding: 0;
    cursor: default;
    background: #f6f7fb;
    font-family: var(--font-family);
    font-size: 16px;
    color: #192d41;
    font-weight: 300;
}
a {
    color: #192d41;
}
.logo {
    width: 60%;
    aspect-ratio: 1 / 1; /* квадрат */
    background-image: url("/images/logo.png");
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    display: block;
}
.header-line {
    padding: 20px 0;
    border-bottom: solid 1px #192d41;
}
.menu-item {
    text-decoration: none;
    text-transform: uppercase;
}
.full-width {
    width: 100% !important;
}
.hero {
    gap: 15px;
    padding: 50px 0;
}
.hero-title-1 {
    font-family: var(--second-family);
    font-size: 30px;
    font-weight: bold;
    text-transform: uppercase;
}
.hero-title-2 {
    font-family: var(--second-family);
    font-size: 20px;
    font-weight: bold;
    text-transform: uppercase;
    color: var(--brand-blue);
}
.hero-text {
    margin-top: 15px;
    font-size: 18px;
    font-weight: 200;
}
.button {
    background: #0061e2;
    border: solid 1px #0061e2;
    display: block;
    padding: 10px 20px;
    border-radius: 5px;
    color: #fff;
    text-decoration: none;
    font-weight: bold;
}
.button-white {
    background: transparent;
    border: solid 1px #0061e2;
    display: block;
    padding: 10px 20px;
    border-radius: 5px;
    color: #0061e2;
    text-decoration: none;
    font-weight: bold;
}
.gap-16 {
    gap: 16px;
}
.advantages-item {
    background: #fff;
    padding: 10px 20px;
    border-radius: 10px;
    box-shadow: 0 0 15px #ccc;
    height: calc(100% - 20px);
    text-align: center;
}
.btn {
    background: #0061e2;
    border: solid 1px #0061e2;
    display: block;
    padding: 10px 20px;
    border-radius: 5px;
    color: #fff;
    text-decoration: none;
    font-weight: bold;
    margin: 0 auto;
    max-width: 250px;
    text-align: center;
}
#footer {
    background: #0f2238;
    color: #ffffff;
    padding: 64px 0 32px;
}

.footer-top {
    row-gap: 32px;
}

.footer-logo {
    font-size: 22px;
    font-weight: 800;
    margin-bottom: 16px;
}

.footer-description {
    font-size: 14px;
    color: rgba(255,255,255,0.75);
    line-height: 1.6;
}

.footer-title {
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 16px;
    letter-spacing: 0.05em;
}

.footer-nav ul,
.footer-contacts ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-nav li,
.footer-contacts li {
    margin-bottom: 10px;
    font-size: 14px;
}

footer a {
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    transition: 0.2s ease;
}

footer a:hover {
    color: rgba(255,255,255,1);
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.08);
    padding-top: 24px;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 16px;
    font-size: 13px;
    color: rgba(255,255,255,0.6);
}


.advantages-img img {
    display: block;
    width: 70%;
    margin: 0 auto;
}
.advantages-img {
    margin-bottom: 15px;
}
.flex {
    display: flex;
    flex-wrap: wrap;
}
.align-between {
    justify-content: space-between;
}
.advantages-item-name {
    text-transform: uppercase;
    font-weight: bold;
    margin-bottom: 15px;
    font-size: 20px;
}
.advantages {
    gap: 35px;
}
.advantages-item-text {
    font-size: 20px;
}
.align-right {
    justify-content: right;
}
.title {
    text-transform: uppercase;
    font-size: 52px;
    text-align: center;
}
.about-item-num {
    font-weight: bold;
    color: var(--brand-blue);
    font-size: 55px;
    line-height: 50px;
}
.about-item {
    display: grid;
    grid-template-columns: 25px 1fr;
}
.about-item-title {
    text-transform: uppercase;
    font-weight: bold;
}
/* минимальные стили — под твою сетку/карточки */
.stats { row-gap: 24px; }

.stat-card{
    background:#fff;
    border-radius:14px;
    padding:24px;
    box-shadow:0 6px 18px rgba(10, 20, 40, .08);
    height:calc(100% - 48px);
    display: grid;
    grid-template-columns: 85px 1fr;
    gap: 16px;
    align-items: center;
}

.stat-value{
    display:flex;
    align-items:baseline;
    gap:8px;
    line-height:1;
    font-weight:800;
    color:#0f2238;
    font-size:40px;
}

.stat-prefix{
    font-size:18px;
    font-weight:700;
    color:#0f2238;
    opacity:.75;
    margin-right:2px;
}

.stat-suffix{
    font-size:16px;
    font-weight:700;
    color:#0f2238;
    opacity:.75;
}

.stat-title{
    margin-top:10px;
    font-weight:800;
    letter-spacing:.02em;
    text-transform:uppercase;
    font-size:13px;
    color:#0f2238;
}

.stat-text{
    margin-top:8px;
    font-size:14px;
    color:rgba(15,34,56,.75);
}
.stat-card-ico {
    width: 100%;
    aspect-ratio: 1 / 1;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}
.stat-card-ico-1 {
    background-image: url("/images/num1.jpg");
}
.stat-card-ico-2 {
    background-image: url("/images/num2.jpg");
}
.stat-card-ico-3 {
    background-image: url("/images/num3.jpg");
}
.stat-card-ico-4 {
    background-image: url("/images/num4.jpg");
}
.stat-card-ico-5 {
    background-image: url("/images/num5.jpg");
}
.stat-card-ico-6 {
    background-image: url("/images/num6.jpg");
}
.pricing-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 40px 32px;
    box-shadow: 0 8px 24px rgba(10, 20, 40, 0.08);
}

.pricing-name {
    font-size: 22px;
    font-weight: 700;
    color: #0f2238;
    margin-bottom: 16px;
}

.pricing-price {
    display: flex;
    justify-content: center;
    align-items: baseline;
    gap: 8px;
}

.price-main {
    font-size: 40px;
    font-weight: 800;
    color: #1e4ed8;
}

.price-period {
    font-size: 16px;
    font-weight: 600;
    color: #0f2238;
    opacity: 0.7;
}

.price-sub {
    margin-top: 8px;
    font-size: 14px;
    color: rgba(15, 34, 56, 0.7);
}

.pricing-divider {
    height: 1px;
    background: rgba(15, 34, 56, 0.08);
    margin: 24px 0;
}

.pricing-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.pricing-features li {
    position: relative;
    padding-left: 26px;
    margin-bottom: 12px;
    font-size: 15px;
    color: #0f2238;
}

.pricing-features li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 0;
    color: #10b981;
    font-weight: 700;
}

.pricing-note {
    font-size: 13px;
    color: rgba(15, 34, 56, 0.6);
}

.overlay {
    width: 100%;
    height: 100%;
    position: fixed;
    left: 0;
    top: 0;
    z-index: 100;
    background: rgba(0,0,0,0.55);
    display: none;
}
.content_inject {
    width: 543px;
    height: 414px;
    background: #fff;
    border-radius: 16px;
    margin: auto;
    z-index: 101;
    bottom: 0;
    top: 0;
    right: 0;
    left: 0;
    position: fixed;
    display: none;
}
.content_inject_default {
    padding: 40px;
}
.content_inject_close {
    position: absolute;
    right: 31px;
    top: 31px;
    cursor:pointer;

}
.align-center {
    justify-content: center;
}
.vertical-center {
    align-items: center;
}
.cookies {
    background: #fff;
    border-radius: 5px;
    position: fixed;
    z-index: 950;
    bottom: var(--s32);
    left: 0;
    right: 0;
    box-shadow: 0 0 10px #999;
    display: none;
}
.cookies-close {
    background: url(/images/close.png);
    width: 14px;
    height: 14px;
    position: absolute;
    right: 16px;
    top: 16px;
    cursor: pointer;
}
.cookies-grid {
    padding: 15px 90px;
    display: grid;
    gap: var(--s32);
    grid-template-columns: 1fr 140px;
    align-items: center;
}
.cookies-agree {

    border-radius: 5px;
    padding: 10px 18px;
    background: #000;
    display: inline-block;
    cursor: pointer;
    font-weight: 500;
    font-size: 20px;
    color: #fff;
}