/* =========================================================
   RESET
   ========================================================= */

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;

    font-family:
        Inter,
        ui-sans-serif,
        system-ui,
        -apple-system,
        BlinkMacSystemFont,
        "Segoe UI",
        sans-serif;

    color: #10281f;
    background: #ffffff;

    font-size: 16px;
    line-height: 1.6;

    -webkit-font-smoothing: antialiased;
}

body.finder-open {
    overflow: hidden;
}

img {
    display: block;
    max-width: 100%;
}

a {
    color: inherit;
    text-decoration: none;
}

button,
input,
select,
textarea {
    font: inherit;
}


/* =========================================================
   VARIABLES
   ========================================================= */

:root {
    --green: #08723f;
    --green-dark: #0b2b20;
    --green-deep: #082219;

    --text: #10281f;
    --muted: #67776f;

    --soft: #f4f7f3;
    --border: #dfe7e2;

    --radius: 22px;
}


/* =========================================================
   GLOBAL
   ========================================================= */

.container {
    width: min(1380px, calc(100% - 64px));
    margin-inline: auto;
}

.section {
    padding: 76px 0;
}

.eyebrow {
    display: block;

    margin-bottom: 10px;

    color: var(--green);

    font-size: 12px;
    font-weight: 800;

    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.category {
    color: var(--green);

    font-size: 12px;
    font-weight: 800;

    letter-spacing: 0.07em;
    text-transform: uppercase;
}

.simple-link {
    color: var(--green);

    font-size: 14px;
    font-weight: 750;

    transition: opacity 0.2s ease;
}

.simple-link:hover {
    opacity: 0.7;
}


/* =========================================================
   HEADER
   ========================================================= */

.site-header {
    position: sticky;
    top: 0;
    z-index: 100;

    background: rgba(255, 255, 255, 0.97);

    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);

    border-bottom: 1px solid var(--border);
}

.header-inner {
    height: 72px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 40px;
}

.logo {
    display: flex;
    align-items: center;

    gap: 9px;

    color: var(--green-dark);

    font-size: 16px;
    font-weight: 800;

    white-space: nowrap;
}



.logo-mark {
    width: 24px;
    height: 24px;
    flex: 0 0 24px;
    display: block;
    object-fit: contain;
}

.footer-brand .logo-mark {
    width: 21px;
    height: 21px;
    flex-basis: 21px;
}

.main-nav {
    display: flex;
    align-items: center;

    gap: 38px;
}

.main-nav a {
    color: #52645b;

    font-size: 14px;
    font-weight: 700;

    white-space: nowrap;

    transition: color 0.2s ease;
}

.main-nav a:hover {
    color: var(--green);
}


/* =========================================================
   BUTTONS
   ========================================================= */

.button {
    min-width: 128px;
    min-height: 46px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    padding: 0 28px;

    border-radius: 999px;

    font-size: 14px;
    font-weight: 750;

    transition:
        transform 0.2s ease,
        background 0.2s ease,
        border-color 0.2s ease;
}

.button:hover {
    transform: translateY(-1px);
}

.button-primary {
    color: #ffffff;
    background: var(--green);
}

.button-primary:hover {
    background: #075f35;
}

.button-secondary {
    color: var(--green-dark);

    border: 1px solid #cad8cf;
}

.button-secondary:hover {
    border-color: #9eb9a8;
}


/* =========================================================
   HERO
   ========================================================= */

.hero {
    padding: 52px 0 58px;
}

.hero-grid {
    display: grid;
    grid-template-columns: 0.82fr 1.18fr;

    align-items: center;

    gap: 64px;
}

.hero-content h1 {
    max-width: 620px;

    margin: 0;

    color: var(--text);

    font-size: clamp(52px, 5.5vw, 78px);
    line-height: 0.95;

    letter-spacing: -0.06em;
}

.hero-content h1 span {
    display: block;

    color: var(--green);
}

.hero-text {
    max-width: 540px;

    margin: 23px 0 0;

    color: var(--muted);

    font-size: 17px;
    line-height: 1.65;
}

.hero-actions {
    display: flex;

    gap: 20px;

    margin-top: 29px;
}

.hero-actions .button {
    min-width: 200px;
}

.hero-trust {
    display: flex;
    flex-wrap: wrap;

    gap: 20px;

    margin-top: 24px;

    color: #65776e;

    font-size: 12px;
    font-weight: 600;
}

.hero-image {
    position: relative;

    height: 445px;

    overflow: hidden;

    border-radius: 25px;

    background: #e9efe8;
}

.hero-image > img {
    width: 100%;
    height: 100%;

    object-fit: cover;
    object-position: center;
}

.hero-floating-box {
    position: absolute;

    left: 18px;
    top: 18px;

    width: 260px;

    padding: 16px 18px;

    background: rgba(255, 255, 255, 0.96);

    border: 1px solid rgba(223, 231, 226, 0.8);
    border-radius: 14px;

    box-shadow:
        0 16px 40px rgba(0, 0, 0, 0.13);
}

.hero-floating-box strong,
.hero-floating-box span {
    display: block;
}

.hero-floating-box strong {
    font-size: 14px;
}

.hero-floating-box span {
    margin-top: 3px;

    color: var(--muted);

    font-size: 12px;
    line-height: 1.45;
}


/* =========================================================
   FINDER MODAL
   ========================================================= */

.finder-modal {
    position: fixed;
    inset: 0;

    z-index: 1000;

    display: flex;
    align-items: center;
    justify-content: center;

    padding: 32px;

    visibility: hidden;
    pointer-events: none;

    opacity: 0;

    transition:
        opacity 0.2s ease,
        visibility 0.2s ease;
}

.finder-modal.is-open {
    visibility: visible;
    pointer-events: auto;

    opacity: 1;
}

.finder-modal-backdrop {
    position: absolute;
    inset: 0;

    background: rgba(7, 24, 18, 0.58);

    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
}

.finder-dialog {
    position: relative;
    z-index: 2;

    width: min(1120px, 100%);
    max-height: calc(100vh - 64px);

    display: flex;
    flex-direction: column;

    overflow: hidden;

    background: #ffffff;

    border: 1px solid rgba(223, 231, 226, 0.9);
    border-radius: 26px;

    box-shadow:
        0 35px 100px rgba(0, 0, 0, 0.26);

    transform: translateY(12px) scale(0.985);

    transition:
        transform 0.22s ease;
}

.finder-modal.is-open .finder-dialog {
    transform: translateY(0) scale(1);
}


/* ---------------------------------------------------------
   FINDER HEADER
   --------------------------------------------------------- */

.finder-modal-header {
    min-height: 84px;

    display: grid;
    grid-template-columns: 150px 1fr 150px;
    align-items: center;

    gap: 28px;

    padding: 19px 25px;

    flex: 0 0 auto;

    background: #fbfcfb;

    border-bottom: 1px solid var(--border);
}

.finder-back-button {
    width: fit-content;

    display: inline-flex;
    align-items: center;

    gap: 7px;

    padding: 8px 0;

    color: #53675d;
    background: transparent;

    border: 0;

    font-size: 13px;
    font-weight: 750;

    cursor: pointer;

    transition: color 0.2s ease;
}

.finder-back-button:hover {
    color: var(--green);
}

.finder-back-button[hidden] {
    visibility: hidden;
    display: inline-flex;
}

.finder-progress-area {
    width: 100%;
}

.finder-question-number {
    margin-bottom: 8px;

    color: #52645b;

    font-size: 12px;
    font-weight: 750;

    text-align: center;
}

.finder-progress-track {
    width: 100%;
    height: 7px;

    overflow: hidden;

    background: #e7ece8;

    border-radius: 999px;
}

.finder-progress-fill {
    width: 12.5%;
    height: 100%;

    background: var(--green);

    border-radius: inherit;

    transition: width 0.28s ease;
}

.finder-close-button {
    width: 42px;
    height: 42px;

    justify-self: end;

    display: flex;
    align-items: center;
    justify-content: center;

    padding: 0;

    color: #55675e;
    background: #ffffff;

    border: 1px solid var(--border);
    border-radius: 50%;

    font-size: 27px;
    font-weight: 300;
    line-height: 1;

    cursor: pointer;

    transition:
        color 0.2s ease,
        background 0.2s ease,
        border-color 0.2s ease,
        transform 0.2s ease;
}

.finder-close-button:hover {
    color: var(--green-dark);
    background: #f3f7f4;

    border-color: #c8d8ce;

    transform: rotate(3deg);
}


/* ---------------------------------------------------------
   FINDER CONTENT
   --------------------------------------------------------- */

.finder-content {
    min-height: 540px;

    overflow-y: auto;

    padding: 52px 66px 58px;
}

.finder-question-heading {
    max-width: 760px;

    margin: 0 auto 34px;

    text-align: center;
}

.finder-question-heading .eyebrow {
    margin-bottom: 10px;
}

.finder-question-heading h2 {
    margin: 0;

    color: var(--text);

    font-size: 42px;
    line-height: 1.05;

    letter-spacing: -0.045em;
}

.finder-question-heading p {
    max-width: 620px;

    margin: 15px auto 0;

    color: var(--muted);

    font-size: 15px;
    line-height: 1.6;
}


