/* path: kcb-site/public/assets/css/style.css */

/* ===== RESET ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    background: #0B2238;
    color: #F7F8F4;
    line-height: 1.5;
}

img {
    max-width: 100%;
    display: block;
}

input,
textarea,
button {
    font: inherit;
}

/* ===== CONTAINER ===== */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ===== HEADER ===== */
.header {
    position: sticky;
    top: 0;
    background: rgba(11, 34, 56, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    z-index: 100;
}

.header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 70px;
    gap: 24px;
}

.logo a {
    color: #F7F8F4;
    font-weight: 700;
    font-size: 20px;
    text-decoration: none;
}

.nav {
    display: flex;
    align-items: center;
    gap: 24px;
}

.nav a {
    color: #F7F8F4;
    text-decoration: none;
    font-size: 14px;
    opacity: 0.85;
    transition: opacity 0.2s ease;
}

.nav a:hover {
    opacity: 1;
}

.header__actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 12px 20px;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    transition: 0.2s ease;
    border: none;
    cursor: pointer;
}

.btn-primary {
    background: linear-gradient(180deg, #ff7b2f 0%, #FF671E 100%);
    color: #fff;
    box-shadow: 0 14px 30px rgba(255, 103, 30, 0.30);
}

.btn-primary {
    background: linear-gradient(180deg, #ff7b2f 0%, #FF671E 100%);
    color: #fff;
    box-shadow: 0 14px 30px rgba(255, 103, 30, 0.30);
}

/* ===== LINKS ===== */
a {
    color: #FF671E;
}

/* ===== TITLES ===== */
.page-title {
    font-size: 36px;
    line-height: 1.2;
    margin-bottom: 30px;
}

/* ===== HERO ===== */
.hero {
    padding: 72px 0 48px;
    min-height: calc(100vh - 70px);
    display: flex;
    align-items: center;
}

.hero__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 48px;
    width: 100%;
}

.hero__content {
    flex: 1 1 0;
    max-width: 620px;
}

.hero h1 {
    font-size: 40px;
    line-height: 1.08;
    letter-spacing: -0.03em;
    margin-bottom: 10px;
    max-width: 500px;
}

.hero p {
    font-size: 18px;
    opacity: 0.82;
    margin-bottom: 30px;
}

.hero__subtitle {
    max-width: 560px;
    font-size: 17px;
    line-height: 1.4;
    color: #dfe8f1;
    margin-bottom: 22px;
}

.hero__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    margin-top: 6px;
    max-width: 560px;
}

.hero__list {
    background: rgba(255, 255, 255, 0.045);
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 16px;
    padding: 16px 16px 14px;
    backdrop-filter: blur(8px);
}

.hero__list p {
    font-size: 14px;
    margin-bottom: 18px;
    color: #d7e0ea;
    line-height: 1.35;
}

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

.hero__list strong {
    color: #F7F8F4;
    font-size: 16px;
}

.hero__list:first-child strong {
    color: #F7F8F4;
}

.hero__list:last-child strong {
    color: #A8D7C8;
}

.hero__form {
    flex: 0 0 520px;
}

.form-card {
    position: relative;
    background: linear-gradient(180deg, #ffffff 0%, #f7f9fc 100%);
    border-radius: 24px;
    padding: 24px 28px 22px;
    box-shadow:
        0 30px 70px rgba(0, 0, 0, 0.30),
        0 0 0 1px rgba(255, 255, 255, 0.22) inset;
    overflow: hidden;
}

.form-card::before {
    content: "";
    position: absolute;
    inset: 0 auto auto 0;
    width: 100%;
    height: 6px;
    background: linear-gradient(90deg, #FF671E 0%, #A8D7C8 100%);
}

.form-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    min-height: 30px;
    padding: 6px 12px;
    margin-bottom: 14px;
    border-radius: 999px;
    background: rgba(14, 119, 141, 0.10);
    color: #0E778D;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.02em;
    text-transform: uppercase;
}

.form-card h3 {
    color: #0B2238;
    font-size: 20px;
    line-height: 1.12;
    margin-bottom: 10px;
    max-width: 380px;
}

.form-card p {
    color: #5b6773;
    font-size: 13px;
    margin-bottom: 14px;
}

.form-card form {
    display: grid;
    gap: 10px;
}

.form-card input {
    width: 100%;
    min-height: 46px;
    padding: 0 14px;
    border-radius: 12px;
    border: 1px solid rgba(11, 34, 56, 0.14);
    background: #ffffff;
    color: #0B2238;
    outline: none;
    transition: border-color 0.18s ease, box-shadow 0.18s ease;
}

.form-card input:focus {
    border-color: #0E778D;
    box-shadow: 0 0 0 4px rgba(14, 119, 141, 0.12);
}

.form-card input::placeholder {
    color: rgba(11, 34, 56, 0.48);
}

.form-card .btn {
    width: 100%;
    min-height: 58px;
    margin-top: 10px;
    font-size: 17px;
    font-weight: 800;
    letter-spacing: -0.01em;
    border-radius: 14px;
    box-shadow: 0 18px 38px rgba(255, 103, 30, 0.35);
}

.form-card .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 22px 42px rgba(255, 103, 30, 0.42);
}

.form-points {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px 14px;
    margin-top: 12px;
}

.form-points p {
    position: relative;
    margin-bottom: 0;
    font-size: 13px;
    color: #64748b;
    font-weight: 600;
}

.form-points {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px 14px;
    margin-top: 16px;
}

.form-note {
    margin-top: 14px;
    font-size: 12px;
    text-align: center;
    color: #64748b;
}

/* ===== QUIZ ===== */
.quiz {
    padding: 80px 0;
    background: #F7F8F4;
    color: #0B2238;
}

.quiz h2 {
    font-size: 28px;
    margin-bottom: 20px;
}

.quiz-page {
    padding: 80px 0;
}

.quiz-title {
    text-align: center;
    font-size: 42px;
    line-height: 1.15;
    margin-bottom: 36px;
    max-width: 860px;
}

.quiz-box {
    background: #ffffff;
    padding: 30px;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.10);
    max-width: 760px;
    margin: 0 auto;
}

/* ===== QUIZ UI ===== */
.quiz-step {
    display: none;
}

.quiz-step.active {
    display: block;
}

.quiz-step h3 {
    font-size: 28px;
    line-height: 1.25;
    margin-bottom: 24px;
    color: #0B2238;
}

.quiz-options {
    display: grid;
    gap: 14px;
}

.quiz-options button {
    width: 100%;
    border: 1px solid rgba(11, 34, 56, 0.12);
    background: #F7F8F4;
    color: #0B2238;
    border-radius: 14px;
    padding: 18px 20px;
    font-size: 16px;
    font-weight: 600;
    text-align: left;
    cursor: pointer;
    transition:
        transform 0.18s ease,
        box-shadow 0.18s ease,
        border-color 0.18s ease,
        background-color 0.18s ease;
}

.quiz-options button:hover {
    transform: translateY(-1px);
    border-color: rgba(14, 119, 141, 0.45);
    box-shadow: 0 10px 24px rgba(11, 34, 56, 0.10);
    background: #ffffff;
}

.quiz-options button:active {
    transform: translateY(0);
}

.quiz-options.multi {
    display: grid;
    gap: 12px;
    margin-bottom: 20px;
}

.quiz-options.multi label {
    display: flex;
    align-items: center;
    gap: 12px;
    min-height: 58px;
    padding: 16px 18px;
    background: #F7F8F4;
    border: 1px solid rgba(11, 34, 56, 0.12);
    border-radius: 14px;
    color: #0B2238;
    font-size: 15px;
    font-weight: 500;
    cursor: pointer;
    transition:
        border-color 0.18s ease,
        box-shadow 0.18s ease,
        background-color 0.18s ease;
}

.quiz-options.multi label:hover {
    border-color: rgba(14, 119, 141, 0.45);
    box-shadow: 0 10px 24px rgba(11, 34, 56, 0.08);
    background: #ffffff;
}

.quiz-options.multi input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: #FF671E;
    flex: 0 0 18px;
}

.next-btn {
    margin-top: 4px;
}

#quizResultText {
    font-size: 18px;
    line-height: 1.6;
    color: #0B2238;
    margin-bottom: 24px;
}

.lead-form {
    display: grid;
    gap: 14px;
    margin-top: 10px;
}

.lead-form input {
    width: 100%;
    min-height: 54px;
    border: 1px solid rgba(11, 34, 56, 0.14);
    border-radius: 12px;
    padding: 0 16px;
    font-size: 15px;
    font-family: 'Inter', sans-serif;
    color: #0B2238;
    background: #ffffff;
    outline: none;
    transition: border-color 0.18s ease, box-shadow 0.18s ease;
}

.lead-form input:focus {
    border-color: #0E778D;
    box-shadow: 0 0 0 4px rgba(14, 119, 141, 0.12);
}

.lead-form input::placeholder {
    color: rgba(11, 34, 56, 0.45);
}

.lead-form .btn {
    width: 100%;
    border: none;
    cursor: pointer;
    min-height: 54px;
    font-size: 15px;
    font-weight: 700;
}

.quiz-progress {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 22px;
}

.quiz-progress__bar {
    flex: 1 1 auto;
    height: 8px;
    background: rgba(11, 34, 56, 0.08);
    border-radius: 999px;
    overflow: hidden;
}

.quiz-progress__fill {
    height: 100%;
    width: 0;
    background: #B8F12A;
    border-radius: 999px;
    transition: width 0.2s ease;
}

.quiz-progress__text {
    font-size: 13px;
    font-weight: 700;
    color: rgba(11, 34, 56, 0.65);
    white-space: nowrap;
}

/* ===== THANK YOU ===== */
.thank-page {
    padding: 100px 0;
}

.thank-page h1 {
    font-size: 42px;
    margin-bottom: 16px;
}

.thank-page p {
    max-width: 640px;
    font-size: 18px;
    opacity: 0.86;
    margin-bottom: 24px;
}

/* ===== ABOUT ===== */
.about-page {
    padding: 80px 0 40px;
}

