/*
 * index.css — shared component styles, loaded by all pages.
 *
 * Sections:
 *   1. Reset / utilities
 *   2. Header / nav
 *   3. Hero
 *   4. Hero text wrappers
 *   5. Problem / solution
 *   6. Sections (features / reviews / faq) layout
 *   7. FAQ accordion
 *   8. Footer region & footer
 *   9. Buttons (nav CTA, primary CTA, nav link text)
 *   10. SEO / accessibility (skip-link)
 */

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   1. RESET / UTILITIES
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.efiros-home .site-nav__list, .efiros-home .site-footer__nav-list, .efiros-home .faq__list, .efiros-home .benefit-grid {
    list-style: none;
    margin: 0;
    padding: 0;
}

.efiros-home main {
    display: block;
}

/* Section heading defaults — h2/h3 inherit nothing odd from UA */
.efiros-home .benefit-title, .efiros-home .benefit-body, .efiros-home .faq__question {
    margin: 0;
}

/* Typography for semantic elements that replaced div>p wrappers */
.efiros-home .benefit-title {
    font-family: 'Poppins', sans-serif;
    font-size: 22px;
    font-weight: 600;
    letter-spacing: -0.01em;
    line-height: 130%;
    color: #09112e;
}
.efiros-home .benefit-body {
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 150%;
    color: #09112e;
}

/* FAQ question font now lives on .faq__question directly (was on wrapper p) */
.efiros-home .faq__question {
    font-family: 'Poppins', sans-serif;
    font-size: 22px;
    font-weight: 600;
    letter-spacing: -0.01em;
    line-height: 130%;
    color: #09112e;
    flex: 1 1 auto;
    padding-right: 16px;
}