/* ---------------------------------------------------------
   FINDER OPTIONS
   --------------------------------------------------------- */

.finder-options {
    width: 100%;
}

.finder-options-text {
    max-width: 760px;

    display: grid;
    grid-template-columns: repeat(2, 1fr);

    gap: 13px;

    margin-inline: auto;
}

.finder-options-text .finder-option:last-child:nth-child(odd) {
    grid-column: 1 / -1;
}

.finder-options-image {
    display: grid;
    grid-template-columns: repeat(4, 1fr);

    gap: 15px;
}

.finder-option {
    position: relative;

    overflow: hidden;

    min-width: 0;

    padding: 0;

    color: var(--text);
    background: #ffffff;

    border: 1px solid #dce5df;
    border-radius: 17px;

    text-align: left;

    cursor: pointer;

    transition:
        transform 0.18s ease,
        border-color 0.18s ease,
        box-shadow 0.18s ease,
        background 0.18s ease;
}

.finder-option:hover {
    transform: translateY(-2px);

    border-color: #9dbba9;

    box-shadow:
        0 12px 28px rgba(18, 53, 40, 0.07);
}

.finder-option:focus-visible {
    outline: 3px solid rgba(8, 114, 63, 0.18);
    outline-offset: 3px;
}

.finder-option.is-selected {
    border-color: var(--green);

    background: #f5faf7;

    box-shadow:
        0 0 0 2px rgba(8, 114, 63, 0.08);
}


/* Text cards */

.finder-options-text .finder-option {
    min-height: 72px;

    display: flex;
    align-items: center;

    padding: 18px 22px;
}

.finder-options-text .finder-option-content {
    width: 100%;
}

.finder-options-text .finder-option strong {
    display: block;

    font-size: 15px;
    line-height: 1.35;
}


/* Image cards */

.finder-options-image .finder-option {
    display: flex;
    flex-direction: column;
}

.finder-options-image .finder-option img {
    width: 100%;
    aspect-ratio: 4 / 3;

    object-fit: cover;

    background: #eef3ef;
}

.finder-options-image .finder-option-content {
    min-height: 67px;

    display: flex;
    align-items: center;

    padding: 15px 16px;
}

.finder-options-image .finder-option strong {
    display: block;

    font-size: 14px;
    line-height: 1.3;
}


/* ---------------------------------------------------------
   FINDER PROFILE
   --------------------------------------------------------- */

.finder-profile {
    max-width: 900px;

    margin-inline: auto;
}

.finder-profile > .eyebrow {
    text-align: center;
}

.finder-profile > h2 {
    max-width: 720px;

    margin: 0 auto;

    font-size: 42px;
    line-height: 1.05;

    text-align: center;

    letter-spacing: -0.045em;
}

.finder-profile-intro {
    max-width: 650px;

    margin: 16px auto 34px;

    color: var(--muted);

    font-size: 15px;
    line-height: 1.6;

    text-align: center;
}

.finder-profile-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);

    gap: 12px;
}

.finder-profile-item {
    min-width: 0;

    padding: 18px;

    background: #f8faf8;

    border: 1px solid var(--border);
    border-radius: 14px;
}

.finder-profile-item span,
.finder-profile-item strong {
    display: block;
}

.finder-profile-item span {
    margin-bottom: 5px;

    color: #7a8981;

    font-size: 11px;
    font-weight: 750;

    text-transform: uppercase;

    letter-spacing: 0.05em;
}

.finder-profile-item strong {
    color: var(--green-dark);

    font-size: 14px;
    line-height: 1.35;
}

.finder-profile-next {
    margin-top: 28px;

    padding: 19px 22px;

    background: #edf7f1;

    border: 1px solid #cfe5d7;
    border-radius: 15px;

    text-align: center;
}

.finder-profile-next span,
.finder-profile-next strong {
    display: block;
}

.finder-profile-next span {
    color: #66786e;

    font-size: 12px;
}

.finder-profile-next strong {
    margin-top: 2px;

    color: var(--green);

    font-size: 16px;
}


/* ---------------------------------------------------------
   FINDER FOOTER
   --------------------------------------------------------- */

.finder-modal-footer {
    min-height: 58px;

    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;

    gap: 8px 25px;

    padding: 13px 24px;

    flex: 0 0 auto;

    color: #728178;
    background: #fbfcfb;

    border-top: 1px solid var(--border);

    font-size: 11px;
    font-weight: 650;
}


/* =========================================================
   SECTION HEADING
   ========================================================= */

.section-heading {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;

    gap: 40px;

    margin-bottom: 32px;
}

.section-heading h2 {
    max-width: 680px;

    margin: 0;

    font-size: 44px;
    line-height: 1.04;

    letter-spacing: -0.045em;
}


/* =========================================================
   GUIDES
   ========================================================= */

.guides-section {
    padding-top: 72px;
    padding-bottom: 72px;

    border-top: 1px solid var(--border);
}


/* =========================================================
   WIRELESS FEATURE
   ========================================================= */

.wireless-feature {
    display: grid;
    grid-template-columns: 1.55fr 0.45fr;

    overflow: hidden;

    margin-bottom: 32px;

    background: #ffffff;

    border: 1px solid var(--border);
    border-radius: var(--radius);
}

.wireless-image {
    height: 335px;

    overflow: hidden;
}

.wireless-image img {
    width: 100%;
    height: 100%;

    object-fit: cover;
    object-position: center;
}

.wireless-copy {
    display: flex;
    flex-direction: column;
    justify-content: center;

    padding: 38px;
}

.wireless-copy h3 {
    margin: 9px 0 12px;

    font-size: 30px;
    line-height: 1.08;

    letter-spacing: -0.035em;
}

.wireless-copy p {
    margin: 0 0 21px;

    color: var(--muted);

    font-size: 15px;
    line-height: 1.65;
}


/* =========================================================
   FULL-WIDTH INFOGRAPHICS
   ========================================================= */

.infographic-feature {
    overflow: hidden;

    margin-top: 32px;

    background: #ffffff;

    border: 1px solid var(--border);
    border-radius: var(--radius);

    box-shadow:
        0 8px 26px rgba(20, 50, 39, 0.025);
}

.infographic-image {
    display: block;

    width: 100%;

    background: #f4f6f2;
}

.infographic-image img {
    display: block;

    width: 100%;
    height: auto;

    max-width: none;

    object-fit: contain;
}

.infographic-caption {
    min-height: 70px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 30px;

    padding: 18px 25px;

    border-top: 1px solid var(--border);
}


/* =========================================================
   FOOTER
   ========================================================= */

.footer {
    padding: 27px 0;

    background: #fafbf9;

    border-top: 1px solid var(--border);
}

.footer-inner {
    display: grid;
    grid-template-columns: 1.2fr auto auto;

    align-items: center;

    gap: 52px;
}

.footer-brand {
    display: flex;
    flex-direction: column;

    align-items: flex-start;

    gap: 3px;
}

.footer-brand .logo {
    font-size: 15px;
}


.footer-brand p {
    max-width: 440px;

    margin: 3px 0 0;

    color: #6b7a72;

    font-size: 13px;
    font-weight: 500;

    line-height: 1.45;
}

.footer-links {
    display: flex;
    align-items: center;

    gap: 26px;

    color: #66766e;

    font-size: 13px;
    font-weight: 600;
}

.footer-links a {
    transition: color 0.2s ease;
}

.footer-links a:hover {
    color: var(--green);
}

.footer-copyright {
    color: #78877f;

    font-size: 13px;
    font-weight: 500;

    white-space: nowrap;
}


