:root {
    --color-black: #000;
    --color-white: #fff;
    --color-primary: #0e4c72;
    --color-primary-dark: #0a3551;
    --color-bg: #ffffff;
    --color-text: #000000;
    --color-text-light: #3a3a3a;
    --color-border: #dadada;
    --accent-background-color: #f2f7ff;
    --page-max-width: 1920px;
    --container-padding: 123px;
    --fancybox-bg: rgba(24, 24, 27, 0.5);
    --input-error-background-color: #fce7e7;
    --input-error-border-color: #faababbd;
    --tooltip-background-color: #fff;
    --hs-menu-line-color: #da2127;
    --font-family-main: 'Poppins', sans-serif;
}

@media (max-width: 1600px) {
    :root {
        --container-padding: 5%;
    }
}
@media (max-width: 1500px) {
    :root {
        --container-padding: 3%;
    }
}
@media (max-width: 768px) {
    :root {
        --container-padding: 20px;
    }
}
.custom-checkbox__field:checked + .custom-checkbox__content::after {
    opacity: 1;
}

.custom-checkbox__field:focus + .custom-checkbox__content::before {
    outline: 2px solid #f00;
    outline-offset: 2px;
}

.custom-checkbox__field:disabled + .custom-checkbox__content {
    opacity: 0.4;
    pointer-events: none;
}

html {
    box-sizing: border-box;
}

*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: var(--font-family-main);
}

body {
    margin: 0;
    scroll-behavior: smooth;
    background-color: #fff;
}

img {
    max-width: 100%;
}

main {
    padding: 0;
    margin: 0;
}

a {
    text-decoration: none;
}

p {
    font-family: var(--font-family-main);
}

ul {
    padding-left: 20px;
}

.site-container {
    min-height: 400px;
    min-height: 100vh;
    margin-top: 147px;
}
@media (max-width: 768px) {
    .site-container {
        margin-top: 120px;
    }
}

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

.is-hidden {
    display: none !important;
}

.js-focus-visible :focus:not(.focus-visible) {
    outline: none;
}

.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: var(--color-white);
    transition: all 0.3s ease;
    height: 147px;
}
@media (max-width: 768px) {
    .header {
        height: 120px;
    }
}
.header--scrolled {
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}
.header--dark {
    background: var(--accent-background-color);
    color: var(--color-white);
}
.header__container {
    max-width: var(--page-max-width);
    margin: 0 auto;
    padding: 0 var(--container-padding);
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.header__top {
    transition: padding 0.3s ease;
}
.header__logo {
    display: flex;
    align-items: center;
    text-decoration: none;
}
.header__logo-img {
    height: 60px;
    width: auto;
}
.header__contact {
    display: flex;
    align-items: center;
    gap: 24px;
}
@media (max-width: 768px) {
    .header__contact {
        gap: 12px;
    }
}
.header__phones {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
}
@media (max-width: 730px) {
    .header__phones {
        display: none;
    }
}
.header__phone-icon {
    width: 16px;
    height: 16px;
    color: var(--color-primary);
    margin-right: 8px;
}
.header__phone {
    color: var(--color-primary);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.15s ease;
}
.header__phone:hover {
    color: var(--color-text);
}
.header__phone-separator {
    color: var(--color-text-light);
}
.header__contact-link {
    color: var(--color-primary);
    text-decoration: underline;
    font-weight: 500;
    font-size: 14px;
    white-space: nowrap;
    transition: color 0.15s ease;
}
.header__contact-link:hover {
    color: var(--color-text);
}
@media (max-width: 500px) {
    .header__contact-link {
        margin-left: 20px;
    }
}
.header__bottom {
    padding: 15px 0;
    transition: padding 0.3s ease;
}
@media (max-width: 992px) {
    .header__nav {
        display: none;
    }
}
.header__menu {
    display: flex;
    align-items: center;
    gap: 80px;
    list-style: none;
}
@media (max-width: 1350px) {
    .header__menu {
        gap: 60px;
    }
}
@media (max-width: 1124px) {
    .header__menu {
        gap: 40px;
    }
}
.header__menu-item {
    position: relative;
}
.header__menu-item--dropdown .header__menu-link {
    display: flex;
    align-items: center;
    gap: 8px;
}
.header__menu-item--dropdown:hover .header__dropdown[data-dropdown='services'],
.header__menu-item--dropdown:hover .header__dropdown[data-dropdown='resources'] {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.header__menu-item--dropdown:hover .header__menu-arrow {
    transform: rotate(180deg);
}
.header__menu-link {
    color: var(--color-text);
    text-decoration: none;
    font-weight: 400;
    font-size: 22px;
    transition: color 0.15s ease;
}
@media (max-width: 1350px) {
    .header__menu-link {
        font-size: 20px;
    }
}
@media (max-width: 1124px) {
    .header__menu-link {
        font-size: 18px;
    }
}
.header__menu-link:hover {
    color: var(--color-primary);
}
.header__menu-arrow {
    transition: transform 0.15s ease;
}
.header__portal-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    background: var(--color-primary);
    color: var(--color-white);
    text-decoration: none;
    padding: 12px 24px;
    border-radius: 15px;
    font-weight: 500;
    font-size: 22px;
    transition: all 0.15s ease;
}
@media (max-width: 1350px) {
    .header__portal-btn {
        font-size: 20px;
        padding: 10px 20px;
    }
}
@media (max-width: 1124px) {
    .header__portal-btn {
        font-size: 18px;
        padding: 8px 16px;
    }
}
.header__portal-btn:hover {
    background: var(--color-primary-dark);
    transform: translateY(-1px);
}
@media (max-width: 992px) {
    .header__portal-btn {
        display: none;
    }
}
.header__portal-icon {
    height: 20px;
}
.header__mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}
@media (max-width: 992px) {
    .header__mobile-toggle {
        display: flex;
        margin-left: auto;
    }
}
.header__mobile-toggle-line {
    width: 24px;
    height: 2px;
    background: var(--color-text);
    transition: all 0.15s ease;
}
.header__mobile-toggle.active .header__mobile-toggle-line:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}
.header__mobile-toggle.active .header__mobile-toggle-line:nth-child(2) {
    opacity: 0;
}
.header__mobile-toggle.active .header__mobile-toggle-line:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}
.header__mobile-close {
    position: absolute;
    top: 16px;
    right: 16px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    color: var(--color-text);
}
.header__mobile-close-icon {
    width: 24px;
    height: 24px;
}
.header__dropdown {
    position: fixed;
    left: 0;
    right: 0;
    width: 100vw;
    background: #dee7f6;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1010;
}
.header__dropdown-container {
    max-width: var(--page-max-width);
    margin: 0 auto;
    padding: 32px var(--container-padding);
}
.header__dropdown-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 32px;
}
.header__dropdown-title {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--color-primary);
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 16px;
    text-decoration: none;
    cursor: pointer;
    transition: color 0.15s ease;
}
.header__dropdown-title:hover {
    color: var(--color-text);
}
.header__dropdown-title::before {
    content: '';
    width: 9px;
    height: 17px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='9' height='17' viewBox='0 0 9 17' fill='none'%3E%3Cpath d='M9 8.5L-7.74882e-07 16.7272L-5.5634e-08 0.272758L9 8.5Z' fill='%230E4C72'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center;
    flex-shrink: 0;
}
.header__dropdown-list {
    list-style: none;
}
.header__dropdown-link {
    display: block;
    color: var(--color-text);
    text-decoration: none;
    padding: 8px 0;
    font-size: 14px;
    transition: color 0.15s ease;
}
.header__dropdown-link:hover {
    color: var(--color-primary);
}
.header__dropdown.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.header__mobile-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1020;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}
.header__mobile-overlay.active {
    opacity: 1;
    visibility: visible;
}
.header__mobile-overlay.active .header__mobile-menu {
    transform: translateX(0);
}
.header__mobile-menu {
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    max-width: 400px;
    height: 100vh;
    background: var(--color-white);
    transform: translateX(100%);
    transition: transform 0.3s ease;
    overflow-y: auto;
}
.header__mobile-nav {
    padding: 32px;
}
.header__mobile-list {
    list-style: none;
    margin-bottom: 32px;
    padding: 0;
}
.header__mobile-item {
    border-bottom: 1px solid var(--color-border);
}
.header__mobile-item--dropdown .header__mobile-submenu {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}
.header__mobile-item--dropdown.active .header__mobile-submenu {
    max-height: 300px;
}
.header__mobile-item--dropdown.active .header__mobile-arrow {
    transform: rotate(180deg);
}
.header__mobile-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 16px 0;
    color: var(--color-text);
    text-decoration: none;
    font-weight: 500;
    font-size: 22px;
    background: none;
    border: none;
    cursor: pointer;
    transition: color 0.15s ease;
}
.header__mobile-link:hover {
    color: var(--color-primary);
}
.header__mobile-link--dropdown {
    text-align: left;
}
.header__mobile-arrow {
    transition: transform 0.15s ease;
}
.header__mobile-submenu {
    list-style: none;
    padding-left: 16px;
}
.header__mobile-sublink {
    display: block;
    padding: 12px 0;
    color: var(--color-text-light);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.15s ease;
}
.header__mobile-sublink:hover {
    color: var(--color-primary);
}
.header__mobile-portal {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: var(--color-primary);
    color: var(--color-white);
    text-decoration: none;
    padding: 16px;
    border-radius: 6px;
    font-weight: 500;
    transition: background 0.15s ease;
}
.header__mobile-portal:hover {
    background: var(--color-primary-dark);
}