.about-content p {
    margin-bottom: 16px;
    opacity: 0.9;
}

.about-content .lead {
    font-size: 18px;
    font-weight: 500;
}

.about-values {
    padding: 60px 0;
    background: #F7F8F4;
    color: #0B2238;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.value-card {
    background: #ffffff;
    padding: 25px;
    border-radius: 12px;
}

.value-card h3 {
    margin-bottom: 10px;
}

.about-cta {
    padding: 60px 0;
}

.cta-box {
    background: #0E778D;
    padding: 40px;
    border-radius: 16px;
    text-align: center;
}

.cta-box h2 {
    margin-bottom: 10px;
}

.cta-box p {
    margin-bottom: 20px;
    opacity: 0.9;
}

/* ===== SERVICES ===== */
.services-page {
    padding: 80px 0;
}

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

.service-card {
    display: block;
    background: #ffffff;
    color: #0B2238;
    padding: 25px;
    border-radius: 12px;
    text-decoration: none;
    transition: 0.2s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.service-card h3 {
    margin-bottom: 10px;
}

.services-cta {
    padding: 60px 0;
}

/* ===== FAQ ===== */
.faq-page {
    padding: 80px 0;
}

.faq-list {
    display: grid;
    gap: 18px;
}

.faq-item {
    background: #ffffff;
    color: #0B2238;
    border-radius: 12px;
    padding: 24px;
}

.faq-item h3 {
    margin-bottom: 10px;
    font-size: 20px;
}

.faq-item p {
    opacity: 0.9;
}

.faq-cta {
    padding: 60px 0;
}

/* ===== CONTACTS ===== */
.contacts-page {
    padding: 80px 0;
}

.contacts-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.contacts-info p {
    margin-bottom: 15px;
}

.contacts-form {
    background: transparent;
    color: #0B2238;
    padding: 25px;
    border-radius: 12px;
}

.contacts-form form {
    display: grid;
    gap: 12px;
}

.contacts-form input,
.contacts-form textarea {
    width: 100%;
    padding: 12px;
    border-radius: 8px;
    border: 1px solid #ccc;
    font-family: 'Inter', sans-serif;
}

.contacts-form textarea {
    min-height: 100px;
    resize: vertical;
}

.contacts-cta {
    padding: 60px 0;
}

/* ===== BLOG ===== */
.blog-page {
    padding: 80px 0;
}

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

.blog-card {
    background: #ffffff;
    color: #0B2238;
    padding: 20px;
    border-radius: 12px;
}

.blog-card h3 {
    margin-bottom: 10px;
}

.blog-card p {
    margin-bottom: 10px;
    opacity: 0.8;
}

.blog-card a {
    color: #FF671E;
    font-weight: 600;
}

/* ===== FOOTER ===== */
.footer {
    background: #091a2c;
    padding: 60px 0 20px;
    margin-top: 80px;
}

.footer__top {
    display: flex;
    justify-content: space-between;
    gap: 40px;
    margin-bottom: 40px;
}

.footer__brand p {
    font-size: 14px;
    opacity: 0.7;
    max-width: 260px;
}

.footer__nav {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer__nav a {
    color: #F7F8F4;
    text-decoration: none;
    font-size: 14px;
    opacity: 0.8;
}

.footer__contacts p {
    font-size: 14px;
    opacity: 0.7;
}

.footer__bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
}

.footer__legal {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.footer__legal a {
    font-size: 12px;
    color: #F7F8F4;
    opacity: 0.6;
    text-decoration: none;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1100px) {
    .hero {
        padding: 56px 0 36px;
        min-height: calc(100vh - 70px);
    }

    .hero h1 {
        font-size: 40px;
    }

    .hero__inner {
        gap: 32px;
    }

    .hero__form {
        flex: 0 0 400px;
    }

    .form-card {
        padding: 22px 24px 18px;
    }

    .form-card h3 {
        font-size: 20px;
    }

    .hero__grid {
        gap: 14px;
    }
}

@media (max-width: 900px) {
    .hero {
        padding: 72px 0 64px;
    }

    .hero__inner {
        flex-direction: column;
        align-items: stretch;
    }

    .hero__content,
    .hero__form {
        max-width: 100%;
        flex: 1 1 auto;
    }

    .hero h1 {
        max-width: 100%;
        font-size: 46px;
    }

    .form-card {
        width: 100%;
    }

    .hero__grid,
    .values-grid,
    .services-grid,
    .blog-grid,
    .contacts-grid {
        grid-template-columns: 1fr;
    }

    .footer__top {
        flex-direction: column;
    }
}

@media (max-width: 768px) {
    .header__inner {
        flex-wrap: wrap;
        min-height: auto;
        padding: 14px 0;
        gap: 14px;
    }

    .nav {
        order: 3;
        width: 100%;
        justify-content: center;
        flex-wrap: wrap;
        gap: 14px 18px;
    }

    .hero h1 {
        font-size: 36px;
        line-height: 1.1;
    }

    .hero__subtitle {
        font-size: 17px;
    }

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

    .page-title {
        font-size: 30px;
    }

    .quiz {
        padding: 56px 0;
    }

    .quiz-title {
        font-size: 32px;
        margin-bottom: 24px;
    }

    .quiz h2 {
        font-size: 24px;
        margin-bottom: 18px;
    }

    .quiz-box {
        padding: 22px;
        border-radius: 14px;
    }

    .quiz-step h3 {
        font-size: 22px;
        margin-bottom: 18px;
    }

    .quiz-options button,
    .quiz-options.multi label {
        padding: 16px;
        border-radius: 12px;
        font-size: 15px;
    }

    #quizResultText {
        font-size: 16px;
    }

    .about-page,
    .services-page,
    .faq-page,
    .contacts-page,
    .blog-page {
        padding: 56px 0;
    }

    .cta-box,
    .contacts-form,
    .value-card,
    .service-card,
    .faq-item,
    .blog-card {
        padding: 20px;
    }

    .footer__bottom {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }

    .hero {
        padding: 56px 0 48px;
    }

    .hero h1 {
        font-size: 31px;
    }

    .form-card {
        padding: 22px;
        border-radius: 16px;
    }

    .form-card h3 {
        font-size: 24px;
    }

    .btn {
        width: 100%;
    }

    .header__actions {
        width: 100%;
    }

    .header__actions .btn {
        width: 100%;
    }
}

/* ===== QUIZ FIXES ===== */

.quiz-page {
    padding: 28px 0 40px;
    min-height: calc(100vh - 70px);
}

.quiz-title {
    text-align: center;
    font-size: 30px;
    line-height: 1.2;
    margin: 0 auto 24px;
    max-width: 760px;
}

.quiz-box {
    background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
    padding: 22px 24px 20px;
    border-radius: 20px;
    box-shadow: 0 20px 44px rgba(0, 0, 0, 0.18);
    max-width: 720px;
    margin: 0 auto;
}

.quiz-progress {
    margin-bottom: 15px;
}

.quiz-progress__top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 6px;
}

.quiz-progress__label {
    font-size: 12px;
    font-weight: 800;
    color: #0E778D;
    text-transform: uppercase;
    letter-spacing: 0.03em;
}

.quiz-progress__counter {
    font-size: 13px;
    font-weight: 700;
    color: rgba(11, 34, 56, 0.65);
}

.quiz-progress__bar {
    width: 100%;
    height: 8px;
    background: rgba(11, 34, 56, 0.08);
    border-radius: 999px;
    overflow: hidden;
}