/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 1000px) {

    .container {
        width: min(100% - 40px, 1380px);
    }

    .section {
        padding: 64px 0;
    }


    /* Header */

    .header-inner {
        gap: 24px;
    }

    .main-nav {
        gap: 20px;
    }

    .main-nav a {
        font-size: 13px;
    }


    /* Hero */

    .hero {
        padding: 46px 0 54px;
    }

    .hero-grid {
        grid-template-columns: 1fr;

        gap: 40px;
    }

    .hero-content {
        max-width: 720px;
    }

    .hero-content h1 {
        max-width: 680px;

        font-size: clamp(52px, 8vw, 72px);
    }

    .hero-image {
        height: 480px;
    }


    /* Finder */

    .finder-modal {
        padding: 24px;
    }

    .finder-dialog {
        max-height: calc(100vh - 48px);
    }

    .finder-content {
        min-height: 500px;

        padding: 44px 38px 50px;
    }

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

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


    /* Guides */

    .guides-section {
        padding-top: 64px;
        padding-bottom: 64px;
    }

    .wireless-feature {
        grid-template-columns: 1fr;
    }

    .wireless-image {
        height: 420px;
    }

    .wireless-copy {
        padding: 32px;
    }


    /* Footer */

    .footer-inner {
        grid-template-columns: 1fr auto;

        gap: 24px 38px;
    }

    .footer-links {
        justify-content: flex-end;
    }

    .footer-copyright {
        grid-column: 1 / -1;
    }
}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 680px) {

    body {
        font-size: 15px;
        overflow-x: hidden;
    }

    body.finder-open {
        overflow: hidden;
    }

    .container {
        width: calc(100% - 32px);
    }

    .section {
        padding: 48px 0;
    }


    /* =====================================================
       MOBILE HEADER
       ===================================================== */

    .site-header {
        position: relative;
    }

    .header-inner {
        height: auto;
        min-height: 0;

        display: block;

        padding: 15px 0 12px;
    }

    .logo {
        width: fit-content;

        margin-bottom: 13px;

        font-size: 15px;
    }

    .main-nav {
        width: 100%;

        display: grid;
        grid-template-columns: repeat(4, 1fr);

        gap: 0;

        overflow: hidden;

        border: 1px solid var(--border);
        border-radius: 12px;
    }

    .main-nav a {
        min-width: 0;

        padding: 9px 3px;

        color: #52645b;

        font-size: 11px;
        font-weight: 700;

        text-align: center;

        border-right: 1px solid var(--border);
    }

    .main-nav a:last-child {
        border-right: 0;
    }

    .main-nav a:active {
        background: var(--soft);
    }


    /* =====================================================
       MOBILE HERO
       ===================================================== */

    .hero {
        padding: 38px 0 46px;
    }

    .hero-grid {
        grid-template-columns: 1fr;

        gap: 30px;
    }

    .eyebrow {
        margin-bottom: 9px;

        font-size: 11px;
    }

    .hero-content h1 {
        max-width: 100%;

        font-size: clamp(44px, 13.5vw, 58px);
        line-height: 0.94;

        letter-spacing: -0.055em;
    }

    .hero-text {
        max-width: 100%;

        margin-top: 20px;

        font-size: 16px;
        line-height: 1.55;
    }

    .hero-actions {
        width: 100%;

        display: grid;
        grid-template-columns: 1fr 1fr;

        gap: 10px;

        margin-top: 24px;
    }

    .hero-actions .button {
        min-width: 0;
    }

    .button {
        width: 100%;
        min-width: 0;
        min-height: 48px;

        padding: 0 16px;

        font-size: 14px;
    }

    .hero-trust {
        display: grid;
        grid-template-columns: 1fr;

        gap: 4px;

        margin-top: 19px;

        font-size: 12px;
        line-height: 1.45;
    }

    .hero-image {
        height: auto;
        aspect-ratio: 4 / 3;

        border-radius: 18px;
    }

    .hero-image > img {
        object-position: center;
    }

    .hero-floating-box {
        left: 12px;
        top: 12px;
        right: auto;
        bottom: auto;

        width: min(205px, calc(100% - 24px));

        padding: 11px 13px;

        border-radius: 11px;

        box-shadow:
            0 10px 28px rgba(0, 0, 0, 0.12);
    }

    .hero-floating-box strong {
        font-size: 13px;
        line-height: 1.25;
    }

    .hero-floating-box span {
        margin-top: 2px;

        font-size: 11px;
        line-height: 1.35;
    }


    /* =====================================================
       MOBILE FINDER MODAL
       ===================================================== */

    .finder-modal {
        align-items: stretch;

        padding: 0;
    }

    .finder-modal-backdrop {
        display: none;
    }

    .finder-dialog {
        width: 100%;
        max-height: none;
        height: 100dvh;

        border: 0;
        border-radius: 0;

        box-shadow: none;
    }

    .finder-modal-header {
        min-height: 70px;

        grid-template-columns: 70px 1fr 44px;

        gap: 10px;

        padding: 13px 15px;

        flex: 0 0 auto;
    }

    .finder-back-button {
        font-size: 12px;
    }

    .finder-question-number {
        margin-bottom: 6px;

        font-size: 11px;
    }

    .finder-progress-track {
        height: 6px;
    }

    .finder-close-button {
        width: 38px;
        height: 38px;

        font-size: 24px;
    }

    .finder-content {
        min-height: 0;

        flex: 1 1 auto;

        padding: 34px 18px 38px;
    }

    .finder-question-heading {
        margin-bottom: 25px;

        text-align: left;
    }

    .finder-question-heading .eyebrow {
        margin-bottom: 8px;
    }

    .finder-question-heading h2 {
        font-size: 31px;
        line-height: 1.02;
    }

    .finder-question-heading p {
        margin: 11px 0 0;

        font-size: 14px;
        line-height: 1.55;
    }

    .finder-options-text {
        grid-template-columns: 1fr;

        gap: 9px;
    }

    .finder-options-text .finder-option:last-child:nth-child(odd) {
        grid-column: auto;
    }

    .finder-options-text .finder-option {
        min-height: 60px;

        padding: 15px 17px;
    }

    .finder-options-text .finder-option strong {
        font-size: 14px;
    }

    .finder-options-image {
        grid-template-columns: repeat(2, 1fr);

        gap: 10px;
    }

    .finder-options-image .finder-option {
        border-radius: 13px;
    }

    .finder-options-image .finder-option img {
        aspect-ratio: 1 / 1;

        object-fit: cover;
    }

    .finder-options-image .finder-option-content {
        min-height: 58px;

        padding: 11px 12px;
    }

    .finder-options-image .finder-option strong {
        font-size: 12px;
        line-height: 1.25;
    }

    .finder-profile > h2 {
        font-size: 31px;
        line-height: 1.02;
    }

    .finder-profile-intro {
        margin: 12px auto 25px;

        font-size: 14px;
    }

    .finder-profile-grid {
        grid-template-columns: 1fr;

        gap: 8px;
    }

    .finder-profile-item {
        padding: 14px 16px;
    }

    .finder-profile-item span {
        margin-bottom: 3px;

        font-size: 10px;
    }

    .finder-profile-item strong {
        font-size: 13px;
    }

    .finder-profile-next {
        margin-top: 20px;

        padding: 16px;
    }

    .finder-profile-next strong {
        font-size: 14px;
    }

    .finder-modal-footer {
        min-height: 0;

        display: grid;

        gap: 2px;

        padding: 10px 18px 12px;

        font-size: 10px;

        text-align: center;
    }


    /* =====================================================
       MOBILE SECTION HEADING
       ===================================================== */

    .section-heading {
        display: flex;
        flex-direction: column;
        align-items: flex-start;

        gap: 8px;

        margin-bottom: 22px;
    }

    .section-heading h2 {
        max-width: 100%;

        font-size: 34px;
        line-height: 1;

        letter-spacing: -0.045em;
    }

    .simple-link {
        font-size: 13px;
    }


    /* =====================================================
       MOBILE GUIDES
       ===================================================== */

    .guides-section {
        padding-top: 48px;
        padding-bottom: 48px;
    }

    .wireless-feature {
        display: flex;
        flex-direction: column;

        margin-bottom: 22px;

        border-radius: 18px;
    }

    .wireless-image {
        height: auto;
        aspect-ratio: 16 / 10;
    }

    .wireless-image img {
        object-fit: cover;
        object-position: center;
    }

    .wireless-copy {
        padding: 23px 20px 24px;
    }

    .category {
        font-size: 11px;
    }

    .wireless-copy h3 {
        margin: 7px 0 9px;

        font-size: 25px;
        line-height: 1.05;
    }

    .wireless-copy p {
        margin-bottom: 17px;

        font-size: 14px;
        line-height: 1.55;
    }


    /* =====================================================
       MOBILE INFOGRAPHICS
       ===================================================== */

    .infographic-feature {
        overflow: hidden;

        margin-top: 22px;

        border-radius: 18px;
    }

    .infographic-image {
        width: 100%;

        overflow: hidden;

        background: #f4f6f2;
    }

    .infographic-image img {
        display: block;

        width: 100%;
        max-width: 100%;
        height: auto;

        object-fit: contain;
    }

    .infographic-caption {
        min-height: 0;

        display: flex;
        align-items: center;
        justify-content: space-between;

        gap: 12px;

        padding: 14px 16px;
    }

    .infographic-caption .category {
        font-size: 10px;
    }

    .infographic-caption .simple-link {
        flex-shrink: 0;

        font-size: 12px;
    }


    /* =====================================================
       MOBILE FOOTER
       ===================================================== */

    .footer {
        padding: 28px 0 24px;
    }

    .footer-inner {
        display: flex;
        flex-direction: column;

        align-items: flex-start;

        gap: 20px;
    }

    .footer-brand {
        gap: 4px;
    }

    .footer-brand .logo {
        margin: 0;

        font-size: 15px;
    }

    .footer-brand p {
        max-width: 320px;

        margin-top: 4px;

        font-size: 13px;
        line-height: 1.5;
    }

    .footer-links {
        width: 100%;

        display: flex;
        flex-wrap: wrap;

        gap: 8px 20px;

        padding-top: 16px;

        font-size: 13px;

        border-top: 1px solid var(--border);
    }

    .footer-copyright {
        width: 100%;

        padding-top: 15px;

        color: #829087;

        font-size: 12px;

        white-space: normal;

        border-top: 1px solid var(--border);
    }
}


/* =========================================================
   VERY SMALL PHONES
   ========================================================= */