/* Accordion header needs flex + cursor; was previously inline-styled */
.efiros-home .accordion-header {
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

/* Feature section typography */
.efiros-home .feature-title,
.efiros-home .feature-title p {
    font-family: 'Poppins', sans-serif;
    font-size: 32px;
    font-weight: 600;
    letter-spacing: -0.01em;
    line-height: 120%;
    color: #09112e;
    margin: 0;
}
.efiros-home .feature-body,
.efiros-home .feature-body p {
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 150%;
    color: #09112e;
    margin: 0;
}

/* Problem / solution card typography */
.efiros-home .ps-title,
.efiros-home .ps-title p {
    font-family: 'Poppins', sans-serif;
    font-size: 28px;
    font-weight: 600;
    letter-spacing: -0.01em;
    line-height: 116%;
    text-align: center;
    color: #09112e;
    margin: 0;
}
.efiros-home .ps-item-text,
.efiros-home .ps-item-text p {
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 150%;
    color: #09112e;
    margin: 0;
}

/* FAQ accordion answer text */
.efiros-home .accordion-content p {
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 150%;
    color: #09112e;
    margin: 0;
}

/* Accordion item separator (replaces removed .accordion-divider divs) */
.efiros-home .faq__list .accordion-item + .accordion-item {
    border-top: 1px solid rgba(9, 17, 46, 0.15);
    padding-top: 24px;
    margin-top: 0;
}

.skip-link {
    position: absolute;
    left: -10000px;
    top: auto;
    width: 1px;
    height: 1px;
    overflow: hidden;
    z-index: 10000;
}
.skip-link:focus {
    position: fixed;
    left: 16px;
    top: 16px;
    width: auto;
    height: auto;
    padding: 12px 20px;
    background: #09112e;
    color: #fff;
    border-radius: 8px;
    font: 500 14px/1.2 'Poppins', sans-serif;
    text-decoration: none;
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   2. HEADER / NAV
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */

/* The <header> is a wrapper landmark only; nav itself is positioned. */
.efiros-home .site-header {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 10;
}

.efiros-home .site-nav {
    border-radius: 4px;
    display: flex;
    flex-flow: row;
    place-content: center space-between;
    align-items: center;
    width: 1440px;
    max-width: 100%;
    height: min-content;
    padding: 12px 72px;
    position: relative;
    margin: 0 auto;
    overflow: visible;
    box-sizing: border-box;
}

.efiros-home .site-nav__logo {
    flex: none;
    width: 178px;
    height: 26px;
    display: block;
    text-decoration: none;
    position: relative;
}

.efiros-home .site-nav__logo img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: contain;
}

.efiros-home .site-nav__list {
    margin: 0;
    padding: 0;
    display: flex;
    flex-flow: row;
    place-content: center flex-start;
    align-items: center;
    gap: 40px;
    height: 16px;
    position: relative;
    overflow: visible;
    flex: none;
}

/* Nav "Get access" button */
.efiros-home .site-nav__cta {
    background: transparent;
    border: 1.5px solid #09112e;
    border-radius: 8px;
    flex: none;
    display: flex;
    flex-flow: row;
    place-content: center;
    align-items: center;
    gap: 8px;
    height: 36px;
    padding: 0 24px;
    overflow: hidden;
    color: #09112e;
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: -0.01em;
    line-height: 120%;
    cursor: pointer;
    white-space: nowrap;
    text-decoration: none;
    position: relative;
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   3. HERO
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.efiros-home .page-wrap {
    background-color: #fff;
    display: flex;
    flex-flow: column;
    place-content: flex-start;
    align-items: flex-start;
    gap: 0;
    width: 1440px;
    max-width: 100%;
    height: min-content;
    padding: 0;
    position: relative;
    overflow: visible;
    margin: 0 auto;
}

.efiros-home .hero {
    background-color: #e6f2fb;
    flex: none;
    gap: 0;
    width: 1440px;
    max-width: 100%;
    height: 678px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 0 0 100vmax #e6f2fb;
    clip-path: inset(0 -100vmax);
    box-sizing: border-box;
}

.efiros-home .hero__content {
    flex-flow: column;
    flex: none;
    place-content: flex-start;
    align-items: flex-start;
    gap: 40px;
    width: min-content;
    height: min-content;
    padding: 0;
    display: flex;
    position: absolute;
    top: 172px;
    left: 72px;
    overflow: visible;
}

.efiros-home .hero__copy {
    flex-flow: column;
    flex: none;
    place-content: flex-start;
    align-items: flex-start;
    gap: 24px;
    width: min-content;
    height: min-content;
    padding: 0;
    display: flex;
    position: relative;
    overflow: visible;
}

.efiros-home .hero-title-break { display: none; }

/* h1 inside .hero__title */
.efiros-home .hero__title {
    margin: 0;
    width: 511px;
    max-width: 100%;
    height: auto;
    position: relative;
    font-family: 'Poppins', sans-serif;
    font-size: 64px;
    font-weight: 600;
    letter-spacing: -0.01em;
    line-height: 108%;
    color: #09112e;
    white-space: pre-wrap;
    word-break: break-word;
}

/* p inside .hero__body */
.efiros-home .hero__body {
    margin: 0;
    width: 443px;
    max-width: 100%;
    height: auto;
    position: relative;
    font-family: 'Poppins', sans-serif;
    font-size: 18px;
    font-weight: 400;
    line-height: 160%;
    color: #09112e;
    white-space: pre-wrap;
    word-break: break-word;
}

/* Hero demo container */
.efiros-home .hero__demo {
    flex: none;
    width: 800px;
    height: 533px;
    position: absolute;
    top: 145px;
    left: 640px;
    margin: 0;
}

#demo-container {
    display: flex;
    justify-content: center;
    align-items: flex-start;
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   4. PROBLEM / SOLUTION
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.efiros-home .problem-solution {
    background-color: #fafafa;
    display: flex;
    flex-flow: column;
    place-content: center flex-start;
    align-items: center;
    gap: 56px;
    width: 100%;
    height: min-content;
    padding: 100px 72px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 0 0 100vmax #fafafa;
    clip-path: inset(0 -100vmax);
    box-sizing: border-box;
}

.efiros-home .sb-vs__caption-break { display: none; }
.efiros-home .features-title-break { display: inline; }
.efiros-home .surv-h2-break { display: none; }
.efiros-home .agents-how-desc-break { display: none; }

.efiros-home .problem-solution__title {
    margin: 0;
    width: 611px;
    max-width: 100%;
    height: auto;
    position: relative;
    font-family: 'Poppins', sans-serif;
    font-size: 60px;
    font-weight: 600;
    letter-spacing: -0.01em;
    line-height: 100%;
    text-align: center;
    color: #09112e;
    white-space: pre-wrap;
    word-break: break-word;
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   5. FEATURES / FAQ section layout (carry-over from earlier)
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.efiros-home #features {
    background-color: #e7f3fb;
    display: flex;
    flex-flow: column;
    place-content: center;
    align-items: center;
    gap: 72px;
    width: 100%;
    height: min-content;
    padding: 100px 170px;
    position: relative;
    overflow: visible;
    box-sizing: border-box;
    box-shadow: 0 0 0 100vmax #e7f3fb;
    clip-path: inset(0 -100vmax);
}

.efiros-home #faq {
    display: flex;
    flex-flow: column;
    place-content: center flex-start;
    align-items: center;
    gap: 56px;
    width: 100%;
    height: min-content;
    padding: 56px 0 80px;
    position: relative;
    overflow: visible;
    box-sizing: border-box;
}

.efiros-home #features .section-title, .efiros-home #faq .section-title {
    margin: 0;
    width: 100%;
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   6. FAQ ACCORDION
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.efiros-home .faq__list {
    margin: 0;
    padding: 0;
    display: flex;
    flex-flow: column;
    place-content: center flex-start;
    align-items: center;
    gap: 24px;
    width: 854px;
    max-width: 100%;
    height: min-content;
    position: relative;
    overflow: visible;
    flex: none;
}

.efiros-home .faq__question {
    margin: 0;
    flex: 1 1 auto;
    width: auto;
    max-width: none;
    min-width: 0;
    padding-right: 16px;
    font-family: 'Poppins', sans-serif;
    font-size: 22px;
    font-weight: 600;
    letter-spacing: -0.01em;
    line-height: 130%;
    color: #09112e;
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   7. FOOTER REGION & FOOTER
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.efiros-home .footer-region {
    display: flex;
    flex-flow: column;
    place-content: flex-start;
    align-items: flex-start;
    gap: 0;
    width: 100%;
    height: min-content;
    padding: 0;
    position: relative;
    overflow: visible;
    box-sizing: border-box;
}

/* ── SHARED FOOTER (all pages) ──────────────────────────────── */
.site-footer {
    background: #0a122f;
    color: #fff;
    display: flex;
    flex-flow: column;
    align-items: center;
    gap: 0;
    padding: 48px 72px 24px;
    width: 100%;
    box-sizing: border-box;
}
.efiros-home .site-footer {
    position: relative;
    overflow: hidden;
    box-shadow: 0 0 0 100vmax #0a122f;
    clip-path: inset(0 -100vmax);
}

.site-footer__bottom {
    order: 1;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    width: 100%;
    max-width: 1296px;
    padding-bottom: 32px;
    border-bottom: 1px solid #363c55;
    margin-bottom: 24px;
}

/* Grid placement: logo left | nav center | social right */
.site-footer__nav   { grid-column: 2; }
.site-footer__logo  { grid-column: 1; grid-row: 1; }
.site-footer__social { grid-column: 3; justify-self: end; }

.site-footer__nav-list {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    flex-flow: row;
    align-items: center;
    gap: 40px;
}
.site-footer .site-footer__nav-list .nav-link a {
    color: #fff;
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    font-weight: 400;
    letter-spacing: -0.01em;
    line-height: 130%;
    text-decoration: none;
    white-space: nowrap;
}
.site-footer .site-footer__nav-list .nav-link a.nav-link--active {
    color: #0092ff;
    font-weight: 600;
}
.site-footer__nav-list .nav-link.nav-link-wrapper--active {
    display: flex;
    align-items: center;
    gap: 6px;
    width: auto;
}
.site-footer__nav-list .nav-link-indicator {
    display: block;
    width: 6px;
    height: 6px;
    border-radius: 1px;
    background: #0092ff;
    flex-shrink: 0;
}

.site-footer__logo {
    flex: none;
    width: 178px;
    height: 26px;
    display: block;
}
.site-footer__logo img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: contain;
}

.site-footer__social {
    display: flex;
    flex-flow: row;
    align-items: center;
    gap: 16px;
}

.site-footer__copyright {
    order: 2;
    width: 100%;
    max-width: 1296px;
    margin: 0;
    color: #fff;
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 400;
    letter-spacing: -0.02em;
    line-height: 130%;
}

.footer-linkedin {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: background 0.2s, color 0.2s;
}
.footer-linkedin svg {
    width: 18px;
    height: 18px;
    fill: currentColor;
}
.footer-linkedin:hover {
    background: rgba(255, 255, 255, 0.15);
    color: #fff;
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   8. CTA BUTTONS (hero + cta section)
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.efiros-home .cta-button {
    color: #fff;
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: -0.02em;
    line-height: 120%;
    cursor: pointer;
    white-space: nowrap;
    text-decoration: none;
    border: none;
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   9. NAV LINK TEXT (Home / Agents / Audit / Compare — header + footer)
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.efiros-home .nav-link p, .efiros-home .nav-link a, .efiros-home a.nav-link {
    color: #09112e;
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    font-weight: 500;
    letter-spacing: -0.02em;
    line-height: 120%;
    text-decoration: none;
    white-space: nowrap;
    margin: 0;
}
.efiros-home a.nav-link--active, .efiros-home .nav-link--active a, .efiros-home .nav-link--active p {
    color: #0092ff;
    font-weight: 600;
}

/* PS card labels */
.efiros-home .ps-label p {
    margin: 0;
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: -0.01em;
    line-height: 130%;
}
.efiros-home .ps-badge--solution .ps-label p {
    color: #fff;
}
.efiros-home .sb-vs__card--good .sb-vs__label {
    color: #fff;
}


/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   10. TABLET (≤ 1439 px)
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
@media (max-width: 1439px) {
    .efiros-home {
        width: 100% !important;
        max-width: 100% !important;
    }

    /* Nav: shrink and hide desktop link list */
    .efiros-home .site-header {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        width: 100%;
    }
    .efiros-home .site-nav {
        width: 100%;
        max-width: 768px;
        height: 60px;
        padding: 12px 32px;
        margin: 0 auto;
    }
    .efiros-home .site-nav__list {
        display: none;
    }
    .efiros-home .site-nav__cta {
        margin-left: auto;
        border-width: 1px;
    }

    .efiros-home .hero-title-break { display: inline; }

    /* Hero: stack centered, demo below */
    .efiros-home .page-wrap {
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }
    .efiros-home .hero {
        width: 100vw;
        max-width: 100vw;
        height: calc(412px + 66.625vw);
        padding: 0;
        display: block;
        overflow: visible;
    }
    .efiros-home .hero__content {
        position: absolute;
        top: 108px;
        left: 50%;
        transform: translateX(-50%);
        align-items: center;
        text-align: center;
        gap: 32px;
        width: 468px;
        max-width: 468px;
    }
    .efiros-home .hero__copy {
        align-items: center;
        width: 478px;
        max-width: 478px;
        gap: 16px;
    }
    .efiros-home .hero__title {
        width: 478px;
        max-width: 478px;
        font-size: 32px;
        line-height: 120%;
        text-align: center;
    }
    .efiros-home .hero__body {
        width: 478px;
        max-width: 478px;
        font-size: 16px;
        line-height: 150%;
        text-align: center;
    }
    .efiros-home .hero__demo {
        position: absolute;
        width: 100%;
        max-width: 100%;
        height: auto;
        aspect-ratio: 800 / 533;
        border-radius: 0;
        left: 0;
        top: 392px;
        transform: none;
    }

    /* Problem / solution */
    .efiros-home .problem-solution {
        width: 100%;
        max-width: 768px;
        margin: 0 auto;
        padding: 72px 88px;
        gap: 32px;
    }
    .efiros-home .problem-solution__title {
        font-size: 32px;
        line-height: 120%;
        width: auto;
        max-width: 100%;
    }

    /* How it works */
    .efiros-home .agents-how {
        padding-left: 48px;
        padding-right: 48px;
    }

    /* Features / FAQ */
    .efiros-home #features, .efiros-home #faq {
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }
    .efiros-home #features {
        max-width: 100%;
        margin: 0;
        padding: 72px 120px;
        gap: 32px;
    }
    .efiros-home #faq {
        max-width: 100%;
        margin: 0;
        padding: 48px 48px 80px;
        padding-left: 48px !important;
        padding-right: 48px !important;
        gap: 32px;
    }
    .efiros-home .audit-cta-dark {
        padding-left: 48px;
        padding-right: 48px;
    }

    /* FAQ accordion: fluid widths */
    .efiros-home .faq__list {
        width: 100%;
        max-width: 100%;
    }
    .efiros-home .faq__question {
        font-size: 18px;
        line-height: 160%;
    }

    /* Footer */
    .site-footer { padding: 48px 48px 24px; }
    .site-footer__bottom {
        grid-template-columns: 1fr;
        justify-items: center;
        gap: 24px;
        padding-bottom: 24px;
        margin-bottom: 16px;
    }
    .site-footer__logo  { grid-column: 1; grid-row: 1; justify-self: center; }
    .site-footer__nav   { grid-column: 1; grid-row: 2; }
    .site-footer__social { grid-column: 1; grid-row: 3; justify-self: center; }
    .site-footer__copyright { align-self: center; }
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   11. MOBILE (≤ 767 px)
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
@media (max-width: 767px) {
    .efiros-home .site-nav {
        width: 100%;
        max-width: 100vw;
        height: 60px;
        padding: 12px 16px;
        gap: 8px;
        justify-content: flex-start;
        left: 0;
        transform: none;
    }
    .efiros-home .site-nav__logo, .efiros-home .site-nav__logo img {
        width: 116px;
        height: 22px;
        margin-right: auto;
    }
    .efiros-home .site-nav__cta {
        width: 148px;
        min-width: 148px;
        height: 36px;
        padding: 0 20px;
        margin-left: 0;
        flex-shrink: 0;
    }

    /* Hero: flow layout on mobile so demo always follows the button */
    .efiros-home .hero {
        height: auto;
        display: flex;
        flex-direction: column;
        align-items: center;
        padding: 96px 0 32px;
        gap: 32px;
    }
    .efiros-home .hero__content {
        position: static;
        top: auto;
        left: auto;
        transform: none;
        width: calc(100% - 48px);
        max-width: calc(100% - 48px);
        text-align: center;
        align-items: center;
    }
    .efiros-home .hero__copy {
        width: 100%;
        max-width: 100%;
        align-items: center;
    }
    .efiros-home .hero__title {
        font-size: 32px;
        line-height: 120%;
        width: 100%;
        max-width: 100%;
        text-align: center;
    }
    .efiros-home .hero__body {
        font-size: 16px;
        line-height: 150%;
        width: 100%;
        max-width: 100%;
        text-align: center;
    }
    .efiros-home .hero__demo {
        position: relative;
        top: auto;
        left: auto;
        transform: none;
        width: 100%;
        max-width: 100%;
        aspect-ratio: 800 / 533;
        height: auto;
    }
    #demo-container {
        display: block;
    }
    #demo-container #demo-screen {
        transform-origin: top left;
    }

    .efiros-home .agents-how {
        padding-left: 24px;
        padding-right: 24px;
    }
    .efiros-home .problem-solution {
        padding: 56px 24px;
        gap: 32px;
    }
    .efiros-home .sb-vs__caption-break { display: inline; }
    .efiros-home .features-title-break { display: none; }
    .efiros-home .surv-h2-break { display: inline; }
    .efiros-home .agents-how-desc-break { display: inline; }

    .efiros-home #features {
        padding: 56px 32px;
        gap: 32px;
        max-width: 100%;
        margin: 0;
    }
    .efiros-home #faq {
        padding: 48px 32px 0;
        padding-left: 32px !important;
        padding-right: 32px !important;
        gap: 32px;
        max-width: 100%;
        margin: 0;
    }

    /* Footer */
    .site-footer { padding: 40px 24px 24px; }
    .site-footer__nav-list {
        flex-wrap: wrap;
        justify-content: center;
        gap: 40px 24px;
    }
    .site-footer__nav-list .nav-link-indicator { display: none; }
}
/* Layout rules for legacy wrappers, scoped to .efiros-home */

