* {
    box-sizing: border-box;
}

:root {
    --container-width: 1200px;
    --section-padding: 72px;
    --section-padding-mobile: 44px;

    --color-text: #1b2b4d;
    --color-text-soft: #4e5f7d;
    --color-accent: #1dafc3;
    --color-accent-dark: #163a70;
    --color-border: #dfe6ee;
    --color-surface: #f6f8fb;
    --color-surface-alt: #eef3f7;
    --color-white: #ffffff;

    --radius-lg: 22px;
    --radius-md: 16px;
    --radius-sm: 12px;

    --shadow-soft: 0 10px 30px rgba(14, 35, 70, 0.06);
    --shadow-hover: 0 14px 34px rgba(14, 35, 70, 0.1);

    --title-xl: 48px;
    --title-lg: 36px;
    --title-md: 24px;
    --text-lg: 18px;
    --text-md: 16px;
    --text-sm: 14px;
}

body {
    margin: 0;
    font-family: Arial, sans-serif;
    background: #ffffff;
    color: var(--color-text);
}

a {
    color: inherit;
}

/* ===== HEADER ===== */

.header {
    display: flex;
    flex-direction: column;
    background: #ffffff;
    border-bottom: 1px solid #eef2f6;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.04);
    align-items: center;
}

.header-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 40px;
    background: #ffffff;
    width: 100%;
    max-width: var(--container-width);
}

.header-right {
    display: flex;
    align-items: center;
    gap: 30px;
}

.header-left {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo-link {
    display: flex;
    align-items: center;
    gap: 15px;
    text-decoration: none;
    color: inherit;
    transition: 0.2s;
}

.logo-link:hover {
    opacity: 0.8;
}

.logo {
    width: 120px;
    max-width: 100%;
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.subtitle {
    font-size: 13px;
    color: #5e6d87;
}

.header-social {
    display: flex;
    gap: 10px;
}

.social {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #333;
    color: white;
    border-radius: 50%;
    text-decoration: none;
    font-size: 14px;
    font-weight: bold;
    transition: 0.2s;
}

.social:hover {
    background: var(--color-accent);
}

.social-icon {
    display: inline-block;
    line-height: 0;
}

.social-icon img {
    width: 32px;
    height: 32px;
    display: block;
}

.social-icon:hover {
    opacity: 0.8;
}

.header-phone {
    text-align: right;
}

.phone-number {
    font-size: 16px;
    font-weight: 700;
    color: var(--color-text);
}

.phone-time {
    font-size: 12px;
    color: #7a889f;
}

.header-buttons {
    display: flex;
    gap: 12px;
}

.consult-btn {
    background: #ffffff;
    border: 2px solid var(--color-accent);
    padding: 10px 20px;
    border-radius: 8px;
    color: var(--color-accent);
    font-weight: 700;
    font-size: 14px;
    cursor: pointer;
    transition: 0.2s;
}

.consult-btn:hover,
.consult-btn:active {
    background: var(--color-accent);
    color: white;
}

.header-nav {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 0;
    padding: 0 40px;
    background: #ffffff;
    border-top: 1px solid #eef2f6;
    width: 100%;
    max-width: var(--container-width);
    margin: 0 auto;
}

.nav-item {
    text-decoration: none;
    color: var(--color-text);
    font-size: 14px;
    font-weight: 500;
    transition: 0.2s;
    padding: 16px 0;
    flex: 1;
    text-align: center;
    border-right: 1px solid #eef2f6;
}

.nav-item:last-child {
    border-right: none;
}

.nav-item:hover {
    color: var(--color-accent);
}

/* ===== MAIN ===== */

main {
    width: 100%;
}

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

.hero {
    background: #ffffff;
    padding: 44px 40px 32px;
    width: 100%;
}

.hero-container {
    max-width: var(--container-width);
    margin: 0 auto;
    width: 100%;
    display: grid;
    grid-template-columns: minmax(0, 1fr) 340px;
    gap: 28px;
    align-items: stretch;
}

.hero-main {
    position: relative;
    min-height: clamp(380px, 30vw, 460px);
    background-image: url("maxim.png");
    background-size: cover;
    background-position: center right;
    background-repeat: no-repeat;
    border-radius: var(--radius-lg);
    overflow: hidden;
    display: flex;
    align-items: center;
}

.hero-content {
    padding: 40px;
    max-width: 48%;
}

.hero-content h1 {
    font-size: 56px;
    color: #145f84;
    margin: 0 0 22px;
    font-weight: 700;
    line-height: 1.02;
}

.hero-content h1 .highlight {
    color: #18b3cc;
}

.hero-content p {
    font-size: 16px;
    color: #2e6b89;
    margin: 0 0 16px;
    line-height: 1.55;
    max-width: 420px;
}

.hero-btn {
    background: #13254d;
    color: white;
    border: none;
    padding: 14px 30px;
    font-size: 16px;
    font-weight: 700;
    border-radius: 10px;
    cursor: pointer;
    transition: 0.25s;
    margin-top: 10px;
    text-decoration: none;

}

.hero-btn:hover {
    background: var(--color-accent);
}

/* ===== RIGHT CARDS ===== */

.hero-cards {
    display: grid;
    grid-template-rows: repeat(3, 1fr);
    gap: 18px;
    height: 100%;
}

.hero-card {
    background: #ffffff;
    border: 1px solid #d7dde6;
    border-radius: var(--radius-md);
    text-align: center;
    cursor: pointer;
    transition: 0.25s;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    padding: 20px;
    box-shadow: 0 6px 18px rgba(15, 35, 70, 0.04);
}

.hero-card:hover {
    box-shadow: var(--shadow-hover);
    transform: translateY(-2px);
    border-color: #c7d6e7;
}

.card-icon {
    font-size: 24px;
    color: var(--color-accent-dark);
    margin-bottom: 14px;
    font-weight: bold;
    line-height: 1;
}

.hero-card p {
    font-size: 16px;
    color: var(--color-text);
    margin: 0;
    font-weight: 600;
    line-height: 1.35;
}

/* ===== SECTION SHARED ===== */

.advantages,
.info,
.turnkey {
    width: 100%;
}

.advantages-container,
.info-container,
.turnkey-container {
    max-width: var(--container-width);
    margin: 0 auto;
}

.advantages-title,
.info-container h2,
.turnkey-title {
    font-size: var(--title-lg);
    line-height: 1.1;
    font-weight: 700;
    color: var(--color-text);
    margin: 0;
    letter-spacing: -0.4px;
}

/* ===== ADVANTAGES ===== */

.advantages {
    background: var(--color-surface-alt);
    padding: var(--section-padding) 40px;
}

.advantages-title {
    margin-bottom: 40px;
    max-width: 560px;
}

.advantages-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    align-items: stretch;
}

.advantage-item {
    background: var(--color-white);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    padding: 28px 26px;
    box-shadow: var(--shadow-soft);
}

.advantage-item h3 {
    margin: 0 0 14px;
    font-size: 22px;
    line-height: 1.25;
    font-weight: 700;
    color: var(--color-text);
}

.advantage-line {
    width: 56px;
    height: 3px;
    background: var(--color-accent);
    border-radius: 999px;
    margin-bottom: 18px;
}

.advantage-item p {
    margin: 0;
    font-size: var(--text-md);
    line-height: 1.65;
    color: var(--color-text-soft);
    max-width: 100%;
}

/* ===== INFO ===== */

.info {
    background: #eef3f7;
    padding: var(--section-padding) 40px;
}

.info-container h2 {
    text-align: left;
    margin-bottom: 40px;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.info-item {
    text-align: left;
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    padding: 28px 26px;
    box-shadow: var(--shadow-soft);
}

.info-item h4 {
    font-size: 22px;
    color: var(--color-text);
    margin: 0 0 12px;
    line-height: 1.25;
    font-weight: 700;
}

.info-item p {
    font-size: var(--text-md);
    color: var(--color-text-soft);
    line-height: 1.65;
    margin: 0;
}

/* ===== TURNKEY ===== */

.turnkey {
    background: #ffffff;
    padding: var(--section-padding) 40px;
}

.turnkey-container {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 380px;
    gap: 40px;
    align-items: center;
}

.turnkey-content {
    max-width: 720px;
}

.turnkey-title {
    margin-bottom: 24px;
    max-width: 560px;
}

.turnkey-text {
    margin: 0 0 28px;
    max-width: 700px;
    font-size: var(--text-md);
    line-height: 1.7;
    color: var(--color-text-soft);
}

.turnkey-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 240px;
    min-height: 54px;
    padding: 14px 28px;
    background: var(--color-accent-dark);
    color: #ffffff;
    text-decoration: none;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 700;
    transition: 0.25s;
    box-shadow: 0 10px 24px rgba(22, 58, 112, 0.16);
}

.turnkey-btn:hover {
    background: var(--color-accent);
}

.turnkey-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.turnkey-image img {
    display: block;
    width: 100%;
    max-width: 380px;
    height: auto;
}

/* ===== ADAPTIVE ===== */

@media (max-width: 1200px) {
    .hero-container {
        grid-template-columns: 1fr 320px;
    }

    .hero-content {
        max-width: 56%;
    }

    .hero-content h1 {
        font-size: 50px;
    }
}

@media (max-width: 1024px) {
    .hero-container {
        grid-template-columns: 1fr;
    }

    .hero-main {
        min-height: 420px;
    }

    .hero-cards {
        grid-template-rows: repeat(3, minmax(110px, 1fr));
    }

    .advantages-grid,
    .info-grid,
    .turnkey-container {
        grid-template-columns: 1fr;
    }

    .turnkey-container {
        gap: 24px;
    }

    .turnkey-image {
        order: 2;
    }

    .turnkey-content {
        order: 1;
    }
}

@media (max-width: 820px) {
    .header-top {
        flex-direction: column;
        gap: 20px;
        align-items: flex-start;
    }

    .header-right {
        flex-wrap: wrap;
        gap: 18px;
    }

    .header-nav {
        flex-wrap: wrap;
        padding: 0 20px;
    }

    .nav-item {
        flex: unset;
        width: 50%;
        border-right: 1px solid #eef2f6;
        border-bottom: 1px solid #eef2f6;
    }

    .hero {
        padding-left: 20px;
        padding-right: 20px;
        padding-top: 30px;
        padding-bottom: 24px;
    }

    .advantages,
    .info,
    .turnkey {
        padding-left: 20px;
        padding-right: 20px;
        padding-top: var(--section-padding-mobile);
        padding-bottom: var(--section-padding-mobile);
    }

    .hero-main {
        min-height: 360px;
        background-position: 74% center;
    }

    .hero-content {
        max-width: 100%;
        padding: 32px 24px;
    }

    .hero-content h1 {
        font-size: 38px;
    }

    .hero-content p {
        font-size: 16px;
        max-width: 100%;
    }

    .advantages-title,
    .info-container h2,
    .turnkey-title {
        font-size: 30px;
        margin-bottom: 24px;
    }

    .advantage-item,
    .info-item {
        padding: 24px 20px;
    }

    .advantage-item h3,
    .info-item h4 {
        font-size: 20px;
    }

    .advantage-item p,
    .info-item p,
    .turnkey-text {
        font-size: 15px;
    }

    .turnkey-btn {
        min-width: 100%;
    }

    .turnkey-image img {
        max-width: 220px;
    }
}

@media (max-width: 560px) {
    .nav-item {
        width: 100%;
        border-right: none;
    }

    .hero-main {
        min-height: 320px;
        background-position: 78% center;
    }

    .hero-content h1 {
        font-size: 30px;
    }

    .hero-btn {
        width: 100%;
    }

    .hero-card p {
        font-size: 15px;
    }

    .advantages-title,
    .info-container h2,
    .turnkey-title {
        font-size: 26px;
    }
}

/* ===== ACTIVE NAV ===== */

.nav-item-active {
    color: var(--color-accent);
    font-weight: 700;
}

/* ===== DECLARATION PAGE HERO ===== */

.declaration-hero {
    background: #f3f3f3;
    padding: 56px 40px 72px;
}

.declaration-hero__container {
    max-width: var(--container-width);
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(0, 1fr) 520px;
    gap: 48px;
    align-items: center;
}

.declaration-hero__content {
    max-width: 720px;
}

.declaration-hero__title {
    margin: 0 0 34px;
    font-size: 58px;
    line-height: 1.06;
    font-weight: 700;
    color: var(--color-text);
    letter-spacing: -1px;
}

.declaration-hero__accent {
    margin-bottom: 24px;
    font-size: 18px;
    line-height: 1.5;
    font-weight: 700;
    color: #18b3cc;
}

.declaration-hero__list {
    list-style: none;
    padding: 0;
    margin: 0 0 36px;
}

.declaration-hero__list li {
    position: relative;
    padding-left: 28px;
    margin-bottom: 12px;
    font-size: 18px;
    line-height: 1.55;
    color: var(--color-text);
}

.declaration-hero__list li::before {
    content: "—";
    position: absolute;
    left: 0;
    top: 0;
    color: var(--color-text);
}

.declaration-hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}

