/* =========================================================
   BROCHURE PAGE VARIABLES
========================================================= */
:root {
    --color1: #1F3B5D;
    --color2: #FBD405;

    --brochure-white: #ffffff;
    --brochure-dark: #07164f;
    --brochure-blue: #0862F4;
    --brochure-muted: #526488;
}

/* =========================================================
   BROCHURE HERO SECTION
========================================================= */
.brochure-hero {
    position: relative;
    overflow: hidden;
    min-height: 720px;
    padding: 90px 0 0;
    background: linear-gradient(135deg, #f8fbff 0%, #eaf3ff 45%, #cfe2ff 100%);
}

.brochure-hero::before {
    content: "";
    position: absolute;
    right: 74px;
    top: 142px;
    width: 110px;
    height: 110px;
    opacity: 0.45;
    background-image: radial-gradient(rgba(8, 98, 244, 0.26) 2px, transparent 2px);
    background-size: 16px 16px;
    pointer-events: none;
}

.brochure-hero::after {
    content: "";
    position: absolute;
    left: -8%;
    bottom: -42%;
    width: 118%;
    height: 55%;
    border-radius: 50% 50% 0 0;
    background: rgba(255, 255, 255, 0.42);
    pointer-events: none;
}

.brochure-hero-row {
    position: relative;
    z-index: 2;
    min-height: 630px;
}

.brochure-hero-content {
    position: relative;
    z-index: 5;
    height: 100%;
    max-width: 620px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-bottom: 76px;
}

.brochure-hero-badge {
    width: fit-content;
    min-height: 56px;
    display: inline-flex;
    align-items: center;
    gap: 14px;
    padding: 10px 28px;
    margin-bottom: 46px;
    border-radius: 999px;
    background: rgba(8, 98, 244, 0.10);
    color: var(--brochure-blue);
    font-size: 20px;
    font-weight: 900;
    line-height: 1;
    text-transform: uppercase;
    animation: brochureBadgeFloat 3.8s ease-in-out infinite;
}

.brochure-hero-badge i {
    font-size: 25px;
}

.brochure-hero h1 {
    margin: 0;
    color: var(--brochure-dark);
    font-size: 48px;
    font-weight: 900;
    line-height: 1.12;
    letter-spacing: -1.6px;
}

.brochure-hero-line {
    width: 84px;
    height: 6px;
    margin: 34px 0 34px;
    border-radius: 999px;
    background: var(--color2);
}

.brochure-hero p {
    max-width: 650px;
    margin: 0;
    color: var(--brochure-muted);
    font-size: 18px;
    font-weight: 500;
    line-height: 1.58;
}

.brochure-hero-visual {
    position: relative;
    z-index: 4;
    height: 100%;
    min-height: 630px;
}

.brochure-hero-img {
    position: absolute;
    right: -115px;
    bottom: 0;
    max-height: 100%;
    max-width: 900px;
    width: auto;
    object-fit: contain;
    transform-origin: bottom right;
    filter: drop-shadow(0 30px 44px rgba(31, 59, 93, 0.18));
    transition: transform 0.45s ease;
}

.brochure-hero-visual:hover .brochure-hero-img {
    transform: translateY(-8px) scale(1.018);
}

/* =========================================================
   BROCHURE HERO ANIMATION
========================================================= */
.brochure-hero .fade-up {
    opacity: 0;
    animation: brochureFadeUp 0.85s ease forwards;
}

.brochure-hero .delay-1 {
    animation-delay: 0.18s;
}

@keyframes brochureFadeUp {
    from {
        opacity: 0;
        transform: translateY(34px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes brochureBadgeFloat {
    0%, 100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-5px);
    }
}

/* =========================================================
   BROCHURE HERO RESPONSIVE
========================================================= */
@media (max-width: 1399.98px) {
    .brochure-hero {
        min-height: 680px;
        padding-top: 78px;
    }

    .brochure-hero-row {
        min-height: 602px;
    }

    .brochure-hero-content {
        padding-bottom: 66px;
    }

    .brochure-hero h1 {
        font-size: 54px;
    }

    .brochure-hero p {
        font-size: 20px;
    }

    .brochure-hero-img {
        max-width: 800px;
        right: -120px;
    }
}

@media (max-width: 1199.98px) {
    .brochure-hero {
        min-height: 630px;
        padding-top: 70px;
    }

    .brochure-hero-row {
        min-height: 560px;
    }

    .brochure-hero-content {
        padding-bottom: 52px;
    }

    .brochure-hero-badge {
        min-height: 48px;
        margin-bottom: 34px;
        font-size: 17px;
    }

    .brochure-hero h1 {
        font-size: 46px;
    }

    .brochure-hero p {
        font-size: 18px;
    }

    .brochure-hero-img {
        max-width: 690px;
        right: -118px;
    }
}

@media (max-width: 991.98px) {
    .brochure-hero {
        min-height: auto;
        padding: 62px 0 0;
    }

    .brochure-hero-row {
        min-height: auto;
    }

    .brochure-hero-content {
        max-width: 720px;
        height: auto;
        margin: 0 auto;
        padding-bottom: 34px;
        text-align: center;
        align-items: center;
    }

    .brochure-hero-badge,
    .brochure-hero-line {
        margin-left: auto;
        margin-right: auto;
    }

    .brochure-hero p {
        max-width: 680px;
        margin-left: auto;
        margin-right: auto;
    }

    .brochure-hero-visual {
        min-height: 470px;
        height: 470px;
    }

    .brochure-hero-img {
        left: 50%;
        right: auto;
        bottom: 0;
        max-height: 100%;
        max-width: 640px;
        transform: translateX(-50%);
        transform-origin: bottom center;
    }

    .brochure-hero-visual:hover .brochure-hero-img {
        transform: translateX(-50%) translateY(-6px) scale(1.018);
    }
}

@media (max-width: 767.98px) {
    .brochure-hero {
        padding-top: 48px;
    }

    .brochure-hero-badge {
        min-height: 42px;
        gap: 10px;
        padding: 8px 20px;
        margin-bottom: 26px;
        font-size: 14px;
    }

    .brochure-hero-badge i {
        font-size: 19px;
    }

    .brochure-hero h1 {
        font-size: 36px;
        line-height: 1.17;
        letter-spacing: -0.8px;
    }

    .brochure-hero-line {
        width: 74px;
        height: 5px;
        margin-top: 24px;
        margin-bottom: 24px;
    }

    .brochure-hero p {
        font-size: 16px;
        line-height: 1.6;
    }

    .brochure-hero-visual {
        min-height: 360px;
        height: 360px;
    }

    .brochure-hero-img {
        max-width: 500px;
    }
}

@media (max-width: 575.98px) {
    .brochure-hero {
        padding-top: 40px;
    }

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

    .brochure-hero p {
        font-size: 14.5px;
    }

    .brochure-hero-visual {
        min-height: 300px;
        height: 300px;
    }

    .brochure-hero-img {
        max-width: 420px;
    }
}

/* =========================================================
   BROCHURE MAIN SECTION
========================================================= */
.brochure-main-section {
    position: relative;
    overflow: hidden;
    padding: 24px 0;
    background: linear-gradient(135deg, #eef5ff 0%, #ffffff 45%, #eef6ff 100%);
}

.brochure-info-card,
.brochure-list-card {
    border: 1px solid rgba(8, 98, 244, 0.10);
    border-radius: 18px;
    background: linear-gradient(135deg, #ffffff 0%, #fbfdff 54%, #f5f9ff 100%);
    box-shadow: 0 18px 45px rgba(31, 59, 93, 0.08);
}

.brochure-info-card {
    display: grid;
    grid-template-columns: 1.6fr 1px 1fr 1px 1fr 1px 1fr;
    align-items: center;
    gap: 34px;
    padding: 34px 38px;
    margin-bottom: 18px;
}

.brochure-info-main,
.brochure-info-item {
    display: grid;
    grid-template-columns: 66px 1fr;
    align-items: center;
    gap: 20px;
}

.brochure-info-icon {
    width: 62px;
    height: 62px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #eaf3ff;
    color: var(--brochure-blue);
    font-size: 28px;
    transition: all 0.35s ease;
}

.brochure-info-main:hover .brochure-info-icon,
.brochure-info-item:hover .brochure-info-icon {
    transform: translateY(-5px) scale(1.06);
    box-shadow: 0 16px 34px rgba(8, 98, 244, 0.16);
}

.brochure-info-main h3,
.brochure-info-item h4 {
    margin: 0 0 8px;
    color: var(--brochure-dark);
    font-weight: 900;
    line-height: 1.2;
}

.brochure-info-main h3 {
    font-size: 21px;
}

.brochure-info-item h4 {
    font-size: 15.5px;
}

.brochure-info-main p,
.brochure-info-item p {
    margin: 0;
    color: var(--brochure-muted);
    font-size: 14.5px;
    font-weight: 500;
    line-height: 1.55;
}

.brochure-info-divider {
    width: 1px;
    height: 72px;
    background: rgba(8, 98, 244, 0.12);
}

.brochure-list-card {
    padding: 28px 26px 26px;
}

.brochure-list-heading {
    margin-bottom: 18px;
}

.brochure-list-heading h2 {
    margin: 0 0 12px;
    color: var(--brochure-dark);
    font-size: 28px;
    font-weight: 900;
    line-height: 1.2;
}

.brochure-list-heading p {
    margin: 0;
    color: var(--brochure-muted);
    font-size: 15.5px;
    font-weight: 500;
    line-height: 1.5;
}

.brochure-card {
    height: 100%;
    padding: 26px 26px 20px;
    border: 1px solid rgba(8, 98, 244, 0.10);
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0 16px 38px rgba(31, 59, 93, 0.07);
    transition: all 0.35s ease;
}

.brochure-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 26px 52px rgba(31, 59, 93, 0.13);
}

.brochure-card-head {
    display: grid;
    grid-template-columns: 60px 1fr;
    align-items: start;
    gap: 18px;
    margin-bottom: 22px;
}

.brochure-card-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #eaf3ff;
    color: var(--brochure-blue);
    font-size: 27px;
    transition: all 0.35s ease;
}

.brochure-card:hover .brochure-card-icon {
    transform: scale(1.08) rotate(-4deg);
    box-shadow: 0 14px 30px rgba(8, 98, 244, 0.16);
}

.brochure-card-head h3 {
    margin: 0 0 6px;
    color: var(--brochure-dark);
    font-size: 18px;
    font-weight: 900;
    line-height: 1.25;
}

.brochure-card-head p {
    margin: 0;
    color: var(--brochure-muted);
    font-size: 14.2px;
    font-weight: 500;
    line-height: 1.45;
}

.brochure-download-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.brochure-download-item {
    text-align: center;
}

.brochure-cover {
    height: auto;
    margin-bottom: 18px;
    border-radius: 4px;
    overflow: hidden;
    background: #edf5ff;
    box-shadow: 0 18px 35px rgba(31, 59, 93, 0.14);
    transition: all 0.4s ease;
}

.brochure-cover img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    transition: transform 0.45s ease;
}

.brochure-download-item:hover .brochure-cover {
    transform: translateY(-6px);
    box-shadow: 0 24px 42px rgba(31, 59, 93, 0.18);
}

.brochure-download-item:hover .brochure-cover img {
    transform: scale(1.035);
}

.brochure-download-item h4 {
    margin: 0 0 12px;
    color: var(--brochure-muted);
    font-size: 14.5px;
    font-weight: 800;
    line-height: 1.2;
}

.brochure-download-btn {
    min-height: 44px;
    min-width: 158px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 10px 20px;
    border: 1.5px solid rgba(8, 98, 244, 0.24);
    border-radius: 7px;
    background: var(--brochure-white);
    color: var(--brochure-blue);
    font-size: 14.5px;
    font-weight: 900;
    line-height: 1;
    text-decoration: none;
    transition: all 0.35s ease;
}

.brochure-download-btn:hover {
    transform: translateY(-4px);
    color: var(--brochure-white);
    background: var(--brochure-blue);
    border-color: var(--brochure-blue);
    box-shadow: 0 14px 28px rgba(8, 98, 244, 0.20);
    text-decoration: none;
}

.brochure-download-btn i {
    font-size: 15px;
}

.brochure-note {
    display: grid;
    grid-template-columns: 30px 1fr;
    align-items: center;
    gap: 14px;
    margin-top: 24px;
    padding: 16px 20px;
    border-radius: 10px;
    background: linear-gradient(135deg, #edf5ff 0%, #f8fbff 100%);
}

.brochure-note i {
    width: 26px;
    height: 26px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1.5px solid rgba(8, 98, 244, 0.45);
    border-radius: 50%;
    color: var(--brochure-blue);
    font-size: 15px;
}

.brochure-note p {
    margin: 0;
    color: var(--brochure-muted);
    font-size: 14.5px;
    font-weight: 500;
    line-height: 1.45;
}

.brochure-note strong {
    color: var(--brochure-dark);
    font-weight: 900;
}

/* Animation */
.brochure-main-section .fade-up {
    opacity: 0;
    animation: brochureMainFadeUp 0.85s ease forwards;
}

.brochure-main-section .delay-1 {
    animation-delay: 0.12s;
}

.brochure-main-section .delay-2 {
    animation-delay: 0.24s;
}

.brochure-main-section .delay-3 {
    animation-delay: 0.36s;
}

.brochure-main-section .delay-4 {
    animation-delay: 0.48s;
}

@keyframes brochureMainFadeUp {
    from {
        opacity: 0;
        transform: translateY(34px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive */
@media (max-width: 1399.98px) {
    .brochure-info-card {
        gap: 24px;
        padding: 30px;
    }

    .brochure-cover {
        height: 250px;
    }
}

@media (max-width: 1199.98px) {
    .brochure-info-card {
        grid-template-columns: 1fr 1fr;
        gap: 26px;
    }

    .brochure-info-divider {
        display: none;
    }

    .brochure-cover {
        height: 280px;
    }
}

@media (max-width: 991.98px) {
    .brochure-main-section {
        padding: 20px 0;
    }

    .brochure-info-card {
        grid-template-columns: 1fr;
        padding: 26px;
    }

    .brochure-list-card {
        padding: 26px 20px;
    }

    .brochure-cover {
        height: 330px;
    }
}

@media (max-width: 767.98px) {
    .brochure-info-main,
    .brochure-info-item,
    .brochure-card-head,
    .brochure-note {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .brochure-info-icon,
    .brochure-card-icon,
    .brochure-note i {
        margin: 0 auto;
    }

    .brochure-list-heading {
        text-align: center;
    }

    .brochure-list-heading h2 {
        font-size: 25px;
    }

    .brochure-card {
        padding: 22px 18px;
    }

    .brochure-download-grid {
        gap: 18px;
    }

    .brochure-cover {
        height: 260px;
    }

    .brochure-download-btn {
        width: 100%;
        min-width: 0;
    }
}

@media (max-width: 575.98px) {
    .brochure-info-card,
    .brochure-list-card {
        border-radius: 16px;
    }

    .brochure-download-grid {
        grid-template-columns: 1fr;
    }

    .brochure-cover {
        max-width: 230px;
        height: 315px;
        margin-left: auto;
        margin-right: auto;
    }
}

@media (max-width: 1399.98px) and (min-width: 992px) {
    .brochure-card {
        padding: 22px 18px;
    }

    .brochure-download-grid {
        gap: 16px;
    }

    .brochure-cover {
        height: 240px;
    }

    .brochure-download-item h4 {
        font-size: 13.5px;
        white-space: normal;
    }

    .brochure-download-btn {
        min-width: 0;
        width: 100%;
        padding: 10px 12px;
        font-size: 13.5px;
    }
}

@media (max-width: 1199.98px) and (min-width: 992px) {
    .brochure-download-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .brochure-cover {
        max-width: 230px;
        height: 315px;
        margin-left: auto;
        margin-right: auto;
    }

    .brochure-download-btn {
        max-width: 230px;
    }
}

/* =========================================================
   BROCHURE CTA SECTION
========================================================= */
.brochure-cta-section {
    position: relative;
    overflow: hidden;
    padding: 24px 0;
    background: linear-gradient(135deg, #eef5ff 0%, #ffffff 45%, #eef6ff 100%);
}

.brochure-cta-box {
    position: relative;
    overflow: hidden;
    min-height: 620px;
    padding: 72px 58px 62px;
    border: 1px solid rgba(8, 98, 244, 0.10);
    border-radius: 22px;
    background: linear-gradient(120deg, #ffffff 0%, #f6faff 46%, #dceaff 100%);
    box-shadow: 0 24px 60px rgba(31, 59, 93, 0.12);
}

.brochure-cta-box::before {
    content: "";
    position: absolute;
    right: -110px;
    bottom: -120px;
    width: 720px;
    height: 520px;
    border-radius: 48% 0 0 0;
    background: linear-gradient(135deg, rgba(8, 98, 244, 0.10), rgba(8, 98, 244, 0.22));
    pointer-events: none;
}

.brochure-cta-box::after {
    content: "";
    position: absolute;
    right: 64px;
    top: 76px;
    width: 96px;
    height: 96px;
    opacity: 0.36;
    background-image: radial-gradient(rgba(8, 98, 244, 0.34) 2px, transparent 2px);
    background-size: 16px 16px;
    pointer-events: none;
}

.brochure-cta-content {
    position: relative;
    z-index: 6;
    max-width: 710px;
}

.brochure-cta-badge {
    width: fit-content;
    min-height: 50px;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 9px 22px;
    margin-bottom: 34px;
    border-radius: 999px;
    background: rgba(8, 98, 244, 0.10);
    color: var(--brochure-blue);
    font-size: 17px;
    font-weight: 900;
    line-height: 1;
    animation: brochureCtaBadgeFloat 3.8s ease-in-out infinite;
}

.brochure-cta-badge i {
    width: 34px;
    height: 34px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(8, 98, 244, 0.10);
    color: var(--brochure-blue);
    font-size: 19px;
}

.brochure-cta-content h2 {
    max-width: 700px;
    margin: 0;
    color: var(--brochure-dark);
    font-size: 54px;
    font-weight: 900;
    line-height: 1.16;
    letter-spacing: -1.4px;
}

.brochure-cta-line {
    width: 74px;
    height: 5px;
    margin: 24px 0 26px;
    border-radius: 999px;
    background: var(--color2);
}

.brochure-cta-content > p {
    max-width: 710px;
    margin: 0 0 34px;
    color: var(--brochure-muted);
    font-size: 19.5px;
    font-weight: 500;
    line-height: 1.6;
}

.brochure-cta-features {
    display: grid;
    grid-template-columns: 1fr 1.22fr 1.08fr;
    align-items: center;
    max-width: 680px;
    margin-bottom: 34px;
}

.brochure-cta-feature {
    display: grid;
    grid-template-columns: 54px 1fr;
    align-items: center;
    gap: 14px;
    padding: 0 22px;
    border-right: 1px solid rgba(8, 98, 244, 0.16);
}

.brochure-cta-feature:first-child {
    padding-left: 0;
}

.brochure-cta-feature:last-child {
    border-right: 0;
    padding-right: 0;
}

.brochure-cta-feature-icon {
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #eaf3ff;
    color: var(--brochure-blue);
    font-size: 23px;
    transition: all 0.35s ease;
}

.brochure-cta-feature:hover .brochure-cta-feature-icon {
    transform: translateY(-5px) scale(1.06);
    box-shadow: 0 16px 34px rgba(8, 98, 244, 0.16);
}

.brochure-cta-feature span {
    color: var(--brochure-dark);
    font-size: 15.5px;
    font-weight: 900;
    line-height: 1.35;
}

.brochure-cta-buttons {
    display: flex;
    align-items: center;
    gap: 22px;
    margin-bottom: 26px;
}

.brochure-cta-btn {
    min-height: 66px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    padding: 14px 24px;
    border-radius: 9px;
    font-size: 16.5px;
    font-weight: 900;
    line-height: 1;
    text-decoration: none;
    transition: all 0.35s ease;
}

.brochure-cta-btn-primary {
    min-width: 365px;
    background: var(--brochure-blue);
    color: var(--brochure-white);
    box-shadow: 0 18px 34px rgba(8, 98, 244, 0.24);
}

.brochure-cta-btn-outline {
    min-width: 330px;
    border: 2px solid rgba(8, 98, 244, 0.45);
    background: rgba(255, 255, 255, 0.34);
    color: var(--brochure-blue);
}

.brochure-cta-btn i {
    font-size: 18px;
    transition: transform 0.35s ease;
}

.brochure-cta-btn:hover {
    transform: translateY(-5px);
    text-decoration: none;
}

.brochure-cta-btn:hover i:last-child {
    transform: translateX(4px);
}

.brochure-cta-btn-primary:hover {
    color: var(--brochure-white);
    background: #0754e6;
    box-shadow: 0 22px 42px rgba(8, 98, 244, 0.32);
}

.brochure-cta-btn-outline:hover {
    color: var(--brochure-white);
    background: var(--brochure-blue);
    border-color: var(--brochure-blue);
}

.brochure-cta-note {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--brochure-muted);
    font-size: 14.5px;
    font-weight: 700;
}

.brochure-cta-note i {
    color: var(--brochure-blue);
    font-size: 18px;
}

.brochure-cta-visual {
    position: relative;
    z-index: 4;
    height: 100%;
    min-height: 486px;
}

.brochure-cta-img {
    position: absolute;
    right: -58px;
    bottom: -62px;
    z-index: 4;
    max-height: calc(100% + 62px);
    max-width: 660px;
    width: auto;
    object-fit: contain;
    transform-origin: bottom right;
    filter: drop-shadow(0 28px 42px rgba(31, 59, 93, 0.18));
    transition: transform 0.45s ease;
}

.brochure-cta-visual:hover .brochure-cta-img {
    transform: translateY(-7px) scale(1.018);
}

/* =========================================================
   BROCHURE CTA ANIMATION
========================================================= */
.brochure-cta-section .fade-up {
    opacity: 0;
    animation: brochureCtaFadeUp 0.85s ease forwards;
}

.brochure-cta-section .delay-1 {
    animation-delay: 0.18s;
}

@keyframes brochureCtaFadeUp {
    from {
        opacity: 0;
        transform: translateY(34px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes brochureCtaBadgeFloat {
    0%, 100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-5px);
    }
}

/* =========================================================
   BROCHURE CTA RESPONSIVE
========================================================= */
@media (max-width: 1399.98px) {
    .brochure-cta-box {
        min-height: 585px;
        padding: 64px 48px 54px;
    }

    .brochure-cta-content h2 {
        font-size: 48px;
    }

    .brochure-cta-img {
        max-width: 590px;
        right: -72px;
    }

    .brochure-cta-btn-primary {
        min-width: 330px;
    }

    .brochure-cta-btn-outline {
        min-width: 300px;
    }
}

@media (max-width: 1199.98px) {
    .brochure-cta-box {
        min-height: 540px;
        padding: 54px 38px 46px;
    }

    .brochure-cta-content h2 {
        font-size: 40px;
    }

    .brochure-cta-content > p {
        font-size: 17px;
    }

    .brochure-cta-features {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .brochure-cta-feature,
    .brochure-cta-feature:first-child,
    .brochure-cta-feature:last-child {
        padding: 0;
        border-right: 0;
    }

    .brochure-cta-buttons {
        flex-direction: column;
        align-items: flex-start;
        gap: 14px;
    }

    .brochure-cta-btn,
    .brochure-cta-btn-primary,
    .brochure-cta-btn-outline {
        width: 100%;
        min-width: 0;
        max-width: 360px;
    }

    .brochure-cta-img {
        max-width: 520px;
        right: -82px;
    }
}

@media (max-width: 991.98px) {
    .brochure-cta-box {
        min-height: auto;
        padding: 44px 28px 0;
    }

    .brochure-cta-content {
        max-width: 720px;
        margin: 0 auto;
        text-align: center;
    }

    .brochure-cta-badge {
        margin-left: auto;
        margin-right: auto;
    }

    .brochure-cta-line {
        margin-left: auto;
        margin-right: auto;
    }

    .brochure-cta-content > p,
    .brochure-cta-features {
        margin-left: auto;
        margin-right: auto;
    }

    .brochure-cta-feature {
        max-width: 330px;
        margin: 0 auto;
        text-align: left;
    }

    .brochure-cta-buttons {
        align-items: center;
    }

    .brochure-cta-btn,
    .brochure-cta-btn-primary,
    .brochure-cta-btn-outline {
        max-width: 430px;
    }

    .brochure-cta-visual {
        min-height: 470px;
        height: 470px;
        margin-top: 14px;
    }

    .brochure-cta-img {
        left: 50%;
        right: auto;
        bottom: 0;
        max-height: 100%;
        max-width: 560px;
        transform: translateX(-50%);
        transform-origin: bottom center;
    }

    .brochure-cta-visual:hover .brochure-cta-img {
        transform: translateX(-50%) translateY(-6px) scale(1.018);
    }
}

@media (max-width: 767.98px) {
    .brochure-cta-section {
        padding: 18px 0;
    }

    .brochure-cta-box {
        padding: 36px 18px 0;
        border-radius: 18px;
    }

    .brochure-cta-box::before {
        right: -220px;
        bottom: -130px;
        width: 560px;
        height: 420px;
    }

    .brochure-cta-box::after {
        right: 26px;
        top: 48px;
        width: 70px;
        height: 70px;
        background-size: 14px 14px;
    }

    .brochure-cta-badge {
        min-height: 42px;
        padding: 8px 16px;
        margin-bottom: 26px;
        font-size: 13.5px;
    }

    .brochure-cta-badge i {
        width: 30px;
        height: 30px;
        font-size: 16px;
    }

    .brochure-cta-content h2 {
        font-size: 31px;
        line-height: 1.2;
    }

    .brochure-cta-content > p {
        font-size: 15.5px;
    }

    .brochure-cta-feature {
        grid-template-columns: 48px 1fr;
        gap: 12px;
    }

    .brochure-cta-feature-icon {
        width: 46px;
        height: 46px;
        font-size: 20px;
    }

    .brochure-cta-buttons {
        gap: 12px;
    }

    .brochure-cta-btn {
        min-height: 58px;
        font-size: 14.5px;
        padding: 13px 16px;
    }

    .brochure-cta-visual {
        min-height: 390px;
        height: 390px;
    }

    .brochure-cta-img {
        max-width: 455px;
    }
}

@media (max-width: 575.98px) {
    .brochure-cta-content h2 {
        font-size: 27px;
    }

    .brochure-cta-content > p {
        font-size: 14.5px;
    }

    .brochure-cta-feature {
        max-width: 280px;
    }

    .brochure-cta-feature span {
        font-size: 14px;
    }

    .brochure-cta-btn {
        font-size: 13.5px;
        gap: 9px;
    }

    .brochure-cta-visual {
        min-height: 320px;
        height: 320px;
    }

    .brochure-cta-img {
        max-width: 370px;
    }
}