.efiros-home { overflow: var(--overflow-clip-fallback, clip);
    background-color: #fff;
    flex-flow: column;
    place-content: center flex-start;
    align-items: center;
    gap: 10px;
    width: 1440px;
    padding: 0;
    display: flex;
    position: relative }

.efiros-home .nav-link-wrapper { flex-flow: row;
    flex: none;
    place-content: center flex-start;
    align-items: center;
    gap: 8px;
    width: min-content;
    height: min-content;
    padding: 0;
    display: flex;
    position: relative;
    overflow: visible }

.efiros-home .nav-link-wrapper--active { gap: 6px;
    width: 57px; }

.efiros-home .nav-link-indicator { aspect-ratio: 1;
    height: 6px;
    background-color: #0092ff;
    border-radius: 1px;
    flex: none;
    width: 6px;
    position: relative }

.efiros-home .nav-link, .efiros-home .review-card__name, .efiros-home .review-card__role { white-space: pre;
    flex: none;
    width: auto;
    height: auto;
    position: relative }

.efiros-home .cta-button { background-color: #0092ff;
    border-radius: 6px;
    flex-flow: row;
    flex: none;
    place-content: center;
    align-items: center;
    gap: 10px;
    width: max-content;
    min-width: 200px;
    height: 48px;
    padding: 15px 56px;
    display: flex;
    position: relative;
    overflow: hidden;
    text-decoration: none; }