.declaration-hero__btn {
    min-height: 56px;
    padding: 14px 30px;
    border-radius: 10px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 16px;
    font-weight: 700;
    transition: 0.25s;
}

.declaration-hero__btn--primary {
    background: #18b3cc;
    color: #ffffff;
    box-shadow: 0 10px 24px rgba(77, 177, 197, 0.22);
}

.declaration-hero__btn--primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 30px rgba(69, 198, 215, 0.28);
}

.declaration-hero__btn--secondary {
    background: transparent;
    color: var(--color-text);
    border: 2px solid #2b3a57;
}

.declaration-hero__btn--secondary:hover {
    background: #eaf0f6;
}

/* ===== VISUAL ===== */

.declaration-hero__visual {
    position: relative;
    min-height: 470px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.declaration-hero__shape {
    position: absolute;
    width: 430px;
    height: 430px;
    border-radius: 50%;
    background: #b9dce5;
    left: 70px;
    top: 35px;
    z-index: 1;
}

.declaration-hero__line {
    position: absolute;
    border: 3px solid #18b3cc;
    border-radius: 999px;
    background: transparent;
    z-index: 0;
    opacity: 0.95;
}

.declaration-hero__line--one {
    width: 190px;
    height: 410px;
    left: 80px;
    top: 10px;
    transform: rotate(38deg);
    border-left-color: #18b3cc;
    border-top-color: #18b3cc;
    border-right-color: transparent;
    border-bottom-color: transparent;
}

.declaration-hero__line--two {
    width: 220px;
    height: 360px;
    right: 15px;
    top: 95px;
    transform: rotate(40deg);
    border-left-color: #18b3cc;
    border-top-color: #18b3cc;
    border-right-color: transparent;
    border-bottom-color: transparent;
}

.declaration-hero__line--three {
    width: 260px;
    height: 120px;
    left: 120px;
    bottom: 16px;
    transform: rotate(18deg);
    border-left-color: transparent;
    border-top-color: transparent;
    border-right-color: #18b3cc;
    border-bottom-color: #18b3cc;
}

/* ===== DEVICES ===== */

.declaration-device {
    position: absolute;
    z-index: 2;
}

.declaration-device--laptop {
    width: 345px;
    height: 210px;
    right: 46px;
    top: 128px;
    transform: rotate(-2deg);
}

.declaration-device--laptop::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(145deg, #262626, #545454);
    border-radius: 16px 16px 10px 10px;
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.18);
}

.declaration-device--laptop::after {
    content: "";
    position: absolute;
    left: -24px;
    right: -24px;
    bottom: -18px;
    height: 22px;
    background: linear-gradient(180deg, #d9d9d9, #9f9f9f);
    border-radius: 0 0 26px 26px;
    box-shadow: 0 8px 14px rgba(0, 0, 0, 0.12);
}

.declaration-device--phone {
    width: 92px;
    height: 190px;
    right: 10px;
    top: 220px;
    transform: rotate(-6deg);
}

.declaration-device--phone::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(145deg, #ebebeb, #bdbdbd);
    border-radius: 20px;
    box-shadow: 0 14px 28px rgba(0, 0, 0, 0.16);
}

.declaration-device--phone::after {
    content: "";
    position: absolute;
    width: 26px;
    height: 26px;
    border: 2px solid #cfcfcf;
    border-radius: 50%;
    bottom: 8px;
    left: 50%;
    transform: translateX(-50%);
    background: #f7f7f7;
}

.device-screen {
    position: absolute;
    left: 16px;
    top: 14px;
    right: 16px;
    bottom: 22px;
    background: #ffffff;
    border-radius: 8px;
    z-index: 3;
    overflow: hidden;
    padding: 18px 16px;
}

.device-screen--phone {
    left: 8px;
    right: 8px;
    top: 12px;
    bottom: 38px;
    padding: 10px 8px;
    border-radius: 10px;
}

.device-brand {
    font-size: 20px;
    font-weight: 700;
    color: #1a2b4e;
    text-align: center;
    margin-bottom: 16px;
}

.device-topbar {
    height: 12px;
    border-radius: 999px;
    background: #1a2b4e;
    margin-bottom: 14px;
}

.device-field {
    height: 18px;
    border-radius: 6px;
    background: #edf2f7;
    border: 1px solid #dbe4ee;
    margin-bottom: 10px;
}

.device-field--short {
    width: 58%;
}

.device-button {
    width: 84px;
    height: 20px;
    border-radius: 6px;
    background: #1a2b4e;
    margin-top: 12px;
    margin-left: auto;
}

/* ===== CUP ===== */

.declaration-cup {
    position: absolute;
    width: 66px;
    height: 104px;
    left: 118px;
    top: 250px;
    z-index: 3;
    background: linear-gradient(180deg, #fefefe, #e8ecef);
    border-radius: 10px 10px 16px 16px;
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.08);
}

.declaration-cup::after {
    content: "";
    position: absolute;
    left: -10px;
    right: -10px;
    bottom: -8px;
    height: 10px;
    background: rgba(21, 33, 60, 0.08);
    border-radius: 50%;
}

.declaration-cup__pen {
    position: absolute;
    width: 6px;
    border-radius: 999px;
    bottom: 72px;
    transform-origin: bottom center;
}

.declaration-cup__pen--one {
    height: 64px;
    left: 17px;
    background: #2d2d2d;
    transform: rotate(-22deg);
}

.declaration-cup__pen--two {
    height: 74px;
    left: 31px;
    background: #f2b705;
    transform: rotate(4deg);
}

.declaration-cup__pen--three {
    height: 68px;
    left: 45px;
    background: #18b3cc;
    transform: rotate(14deg);
}

/* ===== RESPONSIVE ===== */

@media (max-width: 1200px) {
    .declaration-hero__title {
        font-size: 50px;
    }

    .declaration-hero__container {
        grid-template-columns: minmax(0, 1fr) 470px;
        gap: 32px;
    }
}

@media (max-width: 1024px) {
    .declaration-hero {
        padding: 44px 40px 60px;
    }

    .declaration-hero__container {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .declaration-hero__visual {
        min-height: 420px;
        order: 2;
    }

    .declaration-hero__content {
        order: 1;
    }
}

@media (max-width: 820px) {
    .declaration-hero {
        padding: 34px 20px 46px;
    }

    .declaration-hero__title {
        font-size: 38px;
        margin-bottom: 24px;
    }

    .declaration-hero__accent {
        font-size: 16px;
    }

    .declaration-hero__list li {
        font-size: 16px;
        margin-bottom: 10px;
    }

    .declaration-hero__actions {
        flex-direction: column;
    }

    .declaration-hero__btn {
        width: 100%;
    }

    .declaration-hero__visual {
        min-height: 340px;
        transform: scale(0.82);
        transform-origin: center top;
    }
}

@media (max-width: 560px) {
    .declaration-hero__title {
        font-size: 30px;
    }

    .declaration-hero__accent,
    .declaration-hero__list li {
        font-size: 15px;
    }

    .declaration-hero__visual {
        min-height: 280px;
        transform: scale(0.62);
    }
}

/* ===== DECLARATION OPTIONS ===== */

.declaration-options {
    background: #ffffff;
    padding: 72px 40px;
}

.declaration-options__container {
    max-width: var(--container-width);
    margin: 0 auto;
}

.declaration-options__title {
    margin: 0 0 38px;
    text-align: center;
    font-size: var(--title-lg);
    line-height: 1.12;
    font-weight: 700;
    color: var(--color-text);
    letter-spacing: -0.4px;
}

.declaration-options__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
}

.declaration-option-card {
    background: #eef7fa;
    border: 1px solid #d8e8ee;
    border-radius: var(--radius-md);
    padding: 34px 36px 32px;
    box-shadow: var(--shadow-soft);
}

.declaration-option-card__title {
    margin: 0 0 22px;
    font-size: 24px;
    line-height: 1.35;
    font-weight: 700;
    color: var(--color-text);
}

.declaration-option-card__title span {
    color: var(--color-accent-dark);
}

.declaration-option-card__text {
    margin: 0 0 28px;
    font-size: var(--text-md);
    line-height: 1.7;
    color: var(--color-text-soft);
    max-width: 520px;
}

.declaration-option-card__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 220px;
    min-height: 54px;
    padding: 14px 26px;
    background: var(--color-accent);
    color: #ffffff;
    text-decoration: none;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 700;
    transition: 0.25s;
    box-shadow: 0 10px 24px rgba(29, 175, 195, 0.18);
}

