.hero-section-container.contact-title {
    text-align: center;
    justify-content: center;
}

.section-header-center {
    margin-inline: auto;
    text-align: center;
}

.d-none {
    display: none;
}

.form-title {
    color: #222;
    font-weight: 500;
}

.cybersecurity {
    overflow-x: hidden;
}

.cyber-section {
    overflow: hidden;
    position: relative;
}

.cyber-section-container {
    padding-top: 92px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.contact-wrapper-block {
    max-width: 650px;
}

.floating-element-icon-1 {
    top: -5%;
    left: 10%;
    animation: float-5 16s linear infinite alternate;
}

.floating-element-icon-2 {
    top: -15%;
    left: 35%;
    animation: float-2 15s ease-in-out infinite alternate;
}

.floating-element-icon-3 {
    top: -5%;
    left: 65%;
    animation: float-1 16s linear infinite alternate;
}

.floating-element-icon-4 {
    top: -5%;
    right: 10%;
    animation: float-3 16s linear infinite alternate;
}

.floating-element-icon-5 {
    top: 40%;
    right: 0%;
    animation: float-5 16s linear infinite alternate;
}

.floating-element-icon-6 {
    bottom: -10%;
    right: 20%;
    animation: float-3 16s linear infinite alternate;
}

.floating-element-icon-7 {
    bottom: -10%;
    right: 40%;
    animation: float-1 16s linear infinite alternate;
}

.floating-element-icon-8 {
    bottom: -10%;
    right: 80%;
    animation: float-3 16s linear infinite alternate;
}

.floating-element-icon-9 {
    bottom: 40%;
    left: 0%;
    animation: float-5 16s linear infinite alternate;
}


@media (max-width: 768px) {
    .floating-element {
        max-width: 64px;
        height: auto;
    }
}

/* --- Left Column (Content) --- */
.content-col {
    flex: 1;
    z-index: 2;
}


.highlight {
    color: #F3C802;
}

.color-light-section {
    color: #888888;
}

.color-dark-section {
    color: var(--color-text-light);
}

.color-accent {
    color: var(--color-accent);
}

.subtitle {
    padding-bottom: 20px;
}

.buttons-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.cyber-section-container .buttons-wrapper,
.cyber-section-container .description,
.cyber-section-container h1,
.cyber-section-container .subtitle {
    opacity: 0;
    transform: translateY(20px);
}


.btn-secondary {
    background-color: transparent;
    color: #FBFBFB;
    border: 1px solid #FBFBFB;
}

.btn-secondary:hover {
    background-color: rgba(255, 255, 255, 0.1);
    border-color: #ffffff;
}

.visuals-col {
    display: flex;
    flex-direction: column;
    gap: 30px;
    justify-content: flex-end;
}

.grid-column {
    display: flex;
    gap: 30px;
}

.stat-card-middle {
    width: 262px;
    text-align: left;
    min-height: 165px;
}

.stat-card {
    width: 165px;
}

.card {
    background: #ffffff;
    border-radius: 20px;
    padding: 20px;
    color: var(--color-accent);
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    opacity: 0;
    transform: translateY(30px);
    transition: transform 0.3s ease;
    height: fit-content;
}

.grid-column-bottom {
    align-items: flex-end;
}

.stat-number {
    font-weight: 700;
    font-size: 50px;
    line-height: inherit;


}

.stat-text {
    font-weight: 500;
    font-size: 20px;
    line-height: 25px;
}

.image-card {
    padding: 0;
    overflow: hidden;
    background: #fff;
    position: relative;
    min-height: 253px;
    max-width: 261px;
}

.image-card img {
    width: 100%;
    height: auto;
    object-fit: cover;
    display: block;
}

.image-card-content {
    padding: 20px;
    text-align: center;
}

.fade-in-up {
    animation: fadeInUp 0.8s ease-out forwards;
}

.stat-number {
    font-variant-numeric: tabular-nums;
    will-change: contents;
}

.cyber-bg {
    position: absolute;
    top: 0;
    right: inherit;
    height: 100%;
    object-fit: cover;
    width: 100%;
}

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

/* Needs */
.threats-section,
.cyber-needs-section {
    color: #888888;
}

.section-title {
    padding-bottom: 50px;
}

.content-wrapper {
    display: flex;
    gap: 30px;
    align-items: flex-end;
}

.double-card {
    display: flex;
    align-items: flex-end;
    flex: 0 0 65%;
    position: relative;
    overflow: hidden;
    min-height: 375px;
}

.card-panel-left {
    flex: 1;
    background-color: var(--color-accent);
    padding: 30px 20px;
    color: var(--color-text-light);
    display: flex;
    flex-direction: column;
    justify-content: center;
    border-radius: 20px;
    z-index: 4;
}


.card-panel-left {
    opacity: 0;
    transform: translateX(-40px);
    transition: transform 0.6s ease, opacity 0.6s ease;
}

.animate-active.card-panel-left {
    opacity: 1;
    transform: translateX(0);
}

.animate-active.card-panel-right {
    opacity: 1;
    transform: translateX(0);
}



.alert-icon {
    width: 100px;
    height: 100px;
    margin-bottom: 30px;
}

.card-panel-left h3 {
    font-family: 'Nunito', sans-serif;
    font-weight: 800;
    font-size: 25px;
    margin-bottom: 10px;
}

.card-panel-left p {
    font-weight: 500;
    font-size: 20px;
}

.card-panel-right {
    flex: 1;
    z-index: 1;
    background-color: #032356;
    justify-content: flex-end;
    margin-left: -30px;
    padding: 30px 20px 30px 50px;
    color: #fff;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    overflow: hidden;
    border-radius: 0 20px 20px 0;
    height: 350px;
    opacity: 0;
    transform: translateX(-100%);
    transition: transform 0.6s ease, opacity 0.6s ease;
}

.wireframe-bg {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    opacity: 1;
    transform: perspective(500px) rotateX(60deg) scale(1.5);
    transform-origin: top center;
}

.wireframe-bg img {
    height: 100%;
}

.card-panel-right p {
    position: relative;
    z-index: 2;
    font-weight: 500;
    font-size: 20px;
    line-height: 25px;
}

.text-block {
    flex: 0 0 32%;
    opacity: 0;
    transform: translateX(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
    transition-delay: 0.4s;
}

.text-block p {
    color: #888888;
    font-weight: 500;
    font-size: 20px;
    line-height: 25px;
}

.text-block p:not(:last-child) {
    margin-bottom: 20px;
}

.text-block strong {
    color: #222222;
    font-weight: 500;
}

.animate-active {
    opacity: 1;
    transform: translate(0, 0);
}

.quote-icon {
    margin-bottom: 10px;
}


.threat-card {
    border-radius: 20px;
    padding: 30px 20px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    transition: transform 0.3s ease;
}

.threat-card:hover {
    transform: translateY(-5px);
}

.card-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.card-number {
    font-weight: 700;
    font-size: 50px;
    line-height: 1;
    flex-shrink: 0;
}

.threat-card-title {
    font-weight: 600;
    font-size: 25px;
    line-height: 30px;
}

.card-desc {
    font-weight: 500;
    font-size: 20px;
    line-height: 25px;
}

/* --- Color Themes --- */

/* White Theme */
.theme-blue,
.theme-light {
    background-color: #ffffff;
    border: 1px solid var(--color-accent);
    color: #888888;
    transition: all 0.3s ease;
}

.theme-blue .card-desc,
.theme-blue .card-number,
.theme-light .threat-card-title,
.theme-light .card-number {
    color: #222;
    transition: all 0.3s ease;
}

.theme-blue:hover,
.theme-light:hover {
    background-color: var(--color-accent);
    color: #ffffff;
    border: 1px solid var(--color-accent);
}

.threat-ind-card-title,
.theme-blue .card-number,
.theme-blue .card-desc {
    transition: all 0.3s ease;
}

.theme-blue:hover .card-number,
.theme-light:hover .card-number {
    color: #ffffff;
    opacity: 0.9;
}

.theme-blue:hover .card-desc,
.theme-light:hover .card-desc {
    color: #e0e0e0;
}

.swiper-pagination-bullet {
    background-color: #E6E6E6;
}

.swiper-pagination-bullet.swiper-pagination-bullet-active {
    background-color: #286ACD;
}

.swiper-horizontal>.swiper-pagination-bullets,
.swiper-pagination-bullets.swiper-pagination-horizontal {
    bottom: 0;
    position: relative;
}

.accent-text-light {
    color: var(--color-text-light);
}

.tariffs-section .section-header p,
.tariffs-section .section-header span {
    color: var(--color-text-secondary-light);
}

.tariffs-section {
    position: relative;
}

.pricing-wrapper {
    display: flex;
    position: relative;
}

.pricing-sidebar {
    width: 360px;
    flex-shrink: 0;
    margin-right: 30px;
    padding-top: 120px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    z-index: 2;
    background: transparent;
    color: var(--color-text-white);
}

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

.benefit-item {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 10px;
}

.benefit-item svg {
    display: block;
    width: 100%;
    max-width: 60px;
    height: 60px;
}

.benefit-text {
    font-weight: 700;
    font-size: 20px;
    line-height: 25px;
}

/* Labels for rows */
.feature-labels {
    display: flex;
    flex-direction: column;
    padding-bottom: 178px;
}

.feature-label-row {
    font-weight: 500;
    font-size: 20px;
    line-height: 25px;
    letter-spacing: 0;
    border-top: 1px solid var(--color-text-secondary-light);
    height: 80px;
    display: flex;
    align-items: center;
}


.swiper-button-prev.swiper-button-disabled,
.swiper-button-next.swiper-button-disabled {
    opacity: 0;
    pointer-events: none;
}

.swiper-button-next svg,
.swiper-button-prev svg {
    width: 40px;
}



.cards-track {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}



.tariff-card-header {
    padding-inline: 20px;
    display: flex;
    min-height: 470px;
    flex-direction: column;
    justify-content: space-between;
}

.tariff-card {
    background-color: var(--color-text-white);
    color: #888888;
    padding-top: 30px;
    border-radius: 20px 20px 40px 40px;
    display: flex !important;
    flex-direction: column;
    position: relative;
    transition: all 0.3s ease !important;
    margin-top: 76px !important;
}

.plan-name {
    color: var(--color-accent);
    margin-bottom: 20px;
    font-weight: 600;
    font-size: 35px;
    line-height: 40px;
    text-align: center;
    width: 100%;
    transition: all 0.3s ease !important;

}

.card-button {
    margin-top: 10px;
}

.card-button a {
    padding-inline: 5px;
    width: 100%;
    text-align: center;
}

.plan-price {
    padding-top: 10px;
    font-weight: 500;
    font-size: 20px;
    text-align: center;
    width: 100%;
    display: block;
    line-height: 30px;
    transition: all 0.3s ease !important;

}

.price-val {
    font-family: 'Nunito', sans-serif;
    font-weight: 800;
    font-size: 25px;
    line-height: 30px;
    text-align: center;
    color: var(--color-accent);
    transition: all 0.3s ease !important;

}

.card-features {
    display: flex;
    flex-direction: column;
    margin-block: 30px;
    gap: 20px;
    padding-inline: 20px;
}

.feature-check-row {
    display: flex;
    gap: 10px;
    align-items: center;
}


.card-footer {
    margin-top: auto;
    background: var(--color-accent);
    border-radius: 0 0 20px 20px;
}

.tariff-card-dark-before {
    position: absolute;
    top: 16px;
    left: 0;
    width: 100%;
    height: 76px;
    z-index: 1;
    font-weight: 600;
    background: linear-gradient(90deg, #21D397 0%, #997FFF 100%);
    color: var(--color-text-light);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    border-radius: 20px 20px 0 0;
}

.tariff-card-dark {
    position: relative;
    z-index: 2;
}

.feature-uncheck {
    color: #222222;
}

.feature-check {
    color: #286ACD;
    display: block;
    width: 100%;
    max-width: 40px;
}

.tariff-card-dark .tariff-card {
    z-index: 5;
    height: calc(100% - 75px);
}

.tariff-card-dark .card-footer,
.tariff-card-dark .button-accent {
    background: linear-gradient(90deg, #21D397 0%, #997FFF 100%);
}

.btn-order {
    display: block;
    width: 100%;
    padding: 20px;
    font-size: 20px;
    border: none;
    background: transparent;
    color: var(--color-text-light);
    cursor: pointer;
    text-align: center;
    text-decoration: none;
    font-family: 'Nunito', sans-serif;
    font-weight: 700;
}

.pricing-bg {
    position: absolute;
    top: 0;
    right: 0;
    height: 100%;
    object-fit: cover;
    width: 100%;
    opacity: 0.1;
}



.enterprise-section {
    color: #888888;
}

.enterprise-wrapper {
    display: flex;
    align-items: center;
    gap: 30px;
    justify-content: space-between;
}

.ent-content {
    flex: 1;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.8s ease;
}


.ent-list-header {
    font-family: "Nunito", sans-serif;
    font-weight: 800;
    font-size: 25px;
    line-height: 30px;
    margin-bottom: 20px;
    color: #222;
}

.ent-list-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 15px;
}

.ent-list-item svg {
    width: 100%;
    height: 30px;
    display: block;
    max-width: 30px;
}

.item-text {
    color: #222;
}

.ent-visual {
    flex: 1;
    position: relative;
    display: flex;
    justify-content: center;
    opacity: 0;
    transform: translateX(30px);
    transition: all 0.8s ease;
    transition-delay: 0.2s;
}

.main-image {
    width: 100%;
    max-width: 457px;
    border-radius: 20px;
    position: relative;
    z-index: 2;
    display: block;
}

.dots-decoration {
    position: absolute;
    width: 140px;
    height: 140px;
    z-index: 1;
    color: var(--primary-blue);
}

.dots-top-right {
    top: -30px;
    right: -30px;
    animation: floatDots 6s ease-in-out infinite;
}

.dots-bottom-left {
    bottom: -30px;
    left: -30px;
    animation: floatDots 6s ease-in-out infinite reverse;
}

@keyframes floatDots {
    0% {
        transform: translate(0, 0);
        opacity: 0.6;
    }

    50% {
        transform: translate(10px, -10px);
        opacity: 1;
    }

    100% {
        transform: translate(0, 0);
        opacity: 0.6;
    }
}

.is-visible {
    opacity: 1;
    transform: translate(0, 0);
}


.industries-section {
    position: relative;
    overflow: hidden;
}

.ind-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.ind-card {
    background-color: var(--color-text-light);
    border-radius: 20px;
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 20px;
    color: #222222;
    transition: transform 0.3s ease;
    cursor: default;
    opacity: 0;
    transform: translateY(20px);
}

.ind-card.visible {
    opacity: 1;
    transform: translateY(0);
}

.ind-card:hover {
    transform: translateY(-5px);
}

.ind-card-title {
    font-family: "Nunito", sans-serif;
    font-weight: 800;
    font-size: 25px;
    line-height: 30px;
}

.result-header {
    padding-top: 80px;
}

.threatsSwiper {
    height: fit-content;
}

@media (min-width: 769px) {
    .tariff-card:hover {
        background-color: #032356;
        color: #E1E1E1;
    }

    .tariff-card:hover .plan-name,
    .tariff-card:hover .price-val {
        color: var(--color-text-white);
    }

    .tariff-card:hover .feature-uncheck,
    .tariff-card:hover .feature-check {
        color: white;
    }

    .swiper.threatsSwiper .swiper-wrapper {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 30px;
        transform: none;
        width: 100%;
        height: auto;
    }

    .swiper-slide {
        width: auto;
        height: auto;
        margin: 0;
    }

    .swiper-pagination {
        display: none;
    }

    /* Есть слайды слева → показываем левый fade */
    .pricing-scroll-container:has(.swiper-button-prev:not(.swiper-button-disabled))::before {
        opacity: 1;
    }

    /* Есть слайды справа → показываем правый fade */
    .pricing-scroll-container:has(.swiper-button-next:not(.swiper-button-disabled))::after {
        opacity: 1;
    }

}

.tariffs-section .swiper-pagination {
    display: flex;
}

.tariffs-section .swiper-pagination-bullet {
    width: 100%;
}

.card-icon {
    width: 100px;
    height: 100px;
}

@media (max-width: 1024px) {
    .cards-track {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
    }

    .stat-card-middle,
    .stat-card,
    .image-card {
        width: 100%;
    }
}

@media (max-width: 992px) {
    .ind-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .content-wrapper {
        flex-direction: column;
    }

    .double-card {
        width: 100%;
        flex: auto;
        margin-bottom: 40px;
    }

    .text-block {
        width: 100%;
    }
}


@media (max-width: 768px) {
    .tariff-card-header {
        min-height: 0;
    }

    .plan-price {
        font-size: 15px;
    }

    .cards-track {
        display: grid;
        grid-template-columns: repeat(1, 1fr);
    }

    .benefits-list {
        margin-bottom: 30px;
    }

    .benefits-list {
        flex-direction: column;
    }

    .tariff-card {
        margin-top: 0 !important;
    }

    .tariff-card-dark .tariff-card {
        margin-top: 75px !important;
    }

    .card-features {
        gap: 10px;
    }

    .threatsSwiper .swiper-wrapper {
        padding-bottom: 30px;
    }

    .threat-card:hover {
        transform: none;
    }

    .cyber-section-container {
        flex-direction: column;
    }

    .content-col {
        text-align: left;
    }

    .buttons-wrapper {
        flex-direction: column;
        width: 100%;
        gap: 20px;
    }

    .visuals-col {
        width: 100%;
        justify-content: center;
    }

    .grid-column {
        width: 100%;
        max-width: 100%;
    }

    .card:not(.image-card) {
        display: none;
    }

    .image-card {
        width: 100%;
        max-width: 100%;
    }

    .cyber-section .button,
    .cyber-section .btn-secondary {
        width: 100%;
    }

    .cyber-section-container {
        padding-top: 0;
    }

    .visuals-col {
        gap: 35px;
    }

    .alert-icon {
        width: 60px;
        height: 60px;
        margin-bottom: 20px;
    }

    .wireframe-bg {
        top: -20px;
        left: inherit;
    }

    .double-card {
        flex-direction: column;
    }

    .card-panel-left {
        border-radius: 20px;
        margin-bottom: 20px;
    }

    .card-panel-right {
        border-radius: 20px;
        margin-left: 0;
        padding: 180px 20px 30px 20px;
    }

    .ent-list-header,
    .card-panel-left h3 {
        font-weight: 700;
        font-size: 20px;
        line-height: 25px;
    }

    .text-block p,
    .card-panel-right p,
    .card-panel-left p {
        font-weight: 500;
        font-size: 15px;
        line-height: 20px;
    }

    .content-wrapper {
        gap: 20px;
    }

    .double-card {
        margin-bottom: 20px;
    }

    .threats-section {
        overflow: hidden;
    }

    .card-number,
    .threat-card-title,
    .theme-light .card-number {
        font-weight: 700;
        font-size: 20px;
        line-height: 25px;
        display: inline;
    }

    .section-title {
        padding-bottom: 30px;
    }

    .theme-blue.swiper-slide-active,
    .theme-light.swiper-slide-active {
        background-color: var(--color-accent);
        color: #ffffff;
        border: 1px solid var(--color-accent);
    }

    .theme-blue,
    .theme-light {
        background-color: var(--color-accent);
        color: #ffffff;
        border: 1px solid var(--color-accent);
    }

    .theme-blue .card-number,
    .theme-light .card-number {
        color: #ffffff;
        opacity: 0.9;
    }

    .theme-blue .card-desc,
    .theme-light .card-desc {
        color: #e0e0e0;
    }

    .theme-light .threat-card-title,
    .theme-light .card-number {
        color: #ffffff;
    }

    .feature-label-row {
        font-weight: 700;
        line-height: 1.1;
        height: 70px;
    }

    .benefit-item {
        gap: 10px;
        margin-bottom: 0;
    }

    .pricing-sidebar {
        display: none;
    }

    .feature-labels {
        padding-bottom: 98px;
    }

    .plan-name {
        font-size: 25px;
        line-height: 25px;
        margin-bottom: 10px;
        font-weight: 500;
    }

    .feature-check-row svg {
        height: 24px;
    }


    .pricing-wrapper {
        padding-bottom: 30px;
    }

    .btn-order {
        padding: 16px;
        font-size: 15px;
        font-weight: 600;
    }

    .enterprise-wrapper {
        flex-direction: column;
        gap: 30px;
    }

    .ent-content,
    .ent-visual {
        width: 100%;
    }

    .ent-desc {
        max-width: 100%;
    }

    .main-image {
        max-width: 100%;
        max-height: 260px;
        object-fit: cover;
        object-position: top;
    }

    .dots-top-right {
        right: -10px;
        top: -20px;
    }

    .dots-bottom-left {
        left: -10px;
        bottom: -20px;
    }

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

    .ind-card-title {
        font-weight: 700;
        font-size: 20px;
        line-height: 25px;
    }

    .ind-card {
        padding: 10px 20px;
        border-radius: 0;
        border-bottom: 1px solid var(--color-accent)
    }

    .ind-grid {
        gap: 0;
        border-radius: 20px;
    }

    .ind-card:first-child {
        border-radius: 20px 20px 0 0;
    }

    .ind-card:last-child {
        border-radius: 0 0 20px 20px;
    }

    .ind-card:hover {
        transform: none;
    }

    .card-icon,
    .card-icon-box img {
        width: 60px;
        height: 60px;

    }
}


/* Page WordPress */

.secure-env-section {
    color: #888888;
}

.content-wrapper {
    display: flex;
    align-items: center;
    gap: 60px;
}

.image-box {
    flex: 1;
    opacity: 0;
    transform: translateX(-30px);
    transition: all 0.8s ease;
}

.image-box img {
    width: 100%;
    border-radius: 20px;
    display: block;
    height: auto;
    aspect-ratio: 4/3;
}

.text-box {
    flex: 1;
    opacity: 0;
    transform: translateX(30px);
    transition: all 0.8s ease;
    transition-delay: 0.2s;
}

.tags-list {
    margin-top: 30px;
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.tag-item {
    font-size: 0.9rem;
    font-weight: 600;
    padding: 8px 24px;
    border-radius: 100px;
    border: 1px solid var(--color-accent);
    color: var(--color-accent);
    cursor: default;
    transition: background 0.3s, color 0.3s;
}

.tag-item.active {
    background-color: var(--color-accent);
    color: #ffffff;
}

.tag-item:hover {
    background-color: var(--color-accent);
    color: #ffffff;
}

.is-visible {
    opacity: 1;
    transform: translateX(0);
}



/* --- Stats Grid --- */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.stat-item.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.stat-number-wrapper {
    font-weight: 700;
    font-size: 50px;
    text-align: center;
    margin-bottom: 15px;
    display: flex;
    justify-content: center;
}

.stat-number-wrapper .section-header {
    margin-inline: auto;
}

.wordpress-results-section {
    color: var(--color-text-light);
    text-align: center;
}

.wordpress-results-section .section-header {
    margin-inline: auto;
}

.stat-number {
    font-variant-numeric: tabular-nums;
}

.stat-plus {
    margin-left: 5px;
}

.stat-label {
    font-family: 'Nunito', sans-serif;
    font-weight: 800;
    font-size: 25px;
    line-height: 30px;
    margin-bottom: 20px;
    text-transform: lowercase;
}

.stat-desc {
    color: #D7D7D7;
}



.steps-section {
    color: #888888;
    overflow-x: hidden;
}

.steps-list {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
}

.steps-left-block,
.steps-right-block {
    display: flex;
    gap: 30px;
}

.step-item {
    position: relative;
    max-width: 457px;
    border: 1px solid var(--color-accent);
    border-radius: 20px;
    padding: 30px 20px;
    display: flex;
    flex-direction: column;
    width: fit-content;
    transition: var(--transition);

    /* Анімація появи */
    opacity: 0;
    transform: translateY(30px);
}

.step-item.is-visible {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.step-header {
    color: #222222;
}


/* --- Typography & Icons --- */
.step-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 20px;
}


.step-title {
    font-family: 'Nunito', sans-serif;
    font-weight: 800;
    font-size: 25px;
    line-height: 30px;
}


.step-number {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-weight: 800;
    font-size: 170px;
    color: #B2B2B2;
    z-index: 0;
    pointer-events: none;

    opacity: 0;
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.step-item.is-visible .step-number {
    opacity: 1;
}

.steps-right-block {
    display: flex;
    justify-content: end;
}

.step-item:nth-child(odd) .step-number {
    right: 100%;
    margin-right: 20px;
    transform: translate(-20px, -50%);
}


.step-item.is-visible:nth-child(odd) .step-number {
    transform: translate(0, -50%);
}

.step-item:nth-child(even) .step-number {
    left: 100%;
    margin-left: 20px;
    transform: translate(20px, -50%);
}

.step-item.is-visible:nth-child(even) .step-number {
    transform: translate(0, -50%);
}

.step-header svg {
    height: 60px;
    max-width: 60px;
    width: 100%;
}




.ddos-section .section-title {
    margin-inline: auto;
    text-align: center;
}

.ddos-section {

    color: var(--color-text-light);
    position: relative;
    overflow: hidden;
}

.decor-text {
    font-family: sans-serif;
    font-weight: 700;
    font-size: 100px;
    text-align: center;
    line-height: 1;
    text-transform: uppercase;
    color: transparent;
    -webkit-text-stroke: 1px #FBFBFB;
    white-space: nowrap;
    pointer-events: none;
    z-index: 1;
    transition: transform 0.1s linear;
}

@media (min-width: 993px) {
    .decor-text {
        position: absolute;
        top: 50%;
        writing-mode: vertical-rl;
        transform-origin: center center;
    }

    .decor-text.left {
        left: 0;
        transform: translateY(-50%);
    }

    .decor-text.right {
        right: 0;
        transform: translateY(-50%) rotate(180deg);
    }
}


.ddos-cards-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 1fr;
    gap: 30px;
}

.ddos-card-item {
    height: 100%;
}

.ddos-card-flex {
    display: flex;
    gap: 30px;
    padding-top: 30px;
}

.ddos-card-item:nth-child(2) {
    display: grid;
    gap: 30px;
    grid-column: span 2;
}

.ddos-card-item:nth-child(4) {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.ddos-card-item:nth-child(4) {
    grid-column: span 3;
}

.ddos-card {
    background-color: var(--color-bg-light);
    border-radius: var(--radius);
    padding: 30px 20px;
    color: var(--color-text-dark);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    transition: transform 0.3s ease;
}



.ddos-card-title {
    font-family: 'Nunito', sans-serif;
    font-weight: 800;
    text-align: center;
    color: var(--color-text-dark);
}

.ddos-card-desc {
    color: #888888;
}

.center-message {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 10px 30px;
}

.center-message h3 {
    font-weight: 800;
    color: var(--color-text-light);
}

.ddos-section .section-title {
    color: #E1E1E1;
}

.center-message.mobile {
    display: none;
}



.order-section {
    color: #E1E1E1;
    overflow-x: hidden;
}

.contact-section {
    color: #888888;
}

.sup-title-accent {
    color: var(--color-accent);
    padding-bottom: 50px;
}

.contact-wrapper {
    display: flex;
    gap: 128px;
    justify-content: space-between;
}

.contact-wrapper-right {
    max-width: 457px;
    width: 100%;
}

/* ============ Form =================== */


.form-group {
    position: relative;
    margin-bottom: 20px;
}

input,
textarea,
select {
    font-weight: 500;
    font-size: 20px;
    line-height: 25px;
    vertical-align: middle;
    display: block;
    width: 100%;
    border: none;
    border-bottom: 2px solid #888888;
    background: transparent;
    color: #222;
    outline: none;
    border-radius: 0;
    font-family: inherit;
    padding-block: 10px;
}

input:focus,
textarea:focus,
select:focus {
    border-bottom: 2px solid #222;
}

input::placeholder,
textarea::placeholder,
select::placeholder {
    font-weight: 500;
    font-size: 20px;
    line-height: 25px;
    vertical-align: middle;
    color: #888;
    padding-block: 10px;
}

textarea {
    resize: vertical;
}


/* Active State (Focus or Has Value) */
input:focus~label,
input:valid~label,
textarea:focus~label,
textarea:valid~label,
select:focus~label,
select:valid~label,
input[value]:not([value=""])~label {
    top: -20px;
    font-size: 13px;
    color: var(--primary-blue);
}

/* --- Bar Animation (The Blue Underline) --- */
.bar {
    position: relative;
    display: block;
    width: 100%;
}

.bar:before,
.bar:after {
    content: '';
    height: 2px;
    width: 0;
    bottom: 0;
    position: absolute;
    background: var(--primary-blue);
    transition: 0.2s ease all;
}

.bar:before {
    left: 50%;
}

.bar:after {
    right: 50%;
}

input:focus~.bar:before,
input:focus~.bar:after,
textarea:focus~.bar:before,
textarea:focus~.bar:after,
select:focus~.bar:before,
select:focus~.bar:after {
    width: 50%;
}

/* --- Checkbox Agreement --- */
.agreement-box {
    margin: 20px 0 30px 0;
    font-size: 13px;
    color: var(--text-gray);
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.agreement-box input {
    width: auto;
    margin-top: 3px;
}

.agreement-box a {
    color: var(--primary-blue);
    text-decoration: none;
}

.submit-btn-wrapper {
    display: flex;
    justify-content: flex-end;
    margin-top: 30px;
}


/* --- Validation Errors --- */
label.error {
    color: var(--error-red);
    font-size: 12px;
    position: absolute;
    bottom: -20px;
    top: auto;
    left: 0;
}

input.error,
textarea.error {
    border-bottom-color: var(--error-red);
}

@media (max-width: 768px) {

    input,
    textarea,
    select,
    input::placeholder,
    textarea::placeholder,
    select::placeholder {
        font-size: 15px;
    }
}



@media (min-width: 768px) {
    .ddos-card:hover {
        transform: translateY(-5px);
    }

    .step-item:hover .step-header {
        color: #fff;
    }

    .step-item:hover {
        background-color: var(--color-accent);
        color: var(--color-text-light);
    }

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

}

@media (max-width: 992px) {
    .image-box img {
        height: auto;
    }

    .content-wrapper {
        flex-direction: column;
        gap: 30px;
    }

    .image-box,
    .text-box {
        width: 100%;
        transform: none;
    }

    .tags-list {
        gap: 10px;
    }

    .steps-list {
        gap: 20px;
    }

    .step-number {
        font-size: 120px;
        opacity: 0.4;
    }

    .step-item:nth-child(odd) .step-number,
    .step-item:nth-child(even) .step-number {
        right: 15px;
        left: inherit;
        top: inherit;
        bottom: 0;
        opacity: 0.4;
        transform: translateY(0);
    }

    .step-item.is-visible:nth-child(even) .step-number,
    .step-item.is-visible:nth-child(odd) .step-number {
        transform: translateY(0);

    }

    .step-item:nth-child(odd) .step-number {
        margin-right: 0;
    }

}

@media (max-width: 768px) {

    .steps-left-block,
    .steps-right-block {
        flex-direction: column;
    }

    .step-item {
        max-width: 100%;
        padding: 20px;
    }

    .step-item:nth-child(even) .step-header {
        color: var(--color-text-light);
    }

    .step-item:nth-child(even) {
        background-color: var(--color-accent);
        color: var(--color-text-light);
    }

    .step-title {
        font-size: 20px;
        font-weight: 700;
        line-height: 25px;
    }

    .wordpress-hero .img-animationsvg-container.img-animation {
        display: block;
        position: static;
    }

    .step-header {
        margin-bottom: 10px;
    }

    .wordpress-hero .hero-section-container {
        flex-direction: column-reverse;
        gap: 30px;
    }

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

    .stat-number-wrapper {
        font-size: 35px;
        line-height: 40px;
    }

    .stat-label {
        font-size: 20px;
        line-height: 25px;
    }

    .ddos-section .section-title {
        text-align: left;
    }

    .center-message.mobile {
        display: block;
    }

    .ddos-cards {
        overflow: hidden;
    }

    .ddos-card-flex {
        padding-top: 0;
    }

    .ddos-section .section-title {
        padding-top: 30px;
    }

    .ddos-cards-grid {
        display: none;
    }

    .ddos-card {
        width: 85%;
        height: auto;
        gap: 10px;
    }

    .ddos-card-title {
        padding-top: 10px;
    }

    .center-message {
        padding: 30px 0px 30px;
    }

    .center-message h3 {
        font-weight: 700;
        line-height: 25px;
    }

    .decor-text {
        position: static;
        writing-mode: horizontal-tb;
        width: 100%;
        text-align: center;
        font-size: 4rem;
        padding: 0;
        transform: none !important;
    }

    .decor-text.left {
        order: -1;
    }

    .decor-text.right {
        order: 100;
    }

    .contact-wrapper {
        gap: 30px;
        flex-direction: column;
    }

    .sup-title-accent {
        padding-bottom: 30px;
    }

}



/* ================================================ Book Page =========================================================*/



.book-hero-section {
    overflow: hidden;
}

.book-hero-section .welcome-content {
    z-index: 8;
    padding-top: 60px;
}

.cyber-container {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: space-between;
}


.cyber-visual-col {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.visual-wrapper {
    position: relative;
    width: 100%;
    max-width: 550px;
    height: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1;
}

/* --- Circles Setup (Shared) --- */
.visual-wrapper::before,
.visual-wrapper::after,
#binary-bg {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 50%;
}

/* 1. Outer Circle (Зовнішній) - #124EA8 */
.visual-wrapper::after {
    width: 140%;
    height: 140%;
    background-color: #124EA8;
    z-index: -3;
}

/* 2. Middle Circle (Середній)  */
.visual-wrapper::before {
    width: 120%;
    height: 120%;
    background-color: #0D3E87;
    z-index: -2;
}

/* 3. Inner Circle (Canvas Container)  */
#binary-bg {
    width: 100% !important;
    height: auto !important;
    background-color: #031a35;
    max-width: 630px;
    opacity: 1;
    z-index: -1;
    overflow: hidden;
}

/* --- Book Image --- */
.book-img {
    position: relative;
    width: 100%;
    height: auto;
    max-width: 400px;
    z-index: 10;
    animation: floating 6s ease-in-out infinite;
}

/* --- White Badge --- */
.circle-badge {
    position: absolute;
    font-weight: 700;
    bottom: 0px;
    right: 0px;
    width: 182px;
    height: 180px;
    background: #ffffff;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: #888888;
    z-index: 11;
    animation: floatingBadge 6s ease-in-out infinite 1s;
}

.circle-badge .color-accent {
    text-transform: uppercase;
    margin-top: 5px;
}

/* --- Animations --- */
@keyframes floating {

    0%,
    100% {
        transform: rotate(0deg) translateY(0);
    }

    50% {
        transform: rotate(0deg) translateY(-15px);
    }
}

@keyframes floatingBadge {

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

    50% {
        transform: translateY(10px);
    }
}


.target-wrapper {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    z-index: 44;
    position: relative;
}

.target-cards-grid {
    flex: 1;
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.target-header {
    padding-bottom: 30px;
}

.target-card {
    flex: 1 1 calc(50% - 20px);
    min-height: 290px;
    border-radius: 20px;
    padding: 30px 20px;
    display: flex;
    flex-direction: column;
    align-self: baseline;
    justify-content: end;
    align-self: flex-start;
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease;
    opacity: 0;
    z-index: 44;
    transform: translateY(30px);
    border: 1px solid #FFFFFF;
}

.target-card:hover {
    transform: translateY(-5px);
}

.target-card-title {
    font-family: 'Nunito', sans-serif;
    font-weight: 800;
    margin-bottom: 20px;
    z-index: 2;
    line-height: 1.2;
}


/* --- Card Variants --- */

/* 2. White Card */
.target-card-white {
    background-color: #ffffff;
    color: var(--color-text-dark);
}

.icon-lock {
    margin-bottom: 24px;
}

.target-card-white.decor-circle {
    min-height: 394px;
}

/* Декоративні елементи (як синій круг на білій картці) */
.target-card-white.decor-circle::after {
    content: '';
    position: absolute;
    bottom: 50%;
    right: -30%;
    width: 167px;
    height: 167px;
    z-index: 1;
    background-color: #286ACD;
    border-radius: 50%;
}

.target-card-white.decor-lines::before {
    content: "";
    position: absolute;
    top: 10%;
    right: 20%;
    width: 94px;
    z-index: 3;
    height: 68px;
    background-repeat: no-repeat;
    background-size: contain;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='94' height='68' viewBox='0 0 94 68' fill='none'%3E%3Cpath d='M0 2.5H94' stroke='%23222222' stroke-width='5'/%3E%3Cpath d='M0 23.5H94' stroke='%23222222' stroke-width='5'/%3E%3Cpath d='M0 44.5H94' stroke='%23222222' stroke-width='5'/%3E%3Cpath d='M0 65.5H94' stroke='%23222222' stroke-width='5'/%3E%3C/svg%3E");
}

/* --- Animation Class (JS triggered) --- */
.target-card.visible {
    animation: fadeInUp 0.8s ease forwards;
}

/* Затримка для кожної картки (каскадний ефект) */
.target-card:nth-child(1) {
    animation-delay: 0.1s;
}

.target-card:nth-child(2) {
    animation-delay: 0.3s;
}

.target-card:nth-child(3) {
    animation-delay: 0.5s;
}

.target-card:nth-child(4) {
    animation-delay: 0.7s;
}

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


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

.promo-card {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.promo-card-visual {
    background-color: var(--color-accent);
    border-radius: 20px;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 20px;
    min-height: 338px;
}

/* Карточка 1: Ленты */
.tape-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.tape {
    position: absolute;
    width: 140%;
    background: white;
    color: var(--color-accent);
    text-transform: uppercase;
    font-size: 15px;
    line-height: 25px;
    font-weight: 500;
    padding: 8px 4px;
    text-align: center;
    transform: rotate(-15deg);
    white-space: nowrap;
}

.tape-1 {
    top: 35%;
    left: -20%;
    transform: rotate(-15deg);
}

.tape-2 {
    top: 35%;
    left: -20%;
    transform: rotate(15deg);
}

.coins {
    position: absolute;
    top: 40%;
    left: 50%;
    transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

.promo-card-footer-info {
    display: flex;
    align-items: center;
    gap: 20px;
    color: white;
    z-index: 5;
}

.checklist-visual {
    background: white;
    border-radius: 0 0 20px 20px;
    padding-top: 20px;
    margin-bottom: 15px;
    position: relative;
}

.checklist-visual::after {
    content: '';
    position: absolute;
    top: -17px;
    left: calc(50% - 125px);
    background-size: 250px;
    height: 44px;
    width: 100%;
    background-repeat: no-repeat;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='320' height='38' viewBox='0 0 320 38' fill='none'%3E%3Ccircle cx='42' cy='16' r='22' fill='%23286ACD'/%3E%3Ccircle cx='101' cy='16' r='22' fill='%23286ACD'/%3E%3Ccircle cx='160' cy='16' r='22' fill='%23286ACD'/%3E%3Ccircle cx='219' cy='16' r='22' fill='%23286ACD'/%3E%3Ccircle cx='278' cy='16' r='22' fill='%23286ACD'/%3E%3C/svg%3E");

}

.checklist-item svg {
    max-width: 25px;
    width: 100%;
}

.promo-card-visual-list {
    justify-content: space-between;
}

.checklist-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 15px;
    line-height: 25px;
    color: var(--color-accent);
    font-weight: 600;
    padding-inline: 15px;
}

.checklist-item:first-child {
    padding-top: 10px;
    margin-top: 10px;
    border-top: 1px solid transparent;
    border-image: repeating-linear-gradient(to right,
            #C9C9C9 0 10px,
            transparent 10px 20px) 1;
}

.checklist-item:last-child {
    padding-bottom: 10px;
}

.cta-box {
    border: 1px solid var(--color-accent);
    border-radius: 20px;
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #000;
    transition: var(--transition);
    font-family: 'Nunito', sans-serif;
    font-weight: 800;
}

.cta-box:hover {
    background: #E6E6E6;
}

.cta-box:active {
    background: #C9C9C9;
}

.arrow-circle-btn {
    width: 100%;
    max-width: 50px;
    height: 50px;
    background: var(--color-accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.arrow-circle-btn:hover svg path {
    color: white;
}

.promo-card-text-box {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.badge {
    padding: 5px 15px;
    border-radius: 100px;
    font-weight: 600;
    font-size: 15px;
    line-height: 25px;
    color: #9A9A9A;
    border: 1px solid #939393;
    transition: var(--transition);
    width: fit-content;
}

.badge:hover {
    background-color: var(--color-accent);
    color: var(--color-text-light);
    border: 1px solid var(--color-accent);
}

.promo-card-title-link {
    display: inline-block;
    color: #000000;
    font-family: 'Nunito', sans-serif;
    font-weight: 800;
}

.promo-card-title-link:hover {
    color: var(--color-accent);
}

.promo-card-title-link svg {
    width: 100%;
    height: 18px;
    max-width: 25px;
}

.promo-card-visual-avatars {
    position: relative;
}

.users-map {
    position: absolute;
    top: 0;
    right: 0;
    object-fit: contain;
    max-height: 75%;
    width: fit-content;
}

.speech-bubble {
    background-color: #FFFFFF;
    padding: 10px 20px;
    border-radius: 20px 0 20px 20px;
    font-weight: 600;
    font-size: 15px;
    line-height: 25px;
    width: fit-content;
    color: #000000;
    max-width: 170px;
    margin-bottom: 15px;
}



.reviews-section {
    overflow: hidden;
    text-align: center;
}

.reviews-container {
    overflow: hidden;
    padding-block: 110px 90px;
}

.book .section-header {
    max-width: 100%;
}

.review-card {
    border: 1px solid var(--color-accent);
    border-radius: 20px;
    padding: 30px 20px;
    cursor: pointer;
    transition: all 0.5s ease;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    background: var(--color-bg-light);
    z-index: 2;
}

.quote-icon {
    color: var(--color-accent);
    transition: color 0.5s ease;
}

.review-text {
    color: var(--text-dark);
    margin-bottom: 10px;
    transition: color 0.5s ease;
}

.author-block {
    position: absolute;
    bottom: -90px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
}

.author-img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 10px;
}

.author-name {
    color: var(--color-text-dark);
}

.author-role {
    font-weight: 600;
    font-size: 15px;
    color: #888888;
}

.review-card.swiper-slide-active {
    background-color: var(--color-accent);
    transform: translateY(-100px);
    z-index: 3;
}

.review-card.swiper-slide-active .quote-icon {
    color: var(--color-text-light);
}

.review-card.swiper-slide-active .review-text {
    color: var(--color-text-secondary-light);
}

.review-card:not(.review-card.swiper-slide-fully-visible) {
    opacity: 0;
}


article.review-card.swiper-slide.swiper-slide-visible.swiper-slide-next {
    opacity: 1;
}

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

.book-card-header {
    display: flex;
    gap: 20px;
    align-items: center;
    color: var(--color-text-dark);
}

.book-service-card {
    background: var(--color-bg-light);
    color: #888888;
    border-radius: 20px;
    border: 1px solid var(--color-accent);
    padding: 30px 20px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    transition: all 0.6s cubic-bezier(0.25, 0.8, 0.25, 1);
    position: relative;
}

.book-service-card.active .book-card-header {
    color: var(--color-text-light);
}

.book-service-card.active {
    border: 1px solid #FBFBFB;
    background-color: var(--color-accent);
    color: var(--color-text-secondary-light);
    transform: scale(1.03) rotate(-4deg);
}

.book-card-header svg {
    width: 60px;
    height: 60px;
}

.book-service-card h3 {
    font-weight: 800;
}

.book-button-mobile {
    display: none;
}

.book-button {
    display: flex;
}


.target-section .features-bg img {
    height: 100%;
    object-fit: cover;
    max-width: 100%;
    width: 100%;
}

@media (min-width: 768px) and (max-width: 1400px) {
    .book-hero-section .welcome-content {
        max-width: min-content;
    }
}

@media (max-width: 992px) {
    .target-wrapper {
        grid-template-columns: repeat(1, 1fr);
    }

    .book-services-grid .promo-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .visual-wrapper {
        transform: scale(0.8);
    }

    .circle-badge {
        right: -10%;
        bottom: inherit;
        top: -10%;
        width: 130px;
        height: 123px;
    }

    .cyber-container {
        flex-direction: column-reverse;
    }

    .visual-wrapper {
        width: 300px;
        height: 300px;
    }

    .book-img {
        width: 200px;
    }

    .book-hero-section.section-padding-100 {
        padding-top: 20px;
        padding-bottom: 0;
    }

    .book-hero-section .welcome-content {
        padding-top: 0;
    }

    .target-card {
        flex: 1 1 100%;
        min-height: 200px;
    }

    .target-card-title {
        margin-bottom: 10px;
    }

    .target-card-white.decor-circle {
        min-height: 345px;
    }

    .target-card-white.decor-circle::after {
        bottom: 40%;
        right: -15%;
    }

    .target-section .features-bg {
        height: 100%;
        object-fit: cover;
        max-width: 100%;
    }

    .target-section .features-bg img {
        height: 100%;
        object-fit: cover;
        max-width: 100%;
        width: 100%;
    }

    .book-services-grid,
    .promo-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .promo-card-text-box,
    .promo-card-footer-info {
        gap: 10px;
    }

    .icon-circle svg {
        width: 55px;
        height: auto;
    }

    .users-map {
        max-height: 55%;
    }

    .promo-card {
        gap: 20px;
    }

    .promo-card-title-link svg {
        max-height: 12px;
    }

    .promo-card-visual {
        min-height: 272px;
    }

    .review-card.swiper-slide-active {
        transform: translateY(0px);
    }

    .reviews-container {
        padding-block: 0px;
    }

    .review-card {
        margin-bottom: 100px;
    }

    .book-button-mobile {
        display: flex;
        margin-top: 30px;
        margin-inline: auto;
    }

    .book-service-card:nth-child(5),
    .book-service-card:nth-child(6),
    .book-button {
        display: none;
    }

    .book-service-card.active {
        transform: scale(1) rotate(-2deg);
    }

    .section-book-services .target-header {
        padding-bottom: 0;
    }
}



@media (max-width: 500px) {}


/*  ======================================= Audit Page ==================================== */

.desctop {
    display: block;
}

.mobile {
    display: none;
}

.common-card {
    padding: 20px 30px;
    border-radius: 20px;
}

.risk-section {}

.risk-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: minmax(280px, auto);
    gap: var(--gap-card);
}

/* Базовый класс для карточек */
.risk-card {
    color: var(--color-text-light);
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.risk-card:hover {
    transform: translateY(-5px);
}

.risk-card img {
    position: absolute;
    left: 0;
    top: 0;
    object-fit: cover;
    width: 100%;
    height: 100%;
}

.risk-card-1,
.risk-card-3,
.risk-card-6,
.risk-card-4,
.risk-card-5 {
    border: 1px solid var(--color-accent);
}

.risk-card-1,
.risk-card-3,
.risk-card-5 {
    background-color: var(--color-accent);
}

.risk-card-2 {
    grid-column: span 2;
}

.risk-card-6 {
    grid-column: span 2;
}


.risk-card-title {
    font-family: 'Nunito', sans-serif;
    font-weight: 800;
    padding-bottom: 10px;
}

.risk-card-absolute {
    position: absolute;
    left: 0;
    bottom: 5%;
    transform: translateY(-50%);
    background-color: var(--color-accent);
    padding: 10px 65px 10px 25px;
    display: flex;
    align-items: center;

    padding: 10px 88px 10px 20px;
    z-index: 10;
    clip-path: polygon(0% 0%, 100% 0%, 88% 50%, 100% 100%, 0% 100%);
}

.risk-card-absolute .risk-card-title {
    padding-bottom: 0;
}

.audit-process-section {
    overflow: hidden;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.audit-svg {
    width: 100%;
    height: auto;
    display: block;
    overflow: visible;
}

/* Анимация линий (path с обводкой) */
.audit-svg path[stroke] {
    stroke-dasharray: 1000;
    stroke-dashoffset: 1000;
    transition: stroke-dashoffset 2.5s ease-out;
    opacity: 0.7;
}

/* Анимация заполненных элементов (чип) */
.audit-svg path[fill] {
    opacity: 0;
    transform-origin: center;
    transform: scale(0.9);
    transition: opacity 1s ease, transform 1s ease;
}

/* Задержки для разных частей чипа для эффекта сборки */
.audit-svg path[fill^="url"] {
    transition-delay: 0.5s;
}

.audit-svg circle {
    opacity: 0;
    transition: opacity 0.8s ease 1s;
}

/* Активное состояние (добавляется JS) */
.audit-process-section.animated .audit-svg path[stroke] {
    stroke-dashoffset: 0;
}

.audit-process-section.animated .audit-svg path[fill] {
    opacity: 1;
    transform: scale(1);
}

.audit-process-section.animated .audit-svg circle {
    opacity: 1;
}

/* Текстовые блоки поверх SVG */
.audit-text-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.audit-label {
    position: absolute;
    max-width: 400px;
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.8s ease, transform 0.8s ease;
    transition-delay: 1.5s;
    font-family: 'Nunito', sans-serif;
    font-weight: 800;
    font-size: 25px;
    line-height: 30px;
    text-align: center;
}

.audit-process-section.animated .audit-label {
    opacity: 1;
    transform: translateY(0);
    text-align: center;
}

/* Левая сторона */
.label-left {
    text-align: right;
    transform-origin: right center;
}

.l-1 {
    top: 6%;
    left: 7%;
    width: 25%;
}

/* Анализ конфигураций */
.l-2 {
    top: 42%;
    left: 2%;
    width: 28%;
}

/* Оценка архитектуры */
.l-3 {
    top: 82%;
    left: 0;
    width: 33%;
}

/* Комплексная проверка */

/* Правая сторона */
.label-right {
    text-align: left;
    transform-origin: left center;
}

.r-1 {
    top: 6%;
    right: 5%;
    width: 33%;
}

/* Приоритизация */
.r-2 {
    top: 42%;
    right: 3%;
    width: 28%;
}

/* Результат */
.r-3 {
    top: 82%;
    right: 0;
    width: 33%;
}



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

.flip-card {
    background-color: transparent;
    width: 100%;
    height: 540px;
    cursor: pointer;
}

.flip-card-front {
    background-color: var(--color-accent);
    color: var(--color-text-light);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    height: 540px;
    border-radius: 20px;
    overflow: hidden;
    position: relative;
}

.flip-card-front h3 {
    /* max-width: 80%; */
    font-weight: 600;
}

.ast-image {
    background-size: cover;
    background-position: center;
    position: relative;
    z-index: 2;
    position: absolute;
    width: 100%;
    height: 100%;
    transition: transform 0.5s ease;
}

.ast-title-box {
    background-color: var(--color-accent);
    color: var(--color-text-ligh);
    padding: 30px 20px;
    text-align: left;
    display: flex;
    flex-direction: column;
    height: 140px;
    z-index: 3;
    box-sizing: border-box;
    transition: height 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.ast-title-box h3 {
    transition: margin 0.5s ease;
}

.ast-title-box p {
    margin-top: 20px;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.3s ease, transform 0.4s ease;
    transition-delay: 0.2s;
}

/* Поява тексту при ховері */


@media (min-width: 768px) {

    .flip-card-front:hover .ast-title-box {
        height: 100%;
        background-color: rgba(40, 106, 205, 0.8);
    }

    .flip-card-front:hover .ast-image {
        transform: scale(1.1);
    }

    .flip-card-front:hover .ast-title-box p {
        opacity: 1;
        transform: translateY(0);
    }

    .ast-title-box {
        height: 180px;
    }
}

@media (max-width: 992px) {
    .audit-label {
        font-weight: 500;
        font-size: 15px;
        line-height: 20px;
    }
}

@media (max-width: 768px) {
    .desctop {
        display: none;
    }

    .mobile {
        display: block;
    }

    .risk-card-absolute {
        padding: 10px 60px 10px 30px;
    }

    .risk-grid {
        grid-template-columns: 1fr;
        grid-auto-rows: 180px;
    }

    .risk-card-2,
    .risk-card-6 {
        grid-column: span 1;
    }

    .risk-card-6 {
        grid-row: span 2;
    }

    .risk-card-1 {
        order: 2;
    }

    .risk-card-2 {
        order: 1;
    }

    .risk-card-3 {
        order: 6;
    }

    .risk-card-4 {
        order: 3;
    }

    .risk-card-5 {
        order: 4;
    }

    .risk-card-6 {
        order: 5;
    }

    .audit-wrapper {
        display: flex;
        flex-direction: column;
        gap: 30px;
    }

    .audit-text-overlay {
        position: relative;
        display: flex;
        flex-direction: column;
    }

    .audit-label::before {
        content: '';
        position: absolute;
        top: 0.6em;
        /* выравнивание по тексту */
        left: 0;
        width: 6px;
        height: 6px;
        border-radius: 50%;
        background-color: currentColor;
    }

    .audit-label {
        position: relative !important;
        left: auto !important;
        right: auto !important;
        top: auto !important;
        bottom: auto !important;
        width: 100%;
        max-width: 100%;
        opacity: 1;
        transform: none !important;
        font-family: 'Exo 2', sans-serif;

        padding-left: 18px;
    }

    .audit-process-section.animated .audit-label {
        text-align: left;
        list-style: disc;
        width: 100%;
        max-width: 100%;
    }

    .audit-process-section {
        min-height: auto;
    }

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

    .section-header-center {
        text-align: left
    }

    .ast-title-box {
        height: auto;
    }

    .flip-card-front h3 {
        font-family: 'Nunito', sans-serif;
        font-weight: 700;
        font-size: 20px;
        line-height: 25px;
    }

    .ast-title-box p {
        opacity: 1;
        transform: translateY(0px);
    }

    .ast-image {
        position: relative;
        height: 100%;
    }

    .audit .book-service-card:nth-child(5),
    .audit .book-service-card:nth-child(6),
    .audit .book-button {
        display: block;
    }
}


/*  =================================  Course  =====================================  */

.course-stats-column {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    width: 100%;
    position: relative;
    max-width: 555px;
}

.course-stats-flex {
    display: flex;
}

.card-teachers {
    display: flex;
    flex-direction: column;
    align-items: end;
    justify-content: flex-end;
    grid-column: span 2;
    position: relative;

}

.card-teachers .text-card {
    border-radius: 20px 20px 0 20px;
}

.card-students-count .text-card {
    border-radius: 0 20px 20px 20px;
}

.card-students-count {
    padding-right: 22px;
    position: relative;
}

.text-card {
    display: flex;
    flex-direction: column;
    padding: 20px 5px;
    background-color: var(--color-bg-light);
    color: var(--color-accent);
    width: fit-content;
    height: fit-content;
    text-align: center;
}

.card-teachers {
    grid-column: span 2;
    position: relative;
}

.text-card h2 {
    font-weight: 700;
    font-size: 50px;
    text-align: center;
}


.card-team-photo {
    grid-column: span 2;
    margin-bottom: 22px;
    margin-left: 22px;
}

.card-team-photo img {
    max-height: 180px;
}

.course-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: var(--radius);
}

figure.course-card.card-student-photo {
    grid-column: span 2;
    max-height: 212px;
    margin-right: 22px;
}

.card-student-photo img {
    margin-top: 22px;
    height: 100%;
    margin-right: 22px;
    height: calc(100% - 22px);
}

.card-motto {
    max-width: 142px;
    max-height: 244px;
}


.motto-content {
    background-color: var(--color-bg-light);
    color: var(--color-accent);
    padding: 20px;
    border-radius: 20px 20px 0 0;
}

img.motto-image {
    border-radius: 0 0 20px 20px;
    height: auto;
}

/* Угол под верхней карточкой */
.card-teachers::after {
    content: "";
    position: absolute;
    bottom: -35px;
    right: 0;
    width: var(--radius);
    height: 40px;
    background: transparent;
    box-shadow: 10px 0 0 0 var(--color-bg-light);
    transform: rotate(-30deg);
    border-top-right-radius: var(--radius);
}

/* Угол слева от нижней карточки */
.card-students-count::before {
    content: "";
    position: absolute;
    top: -18px;
    left: 0px;
    width: var(--radius);
    height: 20px;
    background: transparent;
    box-shadow: 10px 0 0 0 var(--color-bg-light);
    transform: rotate(180deg);
clip-path: polygon(
    20px 0,
    100% 0,
    100% 100%,
    0 100%,
    0 calc(100% - 20px)
);    border-top-right-radius: var(--radius);
}

.literacy-section-header {
    padding-bottom: 30px;
}

.literacy-section .left-column {
    flex: 0 0 55.2%;
    max-width: 55.2%;
}

.content-header:not(:first-child) {
    padding-top: 30px;
}

.tab-content-block {
    display: flex;
    flex-direction: column;
    width: 100%;
}

.tab-sub-text {
    font-weight: 800;
    color: var(--color-accent);
    padding-top: 10px;
    width: 100%;
    text-align: right;
}

.tab-content-block .tabs-content-wrapper {
    height: 90%;
}

.tabs-section-button {
    margin-top: 30px;
    margin-inline: auto;
}



.author-section {
    color: var(--color-text-dark);
}

.author-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    position: relative;
}

.visual-column {
    display: flex;
    justify-content: end;
}

.photo-wrapper {
    position: relative;
    width: auto;
    max-width: 360px;
    height: 100%;
    max-height: 460px;
}

.photo-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
    border-radius: var(--radius);
}

.name-badge {
    position: absolute;
    bottom: 15%;
    left: 0px;
    width: 360px;
    background: white;
    padding: 20px;
    border-radius: 20px 0 20px 20px;
    z-index: 10;
    transition: all 0.4s ease;
}

.name-badge h3 {
    font-family: 'Nunito', sans-serif;
    font-weight: 800;
}

.hidden-role {
    max-height: 60px;
    opacity: 1;
    margin-top: 10px;
    transition: all 0.4s ease;
}


/* --- ПРАВАЯ КОЛОНКА (СЕТКА) --- */
.facts-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
}

.facts-row {
    display: flex;
    gap: 30px;
}

.author-section h2,
.author-section .content-column h2 {
    color: #E1E1E1;
}

.card-container {
    position: relative;
}

.fact-card {
    background: var(--color-bg-light);
    padding: 30px 20px 40px;
    min-height: 170px;
    min-width: 195px;
    display: flex;
    flex-direction: column;
    box-sizing: border-box;
    border-radius: var(--radius);
    transition: var(--transition);
}

.fact-card-last {
    min-width: 263px;
}

.card-dev:hover {
    -webkit-mask-image: url('data:image/svg+xml;utf8,<svg preserveAspectRatio="none" viewBox="0 0 330 170" fill="black" xmlns="http://www.w3.org/2000/svg"><path d="M310 0C321.046 0 330 8.95431 330 20V94C330 105.046 321.046 114 310 114H133C121.954 114 113 122.954 113 134V150C113 161.046 104.046 170 93 170H20C8.95431 170 0 161.046 0 150V20C0 8.9543 8.95431 0 20 0H310Z"/></svg>');
    mask-image: url('data:image/svg+xml;utf8,<svg preserveAspectRatio="none" viewBox="0 0 330 170" fill="black" xmlns="http://www.w3.org/2000/svg"><path d="M310 0C321.046 0 330 8.95431 330 20V94C330 105.046 321.046 114 310 114H133C121.954 114 113 122.954 113 134V150C113 161.046 104.046 170 93 170H20C8.95431 170 0 161.046 0 150V20C0 8.9543 8.95431 0 20 0H310Z"/></svg>');
    -webkit-mask-size: 100% 100%;
    mask-size: 100% 100%;
}

.card-docent:hover {
    -webkit-mask-image: url('data:image/svg+xml;utf8,<svg preserveAspectRatio="none" viewBox="0 0 263 170" fill="black" xmlns="http://www.w3.org/2000/svg"><path d="M243 0C254.046 0 263 8.95431 263 20V95C263 106.046 254.046 115 243 115H228.004C216.958 115 208.004 123.954 208.004 135V150C208.004 161.046 199.05 170 188.004 170H20C8.95431 170 0 161.046 0 150V20C0 8.9543 8.9543 0 20 0H243Z"/></svg>');
    mask-image: url('data:image/svg+xml;utf8,<svg preserveAspectRatio="none" viewBox="0 0 263 170" fill="black" xmlns="http://www.w3.org/2000/svg"><path d="M243 0C254.046 0 263 8.95431 263 20V95C263 106.046 254.046 115 243 115H228.004C216.958 115 208.004 123.954 208.004 135V150C208.004 161.046 199.05 170 188.004 170H20C8.95431 170 0 161.046 0 150V20C0 8.9543 8.9543 0 20 0H243Z"/></svg>');
    -webkit-mask-size: 100% 100%;
    mask-size: 100% 100%;
}

.fact-text {
    margin: 0;
    z-index: 2;
}

/* --- КНОПКИ В УГЛАХ --- */
.corner-element-wrapper {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.verified-btn {
    position: absolute;
    bottom: 0px;
    right: 0px;
    color: var(--color-text-light);
    padding: 10px 15px;
    border-radius: 50px;
    font-family: "Nunito", sans-serif;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    border: 1px solid var(--color-text-light);
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.arrow-circle {
    position: absolute;
    cursor: pointer;
    bottom: 0px;
    right: 0;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transform: scale(0.3) rotate(-45deg);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.fact-card:hover+.corner-element-wrapper .verified-btn,
.fact-card:hover+.corner-element-wrapper .arrow-circle {
    opacity: 1;
    transform: scale(1) translate(0, 0);
}

.quote-wrapper {
    margin-top: 30px;
    background: var(--color-bg-light);
    border-radius: 20px;
    padding: 30px 20px;
    max-width: 847px;
    margin-left: auto;
}





.cert-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-height: 100vh;
}

.cert-section .section-title {
    color: #888888;
    text-align: center;
    width: 100%;
}

/* --- 3D КОНТЕЙНЕР --- */
.stage {
    position: relative;
    width: 100%;
    display: flex;
    justify-content: center;
    perspective: 2000px;
    height: 500px;
}

.cert-group {
    position: relative;
    width: 100%;
    max-height: 380px;
    margin-left: 110px;
    max-width: 600px;
    transform-style: preserve-3d;
    transition: transform 0.8s cubic-bezier(0.25, 0.1, 0.25, 1);
}

.cert-card {
    position: absolute;
    height: auto;
    left: 50%;
    top: 0%;
    margin-left: -190px;
    margin-top: 50px;
    transition: all 0.8s cubic-bezier(0.25, 0.1, 0.25, 1);
    cursor: pointer;
    user-select: none;
    overflow: hidden;
    opacity: 1;
}

.cert-card img {
    width: 100%;
    max-height: 380px;
    border-radius: 20px;
    height: auto;
    display: block;
    pointer-events: none;
}

.cert-card.active {
    transform: translate3d(0, 0, 200px);
    z-index: 10;
    opacity: 1;
}

.cert-card.prev {
    transform: translate3d(-350px, 0, -50px) rotateY(27deg);
    z-index: 5;
    left: 80%;
}

.cert-card.next {
    transform: translate3d(350px, 0, -50px) rotateY(-27deg);
    z-index: 5;
    left: 20%;
}

/* --- ТЕКСТОВЫЕ БЛОКИ --- */
.info-panel {
    position: absolute;
    width: 100%;
    height: 100%;
    pointer-events: none;
    color: var(--color-text-dark);
    font-weight: 800;
}

.info-item {
    position: absolute;
    width: 320px;
    opacity: 1;
    transform: translateY(20px);
    transition: all 0.5s ease;
    display: flex;
    align-items: center;
    flex-direction: column;
    gap: 15px;
}

.info-item.visible {
    opacity: 1;
}

.pos-1 {
    top: 2%;
    left: 0%;
    transform: rotate(-10deg);
}

.pos-2 {
    top: 5%;
    right: 0;
    transform: rotate(10deg);
}

.pos-3 {
    bottom: 10%;
    left: 0;
    transform: rotate(10deg);
}

.pos-4 {
    bottom: 10%;
    right: -5%;
    transform: rotate(-10deg);
}


.free-course-section {
    color: var(--color-text-ligh);
    overflow: hidden;
}

.animated-bg-wrapper {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120%;
    height: 120%;
    pointer-events: none;
    z-index: 1;
}

/* Левая колонка (Текст) */
.text-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.main-title {
    font-weight: 800;
    font-size: 80px;
    text-align: center;
    width: 100%;
    padding-block: 30px;
    text-transform: uppercase;
}

.course-benefits-list {
    padding-bottom: 50px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.course-benefit-item {
    display: flex;
    gap: 10px;
}


.check-icon svg {
    width: 30px;
    height: 30px;
}

.visual-content {
    position: absolute;
    top: 10%;
    right: 0;

}
.cta-course{
    background-color: #032356;
}
.cta-course .floating-element-1{
    left: 0;
}

/* ========================== Blog ============================ */

.blog_title {
    color: var(--color-text-dark);
}
.blog_meta{
    color: #888888;
}

.post_inner h4,
.post_inner h3,
.post_inner h5,
.post_inner h6,
.sidebar-section .sidebar-section-item .info h6 a,
.sidebar-section h4,
.sidebar-section h3,
.sidebar-section h5,
.sidebar-section h6{
    color: var(--color-text-dark);
}
.sidebar-section-item .info p,
.post_inner p,
.entry-content p{
    color: #9A9A9A;
}

.sidebar-section ul li{
    display: flex;
    border-top: 1px solid #E8E8E8;
    padding: 10px 0;
    color: #888;
}

.screen-reader-text{
    font-size: 22px;
    line-height: 1.2;
    color: #444;
    
}
input.search-field{
    border: 1px solid #E8E8E8;
    padding-inline: 10px;
    width: 100%;
    margin-top: 1rem;
        font-family: 'Exo 2', sans-serif;
    color: var(--color-text-dark);
    font-weight: 400;
    font-size: 16px;
    border-radius: 8px;
}
form.search-form label {
    width: 100%;
}
input.search-submit {
    font-family: "Nunito", sans-serif;
    padding-inline: 50px;
    border-radius: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-weight: 500;
    line-height: 1;
    height: 40px;
    font-size: 20px;
    transition: var(--transition-base);
    width: fit-content;
    width: 100%;
    font-size: 16px;
    border: none;
    margin-top: 0.5rem;
}
.search-field::placeholder{
        font-size: 16px;
        font-weight: 500;
}
.cat-item a {
    margin-right: 5px;
}
.page-numbers {
        display: flex;
    justify-content: center;
    gap: 10px;
    align-items: center;
    height: 100%;
    width: 100%;
}
a.page-numbers{
    cursor: pointer;
}
.page-numbers li {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: var(--color-accent);
    color: var(--color-text-ligh);
    transition: var(--transition);
    font-size: 18px;
    font-weight: 500;
}


input.search-submit:hover svg path,
.page-numbers li:hover svg path {
    color: var(--color-text-light);
    fill: var(--color-text-light);
}
input.search-submit,
.page-numbers li {
    color: var(--color-text-light);
    background-color: var(--color-accent);
}
input.search-submit:hover,
.page-numbers li:hover {
    background-color: #124EA8;
     color: var(--color-text-light);
}

.page-numbers li:active a,
.page-numbers li:hover a{
     color: var(--color-text-light);
}
.page-numbers.current{
    background-color: #0D3E87;
    border-radius: 50%;
}
input.search-submit:active ,
.page-numbers li:active {
    background-color: #0D3E87;
}

a.prev.page-numbers,
a.next.page-numbers {
    align-items: normal;
    height: 90%;
    gap: 0;
    font-size: 24px;
}
.blog-img a img {
    width: 100%;
}
.breadcumb-area {
    min-height: 400px;

}

    #blog .breadcumb-content {
        background: transparent;
    }
.breadcumb-content .hero-section-container.contact-title {
    padding-top: 0px;
}
.breadcumb-area.p-block{
    padding-block: 100px 50px;
}
h1.hero-section-container {
    display: flex;
    height: 100%;
    align-items: center;
    min-height: 230px;
}
@media (max-width: 990px) {
.breadcumb-area.p-block{
    padding-block: 50px;
}
h1.hero-section-container {
    min-height: 270px;
}
}
@media (min-width: 1024px) {
    .hidden-role {
        max-height: 0;
        opacity: 0;
        overflow: hidden;
        transition: all 0.4s ease;
    }

    .author-container:hover .hidden-role {
        max-height: 60px;
        opacity: 1;
        margin-top: 10px;
    }


}

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

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

    .name-badge {
        left: 0;
        bottom: 0;
        border-radius: 0 0 20px 20px;
        width: 100%;
        box-sizing: border-box;
        max-width: 560px;
    }

    .photo-wrapper {
        position: relative;
        width: 100%;
        max-width: 100%;
        height: 100%;
        max-width: 560px;
    }

    .visual-column {
        justify-content: inherit;
    }

    .quote-wrapper {
        margin-left: 0;
    }

    .fact-card {
        min-height: 0;
    }

    .card-dev {
        -webkit-mask-image: url('data:image/svg+xml;utf8,<svg preserveAspectRatio="none" viewBox="0 0 330 170" fill="black" xmlns="http://www.w3.org/2000/svg"><path d="M310 0C321.046 0 330 8.95431 330 20V94C330 105.046 321.046 114 310 114H133C121.954 114 113 122.954 113 134V150C113 161.046 104.046 170 93 170H20C8.95431 170 0 161.046 0 150V20C0 8.9543 8.95431 0 20 0H310Z"/></svg>');
        mask-image: url('data:image/svg+xml;utf8,<svg preserveAspectRatio="none" viewBox="0 0 330 170" fill="black" xmlns="http://www.w3.org/2000/svg"><path d="M310 0C321.046 0 330 8.95431 330 20V94C330 105.046 321.046 114 310 114H133C121.954 114 113 122.954 113 134V150C113 161.046 104.046 170 93 170H20C8.95431 170 0 161.046 0 150V20C0 8.9543 8.95431 0 20 0H310Z"/></svg>');
        -webkit-mask-size: 100% 100%;
        mask-size: 100% 100%;
        min-height: 170px;
    }

    .card-docent {
        -webkit-mask-image: url('data:image/svg+xml;utf8,<svg preserveAspectRatio="none" viewBox="0 0 263 170" fill="black" xmlns="http://www.w3.org/2000/svg"><path d="M243 0C254.046 0 263 8.95431 263 20V95C263 106.046 254.046 115 243 115H228.004C216.958 115 208.004 123.954 208.004 135V150C208.004 161.046 199.05 170 188.004 170H20C8.95431 170 0 161.046 0 150V20C0 8.9543 8.9543 0 20 0H243Z"/></svg>');
        mask-image: url('data:image/svg+xml;utf8,<svg preserveAspectRatio="none" viewBox="0 0 263 170" fill="black" xmlns="http://www.w3.org/2000/svg"><path d="M243 0C254.046 0 263 8.95431 263 20V95C263 106.046 254.046 115 243 115H228.004C216.958 115 208.004 123.954 208.004 135V150C208.004 161.046 199.05 170 188.004 170H20C8.95431 170 0 161.046 0 150V20C0 8.9543 8.9543 0 20 0H243Z"/></svg>');
        -webkit-mask-size: 100% 100%;
        mask-size: 100% 100%;
        min-height: 170px;
    }

    .fact-card+.corner-element-wrapper .verified-btn,
    .fact-card+.corner-element-wrapper .arrow-circle {
        opacity: 1;
        transform: scale(1) translate(0, 0);
    }

    .photo-wrapper {
        max-height: 660px;
    }

    .cert-card {
        margin: auto;
    }

    .cert-card img {
        max-height: 200px;
    }

    .cert-group {
        max-width: 300px;
        margin-left: -150px;
        margin-top: 150px;
    }

    .cert-card.next {
        left: -25%;
    }

    .cert-card.prev {
        left: inherit;
        right: -80%;
    }
}

@media (max-width: 768px) {
    
    #blog .breadcumb-area {
    position: relative;
    z-index: 1;
    height: 100% !important;
    }
    #blog .breadcumb-content {
    position: static !important;
    }
    #blog .breadcumb-area {
    min-height: 400px;
}
   #blog section.about-us-area.special.section-padding-100-70{
    padding-block: 0;
    }
    #blog .hero-section-container{
    padding-top: 70px;
    padding-bottom: 70px;
}
#blog .sidebar {
    padding-top: 0px;
}
    .image-wrapper{
        padding-top: 250px;
    }
    .main-title {
        font-size: 35px;
        line-height: 40px;
        text-align: center;
    }

    .visual-content {
        position: static;
        max-height: 180px;
    }

    .visual-content-mobile svg {
        width: 100%;
    }

    .free-course-section {
        padding-bottom: 0;
    }

    .cert-section {
        min-height: inherit;
    }

    .cert-group {
        margin-top: 20px;
        max-height: 240px;
    }

    .stage {
        height: 240px;
        overflow-x: hidden;
    }

    .info-item {
        position: static;
        transform: rotate(0deg);
        flex-direction: row-reverse;
        gap: 15px;
        font-weight: 500;
        font-size: 15px;
        line-height: 20px;
        margin-bottom: 10px;
    }

    .info-panel {
        position: static;
        margin-top: 30px;
    }

    .facts-row {
        flex-direction: column;
    }

    .facts-row {
        gap: 20px;
    }

    .quote-wrapper {
        margin-top: 0;
    }

    .author-container {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .card-students-count::before,
    .card-teachers::after {
        display: none;
    }

    .course-stats-column {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .card-teachers {
        order: 1;
        grid-column: span 1;
    }

    .card-motto {
        order: 3;
        overflow: hidden;
        border-radius: 20px;
    }

    .card-students-count {
        order: 2;
    }

    .card-student-photo img {
        height: 100%;
    }

    .card-team-photo {
        display: none;

    }

    figure.course-card.card-student-photo {
        order: 4;
        grid-column: span 1;
    }

    figure.course-card.card-student-photo,
    .card-student-photo img {
        margin: 0;
        height: 100%;
        max-height: 100%;
    }

    .card-motto {
        max-width: 100%;
    }

    .card-students-count .text-card,
    .card-teachers .text-card {
        width: 100%;
        border-radius: 20px;
    }

    .card-students-count {
        padding: 0;
    }

    .text-card h2 {
        font-size: 35px;
    }

    .literacy-section .left-column {
        flex: 0 0 100%;
        max-width: 100%;
    }

    .literacy-section .section-content {
        flex-direction: column;
    }

    .course-cta .floating-element-icon-9,
    .course-cta .floating-element-icon-4,
    .course-cta p {
        display: none;
    }

    .course-cta h2 {
        font-weight: 700;
        font-size: 35px;
        padding-bottom: 30px;
    }

    .course .security-bg {
        display: none;
    }
}