.efiros-home .cta-button > * { flex-shrink: 0; }

.efiros-home .cta-button--header { align-self: flex-start; }

.efiros-home #reviews { display: none !important; }

.efiros-home .benefit-grid { flex-flow: row;
    flex: none;
    place-content: flex-start;
    align-items: flex-start;
    gap: 104px;
    width: 100%;
    height: min-content;
    padding: 88px 72px;
    display: flex;
    position: relative;
    overflow: visible }

.efiros-home .benefit-item { flex-flow: column;
    flex: none;
    place-content: flex-start center;
    align-items: flex-start;
    gap: 24px;
    width: 232px;
    height: min-content;
    padding: 0;
    display: flex;
    position: relative;
    overflow: visible }

.efiros-home .benefit-icon, .efiros-home .feature-icon { flex: none;
    width: 48px;
    height: 48px;
    position: relative }

.efiros-home .benefit-text { flex-flow: column;
    flex: none;
    place-content: flex-start flex-end;
    align-items: flex-start;
    gap: 12px;
    width: 100%;
    height: min-content;
    padding: 0;
    display: flex;
    position: relative;
    overflow: visible }

.efiros-home .benefit-title, .efiros-home .benefit-body { white-space: pre-wrap;
    word-break: break-word;
    word-wrap: break-word;
    flex: none;
    width: 232px;
    height: auto;
    position: relative }