.declaration-option-card__btn:hover {
    background: var(--color-accent-dark);
}

.refusal-block {
    background: #ffffff;
    padding: 56px 40px;
}

.refusal-block__container {
    max-width: 1200px;
    margin: 0 auto;
}

.refusal-block__title {
    margin: 0 0 28px;
    font-size: 44px;
    line-height: 1.08;
    font-weight: 700;
    color: #1b2b4d;
    letter-spacing: -0.6px;
    max-width: 100%;
}

.refusal-block__body {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 560px;
    gap: 34px;
    align-items: center;
}

.refusal-block__content {
    max-width: 620px;
}

.refusal-block__subtitle {
    margin: 0 0 24px;
    font-size: 16px;
    line-height: 1.5;
    color: #304766;
}

.refusal-block__list {
    list-style: none;
    margin: 0 0 24px;
    padding: 0;
}

.refusal-block__list li {
    position: relative;
    padding-left: 24px;
    margin-bottom: 10px;
    font-size: 16px;
    line-height: 1.5;
    color: #1b2b4d;
}

.refusal-block__list li::before {
    content: "—";
    position: absolute;
    left: 0;
    top: 0;
    color: #1b2b4d;
}

.refusal-block__note {
    margin: 0 0 24px;
    color: #304766;
}

.refusal-block__note strong {
    display: block;
    margin-bottom: 6px;
    font-size: 16px;
    line-height: 1.45;
    color: #1b2b4d;
}

.refusal-block__note p {
    margin: 0;
    font-size: 15px;
    line-height: 1.5;
}

.refusal-block__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 220px;
    min-height: 52px;
    padding: 14px 24px;
    border-radius: 10px;
    background: #16264b;
    color: #fff;
    text-decoration: none;
    font-size: 15px;
    font-weight: 700;
    transition: 0.25s;
    box-shadow: 0 10px 24px rgba(22, 38, 75, 0.14);
}

.refusal-block__btn:hover {
    background: #18b3cc;
}

.refusal-block__visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.refusal-visual {
    position: relative;
    width: 100%;
    max-width: 560px;
    height: 300px;
    border-radius: 20px;
    background: linear-gradient(135deg, #eaf6fb 0%, #d9eef6 50%, #c9e7f1 100%);
    overflow: hidden;
    box-shadow: 0 14px 34px rgba(24, 179, 204, 0.07);
}

.refusal-visual__shape {
    position: absolute;
    width: 270px;
    height: 270px;
    right: 70px;
    top: 16px;
    border-radius: 50%;
    background: rgba(24, 179, 204, 0.14);
}

.refusal-visual__line {
    position: absolute;
    border: 2px solid #18b3cc;
    border-radius: 999px;
    opacity: 0.9;
}

.refusal-visual__line--one {
    width: 160px;
    height: 250px;
    left: 74px;
    top: 6px;
    transform: rotate(36deg);
    border-right-color: transparent;
    border-bottom-color: transparent;
}

.refusal-visual__line--two {
    width: 150px;
    height: 220px;
    right: 26px;
    top: 44px;
    transform: rotate(28deg);
    border-left-color: transparent;
    border-bottom-color: transparent;
}

.refusal-visual__line--three {
    width: 190px;
    height: 86px;
    left: 180px;
    bottom: 10px;
    transform: rotate(14deg);
    border-left-color: transparent;
    border-top-color: transparent;
}

.refusal-screen {
    position: absolute;
    left: 28px;
    top: 76px;
    width: 280px;
    height: 150px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.9);
    border: 2px solid #18b3cc;
    box-shadow: 0 14px 28px rgba(21, 43, 77, 0.08);
    z-index: 2;
}

.refusal-screen__inner {
    padding: 22px 22px;
}

.refusal-screen__badge {
    display: inline-block;
    margin-bottom: 12px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1px;
    color: #18b3cc;
}

.refusal-screen__title {
    margin-bottom: 14px;
    font-size: 24px;
    line-height: 1.15;
    font-weight: 700;
    color: #16264b;
}

.refusal-screen__bar {
    width: 130px;
    height: 8px;
    border-radius: 999px;
    background: rgba(24, 179, 204, 0.18);
}

.refusal-screen__bar--short {
    width: 86px;
    margin-top: 8px;
}

