/* Страница audit-koda.html */

body.audit-koda-page {
    background-color: #ffffff;
    overflow-x: clip;
    width: 100%;
    max-width: 100%;
}

main.article-page.audit-koda-page {
    background-color: #ffffff;
    width: 100%;
    max-width: 100%;
    min-width: 0;
    box-sizing: border-box;
}

@media (max-width: 900px) {
    main.article-page.audit-koda-page {
        display: flex;
        flex-direction: column;
        gap: 70px;
    }
}

@media (min-width: 901px) {
    main.article-page.audit-koda-page {
        display: flex;
        flex-direction: column;
        gap: 100px;
    }

    main.article-page.audit-koda-page > section.audit-koda-contact {
        margin-top: 0;
        padding: 0 20px 40px !important;
    }
}

/* Главная секция: контейнер 1200px; слева колонка растёт, справа фикс 500px; без зазора между ними */
.audit-koda-lead {
    background: #ffffff;
    overflow-x: clip;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

.audit-koda-lead__inner {
    max-width: 1200px;
    width: 100%;
    min-width: 0;
    margin: 0 auto;
    padding: 80px 20px 0px;
    box-sizing: border-box;
}

@media (max-width: 1239px) {
    .audit-koda-lead__inner {
        padding-left: 20px;
        padding-right: 20px;
    }
}

/* Десктоп: сетка строки — плашка и кнопка в левой колонке, картинка справа на две строки (stage с display:contents) */
.audit-koda-lead__row {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(140px, 500px);
    grid-template-rows: auto auto;
    column-gap: 0;
    row-gap: 28px;
    align-items: flex-end;
    width: 100%;
    min-width: 0;
    box-sizing: border-box;
}

.audit-koda-lead__stage {
    display: contents;
}

.audit-koda-lead__card {
    grid-column: 1;
    grid-row: 1;
    background: #f3f3f3;
    border-radius: 30px 0 0 30px;
    padding: clamp(32px, 4vw, 56px) 32px;
    width: 100%;
    box-sizing: border-box;
}

.audit-koda-lead__card h1 {
    font-family: 'Gilroy', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: clamp(28px, 2.6vw, 42px);
    font-weight: 600;
    line-height: 1.2;
    color: #333333;
    margin: 0 0 18px;
    text-transform: uppercase;
}

.audit-koda-lead__card p {
    font-size: 18px;
    line-height: 1.6;
    color: #333333;
    margin: 0;
}

.audit-koda-lead__cta {
    grid-column: 1;
    grid-row: 2;
    justify-self: start;
    align-self: start;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 32px;
    border-radius: 50px;
    background-color: #FF6B00;
    color: #ffffff;
    font-size: 16px;
    font-weight: 600;
    font-family: inherit;
    text-decoration: none;
    transition: background-color 0.25s ease, transform 0.15s ease;
    flex-shrink: 0;
}

.audit-koda-lead__cta:hover {
    background-color: #e05a00;
    color: #ffffff;
    transform: translateY(-1px);
}

.audit-koda-lead__cta:active {
    transform: translateY(1px);
}

/* Правая колонка сетки — до 500px по ширине столбца */
.audit-koda-lead__figure {
    grid-column: 2;
    grid-row: 1 / span 2;
    align-self: center;
    width: 100%;
    min-width: 0;
    margin: 0;
    line-height: 0;
    box-sizing: border-box;
}

.audit-koda-lead__img {
    width: 100%;
    height: auto;
    max-width: 100%;
    display: block;
    object-fit: contain;
}

/* Узкий экран: картинка на фоне блока, стеклянная плашка снизу, кнопка под блоком */
@media (max-width: 780px) {

    .audit-koda-lead__row {
        display: flex;
        flex-direction: column;
        align-items: stretch;
        gap: 20px;
    }

    .audit-koda-lead__stage {
        display: flex;
        flex-direction: column;
        align-items: stretch;
        position: relative;
        border-radius: 24px;
        overflow: hidden;
    }

    /* Высота блока = полная высота картинки (без кропа и без принудительного aspect-ratio) */
    .audit-koda-lead__figure {
        display: block;
        grid-column: auto;
        grid-row: auto;
        align-self: stretch;
        width: 100%;
        max-width: none;
        margin: 0;
        flex: 0 0 auto;
        height: auto;
        line-height: 0;
    }

    .audit-koda-lead__img {
        width: 100%;
        height: auto;
        max-width: 100%;
        display: block;
    }

    .audit-koda-lead__card {
        position: absolute;
        left: 0;
        right: 0;
        bottom: 0;
        grid-column: auto;
        grid-row: auto;
        z-index: 1;
        border-radius: 0 0 20px 20px;
        background: rgba(92, 76, 68, 0.78);
        backdrop-filter: blur(14px);
        -webkit-backdrop-filter: blur(14px);
        padding: 16px;
    }

    .audit-koda-lead__card h1 {
        color: #ffffff;
        margin-bottom: 12px;
        font-size: 32px;
    }

    .audit-koda-lead__card p {
        color: rgba(255, 255, 255, 0.92);
        font-size: 18px;
        line-height: 1.4;
    }

    .audit-koda-lead__cta {
        grid-column: auto;
        grid-row: auto;
        position: relative;
        z-index: 2;
        align-self: flex-start;
        width: auto;
        max-width: 100%;
        box-sizing: border-box;
        padding-left: 28px;
        padding-right: 28px;
    }
}

@media (max-width: 450px) {
    .audit-koda-lead__card h1 {
        color: #ffffff;
        margin-bottom: 8px;
        font-size: 26px;
    }

    .audit-koda-lead__card p {
        font-size: 14px;
    }
}

/* ==== Секции «Для кого», «Что получите», «Как работаем», «Технологии» — как product-sites.css ==== */
.for-whom-section {
    background: #ffffff;
}
.for-whom-section__container {
    max-width: 1200px;
    padding: 0 20px;
    margin: 0 auto;
    box-sizing: border-box;
    width: 100%;
    min-width: 0;
}
.for-whom-section__title {
    font-size: 36px;
    font-weight: 400;
    color: #333333;
    margin: 0 0 48px;
    line-height: 1.2;
    text-transform: uppercase;
}
.for-whom-section__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    min-width: 0;
}
.for-whom-section__card {
    background: #ffffff;
    border-radius: 16px;
    padding: 32px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    border: 1px solid #e5e5e5;
    min-width: 0;
    overflow-wrap: break-word;
}
.for-whom-section__card-icon {
    font-size: 32px;
    font-weight: 600;
    color: #333333;
    line-height: 1;
}
.for-whom-section__card-title {
    font-size: 18px;
    font-weight: 500;
    color: #333333;
    margin: 0;
    line-height: 1.2;
}
.for-whom-section__card-text {
    font-size: 14px;
    color: #666666;
    line-height: 1.6;
    margin: 0;
}
@media (max-width: 1200px) {
    .for-whom-section__grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 1024px) {
    .for-whom-section__grid { grid-template-columns: repeat(2, 1fr); }
    .for-whom-section__title { font-size: 30px; }
}
@media (max-width: 600px) {
    .for-whom-section__grid { grid-template-columns: 1fr; }
    .for-whom-section__title { font-size: 24px; margin-bottom: 24px;}
}