.efiros-home .ps-grid, .efiros-home .review-grid { flex-flow: row;
    flex: none;
    place-content: center flex-start;
    align-items: stretch;
    gap: 32px;
    width: 100%;
    height: min-content;
    padding: 0;
    display: flex;
    position: relative;
    overflow: visible }

.efiros-home .ps-card { --border-bottom-width: 1px;
    --border-color: #ebebeb;
    --border-left-width: 1px;
    --border-right-width: 1px;
    --border-style: solid;
    --border-top-width: 1px;
    will-change: transform;
    background-color: #fff;
    border-radius: 20px;
    flex-flow: column;
    flex: none;
    place-content: center flex-start;
    align-items: center;
    gap: 40px;
    width: 633px;
    height: min-content;
    padding: 56px 78px 62px;
    display: flex;
    position: relative;
    overflow: hidden }

.efiros-home .ps-header { flex-flow: column;
    flex: none;
    place-content: center flex-start;
    align-items: center;
    gap: 24px;
    width: min-content;
    height: min-content;
    padding: 0;
    display: flex;
    position: relative;
    overflow: visible }

.efiros-home .ps-badge { --border-bottom-width: 1px;
    --border-color: #09112e;
    --border-left-width: 1px;
    --border-right-width: 1px;
    --border-style: solid;
    --border-top-width: 1px;
    border-radius: 90px;
    flex-flow: column;
    flex: none;
    place-content: flex-start center;
    align-items: flex-start;
    gap: 10px;
    width: min-content;
    height: 32px;
    padding: 7px 12px;
    display: flex;
    position: relative;
    overflow: visible;
    white-space: nowrap; }

.efiros-home .ps-badge--solution { background-color: #0092ff;
    border-radius: 128px;
    place-content: center;
    align-items: center;
    padding: 11px 15px;
    border: none; }

.efiros-home .ps-title { white-space: pre-wrap;
    word-break: break-word;
    word-wrap: break-word;
    flex: none;
    width: 443px;
    height: auto;
    position: relative }

.efiros-home .ps-illustration { flex: none;
    width: 466px;
    height: 196px;
    position: relative }

.efiros-home .problem-illustration { display: none;
    width: 100%;
    height: auto; }

.efiros-home .solution-illustration { display: block;
    width: 100%;
    height: auto; }

.efiros-home .ps-list { flex-flow: column;
    flex: none;
    place-content: flex-start;
    align-items: flex-start;
    gap: 24px;
    width: 477px;
    height: min-content;
    padding: 0;
    display: flex;
    position: relative;
    overflow: visible }

.efiros-home .ps-list-group, .efiros-home .accordion-item { flex-flow: column;
    flex: none;
    place-content: flex-start;
    align-items: flex-start;
    gap: 24px;
    width: 100%;
    height: min-content;
    padding: 0;
    display: flex;
    position: relative;
    overflow: visible }

.efiros-home .ps-item { flex-flow: row;
    flex: none;
    place-content: flex-start;
    align-items: flex-start;
    gap: 8px;
    width: 100%;
    height: min-content;
    padding: 0;
    display: flex;
    position: relative;
    overflow: visible }

.efiros-home .ps-item-icon { flex: none;
    width: 20px;
    height: 22px;
    position: relative }

.efiros-home .ps-item-icon img { width: 100%;
    height: 100%;
    display: block; }

.efiros-home .ps-item-text { white-space: pre-wrap;
    word-break: break-word;
    word-wrap: break-word;
    flex: none;
    width: 448px;
    height: auto;
    position: relative }

.efiros-home .ps-card--solution { height: 778px; }

.efiros-home .feature-container { flex-flow: column;
    flex: none;
    place-content: flex-start;
    align-items: flex-start;
    gap: 100px;
    width: 100%;
    height: min-content;
    padding: 0;
    display: flex;
    position: relative;
    overflow: visible }

.efiros-home .feature-row { flex: none;
    gap: 73px;
    width: 100%;
    height: 364px;
    position: relative;
    overflow: visible }

.efiros-home .feature-text-block { flex-flow: column;
    flex: none;
    place-content: flex-start;
    align-items: flex-start;
    gap: 20px;
    width: 433px;
    max-width: 100%;
    height: min-content;
    padding: 0;
    display: flex;
    overflow: visible }

.efiros-home .feature-text-block--left { position: absolute;
    top: 52px;
    left: 0; }

.efiros-home .feature-title { white-space: pre-wrap;
    word-break: break-word;
    word-wrap: break-word;
    flex: none;
    width: 390px;
    height: auto;
    position: relative }

.efiros-home .feature-body { white-space: pre-wrap;
    word-break: break-word;
    word-wrap: break-word;
    flex: none;
    width: 390px;
    height: auto;
    position: relative }