.refusal-doc {
    position: absolute;
    width: 126px;
    height: 172px;
    border-radius: 12px;
    background: linear-gradient(180deg, #ffffff 0%, #f6fbfd 100%);
    box-shadow: 0 14px 24px rgba(22, 38, 75, 0.1);
    z-index: 3;
}

.refusal-doc--back {
    right: 34px;
    top: 90px;
    transform: rotate(7deg);
    border: 3px solid rgba(24, 179, 204, 0.55);
    background: transparent;
    box-shadow: none;
}

.refusal-doc--middle {
    right: 46px;
    top: 78px;
    transform: rotate(10deg);
    border: 3px solid rgba(255, 255, 255, 0.9);
    background: transparent;
    box-shadow: none;
}

.refusal-doc--front {
    right: 62px;
    top: 66px;
    transform: rotate(7deg);
    padding: 18px 14px;
}

.refusal-doc__line {
    height: 5px;
    background: #d8e9f0;
    border-radius: 999px;
    margin-bottom: 10px;
}

.refusal-doc__line--short {
    width: 66%;
}

.refusal-doc__box {
    height: 24px;
    border-radius: 6px;
    border: 2px solid #d8e9f0;
    margin: 14px 0 14px;
}

.refusal-doc__sign {
    width: 34px;
    height: 14px;
    border-bottom: 2px solid rgba(24, 179, 204, 0.55);
    border-radius: 50%;
    margin-top: 20px;
}

@media (max-width: 1024px) {
    .refusal-block__body {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 820px) {
    .refusal-block {
        padding: 44px 20px;
    }

    .refusal-block__title {
        font-size: 34px;
        margin-bottom: 22px;
    }

    .refusal-block__btn {
        width: 100%;
    }

    .refusal-visual {
        height: 260px;
    }

    .refusal-screen {
        width: 220px;
        height: 122px;
        left: 18px;
        top: 68px;
    }

    .refusal-screen__inner {
        padding: 16px;
    }

    .refusal-screen__title {
        font-size: 19px;
    }

    .refusal-doc {
        width: 100px;
        height: 140px;
    }

    .refusal-doc--front {
        right: 40px;
        top: 58px;
    }

    .refusal-doc--middle {
        right: 28px;
        top: 68px;
    }

    .refusal-doc--back {
        right: 16px;
        top: 80px;
    }
}

@media (max-width: 560px) {
    .refusal-block__title {
        font-size: 28px;
    }

    .refusal-block__subtitle,
    .refusal-block__list li,
    .refusal-block__note strong,
    .refusal-block__note p {
        font-size: 14px;
    }

    .refusal-visual {
        height: 220px;
    }

    .refusal-screen {
        width: 180px;
        height: 102px;
    }

    .refusal-screen__title {
        font-size: 16px;
    }

    .refusal-doc {
        width: 82px;
        height: 118px;
    }
}

.regulations-page {
    background: #f3f3f3;
    padding: 56px 40px 62px;
}

.regulations-page__container {
    max-width: 1080px;
    margin: 0 auto;
}

.regulations-page__title {
    margin: 0 0 34px;
    text-align: center;
    font-size: 38px;
    line-height: 1.18;
    font-weight: 700;
    color: #16264b;
    letter-spacing: -0.4px;
}

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

.regulation-card {
    display: grid;
    grid-template-columns: 88px minmax(0, 1fr);
    gap: 18px;
    align-items: center;
    min-height: 118px;
    padding: 16px 18px;
    background: #ffffff;
    border: 1px solid #dfe6ee;
    border-radius: 12px;
    box-shadow: 0 8px 22px rgba(14, 35, 70, 0.04);
    transition: 0.2s ease;
}

.regulation-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 28px rgba(14, 35, 70, 0.08);
}

.regulation-card__image {
    width: 88px;
    height: 88px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.regulation-card__image img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.regulation-card__content h3 {
    margin: 0 0 8px;
    font-size: 18px;
    line-height: 1.25;
    font-weight: 600;
    color: #16264b;
}

.regulation-card__code {
    margin-bottom: 10px;
    font-size: 12px;
    line-height: 1.3;
    color: #8a98ac;
}

.regulation-card__link {
    display: inline-block;
    font-size: 13px;
    line-height: 1.3;
    color: #18b3cc;
    text-decoration: none;
    font-weight: 600;
}

.regulation-card__link:hover {
    color: #16264b;
}

.regulations-page__action {
    display: flex;
    justify-content: center;
    margin-top: 26px;
}

.regulations-page__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 290px;
    min-height: 52px;
    padding: 14px 26px;
    background: #163a70;
    color: #ffffff;
    text-decoration: none;
    border-radius: 10px;
    font-size: 15px;
    font-weight: 700;
    transition: 0.2s ease;
    box-shadow: 0 10px 24px rgba(22, 58, 112, 0.14);
}

.regulations-page__btn:hover {
    background: #18b3cc;
}

@media (max-width: 900px) {
    .regulations-page {
        padding: 46px 20px 52px;
    }

    .regulations-page__title {
        font-size: 32px;
        margin-bottom: 26px;
    }

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

@media (max-width: 560px) {
    .regulations-page__title {
        font-size: 26px;
    }

    .regulation-card {
        grid-template-columns: 68px minmax(0, 1fr);
        gap: 14px;
        min-height: 98px;
        padding: 12px 14px;
    }

    .regulation-card__image {
        width: 68px;
        height: 68px;
    }

    .regulation-card__content h3 {
        font-size: 16px;
    }

    .regulations-page__btn {
        width: 100%;
        min-width: 0;
    }
}
/* ===== DECLARATION CONSULT ===== */

.declaration-consult {
    background: #ffffff;
    padding: 72px 40px;
}

.declaration-consult__container {
    max-width: var(--container-width);
    margin: 0 auto;
}

.declaration-consult__title {
    margin: 0 0 46px;
    font-size: 36px;
    line-height: 1.15;
    font-weight: 700;
    color: var(--color-text);
    letter-spacing: -0.4px;
    max-width: 560px;
}

.declaration-consult__body {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 520px;
    gap: 44px;
    align-items: center;
}

.declaration-consult__content {
    max-width: 640px;
}

.declaration-consult__text {
    margin: 0 0 32px;
    font-size: 16px;
    line-height: 1.65;
    color: var(--color-text-soft);
}

.declaration-consult__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 240px;
    min-height: 54px;
    padding: 14px 28px;
    background: var(--color-accent-dark);
    color: #ffffff;
    text-decoration: none;
    border-radius: 10px;
    font-size: 15px;
    font-weight: 700;
    transition: 0.25s;
    box-shadow: 0 10px 24px rgba(22, 58, 112, 0.16);
}

.declaration-consult__btn:hover {
    background: var(--color-accent);
}

.declaration-consult__visual {
    display: flex;
    align-items: center;
    justify-content: center;
}

.declaration-consult__visual img {
    display: block;
    width: 100%;
    max-width: 520px;
    height: auto;
    object-fit: contain;
}

@media (max-width: 1024px) {
    .declaration-consult__body {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .declaration-consult__content {
        max-width: 100%;
    }
}

@media (max-width: 820px) {
    .declaration-consult {
        padding: var(--section-padding-mobile) 20px;
    }

    .declaration-consult__title {
        font-size: 30px;
    }

    .declaration-consult__text {
        font-size: 15px;
    }

    .declaration-consult__btn {
        width: 100%;
    }

    .declaration-consult__visual {
        min-height: 240px;
    }

    .declaration-consult__visual img {
        max-width: 320px;
    }
}

@media (max-width: 560px) {
    .declaration-consult__title {
        font-size: 26px;
    }

    .declaration-consult__text {
        font-size: 14px;
    }

    .declaration-consult__visual {
        min-height: 200px;
    }

    .declaration-consult__visual img {
        max-width: 260px;
    }
}

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

.certificate-hero {
    background: #f3f3f3;
    padding: 56px 40px 72px;
}

.certificate-hero__container {
    max-width: var(--container-width);
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(0, 1fr) 470px;
    gap: 44px;
    align-items: center;
}

.certificate-hero__content {
    max-width: 760px;
}

.certificate-hero__title {
    margin: 0 0 30px;
    font-size: 58px;
    line-height: 1.06;
    font-weight: 700;
    color: var(--color-text);
    letter-spacing: -1px;
}

.certificate-hero__list {
    list-style: none;
    padding: 0;
    margin: 0 0 32px;
}

.certificate-hero__list li {
    position: relative;
    padding-left: 28px;
    margin-bottom: 12px;
    font-size: 17px;
    line-height: 1.55;
    color: var(--color-text);
}

.certificate-hero__list li::before {
    content: "—";
    position: absolute;
    left: 0;
    top: 0;
    color: var(--color-text);
}

.certificate-hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

.certificate-hero__btn {
    min-height: 56px;
    padding: 14px 30px;
    border-radius: 10px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 16px;
    font-weight: 700;
    transition: 0.25s;
}

.certificate-hero__btn--secondary {
    background: #26b7d3;
    color: #ffffff;
    border: none;
    box-shadow: 0 14px 28px rgba(38, 183, 211, 0.18);
}

.certificate-hero__btn--secondary:hover {
    background: #1fa8c3;
}

.certificate-hero__visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.certificate-docs {
    position: relative;
    width: 420px;
    height: 420px;
}

.certificate-doc {
    position: absolute;
    border-radius: 18px;
}

.certificate-doc--back-blue {
    width: 240px;
    height: 310px;
    right: 110px;
    top: 38px;
    border: 4px solid #18b3cc;
    transform: rotate(7deg);
    background: transparent;
}

.certificate-doc--back-cyan {
    width: 240px;
    height: 310px;
    right: 66px;
    top: 92px;
    border: 4px solid #86d2e2;
    transform: rotate(7deg);
    background: transparent;
}

.certificate-doc--main {
    width: 250px;
    height: 330px;
    right: 92px;
    top: 52px;
    background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
    box-shadow: 0 18px 40px rgba(15, 35, 70, 0.16);
    transform: rotate(7deg);
    padding: 26px 22px;
    overflow: hidden;
}

.certificate-doc__logo {
    width: 42px;
    height: 30px;
    border-radius: 6px;
    background: #d8d8d8;
    margin-bottom: 18px;
}

.certificate-doc__line {
    height: 5px;
    border-radius: 999px;
    background: #d7dde5;
    margin-bottom: 10px;
}

.certificate-doc__line--short {
    width: 34%;
    margin-left: auto;
}

.certificate-doc__line--medium {
    width: 62%;
}

.certificate-doc__signature {
    position: absolute;
    left: 26px;
    bottom: 34px;
    width: 54px;
    height: 18px;
    border-bottom: 3px solid #8d9ac8;
    border-radius: 50%;
}

.certificate-doc__stamp {
    position: absolute;
    left: 22px;
    bottom: 20px;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: rgba(141, 154, 200, 0.35);
    border: 2px solid rgba(141, 154, 200, 0.45);
}

/* ===== CERTIFICATE RESPONSIVE ===== */

@media (max-width: 1200px) {
    .certificate-hero__title {
        font-size: 50px;
    }

    .certificate-hero__container {
        grid-template-columns: minmax(0, 1fr) 410px;
        gap: 32px;
    }

    .certificate-docs {
        width: 360px;
        height: 360px;
    }

    .certificate-doc--back-blue,
    .certificate-doc--back-cyan {
        width: 210px;
        height: 275px;
    }

    .certificate-doc--main {
        width: 220px;
        height: 292px;
    }
}

@media (max-width: 1024px) {
    .certificate-hero {
        padding: 44px 40px 60px;
    }

    .certificate-hero__container {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .certificate-hero__visual {
        order: 2;
    }

    .certificate-hero__content {
        order: 1;
    }
}

@media (max-width: 820px) {
    .certificate-hero {
        padding: 34px 20px 46px;
    }

    .certificate-hero__title {
        font-size: 38px;
        margin-bottom: 22px;
    }

    .certificate-hero__list li {
        font-size: 16px;
        margin-bottom: 10px;
    }

    .certificate-hero__actions {
        flex-direction: column;
    }

    .certificate-hero__btn {
        width: 100%;
    }

    .certificate-docs {
        width: 300px;
        height: 300px;
    }

    .certificate-doc--back-blue,
    .certificate-doc--back-cyan {
        width: 176px;
        height: 232px;
    }

    .certificate-doc--main {
        width: 186px;
        height: 248px;
        padding: 20px 16px;
    }
}

@media (max-width: 560px) {
    .certificate-hero__title {
        font-size: 30px;
    }

    .certificate-hero__list li {
        font-size: 15px;
    }

    .certificate-docs {
        width: 250px;
        height: 250px;
    }

    .certificate-doc--back-blue,
    .certificate-doc--back-cyan {
        width: 148px;
        height: 196px;
    }

    .certificate-doc--main {
        width: 156px;
        height: 212px;
        padding: 16px 14px;
    }
}

/* ===== REFUSAL INFO ===== */

.refusal-info {
    background: #f3f3f3;
    padding: 72px 40px;
}

.refusal-info__container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 520px minmax(0, 1fr);
    gap: 56px;
    align-items: center;
}

.refusal-info__visual {
    display: flex;
    align-items: center;
    justify-content: center;
}

.refusal-info__visual img {
    display: block;
    width: 100%;
    max-width: 520px;
    height: auto;
    object-fit: contain;
}

.refusal-info__content {
    max-width: 720px;
}

.refusal-info__lead {
    margin: 0 0 34px;
    font-size: 28px;
    line-height: 1.45;
    font-weight: 400;
    color: #1b2b4d;
}

.refusal-info__text {
    margin: 0 0 38px;
    font-size: 26px;
    line-height: 1.45;
    font-weight: 400;
    color: #1b2b4d;
}

.refusal-info__text strong {
    font-weight: 700;
    color: #16264b;
}

.refusal-info__actions {
    display: flex;
    flex-direction: column;
    gap: 14px;
    max-width: 420px;
}

.refusal-info__btn {
    min-height: 74px;
    padding: 18px 28px;
    border-radius: 10px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 18px;
    font-weight: 700;
    transition: 0.25s;
    text-align: center;
}

.refusal-info__btn--primary {
    background: #18b3cc;
    color: #ffffff;
    box-shadow: 0 12px 26px rgba(24, 179, 204, 0.18);
}

.refusal-info__btn--primary:hover {
    background: #149cb3;
}

.refusal-info__btn--secondary {
    background: transparent;
    color: #18b3cc;
    border: 2px solid #18b3cc;
}

.refusal-info__btn--secondary:hover {
    background: rgba(24, 179, 204, 0.06);
}

@media (max-width: 1200px) {
    .refusal-info__container {
        grid-template-columns: 460px minmax(0, 1fr);
        gap: 40px;
    }

    .refusal-info__lead {
        font-size: 24px;
    }

    .refusal-info__text {
        font-size: 22px;
    }
}

@media (max-width: 1024px) {
    .refusal-info__container {
        grid-template-columns: 1fr;
        gap: 36px;
    }

    .refusal-info__visual {
        order: 1;
    }

    .refusal-info__content {
        order: 2;
        max-width: 100%;
    }
}

@media (max-width: 820px) {
    .refusal-info {
        padding: 52px 20px;
    }

    .refusal-info__lead {
        font-size: 20px;
        margin-bottom: 22px;
    }

    .refusal-info__text {
        font-size: 18px;
        margin-bottom: 28px;
    }

    .refusal-info__actions {
        max-width: 100%;
    }

    .refusal-info__btn {
        width: 100%;
        min-height: 60px;
        font-size: 16px;
    }
}

@media (max-width: 560px) {
    .refusal-info__lead {
        font-size: 18px;
    }

    .refusal-info__text {
        font-size: 16px;
    }
}
/* =========================================================
   REFUSAL LETTER PAGE
   ========================================================= */

/* ===== HERO (на базе главного hero) ===== */

.refusal-page-hero .hero-content {
    max-width: 56%;
}

.refusal-page-hero__main {
    background-image: url("maxim.png");
    background-size: cover;
    background-position: center right;
    background-repeat: no-repeat;
}

.refusal-page-hero .hero-actions {
    display: flex;
    gap: 16px;
    margin-top: 12px;
    flex-wrap: wrap;
}

.refusal-page-hero .hero-btn,
.refusal-page-hero .hero-btn:visited,
.refusal-page-hero .hero-btn:hover,
.refusal-page-hero .hero-btn:active {
    min-width: 180px;
    margin-top: 0;
    text-decoration: none;
}

.refusal-page-hero .hero-btn-secondary,
.refusal-page-hero .hero-btn-secondary:visited,
.refusal-page-hero .hero-btn-secondary:hover,
.refusal-page-hero .hero-btn-secondary:active {
    background: transparent;
    color: #13254d;
    border: 1.5px solid #13254d;
    text-decoration: none;
}

.refusal-page-hero .hero-btn-secondary:hover {
    background: rgba(19, 37, 77, 0.06);
    color: #13254d;
}

/* ===== REFUSAL INFO ===== */

.refusal-info {
    background: #f3f3f3;
    padding: 72px 40px;
}

.refusal-info__container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 520px minmax(0, 1fr);
    gap: 56px;
    align-items: center;
}

.refusal-info__visual {
    display: flex;
    align-items: center;
    justify-content: center;
}

.refusal-info__visual img {
    display: block;
    width: 100%;
    max-width: 520px;
    height: auto;
    object-fit: contain;
}

.refusal-info__content {
    max-width: 720px;
}

.refusal-info__lead {
    margin: 0 0 34px;
    font-size: 28px;
    line-height: 1.45;
    font-weight: 400;
    color: #1b2b4d;
}

.refusal-info__text {
    margin: 0 0 38px;
    font-size: 26px;
    line-height: 1.45;
    font-weight: 400;
    color: #1b2b4d;
}

.refusal-info__text strong {
    font-weight: 700;
    color: #16264b;
}

.refusal-info__actions {
    display: flex;
    flex-direction: column;
    gap: 14px;
    max-width: 420px;
}

.refusal-info__btn,
.refusal-info__btn:visited,
.refusal-info__btn:hover,
.refusal-info__btn:active {
    min-height: 74px;
    padding: 18px 28px;
    border-radius: 10px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 18px;
    font-weight: 700;
    transition: 0.25s;
    text-align: center;
}

.refusal-info__btn--primary {
    background: #18b3cc;
    color: #ffffff;
    box-shadow: 0 12px 26px rgba(24, 179, 204, 0.18);
}

.refusal-info__btn--primary:hover {
    background: #149cb3;
}

.refusal-info__btn--secondary {
    background: transparent;
    color: #18b3cc;
    border: 2px solid #18b3cc;
}

.refusal-info__btn--secondary:hover {
    background: rgba(24, 179, 204, 0.06);
}

/* ===== REFUSAL ARTICLE ===== */

.refusal-article {
    background: #ffffff;
    padding: 72px 40px;
}

.refusal-article__container {
    max-width: 1080px;
    margin: 0 auto;
}

.refusal-article__title {
    margin: 0 0 28px;
    font-size: 54px;
    line-height: 1.08;
    font-weight: 700;
    color: #16264b;
    letter-spacing: -0.8px;
}

.refusal-article__intro {
    margin: 0 0 56px;
    max-width: 1120px;
    font-size: 18px;
    line-height: 1.65;
    color: #304766;
}

.refusal-article__subtitle {
    margin: 0 0 24px;
    font-size: 32px;
    line-height: 1.2;
    font-weight: 700;
    color: #16264b;
    letter-spacing: -0.3px;
}

.refusal-article__text {
    max-width: 1120px;
}

.refusal-article__text p {
    margin: 0 0 24px;
    font-size: 18px;
    line-height: 1.7;
    color: #304766;
}

.refusal-article__text p:last-child {
    margin-bottom: 0;
}

/* ===== REFUSAL TYPES ===== */

.refusal-types {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin: 24px 0 28px;
}

.refusal-type-card {
    display: grid;
    grid-template-columns: 84px minmax(0, 1fr);
    gap: 24px;
    align-items: start;
    background: #f3f3f3;
    border: 1px solid #dfe6ee;
    border-radius: 20px;
    padding: 30px 28px;
    box-shadow: 0 10px 28px rgba(14, 35, 70, 0.05);
}

.refusal-type-card__icon {
    width: 84px;
    height: 84px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.refusal-type-card__icon img {
    display: block;
    width: 84px;
    height: 84px;
    object-fit: contain;
}

.refusal-type-card__content h4 {
    margin: 0 0 14px;
    font-size: 22px;
    line-height: 1.32;
    font-weight: 700;
    color: #16264b;
}

.refusal-type-card__content p {
    margin: 0;
    font-size: 16px;
    line-height: 1.7;
    color: #304766;
    max-width: 420px;
}

.refusal-types-note {
    font-size: 17px;
    line-height: 1.7;
    color: #304766;
}

/* ===== RESPONSIVE ===== */

@media (max-width: 1200px) {
    .refusal-info__container {
        grid-template-columns: 460px minmax(0, 1fr);
        gap: 40px;
    }

    .refusal-info__lead {
        font-size: 24px;
    }

    .refusal-info__text {
        font-size: 22px;
    }

    .refusal-article__title {
        font-size: 44px;
    }

    .refusal-article__subtitle {
        font-size: 28px;
    }
}

@media (max-width: 1024px) {
    .refusal-info__container {
        grid-template-columns: 1fr;
        gap: 36px;
    }

    .refusal-info__visual {
        order: 1;
    }

    .refusal-info__content {
        order: 2;
        max-width: 100%;
    }

    .refusal-types {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 820px) {
    .refusal-page-hero .hero-content {
        max-width: 100%;
    }

    .refusal-page-hero .hero-actions {
        flex-direction: column;
    }

    .refusal-page-hero .hero-btn,
    .refusal-page-hero .hero-btn-secondary {
        width: 100%;
    }

    .refusal-info {
        padding: 52px 20px;
    }

    .refusal-info__lead {
        font-size: 20px;
        margin-bottom: 22px;
    }

    .refusal-info__text {
        font-size: 18px;
        margin-bottom: 28px;
    }

    .refusal-info__actions {
        max-width: 100%;
    }

    .refusal-info__btn {
        width: 100%;
        min-height: 60px;
        font-size: 16px;
    }

    .refusal-article {
        padding: 52px 20px;
    }

    .refusal-article__title {
        font-size: 34px;
        margin-bottom: 22px;
    }

    .refusal-article__intro {
        font-size: 16px;
        margin-bottom: 40px;
    }

    .refusal-article__subtitle {
        font-size: 24px;
        margin-bottom: 18px;
    }

    .refusal-article__text p {
        font-size: 16px;
        margin-bottom: 18px;
    }

    .refusal-type-card {
        grid-template-columns: 72px minmax(0, 1fr);
        gap: 16px;
        padding: 22px 18px;
    }

    .refusal-type-card__icon {
        width: 72px;
        height: 72px;
    }

    .refusal-type-card__icon img {
        width: 72px;
        height: 72px;
    }

    .refusal-type-card__content h4 {
        font-size: 20px;
    }

    .refusal-type-card__content p,
    .refusal-types-note {
        font-size: 15px;
    }
}

@media (max-width: 560px) {
    .refusal-article__title {
        font-size: 28px;
    }

    .refusal-article__subtitle {
        font-size: 22px;
    }

    .refusal-article__intro,
    .refusal-article__text p {
        font-size: 15px;
    }

    .refusal-info__lead {
        font-size: 18px;
    }

    .refusal-info__text {
        font-size: 16px;
    }

    .refusal-type-card__content h4 {
        font-size: 18px;
    }

    .refusal-type-card__content p,
    .refusal-types-note {
        font-size: 14px;
    }
}

/* =========================================================
   VOLUNTARY CERTIFICATION PAGE
   ========================================================= */

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

.vol-hero {
    background: #f3f3f3;
    padding: 56px 40px 72px;
}

.vol-hero__container {
    max-width: var(--container-width);
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(0, 1fr) 470px;
    gap: 48px;
    align-items: center;
}

.vol-hero__content {
    max-width: 720px;
}

.vol-hero__title {
    margin: 0 0 34px;
    font-size: 58px;
    line-height: 1.06;
    font-weight: 700;
    color: var(--color-text);
    letter-spacing: -1px;
}

.vol-hero__accent {
    margin-bottom: 24px;
    font-size: 18px;
    line-height: 1.5;
    font-weight: 700;
    color: #18b3cc;
}

.vol-hero__list {
    list-style: none;
    padding: 0;
    margin: 0 0 36px;
}

.vol-hero__list li {
    position: relative;
    padding-left: 28px;
    margin-bottom: 12px;
    font-size: 18px;
    line-height: 1.55;
    color: var(--color-text);
}

.vol-hero__list li::before {
    content: "—";
    position: absolute;
    left: 0;
    top: 0;
    color: var(--color-text);
}

.vol-hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}

.vol-hero__btn {
    min-height: 56px;
    padding: 14px 30px;
    border-radius: 10px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 16px;
    font-weight: 700;
    transition: 0.25s;
}

.vol-hero__btn--primary {
    background: #18b3cc;
    color: #ffffff;
    box-shadow: 0 10px 24px rgba(77, 177, 197, 0.22);
}

.vol-hero__btn--primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 30px rgba(69, 198, 215, 0.28);
}

.vol-hero__btn--secondary {
    background: transparent;
    color: var(--color-text);
    border: 2px solid #2b3a57;
}

.vol-hero__btn--secondary:hover {
    background: #eaf0f6;
}

/* ===== VOL HERO VISUAL ===== */

.vol-hero__visual {
    position: relative;
    min-height: 420px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.vol-hero__shape {
    position: absolute;
    width: 380px;
    height: 380px;
    border-radius: 50%;
    background: #b9dce5;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
}

.vol-hero__line {
    position: absolute;
    border: 3px solid #18b3cc;
    border-radius: 999px;
    background: transparent;
    z-index: 0;
    opacity: 0.95;
}

.vol-hero__line--one {
    width: 190px;
    height: 360px;
    left: 40px;
    top: 10px;
    transform: rotate(32deg);
    border-left-color: #18b3cc;
    border-top-color: #18b3cc;
    border-right-color: transparent;
    border-bottom-color: transparent;
}

.vol-hero__line--two {
    width: 200px;
    height: 320px;
    right: 10px;
    top: 60px;
    transform: rotate(38deg);
    border-left-color: #18b3cc;
    border-top-color: #18b3cc;
    border-right-color: transparent;
    border-bottom-color: transparent;
}

/* CSS Certificate */

.vol-cert {
    position: absolute;
    width: 220px;
    height: 300px;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%) rotate(4deg);
    background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
    border-radius: 18px;
    box-shadow: 0 18px 40px rgba(15, 35, 70, 0.16);
    padding: 28px 24px;
    z-index: 3;
    overflow: hidden;
}

.vol-cert__header {
    text-align: center;
    margin-bottom: 22px;
}

.vol-cert__badge {
    display: inline-block;
    padding: 4px 14px;
    background: #18b3cc;
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.5px;
    border-radius: 6px;
    margin-bottom: 8px;
}

.vol-cert__label {
    font-size: 16px;
    font-weight: 700;
    color: #16264b;
    letter-spacing: 2px;
}

.vol-cert__line {
    height: 5px;
    border-radius: 999px;
    background: #d7dde5;
    margin-bottom: 12px;
}

.vol-cert__line--short {
    width: 55%;
}

.vol-cert__line--medium {
    width: 75%;
}

.vol-cert__stamp {
    position: absolute;
    right: 28px;
    bottom: 34px;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(141, 154, 200, 0.25);
    border: 3px solid rgba(141, 154, 200, 0.45);
}

.vol-cert__sign {
    position: absolute;
    left: 26px;
    bottom: 38px;
    width: 54px;
    height: 16px;
    border-bottom: 3px solid #8d9ac8;
    border-radius: 50%;
}

/* CSS Checkmark */

.vol-check {
    position: absolute;
    right: 80px;
    top: 60px;
    width: 60px;
    height: 60px;
    background: #18b3cc;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 20px rgba(24, 179, 204, 0.3);
    z-index: 4;
}

.vol-check__icon {
    color: #fff;
    font-size: 28px;
    font-weight: 700;
    line-height: 1;
}

/* ===== VOL ABOUT ===== */

.vol-about {
    background: #ffffff;
    padding: 72px 40px;
}

.vol-about__container {
    max-width: var(--container-width);
    margin: 0 auto;
}

.vol-about__title {
    margin: 0 0 36px;
    font-size: 36px;
    line-height: 1.15;
    font-weight: 700;
    color: var(--color-text);
    letter-spacing: -0.4px;
    max-width: 620px;
}

.vol-about__text p {
    margin: 0 0 24px;
    font-size: 17px;
    line-height: 1.7;
    color: var(--color-text-soft);
    max-width: 960px;
}

.vol-about__text p:last-child {
    margin-bottom: 0;
}

/* ===== VOL PROCESS ===== */

.vol-process {
    background: var(--color-surface-alt);
    padding: 72px 40px;
}

.vol-process__container {
    max-width: var(--container-width);
    margin: 0 auto;
}

.vol-process__title {
    margin: 0 0 36px;
    font-size: 36px;
    line-height: 1.15;
    font-weight: 700;
    color: var(--color-text);
    letter-spacing: -0.4px;
    max-width: 620px;
}

.vol-process__intro {
    margin: 0 0 24px;
    font-size: 17px;
    line-height: 1.7;
    color: var(--color-text-soft);
    max-width: 960px;
}

.vol-process__intro:last-child {
    margin-bottom: 0;
}

/* ===== VOL DOCS ===== */

.vol-docs {
    background: #ffffff;
    padding: 72px 40px;
}

.vol-docs__container {
    max-width: var(--container-width);
    margin: 0 auto;
}

.vol-docs__title {
    margin: 0 0 18px;
    font-size: 36px;
    line-height: 1.15;
    font-weight: 700;
    color: var(--color-text);
    letter-spacing: -0.4px;
}

.vol-docs__subtitle {
    margin: 0 0 36px;
    font-size: 17px;
    line-height: 1.6;
    color: var(--color-text-soft);
}

.vol-docs__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.vol-doc-card {
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    padding: 28px 24px;
    box-shadow: var(--shadow-soft);
}

.vol-doc-card__icon {
    margin-bottom: 18px;
}

.vol-doc-card h3 {
    margin: 0 0 10px;
    font-size: 18px;
    line-height: 1.3;
    font-weight: 700;
    color: var(--color-text);
}

.vol-doc-card p {
    margin: 0;
    font-size: 14px;
    line-height: 1.6;
    color: var(--color-text-soft);
}

/* CSS Icons for documents */

.vol-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.vol-icon--doc {
    background: rgba(24, 179, 204, 0.12);
    flex-direction: column;
    gap: 4px;
    padding: 10px;
}

.vol-icon--doc span {
    display: block;
    width: 100%;
    height: 3px;
    background: #18b3cc;
    border-radius: 999px;
}

.vol-icon--company {
    background: rgba(22, 58, 112, 0.1);
}

.vol-icon--company span {
    display: block;
    width: 22px;
    height: 26px;
    border: 3px solid #163a70;
    border-radius: 4px 4px 0 0;
    position: relative;
}

.vol-icon--company span::after {
    content: "";
    position: absolute;
    bottom: -3px;
    left: -6px;
    right: -6px;
    height: 3px;
    background: #163a70;
    border-radius: 999px;
}

.vol-icon--tu {
    background: rgba(24, 179, 204, 0.12);
}

.vol-icon--tu span {
    font-size: 16px;
    font-weight: 800;
    color: #18b3cc;
    letter-spacing: 1px;
}

.vol-icon--passport {
    background: rgba(22, 58, 112, 0.1);
    flex-direction: column;
    gap: 3px;
    padding: 8px 10px;
}

.vol-icon--passport span:first-child {
    display: block;
    width: 16px;
    height: 16px;
    border: 3px solid #163a70;
    border-radius: 50%;
}

.vol-icon--passport span:last-child {
    display: block;
    width: 100%;
    height: 3px;
    background: #163a70;
    border-radius: 999px;
}

.vol-icon--ogrn {
    background: rgba(24, 179, 204, 0.12);
}

.vol-icon--ogrn span {
    display: block;
    width: 24px;
    height: 24px;
    border: 3px solid #18b3cc;
    border-radius: 6px;
    position: relative;
}

.vol-icon--ogrn span::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 8px;
    height: 8px;
    background: #18b3cc;
    border-radius: 2px;
}