.quiz-progress__fill {
    height: 100%;
    width: 0;
    background: linear-gradient(90deg, #FF671E 0%, #A8D7C8 100%);
    border-radius: 999px;
    transition: width 0.25s ease;
}

.quiz-step h3 {
    font-size: 18px;
    line-height: 1.3;
    margin-bottom: 14px;
    color: #0B2238;
}

.quiz-options {
    display: grid;
    gap: 12px;
}

.quiz-options button {
    min-height: 48px;
    border: 1px solid rgba(11, 34, 56, 0.12);
    background: #ffffff;
    color: #0B2238;
    border-radius: 12px;
    padding: 12px 16px;
    font-size: 14px;
    font-weight: 600;
    text-align: left;
    cursor: pointer;
    transition: all 0.18s ease;
}

.quiz-options button:hover {
    border-color: rgba(14, 119, 141, 0.45);
    box-shadow: 0 10px 24px rgba(11, 34, 56, 0.08);
    background: #fdfefe;
}

.quiz-options.multi {
    gap: 10px;
    margin-bottom: 8px;
}

.quiz-options.multi label {
    display: flex;
    align-items: center;
    gap: 10px;
    min-height: 46px;
    padding: 10px 14px;
    background: #ffffff;
    border: 1px solid rgba(11, 34, 56, 0.12);
    border-radius: 12px;
    color: #0B2238;
    font-size: 14px;
    cursor: pointer;
}

.quiz-error {
    min-height: 20px;
    margin-top: 10px;
    font-size: 13px;
    color: #d14343;
    font-weight: 600;
}

.quiz-actions {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-top: 18px;
}

.quiz-actions--result {
    justify-content: flex-start;
}

.btn-secondary {
    background: #e9eef3;
    color: #0B2238;
    box-shadow: none;
}

.btn-secondary:hover {
    background: #dde6ee;
    transform: translateY(-1px);
}

.quiz-result-head {
    margin-bottom: 18px;
}

.quiz-result-badge {
    display: inline-flex;
    align-items: center;
    min-height: 30px;
    padding: 6px 12px;
    margin-bottom: 12px;
    border-radius: 999px;
    background: rgba(14, 119, 141, 0.10);
    color: #0E778D;
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.03em;
}

.quiz-result-head h3 {
    margin-bottom: 10px;
}

.quiz-result-head p {
    font-size: 16px;
    line-height: 1.5;
    color: #0B2238;
}

.quiz-result-note {
    margin-bottom: 18px;
    font-size: 14px;
    line-height: 1.45;
    color: #5b6773;
}

.lead-form {
    display: grid;
    gap: 12px;
}

.lead-form input {
    width: 100%;
    min-height: 46px;
    border: 1px solid rgba(11, 34, 56, 0.14);
    border-radius: 12px;
    padding: 0 14px;
    font-size: 14px;
    color: #0B2238;
    background: #ffffff;
    outline: none;
}

.lead-form .btn {
    width: 100%;
    min-height: 48px;
    font-size: 15px;
    font-weight: 800;
}

.quiz-error--final {
    margin-top: -2px;
    margin-bottom: 2px;
}

@media (max-width: 768px) {
    .quiz-page {
        padding: 40px 0 56px;
    }

    .quiz-title {
        font-size: 26px;
        margin-bottom: 18px;
    }

    .quiz-box {
        padding: 20px 18px 18px;
        border-radius: 18px;
    }

    .quiz-progress__top {
        flex-direction: column;
        align-items: flex-start;
        gap: 4px;
    }

    .quiz-step h3 {
        font-size: 20px;
    }

    .quiz-actions {
        flex-direction: column;
    }

    .quiz-actions .btn,
    .quiz-actions--result .btn {
        width: 100%;
    }
}

/* ===== THANK YOU PAGE ===== */

.thank-page {
    min-height: calc(100vh - 70px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 16px;
}

.thank-page__inner {
    width: 100%;
    display: flex;
    justify-content: center;
}

.thank-card {
    background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
    border-radius: 22px;
    padding: 36px 32px;
    text-align: center;
    max-width: 420px;
    width: 100%;

    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.2);
}

/* Галочка */
.thank-icon {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: #22c55e;
    color: #fff;
    font-size: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 18px;
}

/* Заголовок */
.thank-card h1 {
    font-size: 24px;
    margin-bottom: 10px;
    color: #0B2238;
}

/* Основной текст */
.thank-text {
    font-size: 15px;
    color: #5a6b7b;
    margin-bottom: 8px;
}

/* Подтекст */
.thank-subtext {
    font-size: 13px;
    color: #9aa7b3;
    margin-bottom: 22px;
}

/* Кнопка */
.thank-card .btn {
    width: 100%;
    min-height: 48px;
    font-size: 15px;
    font-weight: 700;
}

/* path: kcb-site/public/assets/css/style.css */

/* =========================================
   ABOUT PAGE — ОСНОВНЫЕ СЕКЦИИ
   Этот блок задаёт базовые вертикальные отступы
   для всех основных секций страницы "О нас".
========================================= */
.about-hero,
.about-content,
.about-values,
.about-mission,
.about-vision,
.about-cta {
    padding: 56px 0;
}

/* =========================================
   ABOUT HERO — ПЕРВЫЙ ЭКРАН
   Фон, верхний акцент и разделительная линия
   для главного экрана страницы.
========================================= */
.about-hero {
    /* Высота экрана минус хедер */
    min-height: calc(100vh - 80px);

    /* Центрирование контента */
    display: flex;
    align-items: center;

    /* Уменьшаем вертикальные отступы */
    padding: 20px 0 10px;

    /* ТВОЙ ФОН — оставляем */
    background:
        radial-gradient(circle at top center, rgba(18, 56, 96, 0.30) 0%, rgba(6, 26, 49, 0) 42%),
        linear-gradient(180deg, #062342 0%, #071f3a 100%);

    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.about-hero .container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
/* =========================================
   ABOUT HERO — ГЛАВНЫЙ ЗАГОЛОВОК
   Размер, ширина и выравнивание H1
   на первом экране.
========================================= */
.about-hero .page-title {
    max-width: 980px;
    margin: 0 auto 16px;
    text-align: center;
    font-size: clamp(32px, 4vw, 52px);
    line-height: 1.06;
    font-weight: 700;
    letter-spacing: -0.03em;
    color: #ffffff;
}

/* =========================================
   ABOUT HERO — ПОДЗАГОЛОВОК
   Текст под главным заголовком:
   ограничение ширины, размер, читаемость.
========================================= */
.about-hero .lead {
    max-width: 860px;
    margin: 0 auto;
    text-align: center;
    font-size: 16px;
    line-height: 1.65;
    color: rgba(255, 255, 255, 0.78);
}

/* =========================================
   ABOUT STATS — СЕТКА СТАТИСТИКИ
   Три карточки с цифрами:
   1 млрд, 100+, 10+ лет.
========================================= */
.about-stats {
    margin-top: 24px;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
}

/* =========================================
   ABOUT STATS — КАРТОЧКА
   Внешний вид одной карточки статистики:
   фон, граница, радиус, внутренние отступы.
========================================= */
.about-stats .stat {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 18px;
    padding: 18px 18px 16px;
    text-align: center;
    box-shadow: 0 18px 42px rgba(0, 0, 0, 0.16);
    backdrop-filter: blur(4px);
}

/* =========================================
   ABOUT STATS — БОЛЬШАЯ ЦИФРА
   Оформление главного акцента внутри карточки:
   крупная зелёная цифра.
========================================= */
.about-stats .stat strong {
    display: block;
    margin-bottom: 4px;
    font-size: clamp(24px, 2.6vw, 38px);
    line-height: 1.05;
    font-weight: 700;
    color: #31c48d;
    letter-spacing: -0.03em;
}

/* =========================================
   ABOUT STATS — ПОДПИСЬ
   Мелкий текст под цифрой внутри карточки.
========================================= */
.about-stats .stat span {
    display: block;
    font-size: 14px;
    line-height: 1.35;
    color: rgba(255, 255, 255, 0.72);
}

/* =========================================
   ABOUT CONTENT — СЕКЦИЯ "ЧТО МЫ ДЕЛАЕМ"
   Фон для блока с текстом и логотипом.
========================================= */
.about-content {
    background: #071f3a;
}

/* =========================================
   ABOUT CONTENT GRID — СЕТКА БЛОКА
   Делит секцию "Что мы делаем" на две колонки:
   текст слева, логотип справа.
========================================= */
.about-content__grid {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(280px, 420px);
    gap: 32px;
    align-items: center;
}

/* =========================================
   ABOUT TEXT — ЛЕВАЯ КОЛОНКА
   Ограничивает ширину текстового блока,
   чтобы строки не были слишком длинными.
========================================= */
.about-text {
    max-width: 680px;
}

/* =========================================
   ABOUT TEXT — ЗАГОЛОВОК ВНУТРИ БЛОКА
   Локальный заголовок секции "Что мы делаем".
========================================= */
.about-text h2 {
    margin: 0 0 18px;
    text-align: left;
    font-size: clamp(28px, 3vw, 42px);
    line-height: 1.08;
    font-weight: 700;
    letter-spacing: -0.02em;
    color: #ffffff;
}

/* =========================================
   ABOUT TEXT — ОСНОВНОЙ ТЕКСТ
   Параграфы внутри блока "Что мы делаем".
========================================= */
.about-text p {
    margin: 0 0 16px;
    font-size: 16px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.78);
}

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

/* =========================================
   ABOUT VISUAL — ПРАВАЯ КОЛОНКА
   Контейнер для логотипа справа.
   Прижимает визуальный элемент к правому краю.
========================================= */
.about-visual {
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

/* =========================================
   LOGO BOX — ОБЁРТКА ЛОГОТИПА
   Техническая обёртка под изображение логотипа.
========================================= */
.logo-box {
    width: 100%;
    max-width: 420px;
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

/* =========================================
   LOGO BOX IMG — САМ ЛОГОТИП
   Размер логотипа и его адаптивное поведение.
========================================= */
.logo-box img {
    width: 100%;
    max-width: 280px;
    height: auto;
    object-fit: contain;
}

/* =========================================
   УЗКИЙ КОНТЕЙНЕР ДЛЯ СЕКЦИЙ МИССИИ И ВИДЕНИЯ
   Эти секции намеренно уже, чем общая ширина сайта,
   чтобы текст читался легче и выглядел солиднее.
========================================= */
.about-mission .container,
.about-vision .container {
    max-width: 920px;
}

/* =========================================
   ОБЩИЕ H2 ДЛЯ ОСНОВНЫХ СЕКЦИЙ
   Унифицированный стиль заголовков
   в блоках "Наш подход", "Наша миссия", "Куда мы идём", CTA.
========================================= */
.about-values h2,
.about-mission h2,
.about-vision h2,
.about-cta h2 {
    margin: 0 0 18px;
    text-align: center;
    font-size: clamp(28px, 3vw, 38px);
    line-height: 1.12;
    font-weight: 700;
    letter-spacing: -0.02em;
    color: #ffffff;
}

/* =========================================
   ОБЩИЕ ПАРАГРАФЫ ДЛЯ МИССИИ И ВИДЕНИЯ
   Базовая типографика для средних текстовых секций.
========================================= */
.about-mission p,
.about-vision p {
    margin: 0 0 16px;
    font-size: 16px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.78);
}

.about-mission p:last-child,
.about-vision p:last-child {
    margin-bottom: 0;
}

/* =========================================
   ABOUT VALUES — ФОН СЕКЦИИ "НАШ ПОДХОД"
   Немного другой оттенок, чтобы отделить блок
   от соседних секций.
========================================= */
.about-values {
    background: #08284b;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

/* =========================================
   VALUES GRID — СЕТКА КАРТОЧЕК ПОДХОДА
   Две колонки с карточками преимуществ/принципов.
========================================= */
.values-grid {
    margin-top: 24px;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}

/* =========================================
   VALUE CARD — КАРТОЧКА ПРИНЦИПА
   Внешний вид одной карточки в секции "Наш подход".
========================================= */
.value-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 18px;
    padding: 22px 20px;
    box-shadow: 0 16px 36px rgba(0, 0, 0, 0.14);
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

/* =========================================
   VALUE CARD HOVER — ЭФФЕКТ НАВЕДЕНИЯ
   Лёгкое поднятие карточки и усиление границы.
========================================= */
.value-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 20px 42px rgba(0, 0, 0, 0.20);
    border-color: rgba(49, 196, 141, 0.28);
}

/* =========================================
   VALUE CARD TITLE — ЗАГОЛОВОК КАРТОЧКИ
   Название каждого принципа/подхода.
========================================= */
.value-card h3 {
    margin: 0 0 10px;
    font-size: 18px;
    line-height: 1.2;
    font-weight: 600;
    color: #ffffff;
}

/* =========================================
   VALUE CARD TEXT — ТЕКСТ КАРТОЧКИ
   Описание подхода внутри карточки.
========================================= */
.value-card p {
    margin: 0;
    font-size: 15px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.72);
}

/* =========================================
   ABOUT MISSION — СЕКЦИЯ "НАША МИССИЯ"
   Отдельный фоновый акцент с мягким свечением.
========================================= */
.about-mission {
    background:
        radial-gradient(circle at center, rgba(49, 196, 141, 0.08) 0%, rgba(49, 196, 141, 0) 55%),
        #071f3a;
}

/* =========================================
   ABOUT MISSION LEAD — ГЛАВНЫЙ ТЕКСТ МИССИИ
   Более крупный и акцентный текст по центру.
========================================= */
.about-mission .lead {
    max-width: 860px;
    margin: 0 auto;
    text-align: center;
    font-size: 18px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.86);
}

/* =========================================
   ABOUT VISION — СЕКЦИЯ "КУДА МЫ ИДЁМ"
   Спокойный тёмный фон для заключительного
   смыслового блока перед CTA.
========================================= */
.about-vision {
    background: #071a31;
}

/* =========================================
   ABOUT VISION TEXT — ВЫРАВНИВАНИЕ ТЕКСТА
   Центрирует параграфы в секции видения.
========================================= */
.about-vision p {
    text-align: center;
}

/* =========================================
   ABOUT CTA — ФИНАЛЬНЫЙ БЛОК С ПРИЗЫВОМ
   Нижняя секция с кнопкой перехода к тесту.
========================================= */
.about-cta {
    padding-top: 8px;
    padding-bottom: 56px;
    background: #071a31;
}

/* =========================================
   CTA BOX — ВНУТРЕННЯЯ КАРТОЧКА ПРИЗЫВА
   Центральный контейнер с текстом и кнопкой.
========================================= */
.about-cta .cta-box {
    max-width: 860px;
    margin: 0 auto;
    padding: 28px 24px;
    text-align: center;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(49, 196, 141, 0.18);
    border-radius: 20px;
    box-shadow: 0 20px 44px rgba(0, 0, 0, 0.20);
    backdrop-filter: blur(4px);
}

/* =========================================
   CTA BOX TEXT — ТЕКСТ ВНУТРИ КАРТОЧКИ
   Абзац под заголовком перед кнопкой.
========================================= */
.about-cta .cta-box p {
    max-width: 620px;
    margin: 0 auto 20px;
    font-size: 16px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.72);
}