.efiros-home .feature-image-frame { will-change: transform;
    border-radius: 16px;
    flex: none;
    gap: 64px;
    width: 533px;
    height: 364px;
    position: absolute;
    top: 0;
    overflow: hidden }

.efiros-home .feature-image-frame--right { left: 567px; }

.efiros-home .feature-image-frame--left { left: 0; }

.efiros-home .feature-image-frame .feature-image { width: 100%;
    height: 100%;
    display: block;
    object-fit: cover }

.efiros-home .accordion-header { flex-flow: row;
    flex: none;
    place-content: flex-start space-between;
    align-items: flex-start;
    width: 100%;
    height: min-content;
    padding: 0;
    display: flex;
    position: relative;
    overflow: visible }

.efiros-home .accordion-item { flex-flow: row;
    flex: none;
    place-content: center space-between;
    align-items: center;
    width: 100%;
    height: min-content;
    padding: 0;
    display: flex;
    position: relative;
    overflow: visible }

.efiros-home .feature-text-block--right { position: absolute;
    top: 40px;
    left: 565px; }

.efiros-home .review-card { --border-bottom-width: 1px;
    --border-color: #ebebeb;
    --border-left-width: 1px;
    --border-right-width: 1px;
    --border-style: solid;
    --border-top-width: 1px;
    background-color: #fafafa;
    border-radius: 8px;
    flex-flow: column;
    flex: none;
    place-content: flex-start;
    align-items: flex-start;
    gap: 40px;
    width: 411px;
    height: 100%;
    padding: 32px;
    display: flex;
    position: relative;
    overflow: visible }

.efiros-home .review-card__header { flex-flow: row;
    flex: none;
    place-content: center flex-start;
    align-items: center;
    gap: 21px;
    width: min-content;
    height: min-content;
    padding: 0;
    display: flex;
    position: relative;
    overflow: visible }

.efiros-home .review-card__avatar { border-radius: 100%;
    flex: none;
    width: 56px;
    height: 56px;
    position: relative }

.efiros-home .review-card__author { flex-flow: column;
    flex: none;
    place-content: flex-start;
    align-items: flex-start;
    gap: 6px;
    width: min-content;
    height: min-content;
    padding: 0;
    display: flex;
    position: relative;
    overflow: visible }

.efiros-home .review-card__quote { white-space: pre-wrap;
    word-break: break-word;
    word-wrap: break-word;
    flex: none;
    width: 347px;
    height: auto;
    position: relative }

.efiros-home .accordion-icon { flex: none;
    width: 17px;
    height: 17px;
    position: relative }

.efiros-home .accordion-content { white-space: normal;
    word-break: break-word;
    word-wrap: break-word;
    flex: none;
    width: 713px;
    height: 0;
    position: relative }

.efiros-home .accordion-content.accordion-open { height: auto; }

.efiros-home[data-border=true]:after, .efiros-home [data-border=true]:after { content: "";
    border-width: var(--border-top-width, 0) var(--border-right-width, 0) var(--border-bottom-width, 0) var(--border-left-width, 0);
    border-color: var(--border-color, none);
    border-style: var(--border-style, none);
    box-sizing: border-box;
    border-radius: inherit;
    corner-shape: inherit;
    pointer-events: none;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0 }

.efiros-home .accordion-item { flex-direction: column;
    align-items: stretch;
    gap: 0; }

.efiros-home { width: 100%;
    max-width: 1455px;
    margin: 0 auto;
    overflow: visible;
    gap: 0; }