.results-section {
    padding: 30px 0;
    background: #2a2a2a;
}
.results-section__container {
    max-width: 1200px;
    padding: 0 20px;
    margin: 0 auto;
}
.results-section__title {
    font-size: 36px;
    font-weight: 400;
    color: #ffffff;
    margin: 0 0 48px;
    line-height: 1.2;
    text-transform: uppercase;
}
.results-section__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.results-section__item {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 32px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    border: 1px solid rgba(255, 255, 255, 0.08);
}
.results-section__item-title {
    font-size: 18px;
    font-weight: 600;
    color: #ffffff;
    line-height: 1.3;
    margin: 0;
}
.results-section__text {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.6;
    margin: 0;
}
@media (max-width: 1024px) {
    .results-section__grid { grid-template-columns: repeat(2, 1fr); }
    .results-section__title { font-size: 30px; }
}
@media (max-width: 600px) {
    .results-section { padding: 30px 0px; }
    .results-section__grid { grid-template-columns: 1fr; }
    .results-section__title { font-size: 24px; margin-bottom: 24px;}
    .results-section__item-title { font-size: 17px; }
}

.pt-process {
    margin: 0;
    background: #ffffff;
}

.pt-process__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    box-sizing: border-box;
}

.pt-process__title {
    font-size: 36px;
    font-weight: 700;
    color: #333333;
    text-transform: uppercase;
    letter-spacing: -0.5px;
    margin: 0 0 48px;
    line-height: 1.2;
}