body.mobile-menu-open {
    overflow: hidden;
}

.footer {
    background-color: var(--accent-background-color);
    padding: 60px 0 0 0;
}
@media (max-width: 768px) {
    .footer {
        padding: 40px 0 0 0;
    }
}
.footer__container {
    max-width: var(--page-max-width);
    margin: 0 auto;
    padding: 0 var(--container-padding);
}
.footer__grid {
    display: grid;
    grid-template-columns: 1.2fr 1.5fr 1fr 1fr;
    gap: 60px;
}
@media (max-width: 1250px) {
    .footer__grid {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
}
@media (max-width: 768px) {
    .footer__grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}
@media (max-width: 1250px) {
    .footer__col--logo {
        grid-column: 1/-1;
    }
}
.footer__logo-link {
    display: inline-block;
    margin-bottom: 40px;
}
.footer__logo {
    height: 60px;
    width: auto;
}
.footer__description {
    font-size: 16px;
    line-height: 1.5;
    margin: 0;
}
.footer__title {
    color: var(--color-black);
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 20px;
    text-transform: uppercase;
}
.footer__links-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}
@media (max-width: 768px) {
    .footer__links-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }
}
.footer__links-column {
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.footer__link {
    color: var(--color-black);
    text-decoration: none;
    font-size: 16px;
    transition: color 0.3s ease;
}
.footer__link:hover {
    color: var(--color-primary);
}
.footer__contact-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 15px;
}
.footer__contact-item:last-child {
    margin-bottom: 0;
}
.footer__contact-icon {
    color: var(--color-primary);
    flex-shrink: 0;
    margin-top: 2px;
}
.footer__contact-info {
    flex: 1;
}
.footer__contact-label {
    color: var(--color-black);
    font-weight: 600;
    font-size: 16px;
    display: block;
    margin-bottom: 4px;
}
.footer__phone-numbers {
    display: flex;
    flex-direction: column;
    gap: 2px;
}
.footer__phone {
    color: var(--color-text-light);
    text-decoration: none;
    font-size: 16px;
    transition: color 0.3s ease;
}
.footer__phone:hover {
    color: var(--color-primary);
}
.footer__address {
    color: var(--color-text-light);
    font-size: 16px;
    line-height: 1.4;
}
.footer__address div {
    margin-bottom: 2px;
}
.footer__address div:last-child {
    margin-bottom: 0;
}
.footer__address-link {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s ease;
}
.footer__address-link:hover {
    color: var(--color-primary);
}
.footer__bottom {
    background-color: var(--color-primary);
    padding: 20px 0;
    margin-top: 40px;
}
.footer__bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
@media (max-width: 768px) {
    .footer__bottom-content {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
}
.footer__copyright {
    color: var(--color-white);
    font-size: 14px;
}
.footer__credits {
    color: var(--color-white);
    font-size: 14px;
}
.footer__credit-link {
    color: var(--color-white);
    text-decoration: underline;
    transition: opacity 0.3s ease;
}
.footer__credit-link:hover {
    opacity: 0.8;
}
.footer__credit-separator {
    margin: 0 4px;
}
.footer__social-links {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}
.footer__social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: var(--color-primary);
    border-radius: 50%;
    color: var(--color-white);
    text-decoration: none;
    transition: all 0.3s ease;
}
.footer__social-link:hover {
    background-color: var(--color-primary-dark);
    transform: translateY(-2px);
}
.footer__social-link svg {
    width: 20px;
    height: 20px;
}

.hero-slider {
    position: relative;
    min-height: 600px;
    background-color: #f5f5f5;
}
@media (max-width: 768px) {
    .hero-slider {
        min-height: 500px;
    }
}
.hero-slider__container {
    max-width: var(--page-max-width);
    margin: 0 auto;
    height: 100%;
}
.hero-slider__slide {
    display: flex;
    height: auto;
    min-height: 600px;
}
@media (max-width: 768px) {
    .hero-slider__slide {
        flex-direction: column;
        min-height: 500px;
    }
}
.hero-slider__slide--image-right {
    flex-direction: row;
}
@media (max-width: 768px) {
    .hero-slider__slide--image-right {
        flex-direction: column;
    }
}
.hero-slider__slide--image-left {
    flex-direction: row-reverse;
}
@media (max-width: 768px) {
    .hero-slider__slide--image-left {
        flex-direction: column;
    }
}
.hero-slider__slide--image-center {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    justify-content: center;
    align-items: center;
    color: #fff;
}

.hero-slider__slide--image-center .section-title {
    color: var(--color-white);
}

.hero-slider__slide--image-center::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1;
}
.hero-slider__slide--image-center .hero-slider__content {
    position: relative;
    z-index: 2;
    flex: none;
    max-width: 1200px;
}
.hero-slider__slide--image-center .hero-slider__image {
    display: none;
}
.hero-slider__slide--no-image {
    justify-content: center;
    align-items: center;
}
.hero-slider__slide--no-image .hero-slider__content {
    flex: none;
    max-width: 1200px;
}
.hero-slider__content {
    flex: 0 1 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    padding: 60px var(--container-padding);
}
@media (max-width: 1024px) {
    .hero-slider__content {
        padding: 50px var(--container-padding);
    }
}
@media (max-width: 768px) {
    .hero-slider__content {
        padding: 40px var(--container-padding) 80px;
        text-align: center;
    }
}
.hero-slider__content--centered {
    text-align: center;
}
.hero-slider__content--full-width {
    text-align: center;
}
.hero-slider__image {
    flex: 1;
    display: flex;
    min-height: 600px;
}
@media (max-width: 768px) {
    .hero-slider__image {
        min-height: 300px;
        max-height: 400px;
    }
}
.hero-slider__image img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    display: block;
}
.hero-slider__text {
    font-size: var(--font-size-lg);
    line-height: 1.6;
    color: var(--color-text);
    margin-bottom: 40px;
}
@media (max-width: 768px) {
    .hero-slider__text {
        font-size: var(--font-size-base);
        margin-bottom: 30px;
    }
}
.hero-slider__text--light {
    color: var(--color-white);
}
.hero-slider__link {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    background-color: var(--color-primary);
    color: var(--color-white);
    padding: 16px 32px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: var(--font-size-base);
    transition: all 0.3s ease;
    margin-top: 30px;
    margin-bottom: 60px;
}
@media (max-width: 768px) {
    .hero-slider__link {
        padding: 14px 28px;
        font-size: var(--font-size-sm);
        margin: 0 auto 60px;
    }
}
.hero-slider__link:hover {
    background-color: var(--color-primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(14, 76, 114, 0.3);
}
.hero-slider__link--light {
    background-color: var(--color-white);
    color: var(--color-primary);
}
.hero-slider__link--light:hover {
    background-color: #f5f5f5;
    color: var(--color-primary-dark);
}
.hero-slider__link-icon {
    transition: transform 0.3s ease;
}
.hero-slider__link:hover .hero-slider__link-icon {
    transform: translateX(4px);
}
.hero-slider .swiper-pagination {
    position: absolute;
    bottom: 20px;
    left: var(--container-padding);
    right: auto;
    width: auto;
    z-index: 10;
}
@media (max-width: 768px) {
    .hero-slider .swiper-pagination {
        left: 50%;
        transform: translateX(-50%);
        bottom: 20px;
    }
}
.hero-slider__slide--image-center .hero-slider .swiper-pagination,
.hero-slider__slide--no-image .hero-slider .swiper-pagination {
    left: 50%;
    transform: translateX(-50%);
}
.hero-slider .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background-color: rgba(14, 76, 114, 0.3);
    opacity: 1;
    margin: 0 6px;
    transition: all 0.3s ease;
}
.hero-slider .swiper-pagination-bullet-active {
    background-color: var(--color-primary);
    transform: scale(1.2);
}
.hero-slider__slide--image-center .swiper-pagination-bullet {
    background-color: rgba(255, 255, 255, 0.5);
}
.hero-slider__slide--image-center .swiper-pagination-bullet-active {
    background-color: var(--color-white);
}