@media (max-width: 1439px) {
    .efiros-home .benefit-grid { width: 100%;
        max-width: 100%;
        box-sizing: border-box; }

    .efiros-home .cta-button--header { align-self: center; }

    .efiros-home .benefit-grid { width: 100%;
        max-width: 768px;
        margin: 0 auto;
        padding: 72px 88px;
        flex-wrap: wrap;
        justify-content: space-between;
        align-items: flex-start;
        gap: 88px 104px;
        box-sizing: border-box; }
    .efiros-home .benefit-item { width: 232px;
        max-width: 232px;
        min-width: 232px;
        height: auto;
        align-items: flex-start;
        text-align: left; }

    .efiros-home .ps-grid { width: 592px;
        margin: 0 auto;
        flex-direction: column;
        gap: 24px;
        align-items: flex-start; }
    .efiros-home .feature-title, .efiros-home .feature-body, .efiros-home .review-card__quote, .efiros-home .accordion-content { width: 100%;
        max-width: 100%; }

    .efiros-home .ps-card { width: 592px;
        max-width: 592px;
        padding: 40px 78px;
        gap: 40px;
        border-radius: 20px;
        align-items: center; }
    .efiros-home .ps-badge { align-items: center; }

    .efiros-home .ps-title { width: 413px;
        max-width: 413px;
        text-align: center; }

    .efiros-home .ps-header { align-items: center; }
    .efiros-home .ps-illustration { width: 477px;
        max-width: 477px;
        gap: 24px; }
    .efiros-home .ps-list { gap: 24px; }
    .efiros-home .ps-list-group { gap: 24px;
        align-items: flex-start; }
    .efiros-home .ps-item { gap: 8px;
        align-items: flex-start; }
    .efiros-home .ps-item-text { width: 448px;
        max-width: 448px; }

    .efiros-home .feature-container { width: 528px;
        max-width: 528px;
        margin: 0 auto;
        gap: 56px;
        align-items: flex-start; }
    .efiros-home .feature-row { display: flex;
        flex-direction: column;
        gap: 40px;
        height: auto;
        align-items: flex-start;
        width: 528px;
        max-width: 528px; }
    .efiros-home .feature-row:nth-child(odd) .feature-text-block { order: 1; }
    .efiros-home .feature-row:nth-child(odd) .feature-image-frame { order: 2; }
    .efiros-home .feature-row:nth-child(even) .feature-text-block { order: 1; }
    .efiros-home .feature-row:nth-child(even) .feature-image-frame { order: 2; }
    .efiros-home .feature-text-block { position: static;
        width: 528px;
        max-width: 528px;
        align-items: flex-start;
        text-align: left; }
    .efiros-home .feature-image-frame { position: static;
        width: 528px;
        max-width: 528px;
        align-self: flex-start; }
    .efiros-home .feature-image-frame { height: auto;
        display: flex;
        justify-content: flex-start;
        align-items: flex-start; }

    .efiros-home .review-grid { display: grid;
        grid-template-columns: 1fr;
        gap: 24px;
        width: 624px;
        max-width: 624px;
        margin: 0 auto; }
    .efiros-home .review-card { width: 624px;
        max-width: 624px;
        padding: 32px;
        gap: 40px;
        height: 100%;
        align-items: flex-start;
        justify-content: flex-start;
        text-align: left;
        background-color: #fafafa;
        border: 1px solid #ececec;
        border-radius: 8px;
        box-sizing: border-box; }
    .efiros-home .review-card__header { align-items: center;
        flex: 1 1 auto;
        min-width: 0; }
    .efiros-home .review-card__avatar { width: 56px;
        height: 56px;
        flex: none; }
    .efiros-home .review-card__author { width: auto;
        min-width: 0;
        height: auto;
        gap: 6px;
        align-items: flex-start;
        flex: 1 1 auto; }
    .efiros-home .review-card__name { width: auto;
        height: auto; }
    .efiros-home .review-card__role { width: auto;
        height: auto;
        white-space: nowrap;
        min-width: max-content; }
    .efiros-home .review-card__quote { width: 560px;
        max-width: 560px;
        min-height: 72px; }

    .efiros-home .accordion-item { width: 624px;
        gap: 0;
        align-items: flex-start; }
    .efiros-home .accordion-header { width: 624px;
        height: 29px;
        align-items: flex-start;
        justify-content: space-between; }

    .efiros-home .accordion-icon { width: 20px;
        height: 20px; }
    .efiros-home .accordion-content { width: 624px;
        max-width: 624px;
        font-size: 16px;
        line-height: 150%; }

    .efiros-home .accordion-item { width: 624px;
        height: auto;
        justify-content: space-between;
        align-items: stretch; }

}

@media (max-width: 600px) {

    .efiros-home .benefit-grid { padding: 56px 24px; }
    .efiros-home .benefit-item { width: 100%;
        max-width: 420px; }

}

@media (max-width: 767px) {
    .efiros-home { --features-max-width: calc(100vw - 64px);
        --solution-card-width: calc(100vw - 64px); }
    .efiros-home .benefit-grid { width: 100%;
        max-width: min(375px, 100vw);
        box-sizing: border-box; }

    .efiros-home .benefit-grid { flex-direction: column;
        flex-wrap: nowrap;
        justify-content: flex-start;
        padding: 56px 32px;
        gap: 88px;
        background: #ffffff;
        align-items: flex-start; }
    .efiros-home .benefit-item { width: 311px;
        max-width: 311px;
        align-items: flex-start;
        text-align: left; }
    .efiros-home .benefit-title, .efiros-home .benefit-body { width: 311px;
        max-width: 311px; }

    .efiros-home .ps-grid { flex-direction: column;
        width: 100%;
        max-width: var(--solution-card-width);
        gap: 24px;
        align-items: center; }
    .efiros-home .ps-card { width: 100%;
        max-width: var(--solution-card-width);
        padding: 40px 24px;
        gap: 40px;
        border-radius: 20px;
        align-items: center; }
    .efiros-home .ps-header { width: 100%;
        max-width: 100%;
        align-items: center; }
    .efiros-home .ps-card--solution { height: auto; }
    .efiros-home .ps-title { width: min(263px, 100%);
        max-width: min(263px, 100%);
        text-align: center;
        word-break: normal;
        overflow-wrap: break-word; }

    .efiros-home .ps-illustration { width: 100%;
        max-width: calc(var(--solution-card-width) - 48px);
        height: auto;
        gap: 24px; }
    .efiros-home .ps-list { width: 100%;
        max-width: calc(var(--solution-card-width) - 48px);
        align-items: flex-start; }
    .efiros-home .ps-item { width: 100%;
        max-width: 100%; }
    .efiros-home .review-card__header { flex-direction: column;
        align-items: flex-start;
        width: 100%;
        max-width: 205px;
        height: auto; }
    .efiros-home .ps-illustration .svgContainer { display: none; }
    .efiros-home .problem-illustration, .efiros-home .solution-illustration { display: block;
        width: 100%;
        height: auto; }
    .efiros-home .ps-item-text { width: auto;
        max-width: calc(var(--solution-card-width) - 76px);
        flex: 1;
        text-align: left; }

    .efiros-home .feature-title, .efiros-home .feature-body { width: 100%;
        max-width: 311px;
        white-space: normal;
        word-break: normal;
        overflow-wrap: break-word; }
    .efiros-home .feature-container { width: 100%;
        max-width: var(--features-max-width);
        gap: 56px;
        align-items: flex-start; }
    .efiros-home .feature-row { width: 100%;
        max-width: var(--features-max-width);
        gap: 40px;
        align-items: flex-start; }
    .efiros-home .feature-text-block { width: 100%;
        max-width: var(--features-max-width); }
    .efiros-home .feature-row:nth-child(odd) .feature-text-block { order: 1; }
    .efiros-home .feature-row:nth-child(odd) .feature-image-frame { order: 2; }
    .efiros-home .feature-row:nth-child(even) .feature-text-block { order: 1; }
    .efiros-home .feature-row:nth-child(even) .feature-image-frame { order: 2; }
    .efiros-home .feature-image-frame { width: 100%;
        max-width: var(--features-max-width);
        height: auto; }
    .efiros-home .feature-image { width: 100%;
        max-width: var(--features-max-width);
        height: auto; }

    .efiros-home .review-grid { display: flex;
        flex-direction: row;
        gap: 16px;
        width: calc(100% + 64px);
        max-width: none;
        margin: 0 -32px;
        padding: 0;
        overflow-x: auto;
        align-items: stretch;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch; }
    .efiros-home .review-grid::-webkit-scrollbar { display: none; }
    .efiros-home .review-card { width: 311px;
        max-width: 311px;
        align-self: stretch;
        padding: 32px;
        gap: 32px;
        flex: 0 0 311px;
        scroll-snap-align: center;
        align-items: flex-start;
        justify-content: flex-start;
        place-content: flex-start; }
    .efiros-home .review-card__header { flex: 0 0 auto;
        align-self: flex-start; }
    .efiros-home .review-card__quote { width: 100%;
        max-width: 100%;
        flex: 0 0 auto;
        align-self: flex-start; }
    .efiros-home .review-grid > *:first-child { margin-left: 32px; }
    .efiros-home .review-grid > *:last-child { margin-right: 32px; }

    .efiros-home .accordion-item { width: 311px;
        max-width: 311px;
        gap: 0; }
    .efiros-home .accordion-header { width: 311px;
        max-width: 311px;
        height: auto; }

    .efiros-home .accordion-content { width: 311px;
        max-width: 311px;
        font-size: 16px;
        line-height: 150%; }
    .efiros-home .accordion-item { width: 311px;
        height: auto; }

    .efiros-home .accordion-content.accordion-open { margin-top: 16px; }

}