.pt-process__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.pt-process__card {
    position: relative;
    background: #f5f5f5;
    border-radius: 16px;
    padding: 24px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.pt-process__num {
    position: absolute;
    top: -8px;
    right: 12px;
    font-size: 96px;
    font-weight: 800;
    line-height: 1;
    color: #e8e8e8;
    letter-spacing: -4px;
    user-select: none;
    pointer-events: none;
}

.pt-process__name {
    font-size: 18px;
    font-weight: 700;
    color: #333333;
    margin: 0;
    line-height: 1.3;
    padding-top: 56px;
    position: relative;
    z-index: 1;
}

.pt-process__desc {
    font-size: 16px;
    line-height: 1.65;
    color: #666666;
    margin: 0;
    position: relative;
    z-index: 1;
}

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

@media (max-width: 600px) {

    .pt-process__title {
        font-size: 26px;
        margin-bottom: 24px;
    }

    .pt-process__grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .pt-process__num {
        font-size: 80px;
    }

    .pt-process__name {
        font-size: 17px;
        padding-top: 48px;
    }
}

.tech-section {
    background: #ffffff;
}
.tech-section__container {
    max-width: 1200px;
    padding: 0 20px;
    margin: 0 auto;
}
.tech-section__title {
    font-size: 36px;
    font-weight: 400;
    color: #333333;
    margin: 0 0 48px;
    line-height: 1.2;
    text-transform: uppercase;
}
.tech-section__categories {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}
.tech-section__category {
    background: #ffffff;
    border-radius: 16px;
    padding: 28px;
    border: 1px solid #e5e5e5;
    display: flex;
    flex-direction: column;
    gap: 14px;
    align-items: flex-start;
}
.tech-section__category-title {
    font-size: 14px;
    font-weight: 500;
    color: #ffffff;
    border-radius: 100px;
    padding: 8px 18px;
    display: inline-block;
    line-height: 1.6;
}
.tech-section__category:first-child .tech-section__category-title {
    background: #FF6B00;
    color: #ffffff;
}
.tech-section__category:not(:first-child) .tech-section__category-title {
    color: #333333;
    background: #f5f5f5;
}
.tech-section__items {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0;
}
.tech-section__item {
    font-size: 15px;
    color: #333333;
}
.tech-section__item + .tech-section__item::before {
    content: '•';
    color: #cccccc;
    margin: 0 10px;
}
@media (max-width: 900px) {
    .tech-section__categories { grid-template-columns: 1fr; }
    .tech-section__title { font-size: 30px; }
}
@media (max-width: 600px) {
    .tech-section { padding: 0px 0px 10px; }
    .tech-section__title { font-size: 24px; margin-bottom: 24px;}
}

/* Форма обратной связи — как audit-ux-ui.html / product-template.html */
section.audit-koda-contact.contact-form {
    margin-top: 0;
    padding: 80px 20px 40px 20px;
    background: #f9f9f9;
}

section.audit-koda-contact .contact-form__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px 0 20px;
}

section.audit-koda-contact .contact-form__content {
    display: flex;
    flex-direction: row;
    align-items: stretch;
    justify-content: space-between;
    gap: 40px;
    background-color: transparent;
    border-radius: 0;
    padding: 0;
}