/* =========================================
   CTA BUTTON — КНОПКА ВНУТРИ CTA
   Минимальная ширина кнопки на десктопе.
========================================= */
.about-cta .btn {
    min-width: 220px;
}

/* =========================================
   RESPONSIVE ≤ 992px
   Планшеты и небольшие ноутбуки:
   уменьшаем отступы, переводим сетки в одну колонку.
========================================= */
@media (max-width: 992px) {
    .about-hero,
    .about-content,
    .about-values,
    .about-mission,
    .about-vision,
    .about-cta {
        padding: 44px 0;
    }

    .about-stats {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .about-content__grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .about-text {
        max-width: 100%;
        text-align: center;
    }

    .about-text h2 {
        text-align: center;
    }

    .about-visual,
    .logo-box {
        justify-content: center;
    }

    .logo-box img {
        max-width: 220px;
    }

    .values-grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .about-mission .lead {
        font-size: 17px;
        line-height: 1.65;
    }
}

/* =========================================
   RESPONSIVE ≤ 640px
   Телефоны:
   ещё сильнее уменьшаем размеры и делаем
   интерфейс плотнее.
========================================= */
@media (max-width: 640px) {
    .about-hero {
        padding: 32px 0 24px;
    }

    .about-hero .page-title {
        margin-bottom: 12px;
        font-size: 30px;
        line-height: 1.08;
    }

    .about-hero .lead,
    .about-text p,
    .about-mission p,
    .about-vision p,
    .about-cta .cta-box p,
    .value-card p {
        font-size: 15px;
        line-height: 1.65;
    }

    .about-stats {
        margin-top: 20px;
        gap: 12px;
    }

    .about-stats .stat {
        padding: 14px 14px 12px;
        border-radius: 16px;
    }

    .about-stats .stat strong {
        font-size: 28px;
    }

    .value-card {
        padding: 18px 16px;
        border-radius: 16px;
    }

    .value-card h3 {
        font-size: 17px;
    }

    .about-mission .lead {
        font-size: 16px;
    }

    .about-cta .cta-box {
        padding: 24px 18px;
        border-radius: 18px;
    }

    .about-cta .btn {
        width: 100%;
        min-width: 0;
    }
}

/* ========================================
   SERVICES PAGE
   Единая палитра страницы "Услуги" под стиль КЦБ
======================================== */

/* Общий фон страницы */
.services-page,
.services-start,
.services-catalog,
.services-process,
.services-benefits,
.services-cta {
    background:
        radial-gradient(circle at top center, rgba(18, 56, 96, 0.18) 0%, rgba(6, 26, 49, 0) 38%),
        linear-gradient(180deg, #062342 0%, #071f3a 100%);
}

/* ========================================
   SECTION HEADING
   Заголовки секций в общей палитре сайта
======================================== */
.section-heading {
    max-width: 760px;
    margin: 0 auto 44px;
    text-align: center;
}

.section-label {
    display: inline-flex;
    align-items: center;
    padding: 6px 12px;
    margin-bottom: 14px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.10);
    color: #dbeafe;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.02em;
}

.section-heading h2 {
    margin: 0 0 14px;
    font-size: clamp(30px, 4vw, 42px);
    line-height: 1.15;
    color: #ffffff;
}

.section-heading p {
    margin: 0;
    font-size: 17px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.76);
}

/* ========================================
   SERVICES HERO
   Первый экран страницы услуг
======================================== */
.services-hero {
    position: relative;
    padding: 84px 0 72px;
    background:
        radial-gradient(circle at top center, rgba(18, 56, 96, 0.30) 0%, rgba(6, 26, 49, 0) 42%),
        linear-gradient(180deg, #062342 0%, #071f3a 100%);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    overflow: hidden;
}

.services-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px),
        linear-gradient(180deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
    background-size: 36px 36px;
    opacity: 0.16;
    pointer-events: none;
}

.services-hero__inner {
    position: relative;
    z-index: 1;
    display: flex;
    justify-content: center;
}

.services-hero__content {
    width: 100%;
    max-width: 860px;
    text-align: center;
}

.services-hero__badge {
    display: inline-flex;
    align-items: center;
    padding: 8px 14px;
    margin-bottom: 18px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.10);
    border: 1px solid rgba(255, 255, 255, 0.14);
    color: #dbeafe;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.02em;
}

.services-hero__title {
    margin: 0 0 18px;
    font-size: clamp(36px, 5vw, 58px);
    line-height: 1.08;
    color: #ffffff;
}

.services-hero__subtitle {
    max-width: 780px;
    margin: 0 auto 28px;
    font-size: 19px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.82);
}

.services-hero__actions {
    display: flex;
    justify-content: center;
    gap: 14px;
    flex-wrap: wrap;
    margin-bottom: 28px;
}

.services-hero__points {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
    max-width: 900px;
    margin: 0 auto;
}

.services-hero__points p {
    margin: 0;
    padding: 14px 16px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.10);
    color: #e2e8f0;
    font-size: 15px;
    line-height: 1.5;
    box-shadow: 0 14px 30px rgba(0, 0, 0, 0.14);
}

/* ========================================
   SERVICES START
   Блок "С чего начать"
======================================== */
.services-start {
    padding: 78px 0 32px;
}

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

.start-card {
    display: flex;
    flex-direction: column;
    height: 100%;
    padding: 28px 24px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.10);
    border-radius: 24px;
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.16);
    backdrop-filter: blur(6px);
}

.start-card h3 {
    margin: 0 0 14px;
    font-size: 22px;
    line-height: 1.3;
    color: #ffffff;
}

.start-card p {
    margin: 0 0 18px;
    font-size: 16px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.74);
}

.start-card__link {
    display: inline-flex;
    align-items: center;
    margin-top: auto;
    font-size: 15px;
    font-weight: 700;
    color: #ff8a2a;
    text-decoration: none;
}

.start-card__link:hover {
    color: #ff9c4d;
    text-decoration: underline;
}

/* ========================================
   SERVICES CATALOG
   Основные карточки услуг
======================================== */
.services-catalog {
    padding: 46px 0 36px;
}

.services-catalog__grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
}

.service-card {
    display: flex;
    flex-direction: column;
    height: 100%;
    padding: 30px 26px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.10);
    border-radius: 28px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.16);
    backdrop-filter: blur(6px);
}

.service-card--featured {
    background:
        linear-gradient(180deg, rgba(255, 138, 42, 0.10) 0%, rgba(255, 255, 255, 0.06) 100%);
    border: 1px solid rgba(255, 138, 42, 0.28);
    box-shadow: 0 22px 56px rgba(255, 138, 42, 0.12);
}

.service-card__top {
    margin-bottom: 16px;
}

.service-card__tag {
    display: inline-flex;
    align-items: center;
    padding: 6px 12px;
    margin-bottom: 14px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.08);
    color: #dbeafe;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    border: 1px solid rgba(255, 255, 255, 0.10);
}

.service-card--featured .service-card__tag {
    background: rgba(255, 138, 42, 0.14);
    border-color: rgba(255, 138, 42, 0.22);
    color: #ffb36f;
}

.service-card h3 {
    margin: 0;
    font-size: 27px;
    line-height: 1.2;
    color: #ffffff;
}

.service-card__text {
    margin: 0 0 20px;
    font-size: 16px;
    line-height: 1.75;
    color: rgba(255, 255, 255, 0.74);
}

.service-card__list {
    margin-bottom: 24px;
}

