:root {
    --erex-ink: #14213d;
    --erex-muted: #5d6678;
    --erex-line: #dfe6ee;
    --erex-soft: #f4f7f9;
    --erex-accent: #0e7c86;
    --erex-accent-dark: #075e66;
    --erex-warm: #f3a712;
}

body {
    color: var(--erex-ink);
    background: #ffffff;
    padding-bottom: 86px;
}

#site-header {
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0 8px 30px rgba(20, 33, 61, 0.08);
    overflow: hidden;
    position: relative;
}

#site-header::before {
    background:
        linear-gradient(105deg, rgba(255, 255, 255, 0.97) 0%, rgba(246, 251, 252, 0.94) 46%, rgba(14, 124, 134, 0.16) 100%),
        url("../images/banner2.jpg") center 42% / cover no-repeat;
    content: "";
    inset: 0;
    opacity: 0.42;
    pointer-events: none;
    position: absolute;
    z-index: 0;
}

#site-header .container {
    position: relative;
    z-index: 1;
}

.navbar {
    min-height: 72px;
}

.erex-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.erex-logo {
    height: 44px;
    width: auto;
    object-fit: contain;
}

.brand-copy {
    display: flex;
    flex-direction: column;
    color: var(--erex-ink);
    line-height: 1.05;
}

.brand-copy strong {
    font-size: 16px;
    font-weight: 700;
}

.brand-copy small {
    font-size: 12px;
    color: var(--erex-muted);
    margin-top: 4px;
}

.navbar-light .navbar-nav .nav-link {
    color: var(--erex-ink);
    font-weight: 600;
    padding-inline: 14px;
}

.navbar-light .navbar-nav .nav-link.active,
.navbar-light .navbar-nav .nav-link:hover {
    color: var(--erex-accent);
}

.btn-primary,
.btn-white {
    background: var(--erex-accent);
    border-color: var(--erex-accent);
    color: #fff;
}

.btn-primary:hover,
.btn-white:hover {
    background: var(--erex-accent-dark);
    border-color: var(--erex-accent-dark);
    color: #fff;
}

.b2b-home {
    overflow: hidden;
}

.b2b-home section {
    position: relative;
}

.erex-hero {
    padding: 46px 0 64px;
    background: linear-gradient(120deg, #f7fafc 0%, #ffffff 52%, #eef7f7 100%);
}

.eyebrow {
    color: var(--erex-accent);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0;
    margin-bottom: 12px;
    text-transform: uppercase;
}

.erex-hero h1,
.section-heading h2,
.b2b-home h2 {
    color: var(--erex-ink);
    font-weight: 700;
}

.erex-hero h1 {
    font-size: 56px;
    line-height: 1.04;
    margin-bottom: 24px;
}

.hero-lead {
    color: var(--erex-muted);
    font-size: 19px;
    line-height: 1.75;
    max-width: 620px;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin: 34px 0;
}

.btn-outline-dark {
    border-color: var(--erex-ink);
    color: var(--erex-ink);
}

.btn-outline-dark:hover {
    background: var(--erex-ink);
    color: #fff;
}

.trust-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-top: 28px;
}

.trust-row div {
    border-left: 3px solid var(--erex-warm);
    padding-left: 14px;
}

.trust-row strong,
.trust-row span {
    display: block;
}

.trust-row strong {
    font-size: 20px;
    color: var(--erex-ink);
}

.trust-row span {
    color: var(--erex-muted);
    font-size: 13px;
    line-height: 1.4;
}

.hero-media {
    aspect-ratio: 4 / 3;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 24px 60px rgba(20, 33, 61, 0.18);
}

.hero-media img,
.image-panel {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.image-panel {
    border-radius: 8px;
    box-shadow: 0 18px 45px rgba(20, 33, 61, 0.12);
}

.proof-strip {
    background: var(--erex-ink);
    color: #fff;
    padding: 18px 0;
}

.proof-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
    text-align: center;
}

.proof-grid span {
    font-weight: 600;
}