.section-title {
    color: var(--color-black);
    font-size: clamp(30px, 5vw, 60px);
    font-style: normal;
    font-weight: 600;
    line-height: 110%;
    letter-spacing: -2.4px;
}
.section-title--light {
    color: var(--color-white);
}
.section-title--margin-bottom {
    margin-bottom: 35px;
}

.services-slider {
    padding: 80px 0;
    background-color: var(--color-bg);
    overflow: hidden;
}
.services-slider__container {
    max-width: var(--page-max-width);
    margin: 0 auto;
    padding: 0 var(--container-padding);
}
.services-slider__header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 50px;
}
@media (max-width: 768px) {
    .services-slider__header {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
        margin-bottom: 40px;
    }
}
.services-slider__all-link {
    color: var(--color-primary);
    font-size: 18px;
    font-weight: 500;
    text-decoration: none;
    transition: color 0.3s ease;
}
.services-slider__all-link:hover {
    color: var(--color-primary-dark);
}
@media (max-width: 768px) {
    .services-slider__all-link {
        font-size: 16px;
    }
}
.services-slider__swiper {
    overflow: visible;
}
.services-slider__swiper .swiper-wrapper {
    display: flex;
}
.services-slider__swiper .swiper-slide {
    width: auto;
    flex-shrink: 0;
}
.services-slider__card {
    display: block;
    position: relative;
    width: 100%;
    min-height: 500px;
    border-radius: 20px;
    overflow: hidden;
    text-decoration: none;
    color: var(--color-white);
    transition: transform 0.3s ease;
}
.services-slider__card:hover {
    transform: translateY(-5px);
}
.services-slider__card:hover .services-slider__card-overlay {
    opacity: 1;
}
.services-slider__card-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}
.services-slider__card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.8) 0%, rgba(255, 255, 255, 0) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1;
}
.services-slider__card-content {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    padding: 30px;
    z-index: 2;
    height: 100%;
}
@media (max-width: 768px) {
    .services-slider__card-content {
        padding: 25px;
    }
}
@media (max-width: 480px) {
    .services-slider__card-content {
        padding: 20px;
    }
}
.services-slider__card-title {
    font-size: 24px;
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 12px;
    color: var(--color-black);
}
@media (max-width: 768px) {
    .services-slider__card-title {
        font-size: 22px;
        margin-bottom: 10px;
    }
}
@media (max-width: 480px) {
    .services-slider__card-title {
        font-size: 20px;
    }
}
.services-slider__card-description {
    font-size: 16px;
    line-height: 1.4;
    color: var(--color-black);
    margin-bottom: 20px;
}
@media (max-width: 768px) {
    .services-slider__card-description {
        font-size: 15px;
        margin-bottom: 18px;
    }
}
@media (max-width: 480px) {
    .services-slider__card-description {
        font-size: 14px;
        margin-bottom: 15px;
    }
}
.services-slider__card-plus {
    position: absolute;
    bottom: 30px;
    right: 30px;
    width: 40px;
    height: 40px;
    background-color: var(--color-white);
    color: var(--color-black);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 300;
    transition: all 0.3s ease;
}
@media (max-width: 768px) {
    .services-slider__card-plus {
        bottom: 25px;
        right: 25px;
        width: 35px;
        height: 35px;
        font-size: 20px;
    }
}
@media (max-width: 480px) {
    .services-slider__card-plus {
        bottom: 20px;
        right: 20px;
        width: 30px;
        height: 30px;
        font-size: 18px;
    }
}

.exp-featured-products {
    background: #f5f5f5;
    padding: 45px 0;
    position: relative;
}
.exp-featured-products__container {
    max-width: var(--page-max-width);
    margin: 0 auto;
    padding: 0 var(--container-padding);
}
@media (max-width: 768px) {
    .exp-featured-products__container {
        padding: 0 20px;
    }
}
.exp-featured-products__header {
    margin-bottom: 80px;
    text-align: center;
}
.exp-featured-products__description {
    max-width: 1350px;
    margin: 0 auto;
    font-family: var(--font-family-main);
    color: var(--color-text);
    font-size: 18px;
    line-height: 1.5;
    opacity: 0.85;
}
.exp-featured-products__swiper-container {
    position: relative;
    margin-bottom: 20px;
    max-width: var(--page-max-width);
    margin-left: auto;
    margin-right: auto;
    overflow: hidden;
}
@media (max-width: 768px) {
    .exp-featured-products__swiper-container {
        margin-bottom: 40px;
    }
}
.exp-featured-products__swiper {
    overflow: visible;
    padding: 40px 0 80px;
}
@media (max-width: 768px) {
    .exp-featured-products__swiper {
        padding: 20px 0 60px;
    }
}
.exp-featured-products__slide {
    width: 400px;
    max-width: calc(100% - 48px);
    position: relative;
    transition: 0.3s ease;
}
@media (max-width: 1200px) {
    .exp-featured-products__slide {
        width: 350px;
    }
}
@media (max-width: 768px) {
    .exp-featured-products__slide {
        width: 300px;
    }
}
.exp-featured-products__slide-link {
    display: block;
    text-decoration: none;
    color: inherit;
    height: 100%;
}
.exp-featured-products__card {
    background: var(--accent-background-color);
    border-radius: 14px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 100%;
    box-shadow: 0 10px 35px -8px rgba(0, 0, 0, 0.15);
    transition: box-shadow 0.35s ease, transform 0.35s ease;
    position: relative;
    border: 2px solid var(--accent-background-color);
}
.exp-featured-products__card::before {
    content: '';
    position: absolute;
    inset: 0;
    pointer-events: none;
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: inherit;
}
.exp-featured-products__card:hover {
    box-shadow: 0 25px 60px -12px rgba(0, 0, 0, 0.28);
    transform: translateY(-4px);
}
.exp-featured-products__image {
    aspect-ratio: 16/10;
    background: #d9d9d9;
    position: relative;
    overflow: hidden;
}
.exp-featured-products__image img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    display: block;
}
.exp-featured-products__body {
    padding: 32px 24px 30px;
    display: flex;
    flex-direction: column;
    gap: 24px;
}
.exp-featured-products__card-title {
    font-family: var(--font-family-main);
    font-size: clamp(16px, 2.5vw, 22px);
    line-height: 1.35;
    font-weight: 500;
    letter-spacing: 0.15px;
    color: #111;
    margin: 0;
    text-align: center;
}
.exp-featured-products__btn {
    display: inline-flex;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    align-items: center;
    gap: 6px;
    background: transparent;
    border: 1px solid var(--color-primary);
    color: var(--color-primary);
    font-family: var(--font-family-main);
    padding: 10px 22px 10px 20px;
    margin: 0 auto;
    font-size: 14px;
    font-weight: 500;
    line-height: 1;
    letter-spacing: 0.4px;
    border-radius: 40px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px -3px rgba(0, 0, 0, 0.12);
}
.exp-featured-products__btn-arrow {
    font-size: 16px;
    line-height: 1;
    transform: translateY(-1px);
    transition: transform 0.35s ease;
}
.exp-featured-products__btn:hover {
    background: var(--color-primary);
    border-color: var(--color-primary);
    color: #fff;
    box-shadow: 0 6px 18px -4px rgba(0, 0, 0, 0.25);
}
.exp-featured-products__btn:hover .exp-featured-products__btn-arrow {
    transform: translate(3px, -1px);
}
.exp-featured-products__card:hover .exp-featured-products__btn-arrow {
    transform: translate(4px, -1px);
}
.exp-featured-products__nav-next,
.exp-featured-products__nav-prev {
    color: #111;
    background: #000;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    box-shadow: 0 6px 25px -6px rgba(0, 0, 0, 0.25);
    transition: all 0.35s ease;
    color: #fff;
}
.exp-featured-products__nav-next:after,
.exp-featured-products__nav-prev:after {
    font-size: 16px;
    font-weight: 600;
}
.exp-featured-products__nav-next:hover,
.exp-featured-products__nav-prev:hover {
    background: var(--color-primary);
    color: #fff;
}
.exp-featured-products__nav-next {
    right: 10px;
}
.exp-featured-products__nav-prev {
    left: 10px;
}