section.audit-koda-contact .contact-form__content::before {
    display: none;
}

section.audit-koda-contact .contact-form__left {
    flex: 0 0 50%;
    padding: 64px 32px;
    background-color: #fff;
    border-radius: 24px;
    margin-bottom: 5px;
    position: static;
    z-index: auto;
    max-width: none;
    display: flex;
    flex-direction: column;
    min-height: 420px;
}

section.audit-koda-contact .contact-form__right {
    flex: 1;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    position: static;
    z-index: auto;
}

section.audit-koda-contact .phone-image-container {
    max-width: 100%;
}

section.audit-koda-contact .phone-image {
    width: 100%;
    max-width: 520px;
    height: auto;
    object-fit: contain;
    border-radius: 0;
}

section.audit-koda-contact .contact-form__title {
    font-size: 28px;
    font-weight: 500;
    line-height: 1.2;
    text-transform: uppercase;
    color: #333333;
    margin: 0 0 20px;
}

section.audit-koda-contact .contact-form__form {
    display: flex;
    flex-direction: column;
    width: 100%;
    flex: 1;
}

section.audit-koda-contact .form-group {
    width: 100%;
    margin-bottom: 24px;
    position: relative;
}

section.audit-koda-contact .form-input {
    width: 100%;
    padding: 12px 0;
    border: none;
    border-bottom: 1px solid #333333;
    border-radius: 0;
    font-size: 16px;
    font-family: inherit;
    outline: none;
    background-color: transparent;
    font-weight: 400;
    line-height: 1.6;
    color: #333333;
    transition: border-color 0.3s ease;
    margin-bottom: 0;
}

section.audit-koda-contact .form-input:focus {
    border-bottom-color: #FF6B00;
    box-shadow: none;
}