@media (max-width: 414px) {
    .efiros-home { --features-max-width: calc(100vw - 64px);
        --solution-card-width: calc(100vw - 64px); }
}

@media (max-width: 375px) {
    .efiros-home { --features-max-width: calc(100vw - 56px);
        --solution-card-width: calc(100vw - 56px); }
}

@media (max-width: 360px) {
    .efiros-home { --features-max-width: calc(100vw - 48px);
        --solution-card-width: calc(100vw - 48px); }
}

.terms-page .efiros-home { width: 1440px;
    max-width: 100%;
    margin: 0 auto; }

.terms-page footer.efiros-home { width: 100%;
    display: flex;
    justify-content: center; }

.audit-page .efiros-home { min-height: auto !important; }

.efiros-home .site-nav .nav-link-wrapper--active {
    gap: 6px;
    width: auto;
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   DARK NAV + FOOTER  (.audit-page — agents, audit, compare)
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.audit-page .site-header {
    background: #0a122f;
    box-shadow: 0 0 0 100vmax #0a122f;
    clip-path: inset(0 -100vmax);
    position: relative;
    z-index: 100;
}
.audit-page .site-nav {
    display: flex;
    flex-flow: row;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    max-width: 1440px;
    padding: 12px 72px;
    margin: 0 auto;
    box-sizing: border-box;
}
.audit-page .site-nav__logo {
    flex: none;
    width: 178px;
    height: 26px;
    display: block;
    text-decoration: none;
}
.audit-page .site-nav__logo img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: contain;
}
.audit-page .site-nav__list {
    margin: 0;
    padding: 0;
    display: flex;
    flex-flow: row;
    align-items: center;
    gap: 40px;
    list-style: none;
}
.audit-page .site-nav .nav-link-wrapper {
    display: flex;
    align-items: center;
    gap: 0;
}
.audit-page .site-nav .nav-link-wrapper--active {
    gap: 6px;
}
.audit-page .site-nav .nav-link-indicator {
    display: block;
    width: 6px;
    height: 6px;
    border-radius: 1px;
    background: #0092ff;
    flex-shrink: 0;
}
.audit-page .site-nav a.nav-link {
    color: #e7f3fb;
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    font-weight: 500;
    letter-spacing: -0.02em;
    line-height: 120%;
    text-decoration: none;
    white-space: nowrap;
}
.audit-page .site-nav a.nav-link--active {
    color: #0092ff;
    font-weight: 600;
}
.audit-page .site-nav__cta {
    background: transparent;
    border: 1.5px solid #fff;
    border-radius: 8px;
    flex: none;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 36px;
    padding: 0 24px;
    color: #e7f3fb;
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: -0.01em;
    cursor: pointer;
    white-space: nowrap;
}
@media (max-width: 1024px) {
    .audit-page .site-nav { padding: 12px 48px; height: 60px; justify-content: flex-start; }
    .audit-page .site-nav__list { display: none; }
    .audit-page .site-nav__cta { margin-left: auto; }
}
@media (max-width: 767px) {
    .audit-page .site-nav {
        padding: 12px 16px;
        height: 60px;
        justify-content: flex-start;
        gap: 8px;
    }
    .audit-page .site-nav__logo {
        width: 116px;
        height: 22px;
        margin-right: auto;
    }
    .audit-page .site-nav__list { display: none; }
    .audit-page .site-nav__cta {
        width: 148px;
        min-width: 148px;
        height: 36px;
        padding: 0 20px;
        flex-shrink: 0;
    }
}