.paragraph__container {
    max-width: var(--page-max-width);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
}
@media (max-width: 768px) {
    .paragraph__container {
        grid-template-columns: 1fr;
        min-height: auto;
    }
}
.paragraph__image {
    height: 100%;
}
.paragraph__image img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    display: block;
}
@media (max-width: 768px) {
    .paragraph__image {
        width: 100%;
        height: 300px;
        margin-bottom: 40px;
    }
}
.paragraph__content {
    padding: 60px;
    color: var(--color-text);
    width: 100%;
}
@media (max-width: 1200px) {
    .paragraph__content {
        padding: 40px;
    }
}
@media (max-width: 768px) {
    .paragraph__content {
        padding: 20px;
        width: 100%;
    }
}
.paragraph__title {
    margin-bottom: 24px;
}
.paragraph__text {
    margin-bottom: 32px;
    line-height: 1.6;
}
.paragraph__text ul,
.paragraph__text ol {
    margin-bottom: 16px;
    padding-left: 24px;
}
.paragraph__text ul li,
.paragraph__text ol li {
    margin-bottom: 8px;
}
.paragraph__text ul li:last-child,
.paragraph__text ol li:last-child {
    margin-bottom: 0;
}
.paragraph .btn {
    margin-bottom: 40px;
}
.paragraph__actions {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    margin-bottom: 40px;
    position: relative;
}
@media (max-width: 450px) {
    .paragraph__actions {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 768px) {
    .paragraph__actions {
        gap: 16px;
    }
}
.paragraph__action {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
    padding: 24px;
    position: relative;
}
.paragraph__action:not(:last-child)::after {
    content: '';
    position: absolute;
    right: 0;
    top: 20%;
    bottom: 20%;
    width: 1px;
    background-color: var(--color-border);
}
.paragraph__action:hover {
    opacity: 0.8;
    transform: translateY(-2px);
}
@media (max-width: 768px) {
    .paragraph__action {
        padding: 16px;
    }
    .paragraph__action:not(:last-child)::after {
        display: none;
    }
}
.paragraph__action svg {
    width: 80px;
    height: 80px;
    margin-bottom: 12px;
    color: currentColor;
}
@media (max-width: 768px) {
    .paragraph__action svg {
        width: 60px;
        height: 60px;
    }
}
.paragraph__action-title {
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.paragraph__downloads {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    padding: 16px 0px;
}
@media (max-width: 1800px) {
    .paragraph__downloads {
        grid-template-columns: 1fr 1fr 1fr;
    }
}
@media (max-width: 1450px) {
    .paragraph__downloads {
        grid-template-columns: 1fr 1fr;
    }
}
@media (max-width: 1050px) {
    .paragraph__downloads {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}
@media (max-width: 768px) {
    .paragraph__downloads {
        grid-template-columns: 1fr 1fr;
    }
}
@media (max-width: 450px) {
    .paragraph__downloads {
        grid-template-columns: 1fr;
    }
}
.paragraph__download {
    background: #f0f0f0;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.paragraph__download:hover {
    transform: translateY(-4px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}
.paragraph__download-image {
    margin-bottom: 0;
}
.paragraph__download-image img {
    width: 100%;
    height: 200px;
    -o-object-fit: contain;
    object-fit: contain;
    display: block;
}
.paragraph__download-actions {
    display: flex;
    justify-content: space-between;
    padding: 16px 20px;
}
.paragraph__download-link {
    color: var(--color-primary);
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
    transition: color 0.3s ease;
    display: flex;
    align-items: center;
    gap: 6px;
}
.paragraph__download-link:hover {
    color: var(--color-primary-dark);
}
.paragraph--image-left .paragraph__container {
    grid-template-areas: 'image content';
}
@media (max-width: 768px) {
    .paragraph--image-left .paragraph__container {
        grid-template-areas: 'image' 'content';
    }
}
.paragraph--image-left .paragraph__image {
    grid-area: image;
    margin-right: 0;
}
@media (max-width: 768px) {
    .paragraph--image-left .paragraph__image {
        margin-right: 0;
        margin-bottom: 40px;
    }
}
.paragraph--image-left .paragraph__content {
    grid-area: content;
}
.paragraph--image-right .paragraph__container {
    grid-template-areas: 'content image';
}
@media (max-width: 768px) {
    .paragraph--image-right .paragraph__container {
        grid-template-areas: 'image' 'content';
    }
}
.paragraph--image-right .paragraph__image {
    grid-area: image;
    margin-left: 0;
}
@media (max-width: 768px) {
    .paragraph--image-right .paragraph__image {
        margin-left: 0;
        margin-bottom: 40px;
    }
}
.paragraph--image-right .paragraph__content {
    grid-area: content;
}
.paragraph--image-center .paragraph__container {
    position: relative;
    z-index: 2;
    grid-template-columns: 1fr;
    justify-items: center;
}
.paragraph--image-center .paragraph__content {
    padding: 60px var(--container-padding);
}
@media (max-width: 1200px) {
    .paragraph--image-center .paragraph__content {
        padding: 40px var(--container-padding);
    }
}
@media (max-width: 768px) {
    .paragraph--image-center .paragraph__content {
        padding: 20px var(--container-padding);
        width: 100%;
    }
}
.paragraph--no-image .paragraph__container {
    grid-template-columns: 1fr;
    justify-items: center;
}
.paragraph--no-image .paragraph__content {
    padding: 60px var(--container-padding);
}
@media (max-width: 1200px) {
    .paragraph--no-image .paragraph__content {
        padding: 40px var(--container-padding);
    }
}
@media (max-width: 768px) {
    .paragraph--no-image .paragraph__content {
        padding: 20px var(--container-padding);
        width: 100%;
    }
}
.paragraph--no-image .paragraph__image {
    display: none;
}
.paragraph--accent-bg {
    background-color: var(--color-primary);
}
.paragraph--accent-bg .paragraph__content {
    color: var(--color-white);
}
.paragraph--accent-bg .paragraph__download-link {
    color: var(--color-white);
}
.paragraph--accent-bg .paragraph__download-link:hover {
    opacity: 0.8;
}
.paragraph--accent-bg .paragraph__action:not(:last-child)::after {
    background-color: rgba(255, 255, 255, 0.2);
}

.highlight {
    background-color: var(--color-bg);
}
.highlight__container {
    max-width: var(--page-max-width);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 2fr 1fr;
    min-height: 500px;
}
@media (max-width: 1500px) {
    .highlight__container {
        grid-template-columns: repeat(2, 1fr);
    }
    .highlight__container .highlight__item--middle {
        grid-column: 1/-1;
        grid-row: 1;
    }
}
@media (max-width: 1024px) {
    .highlight__container {
        grid-template-columns: 1fr;
        min-height: auto;
    }
}
.highlight__item {
    position: relative;
    overflow: hidden;
}
.highlight__item--left,
.highlight__item--middle {
    min-height: 400px;
}
.highlight__item--right {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 70px;
    background-color: #f4f4f4;
}
.highlight__link,
.highlight__background {
    display: block;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    text-decoration: none;
}
.highlight__overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1;
}
.highlight__content {
    position: absolute;
    bottom: 40px;
    left: 40px;
    right: 40px;
    z-index: 2;
}
@media (max-width: 768px) {
    .highlight__content {
        bottom: 20px;
        left: 20px;
        right: 20px;
    }
}
.highlight .section-title {
    font-size: clamp(24px, 3vw, 36px);
    font-weight: 400;
    line-height: 110%;
    text-transform: uppercase;
    margin: 0;
}
.highlight__testimonials {
    width: 100%;
    position: relative;
}
.highlight__testimonials .swiper {
    overflow: visible;
}

.testimonial {
    text-align: left;
}
.testimonial__quote {
    margin-bottom: 20px;
}
.testimonial__quotes-icon {
    width: 60px;
    height: auto;
    opacity: 0.8;
}
.testimonial__text {
    font-size: 20px;
    line-height: 1.6;
    color: var(--color-text);
    margin: 0 0 20px 0;
}
.testimonial__author {
    font-size: 20px;
    font-weight: 600;
}

.testimonials__navigation {
    width: calc(100% + 100px);
    position: absolute;
    top: 50%;
    left: -50px;
    right: 0;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    pointer-events: none;
    z-index: 10;
}
.testimonials__navigation .testimonials__nav--prev {
    left: -20px;
}
.testimonials__navigation .testimonials__nav--next {
    right: -20px;
}

.testimonials__nav {
    width: 44px;
    height: 44px;
    border: 1px solid transparent;
    background-color: #f4f4f4;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    color: var(--color-text);
    pointer-events: auto;
}
.testimonials__nav:hover {
    background-color: var(--color-primary);
    border-color: var(--color-primary);
    color: var(--color-white);
}
.testimonials__nav:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}
.testimonials__nav:disabled:hover {
    background-color: var(--color-white);
    border-color: var(--color-border);
    color: var(--color-text);
}
.testimonials__nav svg {
    width: 30px;
    height: 30px;
}

.why-us {
    padding: 80px 0;
    background-color: var(--accent-background-color);
}
@media (max-width: 768px) {
    .why-us {
        padding: 60px 0;
    }
}
.why-us__container {
    max-width: var(--page-max-width);
    margin: 0 auto;
    padding: 0 var(--container-padding);
}
.why-us__header {
    text-align: center;
    margin-bottom: 80px;
}
@media (max-width: 768px) {
    .why-us__header {
        margin-bottom: 60px;
    }
}
.why-us__description {
    font-size: 18px;
    line-height: 1.6;
    max-width: 1300px;
    margin: 0 auto;
}
@media (max-width: 768px) {
    .why-us__description {
        font-size: 16px;
    }
}
.why-us__items {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 60px;
}
@media (max-width: 1024px) {
    .why-us__items {
        gap: 40px;
    }
}
@media (max-width: 768px) {
    .why-us__items {
        grid-template-columns: 1fr;
        gap: 50px;
    }
}
.why-us__item {
    text-align: center;
}
.why-us__icon {
    margin-bottom: 30px;
}
.why-us__icon img {
    width: 120px;
    height: 120px;
    -o-object-fit: contain;
    object-fit: contain;
}
@media (max-width: 768px) {
    .why-us__icon img {
        width: 70px;
        height: 70px;
    }
}
.why-us__item-title {
    font-size: 24px;
    font-weight: 600;
    color: var(--color-text);
    margin-bottom: 20px;
    line-height: 1.3;
}
@media (max-width: 768px) {
    .why-us__item-title {
        font-size: 22px;
        margin-bottom: 15px;
    }
}
.why-us__item-text {
    font-size: 16px;
    line-height: 1.6;
    margin: 0;
}
@media (max-width: 768px) {
    .why-us__item-text {
        font-size: 15px;
    }
}

.services-block {
    padding: 80px 0;
    background-color: var(--color-bg);
}
.services-block__container {
    max-width: var(--page-max-width);
    margin: 0 auto;
    padding: 0 var(--container-padding);
}
.services-block__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}
@media (max-width: 768px) {
    .services-block__grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}
.services-block__item {
    display: flex;
    background-color: var(--color-white);
    border-radius: 20px;
    border: 2px solid var(--color-primary);
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.services-block__item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}
@media (max-width: 768px) {
    .services-block__item {
        flex-direction: column;
    }
}
.services-block__image {
    flex: 0 0 35%;
    position: relative;
    overflow: hidden;
}
@media (max-width: 768px) {
    .services-block__image {
        flex: none;
        height: 200px;
    }
}
.services-block__image img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: center;
    object-position: center;
}
.services-block__content {
    flex: 1;
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
@media (max-width: 768px) {
    .services-block__content {
        padding: 20px;
    }
}
.services-block__title {
    font-size: 24px;
    font-weight: 600;
    color: var(--color-primary);
    margin-bottom: 10px;
    line-height: 1.2;
}
@media (max-width: 768px) {
    .services-block__title {
        font-size: 20px;
    }
}
.services-block__description {
    color: var(--color-text-light);
    font-size: 16px;
    line-height: 1.5;
    margin-bottom: 20px;
}
.services-block__links {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 25px;
}
.services-block__link {
    color: var(--color-primary);
    text-decoration: none;
    font-size: 18px;
    font-weight: 500;
    position: relative;
    transition: color 0.3s ease;
}
.services-block__link::before {
    content: '>';
    margin-right: 5px;
    font-weight: 600;
}
.services-block__link:hover {
    color: var(--color-primary-dark);
}
.services-block__link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background-color: var(--color-primary);
    transition: width 0.3s ease;
}
.services-block__link:hover::after {
    width: 100%;
}
.services-block__btn {
    align-self: flex-start;
}