@media (max-width: 420px) {

    .container {
        width: calc(100% - 24px);
    }

    .main-nav a {
        padding: 8px 2px;

        font-size: 10px;
    }

    .hero {
        padding-top: 32px;
    }

    .hero-content h1 {
        font-size: clamp(40px, 13.2vw, 52px);
    }

    .hero-text {
        font-size: 15px;
    }

    .hero-actions {
        grid-template-columns: 1fr 1fr;

        gap: 8px;
    }

    .button {
        min-height: 46px;

        padding-inline: 10px;

        font-size: 13px;
    }

    .hero-image {
        aspect-ratio: 1 / 1;
    }

    .hero-floating-box {
        width: 185px;

        padding: 10px 12px;
    }

    .hero-floating-box strong {
        font-size: 12px;
    }

    .hero-floating-box span {
        font-size: 10px;
    }


    /* Finder */

    .finder-modal-header {
        grid-template-columns: 62px 1fr 40px;

        padding-inline: 11px;
    }

    .finder-content {
        padding-inline: 14px;
    }

    .finder-question-heading h2 {
        font-size: 28px;
    }

    .finder-options-image .finder-option-content {
        padding: 10px;
    }

    .finder-options-image .finder-option strong {
        font-size: 11px;
    }

    .finder-profile > h2 {
        font-size: 28px;
    }


    /* Guides */

    .section-heading h2 {
        font-size: 31px;
    }

    .wireless-copy h3 {
        font-size: 23px;
    }
}

/* =========================================================
   FINDER — HIDDEN STATE FIX
   ========================================================= */

.finder-options[hidden],
.finder-question-heading[hidden],
.finder-profile[hidden] {
    display: none !important;
}


/* =========================================================
   COMPACT GARDEN PROFILE
   ========================================================= */

.finder-profile-compact {
    max-width: 760px;
    margin-inline: auto;
    text-align: center;
}

.finder-profile-compact > h2 {
    margin: 0;

    font-size: 40px;
    line-height: 1.05;

    letter-spacing: -0.045em;
}

.finder-profile-compact .finder-profile-intro {
    margin-bottom: 28px;
}

.finder-profile-summary {
    display: grid;
    grid-template-columns: repeat(2, 1fr);

    gap: 10px;

    text-align: left;
}

.finder-profile-summary-item {
    min-height: 74px;

    display: flex;
    align-items: center;

    gap: 14px;

    padding: 15px 17px;

    background: #f8faf8;

    border: 1px solid var(--border);
    border-radius: 14px;
}

.finder-profile-summary-wide {
    grid-column: 1 / -1;
}

.finder-profile-icon {
    width: 38px;
    height: 38px;

    flex: 0 0 38px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #edf6f0;

    border-radius: 10px;

    font-size: 18px;
}

.finder-profile-summary-item div > span,
.finder-profile-summary-item div > strong {
    display: block;
}