.service-card__list p {
    margin: 0 0 12px;
    font-size: 15px;
    line-height: 1.65;
    color: rgba(255, 255, 255, 0.78);
}

.service-card__list p strong {
    color: #ffffff;
}

.service-card__list p:last-child {
    margin-bottom: 0;
}

.service-card .btn,
.service-card .btn-secondary {
    margin-top: auto;
    align-self: flex-start;
}

/* ========================================
   SERVICES PROCESS
   Этапы работы
======================================== */
.services-process {
    padding: 78px 0;
}

.services-process__grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 22px;
}

.process-card {
    height: 100%;
    padding: 28px 22px;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.10);
    box-shadow: 0 16px 34px rgba(0, 0, 0, 0.14);
    backdrop-filter: blur(6px);
}

.process-card__num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    margin-bottom: 16px;
    border-radius: 16px;
    background: linear-gradient(180deg, #ff8a2a 0%, #ff6a00 100%);
    color: #ffffff;
    font-size: 18px;
    font-weight: 800;
    box-shadow: 0 10px 24px rgba(255, 106, 0, 0.24);
}

.process-card h3 {
    margin: 0 0 12px;
    font-size: 21px;
    line-height: 1.3;
    color: #ffffff;
}

.process-card p {
    margin: 0;
    font-size: 15px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.74);
}

/* ========================================
   SERVICES BENEFITS
   Преимущества компании
======================================== */
.services-benefits {
    padding: 78px 0;
}

.services-benefits__grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
}

.benefit-card {
    padding: 28px 24px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.10);
    border-radius: 24px;
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.16);
    backdrop-filter: blur(6px);
}

.benefit-card h3 {
    margin: 0 0 12px;
    font-size: 23px;
    line-height: 1.3;
    color: #ffffff;
}

.benefit-card p {
    margin: 0;
    font-size: 16px;
    line-height: 1.75;
    color: rgba(255, 255, 255, 0.74);
}

/* ========================================
   SERVICES CTA
   Финальный призыв к действию
======================================== */
.services-cta {
    padding: 32px 0 90px;
}

.cta-box {
    padding: 42px 32px;
    text-align: center;
    border-radius: 30px;
    background:
        radial-gradient(circle at top center, rgba(255, 138, 42, 0.16) 0%, rgba(255, 138, 42, 0) 36%),
        linear-gradient(180deg, #08294c 0%, #071f3a 100%);
    border: 1px solid rgba(255, 255, 255, 0.10);
    box-shadow: 0 26px 70px rgba(6, 35, 66, 0.28);
}

.cta-box h2 {
    margin: 0 0 14px;
    font-size: clamp(28px, 4vw, 42px);
    line-height: 1.15;
    color: #ffffff;
}

.cta-box p {
    max-width: 700px;
    margin: 0 auto 24px;
    font-size: 18px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.82);
}

.cta-box__actions {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 14px;
}

/* ========================================
   SECONDARY BUTTON
   Вторичная кнопка в общей палитре
======================================== */
.btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 52px;
    padding: 0 22px;
    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    background: rgba(255, 255, 255, 0.08);
    color: #ffffff;
    font-size: 15px;
    font-weight: 700;
    text-decoration: none;
    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease,
        border-color 0.2s ease,
        background 0.2s ease;
}

.btn-secondary:hover {
    transform: translateY(-1px);
    background: rgba(255, 255, 255, 0.14);
    border-color: rgba(255, 255, 255, 0.22);
    box-shadow: 0 14px 30px rgba(0, 0, 0, 0.14);
}

/* ========================================
   RESPONSIVE
======================================== */
@media (max-width: 1100px) {
    .services-hero__points,
    .services-start__grid,
    .services-process__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .services-catalog__grid,
    .services-benefits__grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .services-hero {
        padding: 68px 0 56px;
    }

    .services-hero__title {
        font-size: clamp(32px, 9vw, 46px);
    }

    .services-hero__subtitle {
        font-size: 17px;
    }

    .section-heading {
        margin-bottom: 34px;
    }

    .section-heading h2 {
        font-size: 28px;
    }

    .section-heading p {
        font-size: 16px;
    }

    .services-start,
    .services-catalog,
    .services-process,
    .services-benefits {
        padding-top: 64px;
        padding-bottom: 64px;
    }

    .services-start__grid,
    .services-hero__points,
    .services-process__grid,
    .services-benefits__grid {
        grid-template-columns: 1fr;
    }

    .services-catalog__grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .service-card,
    .start-card,
    .process-card,
    .benefit-card {
        padding: 24px 20px;
        border-radius: 22px;
    }

    .service-card h3 {
        font-size: 24px;
    }

    .cta-box {
        padding: 34px 22px;
        border-radius: 24px;
    }

    .cta-box p {
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .services-hero__actions,
    .cta-box__actions {
        flex-direction: column;
    }

    .services-hero__actions .btn,
    .cta-box__actions .btn,
    .services-hero__actions .btn-secondary,
    .cta-box__actions .btn-secondary,
    .service-card .btn,
    .service-card .btn-secondary {
        width: 100%;
    }

    .services-hero__points p {
        padding: 12px 14px;
        font-size: 14px;
    }

    .start-card h3,
    .process-card h3,
    .benefit-card h3 {
        font-size: 20px;
    }

    .service-card h3 {
        font-size: 22px;
    }
}
/* path: kcb-site/public/assets/css/style.css */

/* ========================================
   SERVICE INNER PAGE
   Внутренние страницы отдельных услуг КЦБ
======================================== */

/* Hero внутренней страницы услуги */
.service-hero {
    position: relative;
    padding: 88px 0 74px;
    background:
        radial-gradient(circle at top center, rgba(18, 56, 96, 0.30) 0%, rgba(6, 26, 49, 0) 42%),
        linear-gradient(180deg, #062342 0%, #071f3a 100%);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    overflow: hidden;
}

.service-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px),
        linear-gradient(180deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
    background-size: 36px 36px;
    opacity: 0.16;
    pointer-events: none;
}

.service-hero__inner {
    position: relative;
    z-index: 1;
    display: flex;
    justify-content: center;
}

.service-hero__content {
    width: 100%;
    max-width: 900px;
    text-align: center;
}

.service-hero__badge {
    display: inline-flex;
    align-items: center;
    padding: 8px 14px;
    margin-bottom: 18px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.10);
    border: 1px solid rgba(255, 255, 255, 0.14);
    color: #dbeafe;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.02em;
}

.service-hero__title {
    margin: 0 0 18px;
    font-size: clamp(36px, 5vw, 56px);
    line-height: 1.08;
    color: #ffffff;
}

.service-hero__subtitle {
    max-width: 800px;
    margin: 0 auto 28px;
    font-size: 19px;
    line-height: 1.72;
    color: rgba(255, 255, 255, 0.82);
}

.service-hero__actions {
    display: flex;
    justify-content: center;
    gap: 14px;
    flex-wrap: wrap;
    margin-bottom: 28px;
}

.service-hero__points {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
    max-width: 920px;
    margin: 0 auto;
}

.service-hero__points p {
    margin: 0;
    padding: 14px 16px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.10);
    color: #e2e8f0;
    font-size: 15px;
    line-height: 1.5;
    box-shadow: 0 14px 30px rgba(0, 0, 0, 0.14);
}

/* Общие секции внутренней услуги */
.service-intro,
.service-for,
.service-scope,
.service-result,
.service-terms,
.service-process,
.service-cta {
    background:
        radial-gradient(circle at top center, rgba(18, 56, 96, 0.18) 0%, rgba(6, 26, 49, 0) 38%),
        linear-gradient(180deg, #062342 0%, #071f3a 100%);
}

/* Вертикальные отступы */
.service-intro,
.service-for,
.service-scope,
.service-result,
.service-terms,
.service-process {
    padding: 78px 0;
}

.service-cta {
    padding: 32px 0 90px;
}

/* Вводный блок */
.service-intro__card {
    max-width: 980px;
    margin: 0 auto;
    padding: 30px 28px;
    border-radius: 28px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.10);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.16);
    backdrop-filter: blur(6px);
}

.service-intro__card p {
    margin: 0;
    font-size: 17px;
    line-height: 1.82;
    color: rgba(255, 255, 255, 0.80);
}

/* Сетка информационных карточек */
.service-for__grid,
.service-terms__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
}

/* Универсальная информационная карточка */
.info-card {
    display: flex;
    flex-direction: column;
    height: 100%;
    padding: 28px 24px;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.10);
    box-shadow: 0 16px 38px rgba(0, 0, 0, 0.16);
    backdrop-filter: blur(6px);
}

.info-card h3 {
    margin: 0 0 14px;
    font-size: 22px;
    line-height: 1.32;
    color: #ffffff;
}

.info-card p {
    margin: 0;
    font-size: 16px;
    line-height: 1.74;
    color: rgba(255, 255, 255, 0.76);
}

/* Состав услуги */
.service-scope__grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
}

.scope-card {
    height: 100%;
    padding: 28px 24px;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.10);
    box-shadow: 0 18px 42px rgba(0, 0, 0, 0.16);
    backdrop-filter: blur(6px);
}

.scope-card h3 {
    margin: 0 0 14px;
    font-size: 23px;
    line-height: 1.3;
    color: #ffffff;
}

.scope-card p {
    margin: 0;
    font-size: 16px;
    line-height: 1.75;
    color: rgba(255, 255, 255, 0.76);
}

/* Блок результата */
.service-result__box {
    max-width: 1040px;
    margin: 0 auto;
    padding: 34px 32px;
    border-radius: 28px;
    background:
        linear-gradient(180deg, rgba(255, 138, 42, 0.10) 0%, rgba(255, 255, 255, 0.06) 100%);
    border: 1px solid rgba(255, 138, 42, 0.22);
    box-shadow: 0 22px 52px rgba(0, 0, 0, 0.18);
    backdrop-filter: blur(6px);
}

.service-result__content h3 {
    margin: 0 0 16px;
    font-size: 26px;
    line-height: 1.2;
    color: #ffffff;
}