section.audit-koda-contact .form-input::placeholder {
    color: #999;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

section.audit-koda-contact .form-input:focus::placeholder {
    opacity: 0.7;
    transform: translateY(-10px);
}

section.audit-koda-contact .checkbox-container input[type="checkbox"] {
    position: absolute;
    opacity: 0;
    height: 0;
    width: 0;
}

section.audit-koda-contact .checkmark {
    position: relative;
    flex-shrink: 0;
    display: inline-block;
    width: 20px;
    height: 20px;
    background-color: #fff;
    border: 1px solid #E0E0E0;
    border-radius: 4px;
    top: auto;
    left: auto;
}

section.audit-koda-contact .checkbox-container:hover input[type="checkbox"] ~ .checkmark {
    border-color: #FF6B00;
}

section.audit-koda-contact .checkbox-container input[type="checkbox"]:checked ~ .checkmark {
    background-color: #FF6B00;
    border-color: #FF6B00;
}

section.audit-koda-contact .checkmark::after {
    content: "";
    position: absolute;
    display: none;
    left: 6px;
    top: 2px;
    width: 5px;
    height: 10px;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

section.audit-koda-contact .checkbox-container input[type="checkbox"]:checked ~ .checkmark::after {
    display: block;
}

section.audit-koda-contact .checkbox-text {
    font-size: 14px;
    line-height: 1.4;
    color: #666;
}

section.audit-koda-contact .checkbox-container {
    display: flex;
    align-items: center;
    position: relative;
    font-size: 14px;
    color: #666;
    line-height: 1.4;
    padding: 16px 0;
    gap: 8px;
    margin-top: auto;
    cursor: pointer;
}

section.audit-koda-contact .privacy-link {
    color: #FF6B00;
    text-decoration: none;
}

section.audit-koda-contact .privacy-link:hover {
    text-decoration: underline;
}

section.audit-koda-contact .submit-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    align-self: flex-start;
    padding: 14px 36px;
    border-radius: 999px;
    background-color: #FF6B00;
    color: #fff;
    font-size: 16px;
    font-family: inherit;
    width: auto;
    height: auto;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

section.audit-koda-contact .submit-button:hover {
    background-color: #E05F00;
}

section.audit-koda-contact .submit-button:disabled {
    opacity: 0.7;
    cursor: default;
}

@media (max-width: 992px) and (min-width: 769px) {
    section.audit-koda-contact .contact-form__content {
        flex-direction: row;
        align-items: stretch;
    }

    section.audit-koda-contact .contact-form__left {
        max-width: none;
    }

    section.audit-koda-contact .contact-form__right {
        display: flex;
    }
}

@media (max-width: 1024px) {
    section.audit-koda-contact .phone-image {
        max-width: 420px;
    }
}

@media (max-width: 900px) {
    section.audit-koda-contact .phone-image {
        max-width: 320px;
    }

    section.audit-koda-contact .contact-form__left {
        flex: 0 0 55%;
    }
}

@media (max-width: 768px) {
    section.audit-koda-contact.contact-form {
        padding: 30px 0 50px;
    }

    section.audit-koda-contact .contact-form__content {
        flex-direction: column;
        gap: 24px;
        background-color: transparent;
        padding: 0;
    }

    section.audit-koda-contact .contact-form__left {
        flex: none;
        width: 100%;
        padding: 24px 20px;
    }

    section.audit-koda-contact .contact-form__right {
        display: none;
    }

    section.audit-koda-contact .contact-form__title {
        font-size: 24px;
        margin-bottom: 25px;
    }

    section.audit-koda-contact .form-input {
        font-size: 14px;
    }

    section.audit-koda-contact .submit-button {
        font-size: 14px;
        padding: 12px 24px;
        width: 100%;
    }
}

/* Секция «Стоимость» — как audit-ux-ui.css (.audit-pricing) */
.audit-pricing {
    margin-top: 0;
    padding: 0;
    background: #ffffff;
}

.audit-pricing__container {
    max-width: 1200px;
    margin: 0 auto;
    padding-left: 20px;
    padding-right: 20px;
    box-sizing: border-box;
}

.audit-pricing__card {
    background: #f2f2f2;
    border-radius: 24px;
    padding: 48px;
    display: grid;
    grid-template-columns: 1fr auto;
    grid-template-rows: auto auto;
    grid-template-areas:
        "left  right"
        "links right";
    column-gap: 40px;
}

.audit-pricing__left {
    grid-area: left;
    min-width: 0;
    align-self: end;
}

.audit-pricing__title {
    font-size: 36px;
    font-weight: 700;
    color: #333333;
    margin: 0 0 20px;
    line-height: 1.2;
    text-transform: uppercase;
}

.audit-pricing__text {
    font-size: 16px;
    color: #666666;
    line-height: 1.5;
    margin: 0;
}

.audit-pricing__right {
    grid-area: right;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    justify-content: center;
}

.audit-pricing__price {
    font-size: 42px;
    font-weight: 500;
    color: #FF6B00;
    line-height: 1;
    white-space: nowrap;
}

.audit-pricing__links {
    grid-area: links;
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    align-self: start;
    margin-top: 28px;
}

.audit-pricing__link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 36px;
    border-radius: 999px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    transition: background 0.25s ease, color 0.25s ease, transform 0.15s ease;
}

.audit-pricing__link--primary {
    background: #000000;
    color: #ffffff;
}

.audit-pricing__link--primary:hover {
    background: #333333;
    transform: translateY(-1px);
}

.audit-pricing__link--secondary {
    background: #ffffff;
    color: #FF6B00;
    border: 1px solid #FF6B00;
}

.audit-pricing__link--secondary:hover {
    background: #FF6B00;
    color: #ffffff;
}

@media (max-width: 1024px) {
    .audit-pricing__card {
        grid-template-columns: 1fr;
        grid-template-areas:
            "left"
            "right"
            "links";
        padding: 40px;
    }

    .audit-pricing__right {
        align-items: flex-start;
    }

    .audit-pricing__price {
        margin-top: 20px;
    }

    .audit-pricing__links {
        margin-top: 16px;
    }
}

@media (max-width: 600px) {

    .audit-pricing__card {
        padding: 24px;
        border-radius: 20px;
        row-gap: 0;
    }

    .audit-pricing__title {
        font-size: 26px;
        margin-bottom: 12px;
    }

    .audit-pricing__text {
        font-size: 16px;
        line-height: 1.5;
    }

    .audit-pricing__price {
        font-size: 30px;
        margin-top: 16px;
    }

    .audit-pricing__links {
        flex-direction: column;
        align-items: stretch;
        margin-top: 20px;
    }

    .audit-pricing__link {
        text-align: center;
    }
}

/* Секция FAQ — как audit-ux-ui.html */
.audit-koda-page .faq-section {
    background: #ffffff;
    overflow: hidden;
    position: relative;
    z-index: 10;
    max-width: 1200px;
    margin: 0 auto;
}

.audit-koda-page .faq-section__container {
    max-width: 1240px;
    width: 100%;
    margin: 0 auto;
    padding: 0 20px;
    box-sizing: border-box;
}

.audit-koda-page .faq-section__title {
    font-size: 36px;
    color: #000000;
    margin-bottom: 48px;
    text-transform: uppercase;
    letter-spacing: 0.02em;
    font-weight: 400;
    line-height: 1.2;
}

.audit-koda-page .faq-section__list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0 40px;
}