.service-header {
    padding: 60px 0 0 0;
    background-color: var(--color-bg);
}
@media (max-width: 768px) {
    .service-header {
        padding: 40px 0 0 0;
    }
}
.service-header__container {
    max-width: var(--page-max-width);
    margin: 0 auto;
    padding: 0 var(--container-padding);
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 40px 60px;
    align-items: start;
}
@media (max-width: 768px) {
    .service-header__container {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}
.service-header__container:not(:has(.service-header__image)) {
    grid-template-columns: 1fr;
}
.service-header__back {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--color-text);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: color 0.3s ease;
    margin-bottom: 20px;
}
.service-header__back:hover {
    color: var(--color-primary);
}
.service-header__back:empty {
    display: none;
    margin-bottom: 0;
}
.service-header__back-icon {
    width: 16px;
    height: 16px;
    transition: transform 0.3s ease;
}
.service-header__back:hover .service-header__back-icon {
    transform: translateX(-2px);
}
.service-header__content {
    display: flex;
    flex-direction: column;
    gap: 30px;
}
@media (max-width: 768px) {
    .service-header__content {
        gap: 20px;
    }
}
.service-header__content:not(:has(.service-header__title)) {
    gap: 0;
}
.service-header__title {
    margin: 0;
    color: var(--color-text);
}
.service-header__title:empty {
    display: none;
}
.service-header__text {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.service-header__text p {
    margin: 0;
    color: var(--color-text-light);
    font-size: 16px;
    line-height: 1.6;
}
@media (max-width: 768px) {
    .service-header__text p {
        font-size: 14px;
    }
}
.service-header__image {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
}
@media (max-width: 768px) {
    .service-header__image {
        width: 150px;
        height: 150px;
        justify-self: center;
    }
}
.service-header__image:empty {
    display: none;
}
.service-header__img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}

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

@media (max-width: 1200px) {
    .top-picks__grid {
        grid-template-columns: repeat(3, 1fr);
    }
}
@media (max-width: 900px) {
    .top-picks__grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 450px) {
    .top-picks__grid {
        grid-template-columns: 1fr;
    }
}

.top-picks__grid .exp-featured-products__slide {
    width: 100%;
    max-width: 100%;
}

.species {
    padding: 80px 0;
    background-color: var(--color-bg);
}
.species__container {
    max-width: var(--page-max-width);
    margin: 0 auto;
    padding: 0 var(--container-padding);
}
.species__grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 30px;
}
@media (max-width: 1400px) {
    .species__grid {
        grid-template-columns: repeat(4, 1fr);
    }
}
@media (max-width: 1200px) {
    .species__grid {
        grid-template-columns: repeat(3, 1fr);
    }
}
@media (max-width: 900px) {
    .species__grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 500px) {
    .species__grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}
.species__item {
    position: relative;
    display: block;
    height: 400px;
    border-radius: 16px;
    overflow: hidden;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}
.species__item:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}
.species__item:hover .species__image {
    transform: scale(1.05);
}
.species__item:hover .species__content {
    background: rgba(255, 255, 255, 0.8);
    -webkit-backdrop-filter: blur(12px);
    backdrop-filter: blur(12px);
}
.species__item:hover .species__link {
    color: var(--color-primary);
}
.species__item:hover .species__link svg {
    transform: translateX(4px);
}
@media (max-width: 768px) {
    .species__item {
        height: 300px;
    }
}
.species__image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    transition: transform 0.3s ease;
}
.species__content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 24px;
    background: rgba(255, 255, 255, 0.5);
    -webkit-backdrop-filter: blur(8px);
    backdrop-filter: blur(8px);
    transition: all 0.3s ease;
    text-align: center;
}
.species__title {
    font-size: 28px;
    font-weight: 600;
    color: var(--color-primary);
    margin-bottom: 8px;
    font-family: var(--font-family-main);
}
@media (max-width: 768px) {
    .species__title {
        font-size: 24px;
    }
}
.species__link {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 16px;
    font-weight: 500;
    color: var(--color-text);
    transition: all 0.3s ease;
    font-family: var(--font-family-main);
}
.species__link svg {
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.testings {
    padding: 80px 0;
}
@media (max-width: 768px) {
    .testings {
        padding: 60px 0;
    }
}
.testings__container {
    max-width: var(--page-max-width);
    margin: 0 auto;
    padding: 0 var(--container-padding);
}

.testings__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}
@media (max-width: 1024px) {
    .testings__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
}
@media (max-width: 768px) {
    .testings__grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

.testings__item {
    display: block;
    padding: 40px 30px;
    border: 2px solid var(--color-primary);
    border-radius: 12px;
    background: var(--color-white);
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}
.testings__item:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(14, 76, 114, 0.15);
    border-color: var(--color-primary-dark);
}
@media (max-width: 768px) {
    .testings__item {
        padding: 30px 24px;
    }
}