/* ===== VOL GOALS ===== */

.vol-goals {
    background: var(--color-surface-alt);
    padding: 72px 40px;
}

.vol-goals__container {
    max-width: var(--container-width);
    margin: 0 auto;
}

.vol-goals__title {
    margin: 0 0 40px;
    font-size: 36px;
    line-height: 1.15;
    font-weight: 700;
    color: var(--color-text);
    letter-spacing: -0.4px;
    max-width: 620px;
}

.vol-goals__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.vol-goal-card {
    background: var(--color-white);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    padding: 28px 26px;
    box-shadow: var(--shadow-soft);
}

.vol-goal-card__icon {
    margin-bottom: 18px;
}

.vol-goal-card h3 {
    margin: 0 0 12px;
    font-size: 20px;
    line-height: 1.3;
    font-weight: 700;
    color: var(--color-text);
}

.vol-goal-card p {
    margin: 0;
    font-size: 15px;
    line-height: 1.65;
    color: var(--color-text-soft);
}

/* CSS Icons for goals */

.vol-goal-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    position: relative;
}

.vol-goal-icon--trust {
    background: rgba(24, 179, 204, 0.12);
}

.vol-goal-icon--trust::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 20px;
    height: 24px;
    border: 3px solid #18b3cc;
    border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
}