.finder-profile-summary-item div > span {
    margin-bottom: 2px;

    color: #7a8981;

    font-size: 10px;
    font-weight: 800;

    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.finder-profile-summary-item div > strong {
    color: var(--green-dark);

    font-size: 14px;
    line-height: 1.35;
}

.finder-results-button {
    min-height: 50px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    gap: 10px;

    margin-top: 25px;
    padding: 0 30px;

    color: #ffffff;
    background: var(--green);

    border: 0;
    border-radius: 999px;

    font-size: 14px;
    font-weight: 800;

    cursor: pointer;

    transition:
        background 0.2s ease,
        transform 0.2s ease;
}

.finder-results-button:hover {
    background: #075f35;

    transform: translateY(-1px);
}

.finder-results-hint {
    margin: 10px 0 0;

    color: #7b8981;

    font-size: 11px;
}


/* =========================================================
   FINDER RESULTS
   ========================================================= */

.finder-results {
    max-width: 900px;

    margin-inline: auto;
}

.finder-results > .eyebrow {
    text-align: center;
}

.finder-results > h2 {
    max-width: 700px;

    margin: 0 auto;

    font-size: 40px;
    line-height: 1.05;

    text-align: center;

    letter-spacing: -0.045em;
}

.finder-results-intro {
    max-width: 650px;

    margin: 14px auto 30px;

    color: var(--muted);

    font-size: 14px;
    line-height: 1.6;

    text-align: center;
}

.finder-result-list {
    display: grid;

    gap: 13px;
}

.finder-result-card {
    position: relative;

    display: grid;
    grid-template-columns: 46px 1fr;

    gap: 18px;

    padding: 20px;

    background: #ffffff;

    border: 1px solid var(--border);
    border-radius: 17px;
}

.finder-result-card.is-winner {
    border-color: #8ec2a3;

    box-shadow:
        0 12px 32px rgba(8, 114, 63, 0.07);
}

.finder-result-rank {
    width: 40px;
    height: 40px;

    display: flex;
    align-items: center;
    justify-content: center;

    color: var(--green);
    background: #edf7f1;

    border-radius: 50%;

    font-size: 15px;
    font-weight: 850;
}

.finder-result-main {
    min-width: 0;
}

.finder-result-heading {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;

    gap: 25px;
}

.finder-result-badge {
    width: fit-content;

    display: block;

    margin-bottom: 7px;
    padding: 4px 8px;

    color: var(--green);
    background: #edf7f1;

    border-radius: 999px;

    font-size: 9px;
    font-weight: 850;

    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.finder-result-badge-alt {
    color: #64766d;
    background: #f1f4f2;
}

.finder-result-brand {
    display: block;

    color: #77867e;

    font-size: 11px;
    font-weight: 750;
}

.finder-result-heading h3 {
    margin: 1px 0 0;

    color: var(--green-dark);

    font-size: 23px;
    line-height: 1.1;

    letter-spacing: -0.03em;
}

.finder-match-score {
    min-width: 64px;

    text-align: right;
}

.finder-match-score strong,
.finder-match-score span {
    display: block;
}

.finder-match-score strong {
    color: var(--green);

    font-size: 22px;
    line-height: 1;
}

.finder-match-score span {
    margin-top: 3px;

    color: #88958e;

    font-size: 9px;
    font-weight: 800;

    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.finder-result-meta {
    display: flex;
    flex-wrap: wrap;

    gap: 6px 16px;

    margin-top: 12px;

    color: #64766d;

    font-size: 12px;
    font-weight: 650;
}

.finder-result-reasons {
    display: grid;
    grid-template-columns: repeat(3, 1fr);

    gap: 8px 15px;

    margin: 15px 0 0;
    padding: 0;

    list-style: none;

    color: #52675c;

    font-size: 11px;
    line-height: 1.4;
}

.finder-result-reasons li {
    min-width: 0;
}

.finder-result-actions {
    display: flex;
    align-items: center;

    gap: 9px;

    margin-top: 17px;
}

.finder-offer-button,
.finder-details-button {
    min-height: 39px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    padding: 0 18px;

    border-radius: 999px;

    font-size: 12px;
    font-weight: 800;
}

.finder-offer-button {
    color: #ffffff;
    background: var(--green);

    border: 1px solid var(--green);
}

.finder-offer-button:hover {
    background: #075f35;
}

.finder-offer-button.is-disabled {
    color: #849088;
    background: #eef1ef;

    border-color: #e0e6e2;

    cursor: not-allowed;
}

.finder-details-button {
    color: var(--green-dark);
    background: #ffffff;

    border: 1px solid #cfdad3;

    cursor: pointer;
}

.finder-details-button:hover {
    border-color: #9db8a7;
}

.finder-result-disclaimer {
    max-width: 700px;

    margin: 20px auto 0;

    color: #89958e;

    font-size: 10px;
    line-height: 1.5;

    text-align: center;
}


/* =========================================================
   FINDER PROFILE / RESULTS — MOBILE
   ========================================================= */

@media (max-width: 680px) {

    .finder-profile-compact > h2,
    .finder-results > h2 {
        font-size: 29px;
    }

    .finder-profile-summary {
        grid-template-columns: 1fr;

        gap: 8px;
    }

    .finder-profile-summary-wide {
        grid-column: auto;
    }

    .finder-profile-summary-item {
        min-height: 64px;

        padding: 12px 14px;
    }

    .finder-profile-icon {
        width: 34px;
        height: 34px;

        flex-basis: 34px;

        font-size: 16px;
    }

    .finder-results-button {
        width: 100%;

        margin-top: 20px;
    }


    /* Results */

    .finder-results-intro {
        margin-bottom: 22px;
    }

    .finder-result-card {
        grid-template-columns: 34px 1fr;

        gap: 11px;

        padding: 15px;
    }

    .finder-result-rank {
        width: 32px;
        height: 32px;

        font-size: 12px;
    }

    .finder-result-heading h3 {
        font-size: 20px;
    }

    .finder-match-score strong {
        font-size: 18px;
    }

    .finder-result-reasons {
        grid-template-columns: 1fr;

        gap: 4px;
    }

    .finder-result-actions {
        display: grid;
        grid-template-columns: 1fr 1fr;
    }

    .finder-offer-button,
    .finder-details-button {
        width: 100%;
    }
}

/* =========================================================
   FINDER RESULTS — DESKTOP READABILITY
   ========================================================= */

@media (min-width: 681px) {

    .finder-result-badge {
        font-size: 10px;
    }

    .finder-result-brand {
        font-size: 12px;
    }

    .finder-result-meta {
        margin-top: 11px;
        font-size: 13px;
    }

    .finder-result-reasons {
        gap: 7px 15px;
        margin-top: 13px;
        font-size: 12px;
    }

    .finder-match-score span {
        font-size: 10px;
    }

    .finder-offer-button,
    .finder-details-button {
        min-height: 38px;
        font-size: 13px;
    }

    .finder-result-disclaimer {
        margin-top: 18px;
        font-size: 11px;
    }
}
/* =========================================================
   FINDER MODEL DETAILS
   ========================================================= */

.finder-model-detail {
    max-width: 900px;
    margin-inline: auto;
}

.finder-model-detail-top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 32px;
}

.finder-model-detail-brand {
    display: block;
    margin-bottom: 6px;
    color: var(--green);
    font-size: 11px;
    font-weight: 850;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.finder-model-detail-top h2 {
    margin: 0;
    color: var(--green-dark);
    font-size: 40px;
    line-height: 1.02;
    letter-spacing: -0.045em;
}

.finder-model-detail-top p {
    max-width: 650px;
    margin: 13px 0 0;
    color: var(--muted);
    font-size: 14px;
    line-height: 1.6;
}

.finder-model-detail-match {
    min-width: 78px;
    padding: 13px 14px;
    background: #edf7f1;
    border: 1px solid #cfe5d7;
    border-radius: 14px;
    text-align: center;
}

.finder-model-detail-match strong,
.finder-model-detail-match span {
    display: block;
}

.finder-model-detail-match strong {
    color: var(--green);
    font-size: 25px;
    line-height: 1;
}

.finder-model-detail-match span {
    margin-top: 4px;
    color: #728178;
    font-size: 9px;
    font-weight: 850;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.finder-model-spec-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
    margin-top: 28px;
}

.finder-model-spec {
    min-width: 0;
    padding: 15px 16px;
    background: #f8faf8;
    border: 1px solid var(--border);
    border-radius: 13px;
}

.finder-model-spec span,
.finder-model-spec strong {
    display: block;
}

.finder-model-spec span {
    margin-bottom: 4px;
    color: #7d8b84;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.finder-model-spec strong {
    color: var(--green-dark);
    font-size: 13px;
    line-height: 1.35;
}

.finder-model-detail-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-top: 12px;
}

.finder-model-detail-section {
    padding: 20px;
    background: #ffffff;
    border: 1px solid var(--border);
    border-radius: 15px;
}

.finder-model-detail-kicker {
    display: block;
    margin-bottom: 5px;
    color: var(--green);
    font-size: 9px;
    font-weight: 850;
    letter-spacing: 0.07em;
}

.finder-model-detail-section h3 {
    margin: 0;
    color: var(--green-dark);
    font-size: 17px;
    line-height: 1.25;
}

.finder-model-detail-reasons,
.finder-model-detail-highlights {
    display: grid;
    gap: 7px;
    margin: 14px 0 0;
    padding: 0;
    list-style: none;
    color: #52675c;
    font-size: 12px;
    line-height: 1.45;
}

.finder-model-detail-highlights li::before {
    content: "•";
    margin-right: 8px;
    color: var(--green);
    font-weight: 900;
}

.finder-model-note-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-top: 12px;
}

.finder-model-note {
    padding: 17px 18px;
    background: #fafbfa;
    border: 1px solid var(--border);
    border-radius: 14px;
}

.finder-model-note-good {
    background: #f1f8f3;
    border-color: #d5e8db;
}

.finder-model-note span {
    display: block;
    margin-bottom: 6px;
    color: var(--green-dark);
    font-size: 11px;
    font-weight: 850;
}

.finder-model-note p {
    margin: 0;
    color: #607168;
    font-size: 12px;
    line-height: 1.5;
}

.finder-model-detail-actions {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 20px;
}

.finder-detail-offer,
.finder-detail-back {
    min-height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 20px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 800;
}

.finder-detail-offer {
    color: #ffffff;
    background: var(--green);
    border: 1px solid var(--green);
}

.finder-detail-offer:hover {
    background: #075f35;
}

.finder-detail-offer.is-disabled {
    color: #849088;
    background: #eef1ef;
    border-color: #e0e6e2;
    cursor: not-allowed;
}

.finder-detail-back {
    color: var(--green-dark);
    background: #ffffff;
    border: 1px solid #cfdad3;
    cursor: pointer;
}

.finder-detail-back:hover {
    border-color: #9db8a7;
}

.finder-model-detail-disclaimer {
    max-width: 760px;
    margin: 17px 0 0;
    color: #89958e;
    font-size: 10px;
    line-height: 1.5;
}

@media (max-width: 680px) {
    .finder-model-detail-top {
        gap: 15px;
    }

    .finder-model-detail-top h2 {
        font-size: 29px;
    }

    .finder-model-detail-top p {
        font-size: 13px;
    }

    .finder-model-detail-match {
        min-width: 66px;
        padding: 11px 10px;
    }

    .finder-model-detail-match strong {
        font-size: 20px;
    }

    .finder-model-spec-grid,
    .finder-model-detail-grid,
    .finder-model-note-grid {
        grid-template-columns: 1fr;
    }

    .finder-model-spec-grid {
        gap: 8px;
        margin-top: 22px;
    }

    .finder-model-spec {
        padding: 13px 14px;
    }

    .finder-model-detail-section {
        padding: 17px;
    }

    .finder-model-detail-actions {
        display: grid;
        grid-template-columns: 1fr;
    }

    .finder-detail-offer,
    .finder-detail-back {
        width: 100%;
    }
}

/* =========================================================
   FINDER MODEL DETAILS — COMPACT / READABLE OVERRIDES
   ========================================================= */

.finder-model-detail {
    max-width: 960px;
}

.finder-model-detail-top {
    gap: 24px;
}

.finder-model-detail-brand {
    margin-bottom: 4px;
    font-size: 12px;
}

.finder-model-detail-top h2 {
    font-size: 35px;
}

.finder-model-detail-top p {
    max-width: 720px;
    margin-top: 8px;
    font-size: 13px;
    line-height: 1.45;
}

.finder-model-detail-match {
    min-width: 72px;
    padding: 10px 12px;
}

.finder-model-detail-match strong {
    font-size: 23px;
}

.finder-model-detail-match span {
    font-size: 10px;
}

.finder-model-spec-grid {
    gap: 8px;
    margin-top: 18px;
}

.finder-model-spec {
    padding: 11px 13px;
}

.finder-model-spec span {
    margin-bottom: 2px;
    font-size: 11px;
}

.finder-model-spec strong {
    font-size: 14px;
}

.finder-model-detail-grid-compact {
    grid-template-columns: 1.05fr 1fr 0.95fr;
    gap: 9px;
    margin-top: 9px;
}

.finder-model-detail-section {
    padding: 14px 15px;
}

.finder-model-detail-kicker {
    margin-bottom: 3px;
    font-size: 11px;
}

.finder-model-detail-section h3 {
    font-size: 15px;
}

.finder-model-detail-reasons,
.finder-model-detail-highlights {
    gap: 4px;
    margin-top: 8px;
    font-size: 13px;
    line-height: 1.35;
}

.finder-model-detail-watch p {
    margin: 8px 0 0;
    color: #52675c;
    font-size: 13px;
    line-height: 1.4;
}

.finder-model-detail-actions {
    margin-top: 12px;
}

.finder-detail-offer,
.finder-detail-back {
    min-height: 40px;
    padding-inline: 18px;
    font-size: 13px;
}

.finder-model-detail-disclaimer {
    max-width: none;
    margin-top: 9px;
    font-size: 11px;
    line-height: 1.35;
}

@media (min-width: 681px) {
    .finder-model-detail {
        margin-top: -18px;
    }
}

@media (max-width: 900px) and (min-width: 681px) {
    .finder-model-detail-grid-compact {
        grid-template-columns: 1fr 1fr;
    }

    .finder-model-detail-watch {
        grid-column: 1 / -1;
    }
}

@media (max-width: 680px) {
    .finder-model-detail-top h2 {
        font-size: 28px;
    }

    .finder-model-detail-top p {
        font-size: 13px;
        line-height: 1.4;
    }

    .finder-model-spec-grid {
        grid-template-columns: repeat(2, 1fr);
        margin-top: 15px;
    }

    .finder-model-detail-grid-compact {
        grid-template-columns: 1fr;
        gap: 8px;
    }

    .finder-model-detail-section {
        padding: 13px 14px;
    }

    .finder-model-detail-reasons,
    .finder-model-detail-highlights,
    .finder-model-detail-watch p {
        font-size: 13px;
    }

    .finder-model-detail-actions {
        grid-template-columns: 1fr 1fr;
        gap: 8px;
    }

    .finder-detail-offer,
    .finder-detail-back {
        min-height: 42px;
        padding-inline: 10px;
        font-size: 12px;
    }
}

@media (max-width: 420px) {
    .finder-model-detail-actions {
        grid-template-columns: 1fr;
    }
}


/* =========================================================
   AFFILIATE DISCLOSURE
   ========================================================= */

.finder-affiliate-disclosure {
    max-width: 760px;

    margin: 18px auto 0;
    padding: 11px 14px;

    color: #6c7a72;
    background: #f8faf8;

    border: 1px solid var(--border);
    border-radius: 11px;

    font-size: 11px;
    line-height: 1.55;

    text-align: center;
}

.finder-affiliate-disclosure a {
    color: var(--green);
    font-weight: 750;
    text-decoration: underline;
    text-decoration-thickness: 1px;
    text-underline-offset: 2px;
}

.finder-affiliate-disclosure a:hover {
    opacity: 0.75;
}

.finder-affiliate-disclosure-detail {
    max-width: 100%;
    margin-top: 14px;
}


@media (max-width: 680px) {

    .finder-affiliate-disclosure {
        margin-top: 15px;
        padding: 10px 12px;

        font-size: 10px;
        line-height: 1.5;

        text-align: left;
    }
}

/* =========================================================
   FINDER — PREVENT LOAD FLASH
   ========================================================= */

.finder-modal[hidden] {
    display: none !important;
}



/* =========================================================
   COMPARE MODAL — 2 MODELLE
   ========================================================= */

body.compare-open {
    overflow: hidden;
}

.compare-modal {
    position: fixed;
    inset: 0;
    z-index: 1100;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 28px;
    visibility: hidden;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.2s ease, visibility 0.2s ease;
}

.compare-modal[hidden] {
    display: none !important;
}

.compare-modal.is-open {
    visibility: visible;
    pointer-events: auto;
    opacity: 1;
}

.compare-modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(7, 24, 18, 0.58);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
}