.section-pad {
    padding: 88px 0;
}

.muted-section,
.light-panel {
    background: var(--erex-soft);
}

.light-panel:nth-of-type(even) {
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(244, 247, 249, 0.96)),
        radial-gradient(circle at 15% 10%, rgba(14, 124, 134, 0.08), transparent 35%);
}

.dark-panel {
    background:
        linear-gradient(135deg, rgba(16, 25, 45, 0.96), rgba(8, 18, 34, 0.98)),
        url("../images/banner2.jpg") center / cover no-repeat;
    color: #fff;
    isolation: isolate;
}

.dark-panel::before {
    background: linear-gradient(90deg, rgba(14, 124, 134, 0.18), rgba(243, 167, 18, 0.08));
    content: "";
    inset: 0;
    pointer-events: none;
    position: absolute;
    z-index: -1;
}

.dark-panel h2,
.dark-panel h3,
.dark-panel .section-heading h2 {
    color: #fff;
}

.dark-panel p,
.dark-panel .section-heading p {
    color: rgba(255, 255, 255, 0.74);
}

.dark-panel .eyebrow {
    color: #74d5dc;
}

.b2b-home h2 {
    font-size: 40px;
    line-height: 1.16;
    margin-bottom: 22px;
}

.b2b-home p {
    color: var(--erex-muted);
    font-size: 17px;
    line-height: 1.75;
}

.section-heading {
    max-width: 720px;
    margin: 0 auto 42px;
    text-align: center;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.feature-grid article {
    background: #fff;
    border: 1px solid var(--erex-line);
    border-radius: 8px;
    min-height: 260px;
    padding: 28px;
}

.feature-grid i {
    align-items: center;
    background: rgba(14, 124, 134, 0.1);
    border-radius: 50%;
    color: var(--erex-accent);
    display: inline-flex;
    font-size: 24px;
    height: 54px;
    justify-content: center;
    margin-bottom: 20px;
    width: 54px;
}

.feature-grid h3 {
    color: var(--erex-ink);
    font-size: 21px;
    margin-bottom: 12px;
}

.feature-grid p {
    font-size: 15px;
}

.dark-panel .feature-grid h3 {
    color: var(--erex-ink);
}

.dark-panel .feature-grid p {
    color: var(--erex-muted);
}

.check-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
    margin-top: 28px;
}

.check-list span {
    align-items: center;
    background: var(--erex-soft);
    border: 1px solid var(--erex-line);
    border-radius: 8px;
    color: var(--erex-ink);
    display: flex;
    font-weight: 600;
    gap: 10px;
    padding: 13px 14px;
}

.check-list i {
    color: var(--erex-accent);
}

.spec-table {
    border: 1px solid var(--erex-line);
    margin: 28px 0;
}

.spec-table th {
    color: var(--erex-ink);
    width: 42%;
}

.spec-table td {
    color: var(--erex-muted);
}

.text-link {
    color: var(--erex-accent);
    font-weight: 700;
    text-decoration: none;
}

.demo-section .eyebrow,
.demo-section h2 {
    color: #fff;
}

.video-frame {
    border-radius: 8px;
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.28);
    margin: 0 auto;
    max-width: 960px;
    overflow: hidden;
}

.video-frame video {
    background: #000;
    display: block;
    width: 100%;
}

.usage-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}

.usage-grid img {
    aspect-ratio: 1 / 1;
    border-radius: 8px;
    object-fit: cover;
    width: 100%;
}

.response-section {
    background: #fff;
}

.immersive-panel {
    overflow: hidden;
}

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

.application-grid article {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 8px;
    min-height: 270px;
    padding: 30px;
    transition: transform 180ms ease, background 180ms ease;
}

.application-grid article:hover {
    background: rgba(255, 255, 255, 0.12);
    transform: translateY(-4px);
}

.application-grid span {
    color: var(--erex-warm);
    display: block;
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 32px;
}

.application-grid h3 {
    font-size: 24px;
    margin-bottom: 14px;
}