.vol-goal-icon--trust::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -40%) rotate(-45deg);
    width: 8px;
    height: 14px;
    border-bottom: 3px solid #18b3cc;
    border-right: 3px solid #18b3cc;
}

.vol-goal-icon--compete {
    background: rgba(22, 58, 112, 0.1);
}

.vol-goal-icon--compete::before {
    content: "";
    position: absolute;
    top: 12px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 12px solid transparent;
    border-right: 12px solid transparent;
    border-bottom: 18px solid #163a70;
}

.vol-goal-icon--compete::after {
    content: "";
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    width: 22px;
    height: 3px;
    background: #163a70;
    border-radius: 999px;
}

.vol-goal-icon--standard {
    background: rgba(24, 179, 204, 0.12);
}

.vol-goal-icon--standard::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 22px;
    height: 22px;
    border: 3px solid #18b3cc;
    border-radius: 50%;
}

.vol-goal-icon--standard::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 10px;
    height: 10px;
    background: #18b3cc;
    border-radius: 50%;
}

.vol-goal-icon--risk {
    background: rgba(22, 58, 112, 0.1);
}

.vol-goal-icon--risk::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 24px;
    height: 24px;
    border: 3px solid #163a70;
    border-radius: 6px;
    background: transparent;
}

.vol-goal-icon--risk::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(-45deg);
    width: 16px;
    height: 3px;
    background: #163a70;
    border-radius: 999px;
}

.vol-goal-icon--reputation {
    background: rgba(24, 179, 204, 0.12);
}

.vol-goal-icon--reputation::before {
    content: "";
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 14px solid transparent;
    border-right: 14px solid transparent;
    border-bottom: 10px solid #18b3cc;
}

.vol-goal-icon--reputation::after {
    content: "";
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    width: 28px;
    height: 14px;
    background: #18b3cc;
    border-radius: 0 0 6px 6px;
}

/* ===== VOL REGISTRY ===== */

.vol-registry {
    background: #ffffff;
    padding: 72px 40px;
}

.vol-registry__container {
    max-width: var(--container-width);
    margin: 0 auto;
}

.vol-registry__title {
    margin: 0 0 18px;
    font-size: 36px;
    line-height: 1.15;
    font-weight: 700;
    color: var(--color-text);
    letter-spacing: -0.4px;
    max-width: 700px;
}

.vol-registry__intro {
    margin: 0 0 36px;
    font-size: 17px;
    line-height: 1.6;
    color: var(--color-text-soft);
}