.service-result__content p {
    margin: 0 0 16px;
    font-size: 17px;
    line-height: 1.82;
    color: rgba(255, 255, 255, 0.82);
}

.service-result__content p:last-child {
    margin-bottom: 0;
}

/* Процесс оказания услуги */
.service-process__grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 22px;
}

/* CTA и вторичная кнопка наследуются от общей страницы услуг,
   но добавим поддержку, если на странице не подключены общие стили */
.service-cta .cta-box {
    padding: 42px 32px;
    text-align: center;
    border-radius: 30px;
    background:
        radial-gradient(circle at top center, rgba(255, 138, 42, 0.16) 0%, rgba(255, 138, 42, 0) 36%),
        linear-gradient(180deg, #08294c 0%, #071f3a 100%);
    border: 1px solid rgba(255, 255, 255, 0.10);
    box-shadow: 0 26px 70px rgba(6, 35, 66, 0.28);
}

.service-cta .cta-box h2 {
    margin: 0 0 14px;
    font-size: clamp(28px, 4vw, 42px);
    line-height: 1.15;
    color: #ffffff;
}

.service-cta .cta-box p {
    max-width: 760px;
    margin: 0 auto 24px;
    font-size: 18px;
    line-height: 1.74;
    color: rgba(255, 255, 255, 0.82);
}

.service-cta .cta-box__actions {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 14px;
}

/* Адаптация */
@media (max-width: 1100px) {
    .service-hero__points,
    .service-for__grid,
    .service-terms__grid,
    .service-process__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .service-scope__grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .service-hero {
        padding: 68px 0 56px;
    }

    .service-hero__title {
        font-size: clamp(32px, 9vw, 44px);
    }

    .service-hero__subtitle {
        font-size: 17px;
    }

    .service-intro,
    .service-for,
    .service-scope,
    .service-result,
    .service-terms,
    .service-process {
        padding: 64px 0;
    }

    .service-for__grid,
    .service-terms__grid,
    .service-hero__points,
    .service-process__grid {
        grid-template-columns: 1fr;
    }

    .service-scope__grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .service-intro__card,
    .info-card,
    .scope-card,
    .service-result__box {
        padding: 24px 20px;
        border-radius: 22px;
    }

    .scope-card h3,
    .info-card h3,
    .service-result__content h3 {
        font-size: 22px;
    }

    .service-cta .cta-box {
        padding: 34px 22px;
        border-radius: 24px;
    }

    .service-cta .cta-box p {
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .service-hero__actions,
    .service-cta .cta-box__actions {
        flex-direction: column;
    }

    .service-hero__actions .btn,
    .service-hero__actions .btn-secondary,
    .service-cta .cta-box__actions .btn,
    .service-cta .cta-box__actions .btn-secondary {
        width: 100%;
    }

    .service-hero__points p {
        padding: 12px 14px;
        font-size: 14px;
    }

    .scope-card h3,
    .info-card h3,
    .service-result__content h3 {
        font-size: 21px;
    }
}

/* ========================================
   HEADER DROPDOWN (УСЛУГИ)
======================================== */

/* Контейнер dropdown */
.nav__dropdown {
    position: relative;
}

/* Ссылка "Услуги" */
.nav__dropdown > .nav__link {
    position: relative;
    cursor: pointer;
}

/* Само выпадающее меню */
.dropdown-menu {
    position: absolute;
    top: calc(100% + 12px);
    left: 0;

    min-width: 260px;
    padding: 12px 0;

    border-radius: 18px;

    background:
        radial-gradient(circle at top center, rgba(18, 56, 96, 0.25) 0%, rgba(6, 26, 49, 0) 42%),
        linear-gradient(180deg, #062342 0%, #071f3a 100%);

    border: 1px solid rgba(255, 255, 255, 0.10);

    box-shadow: 0 18px 50px rgba(0, 0, 0, 0.35);

    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);

    transition: all 0.25s ease;

    z-index: 1000;
}

/* Пункты меню */
.dropdown-menu a {
    display: block;
    padding: 12px 18px;

    font-size: 14px;
    color: rgba(255, 255, 255, 0.82);
    text-decoration: none;

    transition: all 0.2s ease;
}

/* Hover по пункту */
.dropdown-menu a:hover {
    background: rgba(255, 255, 255, 0.06);
    color: #ffffff;
}

/* Показываем dropdown при наведении */
.nav__dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* Небольшая стрелка (опционально, но красиво) */
.dropdown-menu::before {
    content: "";
    position: absolute;
    top: -6px;
    left: 24px;

    width: 12px;
    height: 12px;

    background: #062342;
    border-left: 1px solid rgba(255, 255, 255, 0.10);
    border-top: 1px solid rgba(255, 255, 255, 0.10);

    transform: rotate(45deg);
}
/* ========================================
   SERVICES OTHER (другие услуги)
======================================== */

.services-other {
    padding: 60px 0 40px;
    background:
        radial-gradient(circle at top center, rgba(18, 56, 96, 0.18) 0%, rgba(6, 26, 49, 0) 38%),
        linear-gradient(180deg, #062342 0%, #071f3a 100%);
}

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

.services-other__card {
    display: block;
    padding: 22px 20px;

    border-radius: 20px;

    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.10);

    text-decoration: none;

    transition: all 0.2s ease;

    box-shadow: 0 14px 30px rgba(0, 0, 0, 0.16);
}

.services-other__card h3 {
    margin: 0 0 8px;
    font-size: 18px;
    color: #ffffff;
}

.services-other__card p {
    margin: 0;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.70);
}

.services-other__card:hover {
    transform: translateY(-2px);
    background: rgba(255, 255, 255, 0.10);
    border-color: rgba(255, 138, 42, 0.35);
}

/* адаптив */
@media (max-width: 900px) {
    .services-other__grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 600px) {
    .services-other__grid {
        grid-template-columns: 1fr;
    }
}

/* ========================================
   FAQ PAGE
   Страница частых вопросов КЦБ
======================================== */

/* Hero FAQ */
.faq-hero {
    position: relative;
    padding: 88px 0 74px;
    background:
        radial-gradient(circle at top center, rgba(18, 56, 96, 0.30) 0%, rgba(6, 26, 49, 0) 42%),
        linear-gradient(180deg, #062342 0%, #071f3a 100%);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    overflow: hidden;
}

.faq-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px),
        linear-gradient(180deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
    background-size: 36px 36px;
    opacity: 0.16;
    pointer-events: none;
}

.faq-hero__inner {
    position: relative;
    z-index: 1;
    display: flex;
    justify-content: center;
}

.faq-hero__content {
    width: 100%;
    max-width: 920px;
    text-align: center;
}

.faq-hero__badge {
    display: inline-flex;
    align-items: center;
    padding: 8px 14px;
    margin-bottom: 18px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.10);
    border: 1px solid rgba(255, 255, 255, 0.14);
    color: #dbeafe;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.02em;
}

.faq-hero__title {
    margin: 0 0 18px;
    font-size: clamp(36px, 5vw, 56px);
    line-height: 1.08;
    color: #ffffff;
}

.faq-hero__subtitle {
    max-width: 780px;
    margin: 0 auto;
    font-size: 19px;
    line-height: 1.72;
    color: rgba(255, 255, 255, 0.82);
}

/* Основной фон FAQ */
.faq-page,
.faq-cta {
    background:
        radial-gradient(circle at top center, rgba(18, 56, 96, 0.18) 0%, rgba(6, 26, 49, 0) 38%),
        linear-gradient(180deg, #062342 0%, #071f3a 100%);
}

.faq-page {
    padding: 78px 0 36px;
}

/* Группы вопросов */
.faq-group {
    margin-bottom: 34px;
}

.faq-group:last-child {
    margin-bottom: 0;
}

.faq-group__head {
    margin-bottom: 18px;
    padding: 0 2px;
}

.faq-group__label {
    display: inline-flex;
    align-items: center;
    padding: 6px 12px;
    margin-bottom: 12px;
    border-radius: 999px;
    background: rgba(255, 138, 42, 0.12);
    border: 1px solid rgba(255, 138, 42, 0.20);
    color: #ffb36f;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.03em;
    text-transform: uppercase;
}

.faq-group__head h3 {
    margin: 0;
    font-size: clamp(24px, 3vw, 34px);
    line-height: 1.2;
    color: #ffffff;
}

/* Список вопросов */
.faq-list {
    display: grid;
    gap: 14px;
}

/* Элемент FAQ */
.faq-item {
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.10);
    box-shadow: 0 16px 38px rgba(0, 0, 0, 0.16);
    backdrop-filter: blur(6px);
    overflow: hidden;
}

/* Убираем стандартный маркер details */
.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-item summary {
    list-style: none;
}

/* Заголовок вопроса */
.faq-question {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding: 22px 24px;
    cursor: pointer;
}

.faq-question span:first-child {
    font-size: 18px;
    line-height: 1.45;
    font-weight: 700;
    color: #ffffff;
}

/* Иконка + / - */
.faq-icon {
    position: relative;
    flex: 0 0 18px;
    width: 18px;
    height: 18px;
}

.faq-icon::before,
.faq-icon::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 18px;
    height: 2px;
    border-radius: 999px;
    background: #ff8a2a;
    transform: translate(-50%, -50%);
    transition: transform 0.2s ease, opacity 0.2s ease;
}

.faq-icon::after {
    width: 2px;
    height: 18px;
}

.faq-item[open] .faq-icon::after {
    opacity: 0;
    transform: translate(-50%, -50%) scaleY(0.3);
}

/* Ответ */
.faq-answer {
    padding: 0 24px 22px;
}

.faq-answer p {
    margin: 0;
    max-width: 980px;
    font-size: 16px;
    line-height: 1.78;
    color: rgba(255, 255, 255, 0.78);
}

/* Hover */
.faq-item:hover {
    border-color: rgba(255, 138, 42, 0.18);
    box-shadow: 0 18px 42px rgba(0, 0, 0, 0.18);
}

.faq-item:hover .faq-question span:first-child {
    color: #ffffff;
}

/* CTA FAQ */
.faq-cta {
    padding: 24px 0 90px;
}