.supply-section {
    background-image:
        linear-gradient(135deg, rgba(16, 25, 45, 0.98), rgba(8, 18, 34, 0.94)),
        url("../images/ab2.jpg");
}

.supply-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
}

.supply-grid div {
    background: rgba(255, 255, 255, 0.09);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 8px;
    min-height: 150px;
    padding: 24px 18px;
}

.supply-grid strong {
    color: #fff;
    display: block;
    font-size: 26px;
    line-height: 1.15;
    margin-bottom: 12px;
}

.supply-grid span {
    color: rgba(255, 255, 255, 0.72);
    display: block;
    line-height: 1.35;
}

.credential-section {
    background-image:
        linear-gradient(135deg, rgba(9, 18, 34, 0.98), rgba(17, 38, 57, 0.94)),
        url("../images/g2.jpg");
}

.credential-image {
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.28);
    display: block;
    padding: 14px;
    width: 100%;
}

.mini-points {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 28px;
}

.mini-points span {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 999px;
    color: #fff;
    font-weight: 600;
    padding: 10px 14px;
}

.mini-points i {
    color: #74d5dc;
    margin-right: 7px;
}

.cta-band {
    background: var(--erex-accent);
    color: #fff;
    padding: 54px 0;
}

.cta-band .container {
    align-items: center;
    display: flex;
    gap: 28px;
    justify-content: space-between;
}

.cta-band .eyebrow,
.cta-band h2 {
    color: #fff;
    margin-bottom: 0;
}

.cta-band .btn-light {
    color: var(--erex-accent-dark);
    font-weight: 700;
}

.sticky-contact-bar {
    align-items: center;
    background: rgba(16, 25, 45, 0.96);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 8px 8px 0 0;
    bottom: 0;
    box-shadow: 0 -14px 38px rgba(8, 18, 34, 0.24);
    color: #fff;
    display: flex;
    gap: 18px;
    justify-content: space-between;
    left: 50%;
    max-width: 1180px;
    padding: 10px 16px;
    position: fixed;
    transform: translateX(-50%);
    width: calc(100% - 32px);
    z-index: 1040;
}

.sticky-contact-bar strong,
.sticky-contact-bar span {
    display: block;
}

.sticky-contact-bar strong {
    font-size: 15px;
    line-height: 1.25;
}

.sticky-contact-bar span {
    color: rgba(255, 255, 255, 0.68);
    font-size: 13px;
    margin-top: 3px;
}

.sticky-actions {
    display: flex;
    flex: 0 0 auto;
    gap: 10px;
}

.sticky-actions a {
    align-items: center;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 8px;
    color: #fff;
    display: inline-flex;
    font-size: 13px;
    font-weight: 700;
    gap: 7px;
    min-height: 38px;
    padding: 8px 13px;
    text-decoration: none;
}

.sticky-actions a:hover {
    background: rgba(255, 255, 255, 0.1);
}

.sticky-actions .primary-sticky {
    background: var(--erex-accent);
    border-color: var(--erex-accent);
}

.sticky-actions .primary-sticky:hover {
    background: var(--erex-accent-dark);
    border-color: var(--erex-accent-dark);
}

.lead-modal {
    align-items: center;
    display: none;
    inset: 0;
    justify-content: center;
    padding: 22px;
    position: fixed;
    z-index: 2000;
}

.lead-modal.is-open {
    display: flex;
}

.lead-modal__backdrop {
    background: rgba(8, 18, 34, 0.72);
    inset: 0;
    position: absolute;
}

.lead-modal__dialog {
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 28px 80px rgba(0, 0, 0, 0.32);
    max-height: calc(100vh - 44px);
    max-width: 760px;
    overflow-y: auto;
    padding: 34px;
    position: relative;
    width: min(100%, 760px);
    z-index: 1;
}

.lead-modal__close {
    align-items: center;
    background: var(--erex-soft);
    border: 1px solid var(--erex-line);
    border-radius: 50%;
    color: var(--erex-ink);
    display: inline-flex;
    height: 40px;
    justify-content: center;
    position: absolute;
    right: 18px;
    top: 18px;
    width: 40px;
}