.audit-koda-page .faq-section__item {
    background: transparent;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    padding-bottom: 10px;
    transition: border-color 0.3s ease, color 0.3s ease;
}

.audit-koda-page .faq-section__item.active {
    border-bottom-color: #FF6B00;
}

.audit-koda-page .faq-section__question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 0;
    cursor: pointer;
    position: relative;
}

.audit-koda-page .faq-section__question span {
    font-size: 20px;
    font-weight: 500;
    color: #000000;
    padding-right: 40px;
    letter-spacing: 0.01em;
    transition: color 0.3s ease;
}

.audit-koda-page .faq-section__item.active .faq-section__question span {
    color: #FF6B00;
}

.audit-koda-page .faq-section__icon {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
    position: relative;
}

.audit-koda-page .faq-section__icon::before,
.audit-koda-page .faq-section__icon::after {
    content: '';
    position: absolute;
    background: #000000;
    transition: background 0.3s ease, transform 0.3s ease, opacity 0.3s ease;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.audit-koda-page .faq-section__icon::before {
    width: 14px;
    height: 1.5px;
}

.audit-koda-page .faq-section__icon::after {
    width: 1.5px;
    height: 14px;
}

.audit-koda-page .faq-section__item.active .faq-section__icon::before,
.audit-koda-page .faq-section__item.active .faq-section__icon::after {
    background: #FF6B00;
}

.audit-koda-page .faq-section__item.active .faq-section__icon::after {
    transform: translate(-50%, -50%) rotate(90deg);
    opacity: 0;
}

.audit-koda-page .faq-section__answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease, opacity 0.5s ease, visibility 0.5s ease;
    opacity: 0;
    visibility: hidden;
}

.audit-koda-page .faq-section__item.active .faq-section__answer {
    max-height: 1000px;
    padding: 0 0 24px;
    opacity: 1;
    visibility: visible;
}

.audit-koda-page .faq-section__answer p {
    font-size: 16px;
    line-height: 1.6;
    color: #666666;
    margin: 0;
    padding-right: 20px;
}

.audit-koda-page .faq-section__answer a {
    color: #FF6B00;
}

@media (max-width: 900px) {
    .audit-koda-page .faq-section__list {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .audit-koda-page .faq-section__title {
        font-size: 30px;
    }

    .audit-koda-page .faq-section__question span {
        font-size: 17px;
    }
}

@media (max-width: 600px) {
    .audit-koda-page .faq-section {
        padding: 0 20px;
    }

    .audit-koda-page .faq-section__title {
        font-size: 24px;
        margin-bottom: 24px;
    }

    .audit-koda-page .faq-section__container {
        padding: 0;
    }

}