.compare-dialog {
    position: relative;
    z-index: 2;
    width: min(1240px, 100%);
    max-height: calc(100vh - 56px);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    background: #ffffff;
    border: 1px solid rgba(223, 231, 226, 0.9);
    border-radius: 24px;
    box-shadow: 0 35px 100px rgba(0, 0, 0, 0.26);
    transform: translateY(10px) scale(0.988);
    transition: transform 0.22s ease;
}

.compare-modal.is-open .compare-dialog {
    transform: translateY(0) scale(1);
}

.compare-modal-header {
    min-height: 86px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 18px 26px 15px;
    flex: 0 0 auto;
    background: #ffffff;
}

.compare-modal-header .eyebrow {
    margin-bottom: 2px;
}

.compare-modal-header h2 {
    margin: 0;
    color: var(--green-dark);
    font-size: 29px;
    line-height: 1.06;
    letter-spacing: -0.04em;
}

.compare-close-button {
    width: 42px;
    height: 42px;
    flex: 0 0 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    color: #55675e;
    background: #ffffff;
    border: 1px solid var(--border);
    border-radius: 50%;
    font-size: 27px;
    font-weight: 300;
    line-height: 1;
    cursor: pointer;
}

.compare-close-button:hover {
    background: #f3f7f4;
    border-color: #c8d8ce;
}

.compare-content {
    min-height: 0;
    overflow-y: auto;
    padding: 0 26px 25px;
}

.compare-intro {
    max-width: 850px;
    margin: 0 0 16px;
}

.compare-intro p {
    margin: 0;
    color: var(--muted);
    font-size: 15px;
    line-height: 1.55;
}

.compare-selector-row {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) auto;
    align-items: end;
    gap: 12px;
    margin-bottom: 14px;
}

.compare-selector-card {
    min-width: 0;
    padding: 10px 12px;
    background: #f7faf8;
    border: 1px solid var(--border);
    border-radius: 13px;
}

.compare-selector-card label {
    display: block;
    margin-bottom: 4px;
    color: #60736a;
    font-size: 10px;
    font-weight: 850;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.compare-selector-card select {
    width: 100%;
    min-height: 43px;
    padding: 0 36px 0 12px;
    color: var(--green-dark);
    background: #ffffff;
    border: 1px solid #d4dfd8;
    border-radius: 9px;
    font-size: 13px;
    font-weight: 750;
    cursor: pointer;
}

.compare-selector-card select:focus-visible {
    outline: 3px solid rgba(8, 114, 63, 0.15);
    outline-offset: 2px;
    border-color: #93bca2;
}

.compare-reset-button {
    min-height: 43px;
    padding: 0 4px 0 8px;
    color: var(--green);
    background: transparent;
    border: 0;
    font-size: 12px;
    font-weight: 800;
    white-space: nowrap;
    cursor: pointer;
}

.compare-reset-button:hover {
    opacity: 0.72;
}

.compare-status {
    margin: -4px 0 12px;
    color: #73827a;
    font-size: 11px;
    font-weight: 650;
}

.compare-status[hidden] {
    display: none !important;
}

.compare-results[hidden] {
    display: none !important;
}

.compare-card-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}

.compare-card {
    min-width: 0;
    display: flex;
    flex-direction: column;
    padding: 22px;
    background: #ffffff;
    border: 1px solid var(--border);
    border-radius: 17px;
    box-shadow: 0 8px 24px rgba(20, 50, 39, 0.025);
}

.compare-card-top {
    display: grid;
    grid-template-columns: minmax(180px, 0.82fr) minmax(230px, 1fr);
    gap: 26px;
    align-items: start;
}

.compare-card-identity {
    min-width: 0;
}

