

/* Start:/local/templates/zakargon/styles.css?177314415545282*/
/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Roboto', sans-serif;
    line-height: 1.6;
    color: #3e3e3e;
    background-color: #ffffff;
    overflow-x: hidden;
}

/* CSS Variables */
:root {
    --primary-color: #d9042b;
    --white: #ffffff;
    --gray: #a2a3a3;
    --dark-gray: #3e3e3e;
    --container-width: 1440px;
    --header-height: 92px;
    --video-width: 580px;
    --video-height: 362px;
    --font-semibold: 600;
    --transition: all 0.3s ease;
    --lnh: 110%;
}

/* Container */
.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
    box-sizing: border-box;
    width: 100%;
}

/* Header */
.header {
    height: var(--header-height);
    background-color: var(--white);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: relative;
}

.header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
}

.header__logo {
    flex-shrink: 0;
    margin-top: 5px;
}

.header__logo-img {
    width: 346px;
    height: 68px;
    object-fit: contain;
}

.header__nav {
    flex: 1;
    margin-left: 40px;
}

.header__nav-list {
    display: flex;
    list-style: none;
    gap: 30px;
}

.header__nav-link {
    color: var(--dark-gray);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
}

.header__nav-link:hover {
    color: var(--primary-color);
}

.header__actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

.header__phone {
    color: var(--dark-gray);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
}

.header__phone:hover {
    color: var(--primary-color);
}

.header__auth {
    display: flex;
    align-items: center;
    gap: 5px;
}

.header__auth-link {
    color: var(--dark-gray);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
    display: flex;
    align-items: center;
}

.header__auth-icon {
    margin-right: 8px;
}

.header__auth-link:hover {
    color: #1e7ae2;
}

.header__auth-separator {
    color: var(--gray);
}

/* Main Content */
.main {
    padding-top: 0;
}

/* Hero Section */
.hero {
    padding: 80px 0;
}

.hero__inner {
    display: grid;
    grid-template-columns: 1fr var(--video-width);
    gap: 60px;
    align-items: center;
}

.hero__title {
    font-size: 70px;
    line-height: 85%;
    font-weight: var(--font-semibold);
    color: var(--primary-color);
}

.hero__title-accent {
    color: #000000;
}

.hero__brands {
    margin-top: 15px;
    display: flex;
    gap: 15px;
    margin-bottom: 30px;
    align-items: center;
}

.hero__brands-wrapper {
    display: flex;
    gap: 15px;
    margin-top: 15px;
}

.hero__brand {
    height: 50px;
    width: 50px;
    border-radius: 8px;
    object-fit: cover;
}

.hero__description {
    font-size: 25px;
    line-height: var(--lnh);
    font-weight: var(--font-semibold);
    color: var(--dark-gray);
    margin-bottom: 40px;
}

.hero__video-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 100px;
}

.hero__btn {
    background-color: var(--primary-color);
    color: var(--white);
    border: none;
    padding: 31px 15px;
    font-size: 25px;
    font-weight: 900;
    border-radius: 20px;
    line-height: var(--lnh);
    cursor: pointer;
    transition: var(--transition);
    width: fit-content;
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.55);
}

.hero__btn:hover {
    background-color: #b8032a;
    transform: translateY(-2px);
}

.hero__video {
    width: var(--video-width);
    height: var(--video-height);
    border-radius: 12px;
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.55);
    overflow: hidden;
    border: 1px solid #e0e0e0;
}

.hero__video-placeholder {
    width: 100%;
    height: 100%;
    background-color: #e0e0e0;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.hero__video-text {
    font-size: 18px;
    color: var(--gray);
    font-weight: 500;
}

/* Services Section */
.services {
    padding: 80px 0;
}

.services__content {
    display: flex;
    gap: 60px;
    align-items: center;
    justify-content: space-between;
}

.services__title {
    font-size: 70px;
    line-height: 85%;
    font-weight: var(--font-semibold);
    color: var(--dark-gray);
    margin-bottom: 30px;
    text-align: right;
}

.services__title-accent {
    color: var(--primary-color);
}

.services__description {
    font-size: 25px;
    line-height: var(--lnh);
    color: var(--dark-gray);
    font-weight: 600;
    text-align: right;
}

.services__text {
    max-width: 598px;
}

.services__video-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.services__video {
    width: var(--video-width);
    height: var(--video-height);
    border-radius: 12px;
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.55);
    overflow: hidden;
    border: 1px solid #e0e0e0;
}

.services__video-placeholder {
    width: 100%;
    height: 100%;
    background-color: #e0e0e0;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.services__video-text {
    font-size: 18px;
    color: var(--gray);
    font-weight: 500;
}

/* How It Works Section */
.how-it-works {
    padding: 80px 0;
}

.how-it-works__title {
    font-size: 30px;
    font-weight: var(--font-semibold);
    color: var(--dark-gray);
    line-height: var(--lnh);
    letter-spacing: 0%;
    text-align: left;
    margin-bottom: 60px;
}