.testings__icon {
    display: flex;
    justify-content: center;
    margin-bottom: 24px;
    color: var(--color-primary);
}
.testings__icon svg {
    width: 150px;
    height: 150px;
}
@media (max-width: 768px) {
    .testings__icon {
        margin-bottom: 20px;
    }
    .testings__icon svg {
        width: 56px;
        height: 56px;
    }
}

.testings__title {
    font-size: 24px;
    font-weight: 600;
    color: var(--color-primary);
    text-align: center;
    margin-bottom: 16px;
    line-height: 1.3;
}
@media (max-width: 768px) {
    .testings__title {
        font-size: 18px;
        margin-bottom: 14px;
    }
}

.testings__text {
    font-size: 14px;
    line-height: 1.5;
    color: var(--color-text-light);
    text-align: center;
    margin-bottom: 24px;
}
@media (max-width: 768px) {
    .testings__text {
        margin-bottom: 20px;
    }
}

.testings__item .btn {
    display: flex;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    margin: 0 auto;
}

.contact {
    position: relative;
}
.contact__container {
    max-width: var(--page-max-width);
    margin: 0 auto;
    position: relative;
}
.contact__top {
    background: var(--color-bg);
    padding: 80px var(--container-padding) 0;
    position: relative;
    z-index: 2;
}
.contact__content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}
@media (max-width: 1024px) {
    .contact__content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}
.contact__description {
    font-size: 16px;
    line-height: 1.6;
    color: var(--color-text-light);
    margin: 0 0 32px 0;
}
.contact .section-title {
    margin-bottom: 16px;
}
.contact__details {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 40px;
}
@media (max-width: 1450px) {
    .contact__details {
        grid-template-columns: 1fr 1fr;
        gap: 36px;
    }
}
@media (max-width: 480px) {
    .contact__details {
        grid-template-columns: 1fr;
        gap: 45px;
    }
}
.contact__detail-group {
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.contact__detail-title {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    font-size: 14px;
    color: var(--color-primary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.contact__detail-icon {
    color: var(--color-primary);
    flex-shrink: 0;
}
.contact__detail-item {
    display: flex;
    align-items: flex-start;
    gap: 8px;
}
.contact__detail-item.details__detail-item--top {
    flex-direction: column;
}
.contact__detail-label {
    font-size: 14px;
    font-weight: 500;
    color: var(--color-text);
    min-width: 60px;
    flex-shrink: 0;
}
.contact__detail-link {
    color: var(--color-text-light);
    text-decoration: none;
    font-size: 14px;
    line-height: 1.4;
    transition: color 0.3s ease;
    flex: 1;
}
.contact__detail-link:hover {
    color: var(--color-primary);
}
.contact__social {
    display: flex;
    gap: 12px;
}
.contact__social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    background: var(--color-primary);
    color: var(--color-white);
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.3s ease;
}
.contact__social-link:hover {
    background: var(--color-primary-dark);
    transform: translateY(-2px);
}
.contact__social-link svg {
    width: 18px;
    height: 18px;
}
@media (max-width: 1024px) {
    .contact__form-wrapper {
        margin-top: 40px;
    }
}
.contact__form {
    background: var(--color-primary);
    padding: 75px;
    border-radius: 16px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    margin-bottom: -200px;
}
.contact__form .btn {
    display: flex;
    margin: 75px auto 0 auto;
}
@media (max-width: 768px) {
    .contact__form {
        padding: 50px 30px;
        margin-bottom: -150px;
    }
}
.contact__form-title {
    color: var(--color-white);
    font-size: clamp(30px, 5vw, 45px);
    font-weight: 500;
    margin-bottom: 32px;
}
.contact__form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
    margin-bottom: 25px;
}
@media (max-width: 480px) {
    .contact__form-row {
        grid-template-columns: 1fr;
    }
}
.contact__form-group--full {
    margin-bottom: 24px;
}
.contact__form-input,
.contact__form-textarea {
    width: 100%;
    padding: 15px 16px;
    border: none;
    border-radius: 8px;
    background: var(--color-white);
    font-family: var(--font-family-main);
    font-size: 14px;
    color: var(--color-text);
}
.contact__form-input::-moz-placeholder,
.contact__form-textarea::-moz-placeholder {
    color: #999;
}
.contact__form-input:-ms-input-placeholder,
.contact__form-textarea:-ms-input-placeholder {
    color: #999;
}
.contact__form-input::placeholder,
.contact__form-textarea::placeholder {
    color: #999;
}
.contact__form-input:focus,
.contact__form-textarea:focus {
    outline: none;
    box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.3);
}
.contact__form-textarea {
    resize: vertical;
    min-height: 80px;
}
.contact__map-section {
    position: relative;
    height: 900px;
    overflow: hidden;
}
@media (max-width: 768px) {
    .contact__map-section {
        height: 600px;
    }
}
.contact__map-link {
    display: block;
    width: 100%;
    height: 100%;
    position: relative;
    text-decoration: none;
    transition: transform 0.3s ease;
}
.contact__map-link:hover {
    transform: scale(1.02);
}
.contact__map-image {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}