.compare-card-brand {
    display: block;
    color: var(--green);
    font-size: 11px;
    font-weight: 850;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.compare-card h3 {
    margin: 3px 0 0;
    color: var(--green-dark);
    font-size: 30px;
    line-height: 1.03;
    letter-spacing: -0.04em;
}

.compare-card-price {
    margin: 18px 0 0;
    color: var(--green-dark);
    font-size: 22px;
    font-weight: 850;
    line-height: 1.2;
}

.compare-card-badge {
    width: fit-content;
    max-width: 100%;
    display: block;
    margin-top: 10px;
    padding: 6px 9px;
    color: #17623d;
    background: #eaf7ef;
    border-radius: 8px;
    font-size: 11px;
    font-weight: 650;
    line-height: 1.35;
}

.compare-card-specs {
    display: grid;
    gap: 1px;
}

.compare-card-spec {
    min-height: 59px;
    display: grid;
    grid-template-columns: 34px 1fr;
    align-items: center;
    gap: 10px;
}

.compare-card-spec > div {
    min-width: 0;
}

.compare-card-spec span:not(.compare-spec-icon) {
    display: block;
    color: #718078;
    font-size: 12px;
    font-weight: 600;
}

.compare-card-spec strong {
    display: block;
    margin-top: 2px;
    color: var(--green-dark);
    font-size: 14px;
    line-height: 1.3;
}

.compare-spec-icon {
    position: relative;
    width: 30px;
    height: 30px;
    display: block;
    border: 2px solid #0d5f3d;
    border-radius: 9px;
}

.compare-spec-icon-area::before,
.compare-spec-icon-area::after {
    content: "";
    position: absolute;
    background: #ffffff;
}

.compare-spec-icon-area::before {
    left: 5px;
    right: 5px;
    top: -3px;
    height: 4px;
}

.compare-spec-icon-area::after {
    top: 5px;
    bottom: 5px;
    left: -3px;
    width: 4px;
}

.compare-spec-icon-navigation {
    border-radius: 50%;
}

.compare-spec-icon-navigation::before {
    content: "";
    position: absolute;
    inset: 7px;
    border: 2px solid #0d5f3d;
    border-radius: 50%;
}

.compare-spec-icon-navigation::after {
    content: "";
    position: absolute;
    width: 4px;
    height: 4px;
    left: 11px;
    top: 11px;
    background: #0d5f3d;
    border-radius: 50%;
}

.compare-spec-icon-slope {
    border: 0;
    border-radius: 0;
}

.compare-spec-icon-slope::before {
    content: "";
    position: absolute;
    left: 2px;
    bottom: 3px;
    width: 24px;
    height: 18px;
    border-left: 2px solid #0d5f3d;
    border-bottom: 2px solid #0d5f3d;
    transform: skewY(-35deg);
    transform-origin: left bottom;
}

.compare-card-divider {
    height: 1px;
    margin: 18px 0 16px;
    background: var(--border);
}

.compare-card-know {
    min-height: 135px;
}

.compare-card-kicker {
    display: block;
    margin-bottom: 10px;
    color: var(--green);
    font-size: 11px;
    font-weight: 900;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.compare-card-strengths {
    display: grid;
    gap: 8px;
    margin: 0;
    padding: 0;
    list-style: none;
    color: #405f51;
    font-size: 13px;
    line-height: 1.4;
}

.compare-card-strengths li {
    display: flex;
    align-items: flex-start;
    gap: 9px;
}

.compare-card-strengths li::before {
    content: "✓";
    width: 22px;
    height: 22px;
    flex: 0 0 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: -1px;
    color: #ffffff;
    background: var(--green);
    border-radius: 50%;
    font-size: 12px;
    font-weight: 900;
}

.compare-card-caveat {
    min-height: 74px;
    display: grid;
    grid-template-columns: 26px 1fr;
    gap: 10px;
    align-items: start;
    margin-top: 14px;
    padding: 13px 14px;
    color: #5f6e66;
    background: #fbf7ed;
    border: 1px solid #eee4c9;
    border-radius: 12px;
    font-size: 12px;
    line-height: 1.45;
}

.compare-caveat-icon {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    background: #e8a20e;
    border-radius: 50%;
    font-size: 14px;
    font-weight: 900;
}

.compare-card-caveat strong,
.compare-card-caveat span {
    display: block;
}

.compare-card-caveat strong {
    margin-bottom: 2px;
    color: #4f6258;
    font-size: 10px;
    font-weight: 850;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.compare-card-action {
    margin-top: auto;
    padding-top: 15px;
}

.compare-offer-button,
.compare-offer-unavailable {
    width: 100%;
    min-height: 46px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 18px;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 800;
    text-align: center;
}

.compare-offer-button {
    color: #ffffff;
    background: var(--green);
    border: 1px solid var(--green);
}

.compare-offer-button:hover {
    background: #075f35;
}

.compare-offer-unavailable {
    color: #ffffff;
    background: #aeb7b2;
    border: 1px solid #aeb7b2;
    cursor: default;
}

.compare-affiliate-disclosure {
    max-width: 820px;
    margin: 14px auto 0;
    padding: 9px 12px;
    color: #6c7a72;
    background: #f8faf8;
    border: 1px solid var(--border);
    border-radius: 10px;
    font-size: 10px;
    line-height: 1.5;
    text-align: center;
}

.compare-affiliate-disclosure a {
    color: var(--green);
    font-weight: 750;
    text-decoration: underline;
    text-underline-offset: 2px;
}

@media (max-width: 1050px) {
    .compare-dialog {
        width: min(980px, 100%);
    }

    .compare-card-top {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .compare-card-specs {
        grid-template-columns: repeat(3, 1fr);
        gap: 8px;
    }

    .compare-card-spec {
        min-height: 0;
        grid-template-columns: 28px 1fr;
        gap: 7px;
    }

    .compare-spec-icon {
        width: 25px;
        height: 25px;
    }
}

@media (max-width: 760px) {
    .compare-selector-row {
        grid-template-columns: 1fr 1fr;
    }

    .compare-reset-button {
        grid-column: 1 / -1;
        width: fit-content;
        justify-self: end;
        min-height: 32px;
    }

    .compare-card-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 680px) {
    .compare-modal {
        align-items: stretch;
        padding: 0;
    }

    .compare-modal-backdrop {
        display: none;
    }

    .compare-dialog {
        width: 100%;
        height: 100dvh;
        max-height: none;
        border: 0;
        border-radius: 0;
        box-shadow: none;
    }

    .compare-modal-header {
        min-height: 72px;
        padding: 12px 15px;
    }

    .compare-modal-header .eyebrow {
        margin-bottom: 2px;
        font-size: 9px;
    }

    .compare-modal-header h2 {
        font-size: 22px;
    }

    .compare-close-button {
        width: 38px;
        height: 38px;
        flex-basis: 38px;
        font-size: 24px;
    }

    .compare-content {
        flex: 1 1 auto;
        padding: 0 15px 28px;
    }

    .compare-intro {
        margin-bottom: 14px;
    }

    .compare-intro p {
        font-size: 13px;
        line-height: 1.5;
    }

    .compare-selector-row {
        grid-template-columns: 1fr;
        gap: 8px;
    }

    .compare-reset-button {
        grid-column: auto;
        justify-self: end;
    }

    .compare-selector-card {
        padding: 9px 10px;
    }

    .compare-selector-card select {
        min-height: 41px;
        font-size: 12px;
    }

    .compare-card {
        padding: 17px;
    }

    .compare-card h3 {
        font-size: 25px;
    }

    .compare-card-price {
        margin-top: 12px;
        font-size: 19px;
    }

    .compare-card-specs {
        grid-template-columns: 1fr;
        gap: 2px;
    }

    .compare-card-spec {
        min-height: 48px;
        grid-template-columns: 30px 1fr;
    }

    .compare-card-know {
        min-height: 0;
    }

    .compare-card-strengths {
        font-size: 12px;
    }

    .compare-affiliate-disclosure {
        text-align: left;
    }
}

/* =========================================================
   VERGLEICHEN — FINAL 2-MODEL RECOMMENDATION LAYOUT
   ========================================================= */

@media (min-width: 761px) {
    .compare-dialog {
        width: min(1260px, calc(100vw - 80px));
        max-height: calc(100vh - 54px);
    }

    .compare-modal-header {
        min-height: 88px;
        padding: 17px 27px 14px;
    }

    .compare-modal-header h2 {
        font-size: 31px;
    }

    .compare-content {
        padding: 0 27px 22px;
        overflow-y: auto;
    }

    .compare-intro {
        margin: 0 0 14px;
    }

    .compare-selector-row {
        grid-template-columns: 1fr 1fr auto;
        gap: 12px;
        margin-bottom: 13px;
    }

    .compare-selector-card {
        padding: 8px 10px 9px;
        border-radius: 13px;
    }

    .compare-selector-card label {
        margin-bottom: 3px;
    }

    .compare-selector-card select {
        min-height: 39px;
    }

    .compare-reset-button {
        align-self: center;
        min-height: 38px;
    }

    .compare-status {
        margin: -3px 0 9px;
    }

    .compare-card-grid {
        gap: 18px;
    }

    .compare-card {
        position: relative;
        padding: 19px 21px 18px;
        border-radius: 17px;
    }

    .compare-card.is-recommended {
        border-color: #69ae86;
        box-shadow: 0 14px 34px rgba(8, 114, 63, 0.08);
    }

    .compare-recommended-badge {
        position: absolute;
        top: 0;
        right: 0;
        padding: 6px 12px;
        color: #ffffff;
        background: var(--green);
        border-radius: 0 16px 0 12px;
        font-size: 9px;
        font-weight: 850;
        letter-spacing: 0.05em;
        text-transform: uppercase;
    }

    .compare-card-top {
        grid-template-columns: minmax(170px, 0.9fr) minmax(230px, 1fr);
        gap: 24px;
    }

    .compare-card h3 {
        font-size: 29px;
    }

    .compare-card-price {
        margin-top: 14px;
        font-size: 21px;
    }

    .compare-card-badge {
        margin-top: 8px;
        padding: 5px 8px;
    }

    .compare-card-specs {
        gap: 0;
    }

    .compare-card-spec {
        min-height: 48px;
        display: block;
        padding: 4px 0;
        border-bottom: 1px solid #edf1ee;
    }

    .compare-card-spec:last-child {
        border-bottom: 0;
    }

    .compare-card-spec span {
        display: block;
        color: #718078;
        font-size: 11px;
        font-weight: 600;
    }

    .compare-card-spec strong {
        display: block;
        margin-top: 1px;
        color: var(--green-dark);
        font-size: 14px;
        line-height: 1.25;
    }

    .compare-card-divider {
        margin: 13px 0 12px;
    }

    .compare-card-know {
        min-height: 105px;
    }

    .compare-card-kicker {
        margin-bottom: 8px;
    }

    .compare-card-strengths {
        gap: 6px;
        font-size: 12px;
    }

    .compare-card-strengths li::before {
        width: 20px;
        height: 20px;
        flex-basis: 20px;
        font-size: 11px;
    }

    .compare-card-caveat {
        min-height: 59px;
        display: block;
        margin-top: 11px;
        padding: 10px 12px;
        font-size: 11px;
        line-height: 1.4;
    }

    .compare-card-caveat strong {
        margin-bottom: 2px;
    }

    .compare-card-action {
        padding-top: 11px;
    }

    .compare-offer-button,
    .compare-offer-unavailable {
        min-height: 40px;
        font-size: 12px;
    }

    .compare-verdict {
        position: relative;
        display: grid;
        grid-template-columns: 180px 1fr auto;
        align-items: center;
        gap: 18px;
        margin-top: 13px;
        padding: 12px 16px 20px;
        background: #eef8f2;
        border: 1px solid #d7eadf;
        border-radius: 13px;
    }

    .compare-verdict-tie {
        background: #f7f9f7;
        border-color: var(--border);
    }

    .compare-verdict-title {
        color: var(--green-dark);
        font-size: 15px;
        font-weight: 850;
    }

    .compare-verdict p {
        margin: 0;
        color: #365a49;
        font-size: 11px;
        line-height: 1.45;
    }

    .compare-verdict-pill {
        padding: 5px 9px;
        color: var(--green);
        background: #ffffff;
        border: 1px solid #91c7a7;
        border-radius: 999px;
        font-size: 9px;
        font-weight: 850;
        white-space: nowrap;
        text-transform: uppercase;
    }

    .compare-verdict-disclosure {
        position: absolute;
        left: 16px;
        right: 16px;
        bottom: 5px;
        color: #7a8981;
        font-size: 8px;
        text-align: center;
    }

    .compare-verdict-disclosure a {
        color: var(--green);
        font-weight: 750;
        text-decoration: underline;
        text-underline-offset: 2px;
    }

    .compare-affiliate-disclosure {
        display: none;
    }
}

@media (max-width: 760px) {
    .compare-recommended-badge {
        width: fit-content;
        display: block;
        margin: -2px 0 10px auto;
        padding: 5px 8px;
        color: #ffffff;
        background: var(--green);
        border-radius: 999px;
        font-size: 9px;
        font-weight: 850;
        text-transform: uppercase;
    }

    .compare-card-spec {
        display: block;
        min-height: 0;
        padding: 8px 0;
        border-bottom: 1px solid #edf1ee;
    }

    .compare-card-spec:last-child {
        border-bottom: 0;
    }

    .compare-card-caveat {
        display: block;
        min-height: 0;
    }

    .compare-verdict {
        margin-top: 12px;
        padding: 14px;
        background: #eef8f2;
        border: 1px solid #d7eadf;
        border-radius: 12px;
    }

    .compare-verdict-title {
        color: var(--green-dark);
        font-size: 15px;
        font-weight: 850;
    }

    .compare-verdict p {
        margin: 6px 0 10px;
        color: #365a49;
        font-size: 12px;
        line-height: 1.5;
    }

    .compare-verdict-pill {
        width: fit-content;
        display: block;
        padding: 5px 8px;
        color: var(--green);
        background: #ffffff;
        border: 1px solid #91c7a7;
        border-radius: 999px;
        font-size: 9px;
        font-weight: 850;
        text-transform: uppercase;
    }

    .compare-verdict-disclosure {
        display: block;
        margin-top: 10px;
        color: #7a8981;
        font-size: 9px;
        line-height: 1.45;
    }

    .compare-verdict-disclosure a {
        color: var(--green);
        font-weight: 750;
        text-decoration: underline;
    }
}

/* =========================================================
   VERGLEICHEN — FINAL POLISH WITH SPEC ICONS
   ========================================================= */

.compare-spec-icon,
.compare-caveat-info,
.compare-verdict-icon,
.compare-recommended-badge svg {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--green);
}

.compare-spec-icon svg,
.compare-caveat-info svg,
.compare-verdict-icon svg,
.compare-recommended-badge svg {
    width: 100%;
    height: 100%;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

@media (min-width: 761px) {
    .compare-dialog {
        width: min(1300px, calc(100vw - 72px));
        max-height: calc(100vh - 40px);
    }

    .compare-modal-header {
        min-height: 78px;
        padding: 14px 26px 10px;
    }

    .compare-modal-header .eyebrow {
        margin-bottom: 2px;
    }

    .compare-modal-header h2 {
        font-size: 30px;
    }

    .compare-content {
        padding: 0 26px 14px;
    }

    .compare-intro {
        margin-bottom: 10px;
    }

    .compare-intro p {
        margin: 0;
    }

    .compare-selector-row {
        gap: 12px;
        margin-bottom: 10px;
    }

    .compare-selector-card {
        padding: 7px 10px 8px;
    }

    .compare-selector-card select {
        min-height: 37px;
    }

    .compare-reset-button {
        min-height: 36px;
    }

    .compare-card-grid {
        gap: 18px;
    }

    .compare-card {
        padding: 16px 20px 16px;
    }

    .compare-recommended-badge {
        display: inline-flex;
        align-items: center;
        gap: 6px;
        padding: 6px 12px;
    }

    .compare-recommended-badge svg {
        width: 14px;
        height: 14px;
        color: #fff;
    }

    .compare-card-top {
        grid-template-columns: minmax(180px, 0.82fr) minmax(250px, 1fr);
        gap: 24px;
    }

    .compare-card h3 {
        font-size: 29px;
    }

    .compare-card-price {
        margin-top: 10px;
        font-size: 21px;
    }

    .compare-card-badge {
        margin-top: 6px;
    }

    .compare-card-specs {
        display: grid;
        gap: 1px;
    }

    .compare-card-spec {
        min-height: 45px;
        display: grid;
        grid-template-columns: 34px minmax(0, 1fr);
        align-items: center;
        gap: 10px;
        padding: 2px 0;
    }

    .compare-spec-icon {
        width: 29px;
        height: 29px;
    }

    .compare-card-spec > div {
        min-width: 0;
    }

    .compare-card-spec > div > span {
        display: block;
        color: #718078;
        font-size: 11px;
        font-weight: 600;
    }

    .compare-card-spec > div > strong {
        display: block;
        margin-top: 1px;
        color: var(--green-dark);
        font-size: 14px;
        line-height: 1.22;
    }

    .compare-card-divider {
        margin: 10px 0;
    }

    .compare-card-know {
        min-height: 94px;
    }

    .compare-card-kicker {
        margin-bottom: 6px;
    }

    .compare-card-strengths {
        gap: 5px;
    }

    .compare-card-caveat {
        min-height: 54px;
        display: grid;
        grid-template-columns: 25px 1fr;
        align-items: center;
        gap: 10px;
        margin-top: 8px;
        padding: 8px 11px;
        background: #f8f7ee;
    }

    .compare-caveat-info {
        width: 22px;
        height: 22px;
        color: #b37c00;
    }

    .compare-card-action {
        padding-top: 9px;
    }

    .compare-offer-button,
    .compare-offer-unavailable {
        min-height: 38px;
    }

    .compare-verdict {
        grid-template-columns: 190px 1fr auto;
        gap: 16px;
        margin-top: 10px;
        padding: 10px 14px 18px;
    }

    .compare-verdict-title {
        display: flex;
        align-items: center;
        gap: 9px;
    }

    .compare-verdict-icon {
        width: 24px;
        height: 24px;
        flex: 0 0 24px;
    }

    .compare-verdict-disclosure {
        bottom: 4px;
    }
}

@media (max-width: 760px) {
    .compare-card-spec {
        display: grid;
        grid-template-columns: 31px 1fr;
        align-items: center;
        gap: 9px;
    }

    .compare-spec-icon {
        width: 27px;
        height: 27px;
    }

    .compare-card-spec > div > span,
    .compare-card-spec > div > strong {
        display: block;
    }

    .compare-card-caveat {
        display: grid;
        grid-template-columns: 24px 1fr;
        gap: 9px;
        align-items: start;
    }

    .compare-caveat-info {
        width: 21px;
        height: 21px;
        color: #b37c00;
    }

    .compare-verdict-title {
        display: flex;
        align-items: center;
        gap: 8px;
    }

    .compare-verdict-icon {
        width: 22px;
        height: 22px;
        flex: 0 0 22px;
    }
}

/* MaehroboterKompass – compact MK logo fix */
.logo-mark {
    width: 22px !important;
    height: 22px !important;
    flex: 0 0 22px !important;
    max-width: 22px !important;
    max-height: 22px !important;
    display: block;
    object-fit: contain;
}

.footer-brand .logo-mark {
    width: 20px !important;
    height: 20px !important;
    flex-basis: 20px !important;
    max-width: 20px !important;
    max-height: 20px !important;
}

@media (max-width: 700px) {
    .logo-mark {
        width: 20px !important;
        height: 20px !important;
        flex-basis: 20px !important;
        max-width: 20px !important;
        max-height: 20px !important;
    }
}


/* Final header brand alignment */
.site-header .header-inner {
    padding-left: 0 !important;
    padding-right: 0 !important;
}

.site-header .logo-mark {
    width: 25px !important;
    height: 25px !important;
    flex: 0 0 25px !important;
    max-width: 25px !important;
    max-height: 25px !important;
}

@media (max-width: 700px) {
    .site-header .header-inner {
        padding-left: 0 !important;
        padding-right: 0 !important;
    }

    .site-header .logo-mark {
        width: 22px !important;
        height: 22px !important;
        flex-basis: 22px !important;
        max-width: 22px !important;
        max-height: 22px !important;
    }
}


/* Mobile footer alignment fix */
@media (max-width: 700px) {
    .footer-links {
        justify-content: flex-start;
        text-align: left;
    }
}


/* Product visuals are intentionally not used in the comparison UI.
   Keep stale/legacy image elements from appearing on mobile or from cache-mixed deployments. */
.compare-results img,
.compare-results [class*="product-image"],
.compare-results [class*="product-visual"],
.compare-results [class*="compare-image"],
.compare-results [class*="compare-visual"] {
    display: none !important;
}


/* Final comparison winner-badge fix: no product artwork and no SVG feedback sizing. */
.compare-recommended-badge svg {
    display: none !important;
}

@media (max-width: 760px) {
    .compare-recommended-badge {
        position: static !important;
        width: fit-content !important;
        height: auto !important;
        min-width: 0 !important;
        min-height: 0 !important;
        display: inline-block !important;
        margin: 0 0 12px 0 !important;
        padding: 5px 8px !important;
        border-radius: 999px !important;
    }
}

/* =========================================================
   MODAL CLOSE BUTTON — PERFECTLY CENTERED X
   Use CSS strokes instead of the font × glyph so the mark is
   geometrically centered in both Finder and Compare circles.
   ========================================================= */
.finder-close-button,
.compare-close-button {
    position: relative;
    font-size: 0 !important;
}

.finder-close-button::before,
.finder-close-button::after,
.compare-close-button::before,
.compare-close-button::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 14px;
    height: 1.5px;
    background: currentColor;
    border-radius: 999px;
    transform-origin: center;
    pointer-events: none;
}

.finder-close-button::before,
.compare-close-button::before {
    transform: translate(-50%, -50%) rotate(45deg);
}

.finder-close-button::after,
.compare-close-button::after {
    transform: translate(-50%, -50%) rotate(-45deg);
}