.lead-modal__intro {
    padding-right: 44px;
}

.lead-modal__intro h2 {
    color: var(--erex-ink);
    font-size: 32px;
    line-height: 1.16;
    margin-bottom: 12px;
}

.lead-modal__intro p:last-child {
    color: var(--erex-muted);
    font-size: 16px;
    line-height: 1.55;
    margin-bottom: 22px;
}

.lead-form {
    display: grid;
    gap: 16px;
}

.lead-form__grid {
    display: grid;
    gap: 14px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.lead-form label {
    display: grid;
    gap: 7px;
}

.lead-form label span {
    color: var(--erex-ink);
    font-size: 13px;
    font-weight: 700;
}

.lead-form input,
.lead-form select,
.lead-form textarea {
    background: #fff;
    border: 1px solid var(--erex-line);
    border-radius: 8px;
    color: var(--erex-ink);
    font: inherit;
    min-height: 48px;
    padding: 11px 13px;
    width: 100%;
}

.lead-form textarea {
    min-height: 112px;
    resize: vertical;
}

.lead-form input:focus,
.lead-form select:focus,
.lead-form textarea:focus {
    border-color: var(--erex-accent);
    box-shadow: 0 0 0 3px rgba(14, 124, 134, 0.13);
    outline: none;
}

.lead-submit-btn {
    justify-self: start;
    min-width: 160px;
}

.lead-form__status {
    color: var(--erex-muted);
    font-size: 14px;
    margin: 0;
}

.lead-form__status.is-success {
    color: #087a4d;
    font-weight: 700;
}

.lead-form__status.is-error {
    color: #b42318;
    font-weight: 700;
}

body.lead-modal-open {
    overflow: hidden;
}

.product-lead-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 30px;
}

.product-gallery-cta {
    background:
        linear-gradient(135deg, rgba(16, 25, 45, 0.96), rgba(8, 18, 34, 0.98)),
        url("../images/banner2.jpg") center / cover no-repeat;
    border-radius: 8px;
    color: #fff;
    margin-top: 46px;
    padding: 34px;
    text-align: center;
}

.product-gallery-cta .eyebrow,
.product-gallery-cta h3 {
    color: #fff;
}

.product-gallery-cta h3 {
    font-size: 30px;
    margin-bottom: 22px;
}

.faq-page {
    overflow: hidden;
}

.faq-hero {
    background:
        linear-gradient(110deg, rgba(247, 250, 252, 0.96), rgba(255, 255, 255, 0.9) 48%, rgba(14, 124, 134, 0.18)),
        url("../images/banner2.jpg") center / cover no-repeat;
    padding: 102px 0 44px;
}

.faq-hero__content {
    max-width: 820px;
}

.faq-hero h1 {
    color: var(--erex-ink);
    font-size: 44px;
    line-height: 1.05;
    margin-bottom: 20px;
}

.faq-hero p:not(.eyebrow) {
    color: var(--erex-muted);
    font-size: 19px;
    line-height: 1.7;
    margin-bottom: 30px;
}

.faq-topic-grid {
    display: grid;
    gap: 12px;
    grid-template-columns: repeat(6, minmax(0, 1fr));
}

.faq-index {
    padding-bottom: 118px;
    padding-top: 58px;
}

.faq-topic-grid a {
    align-items: center;
    background: #fff;
    border: 1px solid var(--erex-line);
    border-radius: 999px;
    color: var(--erex-ink);
    display: flex;
    font-size: 14px;
    font-weight: 700;
    justify-content: center;
    min-height: 52px;
    padding: 12px 14px;
    text-align: center;
    text-decoration: none;
    transition: transform 180ms ease, border-color 180ms ease;
}

.faq-topic-grid a:hover {
    border-color: var(--erex-accent);
    color: var(--erex-accent);
    transform: translateY(-2px);
}