.vol-registry__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.vol-registry-card {
    background: #eef7fa;
    border: 1px solid #d8e8ee;
    border-radius: var(--radius-md);
    padding: 30px 28px;
    box-shadow: var(--shadow-soft);
}

.vol-registry-card h3 {
    margin: 0 0 12px;
    font-size: 20px;
    line-height: 1.35;
    font-weight: 700;
    color: var(--color-text);
}

.vol-registry-card p {
    margin: 0;
    font-size: 15px;
    line-height: 1.65;
    color: var(--color-text-soft);
}

/* ===== VOL CTA ===== */

.vol-cta {
    background: var(--color-surface-alt);
    padding: 72px 40px;
}

.vol-cta__container {
    max-width: var(--container-width);
    margin: 0 auto;
}

.vol-cta__title {
    margin: 0 0 32px;
    font-size: 36px;
    line-height: 1.15;
    font-weight: 700;
    color: var(--color-text);
    letter-spacing: -0.4px;
    max-width: 560px;
}

.vol-cta__text {
    margin: 0 0 32px;
    font-size: 16px;
    line-height: 1.65;
    color: var(--color-text-soft);
    max-width: 640px;
}

.vol-cta__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 240px;
    min-height: 54px;
    padding: 14px 28px;
    background: var(--color-accent-dark);
    color: #ffffff;
    text-decoration: none;
    border-radius: 10px;
    font-size: 15px;
    font-weight: 700;
    transition: 0.25s;
    box-shadow: 0 10px 24px rgba(22, 58, 112, 0.16);
}

.vol-cta__btn:hover {
    background: var(--color-accent);
}

/* ===== VOL RESPONSIVE ===== */

@media (max-width: 1200px) {
    .vol-hero__title {
        font-size: 50px;
    }

    .vol-hero__container {
        grid-template-columns: minmax(0, 1fr) 420px;
        gap: 32px;
    }

    .vol-hero__shape {
        width: 320px;
        height: 320px;
    }
}

@media (max-width: 1024px) {
    .vol-hero {
        padding: 44px 40px 60px;
    }

    .vol-hero__container {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .vol-hero__visual {
        min-height: 380px;
        order: 2;
    }

    .vol-hero__content {
        order: 1;
    }

    .vol-docs__grid,
    .vol-goals__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .vol-registry__grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 820px) {
    .vol-hero {
        padding: 34px 20px 46px;
    }

    .vol-hero__title {
        font-size: 38px;
        margin-bottom: 24px;
    }

    .vol-hero__accent {
        font-size: 16px;
    }

    .vol-hero__list li {
        font-size: 16px;
        margin-bottom: 10px;
    }

    .vol-hero__actions {
        flex-direction: column;
    }

    .vol-hero__btn {
        width: 100%;
    }

    .vol-hero__visual {
        min-height: 320px;
        transform: scale(0.82);
        transform-origin: center top;
    }

    .vol-about,
    .vol-process,
    .vol-docs,
    .vol-goals,
    .vol-registry,
    .vol-cta {
        padding: 52px 20px;
    }

    .vol-about__title,
    .vol-process__title,
    .vol-docs__title,
    .vol-goals__title,
    .vol-registry__title,
    .vol-cta__title {
        font-size: 30px;
        margin-bottom: 24px;
    }

    .vol-about__text p,
    .vol-process__intro {
        font-size: 16px;
    }

    .vol-docs__grid,
    .vol-goals__grid {
        grid-template-columns: 1fr;
    }

    .vol-goal-card h3,
    .vol-doc-card h3 {
        font-size: 18px;
    }

    .vol-cta__btn {
        width: 100%;
    }
}

@media (max-width: 560px) {
    .vol-hero__title {
        font-size: 30px;
    }

    .vol-hero__accent,
    .vol-hero__list li {
        font-size: 15px;
    }

    .vol-hero__visual {
        min-height: 280px;
        transform: scale(0.62);
    }

    .vol-about__title,
    .vol-process__title,
    .vol-docs__title,
    .vol-goals__title,
    .vol-registry__title,
    .vol-cta__title {
        font-size: 26px;
    }

    .vol-about__text p,
    .vol-process__intro,
    .vol-docs__subtitle,
    .vol-registry__intro {
        font-size: 15px;
    }

    .vol-cta__text {
        font-size: 15px;
    }
}

/* =========================================================
   ABOUT PAGE
   ========================================================= */

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

.about-hero {
    background: #f3f3f3;
    padding: 56px 40px 72px;
}

.about-hero__container {
    max-width: var(--container-width);
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(0, 1fr) 420px;
    gap: 48px;
    align-items: center;
}

.about-hero__content {
    max-width: 720px;
}

.about-hero__title {
    margin: 0 0 34px;
    font-size: 58px;
    line-height: 1.06;
    font-weight: 700;
    color: var(--color-text);
    letter-spacing: -1px;
}

.about-hero__accent {
    margin-bottom: 24px;
    font-size: 18px;
    line-height: 1.5;
    font-weight: 700;
    color: #18b3cc;
}

.about-hero__list {
    list-style: none;
    padding: 0;
    margin: 0 0 36px;
}

.about-hero__list li {
    position: relative;
    padding-left: 28px;
    margin-bottom: 12px;
    font-size: 18px;
    line-height: 1.55;
    color: var(--color-text);
}

.about-hero__list li::before {
    content: "—";
    position: absolute;
    left: 0;
    top: 0;
    color: var(--color-text);
}

.about-hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}

.about-hero__btn {
    min-height: 56px;
    padding: 14px 30px;
    border-radius: 10px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 16px;
    font-weight: 700;
    transition: 0.25s;
}

.about-hero__btn--primary {
    background: #18b3cc;
    color: #ffffff;
    box-shadow: 0 10px 24px rgba(77, 177, 197, 0.22);
}

.about-hero__btn--primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 30px rgba(69, 198, 215, 0.28);
}

/* ===== ABOUT HERO VISUAL ===== */

.about-hero__visual {
    position: relative;
    min-height: 380px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-hero__shape {
    position: absolute;
    width: 340px;
    height: 340px;
    border-radius: 50%;
    background: #b9dce5;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
}

.about-hero__line {
    position: absolute;
    border: 3px solid #18b3cc;
    border-radius: 999px;
    background: transparent;
    z-index: 0;
    opacity: 0.95;
}

.about-hero__line--one {
    width: 180px;
    height: 320px;
    left: 30px;
    top: 20px;
    transform: rotate(30deg);
    border-left-color: #18b3cc;
    border-top-color: #18b3cc;
    border-right-color: transparent;
    border-bottom-color: transparent;
}

.about-hero__line--two {
    width: 180px;
    height: 300px;
    right: 20px;
    top: 40px;
    transform: rotate(36deg);
    border-left-color: #18b3cc;
    border-top-color: #18b3cc;
    border-right-color: transparent;
    border-bottom-color: transparent;
}

.about-badge {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -70%);
    background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
    border-radius: 22px;
    box-shadow: 0 18px 40px rgba(15, 35, 70, 0.14);
    padding: 36px 40px;
    text-align: center;
    z-index: 3;
    min-width: 180px;
}

.about-badge--secondary {
    transform: translate(-50%, 50%);
    padding: 24px 32px;
    min-width: 160px;
}

.about-badge__number {
    font-size: 52px;
    font-weight: 800;
    color: #18b3cc;
    line-height: 1;
    margin-bottom: 6px;
}

.about-badge__text {
    font-size: 16px;
    font-weight: 600;
    color: #16264b;
    letter-spacing: 0.5px;
}

.about-badge__icon {
    margin-bottom: 10px;
    display: flex;
    justify-content: center;
}

.about-shield {
    width: 36px;
    height: 42px;
    border: 4px solid #18b3cc;
    border-radius: 50% 50% 50% 50% / 30% 30% 70% 70%;
    position: relative;
}

.about-shield::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -40%) rotate(-45deg);
    width: 8px;
    height: 14px;
    border-bottom: 3px solid #18b3cc;
    border-right: 3px solid #18b3cc;
}

/* ===== ABOUT INFO ===== */

.about-info {
    background: #ffffff;
    padding: 72px 40px;
}

.about-info__container {
    max-width: var(--container-width);
    margin: 0 auto;
}

.about-info__title {
    margin: 0 0 36px;
    font-size: 36px;
    line-height: 1.15;
    font-weight: 700;
    color: var(--color-text);
    letter-spacing: -0.4px;
}

.about-info__text p {
    margin: 0 0 24px;
    font-size: 17px;
    line-height: 1.7;
    color: var(--color-text-soft);
    max-width: 960px;
}

.about-info__text p:last-child {
    margin-bottom: 0;
}

/* ===== ABOUT ADVANTAGES ===== */

.about-advantages {
    background: var(--color-surface-alt);
    padding: 72px 40px;
}

.about-advantages__container {
    max-width: var(--container-width);
    margin: 0 auto;
}

.about-advantages__title {
    margin: 0 0 40px;
    font-size: 36px;
    line-height: 1.15;
    font-weight: 700;
    color: var(--color-text);
    letter-spacing: -0.4px;
}

.about-advantages__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.about-adv-card {
    background: var(--color-white);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    padding: 28px 24px;
    box-shadow: var(--shadow-soft);
}

.about-adv-card__icon {
    margin-bottom: 18px;
}

.about-adv-card h3 {
    margin: 0 0 12px;
    font-size: 20px;
    line-height: 1.3;
    font-weight: 700;
    color: var(--color-text);
}

.about-adv-card p {
    margin: 0;
    font-size: 15px;
    line-height: 1.65;
    color: var(--color-text-soft);
}

/* CSS Icons for advantages */

.about-adv-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    position: relative;
}

.about-adv-icon--experience {
    background: rgba(24, 179, 204, 0.12);
}

.about-adv-icon--experience::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 24px;
    height: 24px;
    border: 3px solid #18b3cc;
    border-radius: 50%;
}

.about-adv-icon--experience::after {
    content: "";
    position: absolute;
    top: 13px;
    left: 50%;
    transform: translateX(-50%);
    width: 3px;
    height: 14px;
    background: #18b3cc;
    border-radius: 999px;
    transform-origin: bottom center;
    transform: translateX(-50%) rotate(30deg);
}

.about-adv-icon--individual {
    background: rgba(22, 58, 112, 0.1);
}