/* Адаптация */
@media (max-width: 768px) {
    .faq-hero {
        padding: 68px 0 56px;
    }

    .faq-hero__title {
        font-size: clamp(32px, 9vw, 44px);
    }

    .faq-hero__subtitle {
        font-size: 17px;
    }

    .faq-page {
        padding: 64px 0 28px;
    }

    .faq-group {
        margin-bottom: 28px;
    }

    .faq-group__head h3 {
        font-size: 24px;
    }

    .faq-question {
        padding: 20px 18px;
        gap: 14px;
    }

    .faq-question span:first-child {
        font-size: 17px;
    }

    .faq-answer {
        padding: 0 18px 20px;
    }

    .faq-answer p {
        font-size: 15px;
        line-height: 1.72;
    }
}

@media (max-width: 480px) {
    .faq-question span:first-child {
        font-size: 16px;
    }

    .faq-group__label {
        font-size: 11px;
    }
}

/* ========================================
   CONTACTS PAGE
   Страница контактов КЦБ
======================================== */

/* Hero контактов */
.contacts-hero {
    position: relative;
    padding: 88px 0 54px;
    background:
        radial-gradient(circle at top center, rgba(18, 56, 96, 0.30) 0%, rgba(6, 26, 49, 0) 42%),
        linear-gradient(180deg, #062342 0%, #071f3a 100%);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    overflow: hidden;
}

.contacts-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px),
        linear-gradient(180deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
    background-size: 36px 36px;
    opacity: 0.16;
    pointer-events: none;
}

.contacts-hero__inner {
    position: relative;
    z-index: 1;
}

.contacts-hero__content {
    max-width: 980px;
}

.contacts-hero__badge {
    display: inline-flex;
    align-items: center;
    padding: 8px 14px;
    margin-bottom: 18px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.10);
    border: 1px solid rgba(255, 255, 255, 0.14);
    color: #dbeafe;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.02em;
}

.contacts-hero__title {
    margin: 0 0 18px;
    font-size: clamp(36px, 5vw, 56px);
    line-height: 1.08;
    color: #ffffff;
}

.contacts-hero__subtitle {
    max-width: 860px;
    margin: 0;
    font-size: 19px;
    line-height: 1.72;
    color: rgba(255, 255, 255, 0.82);
}

/* Общий фон секций */
.contacts-page,
.contacts-cta {
    background:
        radial-gradient(circle at top center, rgba(18, 56, 96, 0.18) 0%, rgba(6, 26, 49, 0) 38%),
        linear-gradient(180deg, #062342 0%, #071f3a 100%);
}

/* Основная секция */
.contacts-page {
    padding: 44px 0 44px;
}

.contacts-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(380px, 520px);
    gap: 40px;
    align-items: start;
}

/* Левая колонка */
.contacts-info {
    display: grid;
    gap: 20px;
}

.contacts-card {
    padding: 28px 24px;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.10);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.16);
    backdrop-filter: blur(6px);
}

.contacts-card h3 {
    margin: 0 0 18px;
    font-size: 28px;
    line-height: 1.2;
    color: #ffffff;
}

.contacts-card p {
    margin: 0 0 20px;
    font-size: 16px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.82);
}

.contacts-card p:last-child {
    margin-bottom: 0;
}

.contacts-card strong {
    color: #ffffff;
}

.contacts-card a {
    color: #ff8a2a;
    text-decoration: none;
    transition: color 0.2s ease;
}

.contacts-card a:hover {
    color: #ffab66;
    text-decoration: underline;
}

.contacts-card--note p {
    margin: 0;
}

/* Правая колонка с формой */
.contacts-form {
    position: relative;
}

.contacts-form .form-card {
    width: 100%;
    margin: 0;
}

/* Чтобы форма смотрелась в одном уровне с карточками */
.contacts-form .form-card {
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.22);
}

/* CTA */
.contacts-cta {
    padding: 24px 0 90px;
}

/* Адаптация */
@media (max-width: 1100px) {
    .contacts-grid {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .contacts-form {
        max-width: 620px;
    }
}

@media (max-width: 768px) {
    .contacts-hero {
        padding: 68px 0 42px;
    }

    .contacts-hero__title {
        font-size: clamp(32px, 9vw, 44px);
    }

    .contacts-hero__subtitle {
        font-size: 17px;
    }

    .contacts-page {
        padding: 32px 0 32px;
    }

    .contacts-card {
        padding: 24px 20px;
        border-radius: 22px;
    }

    .contacts-card h3 {
        font-size: 24px;
    }

    .contacts-card p {
        font-size: 15px;
        line-height: 1.68;
    }
}

@media (max-width: 480px) {
    .contacts-hero__title {
        font-size: 32px;
    }

    .contacts-card h3 {
        font-size: 22px;
    }
}

/* =========================
   BLOG PAGE — ОБЩИЙ КОНТЕЙНЕР
   ========================= */

.blog-page {
    padding: 16px 0 40px;
}

/* верхний блок с заголовком и описанием */
.blog-page__header {
    margin-bottom: 20px;
}

.blog-page__eyebrow {
    font-size: 12px;
    opacity: 0.68;
    margin-bottom: 4px;
}

.blog-page__lead {
    max-width: 640px;
    margin-top: 8px;
    font-size: 14px;
    line-height: 1.5;
    opacity: 0.82;
}

/* все ссылки внутри блога без подчеркивания */
.blog-page a,
.blog-page a:link,
.blog-page a:visited,
.blog-page a:hover,
.blog-page a:active {
    text-decoration: none;
}


/* =========================
   ОСНОВНАЯ СЕТКА СТРАНИЦЫ
   ========================= */

/* главная сетка: контент + правая колонка */
.blog-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 320px;
    gap: 24px;
    align-items: start;
}

/* левая часть */
.blog-main {
    display: flex;
    flex-direction: column;
    gap: 24px;
    min-width: 0;
}

/* правая колонка */
.blog-sidebar {
    position: relative;
    min-width: 0;
}

.blog-sidebar__inner {
    position: sticky;
    top: 20px;
    background: rgba(20, 40, 60, 0.38);
    padding: 14px 16px;
    border-radius: 10px;
	box-shadow: none;
}


/* =========================
   FEATURED (ГЛАВНАЯ СТАТЬЯ)
   ========================= */

.featured-post {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

/* картинка */
.featured-post__image {
    width: 100%;
    height: 280px;
    object-fit: cover;
    border-radius: 10px;
    display: block;
}

/* мета (категория + дата) */
.featured-post__meta {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 12px;
    opacity: 0.72;
	margin: 0;
}

.featured-post__category {
    color: #4fd1c5;
}

/* заголовок */
.featured-post__title {
    font-size: 20px;
    line-height: 1.15;
    margin: 0;
}

/* описание */
.featured-post__excerpt {
    max-width: 620px;
    font-size: 14px;
    line-height: 1.45;
    opacity: 0.85;
    margin: 0;
}

/* ссылка */
.featured-post__link {
    display: inline-block;
    margin-top: 6px;
    font-weight: 500;
    text-decoration: none;
}


/* =========================
   POPULAR (ПОПУЛЯРНОЕ)
   ========================= */

.section-heading {
    margin-bottom: 10px;
}

.section-heading--light {
    color: #fff;
}

/* уменьшенные заголовки секций */
.section-heading h2,
.section-heading--light h2,
#blog-popular-title,
#blog-documents-title,
#blog-expert-title,
#blog-fresh-title {
    font-size: 15px;
    line-height: 1.15;
    font-weight: 700;
    margin: 0;
    letter-spacing: 0;
	
}

/* сетка карточек */
.popular-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
}

/* карточка популярного */
.popular-card {
    padding: 14px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.03);
    transition: background 0.2s ease;
}

.popular-card:hover {
    background: rgba(255, 255, 255, 0.06);
}

/* категория */
.popular-card__category {
    font-size: 11px;
    opacity: 0.6;
    display: block;
    margin-bottom: 5px;
}

/* заголовок */
.popular-card__title {
    font-size: 14px;
    line-height: 1.3;
    margin: 0;
}


/* =========================
   НИЖНИЕ ДВА БЛОКА
   ========================= */

.blog-bottom-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}

/* карточка секции */
.blog-section-card {
    padding: 16px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.03);
}

/* список карточек внутри */
.stack-list {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

/* отдельная карточка */
.stack-card__title {
    font-size: 14px;
    line-height: 1.3;
    margin: 0 0 5px;
}

.stack-card__excerpt {
    font-size: 13px;
    line-height: 1.4;
    opacity: 0.72;
    margin: 0;
}


/* =========================
   ПРАВАЯ КОЛОНКА (ЛЕНТА)
   ========================= */

.fresh-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

/* элемент ленты */
.fresh-item {
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

/* мета */
.fresh-item__meta {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    font-size: 11px;
    opacity: 0.6;
    margin-bottom: 4px;
}

/* заголовок */
.fresh-item__title {
    font-size: 13px;
    line-height: 1.3;
    margin: 0;
}


/* =========================
   АДАПТИВ
   ========================= */

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

    .blog-sidebar {
        order: -1;
    }

    .blog-sidebar__inner {
        position: relative;
        top: 0;
    }
}

@media (max-width: 768px) {
    .blog-page {
        padding: 16px 0 36px;
    }

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

    .blog-bottom-grid {
        grid-template-columns: 1fr;
    }

    .section-heading h2,
    .section-heading--light h2,
    #blog-popular-title,
    #blog-documents-title,
    #blog-expert-title,
    #blog-fresh-title {
        font-size: 16px;
    }

    .featured-post__image {
        height: 260px;
    }

    .featured-post__title {
        font-size: 21px;
    }
}

/* =========================
   BLOG POST PAGE
   ========================= */

.blog-post-page {
    padding: 24px 0 48px;
}

.blog-post-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 300px;
    gap: 32px;
}

/* основной контент */
.blog-post {
    max-width: 720px;
}

/* верхняя мета */
.blog-post__header {
    display: flex;
    gap: 12px;
    font-size: 12px;
    opacity: 0.6;
    margin-bottom: 8px;
}