.test-selection {
    background: var(--color-bg);
}
.test-selection__header {
    padding: 30px var(--container-padding) 0 var(--container-padding);
    max-width: var(--page-max-width);
    margin: 0 auto 40px auto;
}
.test-selection__type-section {
    padding: 30px;
    max-width: var(--page-max-width);
    margin: 0 auto;
    background: var(--color-primary);
    border-radius: 12px;
}
@media (min-width: 768px) {
    .test-selection__type-section {
        display: flex;
        align-items: flex-start;
        gap: 40px;
    }
}
.test-selection__type-label {
    color: var(--color-white);
    font-weight: 600;
    font-size: 16px;
    display: block;
    margin-bottom: 20px;
    flex-shrink: 0;
}
@media (min-width: 768px) {
    .test-selection__type-label {
        margin-bottom: 0;
        min-width: 150px;
    }
}
.test-selection__type-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 15px 30px;
    flex: 1;
}
.test-selection__content {
    max-width: var(--page-max-width);
    margin: 0 auto;
    padding: 0 var(--container-padding);
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 40px;
    align-items: start;
}
.test-selection__mobile-toggle {
    display: none;
    width: 100%;
    padding: 15px 20px;
    background: var(--color-white);
    border: 2px solid var(--color-border);
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    color: var(--color-text);
    cursor: pointer;
    margin-bottom: 20px;
    justify-content: space-between;
    align-items: center;
}
.test-selection__mobile-toggle-icon {
    transition: transform 0.3s ease;
}
.test-selection__mobile-toggle.active .test-selection__mobile-toggle-icon {
    transform: rotate(180deg);
}
.test-selection__sidebar {
    background: var(--color-white);
    border-radius: 12px;
    padding: 0 25px 0 25px;
    position: -webkit-sticky;
    position: sticky;
    top: 170px;
}
.test-selection__category-header {
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 1px solid var(--color-border);
}
.test-selection__category-title {
    font-weight: 600;
    font-size: 16px;
    color: var(--color-text);
}
.test-selection__categories {
    display: flex;
    flex-direction: column;
    gap: 15px;
}
.test-selection__category-group {
    border-bottom: 1px solid var(--color-border);
    padding-bottom: 15px;
}
.test-selection__category-group:last-child {
    border-bottom: none;
    padding-bottom: 0;
}
.test-selection__category-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 10px;
}
.test-selection__reset {
    margin-top: 20px;
}
.test-selection__toggle-btn {
    background: none;
    border: none;
    padding: 5px;
    cursor: pointer;
    color: var(--color-primary);
    transition: transform 0.3s ease;
}
.test-selection__toggle-btn.active {
    transform: rotate(90deg);
}
.test-selection__toggle-btn svg {
    display: block;
}
.test-selection__subcategories {
    display: none;
    flex-direction: column;
    gap: 8px;
    padding-left: 20px;
}
.test-selection__subcategories.active {
    display: flex;
}
.test-selection__checkbox {
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    font-size: 16px;
    color: var(--color-text);
}
.test-selection__checkbox--nested {
    font-size: 14px;
    color: var(--color-text-light);
}
.test-selection__checkbox input[type='checkbox'] {
    display: none;
}
.test-selection__checkmark {
    width: 20px;
    height: 20px;
    border: 2px solid var(--color-border);
    border-radius: 4px;
    background: var(--color-white);
    position: relative;
    transition: all 0.3s ease;
    flex-shrink: 0;
}
.test-selection__checkmark::after {
    content: '';
    position: absolute;
    left: 6px;
    top: 2px;
    width: 6px;
    height: 10px;
    border: solid var(--color-white);
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
    opacity: 0;
    transition: opacity 0.3s ease;
}
.test-selection__type-grid .test-selection__checkmark {
    border-color: var(--color-white);
}
.test-selection__type-grid .test-selection__checkmark::after {
    border-color: var(--color-primary);
}
input[type='checkbox']:checked + .test-selection__checkmark {
    background: var(--color-primary);
    border-color: var(--color-primary);
}
input[type='checkbox']:checked + .test-selection__checkmark::after {
    opacity: 1;
}
.test-selection__type-grid input[type='checkbox']:checked + .test-selection__checkmark {
    background: var(--color-white);
    border-color: var(--color-white);
}
.test-selection__type-grid .test-selection__checkbox {
    color: var(--color-white);
}
.test-selection__main {
    min-width: 0;
}
.test-selection__search {
    margin-bottom: 30px;
}
.test-selection__search-wrapper {
    position: relative;
}
.test-selection__search-icon {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--color-text-light);
}
.test-selection__search-input {
    width: 100%;
    padding: 15px 15px 15px 50px;
    border: 2px solid var(--color-border);
    border-radius: 8px;
    font-size: 16px;
    background: var(--color-white);
}
.test-selection__search-input::-moz-placeholder {
    color: var(--color-text-light);
}
.test-selection__search-input:-ms-input-placeholder {
    color: var(--color-text-light);
}
.test-selection__search-input::placeholder {
    color: var(--color-text-light);
}
.test-selection__search-input:focus {
    outline: none;
    border-color: var(--color-primary);
}
.test-selection__tests {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 40px;
}
.test-selection__test-item {
    background: var(--accent-background-color);
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s ease;
}
.test-selection__test-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}
.test-selection__test-header {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 20px;
    padding: 20px 25px;
    cursor: pointer;
}
.test-selection__test-header:hover {
    background: var(--accent-background-color);
}
.test-selection__test-id {
    font-weight: 600;
    color: var(--color-text);
    min-width: 60px;
}
.test-selection__test-title {
    font-size: 18px;
    font-weight: 500;
    color: var(--color-text);
    text-align: left;
}
.test-selection__test-toggle {
    background: none;
    border: none;
    padding: 5px;
    cursor: pointer;
    color: var(--color-primary);
    transition: transform 0.3s ease;
}
.test-selection__test-toggle.active {
    transform: rotate(180deg);
}
.test-selection__test-toggle svg {
    display: block;
}
.test-selection__test-content {
    display: none;
    padding: 20px 25px;
}
.test-selection__test-content.active {
    display: block;
}
.test-selection__test-content p {
    margin-bottom: 15px;
    line-height: 1.6;
    color: var(--color-text-light);
}
.test-selection__test-content p:last-of-type {
    margin-bottom: 20px;
}
.test-selection__test-actions {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
    padding-top: 15px;
    border-top: 1px solid var(--color-border);
}
.test-selection__comparison-btn {
    display: inline-flex;
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    font-weight: 500;
    line-height: 1.2;
    color: var(--color-primary);
    text-decoration: none;
    background: transparent;
    border: none;
    padding: 0 0 6px 0;
    position: relative;
    cursor: pointer;
    transition: color 0.3s ease;
}
.test-selection__comparison-btn svg {
    width: 30px;
    height: 30px;
    flex-shrink: 0;
    color: var(--color-primary);
}
.test-selection__comparison-btn::after {
    content: '';
    position: absolute;
    left: 40px;
    right: 0;
    bottom: 0;
    height: 2px;
    background: var(--color-primary);
    transform-origin: left center;
    transition: all 0.3s ease;
}
.test-selection__comparison-btn:hover::after {
    left: 0;
}
.test-selection__comparison-btn:focus-visible {
    outline: 2px solid var(--color-primary);
    outline-offset: 4px;
    border-radius: 4px;
}
.test-selection__compare {
    display: flex;
    align-items: center;
    margin-bottom: 40px;
}
@media (max-width: 1024px) {
    .test-selection__content {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .test-selection__mobile-toggle {
        display: flex;
    }
    .test-selection__sidebar {
        display: none;
        position: static;
    }
    .test-selection__sidebar.active {
        display: block;
    }
}
@media (max-width: 768px) {
    .test-selection__header {
        padding: 20px var(--container-padding);
        margin-bottom: 20px;
    }
    .test-selection__type-grid {
        grid-template-columns: 1fr;
        gap: 10px;
    }
    .test-selection__content {
        padding: 0 var(--container-padding);
    }
    .test-selection__test-header {
        padding: 15px 20px;
    }
    .test-selection__test-id {
        grid-column: 1;
    }
    .test-selection__test-title {
        grid-column: 2;
        font-size: 16px;
    }
    .test-selection__test-toggle {
        grid-column: 3;
    }
    .test-selection__test-info {
        flex-direction: column;
        align-items: flex-start;
        gap: 5px;
    }
    .test-selection__test-content {
        padding: 0 20px 20px;
    }
    .test-selection__test-actions {
        flex-direction: column;
        align-items: stretch;
        gap: 15px;
    }
    .test-selection__comparison-btn {
        font-size: 16px;
    }
    .test-selection__comparison-btn svg {
        width: 36px;
        height: 36px;
    }
    .test-selection__comparison-btn::after {
        left: 44px;
    }
}
@media (max-width: 480px) {
    .test-selection__type-label {
        font-size: 14px;
        margin-bottom: 15px;
    }
    .test-selection__checkbox {
        font-size: 14px;
    }
    .test-selection__checkmark {
        width: 18px;
        height: 18px;
    }
    .test-selection__checkmark::after {
        left: 5px;
        top: 1px;
        width: 5px;
        height: 9px;
    }
}
.test-selection__no-results {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 60px 20px;
    text-align: center;
}
.test-selection__no-results-icon {
    color: var(--color-text-light);
    margin-bottom: 20px;
    opacity: 0.6;
}
.test-selection__no-results-content {
    max-width: 400px;
}
.test-selection__no-results-title {
    display: block;
    font-size: 18px;
    font-weight: 600;
    color: var(--color-text);
    margin-bottom: 10px;
}
.test-selection__no-results-text {
    color: var(--color-text-light);
    line-height: 1.5;
    margin: 0;
}

/* =============================
   Comparison Popup Styles
   ============================= */
.compare-popup {
    padding: min(4vw, 40px) min(4vw, 40px) 40px;
    width: min(1400px, 100%);
    background: var(--color-white);
    border-radius: 16px;
    overflow: hidden;
    color: var(--color-text);
    font-size: 14px;
    line-height: 1.4;
    /* Constrain internal horizontal scroll to wrapper */
}
.compare-popup__table-wrapper {
    position: relative;
    width: 100%;
    overflow-x: auto;
    overscroll-behavior-inline: contain;
    -webkit-overflow-scrolling: touch;
    margin: 0 -4px;
    /* slight negative to soften scroll shadow cutoff */
    padding: 0 4px 4px;
    /* Gradient edge fade indicators */
}
.compare-popup__table-wrapper::before,
.compare-popup__table-wrapper::after {
    content: '';
    position: -webkit-sticky;
    position: sticky;
    top: 0;
    width: 24px;
    height: 100%;
    pointer-events: none;
    z-index: 3;
}
.compare-popup__table-wrapper::before {
    left: 0;
    background: linear-gradient(to right, var(--color-white) 30%, rgba(255, 255, 255, 0));
}
.compare-popup__table-wrapper::after {
    right: 0;
    background: linear-gradient(to left, var(--color-white) 30%, rgba(255, 255, 255, 0));
}
.compare-popup__title {
    margin: 0 0 24px 0;
    font-size: clamp(20px, 2.4vw, 30px);
    font-weight: 600;
    letter-spacing: -0.02em;
}
.compare-popup--empty {
    text-align: center;
}
.compare-popup--empty .compare-popup__empty {
    background: var(--accent-background-color);
    border: 1px dashed var(--color-border);
    padding: 40px 20px;
    border-radius: 12px;
    font-size: 16px;
    color: var(--color-text-light);
}

.compare-table {
    display: block;
    /* Width controlled by min-width; scroll handled by wrapper */
    overflow: visible;
    border: 1px solid var(--color-border);
    --col-gap: 12px;
    --row-bg: var(--color-white);
    --row-alt-bg: var(--accent-background-color);
    /* Explicit pixel-based columns for consistent horizontal scroll */
    --compare-grid-columns: minmax(220px, 260px) 110px 140px 160px 320px 200px;
    min-width: 1150px;
    /* Natural wide width inside wrapper */
    /* Single source of truth for column widths */
}
.compare-table__header,
.compare-table__row {
    display: grid;
    grid-template-columns: var(--compare-grid-columns);
    gap: var(--col-gap);
    align-items: flex-start;
    padding: 14px 18px;
    position: relative;
}
@media (max-width: 900px) {
    .compare-table {
        --compare-grid-columns: minmax(200px, 240px) 100px 120px 140px 280px 180px;
    }
}
.compare-table__header {
    background: var(--color-primary);
    color: var(--color-white);
    font-weight: 600;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border-bottom: 1px solid var(--color-border);
    position: -webkit-sticky;
    position: sticky;
    top: 0;
    z-index: 2;
}
.compare-table__head {
    white-space: nowrap;
}
.compare-table__body {
    display: block;
}
.compare-table__body .compare-table__cell--name {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-weight: 600;
    color: var(--color-text);
}
@media (max-width: 700px) {
    .compare-table__body .compare-table__cell--name {
        flex-wrap: wrap;
    }
}
.compare-table__row {
    background: var(--row-bg);
}
.compare-table__row:nth-child(even) {
    background: var(--row-alt-bg);
}
.compare-table__cell {
    font-size: 14px;
    color: var(--color-text-light);
    line-height: 1.4;
    word-break: break-word;
    white-space: normal;
}

/* Removed stacked mobile layout; horizontal scroll preserved for comparison */
.compare-table__remove {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    border: none;
    background: var(--color-danger, #e55353);
    color: #fff;
    font-size: 16px;
    line-height: 1;
    width: 26px;
    height: 26px;
    border-radius: 50%;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    font-weight: 600;
    transition: background 0.25s ease, transform 0.25s ease;
    flex-shrink: 0;
}
.compare-table__remove:hover {
    background: #c63d3d;
}
.compare-table__remove:active {
    transform: scale(0.9);
}
.compare-table__remove:focus-visible {
    outline: 2px solid var(--color-primary);
    outline-offset: 2px;
}

/* Fallback modal styles (if Fancybox not loaded) */
.compare-modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
    z-index: 10000;
    -webkit-animation: fadeIn 0.3s ease;
    animation: fadeIn 0.3s ease;
}

.compare-modal-fallback {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    max-height: 85vh;
    overflow: auto;
    z-index: 10001;
    width: min(95vw, 1100px);
    -webkit-animation: scaleIn 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    animation: scaleIn 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 10px 40px -10px rgba(0, 0, 0, 0.25);
}

@-webkit-keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}
@-webkit-keyframes scaleIn {
    from {
        opacity: 0;
        transform: translate(-50%, -50%) scale(0.9);
    }
    to {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1);
    }
}
@keyframes scaleIn {
    from {
        opacity: 0;
        transform: translate(-50%, -50%) scale(0.9);
    }
    to {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1);
    }
}
/* Fancybox specific refinement */
.compare-fancybox .fancybox__slide {
    padding: 40px 20px;
}