.about-adv-icon--individual::before {
    content: "";
    position: absolute;
    top: 12px;
    left: 50%;
    transform: translateX(-50%);
    width: 14px;
    height: 14px;
    border: 3px solid #163a70;
    border-radius: 50%;
}

.about-adv-icon--individual::after {
    content: "";
    position: absolute;
    bottom: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 26px;
    height: 12px;
    border: 3px solid #163a70;
    border-radius: 12px 12px 0 0;
    border-bottom: none;
}

.about-adv-icon--speed {
    background: rgba(24, 179, 204, 0.12);
}

.about-adv-icon--speed::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 0;
    height: 0;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
    border-left: 16px solid #18b3cc;
}

.about-adv-icon--care {
    background: rgba(22, 58, 112, 0.1);
}

.about-adv-icon--care::before {
    content: "";
    position: absolute;
    top: 13px;
    left: 11px;
    width: 14px;
    height: 14px;
    background: #163a70;
    border-radius: 50% 50% 0 50%;
    transform: rotate(-45deg);
}

.about-adv-icon--care::after {
    content: "";
    position: absolute;
    top: 13px;
    right: 11px;
    width: 14px;
    height: 14px;
    background: #163a70;
    border-radius: 50% 50% 50% 0;
    transform: rotate(45deg);
}

/* ===== ABOUT MISSION ===== */

.about-mission {
    background: #ffffff;
    padding: 72px 40px;
}

.about-mission__container {
    max-width: var(--container-width);
    margin: 0 auto;
}

.about-mission__title {
    margin: 0 0 36px;
    font-size: 36px;
    line-height: 1.15;
    font-weight: 700;
    color: var(--color-text);
    letter-spacing: -0.4px;
}

.about-mission__text p {
    margin: 0 0 24px;
    font-size: 17px;
    line-height: 1.7;
    color: var(--color-text-soft);
    max-width: 960px;
}

.about-mission__text p:last-child {
    margin-bottom: 0;
}

/* ===== ABOUT SERVICES ===== */

.about-services {
    background: var(--color-surface-alt);
    padding: 72px 40px;
}

.about-services__container {
    max-width: var(--container-width);
    margin: 0 auto;
}

.about-services__title {
    margin: 0 0 40px;
    font-size: 36px;
    line-height: 1.15;
    font-weight: 700;
    color: var(--color-text);
    letter-spacing: -0.4px;
}

.about-services__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.about-service-card {
    background: var(--color-white);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    padding: 28px 24px;
    box-shadow: var(--shadow-soft);
    text-decoration: none;
    transition: 0.25s;
}

.about-service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 14px 30px rgba(15, 35, 70, 0.1);
}

.about-service-card__icon {
    margin-bottom: 18px;
}

.about-service-card h3 {
    margin: 0 0 12px;
    font-size: 20px;
    line-height: 1.3;
    font-weight: 700;
    color: var(--color-text);
}

.about-service-card p {
    margin: 0;
    font-size: 15px;
    line-height: 1.65;
    color: var(--color-text-soft);
}

/* CSS Icons for services */

.about-svc-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    position: relative;
}

.about-svc-icon--decl {
    background: rgba(24, 179, 204, 0.12);
}

.about-svc-icon--decl::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 22px;
    height: 28px;
    border: 3px solid #18b3cc;
    border-radius: 4px;
}

.about-svc-icon--decl::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 12px;
    height: 3px;
    background: #18b3cc;
    border-radius: 999px;
    box-shadow: 0 6px 0 #18b3cc;
}

.about-svc-icon--cert {
    background: rgba(22, 58, 112, 0.1);
}

.about-svc-icon--cert::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 24px;
    height: 24px;
    border: 3px solid #163a70;
    border-radius: 50%;
}

.about-svc-icon--cert::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -40%) rotate(-45deg);
    width: 7px;
    height: 12px;
    border-bottom: 3px solid #163a70;
    border-right: 3px solid #163a70;
}

.about-svc-icon--refusal {
    background: rgba(24, 179, 204, 0.12);
}

.about-svc-icon--refusal::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 22px;
    height: 28px;
    border: 3px solid #18b3cc;
    border-radius: 4px;
}

.about-svc-icon--refusal::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(-45deg);
    width: 20px;
    height: 3px;
    background: #18b3cc;
    border-radius: 999px;
}

.about-svc-icon--vol {
    background: rgba(22, 58, 112, 0.1);
}

.about-svc-icon--vol::before {
    content: "";
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 12px solid transparent;
    border-right: 12px solid transparent;
    border-bottom: 16px solid #163a70;
}

.about-svc-icon--vol::after {
    content: "";
    position: absolute;
    bottom: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 22px;
    height: 3px;
    background: #163a70;
    border-radius: 999px;
}

/* ===== ABOUT CTA ===== */

.about-cta {
    background: #ffffff;
    padding: 72px 40px;
}

.about-cta__container {
    max-width: var(--container-width);
    margin: 0 auto;
}

.about-cta__title {
    margin: 0 0 24px;
    font-size: 36px;
    line-height: 1.15;
    font-weight: 700;
    color: var(--color-text);
    letter-spacing: -0.4px;
}

.about-cta__text {
    margin: 0 0 32px;
    font-size: 17px;
    line-height: 1.65;
    color: var(--color-text-soft);
    max-width: 640px;
}

.about-cta__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 240px;
    min-height: 54px;
    padding: 14px 28px;
    background: var(--color-accent-dark);
    color: #ffffff;
    text-decoration: none;
    border-radius: 10px;
    font-size: 15px;
    font-weight: 700;
    transition: 0.25s;
    box-shadow: 0 10px 24px rgba(22, 58, 112, 0.16);
}

.about-cta__btn:hover {
    background: var(--color-accent);
}

/* ===== ABOUT RESPONSIVE ===== */

@media (max-width: 1200px) {
    .about-hero__title {
        font-size: 50px;
    }

    .about-hero__container {
        grid-template-columns: minmax(0, 1fr) 380px;
        gap: 32px;
    }

    .about-advantages__grid,
    .about-services__grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 1024px) {
    .about-hero {
        padding: 44px 40px 60px;
    }

    .about-hero__container {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .about-hero__visual {
        min-height: 350px;
        order: 2;
    }

    .about-hero__content {
        order: 1;
    }
}

@media (max-width: 820px) {
    .about-hero {
        padding: 34px 20px 46px;
    }

    .about-hero__title {
        font-size: 38px;
        margin-bottom: 24px;
    }

    .about-hero__accent {
        font-size: 16px;
    }

    .about-hero__list li {
        font-size: 16px;
        margin-bottom: 10px;
    }

    .about-hero__visual {
        min-height: 300px;
        transform: scale(0.8);
        transform-origin: center top;
    }

    .about-info,
    .about-advantages,
    .about-mission,
    .about-services,
    .about-cta {
        padding: 52px 20px;
    }

    .about-info__title,
    .about-advantages__title,
    .about-mission__title,
    .about-services__title,
    .about-cta__title {
        font-size: 30px;
        margin-bottom: 24px;
    }

    .about-info__text p,
    .about-mission__text p {
        font-size: 16px;
    }

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

    .about-cta__btn {
        width: 100%;
    }
}

@media (max-width: 560px) {
    .about-hero__title {
        font-size: 30px;
    }

    .about-hero__accent,
    .about-hero__list li {
        font-size: 15px;
    }

    .about-hero__visual {
        min-height: 260px;
        transform: scale(0.6);
    }

    .about-info__title,
    .about-advantages__title,
    .about-mission__title,
    .about-services__title,
    .about-cta__title {
        font-size: 26px;
    }

    .about-info__text p,
    .about-mission__text p,
    .about-cta__text {
        font-size: 15px;
    }
}

/* =========================================================
   FEEDBACK MODAL FORM
   ========================================================= */

.feedback-overlay {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: rgba(15, 25, 50, 0.55);
    backdrop-filter: blur(4px);
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.feedback-overlay.active {
    display: flex;
}

.feedback-modal {
    background: #ffffff;
    border-radius: 18px;
    box-shadow: 0 24px 64px rgba(15, 25, 50, 0.22);
    padding: 40px 36px;
    max-width: 500px;
    width: 100%;
    position: relative;
    max-height: 90vh;
    overflow-y: auto;
}

.feedback-modal__close {
    position: absolute;
    top: 14px;
    right: 18px;
    background: none;
    border: none;
    font-size: 28px;
    color: #999;
    cursor: pointer;
    line-height: 1;
    padding: 4px;
    transition: 0.2s;
}

.feedback-modal__close:hover {
    color: #333;
}

.feedback-modal__title {
    margin: 0 0 8px;
    font-size: 26px;
    font-weight: 700;
    color: var(--color-text);
}

.feedback-modal__subtitle {
    margin: 0 0 28px;
    font-size: 15px;
    line-height: 1.5;
    color: var(--color-text-soft);
}

.feedback-form__group {
    margin-bottom: 18px;
}

.feedback-form__group label {
    display: block;
    margin-bottom: 6px;
    font-size: 14px;
    font-weight: 600;
    color: var(--color-text);
}

.feedback-form__group input,
.feedback-form__group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #dde2e8;
    border-radius: 10px;
    font-size: 15px;
    font-family: inherit;
    color: var(--color-text);
    background: #f9fafb;
    transition: 0.2s;
    outline: none;
    box-sizing: border-box;
}

.feedback-form__group input:focus,
.feedback-form__group textarea:focus {
    border-color: #18b3cc;
    background: #ffffff;
}

.feedback-form__group textarea {
    resize: vertical;
    min-height: 80px;
}

.feedback-form__submit {
    width: 100%;
    padding: 14px 28px;
    background: #18b3cc;
    color: #ffffff;
    border: none;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: 0.25s;
    margin-top: 6px;
}

.feedback-form__submit:hover {
    background: #14a0b5;
    transform: translateY(-1px);
}

.feedback-success {
    text-align: center;
    padding: 24px 0;
}

.feedback-success__icon {
    width: 64px;
    height: 64px;
    background: #18b3cc;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 32px;
    margin: 0 auto 20px;
}

.feedback-success h3 {
    margin: 0 0 10px;
    font-size: 22px;
    color: var(--color-text);
}

.feedback-success p {
    margin: 0;
    font-size: 15px;
    color: var(--color-text-soft);
}

@media (max-width: 560px) {
    .feedback-modal {
        padding: 28px 20px;
    }

    .feedback-modal__title {
        font-size: 22px;
    }
}