.how-it-works__cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.how-it-works__card {
    background-color: var(--white);
    border-radius: 16px;
    padding: 30px;
    min-height: 420px;
    display: flex;
    flex-direction: column;
    transition: var(--transition);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    margin-bottom: 30px;
}

.how-it-works__card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.how-it-works__card--pink {
    background: linear-gradient(145deg, #fbabab91 0%, #fbabab40 100%);
}

.how-it-works__card--yellow {
    background: linear-gradient(145deg, #ffdc7b91 0%, #ffdc7b40 100%);
}

.how-it-works__card--purple {
    background: linear-gradient(145deg, #b9b1f791 0%, #b9b1f740 100%);
}

.how-it-works__card-title {
    font-size: 22px;
    font-weight: 400;
    color: #656565;
    margin-bottom: 10px;
    text-align: center;
}

.how-it-works__card-content {
    flex: 1;
    margin-bottom: 20px;
}

.how-it-works__card-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
}

.how-it-works__card-label {
    font-weight: 400;
    color: #656565;
    line-height: 126%;
    font-size: 20px;
}

.how-it-works__card-value {
    font-weight: var(--font-semibold);
    color: var(--dark-gray);
}

.how-it-works__card-value--dashed {
    border: 1px dashed #ddd;
    padding: 5px 30px;
    margin-bottom: 5px;
    position: relative;
    width: 150px;
    display: inline-block;
    text-align: center;
}

.how-it-works__card-form {
    min-height: 335px;
    background-color: rgba(255, 255, 255, 0.8);
    border-radius: 12px;
    padding: 20px;
    box-shadow: 6px 6px 0 0 #e8e8e8, 12px 12px 0 0 #cccccc,
        10px 10px 20px rgba(0, 0, 0, 0.1);
}

.how-it-works__card-description {
    text-align: center;
    font-size: 18px;
    color: #000;
    font-weight: 600;
    line-height: 110%;
    font-weight: 400;
}

.how-it-works-modify {
    margin-top: 5px;
    padding: 9px;
    border-radius: 3px;
    border: 1px dashed #e4e4e4;
    color: #000000;
    font-size: 16px;
    font-weight: 500;
    line-height: 136%;
}

.how-it-works__card-note {
    font-size: 14px;
    color: var(--gray);
    font-style: italic;
    margin-top: 10px;
}

.how-it-works__card-offers {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.how-it-works__card-offer {
    padding: 12px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 12px;
    border: 1px solid #e4e4e4;
}

.how-it-works__card-offer-avatar {
    flex-shrink: 0;
}

.how-it-works__card-offer-img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
}

.how-it-works__card-offer-info {
    font-size: 15px;
    line-height: 126%;
    font-weight: 500;
    flex: 1;
    color: #656565;
}

.how-it-works__card-offer-info > strong {
    color: #282828;
    font-size: 15px;
}

.how-it-works__card-offer-info > small {
    color: #656565;
    font-size: 12px;
}

.how-it-works__card-subdescription {
    font-size: 16px;
    color: #3e3e3e;
    margin-top: 10px;
    font-weight: 400;
    line-height: 130%;
    text-align: center;
    letter-spacing: 0%;
}

/* When You Section */
.when_you {
    padding: 80px 0;
}

.when_you__title {
    font-size: 25px;
    font-weight: var(--font-semibold);
    color: #3e3e3e;
    line-height: var(--lnh);
    text-align: left;
    margin-bottom: 60px;
}

.when_you__content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: start;
    gap: 20px;
}

.when_you__benefits {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 45px;
}

.when_you__benefit {
    background-color: var(--white);
    border-radius: 16px;
    padding: 30px;
    text-align: center;
    transition: var(--transition);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    background-color: #d9d9d9;
}

.when_you__benefit:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.when_you__benefit-icon {
    display: flex;
    width: 60px;
    margin: 0 auto;
    padding: 5px 5px;
    border-radius: 12px;
    margin-bottom: 20px;
    background-color: white;
}

.when_you__benefit-title {
    font-size: 16px;
    font-weight: 400;
    color: #3e3e3e;
    margin-bottom: 15px;
    line-height: 130%;
    letter-spacing: 0%;
}

.when_you__extra {
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    background-color: #d9d9d9;
}

.when_you__extra-content {
    text-align: left;
}

.when_you__extra-title {
    font-size: 28px;
    font-weight: var(--font-semibold);
    color: var(--dark-gray);
    margin-bottom: 25px;
    line-height: var(--lnh);
}

.when_you__extra-list {
    list-style: none;
    margin-bottom: 25px;
}

.when_you__extra-list li {
    font-size: 16px;
    color: var(--dark-gray);
    font-weight: 400;
    line-height: 180%;
    margin-bottom: 10px;
    padding-left: 20px;
    position: relative;
}

.when_you__extra-list li:before {
    content: '•';
    color: var(--primary-color);
    font-size: 20px;
    position: absolute;
    left: 0;
    top: -2px;
}

.when_you__btn {
    margin: 0 center;
    background-color: var(--primary-color);
    color: var(--white);
    border: none;
    padding: 8px 40px;
    font-size: 18px;
    font-weight: 900;
    border-radius: 12px;
    cursor: pointer;
    transition: var(--transition);
    margin-bottom: 25px;
}

.when_you__btn:hover {
    background-color: #b8032a;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(217, 4, 43, 0.4);
}

.when_you__extra-footer {
    font-size: 20px;
    font-weight: var(--font-semibold);
    color: var(--dark-gray);
    text-align: center;
    line-height: 1.4;
}

.yourself__title {
    margin-bottom: 90px;
    font-size: 25px;
    line-height: 110%;
    letter-spacing: 0%;
    font-weight: var(--font-semibold);
    color: #3e3e3e;
}

/* FAQ Section */
.faq {
    padding: 80px 0;
}

.faq__inner {
    max-width: 1127px;
    margin: 0 auto;
    background-color: #8a8a8a;
    border-radius: 16px;
    padding: 30px;
    height: 542px;
}

.faq__content {
    background-color: #ffffff;
    border-radius: 12px;
    padding: 40px 30px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
    overflow: hidden;
}

/* Chat Window Styles */
.faq__chat {
    position: relative;
    margin-bottom: 20px;
    height: 200px;
    overflow-y: auto;
}

.faq__chat-window {
    width: 100%;
    height: 100%;
    padding: 10px;
}

.faq__message {
    display: flex;
    flex-direction: column;
    margin-bottom: 15px;
    max-width: 95%;
    opacity: 0;
    transform: translateX(-20px);
    animation: messageIn 0.5s forwards;
}

.faq__message--question {
    animation: questionIn 0.5s forwards;
    transform: translateX(20px);
}

.faq__message--question {
    align-self: flex-end;
    text-align: right;
}

.faq__message--answer {
    align-self: flex-start;
}

.faq__message-bubble {
    background-color: #f2f7ff;
    border-radius: 12px;
    padding: 12px 15px;
    font-size: 14px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.faq__message--question .faq__message-bubble {
    border-bottom-right-radius: 4px;
    background-color: #bdc7ff99;
}

.faq__message--answer .faq__message-bubble {
    background-color: #cde0fb73;
    border-bottom-left-radius: 4px;
}

.faq__message-info {
    display: flex;
    align-items: center;
    gap: 5px;
    margin-top: 4px;
    font-size: 12px;
    color: #8a8a8a;
}

.faq__message--question .faq__message-info {
    justify-content: flex-end;
}

.faq__message-status {
    display: flex;
    align-items: center;
}

.faq__message-status img {
    width: 26px;
    height: 12px;
    object-fit: contain;
}

/* Instructions Styles */
.faq__steps {
    margin-bottom: 20px;
}

.faq__step {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
    background-color: #f2f7ff;
    border-radius: 8px;
    padding: 10px 15px;
}

.faq__step--active {
    background-color: #eff6ff;
}

.faq__step-check {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    background-color: #d9042b;
    color: #ffffff;
    border-radius: 50%;
    font-size: 14px;
    font-weight: bold;
}

.faq__step-text {
    font-size: 16px;
    color: var(--dark-gray);
    margin: 0;
}

/* Button Styles */
.faq__buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    margin-top: auto;
}

.faq__button {
    background-color: #ffffff;
    border: 1px solid #dde5e9;
    border-radius: 40px;
    padding: 10px 20px;
    font-size: 14px;
    color: var(--dark-gray);
    cursor: pointer;
    transition: var(--transition);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.faq__button:hover {
    background-color: #f8f9fa;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.faq__button--active {
    background-color: #f0f0f0;
    border-color: #ccc;
}

/* Animations */
@keyframes messageIn {
    0% {
        opacity: 0;
        transform: translateX(-20px);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes answerIn {
    0% {
        opacity: 0;
        transform: translateX(-20px);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes questionIn {
    0% {
        opacity: 0;
        transform: translateX(20px);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

.faq__message--answer {
    animation: answerIn 0.5s forwards;
    transform: translateX(-20px);
}

.button-clicked {
    transform: scale(0.95);
    transition: transform 0.2s;
}

@media (max-width: 1200px) {
    .faq__inner {
        max-width: 90%;
        height: auto;
        min-height: 542px;
    }
}

/* Footer */
.footer {
    background-color: #cfcece;
    color: #858585;
    padding: 60px 0 30px;
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 40px;
    background: linear-gradient(
        to bottom,
        rgba(255, 255, 255, 0.9) 0%,
        rgba(255, 255, 255, 0.6) 30%,
        rgba(255, 255, 255, 0.3) 60%,
        rgba(207, 206, 206, 0) 100%
    );
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    pointer-events: none;
}

.footer__inner {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 60px;
    margin-bottom: 40px;
}

.footer__title {
    font-size: 20px;
    font-weight: var(--font-semibold);
    margin-bottom: 20px;
    line-height: 210%;
    letter-spacing: 0%;
    color: #000;
}

.footer__list {
    list-style: none;
}

.footer__item {
    margin-bottom: 12px;
}

.footer__link {
    color: var(--dark-gray);
    text-decoration: none;
    transition: var(--transition);
}

.footer__link:hover {
    color: var(--white);
}

.footer__bottom {
    padding-top: 30px;
    display: flex;
    justify-content: flex-end;
}

.footer__copyright {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    text-align: right;
    max-width: 400px;
}

.footer__copyright-text {
    font-size: 12px;
    color: #858585;
    line-height: 1.4;
    margin-bottom: 8px;
}

.footer__copyright-text:last-child {
    margin-bottom: 0;
}

.footer__copyright-link {
    color: #858585;
    text-decoration: underline;
    transition: var(--transition);
}

.footer__copyright-link:hover {
    color: var(--dark-gray);
}

.footer__first-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 40px;
}

.footer__hr {
    border: none;
    height: 1px;
    background-color: #565656;
    margin-bottom: 30px;
}

.footer__socials {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
    max-width: 100%;
}

.footer__socials-content {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
}

.footer__socials-icon-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    flex-shrink: 0;
}

.footer__socials-msg-icon {
    width: 20px;
    height: 20px;
    object-fit: contain;
}

.footer__socials-title {
    font-size: 16px;
    font-weight: var(--font-semibold);
    color: var(--dark-gray);
    margin: 0;
    white-space: nowrap;
}

.footer__socials-icons {
    display: flex;
    gap: 12px;
    flex-shrink: 0;
}

.footer__social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 8px;
    background-color: #fff;
    transition: var(--transition);
    flex-shrink: 0;
}

.footer__social-link:hover {
    background-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.footer__social-icon {
    width: 24px;
    height: 24px;
    object-fit: contain;
}

.footer__social-container {
    display: flex;
    padding: 2px 12px;
    border-radius: 15px;
    background-color: #fff;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
}

/* Notifications */
.notification {
    position: fixed;
    top: 20px;
    right: 20px;
    padding: 15px 20px;
    border-radius: 8px;
    color: var(--white);
    font-weight: 500;
    transform: translateX(100%);
    transition: transform 0.3s ease;
    z-index: 10000;
    max-width: 300px;
}

.notification--visible {
    transform: translateX(0);
}

.notification--success {
    background-color: #28a745;
}

.notification--error {
    background-color: #dc3545;
}

.notification--warning {
    background-color: #ffc107;
    color: var(--dark-gray);
}

/* Form Styles */
.form-group {
    margin-bottom: 20px;
}

.form-label {
    display: block;
    margin-bottom: 5px;
    font-weight: 500;
    color: var(--dark-gray);
}

.form-input {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    font-size: 16px;
    transition: var(--transition);
}

.form-input:focus {
    outline: none;
    border-color: var(--primary-color);
}

.form-input.error {
    border-color: #dc3545;
}

.error-message {
    color: #dc3545;
    font-size: 14px;
    margin-top: 5px;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 5px;
    background: none;
    border: none;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background-color: var(--dark-gray);
    margin: 3px 0;
    transition: var(--transition);
}

.mobile-menu-toggle--active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-toggle--active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle--active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

/* Scroll Animations */
.animate-in {
    animation: fadeInUp 0.8s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Lazy Loading */
.lazy {
    opacity: 0;
    transition: opacity 0.3s;
}

.lazy.loaded {
    opacity: 1;
}

/* Loading State */
.loading {
    position: relative;
    overflow: hidden;
}

.loading::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.4),
        transparent
    );
    animation: loading 1.5s infinite;
}

@keyframes loading {
    0% {
        left: -100%;
    }
    100% {
        left: 100%;
    }
}

/* Responsive Design */
@media (max-width: 1440px) {
    .container {
        max-width: 1200px;
    }

    .hero__title,
    .services__title {
        font-size: 60px;
    }
}

@media (max-width: 1200px) {
    .container {
        max-width: 960px;
    }

    .hero__inner {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .hero__video-wrapper {
        width: 100%;
        align-items: center;
    }

    .hero__video {
        width: 100%;
        max-width: var(--video-width);
        justify-self: center;
    }

    .services__content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .services__title {
        text-align: center;
    }

    .services__video-wrapper {
        width: 100%;
        align-items: center;
        order: -1; /* Видео всегда вверху на мобильных */
    }

    .services__video {
        width: 100%;
        max-width: var(--video-width);
        justify-self: center;
    }

    .services__description {
        text-align: center;
    }

    .faq__inner {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

@media (max-width: 992px) {
    .container {
        max-width: 720px;
    }

    .hero__title,
    .services__title {
        font-size: 50px;
    }

    .how-it-works__cards {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .footer__inner {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .when_you__content {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .when_you__benefits {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .when_you__extra {
        padding: 35px;
    }
}

@media (max-width: 768px) {
    .container {
        max-width: 540px;
        padding: 0 15px;
    }

    .footer__first-wrapper {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }

    .footer__socials {
        width: 100%;
        flex-wrap: wrap;
        gap: 10px;
    }

    .footer__socials-content {
        width: 100%;
    }

    .footer__social-container {
        width: 100%;
        justify-content: center;
    }

    .footer__socials-title {
        font-size: 14px;
    }

    .faq__inner {
        padding: 15px;
    }

    .faq__content {
        padding: 20px 15px;
    }

    .faq__chat {
        height: 150px;
        margin-bottom: 15px;
    }

    .faq__message {
        max-width: 90%;
    }

    .faq__message-bubble {
        font-size: 13px;
        padding: 10px;
    }

    .faq__step {
        padding: 8px 10px;
        gap: 8px;
    }

    .faq__buttons {
        flex-direction: column;
        align-items: center;
    }

    .faq__button {
        width: 100%;
        max-width: 300px;
        text-align: center;
    }

    .header__inner {
        flex-wrap: wrap;
        position: relative;
    }

    .header {
        height: auto;
        position: relative;
    }

    .header__logo-img {
        width: 250px;
        height: 49px;
    }

    .header__nav {
        order: 3;
        width: 100%;
        margin-left: 0;
        margin-top: 15px;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
    }

    .header__nav--active {
        max-height: 300px;
    }

    .header__nav-list {
        flex-direction: column;
        gap: 15px;
        padding: 15px 0;
        background-color: var(--white);
        border-radius: 8px;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    }

    .header__actions {
        margin-left: auto;
        gap: 10px;
        align-items: center;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .header__phone {
        display: none;
    }

    .header__auth {
        display: none;
    }

    .hero__title,
    .services__title {
        font-size: 40px;
    }

    .hero {
        padding: 40px 0;
    }

    .services {
        padding: 40px 0;
    }

    .how-it-works {
        padding: 40px 0;
    }

    .faq {
        padding: 40px 0;
    }

    .when_you {
        padding: 40px 0;
    }

    .when_you__title {
        font-size: 24px;
    }

    .when_you__benefit {
        padding: 20px;
    }

    .when_you__benefit-title {
        font-size: 16px;
    }

    .when_you__extra {
        padding: 25px;
    }

    .when_you__extra-title {
        font-size: 20px;
    }

    .when_you__extra-list li {
        font-size: 14px;
    }

    .when_you__btn {
        width: 100%;
        padding: 14px 20px;
        font-size: 16px;
    }

    .when_you__extra-footer {
        font-size: 16px;
    }

    .hero__video-wrapper,
    .services__video-wrapper {
        gap: 15px;
    }

    .hero__video,
    .services__video {
        height: 280px;
    }

    .hero__brands {
        gap: 10px;
        margin-bottom: 20px;
    }

    .hero__brand {
        height: 30px;
        width: 45px;
    }

    .faq__question {
        font-size: 16px;
        padding: 15px;
    }

    .faq__answer p,
    .faq__answer li {
        font-size: 16px;
    }
}

@media (max-width: 576px) {
    .container {
        max-width: 100%;
        padding: 0 15px;
    }

    .footer {
        padding: 40px 0 20px;
    }

    .footer__first-wrapper {
        flex-direction: column;
        align-items: center;
        gap: 20px;
        margin-bottom: 30px;
    }

    .footer__socials {
        width: 100%;
        justify-content: center;
        flex-wrap: wrap;
        gap: 12px;
    }

    .footer__socials-content {
        width: 100%;
        justify-content: center;
    }

    .footer__social-container {
        width: auto;
        padding: 4px 16px;
    }

    .footer__socials-title {
        font-size: 14px;
    }

    .footer__socials-icons {
        justify-content: center;
        flex-wrap: wrap;
        gap: 8px;
    }

    .footer__social-link {
        width: 36px;
        height: 36px;
    }

    .footer__social-icon {
        width: 20px;
        height: 20px;
    }

    .footer__inner {
        gap: 30px;
    }

    .footer__bottom {
        padding-top: 20px;
        justify-content: center;
    }

    .footer__copyright {
        align-items: center;
        text-align: center;
        max-width: 100%;
    }

    .hero__title,
    .services__title {
        font-size: 32px;
    }

    .how-it-works__title {
        font-size: 36px;
    }

    .hero__video-wrapper,
    .services__video-wrapper {
        gap: 10px;
    }

    .hero__video,
    .services__video {
        height: 220px;
    }

    .how-it-works__card {
        padding: 20px;
    }

    .hero__brands {
        gap: 8px;
        margin-bottom: 15px;
        flex-wrap: wrap;
    }

    .hero__brand {
        height: 25px;
        width: 40px;
    }

    .how-it-works__card-form {
        padding: 15px;
    }

    .how-it-works__card-offer {
        padding: 12px;
        gap: 8px;
    }

    .how-it-works__card-offer-img {
        width: 32px;
        height: 32px;
    }

    .how-it-works__card-offer-info {
        font-size: 12px;
    }

    .faq__inner {
        gap: 30px;
    }

    .when_you__content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .when_you__benefits {
        order: 2;
    }

    .when_you__extra {
        order: 1;
        padding: 30px;
    }

    .when_you__title {
        font-size: 20px;
        margin-bottom: 30px;
    }

    .when_you__benefit {
        padding: 15px;
    }

    .when_you__benefit-icon svg {
        width: 45px;
        height: 45px;
    }

    .when_you__benefit-title {
        font-size: 14px;
    }

    .when_you__extra {
        padding: 20px;
    }

    .when_you__extra-title {
        font-size: 18px;
        margin-bottom: 20px;
    }

    .when_you__extra-list li {
        font-size: 13px;
        margin-bottom: 12px;
    }

    .when_you__btn {
        padding: 12px 16px;
        font-size: 14px;
        margin-bottom: 20px;
    }

    .when_you__extra-footer {
        font-size: 14px;
    }
}

/* Legal Documents Page */
.legal-docs {
    padding: 80px 0;
}

.legal-docs__title {
    font-size: 48px;
    font-weight: var(--font-semibold);
    color: var(--dark-gray);
    margin-bottom: 50px;
    text-align: center;
}

.legal-docs__content {
    max-width: 900px;
    margin: 0 auto;
}

.legal-docs__list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.legal-docs__item {
    display: block;
    padding: 25px 30px;
    background: #ffffff;
    border: 1px solid #dcdcdc;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.legal-docs__item:hover {
    border-color: #d9042b;
    box-shadow: 0 4px 12px rgba(217, 4, 43, 0.1);
    transform: translateY(-2px);
}

.legal-docs__item-title {
    font-size: 20px;
    font-weight: var(--font-semibold);
    color: var(--dark-gray);
    margin: 0;
    transition: color 0.3s ease;
}

.legal-docs__item:hover .legal-docs__item-title {
    color: #d9042b;
}

.legal-docs__section {
    margin-bottom: 40px;
}

.legal-docs__section-title {
    font-size: 24px;
    font-weight: var(--font-semibold);
    color: var(--dark-gray);
    margin-bottom: 20px;
}

.legal-docs__text {
    font-size: 16px;
    line-height: 1.8;
    color: var(--dark-gray);
}

.legal-docs__text h2 {
    font-size: 20px;
    font-weight: var(--font-semibold);
    color: var(--dark-gray);
    margin-top: 30px;
    margin-bottom: 15px;
}

.legal-docs__text ul {
    margin: 15px 0;
    padding-left: 25px;
}

.legal-docs__text li {
    margin-bottom: 10px;
}

.legal-docs__text p {
    margin-bottom: 15px;
}

@media (max-width: 768px) {
    .legal-docs {
        padding: 40px 0;
    }

    .legal-docs__title {
        font-size: 32px;
        margin-bottom: 30px;
    }

    .legal-docs__item {
        padding: 20px 25px;
    }

    .legal-docs__item-title {
        font-size: 18px;
    }

    .legal-docs__section-title {
        font-size: 20px;
    }

    .legal-docs__text {
        font-size: 14px;
    }

    .legal-docs__text h2 {
        font-size: 18px;
    }
}

@media (max-width: 576px) {
    .legal-docs__title {
        font-size: 28px;
    }

    .legal-docs__text {
        font-size: 14px;
        line-height: 1.6;
    }
}

/* FAQ Page */
.faq-page {
    padding: 80px 0;
}

.faq-page__title {
    font-size: 48px;
    font-weight: var(--font-semibold);
    color: var(--dark-gray);
    margin-bottom: 20px;
    text-align: center;
}

.faq-page__subtitle {
    font-size: 18px;
    color: var(--dark-gray);
    text-align: center;
    margin-bottom: 30px;
    line-height: 1.6;
}

.faq-page__support {
    font-size: 16px;
    color: var(--dark-gray);
    text-align: center;
    margin-bottom: 50px;
    line-height: 1.6;
}

.faq-page__support-link {
    color: #d9042b;
    text-decoration: none;
    font-weight: var(--font-semibold);
    transition: color 0.3s ease;
}

.faq-page__support-link:hover {
    color: #b0031f;
    text-decoration: underline;
}

.faq-page__accordion {
    max-width: 900px;
    margin: 0 auto;
}

.faq-page__item {
    background: #ffffff;
    border: 1px solid #dcdcdc;
    border-radius: 8px;
    margin-bottom: 15px;
    transition: all 0.3s ease;
    overflow: hidden;
}

.faq-page__item:hover {
    border-color: #d9042b;
    box-shadow: 0 2px 8px rgba(217, 4, 43, 0.1);
}

.faq-page__question {
    padding: 20px 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    user-select: none;
}

.faq-page__question-text {
    font-size: 18px;
    font-weight: var(--font-semibold);
    color: var(--dark-gray);
    margin: 0;
    flex: 1;
    padding-right: 20px;
}

.faq-page__toggle {
    font-size: 24px;
    font-weight: 300;
    color: #8a8a8a;
    line-height: 1;
    transition: transform 0.3s ease, color 0.3s ease;
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.faq-page__item--open .faq-page__toggle {
    transform: rotate(45deg);
    color: #d9042b;
}

.faq-page__answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-page__item--open .faq-page__answer {
    max-height: 1000px;
}

.faq-page__answer p {
    padding: 0 25px 20px 25px;
    margin: 0;
    font-size: 16px;
    line-height: 1.6;
    color: var(--dark-gray);
    border-top: 1px solid #f0f0f0;
    margin-top: 0;
    padding-top: 20px;
}

.faq-page__item--open .faq-page__answer p {
    border-top-color: #e0e0e0;
}

@media (max-width: 768px) {
    .faq-page {
        padding: 40px 0;
    }

    .faq-page__title {
        font-size: 32px;
        margin-bottom: 15px;
    }

    .faq-page__subtitle {
        font-size: 16px;
        margin-bottom: 20px;
    }

    .faq-page__support {
        font-size: 14px;
        margin-bottom: 30px;
    }

    .faq-page__question {
        padding: 15px 20px;
    }

    .faq-page__question-text {
        font-size: 16px;
        padding-right: 15px;
    }

    .faq-page__toggle {
        font-size: 20px;
    }

    .faq-page__answer p {
        padding: 15px 20px 15px 20px;
        font-size: 14px;
    }
}

@media (max-width: 576px) {
    .faq-page__title {
        font-size: 28px;
    }

    .faq-page__question-text {
        font-size: 14px;
    }

    .faq-page__answer p {
        font-size: 14px;
        line-height: 1.5;
    }
}

/* Contacts Page */
.contacts {
    padding: 80px 0;
}

.contacts__title {
    font-size: 48px;
    font-weight: var(--font-semibold);
    color: var(--dark-gray);
    margin-bottom: 50px;
    text-align: center;
}

.contacts__content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
}

.contacts__info {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.contacts__info-section {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contacts__info-subtitle {
    font-size: 18px;
    font-weight: var(--font-semibold);
    color: var(--dark-gray);
    margin: 0;
}

.contacts__info-text {
    font-size: 16px;
    color: var(--dark-gray);
    line-height: 1.6;
    margin: 0;
}

.contacts__email {
    color: var(--primary-color);
    text-decoration: none;
    transition: var(--transition);
}

.contacts__email:hover {
    text-decoration: underline;
}

.contacts__form-block {
    background: #f5f5f5;
    border-radius: 12px;
    padding: 40px;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.contacts__form-text {
    font-size: 16px;
    color: var(--dark-gray);
    line-height: 1.6;
    margin: 0;
}

.contacts__form-btn {
    background: linear-gradient(
        180deg,
        rgba(255, 151, 153, 0.6) 0%,
        rgba(245, 5, 9, 0.6) 100%
    );
    border: none;
    border-radius: 12px;
    padding: 25px 40px;
    color: var(--white);
    font-size: 24px;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
    width: 100%;
}

.contacts__form-btn:hover {
    background: linear-gradient(
        180deg,
        rgba(255, 151, 153, 0.8) 0%,
        rgba(245, 5, 9, 0.8) 100%
    );
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(245, 5, 9, 0.3);
}

.contacts__form-btn-text {
    display: block;
    line-height: 1.2;
}

@media (max-width: 1024px) {
    .contacts__content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .contacts {
        padding: 40px 0;
    }

    .contacts__title {
        font-size: 36px;
        margin-bottom: 30px;
    }

    .contacts__form-block {
        padding: 30px;
    }

    .contacts__form-btn {
        padding: 20px 30px;
        font-size: 20px;
    }
}

@media (max-width: 576px) {
    .contacts__title {
        font-size: 28px;
    }

    .contacts__form-block {
        padding: 20px;
    }

    .contacts__form-btn {
        padding: 18px 20px;
        font-size: 18px;
    }
}

/* Модальное окно формы обратной связи */
.contacts-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    padding: 20px;
    box-sizing: border-box;
    overflow-y: auto;
}

.contacts-modal--hidden {
    display: none !important;
}

.contacts-modal__overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

.contacts-modal__content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: #ffffff;
    border-radius: 12px;
    max-width: 600px;
    width: calc(100% - 40px);
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.3);
    z-index: 2;
}

.contacts-modal__close {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 30px;
    height: 30px;
    border: none;
    background: transparent;
    font-size: 24px;
    color: #3e3e3e;
    cursor: pointer;
    z-index: 10;
    line-height: 1;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contacts-modal__close:hover {
    color: #d9042b;
}

@media (max-width: 768px) {
    .contacts-modal {
        padding: 15px;
    }

    .contacts-modal__content {
        width: calc(100% - 30px);
        max-width: 100%;
        max-height: 85vh;
    }

    .contacts-feedback__form {
        padding: 20px;
    }

    .contacts-feedback__textarea {
        min-height: 150px;
    }
}

@media (max-width: 576px) {
    .contacts-modal {
        padding: 10px;
    }

    .contacts-modal__content {
        width: calc(100% - 20px);
        max-height: 90vh;
        border-radius: 8px;
    }

    .contacts-modal__close {
        top: 8px;
        right: 8px;
        width: 28px;
        height: 28px;
        font-size: 20px;
    }

    .contacts-feedback__form {
        padding: 15px;
    }

    .contacts-feedback__header {
        font-size: 14px;
        margin-bottom: 15px;
    }

    .contacts-feedback__textarea {
        min-height: 120px;
        padding: 12px;
        font-size: 14px;
    }

    .contacts-feedback__submit {
        padding: 16px;
        font-size: 16px;
    }
}

/* About Page */
.about-page {
    padding: 80px 0;
}

.about-page__content {
    display: grid;
    grid-template-columns: 2px 1fr 2px;
    gap: 60px;
    align-items: start;
    max-width: 900px;
    margin: 0 auto;
}

.about-page__line {
    width: 2px;
    background: #000000;
    height: 100%;
    min-height: 200px;
}

.about-page__text {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.about-page__paragraph {
    font-family: 'Roboto', sans-serif;
    font-weight: 300;
    font-size: 22px;
    line-height: 126%;
    letter-spacing: 0;
    color: var(--dark-gray);
    margin: 0;
    text-align: justify;
}

@media (max-width: 1024px) {
    .about-page__content {
        gap: 40px;
        max-width: 800px;
    }
}

@media (max-width: 768px) {
    .about-page {
        padding: 40px 0;
    }

    .about-page__content {
        grid-template-columns: 1fr;
        gap: 30px;
        max-width: 100%;
    }

    .about-page__line {
        display: none;
    }

    .about-page__paragraph {
        font-size: 18px;
        line-height: 126%;
        text-align: left;
    }
}

@media (max-width: 576px) {
    .about-page {
        padding: 30px 0;
    }

    .about-page__text {
        gap: 20px;
    }

    .about-page__paragraph {
        font-size: 16px;
        line-height: 126%;
    }
}

/* Breadcrumbs */
.zakargon-breadcrumb {
    background-color: #404040;
    height: 47px;
    display: flex;
    align-items: center;
}

.zakargon-breadcrumb-inner {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

.zakargon-breadcrumb-item {
    display: inline-flex;
    align-items: center;
}

.zakargon-breadcrumb-link,
.zakargon-breadcrumb-current,
.zakargon-breadcrumb-item span {
    font-family: 'Roboto', sans-serif;
    font-weight: 300;
    font-size: 20px;
    line-height: 126%;
    color: #ffffff;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.zakargon-breadcrumb-link {
    color: #ffffff;
    border-bottom: none;
}

.zakargon-breadcrumb-link:hover {
    opacity: 0.8;
}

.zakargon-breadcrumb-separator {
    font-family: 'Roboto', sans-serif;
    font-weight: 300;
    font-size: 20px;
    color: #ffffff;
    margin: 0 8px;
}

.zakargon-breadcrumb-current {
    opacity: 0.7;
}

@media (max-width: 768px) {
    .zakargon-breadcrumb {
        height: 40px;
    }

    .zakargon-breadcrumb-link,
    .zakargon-breadcrumb-current,
    .zakargon-breadcrumb-separator,
    .zakargon-breadcrumb-item span {
        font-size: 16px;
    }

    .zakargon-breadcrumb-inner {
        gap: 8px;
    }

    .zakargon-breadcrumb-separator {
        margin: 0 6px;
    }
}

@media (max-width: 576px) {
    .zakargon-breadcrumb {
        height: 35px;
    }

    .zakargon-breadcrumb-link,
    .zakargon-breadcrumb-current,
    .zakargon-breadcrumb-separator,
    .zakargon-breadcrumb-item span {
        font-size: 14px;
    }

    .zakargon-breadcrumb-inner {
        gap: 5px;
    }

    .zakargon-breadcrumb-separator {
        margin: 0 4px;
    }
}

/* End */
/* /local/templates/zakargon/styles.css?177314415545282 */