.faq-list {
    background-image:
        linear-gradient(135deg, rgba(16, 25, 45, 0.97), rgba(8, 18, 34, 0.98)),
        url("../images/g2.jpg");
}

.faq-group {
    display: grid;
    gap: 14px;
    grid-template-columns: 1fr;
    margin: 0 auto 54px;
    max-width: 960px;
}

.faq-group:last-child {
    margin-bottom: 0;
}

.faq-group__title {
    margin: 0 auto 10px;
    max-width: 720px;
    padding-right: 0;
    position: static;
    align-self: start;
    text-align: center;
}

.faq-group__title h2 {
    font-size: 34px;
    margin-bottom: 0;
}

.faq-item {
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid rgba(255, 255, 255, 0.7);
    border-radius: 8px;
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.16);
    overflow: hidden;
}

.faq-item summary {
    align-items: center;
    color: var(--erex-ink);
    cursor: pointer;
    display: flex;
    font-size: 18px;
    font-weight: 700;
    gap: 18px;
    justify-content: space-between;
    list-style: none;
    padding: 22px 24px;
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-item summary i {
    color: var(--erex-accent);
    transition: transform 180ms ease;
}

.faq-item[open] summary i {
    transform: rotate(45deg);
}

.faq-item p {
    border-top: 1px solid var(--erex-line);
    color: var(--erex-muted);
    font-size: 16px;
    line-height: 1.7;
    margin: 0;
    padding: 0 24px 24px;
}

footer.w3l-footer-29-main .footer-29 {
    background: #10192d;
}

@media (max-width: 991px) {
    .erex-hero {
        padding-top: 118px;
    }

    .erex-hero h1 {
        font-size: 42px;
    }

    .proof-grid,
    .feature-grid,
    .usage-grid,
    .application-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

    .cta-band .container {
        align-items: flex-start;
        flex-direction: column;
    }

    .sticky-contact-bar {
        align-items: stretch;
        flex-direction: column;
    }

    .sticky-actions {
        display: grid;
        grid-template-columns: 1fr 1fr 1.4fr;
    }

    .lead-modal__dialog {
        padding: 28px;
    }

    .faq-hero h1 {
        font-size: 42px;
    }

    .faq-topic-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .faq-group {
        grid-template-columns: 1fr;
    }

    .faq-group__title {
        padding-right: 0;
        position: static;
    }
}

@media (max-width: 767px) {
    #site-header .navbar {
        min-height: 64px;
        padding-bottom: 8px;
        padding-top: 8px;
    }

    #site-header h1 {
        margin-bottom: 0;
    }

    .erex-logo {
        height: 36px;
    }

    .navbar-toggler {
        padding: 4px 8px;
    }

    .brand-copy {
        display: none;
    }

    .erex-hero {
        padding: 34px 0 36px;
    }

    .eyebrow {
        font-size: 11px;
        margin-bottom: 8px;
    }

    .erex-hero h1 {
        font-size: 29px;
        line-height: 1.08;
        margin-bottom: 14px;
        max-width: 360px;
    }

    .hero-lead {
        font-size: 15px;
        line-height: 1.55;
        margin-bottom: 0;
    }

    .hero-actions {
        display: grid;
        gap: 10px;
        grid-template-columns: 1fr 1fr;
        margin: 20px 0 16px;
    }

    .hero-actions .btn {
        align-items: center;
        display: inline-flex;
        font-size: 13px;
        justify-content: center;
        min-height: 46px;
        padding: 10px 12px;
        white-space: normal;
    }

    .trust-row {
        gap: 8px;
        grid-template-columns: repeat(3, minmax(0, 1fr));
        margin-top: 14px;
    }

    .trust-row div {
        background: rgba(255, 255, 255, 0.78);
        border: 1px solid var(--erex-line);
        border-left: 3px solid var(--erex-warm);
        border-radius: 8px;
        min-height: 56px;
        padding: 8px;
    }

    .trust-row strong {
        font-size: 14px;
        line-height: 1.1;
    }

    .trust-row span {
        font-size: 10px;
        line-height: 1.2;
        margin-top: 3px;
    }

    .hero-media {
        aspect-ratio: 16 / 10;
        margin-top: 18px;
    }

    .hero-media img {
        object-position: center top;
    }

    .b2b-home h2 {
        font-size: 30px;
    }

    .proof-grid,
    .feature-grid,
    .usage-grid,
    .application-grid,
    .supply-grid,
    .check-list {
        grid-template-columns: 1fr;
    }

    .section-pad {
        padding: 58px 0;
    }

    body {
        padding-bottom: 146px;
    }

    .application-grid article {
        min-height: auto;
        padding: 24px;
    }

    .application-grid span {
        margin-bottom: 18px;
    }

    .supply-grid {
        gap: 10px;
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .supply-grid div {
        min-height: 118px;
        padding: 18px 14px;
    }

    .supply-grid strong {
        font-size: 21px;
    }

    .mini-points span {
        border-radius: 8px;
        width: 100%;
    }

    .sticky-contact-bar {
        border-radius: 0;
        left: 0;
        padding: 10px 12px;
        transform: none;
        width: 100%;
    }

    .sticky-contact-bar strong {
        font-size: 14px;
    }

    .sticky-contact-bar span {
        font-size: 12px;
    }

    .sticky-actions {
        gap: 8px;
        grid-template-columns: 0.8fr 0.8fr 1.2fr;
    }

    .sticky-actions a {
        font-size: 12px;
        justify-content: center;
        min-height: 40px;
        padding: 9px 8px;
    }

    .lead-modal {
        align-items: flex-end;
        padding: 0;
    }

    .lead-modal__dialog {
        border-radius: 8px 8px 0 0;
        max-height: min(72vh, 610px);
        padding: 16px 14px 12px;
        width: 100%;
    }

    .lead-modal__intro {
        padding-right: 38px;
    }

    .lead-modal__intro h2 {
        font-size: 18px;
        line-height: 1.15;
        margin-bottom: 6px;
    }

    .lead-modal__intro p:last-child {
        font-size: 12px;
        line-height: 1.45;
        margin-bottom: 8px;
    }

    .lead-modal__close {
        height: 34px;
        right: 12px;
        top: 12px;
        width: 34px;
    }

    .lead-form {
        gap: 10px;
    }

    .lead-form__grid {
        gap: 10px;
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .lead-form label {
        gap: 5px;
    }

    .lead-form label span {
        font-size: 12px;
    }

    .lead-form input,
    .lead-form select,
    .lead-form textarea {
        border-radius: 7px;
        font-size: 14px;
        min-height: 38px;
        padding: 7px 10px;
    }

    .lead-form textarea {
        min-height: 58px;
    }

    .lead-submit-btn {
        min-height: 42px;
        padding-bottom: 9px;
        padding-top: 9px;
        justify-self: stretch;
        width: 100%;
    }

    .lead-form__status {
        font-size: 12px;
    }

    .product-lead-actions {
        display: grid;
        grid-template-columns: 1fr;
    }

    .product-lead-actions .btn {
        justify-content: center;
    }

    .product-gallery-cta {
        margin-top: 32px;
        padding: 24px 16px;
    }

    .product-gallery-cta h3 {
        font-size: 23px;
    }

    .faq-hero {
        padding: 118px 0 58px;
    }

    .faq-hero h1 {
        font-size: 34px;
    }

    .faq-hero p:not(.eyebrow) {
        font-size: 15px;
    }

    .faq-topic-grid {
        grid-template-columns: 1fr;
    }

    .faq-topic-grid a {
        min-height: 58px;
    }

    .faq-group {
        margin-bottom: 34px;
    }

    .faq-group__title h2 {
        font-size: 26px;
    }

    .faq-item summary {
        font-size: 16px;
        padding: 18px;
    }

    .faq-item p {
        font-size: 14px;
        padding: 0 18px 18px;
    }
}