.blog-post__category {
    color: #4fd1c5;
}

/* заголовок */
.blog-post__title {
    font-size: 26px;
    line-height: 1.2;
    margin-bottom: 16px;
}

/* картинка */
.blog-post__image {
    width: 100%;
    height: 340px;
    object-fit: cover;
    border-radius: 12px;
    margin-bottom: 20px;
}

/* текст статьи */
.blog-post__content {
    font-size: 15px;
    line-height: 1.6;
}

.blog-post__content h2 {
    font-size: 20px;
    margin: 24px 0 10px;
}

.blog-post__content p {
    margin-bottom: 14px;
    opacity: 0.9;
}

/* правая колонка */
.blog-post-sidebar {
    position: relative;
}

.blog-cta {
    position: sticky;
    top: 20px;

    padding: 20px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.04);
}

.blog-cta h3 {
    font-size: 18px;
    margin-bottom: 10px;
}

.blog-cta p {
    font-size: 14px;
    margin-bottom: 16px;
    opacity: 0.8;
}


/* =========================
   АДАПТИВ
   ========================= */

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

    .blog-post-sidebar {
        order: -1;
    }

    .blog-cta {
        position: relative;
    }
}

/* path: kcb-site/public/assets/style.css */

/* =========================
   BLOG POST PAGE
   ========================= */

.blog-post-page {
    padding: 20px 0 48px;
}

.blog-post-page a,
.blog-post-page a:link,
.blog-post-page a:visited,
.blog-post-page a:hover,
.blog-post-page a:active {
    text-decoration: none;
}

.blog-post-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 300px;
    gap: 32px;
    align-items: start;
}

/* =========================
   ОСНОВНОЙ КОНТЕНТ СТАТЬИ
   ========================= */

.blog-post {
    min-width: 0;
    max-width: 760px;
}

.blog-post__back {
    margin-bottom: 10px;
}

.blog-post__back-link {
    font-size: 14px;
    font-weight: 600;
}

.blog-post__header {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 13px;
    line-height: 1.2;
    opacity: 0.72;
    margin-bottom: 10px;
}

.blog-post__category {
    color: #4fd1c5;
}

.blog-post__title {
    font-size: 28px;
    line-height: 1.18;
    margin: 0 0 18px;
}

.blog-post__image {
    width: 100%;
    height: 360px;
    object-fit: cover;
    border-radius: 12px;
    display: block;
    margin: 0 0 24px;
}

/* Текст статьи */
.blog-post__content {
    font-size: 16px;
    line-height: 1.72;
    color: rgba(255, 255, 255, 0.92);
}

.blog-post__content h2 {
    font-size: 20px;
    line-height: 1.3;
    margin: 32px 0 12px;
    color: #ffffff;
}

.blog-post__content h3 {
    font-size: 18px;
    line-height: 1.3;
    margin: 26px 0 10px;
    color: #ffffff;
}

.blog-post__content p {
    margin: 0 0 18px;
}

.blog-post__content ul,
.blog-post__content ol {
    margin: 0 0 18px 22px;
    padding: 0;
}

.blog-post__content li {
    margin-bottom: 8px;
}

.blog-post__content img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
}

/* =========================
   INLINE CTA ВНУТРИ СТАТЬИ
   ========================= */

.blog-post__inline-cta {
    margin-top: 30px;
    margin-bottom: 34px;
}

.blog-post__inline-cta-card {
    padding: 24px;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.04);
}

.blog-post__inline-cta-card h2 {
    font-size: 18px;
    line-height: 1.25;
    margin: 0 0 10px;
}

.blog-post__inline-cta-card p {
    font-size: 15px;
    line-height: 1.55;
    margin: 0 0 16px;
    opacity: 0.9;
}

/* =========================
   ПОХОЖИЕ МАТЕРИАЛЫ
   ========================= */

.blog-related {
    margin-top: 10px;
}

.blog-related .section-heading {
    margin-bottom: 14px;
}

.blog-related .section-heading h2 {
    font-size: 20px;
    line-height: 1.2;
    margin: 0;
}

.blog-related .popular-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}

.blog-related .popular-card {
    padding: 16px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.04);
}

.blog-related .popular-card__category {
    display: block;
    font-size: 12px;
    line-height: 1.2;
    opacity: 0.65;
    margin-bottom: 8px;
}

.blog-related .popular-card__title {
    font-size: 16px;
    line-height: 1.35;
    margin: 0;
}

/* =========================
   ПРАВЫЙ САЙДБАР
   ========================= */

.blog-post-sidebar {
    min-width: 0;
    position: sticky;
    top: 20px;
    align-self: start;
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.blog-cta {
    padding: 20px;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.05);
}

.blog-cta h3 {
    font-size: 18px;
    line-height: 1.25;
    margin: 0 0 12px;
}

.blog-cta p {
    font-size: 15px;
    line-height: 1.55;
    margin: 0 0 16px;
    opacity: 0.88;
}

.blog-sidebar-nav {
    padding: 18px 20px;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.03);
}

.blog-sidebar-nav__title {
    font-size: 18px;
    line-height: 1.2;
    margin: 0 0 12px;
}

.blog-sidebar-nav__list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.blog-sidebar-nav__link {
    display: block;
    font-size: 15px;
    line-height: 1.35;
}

/* =========================
   АДАПТИВ
   ========================= */

@media (max-width: 1024px) {
    .blog-post-layout {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .blog-post {
        max-width: none;
    }

    .blog-post-sidebar {
        position: relative;
        top: 0;
        gap: 14px;
    }
}

@media (max-width: 768px) {
    .blog-post-page {
        padding: 16px 0 36px;
    }

    .blog-post__title {
        font-size: 24px;
        margin-bottom: 14px;
    }

    .blog-post__image {
        height: 240px;
        margin-bottom: 18px;
    }

    .blog-post__content {
        font-size: 15px;
        line-height: 1.65;
    }

    .blog-post__content h2 {
        font-size: 18px;
        margin: 26px 0 10px;
    }

    .blog-related .popular-grid {
        grid-template-columns: 1fr;
    }

    .blog-cta,
    .blog-sidebar-nav,
    .blog-post__inline-cta-card {
        padding: 16px;
    }
}

/* =========================
   BLOG JOURNAL PAGE
   ========================= */

.blog-journal-page {
    padding: 20px 0 48px;
}

.blog-journal-page a,
.blog-journal-page a:link,
.blog-journal-page a:visited,
.blog-journal-page a:hover,
.blog-journal-page a:active {
    text-decoration: none;
}

/* =========================
   ВЕРХ СТРАНИЦЫ ЖУРНАЛА
   ========================= */

.blog-journal-header {
    margin-bottom: 20px;
}

.blog-journal-header__back {
    margin-bottom: 8px;
}

.blog-journal-header__back-link {
    font-size: 14px;
    line-height: 1.35;
    font-weight: 600;
}

.blog-journal-title {
    font-size: 30px;
    line-height: 1.15;
    margin: 0 0 10px;
}

.blog-journal-lead {
    max-width: 760px;
    font-size: 15px;
    line-height: 1.55;
    opacity: 0.84;
    margin: 0;
}

/* =========================
   РУБРИКИ / ФИЛЬТРЫ
   ========================= */

.blog-categories {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 24px;
}

.blog-categories--journal {
    margin-bottom: 24px;
}

.blog-categories__link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 38px;
    padding: 0 16px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.04);
    font-size: 14px;
    line-height: 1;
    transition: background 0.2s ease, transform 0.2s ease;
}

.blog-categories__link:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-1px);
}

.blog-categories__link.is-active {
    background: rgba(255, 255, 255, 0.12);
    font-weight: 600;
}

/* =========================
   СЕТКА ЖУРНАЛА
   ========================= */

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

.journal-card {
    display: flex;
    flex-direction: column;
    border-radius: 14px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.03);
    min-width: 0;
}

.journal-card__image-link {
    display: block;
}

.journal-card__image {
    display: block;
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.journal-card__content {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 18px;
    min-width: 0;
}

.journal-card__meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    font-size: 12px;
    line-height: 1.2;
    opacity: 0.68;
}

.journal-card__category {
    color: #4fd1c5;
}

.journal-card__date {
    white-space: nowrap;
}

.journal-card__title {
    font-size: 20px;
    line-height: 1.28;
    margin: 0;
}

.journal-card__excerpt {
    font-size: 14px;
    line-height: 1.5;
    opacity: 0.82;
    margin: 0;
}

.journal-card__link {
    display: inline-block;
    margin-top: 2px;
    font-size: 14px;
    font-weight: 600;
}

/* =========================
   ПУСТОЕ СОСТОЯНИЕ НА БУДУЩЕЕ
   ========================= */

.journal-empty {
    padding: 28px;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.03);
}

.journal-empty__title {
    font-size: 20px;
    line-height: 1.25;
    margin: 0 0 8px;
}

.journal-empty__text {
    font-size: 14px;
    line-height: 1.5;
    opacity: 0.8;
    margin: 0;
}

/* =========================
   АДАПТИВ
   ========================= */

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

@media (max-width: 768px) {
    .blog-journal-page {
        padding: 16px 0 36px;
    }

    .blog-journal-title {
        font-size: 24px;
    }

    .blog-journal-lead {
        font-size: 14px;
    }

    .blog-categories {
        gap: 8px;
        margin-bottom: 20px;
    }

    .blog-categories__link {
        min-height: 34px;
        padding: 0 14px;
        font-size: 13px;
    }

    .journal-card__image {
        height: 200px;
    }

    .journal-card__content {
        padding: 16px;
        gap: 8px;
    }

    .journal-card__title {
        font-size: 18px;
    }

    .journal-card__excerpt {
        font-size: 13px;
    }
}

/* =========================
   BLOG TOPBAR
   ========================= */

.blog-topbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 24px;
    gap: 16px;
}

.blog-topbar__title {
    font-size: 24px;
    margin: 0;
}

.blog-topbar__right .btn {
    white-space: nowrap;
}

@media (max-width: 768px) {
    .blog-topbar {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }

    .blog-topbar__title {
        font-size: 20px;
    }
}