.test-paragraph {
    padding: 80px 0;
}
.test-paragraph__container {
    max-width: var(--page-max-width);
    margin: 0 auto;
    padding: 0 var(--container-padding);
}
.test-paragraph__layout {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
}
@media (max-width: 768px) {
    .test-paragraph__layout {
        grid-template-columns: 1fr;
    }
}
.test-paragraph__content {
    font-family: var(--font-family-main);
}

.pa-inline {
    padding-left: var(--container-padding);
    padding-right: var(--container-padding);
}

.pa-block {
    padding-top: 60px;
    padding-bottom: 60px;
}

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

input.error,
select.error,
textarea.error {
    border-color: var(--input-error-border-color);
    background-color: var(--input-error-background-color);
}

input,
select,
textarea {
    border: none;
    padding: 15px;
    width: 100%;
}

input:disabled,
select:disabled,
textarea:disabled {
    background-color: #eee;
    border: 1px solid #bdbdbd;
    opacity: 0.8;
}

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

.fc-white {
    color: var(--color-white);
}

.fc-black {
    color: var(--color-black);
}

.nowrap {
    white-space: nowrap;
}

.video-wrapper {
    position: relative;
    padding-bottom: 56.25%;
    /* 16:9 */
    height: 0;
}

.video-wrapper.video-wrapper--sm {
    max-width: 950px;
    margin: 0 auto;
    padding-bottom: 40%;
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.video-wrapper video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* Not Found Page */
.not-found-page {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: var(--accent-background-color);
    padding: 60px var(--container-padding);
    height: 400px;
}

.not-found-page__title {
    font-family: var(--font-family-main);
    font-size: clamp(25px, 4vw, 60px);
    line-height: 1.1;
    margin: 0 0 12px;
    background: linear-gradient(135deg, var(--color-secondary-light), var(--color-primary));
    -webkit-background-clip: text;
    background-clip: text;
}

.not-found-page__subtitle {
    font-family: var(--font-family-main);
    font-size: clamp(16px, 2.2vw, 22px);
    font-weight: 400;
    color: var(--color-text);
    opacity: 0.8;
}

.btn {
    display: inline-block;
    background: var(--color-primary);
    color: white;
    padding: 15px 40px;
    border: 0;
    border-radius: 15px;
    font-family: var(--font-family-main);
    font-size: 16px;
    font-weight: 400;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 176, 240, 0.3);
    cursor: pointer;
    position: relative;
}
.btn--flex {
    display: inline-flex;
    align-items: center;
    gap: 10px;
}
.btn--small {
    padding: 10px 25px;
    font-size: 14px;
}
.btn--transparent {
    background: transparent;
    color: var(--color-primary);
    border: 2px solid var(--color-primary);
    box-shadow: none;
}
.btn--transparent:hover {
    background: var(--color-primary);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 176, 240, 0.4);
}
.btn--white {
    background: #f2f7ff;
    color: var(--color-primary);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}
.btn--white:hover {
    background: var(--color-primary);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 176, 240, 0.4);
}
.btn--icon {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}
.btn:hover {
    background: var(--color-primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 176, 240, 0.4);
}
@media (max-width: 768px) {
    .btn {
        padding: 12px 30px;
        font-size: 14px;
    }
    .btn--small {
        padding: 8px 20px;
        font-size: 12px;
    }
}

.btn.btn--loading {
    pointer-events: none;
    cursor: not-allowed;
    color: transparent;
    transform: none;
    box-shadow: 0 4px 12px rgba(0, 176, 240, 0.3);
    overflow: hidden;
}

.btn.btn--loading::before {
    content: '';
    position: absolute;
    inset: 0;
    background: inherit;
    border-radius: inherit;
    z-index: 1;
}

.btn.btn--loading::after {
    content: '';
    position: absolute;
    inset: 0;
    margin: auto;
    width: 1.2em;
    height: 1.2em;
    border: 2px solid rgba(255, 255, 255, 0.35);
    border-top-color: #fff;
    border-right-color: #fff;
    border-radius: 50%;
    -webkit-animation: btn-spin 0.8s linear infinite;
    animation: btn-spin 0.8s linear infinite;
    z-index: 2;
}

.btn.btn--loading:hover {
    background: var(--color-primary);
    transform: none;
    box-shadow: 0 4px 12px rgba(0, 176, 240, 0.3);
}

@-webkit-keyframes btn-spin {
    to {
        transform: rotate(360deg);
    }
}
@keyframes btn-spin {
    to {
        transform: rotate(360deg);
    }
}
.section-title {
    color: var(--color-black);
    font-size: clamp(30px, 5vw, 60px);
    font-style: normal;
    font-weight: 600;
    line-height: 110%;
    letter-spacing: -2.4px;
}
.section-title--light {
    color: var(--color-white);
}
.section-title--margin-bottom {
    margin-bottom: 35px;
}
