:root {
    --ar-ink: #101828;
    --ar-muted: #526070;
    --ar-faint: #647287;
    --ar-line: #dbe2ea;
    --ar-paper: #ffffff;
    --ar-canvas: #f6f8fb;
    --ar-soft: #edf3f8;
    --ar-blue: #164b9c;
    --ar-blue-dark: #0d3475;
    --ar-blue-soft: #eaf1fb;
    --ar-signal: #e0a31b;
    --ar-signal-soft: #fff4d6;
    --ar-positive: #176b4c;
    --ar-selection-navy: #07142f;
    --ar-selection-blue: #1062ff;
    --ar-selection-cyan: #24c8f4;
    --ar-selection-mint: #98f1ea;
    --ar-selection-line: #d7e6f8;
    --ar-selection-wash: #eef7ff;
    --ar-display: ui-serif, "Iowan Old Style", "Palatino Linotype", Georgia, serif;
    --ar-sans: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    --ar-radius: 18px;
    --ar-shadow: 0 18px 50px rgba(24, 40, 66, 0.09);
}

html {
    scroll-behavior: smooth;
}

body.ar-home-takeover,
body.ar-page-takeover {
    margin: 0;
    background: var(--ar-canvas);
}

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

.ar-core {
    min-width: 320px;
    overflow: clip;
    color: var(--ar-ink);
    background: var(--ar-canvas);
    font-family: var(--ar-sans);
    font-size: 16px;
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
}

.ar-core img {
    display: block;
    width: 100%;
    height: auto;
}

.ar-core a {
    color: inherit;
    text-decoration: none;
}

.ar-core button,
.ar-core input,
.ar-core select {
    font: inherit;
}

.ar-core a:focus-visible,
.ar-core button:focus-visible,
.ar-core select:focus-visible,
.ar-core summary:focus-visible {
    outline: 3px solid rgba(22, 75, 156, 0.34);
    outline-offset: 3px;
}

.ar-shell {
    width: min(1180px, calc(100% - 40px));
    margin-inline: auto;
}

.screen-reader-text {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    padding: 0 !important;
    margin: -1px !important;
    overflow: hidden !important;
    clip: rect(0, 0, 0, 0) !important;
    white-space: nowrap !important;
    border: 0 !important;
}

.ar-skip-link {
    position: fixed;
    z-index: 100;
    top: 10px;
    left: 10px;
    padding: 11px 15px;
    color: #fff !important;
    background: var(--ar-blue-dark);
    border-radius: 8px;
    font-weight: 800;
    transform: translateY(-160%);
    transition: transform 160ms ease;
}

.ar-skip-link:focus {
    transform: translateY(0);
}

.ar-header {
    position: sticky;
    z-index: 30;
    top: 0;
    border-bottom: 1px solid rgba(219, 226, 234, 0.88);
    background: rgba(255, 255, 255, 0.94);
    backdrop-filter: blur(14px);
}

.admin-bar .ar-header {
    top: 32px;
}

.ar-header-inner {
    display: flex;
    align-items: center;
    min-height: 76px;
    gap: 22px;
}

.ar-logo {
    display: inline-flex;
    align-items: center;
    flex: 0 0 auto;
    gap: 10px;
    letter-spacing: -0.025em;
}

.ar-logo > span {
    display: grid;
    width: 38px;
    height: 38px;
    place-items: center;
    border-radius: 50%;
    color: #fff;
    background: var(--ar-ink);
    font-size: 12px;
    font-weight: 850;
    letter-spacing: 0.08em;
}

.ar-logo > strong {
    font-size: 17px;
    font-weight: 800;
}

.ar-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 1;
    gap: 4px;
}

.ar-nav a {
    padding: 10px 9px;
    border-radius: 10px;
    color: #3d4959;
    font-size: 13px;
    font-weight: 740;
    white-space: nowrap;
}

.ar-nav a:hover,
.ar-nav a.is-active {
    color: var(--ar-blue);
    background: var(--ar-blue-soft);
}

.ar-header-cta,
.ar-button {
    display: inline-flex;
    min-height: 46px;
    align-items: center;
    justify-content: center;
    padding: 11px 18px;
    border: 1px solid var(--ar-blue);
    border-radius: 12px;
    color: #fff !important;
    background: var(--ar-blue);
    font-size: 14px;
    font-weight: 800;
    line-height: 1.2;
    text-align: center;
    transition: background-color 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.ar-header-cta:hover,
.ar-button:hover {
    border-color: var(--ar-blue-dark);
    background: var(--ar-blue-dark);
    transform: translateY(-1px);
}

.ar-button-secondary {
    border-color: var(--ar-line);
    color: var(--ar-ink) !important;
    background: var(--ar-paper);
}

.ar-button-secondary:hover {
    border-color: #b7c2ce;
    color: var(--ar-blue) !important;
    background: var(--ar-paper);
}

.ar-text-link {
    color: var(--ar-blue) !important;
    font-size: 14px;
    font-weight: 800;
    text-decoration: underline !important;
    text-decoration-thickness: 1px !important;
    text-underline-offset: 4px;
}

.ar-mobile-menu {
    display: none;
    position: relative;
}

.ar-mobile-menu summary {
    min-width: 52px;
    min-height: 44px;
    padding: 10px 14px;
    border: 1px solid var(--ar-line);
    border-radius: 10px;
    background: #fff;
    cursor: pointer;
    font-size: 14px;
    font-weight: 800;
    list-style: none;
}

.ar-mobile-menu summary::-webkit-details-marker {
    display: none;
}

.ar-mobile-menu nav {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    display: grid;
    width: min(300px, calc(100vw - 40px));
    padding: 10px;
    border: 1px solid var(--ar-line);
    border-radius: 14px;
    background: #fff;
    box-shadow: var(--ar-shadow);
}

.ar-mobile-menu nav a {
    padding: 11px 12px;
    border-radius: 8px;
    font-weight: 750;
}

.ar-mobile-menu nav a:hover {
    color: var(--ar-blue);
    background: var(--ar-blue-soft);
}

.ar-home-hero {
    display: grid;
    grid-template-columns: minmax(0, 1.45fr) minmax(330px, 0.55fr);
    gap: 74px;
    align-items: center;
    min-height: 670px;
    padding-block: 92px 78px;
}

.ar-home-copy {
    position: relative;
}

.ar-kicker {
    margin: 0 0 14px;
    color: var(--ar-blue);
    font-size: 12px;
    font-weight: 850;
    letter-spacing: 0.15em;
    line-height: 1.4;
    text-transform: uppercase;
}

.ar-home h1,
.ar-page-hero h1,
.ar-article-hero h1,
.ar-test-hero h1 {
    max-width: 940px;
    margin: 0;
    font-family: var(--ar-display);
    font-weight: 650;
    letter-spacing: -0.052em;
    line-height: 0.98;
    text-wrap: balance;
}

.ar-home h1 {
    font-size: clamp(48px, 6.1vw, 82px);
}

.ar-lead {
    max-width: 760px;
    margin: 26px 0 0;
    color: var(--ar-muted);
    font-size: clamp(18px, 1.7vw, 22px);
    line-height: 1.55;
}

.ar-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 32px;
}

.ar-route {
    display: flex;
    align-items: center;
    width: min(440px, 88%);
    height: 12px;
    margin-top: 56px;
}

.ar-route::before {
    content: "";
    width: 100%;
    height: 2px;
    background: var(--ar-line);
}

.ar-route span,
.ar-route i {
    flex: 0 0 auto;
    width: 12px;
    height: 12px;
    margin-left: -1px;
    border: 3px solid var(--ar-canvas);
    border-radius: 50%;
    background: var(--ar-signal);
    box-shadow: 0 0 0 1px rgba(224, 163, 27, 0.45);
}

.ar-route span {
    margin-left: -100%;
}

.ar-route i {
    margin-left: calc(33.33% - 9px);
}

.ar-finder {
    position: relative;
    padding: 32px;
    border: 1px solid #cfd8e4;
    border-radius: 28px;
    background: var(--ar-paper);
    box-shadow: var(--ar-shadow);
}

.ar-finder::before {
    position: absolute;
    top: -14px;
    right: 28px;
    width: 84px;
    height: 28px;
    border: 1px solid #dfbc67;
    background: var(--ar-signal-soft);
    content: "";
    transform: rotate(2deg);
}

.ar-finder h2,
.ar-section-head h2,
.ar-method-home h2 {
    margin: 0;
    font-family: var(--ar-display);
    font-size: clamp(34px, 4vw, 54px);
    font-weight: 650;
    letter-spacing: -0.045em;
    line-height: 1.06;
    text-wrap: balance;
}

.ar-finder h2 {
    font-size: clamp(30px, 3vw, 42px);
}

.ar-need-links {
    display: grid;
    margin-top: 26px;
    border-top: 1px solid var(--ar-line);
}

.ar-need-links a {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 6px 16px;
    align-items: center;
    min-height: 68px;
    padding: 13px 2px;
    border-bottom: 1px solid var(--ar-line);
}

.ar-need-links a::after {
    grid-column: 2;
    grid-row: 1 / span 2;
    color: var(--ar-blue);
    content: "→";
    font-size: 22px;
}

.ar-need-links a:hover span {
    color: var(--ar-blue);
}

.ar-need-links span {
    font-weight: 820;
}

.ar-need-links small {
    color: var(--ar-faint);
    font-size: 13px;
}

.ar-proof {
    border-block: 1px solid var(--ar-line);
    background: var(--ar-paper);
}

.ar-proof-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}

.ar-proof-grid div {
    min-height: 118px;
    padding: 25px 26px;
    border-left: 1px solid var(--ar-line);
}

.ar-proof-grid div:last-child {
    border-right: 1px solid var(--ar-line);
}

.ar-proof-grid strong,
.ar-proof-grid span {
    display: block;
}

.ar-proof-grid strong {
    margin-bottom: 5px;
    font-size: 14px;
}

.ar-proof-grid span {
    color: var(--ar-muted);
    font-size: 13px;
    line-height: 1.45;
}

.ar-section {
    padding-block: 100px;
}

.ar-section-head {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 32px;
    margin-bottom: 38px;
}

.ar-section-head > div {
    max-width: 780px;
}

.ar-section-head > div > p:last-child:not(.ar-kicker) {
    max-width: 690px;
    margin: 18px 0 0;
    color: var(--ar-muted);
    font-size: 18px;
}

.ar-product-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
}

.ar-product-card {
    display: flex;
    min-width: 0;
    flex-direction: column;
    overflow: hidden;
    border: 1px solid var(--ar-line);
    border-radius: var(--ar-radius);
    background: var(--ar-paper);
}

.ar-product-card.is-lead {
    grid-column: span 2;
    display: grid;
    grid-template-columns: minmax(250px, 0.92fr) minmax(0, 1.08fr);
}

.ar-product-card.is-lead .ar-card-top {
    position: absolute;
    z-index: 2;
    width: min(100%, 350px);
}

.ar-product-card.is-lead .ar-card-image {
    min-height: 100%;
}

.ar-card-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 46px;
    padding: 10px 15px;
    border-bottom: 1px solid var(--ar-line);
    color: var(--ar-blue);
    background: rgba(255, 255, 255, 0.92);
    font-size: 11px;
    font-weight: 850;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.ar-card-top b {
    font-family: var(--ar-display);
    font-size: 19px;
    letter-spacing: 0;
}

.ar-card-image,
.ar-page-card-image,
.ar-article-cover {
    display: block;
    overflow: hidden;
    background: var(--ar-soft);
}

.ar-card-image {
    aspect-ratio: 5 / 3.2;
}

.ar-card-image img,
.ar-page-card-image img,
.ar-article-cover img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 240ms ease;
}

.ar-card-image:hover img,
.ar-page-card-image:hover img {
    transform: scale(1.02);
}

.ar-image-fallback {
    position: relative;
    display: grid;
    width: 100%;
    height: 100%;
    min-height: 180px;
    place-items: center;
    overflow: hidden;
    background: var(--ar-soft);
}

.ar-image-fallback i {
    position: absolute;
    width: 54%;
    aspect-ratio: 1;
    border: 18px solid rgba(22, 75, 156, 0.08);
    border-radius: 50%;
}

.ar-image-fallback b {
    z-index: 1;
    display: grid;
    width: 70px;
    height: 70px;
    place-items: center;
    border: 1px solid rgba(22, 75, 156, 0.22);
    border-radius: 50%;
    color: var(--ar-blue);
    background: rgba(255, 255, 255, 0.72);
    letter-spacing: 0.08em;
}

.ar-card-body {
    display: flex;
    flex: 1;
    flex-direction: column;
    padding: 25px;
}

.ar-card-body h3,
.ar-page-card h3,
.ar-compact-card h3,
.ar-method-grid h3 {
    margin: 0;
    font-family: var(--ar-display);
    font-size: 26px;
    font-weight: 650;
    letter-spacing: -0.035em;
    line-height: 1.12;
}

.ar-card-body h3 a:hover,
.ar-page-card h3 a:hover,
.ar-compact-card h3 a:hover {
    color: var(--ar-blue);
}

.ar-card-body > p,
.ar-page-card p,
.ar-compact-card p {
    margin: 12px 0 0;
    color: var(--ar-muted);
}

.ar-limit {
    margin-top: 18px;
    padding: 10px 12px;
    border-left: 3px solid var(--ar-signal);
    color: #624915;
    background: var(--ar-signal-soft);
    font-size: 13px;
}

.ar-card-evidence {
    display: grid;
    gap: 8px;
    margin-top: 18px;
}

.ar-card-strengths,
.ar-card-caution {
    padding: 12px 13px;
    border: 1px solid;
    border-radius: 14px;
}

.ar-card-strengths {
    border-color: #d5ede5;
    background: #f2fbf7;
}

.ar-card-caution {
    border-color: #f0e2bd;
    background: #fffaf0;
}

.ar-card-evidence-label {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: #08785d;
    font-size: 10px;
    font-weight: 900;
    letter-spacing: 0.075em;
    line-height: 1.2;
    text-transform: uppercase;
}

.ar-card-caution .ar-card-evidence-label {
    color: #785b1c;
}

.ar-evidence-icon {
    width: 15px;
    height: 15px;
    flex: 0 0 auto;
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 1.8;
}

.ar-product-highlights {
    display: grid;
    gap: 6px;
    padding: 0;
    margin: 9px 0 0;
    list-style: none;
}

.ar-product-highlights li {
    display: grid;
    grid-template-columns: 15px minmax(0, 1fr);
    align-items: start;
    gap: 7px;
    color: #294d45;
    font-size: 12px;
    font-weight: 700;
    line-height: 1.35;
}

.ar-product-highlights li .ar-evidence-icon {
    margin-top: 1px;
    color: #0b9470;
}

.ar-card-caution p {
    margin: 7px 0 0;
    color: #695424;
    font-size: 12px;
    line-height: 1.42;
}

.ar-card-meta {
    display: flex;
    justify-content: space-between;
    gap: 10px;
    margin-top: auto;
    padding-top: 23px;
    color: var(--ar-muted);
    font-size: 13px;
    font-weight: 750;
}

.ar-card-meta span:first-child {
    color: var(--ar-positive);
}

.ar-card-decision-footer {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 12px;
    margin-top: auto;
    padding-top: 17px;
    border-top: 1px solid #e7eef7;
}

.ar-card-decision-footer .ar-card-meta {
    display: grid;
    gap: 3px;
    margin: 0;
    padding: 0;
}

.ar-card-decision-footer .ar-card-meta span:last-child {
    color: #40546f;
}

.ar-card-actions {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    margin-top: 17px;
}

.ar-compare-zone {
    border-block: 1px solid var(--ar-line);
    background: #eaf0f6;
}

.ar-compare-box {
    overflow: hidden;
    border: 1px solid #cfd9e4;
    border-radius: 22px;
    background: var(--ar-paper);
    box-shadow: 0 10px 34px rgba(24, 40, 66, 0.07);
}

.ar-compare-controls {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr)) auto;
    gap: 12px;
    align-items: end;
    padding: 22px;
    border-bottom: 1px solid var(--ar-line);
    background: #f9fbfd;
}

.ar-compare-controls label {
    display: grid;
    gap: 6px;
    color: #485567;
    font-size: 12px;
    font-weight: 800;
}

.ar-compare-controls select,
.ar-compare-controls button {
    width: 100%;
    min-height: 46px;
    padding: 10px 12px;
    border: 1px solid #c9d3df;
    border-radius: 10px;
    color: var(--ar-ink);
    background: #fff;
}

.ar-compare-controls button {
    width: auto;
    cursor: pointer;
    font-size: 13px;
    font-weight: 800;
}

.ar-compare-controls button:hover {
    border-color: var(--ar-blue);
    color: var(--ar-blue);
}

.ar-result-count {
    margin: 0;
    padding: 14px 22px;
    border-bottom: 1px solid var(--ar-line);
    color: var(--ar-muted);
    font-size: 13px;
}

.ar-compare-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 14px;
}

.ar-compare-table th,
.ar-compare-table td {
    padding: 18px 16px;
    border-bottom: 1px solid var(--ar-line);
    text-align: left;
    vertical-align: top;
}

.ar-compare-table th {
    color: #49566a;
    background: #f6f8fb;
    font-size: 11px;
    font-weight: 850;
    letter-spacing: 0.07em;
    text-transform: uppercase;
}

.ar-compare-table td:first-child {
    min-width: 185px;
}

.ar-compare-table td strong,
.ar-compare-table td small {
    display: block;
}

.ar-compare-table td small {
    margin-top: 4px;
    color: var(--ar-faint);
    font-size: 11px;
}

.ar-compare-table td:last-child a {
    color: var(--ar-blue);
    font-weight: 800;
    white-space: nowrap;
}

.ar-table-empty {
    margin: 0;
    padding: 24px;
    color: var(--ar-muted);
    text-align: center;
}

.ar-compact-grid {
    display: grid;
    gap: 12px;
}

.ar-compact-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    min-height: 128px;
    padding: 24px 26px;
    border: 1px solid var(--ar-line);
    border-radius: 15px;
    background: var(--ar-paper);
}

.ar-compact-card > div {
    display: grid;
    grid-template-columns: 160px minmax(190px, 0.7fr) minmax(250px, 1fr);
    flex: 1;
    gap: 26px;
    align-items: center;
}

.ar-compact-card small {
    color: var(--ar-positive);
    font-weight: 820;
}

.ar-compact-card p {
    margin: 0;
}

.ar-vs-zone {
    color: #f8fbff;
    background: #10213e;
}

.ar-vs-zone .ar-kicker,
.ar-vs-zone .ar-text-link {
    color: #8cb7ff !important;
}

.ar-vs-zone .ar-section-head > div > p:last-child:not(.ar-kicker) {
    color: #b8c6d9;
}

.ar-vs-zone .ar-button-secondary {
    border-color: #3b4c68;
    color: #fff !important;
    background: #182b4b;
}

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

.ar-page-card {
    overflow: hidden;
    border: 1px solid var(--ar-line);
    border-radius: 16px;
    background: var(--ar-paper);
}

.ar-vs-zone .ar-page-card {
    color: var(--ar-ink);
    border-color: #30425f;
}

.ar-page-card-image {
    aspect-ratio: 16 / 9;
}

.ar-page-card > div {
    padding: 24px;
}

.ar-page-card > div > small {
    display: block;
    margin-bottom: 9px;
    color: var(--ar-blue);
    font-size: 11px;
    font-weight: 850;
    letter-spacing: 0.13em;
}

.ar-page-card .ar-text-link {
    display: inline-block;
    margin-top: 20px;
}

.ar-method-home {
    display: grid;
    grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
    gap: 78px;
    padding-block: 112px;
}

.ar-method-home .ar-button {
    margin-top: 30px;
}

.ar-method-points {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    border-top: 1px solid var(--ar-line);
    border-left: 1px solid var(--ar-line);
}

.ar-method-points article {
    min-height: 190px;
    padding: 25px;
    border-right: 1px solid var(--ar-line);
    border-bottom: 1px solid var(--ar-line);
    background: var(--ar-paper);
}

.ar-method-points span {
    color: var(--ar-blue);
    font-size: 13px;
    font-weight: 850;
}

.ar-method-points p {
    margin: 20px 0 0;
    color: var(--ar-muted);
}

.ar-path-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 12px;
}

.ar-path-grid a {
    display: flex;
    min-height: 210px;
    flex-direction: column;
    padding: 23px;
    border: 1px solid var(--ar-line);
    border-radius: 14px;
    background: var(--ar-paper);
    transition: border-color 180ms ease, transform 180ms ease;
}

.ar-path-grid a:hover {
    border-color: #a8b7c8;
    transform: translateY(-2px);
}

.ar-path-grid small {
    color: var(--ar-blue);
    font-size: 10px;
    font-weight: 850;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.ar-path-grid strong {
    margin-top: 18px;
    font-family: var(--ar-display);
    font-size: 25px;
    font-weight: 650;
    letter-spacing: -0.03em;
    line-height: 1.12;
}

.ar-path-grid span {
    margin-top: auto;
    padding-top: 18px;
    color: var(--ar-muted);
    font-size: 13px;
}

.ar-empty {
    grid-column: 1 / -1;
    width: 100%;
    padding: 30px;
    border: 1px dashed #aeb9c7;
    border-radius: 14px;
    color: var(--ar-muted);
    background: rgba(255, 255, 255, 0.72);
}

.ar-empty strong {
    display: block;
    color: var(--ar-ink);
    font-family: var(--ar-display);
    font-size: 24px;
}

.ar-empty p {
    margin: 7px 0 0;
}

.ar-page-hero,
.ar-article-hero,
.ar-test-hero {
    display: grid;
    grid-template-columns: minmax(0, 1.25fr) minmax(260px, 0.75fr);
    gap: 66px;
    align-items: center;
    min-height: 520px;
    padding-block: 76px;
    border-bottom: 1px solid var(--ar-line);
}

.ar-page-hero h1,
.ar-article-hero h1,
.ar-test-hero h1 {
    font-size: clamp(48px, 6vw, 76px);
}

.ar-page-mark {
    position: relative;
    display: grid;
    width: min(350px, 100%);
    aspect-ratio: 1;
    justify-self: end;
    place-items: center;
    border: 1px solid #c8d3df;
    border-radius: 50%;
    background: var(--ar-paper);
}

.ar-page-mark::before,
.ar-page-mark::after {
    position: absolute;
    border-radius: 50%;
    content: "";
}

.ar-page-mark::before {
    inset: 14%;
    border: 2px solid var(--ar-blue);
}

.ar-page-mark::after {
    inset: 31%;
    background: var(--ar-soft);
}

.ar-page-mark span {
    z-index: 1;
    color: var(--ar-blue);
    font-size: clamp(15px, 2vw, 23px);
    font-weight: 900;
    letter-spacing: 0.14em;
}

.ar-breadcrumb {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
    align-items: center;
    margin-bottom: 25px;
    color: var(--ar-faint);
    font-size: 12px;
}

.ar-breadcrumb a:hover {
    color: var(--ar-blue);
}

.ar-breadcrumb strong {
    color: var(--ar-muted);
    font-weight: 700;
}

.ar-editorial-intro {
    max-width: 860px;
    margin: 72px auto 0;
    padding: 34px 38px;
    border: 1px solid var(--ar-line);
    border-radius: 14px;
    background: var(--ar-paper);
}

.ar-article-hero,
.ar-test-hero {
    grid-template-columns: minmax(0, 1.2fr) minmax(340px, 0.8fr);
}

.ar-article-cover {
    min-height: 370px;
    aspect-ratio: 4 / 3;
    border: 1px solid var(--ar-line);
    border-radius: 20px;
}

.ar-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 9px 20px;
    margin-top: 26px;
    color: var(--ar-faint);
    font-size: 12px;
    font-weight: 700;
}

.ar-meta span + span::before {
    margin-right: 20px;
    color: #a6b0bc;
    content: "·";
}

.ar-article-layout {
    display: grid;
    grid-template-columns: minmax(0, 760px) minmax(250px, 310px);
    gap: 70px;
    align-items: start;
    justify-content: center;
    padding-block: 74px;
}

.ar-prose {
    color: #273548;
    font-size: 18px;
    line-height: 1.78;
}

.ar-prose > *:first-child {
    margin-top: 0;
}

.ar-prose h2,
.ar-prose h3,
.ar-prose h4 {
    color: var(--ar-ink);
    font-family: var(--ar-display);
    font-weight: 650;
    letter-spacing: -0.035em;
    line-height: 1.12;
}

.ar-prose h2 {
    margin: 58px 0 20px;
    font-size: clamp(34px, 4vw, 46px);
}

.ar-prose h3 {
    margin: 42px 0 16px;
    font-size: 29px;
}

.ar-prose p,
.ar-prose ul,
.ar-prose ol,
.ar-prose table,
.ar-prose blockquote {
    margin-block: 0 24px;
}

.ar-prose a {
    color: var(--ar-blue);
    text-decoration: underline;
    text-underline-offset: 3px;
}

.ar-prose img {
    margin-block: 34px;
    border-radius: 14px;
}

.ar-prose blockquote {
    padding: 22px 26px;
    border-left: 4px solid var(--ar-signal);
    background: var(--ar-signal-soft);
}

.ar-prose table {
    display: block;
    max-width: 100%;
    overflow-x: auto;
    border-collapse: collapse;
    font-size: 14px;
}

.ar-prose th,
.ar-prose td {
    padding: 12px 14px;
    border: 1px solid var(--ar-line);
    text-align: left;
}

.ar-prose th {
    background: var(--ar-soft);
}

.ar-article-side {
    position: sticky;
    top: 106px;
    display: grid;
    gap: 15px;
}

.admin-bar .ar-article-side {
    top: 138px;
}

.ar-side-box {
    padding: 23px;
    border: 1px solid var(--ar-line);
    border-radius: 14px;
    background: var(--ar-paper);
}

.ar-side-box h2 {
    margin: 0;
    font-family: var(--ar-display);
    font-size: 23px;
    font-weight: 650;
    letter-spacing: -0.03em;
    line-height: 1.15;
}

.ar-side-box p {
    margin: 12px 0;
    color: var(--ar-muted);
    font-size: 14px;
}

.ar-side-box > a:not(.ar-button) {
    color: var(--ar-blue);
    font-size: 13px;
    font-weight: 800;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.ar-offer-box .ar-button {
    width: 100%;
}

.ar-offer-box small {
    display: block;
    margin-top: 10px;
    color: var(--ar-faint);
    font-size: 11px;
}

.ar-verdict-strip {
    display: grid;
    grid-template-columns: 0.55fr 1.2fr 1.2fr 0.8fr;
    border: 1px solid #cdd7e3;
    border-radius: 16px;
    background: var(--ar-paper);
    box-shadow: 0 10px 32px rgba(24, 40, 66, 0.06);
}

.ar-verdict-strip div {
    padding: 22px;
    border-right: 1px solid var(--ar-line);
}

.ar-verdict-strip div:last-child {
    border-right: 0;
}

.ar-verdict-strip small,
.ar-verdict-strip strong {
    display: block;
}

.ar-verdict-strip small {
    margin-bottom: 7px;
    color: var(--ar-faint);
    font-size: 10px;
    font-weight: 850;
    letter-spacing: 0.09em;
    text-transform: uppercase;
}

.ar-verdict-strip strong {
    font-size: 14px;
    line-height: 1.42;
}

.ar-verdict-strip div:first-child strong {
    color: var(--ar-positive);
    font-family: var(--ar-display);
    font-size: 27px;
}

/* Product decision hero */
.ar-test-breadcrumb {
    padding-top: 34px;
}

.ar-test-breadcrumb .ar-breadcrumb {
    margin-bottom: 18px;
}

.ar-test-page .ar-test-hero {
    grid-template-columns: minmax(360px, 0.88fr) minmax(0, 1.12fr);
    gap: 0;
    align-items: stretch;
    min-height: 680px;
    padding: 0;
    overflow: hidden;
    border: 1px solid #cbd7e4;
    border-radius: 28px;
    background: var(--ar-paper);
    box-shadow: 0 22px 60px rgba(24, 40, 66, 0.1);
}

.ar-test-promoted {
    width: 100%;
}

.ar-test-promoted-analysis > .arc-spotlight {
    margin: 0 0 24px;
}

.ar-test-promoted-consensus > .arc-user-consensus {
    margin: 0 0 38px;
}

.ar-test-promoted + .ar-test-content {
    margin-top: 0;
}

.ar-product-stage {
    position: relative;
    isolation: isolate;
    display: grid;
    grid-template-rows: auto minmax(0, 1fr) auto;
    min-width: 0;
    padding: 28px 28px 22px;
    overflow: hidden;
    border-right: 1px solid #d6e1ec;
    background: #edf4fa;
}

.ar-product-stage::before {
    position: absolute;
    z-index: -1;
    inset: 7% -16% 4% -18%;
    opacity: 0.72;
    background:
        radial-gradient(circle at 52% 48%, transparent 0 104px, rgba(22, 75, 156, 0.12) 105px 106px, transparent 107px 164px, rgba(22, 75, 156, 0.09) 165px 166px, transparent 167px 230px, rgba(22, 75, 156, 0.06) 231px 232px, transparent 233px),
        linear-gradient(rgba(22, 75, 156, 0.045) 1px, transparent 1px),
        linear-gradient(90deg, rgba(22, 75, 156, 0.045) 1px, transparent 1px);
    background-size: auto, 42px 42px, 42px 42px;
    content: "";
    transform: rotate(-4deg);
}

.ar-stage-topline {
    position: relative;
    z-index: 2;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 10px;
    align-items: center;
    font-size: 10px;
    font-weight: 900;
    letter-spacing: 0.11em;
    text-transform: uppercase;
}

.ar-stage-topline span {
    padding: 8px 11px;
    border-radius: 999px;
    color: #fff;
    background: var(--ar-ink);
}

.ar-stage-topline strong {
    color: var(--ar-blue);
}

.ar-product-gallery {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-rows: minmax(0, 1fr) auto auto;
    min-height: 0;
    gap: 10px;
}

.ar-stage-image {
    position: relative;
    display: grid;
    min-height: 0;
    place-items: center;
    padding: 18px 0 2px;
}

.ar-stage-image img,
.ar-stage-image .ar-image-fallback {
    width: 100%;
    height: 100%;
    max-height: 560px;
    object-fit: contain;
    filter: drop-shadow(0 22px 24px rgba(24, 40, 66, 0.16));
}

.ar-gallery-thumbs {
    display: flex;
    max-width: 100%;
    justify-content: center;
    gap: 9px;
    padding: 2px 2px 4px;
    overflow-x: auto;
    overscroll-behavior-inline: contain;
    scrollbar-width: thin;
}

.ar-gallery-thumb {
    display: grid;
    width: 58px;
    height: 58px;
    flex: 0 0 58px;
    padding: 5px;
    overflow: hidden;
    place-items: center;
    border: 1px solid #cbd7e4;
    border-radius: 13px;
    background: rgba(255, 255, 255, 0.88);
    box-shadow: 0 5px 14px rgba(24, 40, 66, 0.06);
    cursor: pointer;
    transition: border-color 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

.ar-gallery-thumb img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.ar-gallery-thumb:hover {
    border-color: rgba(22, 75, 156, 0.58);
    transform: translateY(-2px);
}

.ar-gallery-thumb.is-active {
    border-color: var(--ar-blue);
    box-shadow: 0 0 0 2px rgba(22, 75, 156, 0.16), 0 7px 18px rgba(24, 40, 66, 0.09);
}

.ar-product-gallery > p {
    position: relative;
    z-index: 1;
    margin: 0;
    color: var(--ar-faint);
    font-size: 10px;
    font-weight: 750;
    letter-spacing: 0.04em;
}

.ar-product-decision {
    display: flex;
    min-width: 0;
    flex-direction: column;
    justify-content: center;
    padding: 46px 48px 42px;
}

.ar-decision-eyebrow {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    align-items: center;
}

.ar-decision-eyebrow .ar-kicker {
    margin: 0;
}

.ar-decision-eyebrow > span {
    color: var(--ar-faint);
    font-size: 10px;
    font-weight: 750;
}

.ar-test-page .ar-test-hero h1 {
    margin-top: 16px;
    font-size: clamp(44px, 5.3vw, 68px);
    line-height: 0.98;
}

.ar-product-headline {
    margin: 20px 0 0;
    color: var(--ar-muted);
    font-size: clamp(17px, 1.65vw, 21px);
    line-height: 1.48;
}

.ar-decision-metrics {
    display: grid;
    grid-template-columns: 0.85fr 1.15fr 1.1fr;
    margin-top: 30px;
    overflow: hidden;
    border: 1px solid var(--ar-line);
    border-radius: 15px;
    background: #f8fafc;
}

.ar-decision-metrics > div {
    min-width: 0;
    padding: 16px 17px;
    border-right: 1px solid var(--ar-line);
}

.ar-decision-metrics > div:last-child {
    border-right: 0;
}

.ar-decision-metrics small,
.ar-decision-metrics strong {
    display: block;
}

.ar-decision-metrics small,
.ar-decision-verdict small,
.ar-fit-grid small {
    margin-bottom: 5px;
    color: var(--ar-faint);
    font-size: 9px;
    font-weight: 900;
    letter-spacing: 0.1em;
    line-height: 1.35;
    text-transform: uppercase;
}

.ar-decision-metrics strong {
    font-size: 13px;
    line-height: 1.35;
}

.ar-decision-metrics > div:first-child strong {
    color: var(--ar-positive);
    font-family: var(--ar-display);
    font-size: 25px;
}

.ar-decision-verdict {
    margin-top: 14px;
    padding: 18px 20px;
    border-left: 4px solid var(--ar-blue);
    background: var(--ar-blue-soft);
}

.ar-decision-verdict small {
    display: block;
    color: var(--ar-blue);
}

.ar-decision-verdict p {
    margin: 0;
    color: #20314a;
    font-size: 15px;
    font-weight: 760;
    line-height: 1.5;
}

.ar-hero-specs {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    margin: 15px 0 0;
    border-block: 1px solid var(--ar-line);
}

.ar-hero-specs > div {
    min-width: 0;
    padding: 13px 15px 13px 0;
}

.ar-hero-specs > div + div {
    padding-left: 15px;
    border-left: 1px solid var(--ar-line);
}

.ar-hero-specs dt {
    color: var(--ar-faint);
    font-size: 9px;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.ar-hero-specs dd {
    margin: 3px 0 0;
    font-size: 12px;
    font-weight: 820;
    line-height: 1.35;
}

.ar-product-decision .ar-fit-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    margin-top: 16px;
}

.ar-product-decision .ar-fit-grid > div {
    padding: 15px 16px;
    border: 1px solid var(--ar-line);
    border-radius: 13px;
}

.ar-product-decision .ar-fit-grid > div.is-caution {
    border-color: #e4c36f;
    background: var(--ar-signal-soft);
}

.ar-product-decision .ar-fit-grid strong {
    display: block;
    font-size: 12px;
    line-height: 1.45;
}

.ar-hero-offer {
    display: flex;
    gap: 14px;
    align-items: center;
    margin-top: 18px;
}

.ar-hero-offer .ar-button {
    flex: 0 0 auto;
}

.ar-hero-offer span {
    max-width: 250px;
    color: var(--ar-faint);
    font-size: 10px;
    line-height: 1.4;
}

.ar-product-decision .ar-meta {
    margin-top: 18px;
}

.ar-test-content {
    padding-top: 82px;
}

/* Automatic product shelves */
.ar-product-shelf {
    padding-top: 44px;
}

.ar-shelf-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(225px, 1fr));
    gap: 15px;
}

.ar-shelf-grid.has-1-items {
    grid-template-columns: minmax(0, 330px);
}

.ar-shelf-card {
    min-width: 0;
    overflow: hidden;
    border: 1px solid var(--ar-line);
    border-radius: 18px;
    background: var(--ar-paper);
    box-shadow: 0 12px 30px rgba(24, 40, 66, 0.055);
}

.ar-shelf-image {
    display: grid;
    height: 240px;
    overflow: hidden;
    place-items: center;
    padding: 20px;
    background: #f1f4f8;
}

.ar-shelf-image img,
.ar-shelf-image .ar-image-fallback {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 220ms ease;
}

.ar-shelf-image:hover img {
    transform: scale(1.025);
}

.ar-shelf-body {
    display: flex;
    min-height: 300px;
    flex-direction: column;
    padding: 21px;
}

.ar-shelf-brand {
    margin: 0;
    color: var(--ar-blue);
    font-size: 10px;
    font-weight: 900;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.ar-shelf-card h3 {
    margin: 7px 0 0;
    font-family: var(--ar-display);
    font-size: 24px;
    font-weight: 650;
    letter-spacing: -0.035em;
    line-height: 1.08;
}

.ar-shelf-card h3 a:hover {
    color: var(--ar-blue);
}

.ar-shelf-stats {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 8px;
    margin-top: 18px;
    color: var(--ar-muted);
    font-size: 13px;
}

.ar-shelf-stats span {
    color: var(--ar-positive);
    font-weight: 850;
}

.ar-shelf-fit {
    margin: 15px 0 0;
    color: var(--ar-muted);
    font-size: 13px;
    line-height: 1.48;
}

.ar-shelf-actions {
    display: grid;
    gap: 9px;
    margin-top: auto;
    padding-top: 20px;
}

.ar-shelf-actions > a:not(.ar-button) {
    color: var(--ar-blue);
    font-size: 12px;
    font-weight: 850;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.ar-shelf-actions .ar-button {
    width: 100%;
}

.ar-method-page {
    padding-block: 90px;
}

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

.ar-method-grid article {
    min-height: 250px;
    padding: 30px;
    border: 1px solid var(--ar-line);
    border-radius: 15px;
    background: var(--ar-paper);
}

.ar-method-grid article > span {
    color: var(--ar-blue);
    font-family: var(--ar-display);
    font-size: 32px;
}

.ar-method-grid h3 {
    margin-top: 42px;
}

.ar-method-grid p {
    margin: 13px 0 0;
    color: var(--ar-muted);
}

.ar-method-warning {
    margin-top: 16px;
    padding: 22px 25px;
    border: 1px solid #dfbd6c;
    border-radius: 12px;
    color: #624915;
    background: var(--ar-signal-soft);
}

.ar-method-warning p {
    margin: 5px 0 0;
}

/* Automatic product-to-product comparison */
.ar-similar-section {
    padding-top: 34px;
}

.ar-similar-context {
    margin: -18px 0 18px;
    color: var(--ar-faint);
    font-size: 12px;
}

.ar-similar-scroll {
    width: 100%;
    overflow-x: auto;
    border: 1px solid var(--ar-line);
    border-radius: 20px;
    background: var(--ar-paper);
    box-shadow: 0 16px 38px rgba(24, 40, 66, 0.07);
    scrollbar-color: #b9c7da transparent;
    scrollbar-width: thin;
    -webkit-overflow-scrolling: touch;
}

.ar-similar-scroll:focus-visible {
    outline: 3px solid rgba(22, 75, 156, 0.34);
    outline-offset: 4px;
}

.ar-similar-table {
    width: 100%;
    min-width: 980px;
    border-collapse: separate;
    border-spacing: 0;
    table-layout: fixed;
    color: var(--ar-ink);
    font-size: 14px;
}

.ar-similar-table th,
.ar-similar-table td {
    padding: 17px 16px;
    border-right: 1px solid var(--ar-line);
    border-bottom: 1px solid var(--ar-line);
    vertical-align: middle;
    text-align: center;
}

.ar-similar-table tr > *:last-child {
    border-right: 0;
}

.ar-similar-table tbody tr:last-child > * {
    border-bottom: 0;
}

.ar-similar-table thead th {
    min-width: 190px;
    padding-block: 22px 20px;
    background: #f2f5f9;
}

.ar-similar-table .ar-similar-criterion,
.ar-similar-table tbody th {
    position: sticky;
    z-index: 3;
    left: 0;
    width: 165px;
    min-width: 165px;
    color: #415066;
    background: #f8fafc;
    font-weight: 760;
    text-align: left;
}

.ar-similar-table .ar-similar-criterion {
    z-index: 4;
    color: var(--ar-ink);
    font-size: 15px;
}

.ar-similar-table .is-current {
    background: var(--ar-blue-soft);
    box-shadow: inset 3px 0 0 #2e6fe8;
    font-weight: 760;
}

.ar-similar-product {
    height: 300px;
}

.ar-similar-product > strong,
.ar-similar-brand,
.ar-similar-score,
.ar-similar-relation {
    display: block;
}

.ar-similar-product > strong {
    margin-top: 12px;
    font-size: 16px;
    line-height: 1.25;
}

.ar-similar-image {
    display: grid;
    width: 116px;
    height: 104px;
    place-items: center;
    margin-inline: auto;
    overflow: hidden;
    border: 1px solid #e2e8f0;
    border-radius: 14px;
    background: #fff;
}

.ar-similar-image img,
.ar-similar-image .ar-image-fallback {
    width: 100%;
    height: 100%;
    min-height: 0;
    object-fit: contain;
}

.ar-similar-brand {
    margin-top: 5px;
    color: var(--ar-faint);
    font-size: 12px;
    font-weight: 700;
}

.ar-similar-score {
    margin-top: 9px;
    color: var(--ar-positive);
    font-size: 13px;
    font-variant-numeric: tabular-nums;
    font-weight: 850;
}

.ar-similar-relation {
    width: max-content;
    max-width: 100%;
    margin: 11px auto 0;
    padding: 5px 9px;
    border: 1px solid #c9d6e7;
    border-radius: 999px;
    color: var(--ar-blue);
    background: #fff;
    font-size: 10px;
    font-weight: 850;
    letter-spacing: 0.03em;
    text-transform: uppercase;
}

.ar-similar-relation.is-current {
    border-color: var(--ar-blue);
    color: #fff;
    background: var(--ar-blue);
    box-shadow: none;
}

.ar-data-missing {
    color: var(--ar-faint);
    font-size: 12px;
    font-weight: 500;
}

.ar-data-flag {
    display: inline-flex;
    min-width: 52px;
    min-height: 30px;
    align-items: center;
    justify-content: center;
    padding: 5px 10px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 850;
}

.ar-data-flag.is-yes {
    color: var(--ar-positive);
    background: #e9f5ef;
}

.ar-data-flag.is-no {
    color: #667085;
    background: #eef1f5;
}

.ar-similar-actions a,
.ar-current-page {
    display: inline-flex;
    min-height: 44px;
    align-items: center;
    justify-content: center;
    padding: 9px 13px;
    border: 1px solid #a9c4ed;
    border-radius: 999px;
    color: var(--ar-blue);
    background: #fff;
    font-size: 12px;
    font-weight: 850;
}

.ar-similar-actions a:hover {
    border-color: var(--ar-blue);
    background: var(--ar-blue-soft);
}

.ar-current-page {
    border-color: transparent;
    color: var(--ar-blue-dark);
    background: #dbe9ff;
}

.ar-footer {
    padding-block: 66px 24px;
    color: #dbe7f5;
    background: #0b172a;
}

.ar-footer-grid {
    display: grid;
    grid-template-columns: 1.7fr 0.65fr 0.75fr;
    gap: 72px;
}

.ar-footer-logo {
    color: #fff !important;
}

.ar-core .ar-footer .ar-footer-logo > strong {
    color: #fff;
}

.ar-footer-logo > span {
    color: var(--ar-ink);
    background: #fff;
}

.ar-footer-grid > div:first-child p {
    max-width: 420px;
    color: #9cafc7;
}

.ar-footer h2 {
    margin: 0 0 13px;
    color: #fff;
    font-size: 13px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.ar-footer-grid > div:not(:first-child) a {
    display: block;
    padding-block: 5px;
    color: #aebdd0;
    font-size: 14px;
}

.ar-footer-grid > div:not(:first-child) a:hover {
    color: #fff;
}

.ar-footer-bottom {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    margin-top: 50px;
    padding-top: 22px;
    border-top: 1px solid #25354d;
    color: #8294ac;
    font-size: 12px;
}

@media (max-width: 1080px) {
    .ar-test-page .ar-test-hero {
        grid-template-columns: minmax(320px, 0.82fr) minmax(0, 1.18fr);
    }

    .ar-product-stage {
        padding-inline: 22px;
    }

    .ar-product-decision {
        padding-inline: 34px;
    }

    .ar-decision-metrics > div {
        padding-inline: 13px;
    }

    .ar-nav,
    .ar-header-cta {
        display: none;
    }

    .ar-header-inner {
        justify-content: space-between;
    }

    .ar-mobile-menu {
        display: block;
    }

    .ar-home-hero {
        grid-template-columns: minmax(0, 1.25fr) minmax(310px, 0.75fr);
        gap: 42px;
    }

    .ar-product-card.is-lead {
        grid-column: span 3;
    }

    .ar-compare-box {
        overflow-x: auto;
    }

    .ar-compare-table {
        min-width: 980px;
    }

    .ar-compact-card > div {
        grid-template-columns: 130px minmax(180px, 0.8fr) minmax(220px, 1fr);
    }
}

@media (max-width: 820px) {
    .admin-bar .ar-header {
        top: 46px;
    }

    .ar-shell {
        width: min(calc(100% - 30px), 680px);
    }

    .ar-home-hero,
    .ar-page-hero,
    .ar-article-hero,
    .ar-test-hero,
    .ar-method-home {
        grid-template-columns: 1fr;
    }

    .ar-test-page .ar-test-hero {
        grid-template-columns: 1fr;
        min-height: 0;
    }

    .ar-product-stage {
        min-height: 520px;
        border-right: 0;
        border-bottom: 1px solid #d6e1ec;
    }

    .ar-stage-image img,
    .ar-stage-image .ar-image-fallback {
        max-height: 430px;
    }

    .ar-product-decision {
        padding: 42px;
    }

    .ar-home-hero {
        min-height: auto;
        padding-block: 70px;
    }

    .ar-finder {
        padding: 27px;
    }

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

    .ar-proof-grid div:nth-child(2) {
        border-right: 1px solid var(--ar-line);
    }

    .ar-proof-grid div:nth-child(-n+2) {
        border-bottom: 1px solid var(--ar-line);
    }

    .ar-product-grid,
    .ar-content-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .ar-product-card.is-lead {
        grid-column: span 2;
    }

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

    .ar-compare-controls button {
        width: 100%;
    }

    .ar-compare-table {
        min-width: 0;
    }

    .ar-compare-table thead {
        display: none;
    }

    .ar-compare-table,
    .ar-compare-table tbody,
    .ar-compare-table tr,
    .ar-compare-table td {
        display: block;
        width: 100%;
    }

    .ar-compare-table tr {
        padding: 18px 20px;
        border-bottom: 1px solid var(--ar-line);
    }

    .ar-compare-table td {
        display: grid;
        grid-template-columns: minmax(110px, 0.42fr) minmax(0, 1fr);
        gap: 18px;
        padding: 8px 0;
        border: 0;
    }

    .ar-compare-table td::before {
        color: var(--ar-faint);
        content: attr(data-label);
        font-size: 10px;
        font-weight: 850;
        letter-spacing: 0.06em;
        text-transform: uppercase;
    }

    .ar-compact-card,
    .ar-compact-card > div {
        display: grid;
        grid-template-columns: 1fr;
    }

    .ar-compact-card {
        gap: 18px;
    }

    .ar-compact-card > div {
        gap: 8px;
    }

    .ar-compact-card .ar-button {
        justify-self: start;
    }

    .ar-method-home {
        gap: 48px;
    }

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

    .ar-page-hero,
    .ar-article-hero,
    .ar-test-hero {
        min-height: auto;
        padding-block: 58px;
    }

    .ar-page-mark {
        width: min(290px, 75vw);
        justify-self: center;
    }

    .ar-article-cover {
        min-height: 280px;
    }

    .ar-article-layout {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .ar-article-side {
        position: static;
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .ar-verdict-strip {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .ar-verdict-strip div:nth-child(2) {
        border-right: 0;
    }

    .ar-verdict-strip div:nth-child(-n+2) {
        border-bottom: 1px solid var(--ar-line);
    }

    .ar-method-grid {
        grid-template-columns: 1fr;
    }

    .ar-footer-grid {
        grid-template-columns: 1.4fr 0.6fr;
        gap: 45px;
    }

    .ar-footer-grid > div:last-child {
        grid-column: 2;
    }
}

@media (max-width: 580px) {
    .ar-shell {
        width: min(calc(100% - 24px), 520px);
    }

    .ar-header-inner {
        min-height: 66px;
    }

    .ar-logo > span {
        width: 34px;
        height: 34px;
    }

    .ar-logo > strong {
        font-size: 15px;
    }

    .ar-home h1,
    .ar-page-hero h1,
    .ar-article-hero h1,
    .ar-test-hero h1 {
        font-size: clamp(42px, 13.5vw, 60px);
    }

    .ar-test-breadcrumb {
        padding-top: 22px;
    }

    .ar-test-page .ar-test-hero {
        border-radius: 21px;
    }

    .ar-product-stage {
        min-height: 390px;
        padding: 19px 17px 15px;
    }

    .ar-stage-image {
        padding-top: 12px;
    }

    .ar-stage-image img,
    .ar-stage-image .ar-image-fallback {
        max-height: 315px;
    }

    .ar-gallery-thumbs {
        justify-content: flex-start;
    }

    .ar-gallery-thumb {
        width: 52px;
        height: 52px;
        flex-basis: 52px;
        border-radius: 11px;
    }

    .ar-product-decision {
        padding: 30px 20px 26px;
    }

    .ar-decision-eyebrow {
        align-items: flex-start;
    }

    .ar-decision-eyebrow > span {
        max-width: 115px;
        text-align: right;
    }

    .ar-test-page .ar-test-hero h1 {
        font-size: clamp(38px, 11.5vw, 52px);
    }

    .ar-product-headline {
        font-size: 17px;
    }

    .ar-decision-metrics {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .ar-decision-metrics > div:nth-child(2) {
        border-right: 0;
    }

    .ar-decision-metrics > div:last-child {
        grid-column: 1 / -1;
        border-top: 1px solid var(--ar-line);
    }

    .ar-hero-specs,
    .ar-product-decision .ar-fit-grid {
        grid-template-columns: 1fr;
    }

    .ar-hero-specs > div,
    .ar-hero-specs > div + div {
        padding: 11px 0;
        border-left: 0;
    }

    .ar-hero-specs > div + div {
        border-top: 1px solid var(--ar-line);
    }

    .ar-hero-offer {
        display: grid;
    }

    .ar-hero-offer .ar-button {
        width: 100%;
    }

    .ar-test-content {
        padding-top: 58px;
    }

    .ar-shelf-grid {
        grid-template-columns: 1fr;
    }

    .ar-shelf-image {
        height: 220px;
    }

    .ar-home-hero {
        padding-block: 55px;
    }

    .ar-actions,
    .ar-actions .ar-button {
        width: 100%;
    }

    .ar-finder {
        padding: 24px 20px;
        border-radius: 20px;
    }

    .ar-proof-grid {
        grid-template-columns: 1fr;
    }

    .ar-proof-grid div,
    .ar-proof-grid div:nth-child(2),
    .ar-proof-grid div:last-child {
        border-right: 1px solid var(--ar-line);
        border-bottom: 1px solid var(--ar-line);
    }

    .ar-section {
        padding-block: 72px;
    }

    .ar-similar-section {
        padding-top: 22px;
    }

    .ar-similar-context::after {
        content: " Faites glisser le tableau pour voir les autres modèles.";
    }

    .ar-similar-table {
        min-width: 920px;
    }

    .ar-similar-table th,
    .ar-similar-table td {
        padding-inline: 13px;
    }

    .ar-section-head {
        display: grid;
        align-items: start;
    }

    .ar-section-head .ar-button {
        justify-self: start;
    }

    .ar-product-grid,
    .ar-content-grid {
        grid-template-columns: 1fr;
    }

    .ar-product-card.is-lead {
        grid-column: auto;
        display: flex;
    }

    .ar-product-card.is-lead .ar-card-top {
        position: static;
        width: auto;
    }

    .ar-product-card.is-lead .ar-card-image {
        min-height: 0;
    }

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

    .ar-compare-table td {
        grid-template-columns: 100px minmax(0, 1fr);
        gap: 12px;
    }

    .ar-method-points,
    .ar-path-grid,
    .ar-article-side,
    .ar-verdict-strip {
        grid-template-columns: 1fr;
    }

    .ar-path-grid a {
        min-height: 175px;
    }

    .ar-editorial-intro {
        margin-top: 45px;
        padding: 25px 22px;
    }

    .ar-article-cover {
        min-height: 230px;
    }

    .ar-meta {
        display: grid;
        gap: 4px;
    }

    .ar-meta span + span::before {
        content: none;
    }

    .ar-article-layout {
        padding-block: 55px;
    }

    .ar-prose {
        font-size: 17px;
    }

    .ar-verdict-strip div,
    .ar-verdict-strip div:nth-child(2) {
        border-right: 0;
        border-bottom: 1px solid var(--ar-line);
    }

    .ar-verdict-strip div:last-child {
        border-bottom: 0;
    }

    .ar-footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .ar-footer-grid > div:last-child {
        grid-column: auto;
    }

    .ar-footer-bottom {
        display: grid;
    }
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    .ar-core *,
    .ar-core *::before,
    .ar-core *::after {
        scroll-behavior: auto !important;
        transition-duration: 0.01ms !important;
    }
}

/* Home 2026 — conversion UX */
.ar-home-2026 {
    --ar-ink: #07142f;
    --ar-muted: #4f6078;
    --ar-faint: #6b7a91;
    --ar-line: #d7e6f8;
    --ar-paper: #ffffff;
    --ar-canvas: #eef7ff;
    --ar-soft: #eaf6ff;
    --ar-blue: #1062ff;
    --ar-blue-dark: #0737b8;
    --ar-blue-soft: #eaf3ff;
    --ar-cyan: #24c8f4;
    --ar-aqua: #98f1ea;
    --ar-positive: #12a66a;
    --ar-radius: 24px;
    --ar-shadow: 0 24px 70px rgba(16, 98, 255, 0.14);
    background:
        radial-gradient(circle at 15% 8%, rgba(126, 224, 255, 0.46), transparent 30%),
        radial-gradient(circle at 88% 4%, rgba(16, 98, 255, 0.18), transparent 28%),
        linear-gradient(180deg, #f7fcff 0%, #edf7ff 46%, #ffffff 100%);
}

.ar-home-2026 .ar-header {
    padding: 10px 0 12px;
    border-bottom: 0;
    background: linear-gradient(180deg, rgba(247, 252, 255, 0.96), rgba(247, 252, 255, 0.78));
    box-shadow: 0 1px 0 rgba(215, 230, 248, 0.72), 0 18px 42px rgba(7, 20, 47, 0.06);
}

.ar-home-2026 .ar-header-inner {
    min-height: 64px;
    padding-inline: 18px;
    border: 1px solid rgba(205, 224, 248, 0.9);
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.94);
    box-shadow: 0 16px 46px rgba(20, 88, 160, 0.11);
    backdrop-filter: blur(16px);
}

.ar-home-2026 .ar-logo > span {
    position: relative;
    width: 36px;
    height: 36px;
    border: 2px solid rgba(16, 98, 255, 0.22);
    color: transparent;
    background: linear-gradient(135deg, #0c5cff, #25c7f4);
    box-shadow: inset 0 0 0 8px #fff, 0 10px 24px rgba(16, 98, 255, 0.2);
}

.ar-home-2026 .ar-logo > span::before,
.ar-home-2026 .ar-logo > span::after {
    position: absolute;
    border-radius: 999px;
    background: var(--ar-blue);
    content: "";
}

.ar-home-2026 .ar-logo > span::before {
    inset: 12px;
    background: #fff;
}

.ar-home-2026 .ar-logo > span::after {
    right: 5px;
    bottom: 6px;
    width: 7px;
    height: 7px;
    background: var(--ar-cyan);
}

.ar-home-2026 .ar-logo > strong {
    color: #081631;
    font-size: 19px;
    font-weight: 900;
    letter-spacing: -0.05em;
}

.ar-home-2026 .ar-logo em {
    color: #1183ff;
    font-style: normal;
}

.ar-home-2026 .ar-nav {
    gap: 14px;
}

.ar-home-2026 .ar-nav a {
    padding: 9px 10px;
    color: #1f2b43;
    font-size: 14px;
    font-weight: 760;
}

.ar-home-2026 .ar-nav a:hover,
.ar-home-2026 .ar-nav a.is-active {
    color: var(--ar-blue);
    background: rgba(16, 98, 255, 0.08);
}

.ar-home-2026 .ar-header-cta,
.ar-home-2026 .ar-button {
    min-height: 48px;
    padding: 12px 22px;
    border: 0;
    border-radius: 15px;
    color: #fff !important;
    background: linear-gradient(135deg, #0b5cff, #0d7dff 55%, #16b9ff);
    box-shadow: 0 14px 28px rgba(16, 98, 255, 0.22);
}

.ar-home-2026 .ar-header-cta::after,
.ar-home-2026 .ar-button::after {
    margin-left: 10px;
    content: "›";
    font-size: 22px;
    line-height: 0;
}

.ar-home-2026 .ar-button-secondary {
    border: 1px solid #cfe0f5;
    color: #07142f !important;
    background: rgba(255, 255, 255, 0.9);
    box-shadow: none;
}

.ar-home-2026 .ar-button-secondary:hover {
    border-color: var(--ar-blue);
    color: var(--ar-blue) !important;
    background: #fff;
}

.ar-home-2026 .ar-kicker {
    color: #116cef;
    font-size: 11px;
    font-weight: 900;
    letter-spacing: 0.12em;
}

.ar-home-hero-v2 {
    display: grid;
    grid-template-columns: minmax(0, 0.95fr) minmax(420px, 1.05fr);
    gap: 28px;
    align-items: center;
    padding-block: 34px 28px;
}

.ar-home-hero-copy-v2 {
    position: relative;
    z-index: 3;
    padding: 26px 0 18px;
}

.ar-home-2026 h1,
.ar-home-2026 .ar-section-head h2,
.ar-home-2026 .ar-home-panel-head h2,
.ar-home-2026 .ar-budget-copy h2,
.ar-home-2026 .ar-home-final-cta h2 {
    font-family: var(--ar-sans);
    font-weight: 920;
    letter-spacing: -0.065em;
}

.ar-home-2026 h1 {
    max-width: 670px;
    color: #07142f;
    font-size: clamp(44px, 5.2vw, 72px);
    line-height: 0.94;
}

.ar-home-2026 h1 span {
    display: block;
    color: #0877ff;
    background: linear-gradient(90deg, #19b5ff 0%, #0b67ff 52%, #1730c6 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.ar-home-2026 .ar-lead {
    max-width: 650px;
    margin-top: 18px;
    color: #44546b;
    font-size: clamp(16px, 1.4vw, 19px);
    line-height: 1.68;
}

.ar-hero-decision-card {
    max-width: 650px;
    margin-top: 20px;
    padding: 18px;
    border: 1px solid rgba(203, 222, 246, 0.94);
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.88);
    box-shadow: 0 22px 55px rgba(17, 84, 150, 0.12);
    backdrop-filter: blur(14px);
}

.ar-hero-decision-card > strong {
    display: block;
    margin-bottom: 11px;
    color: #0a1734;
    font-size: 14px;
    font-weight: 880;
}

.ar-hero-need-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.ar-hero-need-pills a {
    display: inline-flex;
    min-height: 42px;
    align-items: center;
    gap: 8px;
    padding: 9px 14px;
    border: 1px solid #d5e3f5;
    border-radius: 13px;
    color: #24334d;
    background: rgba(255, 255, 255, 0.82);
    font-size: 13px;
    font-weight: 780;
    transition: border-color 180ms ease, color 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

.ar-hero-need-pills a:hover {
    border-color: rgba(16, 98, 255, 0.42);
    color: var(--ar-blue);
    box-shadow: 0 10px 24px rgba(16, 98, 255, 0.1);
    transform: translateY(-1px);
}

.ar-hero-need-pills span {
    display: grid;
    width: 21px;
    height: 21px;
    place-items: center;
    border-radius: 8px;
    color: var(--ar-blue);
    background: #edf6ff;
    font-size: 12px;
}

.ar-hero-actions-v2 {
    margin-top: 12px;
}

.ar-hero-trust-row {
    display: flex;
    flex-wrap: wrap;
    gap: 18px 38px;
    margin-top: 20px;
    color: #516079;
    font-size: 13px;
    font-weight: 760;
}

.ar-hero-trust-row span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.ar-hero-trust-row i {
    display: grid;
    width: 25px;
    height: 25px;
    place-items: center;
    border-radius: 9px;
    color: #0b67ff;
    background: #e9f4ff;
    font-style: normal;
}

.ar-home-hero-visual-v2 {
    min-width: 0;
}

.ar-quiz-entry {
    position: relative;
    min-height: 455px;
    overflow: hidden;
    padding: 34px;
    border: 1px solid rgba(125, 179, 255, 0.35);
    border-radius: 34px;
    color: #eaf4ff;
    background:
        radial-gradient(circle at 15% 0%, rgba(36, 200, 244, 0.26), transparent 34%),
        radial-gradient(circle at 92% 22%, rgba(16, 98, 255, 0.34), transparent 30%),
        linear-gradient(145deg, #07142f 0%, #082352 56%, #073f9e 100%);
    box-shadow: 0 30px 80px rgba(18, 104, 202, 0.2);
}

.ar-quiz-entry::after {
    position: absolute;
    right: -84px;
    bottom: -116px;
    width: 310px;
    height: 310px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 999px;
    content: "";
}

.ar-quiz-entry > * {
    position: relative;
    z-index: 1;
}

.ar-quiz-entry-topline {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
}

.ar-quiz-entry .ar-kicker {
    margin: 0;
    color: #98f1ea;
}

.ar-quiz-entry-topline > span {
    display: inline-flex;
    min-height: 30px;
    align-items: center;
    padding: 6px 10px;
    border: 1px solid rgba(180, 212, 255, 0.24);
    border-radius: 999px;
    color: #c8d9f1;
    background: rgba(255, 255, 255, 0.07);
    font-size: 11px;
    font-weight: 850;
}

.ar-quiz-entry h2 {
    max-width: 560px;
    margin: 34px 0 0;
    color: #fff;
    font-family: var(--ar-sans);
    font-size: clamp(31px, 3.2vw, 45px);
    font-weight: 930;
    letter-spacing: -0.06em;
    line-height: 1;
}

.ar-quiz-entry > p:not(.ar-kicker):not(.ar-quiz-entry-note) {
    max-width: 530px;
    margin: 13px 0 0;
    color: #b8c9e1;
    font-size: 14px;
    line-height: 1.55;
}

.ar-quiz-entry-options {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 11px;
    margin-top: 24px;
}

.ar-quiz-entry-options button {
    display: grid;
    min-height: 82px;
    gap: 4px;
    align-content: center;
    padding: 14px 16px;
    border: 1px solid rgba(190, 215, 248, 0.24);
    border-radius: 16px;
    color: #fff;
    background: rgba(255, 255, 255, 0.07);
    text-align: left;
    cursor: pointer;
    transition: border-color 180ms ease, background-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.ar-quiz-entry-options button:hover {
    border-color: rgba(152, 241, 234, 0.7);
    background: rgba(255, 255, 255, 0.12);
    box-shadow: 0 14px 28px rgba(1, 12, 33, 0.18);
    transform: translateY(-1px);
}

.ar-quiz-entry-options button:focus-visible {
    outline: 3px solid #98f1ea;
    outline-offset: 3px;
}

.ar-quiz-entry-options strong {
    font-size: 17px;
    font-weight: 930;
}

.ar-quiz-entry-options span {
    color: #b5c7df;
    font-size: 11px;
    line-height: 1.35;
}

.ar-quiz-entry-note {
    margin: 18px 0 0;
    color: #9fb3d0;
    font-size: 11px;
    font-weight: 760;
}

.ar-hero-visual-card {
    position: relative;
    min-height: 455px;
    overflow: hidden;
    border: 1px solid rgba(199, 224, 253, 0.9);
    border-radius: 34px;
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.58), rgba(202, 239, 255, 0.3)),
        radial-gradient(circle at 38% 50%, rgba(37, 189, 255, 0.25), transparent 30%),
        linear-gradient(150deg, #edf9ff 0%, #d8f1ff 42%, #f7fbff 100%);
    box-shadow: 0 30px 80px rgba(18, 104, 202, 0.16);
}

.ar-lidar-grid {
    position: absolute;
    inset: 0;
    opacity: 0.75;
    background-image:
        linear-gradient(rgba(16, 98, 255, 0.07) 1px, transparent 1px),
        linear-gradient(90deg, rgba(16, 98, 255, 0.07) 1px, transparent 1px);
    background-size: 38px 38px;
    mask-image: radial-gradient(circle at 50% 45%, #000 0%, transparent 76%);
}

.ar-lidar-grid span {
    position: absolute;
    top: 50%;
    left: 49%;
    border: 1px solid rgba(16, 98, 255, 0.18);
    border-radius: 999px;
    transform: translate(-50%, -50%);
}

.ar-lidar-grid span:nth-child(1) { width: 210px; height: 210px; }
.ar-lidar-grid span:nth-child(2) { width: 330px; height: 330px; }
.ar-lidar-grid span:nth-child(3) { width: 470px; height: 470px; }

.ar-hero-station {
    position: absolute;
    top: 44px;
    right: 76px;
    width: 168px;
    height: 250px;
    border: 1px solid rgba(118, 154, 194, 0.36);
    border-radius: 28px 28px 18px 18px;
    background: linear-gradient(145deg, #ffffff 0%, #dfeaf8 50%, #b9cbe0 100%);
    box-shadow: -18px 34px 64px rgba(35, 63, 99, 0.2), inset 16px 0 34px rgba(255, 255, 255, 0.52);
}

.ar-hero-station i {
    position: absolute;
    right: 24px;
    bottom: 34px;
    left: 24px;
    height: 60px;
    border-radius: 15px;
    background: linear-gradient(180deg, #26364f, #07142f);
}

.ar-hero-robot {
    position: absolute;
    z-index: 2;
    right: 122px;
    bottom: 42px;
    width: min(430px, 65%);
    aspect-ratio: 1.6 / 1;
    filter: drop-shadow(0 36px 32px rgba(7, 20, 47, 0.2));
}

.ar-hero-robot img {
    height: 100%;
    object-fit: contain;
}

.ar-robot-fallback {
    position: relative;
    width: 100%;
    height: 100%;
}

.ar-robot-fallback::before {
    position: absolute;
    inset: 15% 7% 12%;
    border: 1px solid rgba(8, 25, 57, 0.14);
    border-radius: 999px;
    background: radial-gradient(circle at 50% 42%, #f8fbff 0 11%, #c5d2df 12% 16%, #f7fbff 17% 48%, #cbd8e8 100%);
    box-shadow: inset 12px 20px 32px rgba(255, 255, 255, 0.85), inset -18px -20px 30px rgba(61, 78, 102, 0.17);
    content: "";
}

.ar-robot-fallback span,
.ar-robot-fallback i,
.ar-robot-fallback b {
    position: absolute;
    z-index: 2;
    display: block;
}

.ar-robot-fallback span {
    top: 40%;
    left: 43%;
    width: 64px;
    height: 64px;
    border: 8px solid #d6e1ef;
    border-radius: 999px;
    background: #fff;
}

.ar-robot-fallback i {
    right: 14%;
    bottom: 25%;
    width: 70px;
    height: 20px;
    border-radius: 999px;
    background: #0d1d3a;
}

.ar-robot-fallback b {
    bottom: 15%;
    left: 16%;
    width: 120px;
    height: 5px;
    border-radius: 999px;
    background: rgba(7, 20, 47, 0.24);
    transform: rotate(14deg);
}

.ar-hero-floating-card,
.ar-hero-badge {
    position: absolute;
    z-index: 4;
    border: 1px solid rgba(207, 224, 245, 0.9);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.9);
    box-shadow: 0 18px 36px rgba(16, 98, 255, 0.13);
    backdrop-filter: blur(12px);
}

.ar-hero-floating-card {
    display: grid;
    gap: 2px;
    padding: 13px 16px;
}

.ar-hero-floating-card strong {
    color: #07142f;
    font-size: 15px;
    font-weight: 900;
}

.ar-hero-floating-card span,
.ar-hero-badge small {
    color: #65748b;
    font-size: 12px;
    font-weight: 700;
}

.ar-hero-floating-count { top: 86px; right: 34px; }
.ar-hero-floating-rating { top: 244px; left: 34px; }

.ar-hero-badge {
    right: 38px;
    bottom: 38px;
    display: grid;
    grid-template-columns: 44px minmax(0, 1fr);
    gap: 1px 12px;
    align-items: center;
    width: 250px;
    padding: 14px;
}

.ar-hero-badge span {
    grid-row: 1 / span 2;
    display: grid;
    width: 44px;
    height: 44px;
    place-items: center;
    border-radius: 15px;
    color: #fff;
    background: linear-gradient(135deg, #25d0b0, #12a66a);
    font-weight: 900;
}

.ar-hero-badge strong {
    font-size: 14px;
    line-height: 1.1;
}

.ar-home-main-grid,
.ar-home-compare-layout {
    display: grid;
    grid-template-columns: 1fr;
    gap: 18px;
    align-items: stretch;
    padding-block: 0;
}

.ar-home-featured-panel,
.ar-home-needs-panel,
.ar-home-dynamic-panel,
.ar-home-compare-panel,
.ar-home-quiz-panel,
.ar-home-duels-panel,
.ar-home-brands-panel,
.ar-home-editorial-panel,
.ar-home-trust-panel,
.ar-home-budget-strip,
.ar-home-final-cta {
    border: 1px solid rgba(211, 228, 249, 0.92);
    border-radius: 28px;
    background: rgba(255, 255, 255, 0.84);
    box-shadow: 0 18px 50px rgba(18, 80, 145, 0.09);
    backdrop-filter: blur(10px);
}

.ar-home-featured-panel,
.ar-home-dynamic-panel,
.ar-home-compare-panel,
.ar-home-quiz-panel,
.ar-home-duels-panel,
.ar-home-needs-panel,
.ar-home-brands-panel,
.ar-home-editorial-panel,
.ar-home-trust-panel {
    padding: 24px;
}

.ar-home-featured-panel,
.ar-home-needs-panel,
.ar-home-dynamic-panel,
.ar-home-compare-panel,
.ar-home-quiz-panel,
.ar-home-duels-panel,
.ar-home-brands-panel,
.ar-home-editorial-panel {
    margin-top: 18px;
}

.ar-home-quiz-panel {
    scroll-margin-top: 88px;
    overflow: hidden;
    padding: 0;
}

.ar-home-quiz {
    padding: 28px;
    background:
        radial-gradient(circle at 95% 0%, rgba(36, 200, 244, 0.14), transparent 28%),
        linear-gradient(145deg, #ffffff, #f5faff);
}

.ar-home-quiz-head {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(220px, 0.34fr);
    gap: 28px;
    align-items: end;
}

.ar-home-quiz-head h2 {
    max-width: 760px;
    margin: 0;
    color: #07142f;
    font-family: var(--ar-sans);
    font-size: clamp(30px, 3.5vw, 46px);
    font-weight: 930;
    letter-spacing: -0.065em;
    line-height: 0.98;
}

.ar-home-quiz-head > div:first-child > p:last-child {
    max-width: 760px;
    margin: 12px 0 0;
    color: #5a6a81;
    font-size: 14px;
    line-height: 1.55;
}

.ar-home-quiz-promise {
    display: grid;
    gap: 4px;
    padding: 15px 17px;
    border: 1px solid #d3e4f8;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.88);
}

.ar-home-quiz-promise strong {
    color: #0a54d1;
    font-size: 13px;
    font-weight: 920;
}

.ar-home-quiz-promise span {
    color: #66768c;
    font-size: 11px;
    line-height: 1.4;
}

.ar-quiz-progress {
    display: grid;
    grid-template-columns: minmax(150px, auto) minmax(220px, 1fr);
    gap: 22px;
    align-items: center;
    margin-top: 26px;
    padding: 14px 16px;
    border: 1px solid #d6e5f6;
    border-radius: 17px;
    background: rgba(255, 255, 255, 0.82);
}

.ar-quiz-progress > div:first-child {
    display: grid;
    gap: 2px;
}

.ar-quiz-progress > div:first-child span {
    color: #12213c;
    font-size: 12px;
    font-weight: 920;
}

.ar-quiz-progress > div:first-child small {
    color: #66768b;
    font-size: 10px;
    font-weight: 760;
}

.ar-quiz-progress-track {
    position: relative;
    height: 7px;
    overflow: hidden;
    border-radius: 999px;
    background: #dce9f7;
}

.ar-quiz-progress-track span {
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: linear-gradient(90deg, #24c8f4, #0b67ff);
    transform: scaleX(0.2);
    transform-origin: left center;
    transition: transform 240ms ease-out;
}

.ar-quiz-form {
    margin-top: 18px;
    padding: 24px;
    border: 1px solid #d3e4f8;
    border-radius: 22px;
    background: #fff;
    box-shadow: 0 18px 46px rgba(18, 80, 145, 0.08);
}

.ar-quiz-step[hidden],
.ar-quiz-form[hidden],
.ar-quiz-results[hidden],
.ar-quiz-error[hidden],
.ar-quiz-navigation button[hidden] {
    display: none;
}

.ar-quiz-step fieldset {
    min-width: 0;
    margin: 0;
    padding: 0;
    border: 0;
}

.ar-quiz-step legend {
    max-width: 850px;
    padding: 0;
    color: #07142f;
    font-family: var(--ar-sans);
    font-size: clamp(24px, 2.7vw, 34px);
    font-weight: 930;
    letter-spacing: -0.05em;
    line-height: 1.05;
}

.ar-quiz-step legend:focus {
    outline: 0;
}

.ar-quiz-step fieldset > p {
    max-width: 850px;
    margin: 9px 0 0;
    color: #617086;
    font-size: 13px;
    line-height: 1.5;
}

.ar-quiz-options {
    display: grid;
    gap: 11px;
    margin-top: 19px;
}

.ar-quiz-options-four {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.ar-quiz-options-three {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.ar-quiz-options-multi {
    grid-template-columns: repeat(5, minmax(0, 1fr));
}

.ar-quiz-options label {
    position: relative;
    min-width: 0;
    cursor: pointer;
}

.ar-quiz-options input {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    opacity: 0;
}

.ar-quiz-options label > span {
    display: grid;
    min-height: 112px;
    gap: 6px;
    align-content: center;
    padding: 16px;
    border: 1px solid #d5e4f5;
    border-radius: 17px;
    color: #14233e;
    background: #f8fbff;
    transition: border-color 180ms ease, color 180ms ease, background-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.ar-quiz-options label:hover > span {
    border-color: rgba(16, 98, 255, 0.46);
    background: #f0f7ff;
    transform: translateY(-1px);
}

.ar-quiz-options input:focus-visible + span {
    outline: 3px solid rgba(16, 98, 255, 0.36);
    outline-offset: 3px;
}

.ar-quiz-options input:checked + span {
    border-color: #0b67ff;
    color: #073f9e;
    background: #eaf5ff;
    box-shadow: inset 0 0 0 1px #0b67ff, 0 12px 26px rgba(16, 98, 255, 0.11);
}

.ar-quiz-options input:checked + span::before {
    display: grid;
    width: 22px;
    height: 22px;
    margin-bottom: 2px;
    place-items: center;
    border-radius: 999px;
    color: #fff;
    background: #0b67ff;
    content: "✓";
    font-size: 12px;
    font-weight: 900;
}

.ar-quiz-options strong {
    font-size: 14px;
    font-weight: 920;
    letter-spacing: -0.02em;
    line-height: 1.15;
}

.ar-quiz-options small {
    color: #68778d;
    font-size: 11px;
    line-height: 1.4;
}

.ar-quiz-error {
    margin: 16px 0 0;
    padding: 11px 13px;
    border-left: 4px solid #c43b48;
    border-radius: 8px;
    color: #8d202c;
    background: #fff0f1;
    font-size: 12px;
    font-weight: 820;
}

.ar-quiz-navigation {
    display: flex;
    justify-content: flex-end;
    gap: 10px;
    margin-top: 20px;
}

.ar-quiz-navigation .ar-button {
    min-width: 170px;
    min-height: 46px;
}

.ar-quiz-results {
    margin-top: 18px;
    padding: 24px;
    border: 1px solid #d3e4f8;
    border-radius: 22px;
    background: #fff;
    box-shadow: 0 18px 46px rgba(18, 80, 145, 0.08);
}

.ar-quiz-results:focus {
    outline: 0;
}

.ar-quiz-results-head {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 22px;
    align-items: end;
}

.ar-quiz-results-head h3 {
    max-width: 850px;
    margin: 0;
    color: #07142f;
    font-family: var(--ar-sans);
    font-size: clamp(25px, 3vw, 38px);
    font-weight: 930;
    letter-spacing: -0.055em;
    line-height: 1;
}

.ar-quiz-results-head > div > p:last-child {
    margin: 10px 0 0;
    color: #617086;
    font-size: 13px;
}

.ar-quiz-result-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 13px;
    margin-top: 20px;
}

.ar-quiz-result-card {
    position: relative;
    display: grid;
    grid-template-rows: auto 150px 1fr;
    min-width: 0;
    overflow: hidden;
    border: 1px solid #d5e4f5;
    border-radius: 20px;
    background: #fff;
}

.ar-quiz-result-card.is-leading {
    border-color: rgba(16, 98, 255, 0.7);
    box-shadow: 0 20px 42px rgba(16, 98, 255, 0.12);
}

.ar-quiz-result-badge {
    display: flex;
    min-height: 39px;
    align-items: center;
    padding: 9px 13px;
    color: #0752d3;
    background: #eaf5ff;
    font-size: 10px;
    font-weight: 920;
    letter-spacing: 0.055em;
    text-transform: uppercase;
}

.ar-quiz-result-card.is-leading .ar-quiz-result-badge {
    color: #fff;
    background: linear-gradient(90deg, #0b67ff, #0877ff);
}

.ar-quiz-result-media {
    display: grid;
    min-width: 0;
    overflow: hidden;
    place-items: center;
    background:
        radial-gradient(circle at 30% 20%, rgba(36, 200, 244, 0.2), transparent 42%),
        linear-gradient(145deg, #f7fbff, #eaf5ff);
}

.ar-quiz-result-media img {
    width: 100%;
    height: 100%;
    padding: 10px;
    object-fit: contain;
}

.ar-quiz-result-media > span {
    color: #0b67ff;
    font-size: 34px;
    font-weight: 950;
}

.ar-quiz-result-copy {
    display: flex;
    min-width: 0;
    flex-direction: column;
    padding: 17px;
}

.ar-quiz-result-copy h4 {
    margin: 0;
    color: #07142f;
    font-size: 17px;
    font-weight: 930;
    letter-spacing: -0.035em;
    line-height: 1.13;
}

.ar-quiz-result-match {
    display: inline-flex;
    width: fit-content;
    margin-top: 8px;
    padding: 5px 8px;
    border-radius: 999px;
    color: #08715e;
    background: #e6faf5;
    font-size: 10px;
    font-weight: 900;
}

.ar-quiz-result-copy ul {
    display: grid;
    gap: 7px;
    margin: 14px 0 0;
    padding: 0;
    list-style: none;
}

.ar-quiz-result-copy li {
    position: relative;
    padding-left: 18px;
    color: #4f6077;
    font-size: 11.5px;
    line-height: 1.4;
}

.ar-quiz-result-copy li::before {
    position: absolute;
    top: 0;
    left: 0;
    color: #0b67ff;
    content: "✓";
    font-weight: 950;
}

.ar-quiz-result-limit {
    margin: 14px 0 0;
    padding: 9px 10px;
    border-radius: 10px;
    color: #6f5320;
    background: #fff7e6;
    font-size: 11px;
    line-height: 1.4;
}

.ar-quiz-result-price {
    margin: 13px 0 0;
    color: #0d1d3a;
    font-size: 12px;
    font-weight: 900;
}

.ar-quiz-result-actions {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
    margin-top: auto;
    padding-top: 15px;
}

.ar-quiz-result-actions .ar-button {
    width: 100%;
    min-height: 42px;
    padding: 9px 10px;
    font-size: 11px;
}

.ar-quiz-result-actions .ar-button:only-child {
    grid-column: 1 / -1;
}

.ar-quiz-disclaimer {
    margin: 16px 0 0;
    color: #6a788d;
    font-size: 11px;
    line-height: 1.45;
}

.ar-home-2026 .ar-section-head {
    margin-bottom: 18px;
}

.ar-home-2026 .ar-section-head h2,
.ar-home-panel-head h2,
.ar-budget-copy h2,
.ar-home-final-cta h2 {
    color: #07142f;
    font-size: clamp(25px, 2.6vw, 34px);
    line-height: 1.02;
}

.ar-home-2026 .ar-section-head > div > p:last-child:not(.ar-kicker),
.ar-home-panel-head p:not(.ar-kicker) {
    margin-top: 8px;
    color: #5e6b7f;
    font-size: 14px;
}

.ar-home-2026 .ar-section-head .ar-button-secondary {
    min-height: 38px;
    padding: 9px 14px;
    border-radius: 12px;
    font-size: 12px;
}

.ar-home-product-row {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
}

.ar-home-product-card {
    position: relative;
    display: grid;
    grid-template-columns: minmax(112px, 0.34fr) minmax(0, 0.66fr);
    overflow: hidden;
    border: 1px solid #dbe8f8;
    border-radius: 20px;
    background: #fff;
    transition: border-color 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

.ar-home-product-card:hover {
    border-color: rgba(16, 98, 255, 0.52);
    box-shadow: 0 18px 38px rgba(16, 98, 255, 0.11);
    transform: translateY(-2px);
}

.ar-home-product-card.is-featured {
    border-color: rgba(16, 98, 255, 0.72);
    box-shadow: 0 20px 44px rgba(16, 98, 255, 0.13);
}

.ar-home-product-image {
    display: block;
    min-height: 100%;
    overflow: hidden;
    background: linear-gradient(135deg, #eef8ff, #f7fbff);
}

.ar-home-product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.ar-home-product-content {
    display: flex;
    min-height: 250px;
    flex-direction: column;
    padding: 18px;
}

.ar-home-product-topline,
.ar-home-product-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
}

.ar-home-product-topline span {
    display: inline-flex;
    max-width: 145px;
    min-height: 25px;
    align-items: center;
    padding: 4px 8px;
    border-radius: 999px;
    color: #0752d3;
    background: #edf6ff;
    font-size: 10px;
    font-weight: 900;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.ar-home-product-topline b {
    color: #102142;
    font-size: 12px;
    font-weight: 900;
}

.ar-home-product-card h3 {
    margin: 12px 0 0;
    color: #07142f;
    font-size: 16px;
    font-weight: 900;
    letter-spacing: -0.035em;
    line-height: 1.14;
}

.ar-home-product-card h3 a:hover {
    color: var(--ar-blue);
}

.ar-home-product-card p {
    display: -webkit-box;
    min-height: 48px;
    margin: 9px 0 0;
    overflow: hidden;
    color: #59687d;
    font-size: 12px;
    line-height: 1.45;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
}

.ar-home-product-highlights {
    gap: 5px;
    margin: 12px 0 0;
    padding: 10px 0;
    border-block: 1px solid #edf3fa;
}

.ar-home-product-highlights li {
    color: #344a64;
    font-size: 10.5px;
    font-weight: 750;
    line-height: 1.3;
}

.ar-home-product-highlights li .ar-evidence-icon {
    color: #0b8d73;
}

.ar-home-product-meta {
    margin-top: auto;
    padding-top: 12px;
    color: #66748a;
    font-size: 11px;
    line-height: 1.25;
}

.ar-home-product-meta strong {
    color: #0d4cc9;
    white-space: nowrap;
}

.ar-home-product-actions {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(78px, 0.8fr);
    align-items: center;
    gap: 8px;
    margin-top: 10px;
}

.ar-home-product-actions .ar-button {
    width: 100%;
    min-height: 44px;
    margin-top: 0;
    padding: 8px 10px;
    border-radius: 12px;
    font-size: 11.5px;
    line-height: 1.2;
}

.ar-home-product-actions .ar-button:only-child {
    grid-column: 1 / -1;
}

.ar-home-product-actions svg {
    width: 16px;
    height: 16px;
    flex: 0 0 auto;
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 1.7;
}

.ar-home-article-button {
    gap: 7px;
    border: 1px solid #c6d8ee;
    color: #224b78 !important;
    background: #fff;
    box-shadow: none;
}

.ar-home-article-button:hover {
    border-color: #7ca9df;
    color: #0b4fc7 !important;
    background: #f5faff;
}

.ar-home-buy-button {
    gap: 6px;
    border: 1px solid #0b55d8;
    color: #fff !important;
    background: linear-gradient(135deg, #1062ff, #084ac0);
    box-shadow: 0 9px 18px rgba(16, 98, 255, 0.2);
}

.ar-home-buy-button:hover {
    border-color: #053fae;
    color: #fff !important;
    background: linear-gradient(135deg, #0758e9, #063fa4);
    box-shadow: 0 12px 24px rgba(16, 98, 255, 0.28);
}

.ar-home-product-compare-row {
    display: flex;
    min-height: 44px;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    margin-top: 9px;
    padding: 4px 5px 4px 8px;
    border: 1px solid #e1ebf6;
    border-radius: 13px;
    background: #f8fbff;
}

.ar-home-product-compare-row small {
    color: #708096;
    font-size: 9px;
    font-weight: 750;
    line-height: 1.2;
    text-align: right;
}

.ar-home-product-compare-row .ar-compare-toggle {
    min-height: 36px;
    padding: 6px 8px;
    border: 0;
    background: transparent;
    box-shadow: none;
}

.ar-home-panel-head {
    margin-bottom: 16px;
}

.ar-home-need-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px;
}

.ar-home-need-card {
    position: relative;
    display: grid;
    grid-template-rows: minmax(108px, auto) auto;
    min-height: 228px;
    overflow: hidden;
    padding: 17px 17px 52px;
    border: 1px solid #d7e5f5;
    border-radius: 20px;
    background:
        radial-gradient(circle at 30% 18%, rgba(255, 255, 255, 0.98), transparent 36%),
        radial-gradient(circle at 88% 82%, rgba(36, 200, 244, 0.24), transparent 36%),
        linear-gradient(145deg, #ffffff 0%, #eef8ff 100%);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.94);
    transition: border-color 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

.ar-home-need-card:hover {
    border-color: rgba(16, 98, 255, 0.48);
    box-shadow: 0 18px 38px rgba(16, 98, 255, 0.12), inset 0 1px 0 rgba(255, 255, 255, 0.96);
    transform: translateY(-2px);
}

.ar-home-need-visual {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 108px;
    margin: -4px -5px 10px;
    pointer-events: none;
}

.ar-home-need-visual img {
    display: block;
    width: min(158px, 90%);
    max-width: 100%;
    height: 112px;
    object-fit: contain;
    filter: drop-shadow(0 12px 16px rgba(10, 44, 92, 0.12));
    transform: translateZ(0);
}

.ar-home-need-content {
    display: grid;
    gap: 7px;
    align-self: end;
}

.ar-home-need-card strong {
    color: #07142f;
    font-size: 17px;
    font-weight: 900;
    letter-spacing: -0.03em;
    line-height: 1.12;
}

.ar-home-need-card small {
    color: #617086;
    font-size: 12.5px;
    line-height: 1.4;
}

.ar-home-need-card i {
    position: absolute;
    right: 14px;
    bottom: 14px;
    display: grid;
    width: 35px;
    height: 35px;
    place-items: center;
    border-radius: 999px;
    color: var(--ar-blue);
    background: #fff;
    box-shadow: 0 8px 18px rgba(20, 111, 222, 0.11);
    font-style: normal;
    font-weight: 900;
}

.ar-home-dynamic-panel {
    overflow: hidden;
    padding: 0;
    border-color: rgba(23, 45, 80, 0.24);
    background: #07142f;
    box-shadow: 0 28px 70px rgba(7, 20, 47, 0.18), 0 18px 50px rgba(16, 98, 255, 0.11);
}

.ar-home-dynamic-inner {
    padding: 26px;
    color: #eaf4ff;
    background:
        radial-gradient(circle at 15% 0%, rgba(36, 200, 244, 0.22), transparent 32%),
        radial-gradient(circle at 92% 18%, rgba(16, 98, 255, 0.22), transparent 26%),
        linear-gradient(135deg, #07142f 0%, #061d43 58%, #052768 100%);
}

.ar-home-dynamic-head {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 20px;
    align-items: end;
}

.ar-home-dynamic-head .ar-kicker {
    color: #98f1ea;
}

.ar-home-dynamic-head h2 {
    max-width: 720px;
    margin: 0;
    color: #fff;
    font-size: clamp(27px, 3.1vw, 44px);
    line-height: 0.98;
    letter-spacing: -0.065em;
}

.ar-home-dynamic-head p:not(.ar-kicker) {
    max-width: 760px;
    margin: 12px 0 0;
    color: #a7b8d2;
    font-size: 15px;
    line-height: 1.55;
}

.ar-home-dynamic-all {
    display: inline-flex;
    min-height: 48px;
    align-items: center;
    justify-content: center;
    padding: 12px 18px;
    border: 1px solid rgba(176, 205, 244, 0.35);
    border-radius: 15px;
    color: #fff !important;
    background: rgba(255, 255, 255, 0.06);
    font-size: 13px;
    font-weight: 900;
    white-space: nowrap;
}

.ar-home-dynamic-all::after {
    margin-left: 10px;
    color: #98f1ea;
    content: "›";
    font-size: 21px;
    line-height: 0;
}

.ar-home-dynamic-controls {
    display: grid;
    grid-template-columns: repeat(3, minmax(160px, 1fr)) auto;
    gap: 12px;
    margin-top: 22px;
}

.ar-home-dynamic-controls label {
    display: grid;
    gap: 7px;
    color: #c6d5eb;
    font-size: 11px;
    font-weight: 900;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.ar-home-dynamic-controls select,
.ar-home-dynamic-controls button {
    min-height: 48px;
    padding: 0 14px;
    border: 1px solid rgba(190, 215, 248, 0.24);
    border-radius: 13px;
    color: #fff;
    background: rgba(255, 255, 255, 0.07);
    font-size: 13px;
    font-weight: 850;
}

.ar-home-dynamic-controls select {
    color-scheme: dark;
}

.ar-home-dynamic-controls button {
    align-self: end;
    cursor: pointer;
}

.ar-home-dynamic-controls button:hover,
.ar-home-dynamic-all:hover {
    border-color: rgba(152, 241, 234, 0.52);
    background: rgba(255, 255, 255, 0.11);
}

.ar-home-dynamic-count {
    margin: 16px 0 10px;
    color: #a7b8d2;
    font-size: 13px;
    font-weight: 760;
}

.ar-home-dynamic-scroll {
    overflow-x: auto;
    border: 1px solid rgba(190, 215, 248, 0.18);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.045);
}

.ar-home-dynamic-table {
    width: 100%;
    min-width: 980px;
    border-collapse: collapse;
    color: #eaf4ff;
    font-size: 13px;
}

.ar-home-dynamic-table th,
.ar-home-dynamic-table td {
    padding: 14px 16px;
    border-bottom: 1px solid rgba(190, 215, 248, 0.15);
    text-align: left;
    vertical-align: middle;
}

.ar-home-dynamic-table tbody tr:last-child th,
.ar-home-dynamic-table tbody tr:last-child td {
    border-bottom: 0;
}

.ar-home-dynamic-table thead th {
    color: #9fb1ce;
    background: rgba(255, 255, 255, 0.035);
    font-size: 11px;
    font-weight: 950;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.ar-home-dynamic-product {
    display: grid;
    grid-template-columns: 46px minmax(0, 1fr);
    gap: 11px;
    align-items: center;
    color: #fff !important;
    font-weight: 900;
    line-height: 1.18;
}

.ar-home-dynamic-product span {
    overflow: hidden;
    width: 46px;
    height: 46px;
    border-radius: 13px;
    background: rgba(255, 255, 255, 0.1);
}

.ar-home-dynamic-product img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.ar-home-dynamic-score {
    display: grid;
    gap: 2px;
}

.ar-home-dynamic-score b {
    color: #ffbc3a;
    font-size: 12px;
    letter-spacing: 0.04em;
}

.ar-home-dynamic-score strong {
    color: #fff;
    font-size: 12px;
}

.ar-home-dynamic-table td:nth-child(3),
.ar-home-dynamic-table td:nth-child(5) {
    color: #c8d6eb;
    max-width: 310px;
}

.ar-home-dynamic-table td:nth-child(4) {
    color: #fff;
    font-weight: 900;
    white-space: nowrap;
}

.ar-home-dynamic-table td:last-child a {
    color: #8fd7ff !important;
    font-size: 12px;
    font-weight: 950;
    white-space: nowrap;
}

.ar-home-dynamic-table td:last-child a::after {
    margin-left: 8px;
    content: "›";
}

.ar-home-dynamic-empty {
    margin: 14px 0 0;
    padding: 14px 16px;
    border: 1px solid rgba(152, 241, 234, 0.22);
    border-radius: 14px;
    color: #eaf4ff;
    background: rgba(152, 241, 234, 0.08);
}

.ar-home-dynamic-panel .ar-empty {
    border-color: rgba(190, 215, 248, 0.2);
    color: #dceaff;
    background: rgba(255, 255, 255, 0.06);
}

.ar-home-dynamic-panel .ar-empty strong {
    color: #fff;
}


.ar-home-compare-layout {
    align-items: start;
    padding-top: 20px;
}

.ar-home-compare-card {
    overflow: hidden;
    border: 1px solid #d7e5f5;
    border-radius: 22px;
    background: #fff;
}

.ar-home-compare-scroll {
    overflow-x: auto;
}

.ar-home-compare-table {
    width: 100%;
    min-width: 1040px;
    border-collapse: collapse;
    font-size: 12px;
}

.ar-home-compare-table th,
.ar-home-compare-table td {
    padding: 13px 12px;
    border-bottom: 1px solid #e0ebf8;
    text-align: left;
    vertical-align: middle;
}

.ar-home-compare-table thead th {
    color: #4d5c72;
    background: #f7fbff;
    font-size: 11px;
    font-weight: 900;
}

.ar-home-compare-table tbody th {
    width: 150px;
    color: #334158;
    font-size: 11px;
    font-weight: 900;
}

.ar-home-table-product {
    display: grid;
    grid-template-columns: 42px minmax(0, 1fr);
    gap: 9px;
    align-items: center;
}

.ar-home-table-product div {
    overflow: hidden;
    width: 42px;
    height: 42px;
    border-radius: 12px;
    background: #edf6ff;
}

.ar-home-table-product img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.ar-home-table-product strong {
    font-size: 11px;
    line-height: 1.12;
}

.ar-home-score {
    display: grid;
    gap: 6px;
}

.ar-home-score strong {
    color: #07142f;
    font-size: 12px;
}

.ar-home-score i {
    display: block;
    width: 68px;
    height: 4px;
    overflow: hidden;
    border-radius: 999px;
    background: #dce8f6;
}

.ar-home-score i::before {
    display: block;
    width: var(--ar-score-width, 0%);
    height: 100%;
    border-radius: inherit;
    background: linear-gradient(90deg, #16b9ff, #13b76f);
    content: "";
}

.ar-home-pill {
    display: inline-flex;
    min-height: 24px;
    align-items: center;
    padding: 4px 8px;
    border-radius: 999px;
    font-size: 11px;
    font-weight: 850;
}

.ar-home-pill.is-yes {
    color: #08734d;
    background: #e7fbf3;
}

.ar-home-pill.is-no {
    color: #65748b;
    background: #eef3f8;
}

.ar-home-compare-actions a,
.ar-home-wide-link,
.ar-home-duel-card small {
    color: var(--ar-blue);
    font-weight: 900;
}

.ar-home-wide-link {
    display: flex;
    min-height: 50px;
    align-items: center;
    justify-content: center;
    gap: 10px;
    border-top: 1px solid #e0ebf8;
    background: #fbfdff;
}

.ar-home-duel-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
}

.ar-home-duel-card {
    display: grid;
    min-height: 118px;
    place-items: center;
    padding: 16px;
    border: 1px solid #d7e5f5;
    border-radius: 18px;
    background: linear-gradient(145deg, #ffffff, #edf7ff);
    text-align: center;
    transition: border-color 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

.ar-home-duel-card:hover {
    border-color: rgba(16, 98, 255, 0.48);
    box-shadow: 0 16px 34px rgba(16, 98, 255, 0.1);
    transform: translateY(-2px);
}

.ar-home-duel-card strong {
    max-width: 230px;
    color: #07142f;
    font-size: 18px;
    font-weight: 920;
    letter-spacing: -0.04em;
    line-height: 1.13;
}

.ar-home-duel-card span {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-block: 9px 3px;
}

.ar-home-duel-card i {
    display: block;
    width: 42px;
    height: 25px;
    border-radius: 999px;
    background: radial-gradient(circle at 50% 46%, #fff 0 24%, #d6e2ef 25% 100%);
    box-shadow: inset 0 -5px 8px rgba(7, 20, 47, 0.12);
}

.ar-home-duel-card b {
    display: grid;
    width: 34px;
    height: 34px;
    place-items: center;
    border-radius: 999px;
    color: #0b67ff;
    background: #e9f4ff;
    font-size: 11px;
    font-weight: 950;
}

.ar-home-duel-card small {
    font-size: 12px;
}

.ar-home-budget-strip {
    display: grid;
    grid-template-columns: minmax(260px, 0.45fr) minmax(0, 0.55fr);
    gap: 26px;
    align-items: center;
    margin-top: 20px;
    padding: 26px;
    background:
        radial-gradient(circle at 12% 20%, rgba(36, 200, 244, 0.14), transparent 36%),
        rgba(255, 255, 255, 0.9);
}

.ar-budget-copy p:not(.ar-kicker) {
    margin: 12px 0 0;
    color: #5a687d;
}

.ar-budget-cards {
    display: grid;
    gap: 10px;
}

.ar-home-budget-strip .ar-compact-card {
    min-height: 90px;
    padding: 15px 16px;
    border-color: #d8e6f6;
    border-radius: 17px;
    box-shadow: none;
}

.ar-home-budget-strip .ar-compact-card > div {
    grid-template-columns: 88px minmax(0, 0.8fr) minmax(0, 1fr);
    gap: 14px;
}

.ar-home-budget-strip .ar-compact-card h3 {
    font-family: var(--ar-sans);
    font-size: 15px;
    font-weight: 900;
    letter-spacing: -0.035em;
}

.ar-home-budget-strip .ar-compact-card p,
.ar-home-budget-strip .ar-compact-card small {
    font-size: 12px;
}

.ar-home-budget-strip .ar-compact-card .ar-button-secondary {
    min-height: 36px;
    padding: 8px 12px;
    font-size: 12px;
}

.ar-home-brands-panel {
    overflow: hidden;
}

.ar-home-brand-carousel {
    position: relative;
}

.ar-home-carousel-controls {
    display: flex;
    justify-content: flex-end;
    gap: 9px;
    margin: -4px 0 12px;
}

.ar-home-carousel-controls[hidden] {
    display: none;
}

.ar-home-carousel-controls button {
    display: grid;
    width: 44px;
    height: 44px;
    padding: 0;
    place-items: center;
    border: 1px solid #cfdef1;
    border-radius: 14px;
    color: #0b5de8;
    background: #fff;
    box-shadow: 0 9px 22px rgba(16, 98, 255, 0.08);
    cursor: pointer;
    transition: border-color 180ms ease, color 180ms ease, background-color 180ms ease, box-shadow 180ms ease;
}

.ar-home-carousel-controls button:hover:not(:disabled) {
    border-color: rgba(16, 98, 255, 0.56);
    background: #edf6ff;
    box-shadow: 0 12px 26px rgba(16, 98, 255, 0.13);
}

.ar-home-carousel-controls button:disabled {
    color: #94a3b7;
    background: #f4f7fb;
    box-shadow: none;
    cursor: default;
    opacity: 0.66;
}

.ar-home-brand-track {
    display: grid;
    grid-auto-columns: minmax(280px, calc((100% - 28px) / 3.15));
    grid-auto-flow: column;
    gap: 14px;
    padding: 2px 2px 10px;
    overflow-x: auto;
    overscroll-behavior-inline: contain;
    scroll-behavior: smooth;
    scroll-padding-inline: 2px;
    scroll-snap-type: inline mandatory;
    scrollbar-color: #b7d2f3 transparent;
    scrollbar-width: thin;
}

.ar-home-brand-card {
    min-width: 0;
    scroll-snap-align: start;
}

.ar-home-brand-card > a {
    display: grid;
    grid-template-columns: 84px minmax(0, 1fr) 24px;
    gap: 15px;
    align-items: center;
    min-height: 142px;
    height: 100%;
    padding: 16px;
    border: 1px solid #d7e5f5;
    border-radius: 20px;
    color: #07142f;
    background:
        radial-gradient(circle at 10% 10%, rgba(36, 200, 244, 0.12), transparent 38%),
        linear-gradient(145deg, #fff, #f3f9ff);
    transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.ar-home-brand-card > a:hover {
    border-color: rgba(16, 98, 255, 0.5);
    box-shadow: 0 17px 36px rgba(16, 98, 255, 0.11);
    transform: translateY(-2px);
}

.ar-home-brand-media {
    display: grid;
    width: 84px;
    height: 84px;
    overflow: hidden;
    place-items: center;
    border: 1px solid #dce9f8;
    border-radius: 19px;
    background: rgba(255, 255, 255, 0.92);
}

.ar-home-brand-media img {
    width: 100%;
    height: 100%;
    padding: 9px;
    object-fit: contain;
}

.ar-home-brand-initials {
    display: grid;
    width: 54px;
    height: 54px;
    place-items: center;
    border-radius: 18px;
    color: #fff;
    background: linear-gradient(135deg, #0b5cff, #21c4ef);
    box-shadow: 0 12px 24px rgba(16, 98, 255, 0.2);
    font-size: 17px;
    font-weight: 950;
    letter-spacing: 0.04em;
}

.ar-home-brand-copy,
.ar-home-brand-copy > span,
.ar-home-brand-copy > strong,
.ar-home-brand-copy > small {
    display: block;
    min-width: 0;
}

.ar-home-brand-copy small {
    color: #0c61e8;
    font-size: 9px;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.ar-home-brand-copy strong {
    margin-top: 5px;
    overflow: hidden;
    font-size: 18px;
    font-weight: 930;
    letter-spacing: -0.04em;
    line-height: 1.1;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.ar-home-brand-copy > span {
    display: -webkit-box;
    margin-top: 7px;
    overflow: hidden;
    color: #627188;
    font-size: 11px;
    line-height: 1.4;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.ar-home-brand-arrow {
    color: #0b67ff;
}

.ar-home-editorial-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
}

.ar-home-editorial-card {
    display: grid;
    grid-template-columns: minmax(130px, 0.42fr) minmax(0, 0.58fr);
    min-width: 0;
    overflow: hidden;
    border: 1px solid #d7e5f5;
    border-radius: 20px;
    background: #fff;
    transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.ar-home-editorial-card:hover {
    border-color: rgba(16, 98, 255, 0.48);
    box-shadow: 0 18px 38px rgba(16, 98, 255, 0.1);
    transform: translateY(-2px);
}

.ar-home-editorial-image {
    display: block;
    min-height: 220px;
    overflow: hidden;
    background: linear-gradient(145deg, #eaf6ff, #f9fcff);
}

.ar-home-editorial-image img,
.ar-home-editorial-image .ar-image-fallback {
    width: 100%;
    height: 100%;
    min-height: 220px;
    object-fit: cover;
}

.ar-home-editorial-copy {
    display: flex;
    min-width: 0;
    flex-direction: column;
    padding: 18px;
}

.ar-home-editorial-copy > small {
    color: #0c61e8;
    font-size: 9px;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.ar-home-editorial-copy h3 {
    margin: 9px 0 0;
    color: #07142f;
    font-size: 17px;
    font-weight: 930;
    letter-spacing: -0.04em;
    line-height: 1.14;
}

.ar-home-editorial-copy h3 a:hover {
    color: var(--ar-blue);
}

.ar-home-editorial-copy p {
    display: -webkit-box;
    margin: 10px 0 0;
    overflow: hidden;
    color: #617086;
    font-size: 12px;
    line-height: 1.48;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
}

.ar-home-editorial-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: auto;
    padding-top: 16px;
    color: #0b5fe9;
    font-size: 12px;
    font-weight: 900;
}

.ar-home-news-panel {
    margin-bottom: 34px;
}

.ar-home-news-panel .ar-home-editorial-card {
    border-color: #d0e2f7;
    background: linear-gradient(160deg, #fff, #f4f9ff);
}

.ar-home-trust-panel {
    margin-top: 20px;
    padding: 24px;
}

.ar-trust-grid-v2 {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 12px;
}

.ar-trust-grid-v2 article {
    min-height: 150px;
    padding: 16px;
    border: 1px solid #d9e7f7;
    border-radius: 18px;
    background: linear-gradient(160deg, #ffffff, #f2f9ff);
}

.ar-trust-grid-v2 span {
    display: grid;
    width: 38px;
    height: 38px;
    place-items: center;
    border-radius: 14px;
    color: #0b67ff;
    background: #e9f4ff;
    font-weight: 900;
}

.ar-trust-grid-v2 strong {
    display: block;
    margin-top: 12px;
    color: #07142f;
    font-size: 14px;
    font-weight: 900;
    line-height: 1.2;
}

.ar-trust-grid-v2 p {
    margin: 7px 0 0;
    color: #627188;
    font-size: 12px;
    line-height: 1.45;
}

.ar-home-faq-panel {
    display: grid;
    grid-template-columns: minmax(300px, 0.78fr) minmax(0, 1.42fr);
    gap: clamp(24px, 4vw, 52px);
    align-items: start;
    margin-block: 28px 22px;
    padding: clamp(20px, 3.3vw, 42px);
    border: 1px solid #d8e7f6;
    border-radius: 30px;
    background: #fff;
    box-shadow: 0 22px 68px rgba(7, 20, 47, 0.08);
}

.ar-home-faq-intro {
    position: sticky;
    top: 88px;
    overflow: hidden;
    padding: clamp(24px, 3vw, 36px);
    border-radius: 24px;
    color: #d8ebff;
    background:
        radial-gradient(circle at 100% 0, rgba(36, 200, 244, 0.28), transparent 34%),
        linear-gradient(150deg, #07142f 0%, #092868 100%);
}

.ar-home-faq-intro::after {
    position: absolute;
    right: -54px;
    bottom: -72px;
    width: 190px;
    height: 190px;
    border: 1px solid rgba(152, 241, 234, 0.22);
    border-radius: 50%;
    content: "";
}

.ar-home-faq-intro > * {
    position: relative;
    z-index: 1;
}

.ar-home-faq-intro .ar-kicker {
    color: #88e9ff;
}

.ar-home-faq-intro h2 {
    margin: 14px 0 18px;
    color: #fff;
    font-size: clamp(34px, 4vw, 52px);
    letter-spacing: -0.055em;
    line-height: 0.98;
}

.ar-home-faq-intro > p:not(.ar-kicker) {
    margin: 0;
    color: #bdd2ee;
    font-size: 15px;
    line-height: 1.65;
}

.ar-home-faq-intro > a {
    display: inline-flex;
    min-height: 44px;
    align-items: center;
    gap: 10px;
    margin-top: 24px;
    padding: 10px 15px;
    border: 1px solid rgba(255, 255, 255, 0.24);
    border-radius: 999px;
    color: #fff;
    background: rgba(255, 255, 255, 0.1);
    font-size: 13px;
    font-weight: 850;
}

.ar-home-faq-intro > a:hover {
    border-color: rgba(136, 233, 255, 0.72);
    background: rgba(255, 255, 255, 0.16);
}

.ar-home-faq-list {
    display: grid;
    gap: 10px;
}

.ar-home-faq-list details {
    overflow: hidden;
    border: 1px solid #dce8f5;
    border-radius: 17px;
    background: #fff;
}

.ar-home-faq-list details[open] {
    border-color: rgba(16, 98, 255, 0.36);
    background: #f7fbff;
    box-shadow: 0 12px 28px rgba(16, 98, 255, 0.08);
}

.ar-home-faq-list summary {
    display: grid;
    min-height: 68px;
    grid-template-columns: minmax(0, 1fr) 38px;
    gap: 18px;
    align-items: center;
    padding: 15px 17px 15px 20px;
    color: #07142f;
    cursor: pointer;
    font-size: 17px;
    font-weight: 900;
    letter-spacing: -0.025em;
    line-height: 1.28;
    list-style: none;
}

.ar-home-faq-list summary::-webkit-details-marker {
    display: none;
}

.ar-home-faq-list summary span {
    position: relative;
    display: block;
    width: 38px;
    height: 38px;
    border-radius: 999px;
    background: #eef6ff;
}

.ar-home-faq-list summary span::before,
.ar-home-faq-list summary span::after {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 14px;
    height: 2px;
    border-radius: 2px;
    background: #1062ff;
    content: "";
    transform: translate(-50%, -50%);
}

.ar-home-faq-list summary span::after {
    transform: translate(-50%, -50%) rotate(90deg);
}

.ar-home-faq-list details[open] summary span::after {
    transform: translate(-50%, -50%) rotate(0);
}

.ar-home-faq-list summary:focus-visible {
    outline: 3px solid rgba(36, 200, 244, 0.42);
    outline-offset: -3px;
}

.ar-home-faq-answer {
    padding: 0 76px 20px 20px;
    color: #52647c;
    font-size: 14.5px;
    line-height: 1.65;
}

.ar-home-faq-answer p {
    margin: 0;
}

.ar-home-faq-answer a {
    color: #0b58d6;
    font-weight: 800;
    text-decoration: underline;
    text-decoration-thickness: 1px;
    text-underline-offset: 3px;
}

.ar-home-final-cta {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 28px;
    align-items: center;
    margin-block: 22px 34px;
    overflow: hidden;
    padding: 34px;
    color: #fff;
    background:
        radial-gradient(circle at 18% 90%, rgba(152, 241, 234, 0.35), transparent 26%),
        linear-gradient(135deg, #0b67ff 0%, #0644d8 55%, #061e80 100%);
}

.ar-home-final-cta::before {
    position: absolute;
    right: 24%;
    bottom: -90px;
    width: 280px;
    height: 280px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 999px;
    content: "";
}

.ar-home-final-cta > * {
    position: relative;
    z-index: 1;
}

.ar-home-final-cta .ar-kicker {
    color: #bfefff;
}

.ar-home-final-cta h2 {
    max-width: 760px;
    color: #fff;
    font-size: clamp(28px, 3.4vw, 46px);
}

.ar-home-final-cta .ar-button {
    border: 1px solid rgba(255, 255, 255, 0.42);
    background: rgba(255, 255, 255, 0.12);
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.1), 0 18px 36px rgba(7, 20, 47, 0.18);
}

.ar-final-points {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 16px;
}

.ar-final-points span {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 7px 10px;
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: 999px;
    color: #eaf8ff;
    background: rgba(255, 255, 255, 0.1);
    font-size: 12px;
    font-weight: 800;
}

.ar-final-points span::before {
    content: "✓";
}

@media (max-width: 1100px) {
    .ar-home-hero-v2,
    .ar-home-main-grid,
    .ar-home-compare-layout,
    .ar-home-budget-strip {
        grid-template-columns: 1fr;
    }

    .ar-home-hero-v2 {
        padding-top: 28px;
    }

    .ar-home-hero-copy-v2,
    .ar-home-2026 h1,
    .ar-home-2026 .ar-lead,
    .ar-hero-decision-card {
        max-width: none;
    }

    .ar-hero-visual-card {
        min-height: 380px;
    }

    .ar-home-final-cta {
        grid-template-columns: 1fr;
    }

    .ar-home-need-grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }

    .ar-home-faq-panel {
        grid-template-columns: 1fr;
    }

    .ar-home-faq-intro {
        position: relative;
        top: auto;
    }

    .ar-home-dynamic-head,
    .ar-home-dynamic-controls {
        grid-template-columns: 1fr;
    }

    .ar-home-dynamic-all,
    .ar-home-dynamic-controls button {
        width: 100%;
    }

    .ar-home-quiz-head,
    .ar-quiz-results-head {
        grid-template-columns: 1fr;
        align-items: start;
    }

    .ar-home-quiz-promise {
        max-width: 420px;
    }

    .ar-quiz-options-four,
    .ar-quiz-options-multi,
    .ar-quiz-result-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}


@media (max-width: 1100px) and (min-width: 901px) {
    .ar-home-product-row {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 900px) {
    .ar-home-2026 .ar-nav,
    .ar-home-2026 .ar-header-cta {
        display: none;
    }

    .ar-home-2026 .ar-mobile-menu {
        display: block;
        margin-left: auto;
    }

    .ar-home-product-row,
    .ar-home-need-grid,
    .ar-home-duel-grid,
    .ar-home-editorial-grid,
    .ar-trust-grid-v2 {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .ar-home-product-card {
        grid-template-columns: 1fr;
    }

    .ar-home-product-image {
        aspect-ratio: 4 / 3;
    }

    .ar-home-need-card {
        grid-template-columns: 112px 1fr;
        grid-template-rows: 1fr;
        align-items: center;
        min-height: 132px;
        padding: 16px 52px 16px 16px;
    }

    .ar-home-need-visual {
        min-height: 88px;
        margin: 0;
        justify-content: flex-start;
    }

    .ar-home-need-visual img {
        width: 100px;
        height: 88px;
    }

    .ar-home-need-content {
        align-self: center;
    }

    .ar-hero-robot {
        right: 74px;
        width: min(400px, 70%);
    }

    .ar-hero-station {
        right: 44px;
    }
}

@media (max-width: 680px) {
    .ar-home-2026 .ar-shell {
        width: min(100% - 28px, 1180px);
    }

    .ar-home-2026 .ar-logo > strong {
        font-size: 17px;
    }

    .ar-home-hero-v2 {
        padding-block: 18px 12px;
    }

    .ar-home-2026 h1 {
        font-size: clamp(38px, 13vw, 58px);
    }

    .ar-hero-decision-card,
    .ar-home-featured-panel,
    .ar-home-needs-panel,
    .ar-home-dynamic-panel,
    .ar-home-compare-panel,
    .ar-home-quiz-panel,
    .ar-home-duels-panel,
    .ar-home-brands-panel,
    .ar-home-editorial-panel,
    .ar-home-trust-panel,
    .ar-home-budget-strip,
    .ar-home-final-cta {
        border-radius: 22px;
        padding: 18px;
    }

    .ar-home-dynamic-panel {
        padding: 0;
    }

    .ar-home-faq-panel {
        gap: 18px;
        padding: 16px;
        border-radius: 22px;
    }

    .ar-home-faq-intro {
        padding: 24px;
        border-radius: 18px;
    }

    .ar-home-faq-intro h2 {
        font-size: clamp(32px, 10vw, 42px);
    }

    .ar-home-faq-list summary {
        min-height: 62px;
        grid-template-columns: minmax(0, 1fr) 34px;
        gap: 12px;
        padding: 14px;
        font-size: 15.5px;
    }

    .ar-home-faq-list summary span {
        width: 34px;
        height: 34px;
    }

    .ar-home-faq-answer {
        padding: 0 16px 17px;
        font-size: 14px;
    }

    .ar-home-dynamic-inner {
        padding: 18px;
    }

    .ar-home-quiz-panel {
        padding: 0;
    }

    .ar-home-quiz {
        padding: 18px;
    }

    .ar-quiz-entry {
        min-height: 0;
        padding: 24px;
        border-radius: 26px;
    }

    .ar-quiz-entry h2 {
        margin-top: 22px;
        font-size: clamp(29px, 9vw, 39px);
    }

    .ar-quiz-progress {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .ar-quiz-form,
    .ar-quiz-results {
        padding: 17px;
        border-radius: 18px;
    }

    .ar-quiz-options-four,
    .ar-quiz-options-three,
    .ar-quiz-options-multi,
    .ar-quiz-result-grid {
        grid-template-columns: 1fr;
    }

    .ar-quiz-options label > span {
        min-height: 92px;
    }

    .ar-quiz-navigation {
        display: grid;
        grid-template-columns: 1fr;
    }

    .ar-quiz-navigation .ar-button,
    .ar-quiz-results-head .ar-button {
        width: 100%;
    }

    .ar-quiz-result-actions {
        grid-template-columns: 1fr;
    }

    .ar-quiz-result-actions .ar-button:only-child {
        grid-column: auto;
    }

    .ar-hero-need-pills a {
        flex: 1 1 calc(50% - 10px);
        justify-content: center;
    }

    .ar-hero-actions-v2 .ar-button,
    .ar-hero-actions-v2 .ar-button-secondary,
    .ar-home-final-cta .ar-button {
        width: 100%;
    }

    .ar-hero-visual-card {
        min-height: 320px;
        border-radius: 26px;
    }

    .ar-hero-station {
        top: 36px;
        right: 22px;
        width: 118px;
        height: 184px;
    }

    .ar-hero-robot {
        right: 44px;
        bottom: 36px;
        width: min(330px, 78%);
    }

    .ar-hero-floating-count {
        top: 22px;
        right: 18px;
    }

    .ar-hero-floating-rating {
        top: 178px;
        left: 16px;
    }

    .ar-hero-badge {
        right: 16px;
        bottom: 16px;
        width: min(230px, calc(100% - 32px));
    }

    .ar-home-product-row,
    .ar-home-need-grid,
    .ar-home-duel-grid,
    .ar-home-editorial-grid,
    .ar-trust-grid-v2 {
        grid-template-columns: 1fr;
    }

    .ar-home-favorites {
        width: 100%;
        justify-content: flex-end;
        margin-top: -18px;
    }

    .ar-home-favorites__privacy {
        display: none;
    }

    .ar-home-favorites__panel {
        width: 100%;
    }

    .ar-home-brand-track {
        grid-auto-columns: minmax(270px, 86%);
    }

    .ar-home-carousel-controls {
        margin-top: 0;
    }

    .ar-home-editorial-card {
        grid-template-columns: 118px minmax(0, 1fr);
    }

    .ar-home-editorial-image,
    .ar-home-editorial-image img,
    .ar-home-editorial-image .ar-image-fallback {
        min-height: 198px;
    }

    .ar-home-need-card {
        grid-template-columns: 96px 1fr;
        min-height: 118px;
        padding: 14px 50px 14px 14px;
        border-radius: 18px;
    }

    .ar-home-need-visual {
        min-height: 76px;
    }

    .ar-home-need-visual img {
        width: 86px;
        height: 76px;
    }

    .ar-home-need-card strong {
        font-size: 15px;
    }

    .ar-home-need-card small {
        font-size: 11.5px;
    }

    .ar-home-budget-strip .ar-compact-card {
        display: grid;
        gap: 12px;
    }

    .ar-home-budget-strip .ar-compact-card > div {
        grid-template-columns: 1fr;
        gap: 4px;
    }

    .ar-home-budget-strip .ar-compact-card .ar-button-secondary {
        width: 100%;
    }
}

@media (max-width: 420px) {
    .ar-home-product-actions {
        grid-template-columns: 1fr;
    }

    .ar-home-product-actions .ar-button {
        min-width: 0;
    }

    .ar-home-product-compare-row small {
        max-width: 82px;
    }
}

/* Marques — aligned with Home 2026 decision UX */
.ar-brands-page {
    --ar-ink: #07142f;
    --ar-muted: #4f6078;
    --ar-faint: #6b7a91;
    --ar-line: #d7e6f8;
    --ar-paper: #ffffff;
    --ar-canvas: #eef7ff;
    --ar-soft: #eaf6ff;
    --ar-blue: #1062ff;
    --ar-blue-dark: #0737b8;
    --ar-blue-soft: #eaf3ff;
    --ar-cyan: #24c8f4;
    --ar-aqua: #98f1ea;
    --ar-radius: 24px;
    --ar-shadow: 0 24px 70px rgba(16, 98, 255, 0.14);
    background:
        radial-gradient(circle at 12% 6%, rgba(126, 224, 255, 0.42), transparent 30%),
        radial-gradient(circle at 86% 2%, rgba(16, 98, 255, 0.16), transparent 28%),
        linear-gradient(180deg, #f7fcff 0%, #eef8ff 42%, #ffffff 100%);
}

.ar-brands-page .ar-header {
    position: sticky;
    top: 12px;
    width: min(1320px, calc(100% - 32px));
    margin: 12px auto 0;
    border: 1px solid rgba(183, 211, 244, 0.9);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.9);
    box-shadow: 0 14px 40px rgba(16, 98, 255, 0.09);
}

.admin-bar .ar-brands-page .ar-header {
    top: 44px;
}

.ar-brands-page .ar-header::after {
    position: absolute;
    inset-inline: 18px;
    bottom: -13px;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(16, 98, 255, 0.32), transparent);
    content: "";
}

.ar-brands-page .ar-logo > span {
    background: linear-gradient(135deg, var(--ar-blue), var(--ar-cyan));
}

.ar-brands-hero,
.ar-brand-detail-hero {
    display: grid;
    grid-template-columns: minmax(0, 1.16fr) minmax(330px, 0.84fr);
    gap: 28px;
    align-items: stretch;
    padding: 48px 0 28px;
}

.ar-brands-hero-copy,
.ar-brand-detail-copy,
.ar-brands-console,
.ar-brand-takeaway {
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(215, 230, 248, 0.95);
    border-radius: 30px;
    background: rgba(255, 255, 255, 0.82);
    box-shadow: var(--ar-shadow);
}

.ar-brands-hero-copy,
.ar-brand-detail-copy {
    min-height: 430px;
    padding: clamp(28px, 4.5vw, 58px);
}

.ar-brands-hero-copy::before,
.ar-brand-detail-copy::before {
    position: absolute;
    inset: -40% -10% auto auto;
    width: 460px;
    aspect-ratio: 1;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(36, 200, 244, 0.26), transparent 64%);
    content: "";
    pointer-events: none;
}

.ar-brands-hero h1,
.ar-brand-detail h1 {
    position: relative;
    max-width: 880px;
    margin: 0;
    font-family: var(--ar-display);
    font-size: clamp(46px, 5.8vw, 78px);
    font-weight: 650;
    letter-spacing: -0.055em;
    line-height: 0.98;
    text-wrap: balance;
}

.ar-brands-actions,
.ar-brand-hero-metrics {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 32px;
}

.ar-brands-console,
.ar-brand-takeaway {
    display: flex;
    min-height: 430px;
    flex-direction: column;
    justify-content: flex-end;
    padding: clamp(26px, 4vw, 42px);
    color: #fff;
    border-color: rgba(16, 98, 255, 0.22);
    background:
        radial-gradient(circle at 70% 18%, rgba(36, 200, 244, 0.32), transparent 31%),
        radial-gradient(circle at 26% 62%, rgba(152, 241, 234, 0.18), transparent 32%),
        linear-gradient(145deg, #07142f 0%, #0b2a63 58%, #1062ff 130%);
}

.ar-brands-console h2,
.ar-brand-takeaway h2 {
    max-width: 420px;
    margin: 0;
    font-family: var(--ar-display);
    font-size: clamp(32px, 3vw, 45px);
    font-weight: 650;
    letter-spacing: -0.04em;
    line-height: 1.02;
}

.ar-brands-console p,
.ar-brand-takeaway p,
.ar-brand-takeaway li {
    color: rgba(255, 255, 255, 0.78);
}

.ar-console-eyebrow {
    margin: 0 0 14px;
    color: #9ff2dc !important;
    font-size: 12px;
    font-weight: 850;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.ar-brands-orbit {
    position: absolute;
    inset: 32px 32px auto auto;
    width: 170px;
    aspect-ratio: 1;
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: 50%;
    opacity: 0.86;
}

.ar-brands-orbit::before,
.ar-brands-orbit::after,
.ar-brands-orbit span,
.ar-brands-orbit i,
.ar-brands-orbit b {
    position: absolute;
    border-radius: 50%;
    content: "";
}

.ar-brands-orbit::before {
    inset: 24px;
    border: 1px solid rgba(255, 255, 255, 0.22);
}

.ar-brands-orbit::after {
    inset: 54px;
    border: 1px solid rgba(255, 255, 255, 0.22);
}

.ar-brands-orbit span,
.ar-brands-orbit i,
.ar-brands-orbit b {
    width: 12px;
    height: 12px;
    background: #9ff2dc;
    box-shadow: 0 0 0 6px rgba(159, 242, 220, 0.12);
}

.ar-brands-orbit span { top: 22px; left: 72px; }
.ar-brands-orbit i { right: 30px; bottom: 44px; }
.ar-brands-orbit b { left: 28px; bottom: 54px; }

.ar-brand-stats,
.ar-brand-hero-metrics {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
}

.ar-brand-stats {
    margin-top: 28px;
}

.ar-brand-stats div,
.ar-brand-hero-metrics span {
    padding: 15px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.08);
}

.ar-brand-stats strong,
.ar-brand-hero-metrics strong {
    display: block;
    color: #fff;
    font-family: var(--ar-display);
    font-size: 30px;
    font-weight: 650;
    letter-spacing: -0.04em;
    line-height: 1;
}

.ar-brand-stats span,
.ar-brand-hero-metrics span {
    color: rgba(255, 255, 255, 0.74);
    font-size: 12px;
    font-weight: 750;
    line-height: 1.35;
}

.ar-brand-detail-copy .ar-brand-hero-metrics span {
    color: var(--ar-muted);
    border-color: var(--ar-line);
    background: rgba(255, 255, 255, 0.78);
}

.ar-brand-detail-copy .ar-brand-hero-metrics strong {
    color: var(--ar-blue);
}

.ar-brand-intro {
    max-width: 930px;
    margin: 20px auto 0;
    padding: clamp(24px, 4vw, 42px);
    border: 1px solid var(--ar-line);
    border-radius: 26px;
    background: rgba(255, 255, 255, 0.88);
    box-shadow: 0 18px 50px rgba(16, 98, 255, 0.08);
}

.ar-brand-directory,
.ar-brand-lens,
.ar-brand-products-overview,
.ar-brand-models,
.ar-brand-siblings {
    padding-block: 64px;
}

.ar-brand-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.ar-brand-card {
    display: grid;
    overflow: hidden;
    min-height: 100%;
    border: 1px solid var(--ar-line);
    border-radius: 24px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(237, 248, 255, 0.82));
    box-shadow: 0 18px 50px rgba(16, 98, 255, 0.08);
    transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.ar-brand-card:hover {
    border-color: rgba(16, 98, 255, 0.42);
    box-shadow: 0 24px 64px rgba(16, 98, 255, 0.14);
    transform: translateY(-3px);
}

.ar-brand-card-media {
    display: grid;
    min-height: 190px;
    place-items: center;
    background:
        radial-gradient(circle at 50% 45%, rgba(36, 200, 244, 0.16), transparent 44%),
        linear-gradient(135deg, #f8fcff, #eaf6ff);
}

.ar-brand-card-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.ar-brand-avatar,
.ar-brand-avatar-large {
    display: grid;
    place-items: center;
    border-radius: 50%;
    color: #fff;
    background:
        radial-gradient(circle at 32% 22%, rgba(255, 255, 255, 0.34), transparent 32%),
        linear-gradient(135deg, var(--ar-blue), #24c8f4);
    font-family: var(--ar-display);
    font-weight: 700;
    letter-spacing: -0.05em;
    box-shadow: 0 22px 54px rgba(16, 98, 255, 0.24);
}

.ar-brand-avatar {
    width: 118px;
    height: 118px;
    font-size: 42px;
}

.ar-brand-avatar-large {
    position: absolute;
    top: 28px;
    right: 28px;
    width: 112px;
    height: 112px;
    font-size: 40px;
    opacity: 0.92;
}

.ar-brand-card-body {
    display: flex;
    flex-direction: column;
    padding: 24px;
}

.ar-brand-card-body small {
    color: var(--ar-blue);
    font-size: 11px;
    font-weight: 850;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.ar-brand-card-body h3 {
    margin: 10px 0 0;
    font-family: var(--ar-display);
    font-size: 32px;
    font-weight: 650;
    letter-spacing: -0.045em;
    line-height: 1.02;
}

.ar-brand-card-body p {
    margin: 13px 0 0;
    color: var(--ar-muted);
    line-height: 1.55;
}

.ar-brand-card-signals {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
    margin-top: 20px;
}

.ar-brand-card-signals span {
    min-height: 54px;
    padding: 9px 10px;
    border: 1px solid var(--ar-line);
    border-radius: 14px;
    color: var(--ar-muted);
    background: rgba(255, 255, 255, 0.72);
    font-size: 12px;
    font-weight: 760;
    line-height: 1.25;
}

.ar-brand-card .ar-text-link {
    margin-top: 22px;
}

.ar-brand-lens-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px;
}

.ar-brand-lens-grid article {
    min-height: 230px;
    padding: 24px;
    border: 1px solid var(--ar-line);
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.9);
    box-shadow: 0 16px 44px rgba(16, 98, 255, 0.07);
}

.ar-brand-lens-grid span {
    display: inline-grid;
    width: 38px;
    height: 38px;
    place-items: center;
    border-radius: 50%;
    color: #fff;
    background: var(--ar-blue);
    font-weight: 850;
}

.ar-brand-lens-grid h3 {
    margin: 20px 0 0;
    font-family: var(--ar-display);
    font-size: 25px;
    font-weight: 650;
    letter-spacing: -0.035em;
    line-height: 1.1;
}

.ar-brand-lens-grid p {
    margin: 12px 0 0;
    color: var(--ar-muted);
}

.ar-brand-story-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 320px;
    gap: 26px;
    align-items: start;
    padding-block: 28px 20px;
}

.ar-brand-story {
    padding: clamp(24px, 4vw, 42px);
    border: 1px solid var(--ar-line);
    border-radius: 26px;
    background: rgba(255, 255, 255, 0.9);
    box-shadow: 0 18px 50px rgba(16, 98, 255, 0.08);
}

.ar-brand-side {
    position: sticky;
    top: 110px;
    display: grid;
    gap: 14px;
}

.ar-brand-takeaway ul {
    display: grid;
    gap: 12px;
    margin: 24px 0 0;
    padding: 0;
    list-style: none;
}

.ar-brand-takeaway li {
    position: relative;
    padding-left: 26px;
}

.ar-brand-takeaway li::before {
    position: absolute;
    top: 0.58em;
    left: 0;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #9ff2dc;
    box-shadow: 0 0 0 5px rgba(159, 242, 220, 0.12);
    content: "";
}

.ar-brand-grid-compact {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.ar-brand-grid-compact .ar-brand-card-media {
    min-height: 140px;
}

.ar-brand-grid-compact .ar-brand-card-signals {
    grid-template-columns: 1fr;
}

@media (max-width: 1024px) {
    .ar-brands-hero,
    .ar-brand-detail-hero,
    .ar-brand-story-layout {
        grid-template-columns: 1fr;
    }

    .ar-brands-console,
    .ar-brand-takeaway {
        min-height: 360px;
    }

    .ar-brand-grid,
    .ar-brand-grid-compact {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .ar-brand-lens-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .ar-brand-side {
        position: static;
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 700px) {
    .ar-brands-page .ar-header {
        top: 8px;
        width: min(100% - 20px, 680px);
        margin-top: 8px;
        border-radius: 16px;
    }

    .admin-bar .ar-brands-page .ar-header {
        top: 54px;
    }

    .ar-brands-hero,
    .ar-brand-detail-hero {
        gap: 16px;
        padding-top: 28px;
    }

    .ar-brands-hero-copy,
    .ar-brand-detail-copy,
    .ar-brands-console,
    .ar-brand-takeaway,
    .ar-brand-intro,
    .ar-brand-story {
        border-radius: 22px;
    }

    .ar-brands-hero-copy,
    .ar-brand-detail-copy {
        min-height: 0;
        padding: 24px 20px;
    }

    .ar-brands-hero h1,
    .ar-brand-detail h1 {
        font-size: clamp(40px, 12vw, 56px);
    }

    .ar-brands-actions,
    .ar-brands-actions .ar-button {
        width: 100%;
    }

    .ar-brands-console,
    .ar-brand-takeaway {
        min-height: 0;
        padding: 28px 20px;
    }

    .ar-brands-orbit,
    .ar-brand-avatar-large {
        position: relative;
        inset: auto;
        margin-bottom: 22px;
    }

    .ar-brand-stats,
    .ar-brand-hero-metrics,
    .ar-brand-card-signals,
    .ar-brand-grid,
    .ar-brand-grid-compact,
    .ar-brand-lens-grid,
    .ar-brand-side {
        grid-template-columns: 1fr;
    }

    .ar-brand-directory,
    .ar-brand-lens,
    .ar-brand-products-overview,
    .ar-brand-models,
    .ar-brand-siblings {
        padding-block: 42px;
    }

    .ar-brand-card-media {
        min-height: 150px;
    }

    .ar-brand-card-body {
        padding: 20px;
    }

    .ar-brand-card-body h3 {
        font-size: 28px;
    }

    .ar-brand-lens-grid article {
        min-height: 0;
    }
}

/* Marques 0.7.6 — alignement strict avec la Home 2026 */
.ar-brands-aligned {
    background:
        radial-gradient(circle at 15% 5%, rgba(126, 224, 255, 0.42), transparent 28%),
        radial-gradient(circle at 88% 3%, rgba(16, 98, 255, 0.16), transparent 27%),
        linear-gradient(180deg, #f7fcff 0%, #edf7ff 46%, #ffffff 100%);
}

.ar-brands-aligned .ar-header {
    position: sticky;
    top: 0;
    width: auto;
    margin: 0;
    padding: 10px 0 12px;
    border: 0;
    border-radius: 0;
    background: linear-gradient(180deg, rgba(247, 252, 255, 0.96), rgba(247, 252, 255, 0.78));
    box-shadow: 0 1px 0 rgba(215, 230, 248, 0.72), 0 18px 42px rgba(7, 20, 47, 0.06);
}

.admin-bar .ar-brands-aligned .ar-header {
    top: 32px;
}

.ar-brands-aligned .ar-header::after {
    display: none;
}

.ar-brands-aligned .ar-header-inner {
    min-height: 64px;
    padding-inline: 18px;
    border: 1px solid rgba(205, 224, 248, 0.9);
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.94);
    box-shadow: 0 16px 46px rgba(20, 88, 160, 0.11);
    backdrop-filter: blur(16px);
}

.ar-brands-aligned .ar-logo > span {
    width: 36px;
    height: 36px;
    border: 2px solid rgba(16, 98, 255, 0.22);
    color: transparent;
    background: linear-gradient(135deg, #0c5cff, #25c7f4);
    box-shadow: inset 0 0 0 8px #fff, 0 10px 24px rgba(16, 98, 255, 0.2);
}

.ar-brands-aligned .ar-logo > strong {
    color: #081631;
    font-size: 19px;
    font-weight: 900;
    letter-spacing: -0.05em;
}

.ar-brands-aligned .ar-logo em {
    color: #1183ff;
}

.ar-brands-aligned .ar-nav {
    gap: 14px;
}

.ar-brands-aligned .ar-nav a {
    padding: 9px 10px;
    color: #1f2b43;
    font-size: 14px;
    font-weight: 760;
}

.ar-brands-aligned .ar-nav a:hover,
.ar-brands-aligned .ar-nav a.is-active {
    color: var(--ar-blue);
    background: rgba(16, 98, 255, 0.08);
}

.ar-brands-aligned .ar-header-cta,
.ar-brands-aligned .ar-button {
    min-height: 48px;
    padding: 12px 22px;
    border: 0;
    border-radius: 15px;
    color: #fff !important;
    background: linear-gradient(135deg, #0b5cff, #0d7dff 55%, #16b9ff);
    box-shadow: 0 14px 28px rgba(16, 98, 255, 0.22);
}

.ar-brands-aligned .ar-button-secondary {
    border: 1px solid #cfe0f5;
    color: #07142f !important;
    background: rgba(255, 255, 255, 0.92);
    box-shadow: none;
}

.ar-brands-aligned .ar-kicker {
    color: #116cef;
    font-size: 11px;
    font-weight: 900;
    letter-spacing: 0.12em;
}

.ar-brands-aligned .ar-brands-hero,
.ar-brands-aligned .ar-brand-detail-hero {
    grid-template-columns: minmax(0, 0.96fr) minmax(390px, 1.04fr);
    gap: 28px;
    align-items: center;
    padding: 34px 0 28px;
}

.ar-brands-aligned .ar-brands-hero-copy,
.ar-brands-aligned .ar-brand-detail-copy {
    min-height: 0;
    padding: 28px 0 24px;
    overflow: visible;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
}

.ar-brands-aligned .ar-brands-hero-copy::before,
.ar-brands-aligned .ar-brand-detail-copy::before {
    display: none;
}

.ar-brands-aligned .ar-brands-hero h1,
.ar-brands-aligned .ar-brand-detail h1 {
    max-width: 720px;
    color: #07142f;
    font-family: var(--ar-sans);
    font-size: clamp(44px, 5.2vw, 72px);
    font-weight: 920;
    letter-spacing: -0.065em;
    line-height: 0.96;
}

.ar-brands-aligned .ar-lead {
    max-width: 660px;
    margin-top: 18px;
    color: #44546b;
    font-size: clamp(16px, 1.4vw, 19px);
    line-height: 1.68;
}

.ar-brands-aligned .ar-brands-actions {
    margin-top: 24px;
}

.ar-brands-aligned .ar-brands-console,
.ar-brands-aligned .ar-brand-takeaway {
    min-height: 430px;
    justify-content: flex-end;
    padding: clamp(28px, 4vw, 46px);
    color: #07142f;
    border: 1px solid rgba(198, 222, 247, 0.96);
    border-radius: 28px;
    background:
        radial-gradient(circle at 77% 16%, rgba(36, 200, 244, 0.28), transparent 34%),
        radial-gradient(circle at 20% 76%, rgba(152, 241, 234, 0.24), transparent 32%),
        linear-gradient(145deg, rgba(255, 255, 255, 0.96), rgba(225, 244, 255, 0.94));
    box-shadow: 0 24px 70px rgba(16, 98, 255, 0.13);
}

.ar-brands-aligned .ar-brands-console h2,
.ar-brands-aligned .ar-brand-takeaway h2 {
    max-width: 470px;
    color: #07142f;
    font-family: var(--ar-sans);
    font-size: clamp(29px, 3vw, 42px);
    font-weight: 920;
    letter-spacing: -0.058em;
    line-height: 1.02;
}

.ar-brands-aligned .ar-brands-console > p:not(.ar-console-eyebrow),
.ar-brands-aligned .ar-brand-takeaway > p:not(.ar-console-eyebrow),
.ar-brands-aligned .ar-brand-takeaway li {
    color: #4f6078;
}

.ar-brands-aligned .ar-console-eyebrow {
    color: #116cef !important;
}

.ar-brands-aligned .ar-brands-orbit {
    border-color: rgba(16, 98, 255, 0.2);
}

.ar-brands-aligned .ar-brands-orbit::before,
.ar-brands-aligned .ar-brands-orbit::after {
    border-color: rgba(16, 98, 255, 0.2);
}

.ar-brands-aligned .ar-brands-orbit span,
.ar-brands-aligned .ar-brands-orbit i,
.ar-brands-aligned .ar-brands-orbit b {
    background: #1062ff;
    box-shadow: 0 0 0 6px rgba(16, 98, 255, 0.1);
}

.ar-brands-aligned .ar-brand-stats div,
.ar-brands-aligned .ar-brand-hero-metrics span {
    border: 1px solid #d2e4f8;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.78);
}

.ar-brands-aligned .ar-brand-stats strong,
.ar-brands-aligned .ar-brand-hero-metrics strong,
.ar-brands-aligned .ar-brand-detail-copy .ar-brand-hero-metrics strong {
    color: #1062ff;
    font-family: var(--ar-sans);
    font-size: 27px;
    font-weight: 920;
}

.ar-brands-aligned .ar-brand-stats span,
.ar-brands-aligned .ar-brand-hero-metrics span,
.ar-brands-aligned .ar-brand-detail-copy .ar-brand-hero-metrics span {
    color: #52627a;
}

.ar-brands-aligned .ar-brand-avatar-large {
    color: #fff;
    background: linear-gradient(135deg, #0b5cff, #24c8f4);
    font-family: var(--ar-sans);
    font-weight: 920;
    box-shadow: 0 20px 45px rgba(16, 98, 255, 0.22);
}

.ar-brands-aligned .ar-brand-takeaway li::before {
    background: #1062ff;
    box-shadow: 0 0 0 5px rgba(16, 98, 255, 0.1);
}

.ar-brands-aligned .ar-brand-intro,
.ar-brands-aligned .ar-brand-directory,
.ar-brands-aligned .ar-brand-lens,
.ar-brands-aligned .ar-brand-products-overview,
.ar-brands-aligned .ar-brand-models,
.ar-brands-aligned .ar-brand-siblings,
.ar-brands-aligned .ar-brand-story,
.ar-brands-aligned .ar-brand-side .ar-side-box {
    border: 1px solid rgba(211, 228, 249, 0.92);
    border-radius: 28px;
    background: rgba(255, 255, 255, 0.88);
    box-shadow: 0 18px 50px rgba(18, 80, 145, 0.085);
    backdrop-filter: blur(10px);
}

.ar-brands-aligned .ar-brand-intro {
    max-width: none;
    margin: 18px 0 0;
    padding: 28px;
}

.ar-brands-aligned .ar-brand-directory,
.ar-brands-aligned .ar-brand-lens,
.ar-brands-aligned .ar-brand-products-overview,
.ar-brands-aligned .ar-brand-models,
.ar-brands-aligned .ar-brand-siblings {
    margin-top: 18px;
    padding: 28px;
}

.ar-brands-aligned .ar-section-head {
    margin-bottom: 22px;
}

.ar-brands-aligned .ar-section-head h2 {
    color: #07142f;
    font-family: var(--ar-sans);
    font-size: clamp(27px, 3vw, 38px);
    font-weight: 920;
    letter-spacing: -0.06em;
    line-height: 1.02;
}

.ar-brands-aligned .ar-section-head > div > p:last-child:not(.ar-kicker) {
    margin-top: 9px;
    color: #5e6b7f;
    font-size: 14px;
}

.ar-brands-aligned .ar-brand-grid {
    gap: 16px;
}

.ar-brands-aligned .ar-brand-card {
    border: 1px solid #d7e6f8;
    border-radius: 20px;
    background: #fff;
    box-shadow: 0 12px 34px rgba(16, 98, 255, 0.075);
}

.ar-brands-aligned .ar-brand-card:hover {
    border-color: rgba(16, 98, 255, 0.46);
    box-shadow: 0 18px 45px rgba(16, 98, 255, 0.13);
    transform: translateY(-2px);
}

.ar-brands-aligned .ar-brand-card-media {
    min-height: 168px;
    border-bottom: 1px solid #d7e6f8;
    background:
        radial-gradient(circle at 50% 50%, rgba(36, 200, 244, 0.18), transparent 48%),
        linear-gradient(135deg, #fbfdff, #eaf6ff);
}

.ar-brands-aligned .ar-brand-card-media img {
    padding: 20px;
    object-fit: contain;
}

.ar-brands-aligned .ar-brand-avatar {
    width: 96px;
    height: 96px;
    font-family: var(--ar-sans);
    font-size: 34px;
    font-weight: 920;
    box-shadow: 0 16px 38px rgba(16, 98, 255, 0.2);
}

.ar-brands-aligned .ar-brand-card-body {
    padding: 22px;
}

.ar-brands-aligned .ar-brand-card-body h3,
.ar-brands-aligned .ar-product-card h3,
.ar-brands-aligned .ar-side-box h2 {
    color: #07142f;
    font-family: var(--ar-sans);
    font-weight: 900;
    letter-spacing: -0.055em;
}

.ar-brands-aligned .ar-brand-card-body h3 {
    font-size: 28px;
}

.ar-brands-aligned .ar-brand-card-signals {
    gap: 7px;
    margin-top: 18px;
}

.ar-brands-aligned .ar-brand-card-signals span {
    min-height: 50px;
    border-radius: 12px;
    background: #f6fbff;
    font-size: 11px;
}

.ar-brands-aligned .ar-brand-lens-grid {
    gap: 12px;
}

.ar-brands-aligned .ar-brand-lens-grid article {
    min-height: 205px;
    padding: 22px;
    border: 1px solid #d7e6f8;
    border-radius: 18px;
    background: #fff;
    box-shadow: 0 10px 28px rgba(16, 98, 255, 0.06);
}

.ar-brands-aligned .ar-brand-lens-grid span {
    border-radius: 12px;
    background: linear-gradient(135deg, #0b5cff, #18aef6);
}

.ar-brands-aligned .ar-brand-lens-grid h3 {
    color: #07142f;
    font-family: var(--ar-sans);
    font-size: 22px;
    font-weight: 900;
    letter-spacing: -0.045em;
}

.ar-brands-aligned .ar-brand-story-layout {
    gap: 18px;
    padding: 0;
    margin-top: 18px;
}

.ar-brands-aligned .ar-brand-story {
    padding: clamp(26px, 4vw, 42px);
}

.ar-brands-aligned .ar-brand-side {
    top: 108px;
    gap: 12px;
}

.ar-brands-aligned .ar-brand-side .ar-side-box {
    padding: 22px;
    border-radius: 20px;
}

.ar-brands-aligned .ar-brand-side .ar-side-box a {
    color: #1062ff;
    font-weight: 850;
}

.ar-brands-aligned .ar-product-card {
    overflow: hidden;
    border-color: #d7e6f8;
    border-radius: 20px;
    box-shadow: 0 12px 34px rgba(16, 98, 255, 0.07);
}

.ar-brands-aligned .ar-product-card .ar-card-top {
    color: #1062ff;
    background: #f6fbff;
}

.ar-brands-aligned .ar-product-card .ar-card-image {
    background: #f0f8ff;
}

.ar-brands-aligned .ar-product-card .ar-card-image img {
    padding: 18px;
    object-fit: contain;
    background: #fff;
}

.ar-brands-aligned .ar-product-card .ar-card-body h3 {
    font-size: 25px;
}

.ar-brands-aligned .ar-product-card .ar-button {
    min-height: 42px;
    padding: 10px 15px;
    border-radius: 12px;
    font-size: 12px;
}

.ar-brand-final-cta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 220px;
    gap: 38px;
    margin: 18px 0 56px;
    padding: clamp(30px, 5vw, 54px);
    overflow: hidden;
    border: 1px solid rgba(144, 208, 255, 0.72);
    border-radius: 28px;
    color: #fff;
    background:
        radial-gradient(circle at 88% 26%, rgba(80, 221, 255, 0.38), transparent 34%),
        linear-gradient(120deg, #0753dc 0%, #0b78f3 60%, #15aef1 100%);
    box-shadow: 0 22px 56px rgba(16, 98, 255, 0.18);
}

.ar-brands-aligned .ar-brand-final-cta .ar-kicker {
    color: #a8f2ff;
}

.ar-brand-final-cta h2 {
    max-width: 760px;
    margin: 0;
    color: #fff;
    font-family: var(--ar-sans);
    font-size: clamp(30px, 3.6vw, 47px);
    font-weight: 920;
    letter-spacing: -0.06em;
    line-height: 1.02;
}

.ar-brand-final-cta p:not(.ar-kicker) {
    max-width: 680px;
    margin: 13px 0 0;
    color: rgba(255, 255, 255, 0.82);
}

.ar-brands-aligned .ar-brand-final-cta .ar-button {
    flex: 0 0 auto;
    border: 1px solid rgba(255, 255, 255, 0.76);
    background: rgba(255, 255, 255, 0.12);
    box-shadow: none;
}

@media (max-width: 1024px) {
    .ar-brands-aligned .ar-brands-hero,
    .ar-brands-aligned .ar-brand-detail-hero {
        grid-template-columns: 1fr;
    }

    .ar-brands-aligned .ar-brands-hero-copy,
    .ar-brands-aligned .ar-brand-detail-copy {
        max-width: 760px;
    }

    .ar-brands-aligned .ar-brands-console,
    .ar-brands-aligned .ar-brand-takeaway {
        min-height: 370px;
    }
}

@media (max-width: 820px) {
    .ar-brands-aligned .ar-nav,
    .ar-brands-aligned .ar-header-cta {
        display: none;
    }

    .ar-brands-aligned .ar-mobile-menu {
        display: block;
        margin-left: auto;
    }

    .ar-brands-aligned .ar-brand-grid,
    .ar-brands-aligned .ar-brand-grid-compact {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .ar-brands-aligned .ar-brand-story-layout {
        grid-template-columns: 1fr;
    }

    .ar-brands-aligned .ar-brand-side {
        position: static;
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .ar-brand-final-cta {
        align-items: flex-start;
        flex-direction: column;
    }
}

@media (max-width: 700px) {
    .ar-brands-aligned .ar-header {
        top: 0;
        width: auto;
        margin: 0;
        padding: 8px 0 10px;
        border-radius: 0;
    }

    .admin-bar .ar-brands-aligned .ar-header {
        top: 46px;
    }

    .ar-brands-aligned .ar-header-inner {
        width: min(100% - 24px, 680px);
        border-radius: 18px;
    }

    .ar-brands-aligned .ar-brands-hero,
    .ar-brands-aligned .ar-brand-detail-hero {
        padding-top: 24px;
    }

    .ar-brands-aligned .ar-brands-hero h1,
    .ar-brands-aligned .ar-brand-detail h1 {
        font-size: clamp(40px, 12vw, 56px);
    }

    .ar-brands-aligned .ar-brands-console,
    .ar-brands-aligned .ar-brand-takeaway {
        min-height: 0;
        padding: 26px 20px;
        border-radius: 22px;
    }

    .ar-brands-aligned .ar-brands-orbit,
    .ar-brands-aligned .ar-brand-avatar-large {
        position: relative;
        inset: auto;
        margin-bottom: 24px;
    }

    .ar-brands-aligned .ar-brand-stats,
    .ar-brands-aligned .ar-brand-hero-metrics,
    .ar-brands-aligned .ar-brand-grid,
    .ar-brands-aligned .ar-brand-grid-compact,
    .ar-brands-aligned .ar-brand-lens-grid,
    .ar-brands-aligned .ar-brand-side {
        grid-template-columns: 1fr;
    }

    .ar-brands-aligned .ar-brand-intro,
    .ar-brands-aligned .ar-brand-directory,
    .ar-brands-aligned .ar-brand-lens,
    .ar-brands-aligned .ar-brand-products-overview,
    .ar-brands-aligned .ar-brand-models,
    .ar-brands-aligned .ar-brand-siblings {
        padding: 20px;
        border-radius: 22px;
    }

    .ar-brands-aligned .ar-brand-card-signals {
        grid-template-columns: 1fr;
    }

    .ar-brand-final-cta {
        min-height: 280px;
        margin-bottom: 40px;
        padding: 30px 22px;
        border-radius: 22px;
    }

    .ar-brand-final-cta .ar-button {
        width: 100%;
    }
}

@media (prefers-reduced-motion: reduce) {
    .ar-brands-aligned .ar-brand-card:hover,
    .ar-brands-aligned .ar-button:hover {
        transform: none;
    }
}

/* Hubs et dossiers 0.7.7 — langage visuel partagé avec la Home 2026 */
.ar-hub-aligned,
.ar-editorial-aligned {
    background:
        radial-gradient(circle at 15% 5%, rgba(126, 224, 255, 0.4), transparent 28%),
        radial-gradient(circle at 88% 3%, rgba(16, 98, 255, 0.15), transparent 27%),
        linear-gradient(180deg, #f7fcff 0%, #edf7ff 46%, #ffffff 100%);
}

.ar-hub-aligned .ar-page-hero,
.ar-editorial-aligned .ar-article-hero {
    grid-template-columns: minmax(0, 0.96fr) minmax(390px, 1.04fr);
    gap: 28px;
    min-height: 540px;
    padding-block: 34px 28px;
    border-bottom: 0;
}

.ar-hub-aligned .ar-page-hero > div:first-child,
.ar-editorial-aligned .ar-article-hero > div:first-child {
    position: relative;
    z-index: 2;
    max-width: 670px;
    padding: 26px 0 18px;
}

.ar-hub-aligned .ar-page-hero > div:first-child::before,
.ar-editorial-aligned .ar-article-hero > div:first-child::before {
    position: absolute;
    z-index: -1;
    top: -12px;
    left: -48px;
    width: 220px;
    height: 220px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(57, 204, 255, 0.2), transparent 68%);
    content: "";
}

.ar-hub-aligned .ar-breadcrumb,
.ar-editorial-aligned .ar-breadcrumb {
    margin-bottom: 18px;
    color: #65758e;
    font-size: 11px;
    font-weight: 760;
}

.ar-hub-aligned .ar-page-hero h1,
.ar-editorial-aligned .ar-article-hero h1 {
    max-width: 700px;
    margin-top: 12px;
    color: #07142f;
    font-family: var(--ar-sans);
    font-size: clamp(44px, 5.2vw, 72px);
    font-weight: 920;
    letter-spacing: -0.067em;
    line-height: 0.96;
}

.ar-hub-aligned .ar-lead,
.ar-editorial-aligned .ar-lead {
    max-width: 650px;
    margin-top: 18px;
    color: #44546b;
    font-size: clamp(16px, 1.4vw, 19px);
    line-height: 1.68;
}

.ar-hub-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 24px;
}

.ar-hub-hero-actions .ar-button {
    min-width: 205px;
}

.ar-hub-hero-signals {
    display: flex;
    flex-wrap: wrap;
    gap: 9px;
    margin-top: 18px;
}

.ar-hub-hero-signals span {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    color: #33445d;
    font-size: 11px;
    font-weight: 780;
}

.ar-hub-hero-signals span::before {
    display: grid;
    width: 19px;
    height: 19px;
    place-items: center;
    border: 1px solid #b9d8ff;
    border-radius: 50%;
    color: #0877ff;
    background: #fff;
    content: "✓";
    font-size: 10px;
    font-weight: 900;
}

.ar-hub-aligned .ar-page-mark {
    position: relative;
    display: flex;
    width: 100%;
    min-height: 440px;
    aspect-ratio: auto;
    flex-direction: column;
    justify-content: flex-end;
    align-items: flex-start;
    padding: clamp(28px, 4vw, 46px);
    overflow: hidden;
    border: 1px solid rgba(170, 215, 252, 0.82);
    border-radius: 30px;
    background:
        linear-gradient(rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.12)),
        radial-gradient(circle at 68% 35%, rgba(255, 255, 255, 0.96) 0 3%, transparent 3.2%),
        linear-gradient(135deg, #eefaff 0%, #cbeaff 50%, #96d4ff 100%);
    box-shadow: 0 24px 64px rgba(24, 119, 210, 0.16);
}

.ar-hub-aligned .ar-page-mark::before,
.ar-hub-aligned .ar-page-mark::after {
    position: absolute;
    border-radius: 50%;
    content: "";
}

.ar-hub-aligned .ar-page-mark::before {
    top: 50%;
    left: 66%;
    width: 350px;
    height: 350px;
    border: 1px solid rgba(12, 111, 241, 0.24);
    background:
        repeating-radial-gradient(circle, transparent 0 42px, rgba(12, 111, 241, 0.13) 43px 44px),
        conic-gradient(from 10deg, transparent 0 10%, rgba(12, 111, 241, 0.12) 10.3% 10.8%, transparent 11% 24%, rgba(12, 111, 241, 0.12) 24.3% 24.8%, transparent 25% 100%);
    transform: translate(-50%, -50%);
}

.ar-hub-aligned .ar-page-mark::after {
    z-index: 1;
    top: 50%;
    left: 66%;
    width: 168px;
    height: 168px;
    border: 22px solid rgba(255, 255, 255, 0.78);
    background: linear-gradient(145deg, #f8fdff, #adddff);
    box-shadow: 0 22px 44px rgba(13, 94, 180, 0.18), inset 0 0 0 2px rgba(16, 98, 255, 0.12);
    transform: translate(-50%, -50%);
}

.ar-hub-aligned .ar-page-mark span {
    position: absolute;
    z-index: 3;
    top: 50%;
    left: 66%;
    display: grid;
    width: 82px;
    height: 82px;
    place-items: center;
    border-radius: 50%;
    color: #fff;
    background: linear-gradient(135deg, #0b5cff, #16b9ff);
    box-shadow: 0 16px 30px rgba(16, 98, 255, 0.25);
    font-size: 18px;
    letter-spacing: 0.1em;
    transform: translate(-50%, -50%);
}

.ar-hub-aligned .ar-page-mark small,
.ar-hub-aligned .ar-page-mark b {
    position: relative;
    z-index: 4;
    display: block;
}

.ar-hub-aligned .ar-page-mark small {
    color: #0b5cdf;
    font-size: clamp(36px, 5vw, 58px);
    font-weight: 930;
    letter-spacing: -0.07em;
    line-height: 1;
}

.ar-hub-aligned .ar-page-mark b {
    max-width: 220px;
    margin-top: 7px;
    color: #233650;
    font-size: 12px;
    font-weight: 850;
    letter-spacing: 0.02em;
}

.ar-hub-aligned .ar-editorial-intro,
.ar-hub-aligned .ar-hub-panel,
.ar-hub-aligned .ar-method-page,
.ar-editorial-aligned .ar-editorial-related {
    max-width: none;
    margin: 18px 0 0;
    padding: clamp(24px, 3.4vw, 38px);
    border: 1px solid rgba(204, 224, 248, 0.94);
    border-radius: 28px;
    background: rgba(255, 255, 255, 0.94);
    box-shadow: 0 18px 52px rgba(22, 96, 168, 0.08);
}

.ar-hub-aligned .ar-editorial-intro {
    color: #33445d;
    font-size: 17px;
}

.ar-hub-aligned .ar-hub-panel,
.ar-editorial-aligned .ar-editorial-related {
    padding-block: clamp(26px, 4vw, 44px);
}

.ar-hub-aligned .ar-section-head,
.ar-editorial-aligned .ar-section-head {
    margin-bottom: 24px;
}

.ar-hub-aligned .ar-section-head h2,
.ar-editorial-aligned .ar-section-head h2,
.ar-hub-aligned .ar-method-page h2 {
    max-width: 820px;
    color: #07142f;
    font-family: var(--ar-sans);
    font-size: clamp(29px, 3.4vw, 44px);
    font-weight: 920;
    letter-spacing: -0.058em;
    line-height: 1.03;
}

.ar-hub-aligned .ar-section-head > div > p:last-child:not(.ar-kicker),
.ar-editorial-aligned .ar-section-head > div > p:last-child:not(.ar-kicker) {
    max-width: 720px;
    color: #61718a;
}

.ar-hub-aligned .ar-product-grid,
.ar-hub-aligned .ar-content-grid,
.ar-editorial-aligned .ar-content-grid {
    gap: 14px;
}

.ar-hub-aligned .ar-product-card,
.ar-hub-aligned .ar-page-card,
.ar-editorial-aligned .ar-page-card {
    overflow: hidden;
    border: 1px solid #d7e6f8;
    border-radius: 20px;
    background: #fff;
    box-shadow: 0 12px 34px rgba(16, 98, 255, 0.07);
    transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.ar-hub-aligned .ar-product-card:hover,
.ar-hub-aligned .ar-page-card:hover,
.ar-editorial-aligned .ar-page-card:hover {
    border-color: #9bc8ff;
    box-shadow: 0 18px 42px rgba(16, 98, 255, 0.13);
    transform: translateY(-3px);
}

.ar-hub-aligned .ar-card-top {
    color: #1062ff;
    background: #f6fbff;
}

.ar-hub-aligned .ar-card-image {
    background: #f0f8ff;
}

.ar-hub-aligned .ar-card-image img {
    padding: 18px;
    object-fit: contain;
    background: #fff;
}

.ar-hub-aligned .ar-page-card-image,
.ar-editorial-aligned .ar-page-card-image {
    background: linear-gradient(135deg, #f5fbff, #e6f4ff);
}

.ar-hub-aligned .ar-card-body h3,
.ar-hub-aligned .ar-page-card h3,
.ar-editorial-aligned .ar-page-card h3 {
    color: #0a1730;
    font-family: var(--ar-sans);
    font-size: 24px;
    font-weight: 900;
    letter-spacing: -0.048em;
}

.ar-hub-aligned .ar-page-card > div,
.ar-editorial-aligned .ar-page-card > div {
    padding: 22px;
}

.ar-hub-aligned .ar-card-body,
.ar-hub-aligned .ar-page-card p,
.ar-editorial-aligned .ar-page-card p {
    color: #5d6e86;
}

.ar-hub-aligned .ar-product-card .ar-button {
    min-height: 42px;
    padding: 10px 15px;
    border-radius: 12px;
    font-size: 12px;
}

.ar-hub-aligned .ar-method-page {
    padding-block: clamp(28px, 4vw, 46px);
}

.ar-hub-aligned .ar-method-grid {
    gap: 14px;
}

.ar-hub-aligned .ar-method-grid article {
    min-height: 230px;
    padding: 26px;
    border: 1px solid #d7e6f8;
    border-radius: 20px;
    background: linear-gradient(145deg, #ffffff, #f3faff);
    box-shadow: 0 12px 30px rgba(16, 98, 255, 0.06);
}

.ar-hub-aligned .ar-method-grid article > span {
    display: grid;
    width: 52px;
    height: 52px;
    place-items: center;
    border-radius: 14px;
    color: #fff;
    background: linear-gradient(135deg, #0b5cff, #18b7f5);
    font-family: var(--ar-sans);
    font-size: 15px;
    font-weight: 900;
}

.ar-hub-aligned .ar-method-grid h3 {
    margin-top: 30px;
    color: #07142f;
    font-family: var(--ar-sans);
    font-size: 25px;
    font-weight: 900;
    letter-spacing: -0.045em;
}

.ar-hub-aligned .ar-method-warning {
    margin-top: 14px;
    border-color: #e8c15e;
    border-radius: 18px;
    background: #fff6d9;
}

.ar-hub-final-cta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 220px;
    gap: 38px;
    margin: 18px 0 56px;
    padding: clamp(30px, 5vw, 54px);
    overflow: hidden;
    border: 1px solid rgba(144, 208, 255, 0.72);
    border-radius: 28px;
    color: #fff;
    background:
        radial-gradient(circle at 88% 26%, rgba(80, 221, 255, 0.38), transparent 34%),
        linear-gradient(120deg, #0753dc 0%, #0b78f3 60%, #15aef1 100%);
    box-shadow: 0 22px 56px rgba(16, 98, 255, 0.18);
}

.ar-hub-final-cta .ar-kicker {
    color: #a8f2ff;
}

.ar-hub-final-cta h2 {
    max-width: 760px;
    margin: 0;
    color: #fff;
    font-family: var(--ar-sans);
    font-size: clamp(30px, 3.6vw, 47px);
    font-weight: 920;
    letter-spacing: -0.06em;
    line-height: 1.02;
}

.ar-hub-final-cta p:not(.ar-kicker) {
    max-width: 680px;
    margin: 13px 0 0;
    color: rgba(255, 255, 255, 0.82);
}

.ar-hub-final-cta .ar-button {
    flex: 0 0 auto;
    border: 1px solid rgba(255, 255, 255, 0.76);
    background: rgba(255, 255, 255, 0.12);
    box-shadow: none;
}

.ar-editorial-aligned .ar-article-cover {
    min-height: 440px;
    aspect-ratio: auto;
    padding: 22px;
    border: 1px solid rgba(170, 215, 252, 0.82);
    border-radius: 30px;
    background: linear-gradient(135deg, #eefaff 0%, #cbeaff 55%, #a5dcff 100%);
    box-shadow: 0 24px 64px rgba(24, 119, 210, 0.16);
}

.ar-editorial-aligned .ar-article-cover img {
    border-radius: 22px;
    object-fit: cover;
    background: #fff;
}

.ar-editorial-aligned .ar-article-cover .ar-image-fallback {
    height: 100%;
    min-height: 394px;
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.72);
}

.ar-editorial-aligned .ar-meta {
    color: #64738a;
}

.ar-editorial-aligned .ar-article-layout {
    grid-template-columns: minmax(0, 770px) minmax(250px, 310px);
    gap: 18px;
    padding: 0;
    margin-top: 18px;
}

.ar-editorial-aligned .ar-article-content,
.ar-editorial-aligned .ar-side-box {
    border: 1px solid rgba(204, 224, 248, 0.94);
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 18px 52px rgba(22, 96, 168, 0.07);
}

.ar-editorial-aligned .ar-article-content {
    padding: clamp(28px, 4vw, 48px);
    border-radius: 28px;
}

.ar-editorial-aligned .ar-prose {
    color: #324258;
    font-size: 17px;
}

.ar-editorial-aligned .ar-prose h2,
.ar-editorial-aligned .ar-prose h3,
.ar-editorial-aligned .ar-prose h4,
.ar-editorial-aligned .ar-side-box h2 {
    color: #07142f;
    font-family: var(--ar-sans);
    font-weight: 900;
    letter-spacing: -0.05em;
}

.ar-editorial-aligned .ar-prose h2 {
    font-size: clamp(32px, 3.8vw, 45px);
}

.ar-editorial-aligned .ar-prose h3 {
    font-size: 28px;
}

.ar-editorial-aligned .ar-prose img {
    border-radius: 20px;
    box-shadow: 0 14px 36px rgba(16, 98, 255, 0.08);
}

.ar-editorial-aligned .ar-prose blockquote {
    border-left-color: #0b68ec;
    border-radius: 0 16px 16px 0;
    background: #eaf2ff;
}

.ar-editorial-aligned .ar-prose th {
    color: #10213d;
    background: #edf7ff;
}

.ar-editorial-aligned .ar-article-side {
    top: 108px;
    gap: 12px;
}

.ar-editorial-aligned .ar-side-box {
    padding: 22px;
    border-radius: 20px;
}

.ar-editorial-aligned .ar-side-box h2 {
    font-size: 21px;
}

.ar-editorial-aligned .ar-side-box a {
    color: #1062ff;
    font-weight: 850;
}

.ar-editorial-aligned .ar-editorial-related {
    margin-bottom: 56px;
}

@media (max-width: 1024px) {
    .ar-hub-aligned .ar-page-hero,
    .ar-editorial-aligned .ar-article-hero {
        grid-template-columns: 1fr;
    }

    .ar-hub-aligned .ar-page-hero > div:first-child,
    .ar-editorial-aligned .ar-article-hero > div:first-child {
        max-width: 780px;
    }

    .ar-hub-aligned .ar-page-mark,
    .ar-editorial-aligned .ar-article-cover {
        min-height: 390px;
    }
}

@media (max-width: 820px) {
    .ar-hub-aligned .ar-product-grid,
    .ar-hub-aligned .ar-content-grid,
    .ar-editorial-aligned .ar-content-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .ar-editorial-aligned .ar-article-layout {
        grid-template-columns: 1fr;
    }

    .ar-editorial-aligned .ar-article-side {
        position: static;
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .ar-hub-final-cta {
        align-items: flex-start;
        flex-direction: column;
    }
}

@media (max-width: 700px) {
    .ar-hub-aligned .ar-page-hero,
    .ar-editorial-aligned .ar-article-hero {
        min-height: 0;
        padding-top: 24px;
    }

    .ar-hub-aligned .ar-page-hero h1,
    .ar-editorial-aligned .ar-article-hero h1 {
        font-size: clamp(40px, 12vw, 56px);
    }

    .ar-hub-hero-actions,
    .ar-hub-hero-actions .ar-button {
        width: 100%;
    }

    .ar-hub-aligned .ar-page-mark,
    .ar-editorial-aligned .ar-article-cover {
        min-height: 340px;
        padding: 22px;
        border-radius: 22px;
    }

    .ar-hub-aligned .ar-page-mark::before {
        left: 68%;
        width: 280px;
        height: 280px;
    }

    .ar-hub-aligned .ar-page-mark::after,
    .ar-hub-aligned .ar-page-mark span {
        top: 45%;
        left: 68%;
    }

    .ar-hub-aligned .ar-editorial-intro,
    .ar-hub-aligned .ar-hub-panel,
    .ar-hub-aligned .ar-method-page,
    .ar-editorial-aligned .ar-article-content,
    .ar-editorial-aligned .ar-editorial-related {
        padding: 20px;
        border-radius: 22px;
    }

    .ar-hub-aligned .ar-product-grid,
    .ar-hub-aligned .ar-content-grid,
    .ar-editorial-aligned .ar-content-grid,
    .ar-hub-aligned .ar-method-grid,
    .ar-editorial-aligned .ar-article-side {
        grid-template-columns: 1fr;
    }

    .ar-hub-final-cta {
        min-height: 280px;
        margin-bottom: 40px;
        padding: 30px 22px;
        border-radius: 22px;
    }

    .ar-hub-final-cta .ar-button {
        width: 100%;
    }
}

@media (prefers-reduced-motion: reduce) {
    .ar-hub-aligned .ar-product-card:hover,
    .ar-hub-aligned .ar-page-card:hover,
    .ar-editorial-aligned .ar-page-card:hover,
    .ar-hub-aligned .ar-button:hover,
    .ar-editorial-aligned .ar-button:hover {
        transform: none;
    }
}

/* Fiches produit 0.7.8 — alignement avec la Home 2026 */
.ar-test-aligned {
    background:
        radial-gradient(circle at 15% 4%, rgba(126, 224, 255, 0.4), transparent 28%),
        radial-gradient(circle at 88% 3%, rgba(16, 98, 255, 0.15), transparent 27%),
        linear-gradient(180deg, #f7fcff 0%, #edf7ff 46%, #ffffff 100%);
}

.ar-test-aligned .ar-test-breadcrumb {
    padding-top: 26px;
}

.ar-test-aligned .ar-test-breadcrumb .ar-breadcrumb {
    margin-bottom: 16px;
    color: #65758e;
    font-size: 11px;
    font-weight: 760;
}

.ar-test-aligned .ar-test-hero {
    grid-template-columns: minmax(390px, 0.92fr) minmax(0, 1.08fr);
    min-height: 690px;
    border: 1px solid rgba(176, 215, 249, 0.9);
    border-radius: 30px;
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0 24px 64px rgba(24, 119, 210, 0.15);
}

.ar-test-aligned .ar-product-stage {
    padding: 30px 30px 24px;
    border-right-color: rgba(176, 215, 249, 0.78);
    background:
        radial-gradient(circle at 62% 44%, rgba(255, 255, 255, 0.92), transparent 34%),
        linear-gradient(145deg, #eefaff 0%, #cceaff 62%, #b0ddff 100%);
}

.ar-test-aligned .ar-product-stage::before {
    opacity: 0.9;
    background:
        radial-gradient(circle at 54% 47%, transparent 0 104px, rgba(10, 111, 235, 0.14) 105px 106px, transparent 107px 164px, rgba(10, 111, 235, 0.1) 165px 166px, transparent 167px 230px, rgba(10, 111, 235, 0.07) 231px 232px, transparent 233px),
        linear-gradient(rgba(10, 111, 235, 0.045) 1px, transparent 1px),
        linear-gradient(90deg, rgba(10, 111, 235, 0.045) 1px, transparent 1px);
    background-size: auto, 42px 42px, 42px 42px;
}

.ar-test-aligned .ar-stage-topline span {
    padding: 9px 13px;
    color: #fff;
    background: #07142f;
}

.ar-test-aligned .ar-stage-topline strong {
    color: #075fe8;
}

.ar-test-aligned .ar-stage-image img,
.ar-test-aligned .ar-stage-image .ar-image-fallback {
    filter: drop-shadow(0 25px 28px rgba(12, 61, 119, 0.2));
}

.ar-test-aligned .ar-gallery-thumb {
    border-color: rgba(164, 205, 245, 0.92);
    background: rgba(255, 255, 255, 0.94);
    box-shadow: 0 7px 18px rgba(16, 98, 255, 0.08);
}

.ar-test-aligned .ar-gallery-thumb.is-active {
    border-color: #0b6ef3;
    box-shadow: 0 0 0 2px rgba(11, 110, 243, 0.15), 0 9px 22px rgba(16, 98, 255, 0.12);
}

.ar-test-aligned .ar-product-decision {
    padding: 44px 46px 40px;
}

.ar-test-aligned .ar-decision-eyebrow > span {
    color: #68778d;
    font-weight: 780;
}

.ar-test-aligned .ar-test-hero h1 {
    margin-top: 14px;
    color: #07142f;
    font-family: var(--ar-sans);
    font-size: clamp(42px, 5vw, 66px);
    font-weight: 920;
    letter-spacing: -0.065em;
    line-height: 0.97;
}

.ar-test-aligned .ar-product-headline {
    color: #4d5e76;
    font-size: clamp(17px, 1.55vw, 20px);
    line-height: 1.58;
}

.ar-test-aligned .ar-decision-metrics {
    gap: 1px;
    border-color: #d5e5f8;
    border-radius: 17px;
    background: #d5e5f8;
}

.ar-test-aligned .ar-decision-metrics > div {
    border-right: 0;
    background: #f7fbff;
}

.ar-test-aligned .ar-decision-metrics > div:first-child strong {
    color: #08764f;
    font-family: var(--ar-sans);
    font-size: 26px;
    font-weight: 920;
    letter-spacing: -0.05em;
}

.ar-test-aligned .ar-decision-verdict {
    border-left-color: #0b68ec;
    border-radius: 0 15px 15px 0;
    background: #e9f2ff;
}

.ar-test-aligned .ar-decision-verdict p {
    color: #20314a;
    font-size: 15px;
    font-weight: 790;
}

.ar-test-aligned .ar-hero-specs {
    border-color: #d5e5f8;
}

.ar-test-aligned .ar-hero-specs > div + div {
    border-left-color: #d5e5f8;
}

.ar-test-aligned .ar-product-decision .ar-fit-grid > div {
    border-color: #d5e5f8;
    border-radius: 15px;
    background: #fbfdff;
}

.ar-test-aligned .ar-product-decision .ar-fit-grid > div.is-caution {
    border-color: #e8c66d;
    background: #fff5d8;
}

.ar-test-aligned .ar-product-decision .ar-fit-grid strong {
    color: #23344e;
    font-size: 13px;
}

.ar-test-aligned .ar-hero-offer {
    padding-top: 2px;
}

.ar-test-aligned .ar-hero-offer span {
    color: #68778d;
}

.ar-test-aligned .ar-product-decision .ar-meta {
    color: #68778d;
}

/* Le bloc produit promu du plugin Comparatifs remplace le hero natif. */
.ar-test-aligned .ar-test-promoted-analysis > .arc-spotlight {
    overflow: hidden;
    border: 1px solid rgba(176, 215, 249, 0.9);
    border-radius: 30px;
    background: rgba(255, 255, 255, 0.97);
    box-shadow: 0 24px 64px rgba(24, 119, 210, 0.15);
}

.ar-test-aligned .ar-test-promoted-analysis .arc-spotlight-media {
    padding: 26px;
    border-right: 1px solid rgba(176, 215, 249, 0.78);
    background:
        radial-gradient(circle at 62% 44%, rgba(255, 255, 255, 0.9), transparent 35%),
        linear-gradient(145deg, #eefaff 0%, #cceaff 62%, #b0ddff 100%);
}

.ar-test-aligned .ar-test-promoted-analysis .arc-spotlight-image {
    border: 1px solid rgba(255, 255, 255, 0.9);
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.94);
    box-shadow: 0 18px 46px rgba(12, 61, 119, 0.11);
}

.ar-test-aligned .ar-test-promoted-analysis .arc-spotlight-image img {
    object-fit: contain !important;
    filter: drop-shadow(0 22px 24px rgba(12, 61, 119, 0.16));
}

.ar-test-aligned .ar-test-promoted-analysis .arc-gallery-thumb {
    border-color: rgba(164, 205, 245, 0.92);
    border-radius: 13px;
    box-shadow: 0 7px 18px rgba(16, 98, 255, 0.08);
}

.ar-test-aligned .ar-test-promoted-analysis .arc-spotlight-body {
    justify-content: center;
    padding: clamp(32px, 4.5vw, 50px);
}

.ar-test-aligned .ar-test-promoted-analysis .arc-kicker {
    color: #116cef !important;
    font-size: 11px;
    font-weight: 900;
    letter-spacing: 0.12em;
}

.ar-test-aligned .ar-test-promoted-analysis .arc-spotlight-body h1,
.ar-test-aligned .ar-test-promoted-analysis .arc-spotlight-body h2 {
    color: #07142f !important;
    font-family: var(--ar-sans) !important;
    font-size: clamp(42px, 5vw, 66px) !important;
    font-weight: 920 !important;
    letter-spacing: -0.065em !important;
    line-height: 0.97 !important;
}

.ar-test-aligned .ar-test-promoted-analysis .arc-spotlight-subtitle {
    color: #4d5e76;
    font-size: clamp(17px, 1.55vw, 20px);
    line-height: 1.58;
}

.ar-test-aligned .ar-test-promoted-analysis .arc-key-numbers {
    gap: 1px;
    border-color: #d5e5f8;
    border-radius: 17px;
    background: #d5e5f8;
}

.ar-test-aligned .ar-test-promoted-analysis .arc-key-numbers > div {
    background: #f7fbff;
}

.ar-test-aligned .ar-test-promoted-analysis .arc-score,
.ar-test-aligned .ar-test-promoted-analysis .arc-user-rating strong {
    font-family: var(--ar-sans) !important;
    font-weight: 920;
    letter-spacing: -0.05em;
}

.ar-test-aligned .ar-test-promoted-analysis .arc-editorial-verdict {
    border-left-color: #0b68ec;
    border-radius: 0 15px 15px 0;
    color: #20314a;
    background: #e9f2ff;
    font-weight: 780;
}

.ar-test-aligned .ar-test-promoted-analysis .arc-spotlight-quicklists > div,
.ar-test-aligned .ar-test-promoted-analysis .arc-fit-grid > div {
    border-color: #d5e5f8;
    border-radius: 15px;
    background: #fbfdff;
}

.ar-test-aligned .ar-test-promoted-analysis .arc-fit-grid > div:last-child {
    border-color: #e8c66d;
    background: #fff5d8;
}

.ar-test-aligned .ar-test-promoted-analysis .arc-btn {
    min-height: 48px;
    padding: 12px 22px;
    border: 0;
    border-radius: 15px;
    color: #fff !important;
    background: linear-gradient(135deg, #0b5cff, #0d7dff 55%, #16b9ff);
    box-shadow: 0 14px 28px rgba(16, 98, 255, 0.22);
}

.ar-test-aligned .ar-test-promoted-analysis .arc-btn::after {
    margin-left: 10px;
    content: "›";
    font-size: 22px;
    line-height: 0;
}

/* Avis utilisateurs promus. */
.ar-test-aligned .ar-test-promoted-consensus {
    margin-top: 18px;
}

.ar-test-aligned .ar-test-promoted-consensus > .arc-user-consensus {
    margin-bottom: 0;
    padding: clamp(26px, 4vw, 42px);
    border: 1px solid rgba(204, 224, 248, 0.94);
    border-radius: 28px;
    background: rgba(255, 255, 255, 0.94);
    box-shadow: 0 18px 52px rgba(22, 96, 168, 0.08);
}

.ar-test-aligned .ar-test-promoted-consensus .arc-block-head h2,
.ar-test-aligned .ar-test-promoted-consensus .arc-consensus-grid h3 {
    color: #07142f !important;
    font-family: var(--ar-sans) !important;
    font-weight: 900 !important;
    letter-spacing: -0.05em !important;
}

.ar-test-aligned .ar-test-promoted-consensus .arc-block-head h2 {
    font-size: clamp(30px, 4vw, 48px) !important;
}

.ar-test-aligned .ar-test-promoted-consensus .arc-user-rating {
    border-color: #d5e5f8;
    border-radius: 16px;
    background: #f7fbff;
}

.ar-test-aligned .ar-test-promoted-consensus .arc-user-rating strong {
    color: #0b65e8;
    font-family: var(--ar-sans);
    font-weight: 920;
    letter-spacing: -0.05em;
}

.ar-test-aligned .ar-test-promoted-consensus .arc-consensus-grid > div {
    border-color: #d7e6f8;
    border-radius: 18px;
    background: #fff;
    box-shadow: 0 10px 28px rgba(16, 98, 255, 0.05);
}

/* Corps éditorial et shortcodes longs. */
.ar-test-aligned .ar-test-content {
    grid-template-columns: minmax(0, 770px) minmax(250px, 310px);
    gap: 18px;
    padding: 0;
    margin-top: 18px;
}

.ar-test-aligned .ar-test-content:has(.arc-top3, .arc-compare, .arc-vs, .arc-spotlight) {
    grid-template-columns: minmax(0, 1fr);
    max-width: none;
}

.ar-test-aligned .ar-article-content,
.ar-test-aligned .ar-side-box {
    border: 1px solid rgba(204, 224, 248, 0.94);
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 18px 52px rgba(22, 96, 168, 0.07);
}

.ar-test-aligned .ar-article-content {
    padding: clamp(28px, 4vw, 48px);
    border-radius: 28px;
}

.ar-test-aligned .ar-prose {
    color: #324258;
    font-size: 17px;
}

.ar-test-aligned .ar-prose h2,
.ar-test-aligned .ar-prose h3,
.ar-test-aligned .ar-prose h4,
.ar-test-aligned .ar-side-box h2,
.ar-test-aligned .arc-block h2,
.ar-test-aligned .arc-block h3,
.ar-test-aligned .arc-selection-note strong,
.ar-test-aligned .arc-disclosure strong {
    color: #07142f !important;
    font-family: var(--ar-sans) !important;
    font-weight: 900 !important;
    letter-spacing: -0.05em !important;
}

.ar-test-aligned .ar-prose h2 {
    font-size: clamp(32px, 3.8vw, 45px);
}

.ar-test-aligned .ar-prose h3 {
    font-size: 28px;
}

.ar-test-aligned .ar-prose img {
    border-radius: 20px;
    box-shadow: 0 14px 36px rgba(16, 98, 255, 0.08);
}

.ar-test-aligned .ar-prose blockquote,
.ar-test-aligned .arc-editorial-verdict,
.ar-test-aligned .arc-selection-note {
    border-left-color: #0b68ec;
    border-radius: 0 16px 16px 0;
    background: #eaf2ff;
}

.ar-test-aligned .ar-prose th {
    color: #10213d;
    background: #edf7ff;
}

.ar-test-aligned .ar-article-side {
    top: 108px;
    gap: 12px;
}

.ar-test-aligned .ar-side-box {
    padding: 22px;
    border-radius: 20px;
}

.ar-test-aligned .ar-side-box h2 {
    font-size: 21px;
}

.ar-test-aligned .ar-side-box a:not(.ar-button) {
    color: #1062ff;
    font-weight: 850;
}

.ar-test-aligned .ar-offer-box .ar-button {
    width: 100%;
}

.ar-test-aligned .arc-block,
.ar-test-aligned .arc-product-review,
.ar-test-aligned .arc-selection-note,
.ar-test-aligned .arc-takeaway,
.ar-test-aligned .arc-disclosure {
    border-radius: 20px;
}

.ar-test-aligned .arc-btn {
    border-radius: 13px;
}

/* Comparaison automatique et sélections voisines. */
.ar-test-aligned .ar-similar-section,
.ar-test-aligned .ar-product-shelf {
    margin-top: 18px;
    padding: clamp(26px, 4vw, 42px);
    border: 1px solid rgba(204, 224, 248, 0.94);
    border-radius: 28px;
    background: rgba(255, 255, 255, 0.94);
    box-shadow: 0 18px 52px rgba(22, 96, 168, 0.08);
}

.ar-test-aligned .ar-similar-section .ar-section-head,
.ar-test-aligned .ar-product-shelf .ar-section-head {
    margin-bottom: 24px;
}

.ar-test-aligned .ar-similar-section .ar-section-head h2,
.ar-test-aligned .ar-product-shelf .ar-section-head h2 {
    max-width: 840px;
    color: #07142f;
    font-family: var(--ar-sans);
    font-size: clamp(29px, 3.4vw, 44px);
    font-weight: 920;
    letter-spacing: -0.058em;
    line-height: 1.03;
}

.ar-test-aligned .ar-similar-section .ar-section-head > div > p:last-child:not(.ar-kicker),
.ar-test-aligned .ar-product-shelf .ar-section-head > div > p:last-child:not(.ar-kicker) {
    max-width: 720px;
    color: #61718a;
}

.ar-test-aligned .ar-similar-context {
    margin-top: -10px;
    color: #68778d;
}

.ar-test-aligned .ar-similar-scroll {
    border-color: #d5e5f8;
    border-radius: 20px;
    box-shadow: 0 12px 34px rgba(16, 98, 255, 0.07);
}

.ar-test-aligned .ar-similar-table thead th,
.ar-test-aligned .ar-similar-table .ar-similar-criterion,
.ar-test-aligned .ar-similar-table tbody th {
    background: #f4f9ff;
}

.ar-test-aligned .ar-similar-table .is-current {
    background: #e8f2ff;
    box-shadow: inset 3px 0 0 #0b6ef3;
}

.ar-test-aligned .ar-similar-product > strong,
.ar-test-aligned .ar-shelf-card h3 {
    color: #0a1730;
    font-family: var(--ar-sans);
    font-weight: 900;
    letter-spacing: -0.045em;
}

.ar-test-aligned .ar-similar-relation.is-current {
    border-color: #0b6ef3;
    background: #0b6ef3;
}

.ar-test-aligned .ar-shelf-grid {
    gap: 14px;
}

.ar-test-aligned .ar-shelf-card {
    border-color: #d7e6f8;
    border-radius: 20px;
    box-shadow: 0 12px 34px rgba(16, 98, 255, 0.07);
    transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.ar-test-aligned .ar-shelf-card:hover {
    border-color: #9bc8ff;
    box-shadow: 0 18px 42px rgba(16, 98, 255, 0.13);
    transform: translateY(-3px);
}

.ar-test-aligned .ar-shelf-image {
    background: #f0f8ff;
}

.ar-test-aligned .ar-shelf-image img {
    padding: 8px;
    object-fit: contain;
    background: #fff;
}

.ar-test-aligned .ar-shelf-card h3 {
    font-size: 24px;
}

.ar-test-aligned .ar-shelf-actions .ar-button {
    min-height: 42px;
    padding: 10px 15px;
    border-radius: 12px;
    font-size: 12px;
}

.ar-test-final-cta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 220px;
    gap: 38px;
    margin: 18px 0 56px;
    padding: clamp(30px, 5vw, 54px);
    overflow: hidden;
    border: 1px solid rgba(144, 208, 255, 0.72);
    border-radius: 28px;
    color: #fff;
    background:
        radial-gradient(circle at 88% 26%, rgba(80, 221, 255, 0.38), transparent 34%),
        linear-gradient(120deg, #0753dc 0%, #0b78f3 60%, #15aef1 100%);
    box-shadow: 0 22px 56px rgba(16, 98, 255, 0.18);
}

.ar-test-final-cta .ar-kicker {
    color: #a8f2ff;
}

.ar-test-final-cta h2 {
    max-width: 760px;
    margin: 0;
    color: #fff;
    font-family: var(--ar-sans);
    font-size: clamp(30px, 3.6vw, 47px);
    font-weight: 920;
    letter-spacing: -0.06em;
    line-height: 1.02;
}

.ar-test-final-cta p:not(.ar-kicker) {
    max-width: 680px;
    margin: 13px 0 0;
    color: rgba(255, 255, 255, 0.82);
}

.ar-test-final-cta .ar-button {
    flex: 0 0 auto;
    border: 1px solid rgba(255, 255, 255, 0.76);
    background: rgba(255, 255, 255, 0.12);
    box-shadow: none;
}

@media (max-width: 1024px) {
    .ar-test-aligned .ar-test-hero,
    .ar-test-aligned .ar-test-promoted-analysis > .arc-spotlight {
        grid-template-columns: 1fr;
    }

    .ar-test-aligned .ar-product-stage {
        min-height: 560px;
        border-right: 0;
        border-bottom: 1px solid rgba(176, 215, 249, 0.78);
    }

    .ar-test-aligned .ar-test-promoted-analysis .arc-spotlight-media {
        min-height: 520px;
        border-right: 0;
        border-bottom: 1px solid rgba(176, 215, 249, 0.78);
    }
}

@media (max-width: 820px) {
    .ar-test-aligned .ar-test-content {
        grid-template-columns: 1fr;
    }

    .ar-test-aligned .ar-article-side,
    .ar-test-aligned .ar-test-content:has(.arc-top3, .arc-compare, .arc-vs, .arc-spotlight) .ar-article-side {
        position: static;
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .ar-test-final-cta {
        align-items: flex-start;
        flex-direction: column;
    }
}

@media (max-width: 700px) {
    .ar-test-aligned .ar-test-breadcrumb {
        padding-top: 20px;
    }

    .ar-test-aligned .ar-test-hero,
    .ar-test-aligned .ar-test-promoted-analysis > .arc-spotlight {
        border-radius: 22px;
    }

    .ar-test-aligned .ar-product-stage,
    .ar-test-aligned .ar-test-promoted-analysis .arc-spotlight-media {
        min-height: 390px;
        padding: 20px;
    }

    .ar-test-aligned .ar-product-decision,
    .ar-test-aligned .ar-test-promoted-analysis .arc-spotlight-body {
        padding: 30px 20px 26px;
    }

    .ar-test-aligned .ar-test-hero h1,
    .ar-test-aligned .ar-test-promoted-analysis .arc-spotlight-body h1,
    .ar-test-aligned .ar-test-promoted-analysis .arc-spotlight-body h2 {
        font-size: clamp(38px, 11.5vw, 52px) !important;
    }

    .ar-test-aligned .ar-test-promoted-consensus > .arc-user-consensus,
    .ar-test-aligned .ar-article-content,
    .ar-test-aligned .ar-similar-section,
    .ar-test-aligned .ar-product-shelf {
        padding: 20px;
        border-radius: 22px;
    }

    .ar-test-aligned .ar-article-side,
    .ar-test-aligned .ar-test-content:has(.arc-top3, .arc-compare, .arc-vs, .arc-spotlight) .ar-article-side {
        grid-template-columns: 1fr;
    }

    .ar-test-final-cta {
        min-height: 280px;
        margin-bottom: 40px;
        padding: 30px 22px;
        border-radius: 22px;
    }

    .ar-test-final-cta .ar-button {
        width: 100%;
    }
}

@media (prefers-reduced-motion: reduce) {
    .ar-test-aligned .ar-shelf-card:hover,
    .ar-test-aligned .ar-button:hover,
    .ar-test-aligned .arc-btn:hover {
        transform: none;
    }
}

/* Fiches produit 0.7.9 — ordre technique, score, avis puis contenu */
.ar-test-aligned .ar-test-promoted-analysis > .arc-spotlight {
    grid-template-columns: minmax(360px, 0.9fr) minmax(0, 1.1fr);
    align-items: stretch;
}

.ar-test-aligned .ar-test-promoted-analysis .arc-spotlight-media {
    display: flex;
    min-height: 680px;
    align-items: center;
    justify-content: center;
}

.ar-test-aligned .ar-test-promoted-analysis .arc-spotlight-gallery {
    grid-template-rows: minmax(400px, 520px) auto;
    align-content: center;
    align-self: center;
    min-height: 0;
}

.ar-test-aligned .ar-test-promoted-analysis .arc-spotlight-gallery .arc-spotlight-image,
.ar-test-aligned .ar-test-promoted-analysis .arc-spotlight-media > .arc-spotlight-image {
    min-height: 400px;
    max-height: 540px;
    aspect-ratio: auto;
}

.ar-test-aligned .ar-test-promoted-analysis .arc-spotlight-image img,
.ar-test-aligned .ar-test-promoted-analysis .arc-spotlight-image .arc-image-placeholder {
    width: 100% !important;
    height: 100% !important;
    max-height: 500px;
    object-fit: contain !important;
    object-position: center !important;
}

.ar-test-aligned .ar-test-promoted-analysis .arc-key-numbers {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.ar-test-aligned .ar-test-promoted-analysis .arc-spotlight-quicklists,
.ar-test-aligned .ar-test-promoted-analysis .arc-fit-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.ar-test-evaluation {
    margin-top: 18px;
    padding: clamp(28px, 4vw, 42px);
    border: 1px solid rgba(204, 224, 248, 0.94);
    border-radius: 28px;
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 18px 52px rgba(22, 96, 168, 0.08);
}

.ar-test-evaluation > .ar-section-head {
    margin-bottom: 26px;
}

.ar-test-evaluation > .ar-section-head h2 {
    max-width: 780px;
    color: #07142f;
    font-family: var(--ar-sans);
    font-size: clamp(31px, 3.8vw, 47px);
    font-weight: 920;
    letter-spacing: -0.06em;
    line-height: 1.02;
}

.ar-test-evaluation > .ar-section-head > div > p:last-child:not(.ar-kicker) {
    max-width: 720px;
    color: #61718a;
}

.ar-test-evaluation-grid {
    display: grid;
    gap: 14px;
}

.ar-test-evaluation-grid.has-two-blocks {
    grid-template-columns: minmax(0, 0.96fr) minmax(0, 1.04fr);
}

.ar-test-evaluation-grid.has-one-block {
    grid-template-columns: minmax(0, 1fr);
}

.ar-test-evaluation-grid > div {
    min-width: 0;
}

.ar-test-evaluation .arc-spec-table,
.ar-test-evaluation .arc-scorecard {
    height: 100%;
    margin: 0 !important;
    padding: 24px;
    border: 1px solid #d7e6f8;
    border-radius: 20px;
    background: linear-gradient(145deg, #ffffff, #f6fbff);
    box-shadow: 0 12px 30px rgba(16, 98, 255, 0.06);
}

.ar-test-evaluation .arc-block-head {
    margin-bottom: 20px;
}

.ar-test-evaluation .arc-block-head h2 {
    color: #07142f !important;
    font-family: var(--ar-sans) !important;
    font-size: clamp(25px, 2.5vw, 34px) !important;
    font-weight: 900 !important;
    letter-spacing: -0.052em !important;
    line-height: 1.04 !important;
}

.ar-test-evaluation .arc-block-head > div > p:last-child:not(.arc-kicker) {
    color: #65758c;
    font-size: 13px;
}

.ar-test-evaluation .arc-spec-table dl {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1px;
    border-color: #d8e7f7;
    border-radius: 16px;
    background: #d8e7f7;
}

.ar-test-evaluation .arc-spec-table dl > div {
    display: flex;
    min-height: 92px;
    flex-direction: column;
    justify-content: center;
    gap: 7px;
    padding: 15px 16px;
    border: 0;
    background: #fff;
}

.ar-test-evaluation .arc-spec-table dt {
    color: #677891;
    font-size: 9px;
    font-weight: 900;
    letter-spacing: 0.1em;
}

.ar-test-evaluation .arc-spec-table dd {
    color: #172640;
    font-size: 14px;
    font-weight: 820;
    line-height: 1.38;
}

.ar-test-evaluation .arc-score-layout {
    grid-template-columns: minmax(145px, 0.58fr) minmax(0, 1.42fr);
    gap: 22px;
    align-items: stretch;
}

.ar-test-evaluation .arc-overall-score {
    min-height: 100%;
    border-color: #b9d8ff;
    border-radius: 17px;
    background:
        radial-gradient(circle at 50% 28%, rgba(255, 255, 255, 0.9), transparent 42%),
        linear-gradient(145deg, #eaf5ff, #d6eaff);
}

.ar-test-evaluation .arc-overall-score .arc-score {
    color: #08734f;
    font-family: var(--ar-sans) !important;
    font-size: 46px;
    font-weight: 920;
    letter-spacing: -0.07em;
}

.ar-test-evaluation .arc-score-list {
    align-content: center;
    gap: 15px;
}

.ar-test-evaluation .arc-score-row strong {
    color: #20314a;
    font-weight: 820;
}

.ar-test-evaluation .arc-score-row span {
    color: #4c607b;
    font-weight: 820;
}

.ar-test-evaluation .arc-score-row meter,
.ar-test-evaluation .arc-score-row meter::-webkit-meter-bar {
    height: 10px;
    background: #dbe8f5;
}

.ar-test-evaluation .arc-score-row meter::-webkit-meter-optimum-value {
    background: linear-gradient(90deg, #0b5cff, #17b7f2);
}

.ar-test-evaluation .arc-score-row meter::-moz-meter-bar {
    background: linear-gradient(90deg, #0b5cff, #17b7f2);
}

@media (max-width: 1024px) {
    .ar-test-aligned .ar-test-promoted-analysis > .arc-spotlight {
        grid-template-columns: 1fr;
    }

    .ar-test-aligned .ar-test-promoted-analysis .arc-spotlight-media {
        min-height: 520px;
    }

    .ar-test-aligned .ar-test-promoted-analysis .arc-spotlight-gallery {
        grid-template-rows: minmax(340px, 430px) auto;
    }

    .ar-test-evaluation-grid.has-two-blocks {
        grid-template-columns: 1fr;
    }

    .ar-test-evaluation .arc-spec-table dl {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (max-width: 700px) {
    .ar-test-aligned .ar-test-promoted-analysis .arc-spotlight-media {
        min-height: 390px;
    }

    .ar-test-aligned .ar-test-promoted-analysis .arc-spotlight-gallery {
        grid-template-rows: minmax(260px, 320px) auto;
    }

    .ar-test-aligned .ar-test-promoted-analysis .arc-spotlight-gallery .arc-spotlight-image,
    .ar-test-aligned .ar-test-promoted-analysis .arc-spotlight-media > .arc-spotlight-image {
        min-height: 260px;
    }

    .ar-test-aligned .ar-test-promoted-analysis .arc-key-numbers,
    .ar-test-aligned .ar-test-promoted-analysis .arc-spotlight-quicklists,
    .ar-test-aligned .ar-test-promoted-analysis .arc-fit-grid {
        grid-template-columns: 1fr;
    }

    .ar-test-evaluation {
        padding: 20px;
        border-radius: 22px;
    }

    .ar-test-evaluation .arc-spec-table,
    .ar-test-evaluation .arc-scorecard {
        padding: 19px;
        border-radius: 17px;
    }

    .ar-test-evaluation .arc-spec-table dl,
    .ar-test-evaluation .arc-score-layout {
        grid-template-columns: 1fr;
    }

    .ar-test-evaluation .arc-spec-table dl > div {
        min-height: 76px;
    }

    .ar-test-evaluation .arc-overall-score {
        min-height: 170px;
    }
}

/* Fiches produit 0.7.10 — hero décisionnel, offre technique et sommaire */
.ar-test-aligned .ar-test-hero {
    grid-template-columns: minmax(390px, 0.94fr) minmax(0, 1.06fr);
    min-height: 660px;
}

.ar-test-aligned .ar-product-stage {
    grid-template-rows: auto minmax(0, 1fr);
}

.ar-test-aligned .ar-stage-topline span {
    letter-spacing: 0.085em;
}

.ar-test-aligned .ar-product-gallery {
    grid-template-rows: minmax(0, 1fr) auto auto;
}

.ar-test-aligned .ar-stage-image {
    min-height: 440px;
    margin: 18px 0 10px;
    padding: 28px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.94);
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.9);
    box-shadow: 0 18px 46px rgba(12, 61, 119, 0.1);
}

.ar-test-aligned .ar-stage-image img,
.ar-test-aligned .ar-stage-image .ar-image-fallback {
    max-height: 470px;
    object-position: center;
}

.ar-test-aligned .ar-product-decision {
    padding: 42px 44px 38px;
}

.ar-test-aligned .ar-decision-eyebrow {
    padding-bottom: 13px;
    border-bottom: 1px solid #e1ecf8;
}

.ar-test-aligned .ar-decision-eyebrow > span {
    max-width: 210px;
    text-align: right;
}

.ar-test-aligned .ar-decision-metrics > div {
    display: flex;
    min-height: 86px;
    flex-direction: column;
    justify-content: center;
    padding: 15px 16px;
}

.ar-test-aligned .ar-decision-metrics strong {
    color: #172640;
    font-size: 14px;
    font-weight: 860;
}

.ar-test-aligned .ar-decision-metrics > div:first-child strong {
    font-size: 28px;
}

.ar-test-aligned .ar-decision-verdict {
    padding: 20px 22px;
}

.ar-test-aligned .ar-decision-verdict p {
    font-size: 16px;
    line-height: 1.58;
}

.ar-test-aligned .ar-hero-offer .ar-button {
    min-width: 178px;
}

.ar-test-evaluation-offer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 26px;
    margin-top: 14px;
    padding: 22px 24px;
    overflow: hidden;
    border: 1px solid #b9d9ff;
    border-radius: 19px;
    background:
        radial-gradient(circle at 86% 18%, rgba(61, 206, 255, 0.2), transparent 34%),
        linear-gradient(120deg, #eff8ff 0%, #e7f3ff 58%, #daf0ff 100%);
}

.ar-test-evaluation-offer > div {
    min-width: 0;
}

.ar-test-evaluation-offer small,
.ar-test-evaluation-offer strong,
.ar-test-evaluation-offer span {
    display: block;
}

.ar-test-evaluation-offer small {
    color: #1266dc;
    font-size: 9px;
    font-weight: 900;
    letter-spacing: 0.11em;
    text-transform: uppercase;
}

.ar-test-evaluation-offer strong {
    margin-top: 5px;
    color: #07142f;
    font-family: var(--ar-sans);
    font-size: clamp(18px, 2vw, 24px);
    font-weight: 900;
    letter-spacing: -0.045em;
    line-height: 1.12;
}

.ar-test-evaluation-offer span {
    margin-top: 6px;
    color: #5a6d86;
    font-size: 12px;
}

.ar-test-evaluation-offer .ar-button {
    min-width: 240px;
    flex: 0 0 auto;
}

.ar-test-kiviat {
    margin-top: 18px;
    padding: clamp(28px, 4vw, 42px);
    overflow: hidden;
    border: 1px solid rgba(190, 218, 250, 0.96);
    border-radius: 28px;
    background:
        radial-gradient(circle at 88% 12%, rgba(38, 201, 244, 0.12), transparent 28%),
        linear-gradient(145deg, #ffffff 0%, #f7fbff 100%);
    box-shadow: 0 18px 52px rgba(22, 96, 168, 0.08);
}

.ar-test-kiviat > .ar-section-head {
    margin-bottom: 22px;
}

.ar-test-kiviat > .ar-section-head h2 {
    max-width: 840px;
    color: #07142f;
    font-family: var(--ar-sans);
    font-size: clamp(31px, 3.8vw, 47px);
    font-weight: 920;
    letter-spacing: -0.06em;
    line-height: 1.02;
}

.ar-test-kiviat > .ar-section-head > div > p:last-child:not(.ar-kicker) {
    max-width: 720px;
    color: #61718a;
}

.ar-test-kiviat-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.16fr) minmax(270px, 0.84fr);
    align-items: stretch;
    gap: 16px;
}

.ar-kiviat-chart {
    display: flex;
    min-width: 0;
    min-height: 470px;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    margin: 0;
    padding: 16px 18px 13px;
    border: 1px solid #d5e6f8;
    border-radius: 21px;
    background:
        radial-gradient(circle at 50% 47%, rgba(18, 115, 239, 0.07), transparent 42%),
        rgba(255, 255, 255, 0.88);
}

.ar-kiviat-svg {
    display: block;
    width: 100%;
    max-width: 620px;
    height: auto;
    overflow: visible;
}

.ar-kiviat-visual {
    position: relative;
    width: 100%;
    max-width: 620px;
}

.ar-kiviat-grid polygon {
    fill: rgba(239, 247, 255, 0.34);
    stroke: #c9ddf4;
    stroke-width: 1.35;
}

.ar-kiviat-grid polygon:last-of-type {
    fill: rgba(232, 244, 255, 0.55);
    stroke: #aecdf0;
    stroke-width: 1.7;
}

.ar-kiviat-grid line {
    stroke: #d2e3f5;
    stroke-width: 1.25;
    transition: stroke 180ms ease, stroke-width 180ms ease;
}

.ar-kiviat-grid line.is-active {
    stroke: #0968e8;
    stroke-width: 2.8;
}

.ar-kiviat-shape {
    stroke: #0968e8;
    stroke-width: 4;
    stroke-linejoin: round;
}

.ar-kiviat-points circle {
    fill: #ffffff;
    stroke: #0968e8;
    stroke-width: 3;
}

.ar-kiviat-point {
    cursor: pointer;
    outline: none;
}

.ar-kiviat-point .ar-kiviat-dot {
    transform-box: fill-box;
    transform-origin: center;
    transition: fill 180ms ease, transform 180ms ease;
    vector-effect: non-scaling-stroke;
}

.ar-kiviat-point .ar-kiviat-focus-ring {
    fill: rgba(9, 104, 232, 0.13);
    stroke: #0758c8;
    stroke-width: 2;
    opacity: 0;
    pointer-events: none;
    transition: opacity 180ms ease;
    vector-effect: non-scaling-stroke;
}

.ar-kiviat-point .ar-kiviat-hit {
    fill: transparent;
    stroke: transparent;
    stroke-width: 0;
    pointer-events: all;
}

.ar-kiviat-point:hover .ar-kiviat-dot,
.ar-kiviat-point.is-active .ar-kiviat-dot {
    fill: #0968e8;
    transform: scale(1.55);
}

.ar-kiviat-point:focus-visible .ar-kiviat-focus-ring,
.ar-kiviat-point.is-active .ar-kiviat-focus-ring {
    opacity: 1;
}

.ar-kiviat-labels text {
    font-family: var(--ar-sans);
}

.ar-kiviat-label {
    fill: #263b57;
    font-size: 12px;
    font-weight: 820;
}

.ar-kiviat-label-score {
    fill: #0961da;
    font-size: 12px;
    font-weight: 900;
}

.ar-kiviat-chart figcaption {
    max-width: 480px;
    margin: 0 auto;
    color: #61718a;
    font-size: 12px;
    line-height: 1.45;
    text-align: center;
}

.ar-kiviat-tooltip {
    position: absolute;
    z-index: 3;
    display: flex;
    min-width: 142px;
    max-width: 220px;
    align-items: baseline;
    justify-content: space-between;
    gap: 12px;
    padding: 10px 12px;
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: 11px;
    color: #ffffff;
    background: #071a36;
    box-shadow: 0 12px 30px rgba(7, 26, 54, 0.2);
    font-family: var(--ar-sans);
    line-height: 1.25;
    pointer-events: none;
    transform: translate(-50%, calc(-100% - 16px));
}

.ar-kiviat-tooltip[hidden] {
    display: none;
}

.ar-kiviat-tooltip.is-below {
    transform: translate(-50%, 16px);
}

.ar-kiviat-tooltip.is-left {
    transform: translate(-92%, calc(-100% - 16px));
}

.ar-kiviat-tooltip.is-right {
    transform: translate(-8%, calc(-100% - 16px));
}

.ar-kiviat-tooltip.is-below.is-left {
    transform: translate(-92%, 16px);
}

.ar-kiviat-tooltip.is-below.is-right {
    transform: translate(-8%, 16px);
}

.ar-kiviat-tooltip > span {
    min-width: 0;
    font-size: 11px;
    font-weight: 760;
}

.ar-kiviat-tooltip strong {
    flex: 0 0 auto;
    color: #9edbff;
    font-size: 13px;
    font-weight: 900;
}

.ar-kiviat-reading {
    display: flex;
    min-width: 0;
    flex-direction: column;
    gap: 13px;
}

.ar-kiviat-overall {
    padding: 23px 24px;
    border: 1px solid #bedcff;
    border-radius: 19px;
    background:
        radial-gradient(circle at 88% 10%, rgba(255, 255, 255, 0.92), transparent 34%),
        linear-gradient(145deg, #e9f5ff, #dceeff);
}

.ar-kiviat-overall small,
.ar-kiviat-overall strong {
    display: block;
}

.ar-kiviat-overall small {
    color: #1260ca;
    font-size: 9px;
    font-weight: 900;
    letter-spacing: 0.11em;
    text-transform: uppercase;
}

.ar-kiviat-overall strong {
    margin-top: 5px;
    color: #08734f;
    font-size: clamp(39px, 4vw, 54px);
    font-weight: 920;
    letter-spacing: -0.075em;
    line-height: 1;
}

.ar-kiviat-overall strong span {
    color: #3f607d;
    font-size: 18px;
    letter-spacing: -0.03em;
}

.ar-kiviat-overall p {
    margin: 10px 0 0;
    color: #516781;
    font-size: 12px;
    line-height: 1.5;
}

.ar-kiviat-highlights {
    display: grid;
    gap: 10px;
    margin: 0;
}

.ar-kiviat-highlights > div {
    padding: 17px 18px;
    border: 1px solid #d5e6f8;
    border-radius: 17px;
    background: #ffffff;
}

.ar-kiviat-highlights > .is-strength {
    border-color: #bfe5d3;
    background: #f1fbf6;
}

.ar-kiviat-highlights > .is-watch {
    border-color: #f0dba8;
    background: #fff9ea;
}

.ar-kiviat-highlights dt {
    color: #687990;
    font-size: 9px;
    font-weight: 900;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.ar-kiviat-highlights dd {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 14px;
    margin: 6px 0 0;
    color: #172640;
}

.ar-kiviat-highlights dd span {
    min-width: 0;
    font-size: 14px;
    font-weight: 820;
    line-height: 1.35;
}

.ar-kiviat-highlights dd strong {
    flex: 0 0 auto;
    color: #0961da;
    font-size: 15px;
    font-weight: 900;
}

.ar-kiviat-values {
    display: none;
    margin: 0;
}

.ar-kiviat-note {
    margin: auto 0 0;
    padding: 15px 17px;
    border-left: 3px solid #20b6e9;
    border-radius: 0 13px 13px 0;
    color: #526984;
    background: #edf8ff;
    font-size: 11px;
    line-height: 1.55;
}

.ar-kiviat-insights {
    display: flex;
    min-height: 100%;
    flex-direction: column;
    padding: 24px;
    border: 1px solid #d5e6f8;
    border-radius: 21px;
    background: rgba(255, 255, 255, 0.94);
}

.ar-kiviat-insights-eyebrow {
    margin: 0;
    color: #1260ca;
    font-size: 9px;
    font-weight: 900;
    letter-spacing: 0.11em;
    text-transform: uppercase;
}

.ar-kiviat-insights h3 {
    margin: 6px 0 0;
    color: #07142f;
    font-family: var(--ar-sans);
    font-size: clamp(24px, 2.5vw, 31px);
    font-weight: 900;
    letter-spacing: -0.045em;
    line-height: 1.08;
}

.ar-kiviat-insights dl {
    display: grid;
    gap: 0;
    margin: 18px 0 0;
}

.ar-kiviat-insights dl > div {
    position: relative;
    padding: 15px 0 15px 15px;
    border-top: 1px solid #e0ebf7;
}

.ar-kiviat-insights dl > div::before {
    position: absolute;
    top: 19px;
    bottom: 18px;
    left: 0;
    width: 3px;
    border-radius: 99px;
    background: #0b6ef3;
    content: "";
}

.ar-kiviat-insights dl > .is-terrain::before {
    background: #07855c;
}

.ar-kiviat-insights dl > .is-compromise::before {
    background: #c77a08;
}

.ar-kiviat-insights dt {
    color: #536b86;
    font-size: 9px;
    font-weight: 900;
    letter-spacing: 0.09em;
    text-transform: uppercase;
}

.ar-kiviat-insights dd {
    margin: 5px 0 0;
    color: #172640;
    font-size: 13px;
    font-weight: 700;
    line-height: 1.48;
}

.ar-kiviat-method-link {
    display: inline-flex;
    min-height: 44px;
    align-items: center;
    align-self: flex-start;
    gap: 7px;
    margin-top: auto;
    padding-top: 14px;
    color: #075dd7;
    font-size: 12px;
    font-weight: 850;
    text-decoration: none;
}

.ar-kiviat-method-link span {
    transition: transform 180ms ease;
}

.ar-kiviat-method-link:hover span {
    transform: translateX(3px);
}

.ar-kiviat-method-link:focus-visible {
    border-radius: 7px;
    outline: 3px solid rgba(11, 110, 243, 0.24);
    outline-offset: 3px;
}

.ar-test-aligned .ar-test-toc[hidden] {
    display: none;
}

.ar-test-aligned .ar-test-toc {
    padding: 21px 18px 18px;
    border-color: #c8def8;
    background: linear-gradient(145deg, #ffffff, #f3f9ff);
}

.ar-test-aligned .ar-side-eyebrow {
    margin: 0 0 6px;
    color: #1062e6;
    font-size: 9px;
    font-weight: 900;
    letter-spacing: 0.11em;
    text-transform: uppercase;
}

.ar-test-aligned .ar-test-toc ol {
    display: grid;
    gap: 3px;
    margin: 17px 0 0;
    padding: 0;
    list-style: none;
}

.ar-test-aligned .ar-test-toc li {
    margin: 0;
}

.ar-test-aligned .ar-test-toc li.is-subsection {
    padding-left: 13px;
}

.ar-test-aligned .ar-test-toc a {
    display: block;
    padding: 8px 10px;
    border-left: 2px solid #d8e7f8;
    border-radius: 0 9px 9px 0;
    color: #52647c;
    font-size: 12px;
    font-weight: 760;
    line-height: 1.35;
    transition: color 160ms ease, border-color 160ms ease, background-color 160ms ease;
}

.ar-test-aligned .ar-test-toc li.is-subsection a {
    color: #718097;
    font-size: 11px;
    font-weight: 700;
}

.ar-test-aligned .ar-test-toc a:hover,
.ar-test-aligned .ar-test-toc a.is-active {
    border-left-color: #0b6ef3;
    color: #075dd7;
    background: #e9f3ff;
}

.ar-test-aligned .ar-article-content h2,
.ar-test-aligned .ar-article-content h3 {
    scroll-margin-top: 118px;
}

@media (max-width: 1024px) {
    .ar-test-aligned .ar-test-hero {
        grid-template-columns: 1fr;
    }

    .ar-test-aligned .ar-product-stage {
        min-height: 560px;
    }

    .ar-test-aligned .ar-stage-image {
        min-height: 420px;
    }
}

@media (max-width: 820px) {
    .ar-test-evaluation-offer {
        align-items: flex-start;
        flex-direction: column;
    }

    .ar-test-kiviat-layout {
        grid-template-columns: 1fr;
    }

    .ar-kiviat-reading {
        display: block;
    }

    .ar-kiviat-overall {
        grid-row: span 2;
    }

    .ar-kiviat-note {
        grid-column: 1 / -1;
    }

    .ar-test-aligned .ar-test-toc {
        grid-column: 1 / -1;
    }

    .ar-test-aligned .ar-test-toc ol {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 700px) {
    .ar-test-aligned .ar-product-stage {
        min-height: 390px;
    }

    .ar-test-aligned .ar-stage-image {
        min-height: 280px;
        margin-top: 14px;
        padding: 18px;
        border-radius: 18px;
    }

    .ar-test-aligned .ar-product-decision {
        padding: 30px 20px 26px;
    }

    .ar-test-aligned .ar-decision-eyebrow {
        align-items: flex-start;
    }

    .ar-test-aligned .ar-decision-eyebrow > span {
        max-width: 130px;
    }

    .ar-test-evaluation-offer {
        padding: 20px;
        border-radius: 17px;
    }

    .ar-test-evaluation-offer .ar-button {
        width: 100%;
        min-width: 0;
    }

    .ar-test-kiviat {
        padding: 20px;
        border-radius: 22px;
    }

    .ar-kiviat-chart {
        min-height: 0;
        padding: 10px 5px 14px;
        border-radius: 17px;
    }

    .ar-kiviat-svg {
        width: 126%;
        max-width: none;
        margin: -14px -13% -8px;
    }

    .ar-kiviat-labels {
        display: none;
    }

    .ar-kiviat-reading {
        display: flex;
    }

    .ar-kiviat-insights {
        min-height: 0;
        padding: 20px;
        border-radius: 17px;
    }

    .ar-kiviat-insights h3 {
        font-size: 25px;
    }

    .ar-kiviat-method-link {
        margin-top: 2px;
    }

    .ar-kiviat-values {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 1px;
        overflow: hidden;
        border: 1px solid #d5e6f8;
        border-radius: 15px;
        background: #d5e6f8;
    }

    .ar-kiviat-values > div {
        min-width: 0;
        padding: 12px;
        background: #ffffff;
    }

    .ar-kiviat-values dt {
        color: #61718a;
        font-size: 10px;
        font-weight: 760;
        line-height: 1.35;
    }

    .ar-kiviat-values dd {
        margin: 4px 0 0;
        color: #0961da;
        font-size: 13px;
        font-weight: 900;
    }

    .ar-kiviat-note {
        margin-top: 0;
    }

    .ar-test-aligned .ar-test-toc ol {
        grid-template-columns: 1fr;
    }
}

@media (prefers-reduced-motion: reduce) {
    .ar-kiviat-grid line,
    .ar-kiviat-point .ar-kiviat-dot,
    .ar-kiviat-point .ar-kiviat-focus-ring,
    .ar-kiviat-method-link span {
        transition: none;
    }
}

/* Fiches produit 0.7.11 — parcours de décision et offre contextuelle */
.ar-test-path {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
    gap: 8px;
    margin-top: 18px;
    padding: 10px;
    border: 1px solid rgba(204, 224, 248, 0.94);
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.9);
    box-shadow: 0 14px 38px rgba(22, 96, 168, 0.07);
    backdrop-filter: blur(16px);
}

.ar-test-path a {
    display: grid;
    grid-template-columns: 38px minmax(0, 1fr);
    gap: 11px;
    align-items: center;
    min-height: 74px;
    padding: 11px 13px;
    border: 1px solid transparent;
    border-radius: 15px;
    background: #f7fbff;
    transition: border-color 160ms ease, background-color 160ms ease, transform 160ms ease;
}

.ar-test-path a:hover {
    border-color: #a9cefa;
    background: #edf6ff;
    transform: translateY(-2px);
}

.ar-test-path small {
    display: grid;
    width: 38px;
    height: 38px;
    place-items: center;
    border-radius: 12px;
    color: #fff;
    background: linear-gradient(135deg, #0b5cff, #17b7f2);
    box-shadow: 0 8px 18px rgba(16, 98, 255, 0.18);
    font-size: 10px;
    font-weight: 900;
}

.ar-test-path span,
.ar-test-path strong,
.ar-test-path em {
    display: block;
    min-width: 0;
}

.ar-test-path strong {
    color: #0d1b34;
    font-size: 13px;
    font-weight: 880;
    line-height: 1.2;
}

.ar-test-path em {
    margin-top: 4px;
    color: #687990;
    font-size: 10px;
    font-style: normal;
    line-height: 1.25;
}

#fiche-technique,
#avis-clients,
#analyse-detaillee,
#alternatives {
    scroll-margin-top: 104px;
}

.ar-test-alternatives {
    display: flow-root;
}

.ar-sticky-offer[hidden] {
    display: none !important;
}

.ar-sticky-offer {
    position: fixed;
    z-index: 48;
    right: 20px;
    bottom: 18px;
    left: 20px;
    display: grid;
    grid-template-columns: minmax(220px, 1.35fr) minmax(110px, 0.48fr) minmax(130px, 0.55fr) auto;
    width: min(960px, calc(100% - 40px));
    align-items: center;
    gap: 18px;
    margin-inline: auto;
    padding: 13px 14px 13px 20px;
    border: 1px solid rgba(164, 205, 245, 0.94);
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0 24px 70px rgba(7, 44, 92, 0.24);
    backdrop-filter: blur(20px);
    animation: ar-offer-enter 220ms ease both;
}

@keyframes ar-offer-enter {
    from { opacity: 0; transform: translateY(14px); }
    to { opacity: 1; transform: translateY(0); }
}

.ar-sticky-offer-product,
.ar-sticky-offer-proof,
.ar-sticky-offer-price {
    min-width: 0;
}

.ar-sticky-offer-product span,
.ar-sticky-offer-product strong,
.ar-sticky-offer-proof small,
.ar-sticky-offer-proof strong,
.ar-sticky-offer-price small,
.ar-sticky-offer-price strong {
    display: block;
}

.ar-sticky-offer-product span,
.ar-sticky-offer-proof small,
.ar-sticky-offer-price small {
    color: #687990;
    font-size: 9px;
    font-weight: 850;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.ar-sticky-offer-product strong {
    margin-top: 2px;
    overflow: hidden;
    color: #07142f;
    font-size: 17px;
    font-weight: 920;
    letter-spacing: -0.04em;
    line-height: 1.18;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.ar-sticky-offer-proof,
.ar-sticky-offer-price {
    padding-left: 16px;
    border-left: 1px solid #dbe8f6;
}

.ar-sticky-offer-proof strong,
.ar-sticky-offer-price strong {
    margin-top: 2px;
    color: #14243e;
    font-size: 14px;
    font-weight: 880;
}

.ar-sticky-offer-proof strong {
    color: #08734f;
}

.ar-sticky-offer .ar-button {
    min-height: 48px;
    white-space: nowrap;
}

@media (max-width: 820px) {
    .ar-test-path {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .ar-sticky-offer {
        grid-template-columns: minmax(0, 1fr) minmax(100px, 0.45fr) auto;
    }

    .ar-sticky-offer-proof {
        display: none;
    }
}

@media (max-width: 620px) {
    .ar-test-path {
        display: flex;
        padding: 9px;
        overflow-x: auto;
        overscroll-behavior-inline: contain;
        scrollbar-width: thin;
    }

    .ar-test-path a {
        min-width: 220px;
        flex: 0 0 220px;
    }

    .ar-sticky-offer {
        right: 0;
        bottom: 0;
        left: 0;
        grid-template-columns: minmax(0, 1fr) auto;
        width: 100%;
        gap: 10px;
        padding: 10px 12px;
        border-right: 0;
        border-bottom: 0;
        border-left: 0;
        border-radius: 18px 18px 0 0;
    }

    .ar-sticky-offer-price {
        display: none;
    }

    .ar-sticky-offer-product span {
        display: none;
    }

    .ar-sticky-offer-product strong {
        font-size: 14px;
    }

    .ar-sticky-offer .ar-button {
        min-height: 44px;
        padding: 10px 14px;
        font-size: 12px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .ar-test-path a:hover {
        transform: none;
    }

    .ar-sticky-offer {
        animation: none;
    }
}

/* Pages VS 0.7.12 — contenu élargi et sommaire H2/H3 à droite */
.ar-vs-editorial #ar-main.ar-shell {
    width: min(1460px, calc(100% - 40px));
}

.ar-vs-editorial .ar-article-hero {
    grid-template-columns: minmax(0, 1.15fr) minmax(360px, 0.65fr);
    gap: clamp(34px, 5vw, 70px);
    min-height: 470px;
    padding-block: 58px;
}

.ar-vs-editorial .ar-article-hero > div:first-child {
    max-width: 900px;
}

.ar-vs-editorial .ar-article-hero h1 {
    max-width: 950px;
    font-size: clamp(48px, 5.5vw, 78px);
}

.ar-vs-editorial .ar-article-cover {
    min-height: 370px;
}

.ar-vs-editorial .ar-article-layout,
.ar-vs-editorial .ar-article-layout:has(.arc-vs) {
    grid-template-columns: minmax(0, 1fr) minmax(250px, 286px);
    gap: 24px;
    max-width: none;
    margin-top: 22px;
}

.ar-vs-editorial .ar-article-content {
    min-width: 0;
    padding: clamp(26px, 3.4vw, 48px);
}

.ar-vs-editorial .ar-article-side,
.ar-vs-editorial .ar-article-layout:has(.arc-vs) .ar-article-side {
    position: sticky;
    top: 106px;
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
    align-self: start;
}

.admin-bar .ar-vs-editorial .ar-article-side,
.admin-bar .ar-vs-editorial .ar-article-layout:has(.arc-vs) .ar-article-side {
    top: 138px;
}

.ar-vs-editorial .ar-test-toc[hidden] {
    display: none;
}

.ar-vs-editorial .ar-vs-toc {
    padding: 21px 18px 18px;
    border-color: #c8def8;
    background: linear-gradient(145deg, #ffffff, #f3f9ff);
}

.ar-vs-editorial .ar-side-eyebrow {
    margin: 0 0 6px;
    color: #1062e6;
    font-size: 9px;
    font-weight: 900;
    letter-spacing: 0.11em;
    text-transform: uppercase;
}

.ar-vs-editorial .ar-vs-toc ol {
    display: grid;
    max-height: 58vh;
    gap: 3px;
    margin: 17px 0 0;
    padding: 0;
    overflow-y: auto;
    list-style: none;
    scrollbar-width: thin;
}

.ar-vs-editorial .ar-vs-toc li {
    margin: 0;
}

.ar-vs-editorial .ar-vs-toc li.is-subsection {
    padding-left: 13px;
}

.ar-vs-editorial .ar-vs-toc a {
    display: block;
    padding: 8px 10px;
    border-left: 2px solid #d8e7f8;
    border-radius: 0 9px 9px 0;
    color: #52647c;
    font-size: 12px;
    font-weight: 760;
    line-height: 1.35;
    transition: color 160ms ease, border-color 160ms ease, background-color 160ms ease;
}

.ar-vs-editorial .ar-vs-toc li.is-subsection a {
    color: #718097;
    font-size: 11px;
    font-weight: 700;
}

.ar-vs-editorial .ar-vs-toc a:hover,
.ar-vs-editorial .ar-vs-toc a.is-active {
    border-left-color: #0b6ef3;
    color: #075dd7;
    background: #e9f3ff;
}

.ar-vs-editorial .ar-article-content h2,
.ar-vs-editorial .ar-article-content h3 {
    scroll-margin-top: 118px;
}

@media (max-width: 1040px) {
    .ar-vs-editorial .ar-article-hero {
        grid-template-columns: 1fr;
    }

    .ar-vs-editorial .ar-article-hero > div:first-child {
        max-width: 880px;
    }

    .ar-vs-editorial .ar-article-cover {
        min-height: 340px;
    }
}

@media (max-width: 940px) {
    .ar-vs-editorial .ar-article-layout,
    .ar-vs-editorial .ar-article-layout:has(.arc-vs) {
        grid-template-columns: 1fr;
    }

    .ar-vs-editorial .ar-article-side,
    .ar-vs-editorial .ar-article-layout:has(.arc-vs) .ar-article-side {
        position: static;
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .ar-vs-editorial .ar-vs-toc {
        grid-column: 1 / -1;
    }

    .ar-vs-editorial .ar-vs-toc ol {
        max-height: none;
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 700px) {
    .ar-vs-editorial #ar-main.ar-shell {
        width: min(100% - 24px, 1460px);
    }

    .ar-vs-editorial .ar-article-hero {
        padding-top: 24px;
    }

    .ar-vs-editorial .ar-article-content {
        padding: 20px;
    }

    .ar-vs-editorial .ar-article-side,
    .ar-vs-editorial .ar-article-layout:has(.arc-vs) .ar-article-side,
    .ar-vs-editorial .ar-vs-toc ol {
        grid-template-columns: 1fr;
    }
}

/* Sommaire éditorial partagé et double offre VS 0.7.15 */
.ar-editorial-toc[hidden] {
    display: none !important;
}

.ar-editorial-toc {
    padding: 21px 18px 18px;
    border-color: #c8def8;
    background: linear-gradient(145deg, #ffffff, #f3f9ff);
}

.ar-editorial-toc .ar-side-eyebrow {
    margin: 0 0 6px;
    color: #1062e6;
    font-size: 9px;
    font-weight: 900;
    letter-spacing: 0.11em;
    text-transform: uppercase;
}

.ar-editorial-toc ol {
    display: grid;
    max-height: 58vh;
    gap: 3px;
    margin: 17px 0 0;
    padding: 0;
    overflow-y: auto;
    list-style: none;
    scrollbar-width: thin;
}

.ar-editorial-toc li {
    margin: 0;
}

.ar-editorial-toc li.is-subsection {
    padding-left: 13px;
}

.ar-editorial-toc a {
    display: block;
    padding: 8px 10px;
    border-left: 2px solid #d8e7f8;
    border-radius: 0 9px 9px 0;
    color: #52647c;
    font-size: 12px;
    font-weight: 760;
    line-height: 1.35;
    cursor: pointer;
    transition: color 160ms ease, border-color 160ms ease, background-color 160ms ease;
}

.ar-editorial-aligned .ar-editorial-toc a,
.ar-brands-aligned .ar-editorial-toc a {
    color: #52647c;
    font-weight: 760;
}

.ar-editorial-toc li.is-subsection a {
    color: #718097;
    font-size: 11px;
    font-weight: 700;
}

.ar-editorial-toc a:hover,
.ar-editorial-toc a.is-active,
.ar-editorial-aligned .ar-editorial-toc a:hover,
.ar-editorial-aligned .ar-editorial-toc a.is-active,
.ar-brands-aligned .ar-editorial-toc a:hover,
.ar-brands-aligned .ar-editorial-toc a.is-active {
    border-left-color: #0b6ef3;
    color: #075dd7;
    background: #e9f3ff;
}

.ar-editorial-toc a:focus-visible {
    outline: 3px solid rgba(11, 110, 243, 0.28);
    outline-offset: 2px;
}

.ar-article-content h2,
.ar-article-content h3,
.ar-brand-story h2,
.ar-brand-story h3 {
    scroll-margin-top: 118px;
}

.ar-sticky-stop-marker {
    display: block;
    width: 100%;
    height: 1px;
}

.ar-vs-sticky-offer {
    grid-template-columns: minmax(165px, 0.55fr) repeat(2, minmax(0, 1fr));
    width: min(1120px, calc(100% - 40px));
    gap: 9px;
    padding: 9px;
    border-color: rgba(159, 201, 244, 0.96);
    border-radius: 20px;
}

.ar-vs-sticky-intro {
    min-width: 0;
    padding: 5px 12px;
}

.ar-vs-sticky-intro small,
.ar-vs-sticky-intro strong {
    display: block;
}

.ar-vs-sticky-intro small {
    color: #1062e6;
    font-size: 9px;
    font-weight: 900;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.ar-vs-sticky-intro strong {
    margin-top: 4px;
    color: #0b1b35;
    font-size: 13px;
    font-weight: 880;
    line-height: 1.2;
}

.ar-vs-sticky-choice {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto auto;
    min-width: 0;
    min-height: 58px;
    align-items: center;
    gap: 11px;
    padding: 8px 9px 8px 13px;
    border: 1px solid #d4e5f7;
    border-radius: 14px;
    color: #0b1b35;
    background: #f8fbff;
    cursor: pointer;
    text-decoration: none;
    transition: border-color 180ms ease, background-color 180ms ease, box-shadow 180ms ease;
}

.ar-vs-sticky-choice:hover {
    border-color: #8fc2fa;
    color: #0b1b35;
    background: #eef7ff;
    box-shadow: 0 8px 22px rgba(16, 98, 255, 0.1);
}

.ar-vs-sticky-choice:focus-visible {
    outline: 3px solid rgba(11, 110, 243, 0.32);
    outline-offset: 2px;
}

.ar-vs-sticky-choice.is-winner {
    border-color: #9bc9fb;
    background: linear-gradient(135deg, #eff8ff, #e5f3ff);
}

.ar-vs-sticky-choice-copy,
.ar-vs-sticky-choice-copy small,
.ar-vs-sticky-choice-copy strong {
    display: block;
    min-width: 0;
}

.ar-vs-sticky-choice-copy small {
    overflow: hidden;
    color: #667990;
    font-size: 8px;
    font-weight: 880;
    letter-spacing: 0.08em;
    line-height: 1.2;
    text-overflow: ellipsis;
    text-transform: uppercase;
    white-space: nowrap;
}

.ar-vs-sticky-choice.is-winner .ar-vs-sticky-choice-copy small {
    color: #08734f;
}

.ar-vs-sticky-choice-copy strong {
    margin-top: 3px;
    overflow: hidden;
    font-size: 14px;
    font-weight: 920;
    letter-spacing: -0.035em;
    line-height: 1.16;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.ar-vs-sticky-choice-price {
    color: #14243e;
    font-size: 14px;
    font-weight: 900;
    white-space: nowrap;
}

.ar-vs-sticky-choice-action {
    display: inline-flex;
    min-width: 96px;
    min-height: 42px;
    align-items: center;
    justify-content: center;
    gap: 5px;
    padding: 8px 11px;
    border-radius: 11px;
    color: #fff;
    background: linear-gradient(135deg, #0b5cff, #16aef2);
    box-shadow: 0 8px 18px rgba(16, 98, 255, 0.18);
    font-size: 11px;
    font-weight: 900;
    white-space: nowrap;
}

@media (max-width: 980px) {
    .ar-vs-sticky-offer {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .ar-vs-sticky-intro {
        display: none;
    }
}

@media (max-width: 820px) {
    .ar-editorial-aligned .ar-editorial-toc,
    .ar-brands-aligned .ar-editorial-toc {
        grid-column: 1 / -1;
    }

    .ar-editorial-toc ol {
        max-height: none;
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 680px) {
    .ar-editorial-toc ol {
        grid-template-columns: 1fr;
    }

    .ar-vs-sticky-offer {
        right: 0;
        bottom: 0;
        left: 0;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        width: 100%;
        gap: 6px;
        padding: 8px;
        border-right: 0;
        border-bottom: 0;
        border-left: 0;
        border-radius: 17px 17px 0 0;
    }

    .ar-vs-sticky-choice {
        grid-template-columns: minmax(0, 1fr) 34px;
        grid-template-rows: auto auto;
        min-height: 64px;
        gap: 2px 5px;
        padding: 8px 8px 8px 10px;
        border-radius: 12px;
    }

    .ar-vs-sticky-choice-copy {
        grid-column: 1;
        grid-row: 1;
    }

    .ar-vs-sticky-choice-copy small {
        font-size: 7px;
    }

    .ar-vs-sticky-choice-copy strong {
        font-size: 12px;
    }

    .ar-vs-sticky-choice-price {
        grid-column: 1;
        grid-row: 2;
        font-size: 12px;
    }

    .ar-vs-sticky-choice-action {
        grid-column: 2;
        grid-row: 1 / span 2;
        min-width: 34px;
        min-height: 44px;
        padding: 0;
        border-radius: 10px;
        font-size: 0;
    }
}

@media (prefers-reduced-motion: reduce) {
    .ar-vs-sticky-choice {
        transition: none;
    }
}

.ar-news-pagination {
    margin-top: 32px;
}

.ar-news-pagination .page-numbers {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.ar-news-pagination a,
.ar-news-pagination span {
    display: inline-flex;
    min-width: 44px;
    min-height: 44px;
    align-items: center;
    justify-content: center;
    padding: 8px 14px;
    border: 1px solid var(--ar-line);
    border-radius: 12px;
    background: #fff;
    color: var(--ar-ink);
    font-weight: 750;
    text-decoration: none;
}

.ar-news-pagination a:hover,
.ar-news-pagination a:focus-visible,
.ar-news-pagination .current {
    border-color: var(--ar-blue);
    background: var(--ar-blue-soft);
    color: var(--ar-blue-dark);
}

/* Pages de confiance 0.7.19 — méthode, équipe et documents légaux */
.ar-trust-page {
    background:
        radial-gradient(circle at 11% 2%, rgba(69, 207, 255, 0.24), transparent 26%),
        radial-gradient(circle at 91% 1%, rgba(28, 101, 255, 0.12), transparent 24%),
        linear-gradient(180deg, #f7fcff 0%, #edf7ff 42%, #ffffff 100%);
}

.ar-methodology-hero,
.ar-trust-hero {
    display: grid;
    grid-template-columns: minmax(0, 1.08fr) minmax(360px, 0.92fr);
    align-items: center;
    gap: clamp(28px, 5vw, 68px);
    min-height: 620px;
    padding-block: clamp(42px, 7vw, 86px);
}

.ar-methodology-hero-copy,
.ar-trust-hero > div:first-child {
    max-width: 720px;
}

.ar-methodology-hero .ar-breadcrumb,
.ar-trust-hero .ar-breadcrumb {
    margin-bottom: 22px;
    color: #65758e;
    font-size: 11px;
    font-weight: 780;
}

.ar-methodology-hero h1,
.ar-trust-hero h1 {
    max-width: 780px;
    margin: 14px 0 0;
    color: #07142f;
    font-family: var(--ar-sans);
    font-size: clamp(44px, 5.4vw, 74px);
    font-weight: 930;
    letter-spacing: -0.068em;
    line-height: 0.96;
    text-wrap: balance;
}

.ar-methodology-hero .ar-lead,
.ar-trust-hero .ar-lead {
    max-width: 680px;
    margin-top: 22px;
    color: #40536d;
    font-size: clamp(17px, 1.5vw, 20px);
    line-height: 1.7;
}

.ar-methodology-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 26px;
}

.ar-methodology-actions .ar-button {
    min-width: 190px;
}

.ar-methodology-byline {
    display: flex;
    flex-wrap: wrap;
    gap: 28px;
    margin-top: 28px;
    padding-top: 22px;
    border-top: 1px solid rgba(149, 190, 231, 0.68);
}

.ar-methodology-byline div {
    display: grid;
    gap: 2px;
}

.ar-methodology-byline small,
.ar-trust-updated span {
    color: #718198;
    font-size: 10px;
    font-weight: 850;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.ar-methodology-byline strong,
.ar-trust-updated strong {
    color: #162842;
    font-size: 13px;
    font-weight: 820;
}

.ar-evidence-map {
    position: relative;
    padding: clamp(28px, 4vw, 42px);
    overflow: hidden;
    border: 1px solid rgba(107, 181, 255, 0.26);
    border-radius: 30px;
    color: #fff;
    background:
        radial-gradient(circle at 85% 8%, rgba(61, 213, 255, 0.24), transparent 31%),
        linear-gradient(145deg, #07162f 0%, #0a2d63 100%);
    box-shadow: 0 28px 70px rgba(7, 35, 78, 0.24);
}

.ar-evidence-map::after {
    position: absolute;
    right: -70px;
    bottom: -70px;
    width: 220px;
    height: 220px;
    border: 1px solid rgba(124, 220, 255, 0.22);
    border-radius: 50%;
    box-shadow: 0 0 0 42px rgba(124, 220, 255, 0.035), 0 0 0 84px rgba(124, 220, 255, 0.025);
    content: "";
}

.ar-evidence-map-label {
    margin: 0 0 22px;
    color: #8cddff;
    font-size: 11px;
    font-weight: 900;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.ar-evidence-map ol {
    position: relative;
    z-index: 1;
    display: grid;
    gap: 0;
    margin: 0;
    padding: 0;
    list-style: none;
}

.ar-evidence-map li {
    position: relative;
    display: grid;
    grid-template-columns: 44px minmax(0, 1fr);
    gap: 16px;
    min-height: 82px;
}

.ar-evidence-map li:not(:last-child)::before {
    position: absolute;
    top: 38px;
    bottom: -2px;
    left: 21px;
    width: 1px;
    background: linear-gradient(#45cdfa, rgba(69, 205, 250, 0.18));
    content: "";
}

.ar-evidence-map li > span {
    position: relative;
    z-index: 1;
    display: grid;
    width: 44px;
    height: 44px;
    place-items: center;
    border: 1px solid rgba(121, 219, 255, 0.52);
    border-radius: 50%;
    color: #b9eeff;
    background: #0a2854;
    font-size: 10px;
    font-weight: 900;
    letter-spacing: 0.05em;
}

.ar-evidence-map li div {
    display: grid;
    align-content: start;
    gap: 2px;
    padding-top: 2px;
}

.ar-evidence-map li strong {
    color: #fff;
    font-size: 16px;
    font-weight: 850;
}

.ar-evidence-map li small {
    max-width: 280px;
    color: #a9bdd8;
    font-size: 12px;
    line-height: 1.5;
}

.ar-evidence-map-foot {
    position: relative;
    z-index: 1;
    margin: 18px 0 0;
    padding-top: 18px;
    border-top: 1px solid rgba(143, 203, 255, 0.18);
    color: #c6d6ea;
    font-size: 12px;
}

.ar-methodology-layout,
.ar-trust-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 296px;
    align-items: start;
    gap: 22px;
    margin-bottom: 24px;
}

.ar-methodology-main,
.ar-trust-document {
    min-width: 0;
    overflow: hidden;
    border: 1px solid rgba(197, 220, 247, 0.9);
    border-radius: 28px;
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0 22px 62px rgba(17, 88, 158, 0.09);
}

.ar-methodology-main > section,
.ar-trust-document > section,
.ar-trust-document > .ar-prose {
    padding: clamp(30px, 5vw, 58px);
}

.ar-methodology-main > section + section,
.ar-trust-document > section + section {
    border-top: 1px solid #dce9f6;
}

.ar-methodology-main h2,
.ar-trust-document h2 {
    max-width: 850px;
    margin: 10px 0 16px;
    color: #07142f;
    font-family: var(--ar-sans);
    font-size: clamp(29px, 3.4vw, 44px);
    font-weight: 920;
    letter-spacing: -0.057em;
    line-height: 1.05;
    scroll-margin-top: 110px;
    text-wrap: balance;
}

.ar-methodology-main h3,
.ar-trust-document h3 {
    color: #0c1c36;
    font-family: var(--ar-sans);
    font-weight: 870;
    letter-spacing: -0.035em;
    line-height: 1.2;
}

.ar-methodology-main p,
.ar-methodology-main li,
.ar-trust-document p,
.ar-trust-document li {
    color: #4c5f78;
}

.ar-methodology-intro,
.ar-trust-lead {
    max-width: 850px;
    font-size: 18px;
    line-height: 1.75;
}

.ar-proof-type-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
    margin-top: 30px;
}

.ar-proof-type-grid article {
    min-width: 0;
    padding: 24px;
    border: 1px solid #d8e8f8;
    border-radius: 19px;
    background: linear-gradient(145deg, #fff, #f4faff);
}

.ar-proof-type-grid article:first-child {
    border-color: #9fd4ff;
    background: linear-gradient(145deg, #f8fdff, #e7f6ff);
}

.ar-proof-type-grid span,
.ar-methodology-criteria small {
    display: inline-flex;
    margin-bottom: 12px;
    color: #0b62cf;
    font-size: 9px;
    font-weight: 900;
    letter-spacing: 0.09em;
    text-transform: uppercase;
}

.ar-proof-type-grid h3 {
    margin: 0;
    font-size: 20px;
}

.ar-proof-type-grid p {
    margin: 12px 0 0;
    font-size: 14px;
    line-height: 1.65;
}

.ar-methodology-steps {
    display: grid;
    gap: 0;
    margin: 30px 0 0;
    padding: 0;
    list-style: none;
}

.ar-methodology-steps > li {
    display: grid;
    grid-template-columns: 58px minmax(0, 1fr);
    gap: 18px;
    padding: 23px 0;
    border-top: 1px solid #dce9f6;
}

.ar-methodology-steps > li:last-child {
    padding-bottom: 0;
}

.ar-methodology-steps > li > span {
    display: grid;
    width: 50px;
    height: 50px;
    place-items: center;
    border-radius: 15px;
    color: #fff;
    background: linear-gradient(135deg, #0b5cff, #18b7f5);
    box-shadow: 0 10px 22px rgba(16, 98, 255, 0.17);
    font-size: 15px;
    font-weight: 900;
}

.ar-methodology-steps h3 {
    margin: 0;
    font-size: 23px;
}

.ar-methodology-steps p {
    margin: 7px 0 0;
}

.ar-methodology-criteria {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    margin-top: 28px;
}

.ar-methodology-criteria article {
    padding: 22px;
    border: 1px solid #dce8f5;
    border-radius: 17px;
    background: #fbfdff;
}

.ar-methodology-criteria h3 {
    margin: 0;
    font-size: 19px;
}

.ar-methodology-criteria p {
    margin: 8px 0 0;
    font-size: 13px;
    line-height: 1.6;
}

.ar-scoring-panel {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(300px, 1.1fr);
    gap: 32px;
    color: #fff;
    background:
        radial-gradient(circle at 94% 8%, rgba(66, 211, 255, 0.22), transparent 29%),
        linear-gradient(145deg, #07172f, #0b336d);
}

.ar-scoring-panel h2,
.ar-scoring-panel p,
.ar-scoring-panel li {
    color: #fff;
}

.ar-scoring-panel .ar-kicker {
    color: #77d8ff;
}

.ar-scoring-panel p {
    color: #c2d3e8;
}

.ar-scoring-panel ul {
    display: grid;
    gap: 12px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.ar-scoring-panel li {
    position: relative;
    padding: 13px 14px 13px 42px;
    border: 1px solid rgba(129, 200, 255, 0.2);
    border-radius: 13px;
    background: rgba(255, 255, 255, 0.05);
    font-size: 13px;
}

.ar-scoring-panel li::before {
    position: absolute;
    top: 12px;
    left: 14px;
    display: grid;
    width: 20px;
    height: 20px;
    place-items: center;
    border-radius: 50%;
    color: #06204b;
    background: #78dcff;
    content: "✓";
    font-size: 10px;
    font-weight: 950;
}

.ar-source-ladder {
    display: grid;
    gap: 12px;
    margin-top: 28px;
}

.ar-source-ladder article {
    display: grid;
    grid-template-columns: 46px minmax(0, 1fr);
    gap: 17px;
    padding: 20px;
    border: 1px solid #dbe8f5;
    border-radius: 17px;
    background: #fbfdff;
}

.ar-source-ladder article > span {
    display: grid;
    width: 42px;
    height: 42px;
    place-items: center;
    border: 1px solid #afd6ff;
    border-radius: 50%;
    color: #0b62cf;
    background: #eef8ff;
    font-size: 13px;
    font-weight: 900;
}

.ar-source-ladder h3 {
    margin: 0;
    font-size: 20px;
}

.ar-source-ladder p {
    margin: 6px 0 0;
    font-size: 14px;
}

.ar-transparency-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0;
}

.ar-transparency-grid > div:first-child {
    padding-right: clamp(22px, 4vw, 48px);
    border-right: 1px solid #dce9f6;
}

.ar-transparency-grid > div:last-child {
    padding-left: clamp(22px, 4vw, 48px);
}

.ar-transparency-grid h2 {
    font-size: clamp(26px, 2.5vw, 35px);
}

.ar-independence-panel,
.ar-team-method-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 36px;
    background: #f4faff;
}

.ar-independence-panel > div,
.ar-team-method-link > div {
    max-width: 760px;
}

.ar-independence-panel .ar-button,
.ar-team-method-link .ar-button {
    flex: 0 0 auto;
}

.ar-author-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 24px;
}

.ar-author-list a {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    min-height: 46px;
    padding: 5px 13px 5px 6px;
    border: 1px solid #cfe2f6;
    border-radius: 999px;
    background: #fff;
    transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.ar-author-list a:hover {
    border-color: #79bfff;
    box-shadow: 0 9px 22px rgba(16, 98, 255, 0.11);
    transform: translateY(-2px);
}

.ar-author-list a > span {
    display: grid;
    width: 34px;
    height: 34px;
    place-items: center;
    border-radius: 50%;
    color: #fff;
    background: linear-gradient(135deg, #0b5cff, #16b9ff);
    font-size: 11px;
    font-weight: 900;
}

.ar-author-list a > strong {
    color: #17304f;
    font-size: 13px;
}

.ar-methodology-side,
.ar-trust-side {
    position: sticky;
    top: 98px;
    display: grid;
    gap: 14px;
}

.admin-bar .ar-methodology-side,
.admin-bar .ar-trust-side {
    top: 130px;
}

.ar-methodology-side .ar-side-box,
.ar-trust-side .ar-side-box,
.ar-methodology-commitment,
.ar-trust-help {
    padding: 22px;
    border: 1px solid #d3e3f4;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0 12px 32px rgba(22, 96, 168, 0.08);
}

.ar-methodology-commitment h2,
.ar-trust-help h2 {
    margin: 7px 0 10px;
    color: #0b1c37;
    font-family: var(--ar-sans);
    font-size: 21px;
    font-weight: 900;
    letter-spacing: -0.035em;
    line-height: 1.15;
}

.ar-methodology-commitment ul {
    display: grid;
    gap: 8px;
    margin: 14px 0 0;
    padding: 0;
    list-style: none;
}

.ar-methodology-commitment li {
    position: relative;
    padding-left: 20px;
    color: #42556e;
    font-size: 12px;
    font-weight: 750;
}

.ar-methodology-commitment li::before {
    position: absolute;
    top: 0.58em;
    left: 0;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #0b7cff;
    content: "";
}

.ar-methodology-final {
    margin-top: 0;
}

.ar-trust-hero {
    min-height: 500px;
}

.ar-trust-hero h1 {
    max-width: 740px;
}

.ar-trust-updated {
    display: inline-flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 9px 16px;
    margin-top: 22px;
    padding: 10px 14px;
    border: 1px solid #cce1f6;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.68);
}

.ar-trust-mark {
    position: relative;
    display: grid;
    min-height: 330px;
    place-items: center;
    overflow: hidden;
    border: 1px solid #b9dcfa;
    border-radius: 30px;
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.62), rgba(255, 255, 255, 0.1)),
        repeating-linear-gradient(90deg, transparent 0 42px, rgba(18, 109, 223, 0.07) 43px 44px),
        linear-gradient(145deg, #e9f8ff, #a9dcff);
    box-shadow: 0 24px 64px rgba(24, 119, 210, 0.14);
}

.ar-trust-mark::before,
.ar-trust-mark::after {
    position: absolute;
    border-radius: 50%;
    content: "";
}

.ar-trust-mark::before {
    width: 260px;
    height: 260px;
    border: 1px solid rgba(13, 101, 215, 0.2);
    box-shadow: 0 0 0 44px rgba(255, 255, 255, 0.22), 0 0 0 88px rgba(13, 101, 215, 0.05);
}

.ar-trust-mark::after {
    width: 142px;
    height: 142px;
    border: 22px solid rgba(255, 255, 255, 0.8);
    background: linear-gradient(145deg, #fff, #9fd7ff);
    box-shadow: 0 18px 38px rgba(16, 98, 255, 0.19);
}

.ar-trust-mark span {
    position: relative;
    z-index: 2;
    max-width: 170px;
    color: #0753b9;
    font-size: 13px;
    font-weight: 950;
    letter-spacing: 0.11em;
    text-align: center;
}

.ar-trust-mark i {
    position: absolute;
    z-index: 3;
    top: calc(50% + 58px);
    left: calc(50% + 48px);
    width: 34px;
    height: 34px;
    border: 8px solid #fff;
    border-radius: 50%;
    background: #0b69e6;
    box-shadow: 0 8px 16px rgba(11, 88, 190, 0.18);
}

.ar-trust-document > .ar-prose {
    font-size: 17px;
}

.ar-trust-document > .ar-prose h2:first-child {
    margin-top: 0;
}

.ar-trust-document section > p {
    max-width: 850px;
}

.ar-team-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 13px;
    margin-top: 30px;
}

.ar-team-card {
    display: grid;
    grid-template-columns: 64px minmax(0, 1fr);
    gap: 16px;
    min-width: 0;
    padding: 20px;
    border: 1px solid #d5e6f7;
    border-radius: 18px;
    background: linear-gradient(145deg, #fff, #f5fbff);
    scroll-margin-top: 110px;
}

.ar-team-card > span {
    display: grid;
    width: 58px;
    height: 58px;
    place-items: center;
    border-radius: 18px;
    color: #fff;
    background: linear-gradient(135deg, #0b5cff, #18b7f5);
    box-shadow: 0 10px 22px rgba(16, 98, 255, 0.15);
    font-size: 17px;
    font-weight: 950;
}

.ar-team-card small {
    color: #1962b9;
    font-size: 9px;
    font-weight: 900;
    letter-spacing: 0.07em;
    text-transform: uppercase;
}

.ar-team-card h3 {
    margin: 3px 0 5px;
    font-size: 23px;
}

.ar-team-card p {
    margin: 0;
    font-size: 13px;
    line-height: 1.55;
}

.ar-team-responsibilities {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 13px;
    margin-top: 26px;
}

.ar-team-responsibilities article {
    padding: 22px;
    border: 1px solid #d9e7f5;
    border-radius: 17px;
    background: #fbfdff;
}

.ar-team-responsibilities h3 {
    margin: 0;
    font-size: 19px;
}

.ar-team-responsibilities p {
    margin: 8px 0 0;
    font-size: 13px;
}

.ar-completion-note {
    margin: clamp(30px, 5vw, 58px);
    padding: 20px 22px;
    border: 1px solid #e8c15e;
    border-radius: 17px;
    background: #fff7dd;
}

.ar-completion-note strong {
    color: #654908;
    font-size: 15px;
}

.ar-completion-note p {
    margin: 5px 0 0;
    color: #715c26;
    font-size: 13px;
}

.ar-completion-note + section {
    border-top: 1px solid #dce9f6;
}

.ar-legal-field {
    margin-top: 18px;
    padding: 18px 20px;
    border: 1px dashed #9dbfe2;
    border-radius: 15px;
    background: #f7fbff;
}

.ar-legal-field small {
    color: #0b62cf;
    font-size: 9px;
    font-weight: 900;
    letter-spacing: 0.09em;
    text-transform: uppercase;
}

.ar-legal-field p {
    margin: 5px 0 0;
    font-size: 14px;
}

.ar-trust-help p {
    margin: 0 0 10px;
    color: #566981;
    font-size: 13px;
}

.ar-trust-help .ar-text-link {
    font-size: 13px;
}

@media (max-width: 1040px) {
    .ar-methodology-hero,
    .ar-trust-hero {
        grid-template-columns: minmax(0, 1fr) minmax(310px, 0.78fr);
        min-height: 0;
    }

    .ar-methodology-layout,
    .ar-trust-layout {
        grid-template-columns: minmax(0, 1fr) 258px;
    }

    .ar-proof-type-grid {
        grid-template-columns: 1fr;
    }

    .ar-proof-type-grid article {
        min-height: 0;
    }

    .ar-team-responsibilities {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 860px) {
    .ar-methodology-hero,
    .ar-trust-hero {
        grid-template-columns: 1fr;
        padding-block: 38px 28px;
    }

    .ar-methodology-hero h1,
    .ar-trust-hero h1 {
        font-size: clamp(40px, 9vw, 62px);
    }

    .ar-evidence-map,
    .ar-trust-mark {
        min-height: 0;
    }

    .ar-methodology-layout,
    .ar-trust-layout {
        grid-template-columns: 1fr;
    }

    .ar-methodology-side,
    .ar-trust-side,
    .admin-bar .ar-methodology-side,
    .admin-bar .ar-trust-side {
        position: static;
        grid-row: 1;
    }

    .ar-methodology-commitment,
    .ar-trust-help {
        display: none;
    }

    .ar-scoring-panel,
    .ar-transparency-grid {
        grid-template-columns: 1fr;
    }

    .ar-transparency-grid > div:first-child {
        padding: 0 0 28px;
        border-right: 0;
        border-bottom: 1px solid #dce9f6;
    }

    .ar-transparency-grid > div:last-child {
        padding: 28px 0 0;
    }

    .ar-independence-panel,
    .ar-team-method-link {
        align-items: flex-start;
        flex-direction: column;
    }

    .ar-team-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 580px) {
    .ar-methodology-hero h1,
    .ar-trust-hero h1 {
        font-size: clamp(37px, 12vw, 50px);
        letter-spacing: -0.06em;
    }

    .ar-methodology-actions,
    .ar-methodology-actions .ar-button,
    .ar-independence-panel .ar-button,
    .ar-team-method-link .ar-button {
        width: 100%;
    }

    .ar-methodology-byline {
        display: grid;
        gap: 14px;
    }

    .ar-evidence-map {
        padding: 24px 20px;
        border-radius: 22px;
    }

    .ar-evidence-map li {
        grid-template-columns: 40px minmax(0, 1fr);
        gap: 12px;
    }

    .ar-evidence-map li > span {
        width: 40px;
        height: 40px;
    }

    .ar-evidence-map li:not(:last-child)::before {
        top: 36px;
        left: 19px;
    }

    .ar-methodology-main,
    .ar-trust-document {
        border-radius: 22px;
    }

    .ar-methodology-main > section,
    .ar-trust-document > section,
    .ar-trust-document > .ar-prose {
        padding: 26px 20px;
    }

    .ar-methodology-main h2,
    .ar-trust-document h2 {
        font-size: 30px;
    }

    .ar-methodology-steps > li {
        grid-template-columns: 46px minmax(0, 1fr);
        gap: 13px;
    }

    .ar-methodology-steps > li > span {
        width: 42px;
        height: 42px;
        border-radius: 13px;
    }

    .ar-methodology-steps h3 {
        font-size: 20px;
    }

    .ar-methodology-criteria {
        grid-template-columns: 1fr;
    }

    .ar-source-ladder article {
        grid-template-columns: 38px minmax(0, 1fr);
        padding: 17px;
    }

    .ar-source-ladder article > span {
        width: 36px;
        height: 36px;
    }

    .ar-author-list {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .ar-author-list a {
        min-width: 0;
    }

    .ar-trust-mark {
        min-height: 240px;
        border-radius: 22px;
    }

    .ar-team-card {
        grid-template-columns: 48px minmax(0, 1fr);
        padding: 17px;
    }

    .ar-team-card > span {
        width: 46px;
        height: 46px;
        border-radius: 14px;
    }

    .ar-completion-note {
        margin: 24px 20px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .ar-author-list a:hover {
        transform: none;
    }
}

/* Meilleurs aspirateurs robots — hub et sélections par profil */
.ar-selection-page,
.ar-home-2026 {
    --ar-selection-navy: #07142f;
    --ar-selection-blue: #1062ff;
    --ar-selection-cyan: #24c8f4;
    --ar-selection-mint: #98f1ea;
    --ar-selection-line: #d7e6f8;
    --ar-selection-wash: #eef7ff;
}

.ar-selection-page {
    background: var(--ar-selection-wash);
}

.ar-nav-item {
    position: relative;
}

.ar-nav-has-submenu > a {
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.ar-nav-has-submenu > a svg {
    width: 14px;
    height: 14px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
    transition: transform 180ms ease;
}

.ar-nav-has-submenu::after {
    position: absolute;
    right: 0;
    bottom: -12px;
    left: 0;
    height: 14px;
    content: "";
}

.ar-nav-submenu {
    position: absolute;
    z-index: 50;
    top: calc(100% + 9px);
    left: 0;
    display: grid;
    width: min(610px, calc(100vw - 40px));
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 7px;
    padding: 12px;
    border: 1px solid #d8e7f7;
    border-radius: 18px;
    visibility: hidden;
    opacity: 0;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 26px 70px rgba(7, 20, 47, 0.18);
    transform: translateY(-6px);
    transition: opacity 180ms ease, transform 180ms ease, visibility 180ms ease;
    pointer-events: none;
}

.ar-nav-has-submenu:hover .ar-nav-submenu,
.ar-nav-has-submenu:focus-within .ar-nav-submenu {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.ar-nav-has-submenu:hover > a svg,
.ar-nav-has-submenu:focus-within > a svg {
    transform: rotate(180deg);
}

.ar-nav .ar-nav-submenu > a {
    display: grid;
    min-height: 66px;
    grid-template-columns: 38px minmax(0, 1fr);
    grid-template-rows: auto auto;
    align-items: center;
    gap: 1px 10px;
    padding: 9px;
    border: 1px solid transparent;
    border-radius: 12px;
    white-space: normal;
}

.ar-nav .ar-nav-submenu > a:hover,
.ar-nav .ar-nav-submenu > a:focus-visible {
    border-color: #cfe1f5;
    background: #f1f8ff;
}

.ar-nav-submenu i {
    display: grid;
    width: 36px;
    height: 36px;
    grid-row: 1 / 3;
    place-items: center;
    border-radius: 11px;
    color: var(--ar-selection-blue);
    background: #eaf4ff;
}

.ar-nav-submenu i svg {
    width: 20px;
    height: 20px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.7;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.ar-nav-submenu b {
    align-self: end;
    color: var(--ar-selection-navy);
    font-size: 12px;
    font-weight: 900;
    line-height: 1.25;
}

.ar-nav-submenu small {
    align-self: start;
    overflow: hidden;
    color: #687991;
    font-size: 10px;
    font-weight: 650;
    line-height: 1.25;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.ar-mobile-subnav {
    display: grid;
    gap: 2px;
    padding: 6px 8px 10px 14px;
    border-left: 2px solid #d8e7f7;
}

.ar-mobile-subnav > span {
    padding: 4px 10px;
    color: #718099;
    font-size: 10px;
    font-weight: 900;
    letter-spacing: 0.07em;
    text-transform: uppercase;
}

.ar-mobile-menu nav .ar-mobile-subnav > a {
    min-height: 42px;
    padding: 9px 10px;
    color: #40536d;
    font-size: 12px;
}

.ar-mobile-menu[open] > nav {
    max-height: calc(100vh - 118px);
    overflow-y: auto;
    overscroll-behavior: contain;
}

.ar-selection-page main {
    display: grid;
    gap: 28px;
    padding-bottom: 54px;
}

.ar-selection-hero {
    position: relative;
    overflow: hidden;
    padding: 42px 0 26px;
}

.ar-selection-hero::before {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 76% 34%, rgba(36, 200, 244, 0.22), transparent 26%),
        radial-gradient(circle at 18% 20%, rgba(152, 241, 234, 0.25), transparent 22%),
        linear-gradient(180deg, #f8fcff 0%, var(--ar-selection-wash) 100%);
    content: "";
}

.ar-selection-hero-inner {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 1.35fr) minmax(280px, 0.65fr);
    align-items: center;
    gap: clamp(28px, 5vw, 72px);
}

.ar-selection-hero-copy {
    max-width: 790px;
}

.ar-selection-hero-copy .ar-breadcrumb {
    margin-bottom: 30px;
}

.ar-selection-hero-copy h1 {
    max-width: 840px;
    margin: 12px 0 18px;
    color: var(--ar-selection-navy);
    font-family: var(--ar-sans);
    font-size: clamp(46px, 5.6vw, 82px);
    font-weight: 900;
    letter-spacing: -0.065em;
    line-height: 0.98;
}

.ar-selection-hero.is-child .ar-selection-hero-copy h1 {
    font-size: clamp(42px, 5vw, 72px);
}

.ar-selection-hero-copy .ar-lead {
    max-width: 720px;
    margin: 0;
    color: #4f6078;
    font-size: clamp(18px, 2vw, 22px);
    line-height: 1.55;
}

.ar-selection-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 28px;
}

.ar-selection-signals {
    display: flex;
    flex-wrap: wrap;
    gap: 9px;
    margin-top: 22px;
}

.ar-selection-signals span {
    display: inline-flex;
    min-height: 34px;
    align-items: center;
    padding: 7px 12px;
    border: 1px solid rgba(16, 98, 255, 0.18);
    border-radius: 999px;
    color: #27466f;
    background: rgba(255, 255, 255, 0.76);
    font-size: 12px;
    font-weight: 800;
    line-height: 1.25;
}

.ar-selection-hero-map {
    position: relative;
    display: grid;
    width: min(100%, 360px);
    aspect-ratio: 1;
    place-items: center;
    justify-self: end;
    overflow: hidden;
    border: 1px solid rgba(16, 98, 255, 0.16);
    border-radius: 50%;
    background:
        linear-gradient(rgba(16, 98, 255, 0.06) 1px, transparent 1px),
        linear-gradient(90deg, rgba(16, 98, 255, 0.06) 1px, transparent 1px),
        rgba(255, 255, 255, 0.88);
    background-size: 34px 34px;
    box-shadow: 0 32px 90px rgba(16, 98, 255, 0.16);
}

.ar-selection-map-orbit {
    position: absolute;
    width: 72%;
    aspect-ratio: 1;
    border: 1px dashed rgba(16, 98, 255, 0.32);
    border-radius: 50%;
}

.ar-selection-map-orbit::before,
.ar-selection-map-orbit::after {
    position: absolute;
    width: 12px;
    height: 12px;
    border: 5px solid #fff;
    border-radius: 50%;
    background: var(--ar-selection-cyan);
    box-shadow: 0 5px 16px rgba(16, 98, 255, 0.24);
    content: "";
}

.ar-selection-map-orbit::before {
    top: 2%;
    left: 22%;
}

.ar-selection-map-orbit::after {
    right: 4%;
    bottom: 20%;
    background: var(--ar-selection-blue);
}

.ar-selection-map-robot {
    position: absolute;
    top: 24%;
    display: grid;
    width: 92px;
    height: 92px;
    place-items: center;
    border: 9px solid #fff;
    border-radius: 50%;
    color: #fff;
    background: linear-gradient(145deg, var(--ar-selection-blue), var(--ar-selection-cyan));
    box-shadow: 0 18px 38px rgba(16, 98, 255, 0.25);
}

.ar-selection-map-robot svg {
    width: 42px;
    height: 42px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.7;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.ar-selection-hero-map strong {
    position: absolute;
    bottom: 23%;
    color: var(--ar-selection-navy);
    font-size: clamp(42px, 5vw, 64px);
    font-weight: 950;
    letter-spacing: -0.06em;
    line-height: 1;
}

.ar-selection-hero-map > small {
    position: absolute;
    bottom: 16%;
    color: #5b6f8d;
    font-size: 12px;
    font-weight: 800;
}

.ar-selection-filter-section,
.ar-selection-products-section,
.ar-selection-table-section,
.ar-selection-method-section,
.ar-selection-faq-section,
.ar-selection-wordpress-content,
.ar-selection-method-cta {
    padding: clamp(24px, 4vw, 44px);
    border: 1px solid var(--ar-selection-line);
    border-radius: 28px;
    background: #fff;
    box-shadow: 0 20px 62px rgba(16, 98, 255, 0.08);
}

.ar-selection-filter-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 12px;
}

.ar-selection-filter-card {
    position: relative;
    display: grid;
    min-height: 164px;
    grid-template-columns: minmax(0, 1fr) auto;
    grid-template-rows: auto 1fr;
    gap: 16px 10px;
    padding: 18px;
    overflow: hidden;
    border: 1px solid #dce9f7;
    border-radius: 20px;
    background:
        radial-gradient(circle at 92% 10%, rgba(36, 200, 244, 0.19), transparent 28%),
        linear-gradient(145deg, #fff 0%, #f4faff 100%);
    cursor: pointer;
    transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.ar-selection-filter-card:hover,
.ar-selection-filter-card.is-active {
    border-color: rgba(16, 98, 255, 0.58);
    box-shadow: 0 18px 36px rgba(16, 98, 255, 0.13);
    transform: translateY(-2px);
}

.ar-selection-filter-card.is-active {
    color: #fff;
    background:
        radial-gradient(circle at 88% 8%, rgba(36, 200, 244, 0.42), transparent 30%),
        linear-gradient(145deg, #0f60fa, #0737b8);
}

.ar-selection-filter-icon {
    display: grid;
    width: 48px;
    height: 48px;
    place-items: center;
    border-radius: 15px;
    color: var(--ar-selection-blue);
    background: #fff;
    box-shadow: 0 10px 24px rgba(16, 98, 255, 0.12);
}

.ar-selection-filter-icon svg {
    width: 26px;
    height: 26px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.ar-selection-filter-copy {
    display: grid;
    grid-column: 1 / -1;
    gap: 6px;
    align-self: end;
}

.ar-selection-filter-copy strong {
    color: var(--ar-selection-navy);
    font-size: 16px;
    font-weight: 900;
    letter-spacing: -0.03em;
    line-height: 1.16;
}

.ar-selection-filter-copy small {
    color: #65758d;
    font-size: 12px;
    line-height: 1.4;
}

.ar-selection-filter-count {
    display: grid;
    min-width: 48px;
    align-content: center;
    justify-items: end;
    color: var(--ar-selection-blue);
    font-size: 21px;
    font-weight: 950;
    line-height: 1;
}

.ar-selection-filter-count small {
    margin-top: 4px;
    color: #718099;
    font-size: 9px;
    font-weight: 850;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.ar-selection-filter-card.is-active .ar-selection-filter-copy strong,
.ar-selection-filter-card.is-active .ar-selection-filter-copy small,
.ar-selection-filter-card.is-active .ar-selection-filter-count,
.ar-selection-filter-card.is-active .ar-selection-filter-count small {
    color: #fff;
}

.ar-selection-filter-section.is-compact {
    padding-block: 26px;
}

.ar-selection-filter-intro {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 22px;
    margin-bottom: 18px;
}

.ar-selection-filter-intro h2 {
    margin: 3px 0 0;
    color: var(--ar-selection-navy);
    font-size: clamp(25px, 3vw, 36px);
    letter-spacing: -0.045em;
    line-height: 1.08;
}

.ar-selection-filter-intro > a {
    min-height: 44px;
    padding: 10px 0;
    color: var(--ar-selection-blue);
    font-weight: 850;
    text-decoration: underline;
    text-underline-offset: 4px;
}

.ar-home-needs-panel .ar-selection-filter-grid {
    margin-top: 10px;
}

.ar-home-needs-panel .ar-selection-filter-card {
    min-height: 156px;
}

.ar-selection-wordpress-content {
    color: #33435b;
}

.ar-selection-wordpress-content > :first-child {
    margin-top: 0;
}

.ar-selection-wordpress-content > :last-child {
    margin-bottom: 0;
}

.ar-selection-product-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
}

.ar-selection-product-card {
    position: relative;
    display: grid;
    min-width: 0;
    overflow: hidden;
    border: 1px solid var(--ar-selection-line);
    border-radius: 22px;
    background: #fff;
    box-shadow: 0 12px 34px rgba(7, 20, 47, 0.06);
}

.ar-selection-product-card.is-first {
    border-color: rgba(16, 98, 255, 0.42);
    box-shadow: 0 18px 44px rgba(16, 98, 255, 0.13);
}

.ar-selection-product-rank {
    position: absolute;
    z-index: 2;
    top: 12px;
    left: 12px;
    display: flex;
    min-height: 40px;
    align-items: center;
    gap: 7px;
    padding: 7px 10px;
    border: 1px solid rgba(255, 255, 255, 0.85);
    border-radius: 999px;
    color: var(--ar-selection-navy);
    background: rgba(255, 255, 255, 0.92);
    box-shadow: 0 8px 20px rgba(7, 20, 47, 0.10);
    backdrop-filter: blur(8px);
}

.ar-selection-product-rank span {
    color: var(--ar-selection-blue);
    font-weight: 950;
}

.ar-selection-product-rank small {
    font-size: 10px;
    font-weight: 850;
}

.ar-selection-product-image {
    display: grid;
    aspect-ratio: 16 / 10;
    place-items: center;
    overflow: hidden;
    background: linear-gradient(145deg, #f8fcff, #eaf5ff);
}

.ar-selection-product-image img,
.ar-selection-product-image .ar-image-fallback {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.ar-selection-product-copy {
    display: grid;
    align-content: start;
    gap: 10px;
    padding: 19px;
}

.ar-selection-product-signal {
    margin: 0;
    color: var(--ar-selection-blue);
    font-size: 11px;
    font-weight: 900;
    letter-spacing: 0.035em;
    line-height: 1.4;
    text-transform: uppercase;
}

.ar-selection-product-copy h3 {
    margin: 0;
    color: var(--ar-selection-navy);
    font-size: 21px;
    font-weight: 900;
    letter-spacing: -0.04em;
    line-height: 1.12;
}

.ar-selection-product-copy > p:not(.ar-selection-product-signal):not(.ar-selection-product-limit) {
    min-height: 48px;
    margin: 0;
    color: #52637a;
    font-size: 14px;
    line-height: 1.55;
}

.ar-selection-product-limit {
    min-height: 54px;
    margin: 0;
    padding: 10px 12px;
    border-left: 3px solid #ffb000;
    color: #5b4b22;
    background: #fff8df;
    font-size: 12px;
    line-height: 1.42;
}

.ar-selection-product-evidence {
    margin-top: 2px;
}

.ar-selection-product-decision {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding-top: 10px;
    border-top: 1px solid #e7eef7;
}

.ar-selection-product-meta {
    display: flex;
    justify-content: space-between;
    gap: 10px;
    flex: 1 1 auto;
    padding: 0;
    color: #32465f;
    font-size: 13px;
    font-weight: 850;
}

.ar-selection-product-actions {
    display: flex;
    align-items: center;
    gap: 14px;
}

.ar-selection-product-actions .ar-button {
    flex: 1 1 auto;
}

.ar-selection-table-scroll {
    overflow-x: auto;
    border: 1px solid var(--ar-selection-line);
    border-radius: 18px;
    background: #fff;
    -webkit-overflow-scrolling: touch;
}

.ar-selection-compare-table {
    width: 100%;
    min-width: 920px;
    border-collapse: collapse;
    color: #314159;
    font-size: 13px;
}

.ar-selection-compare-table th,
.ar-selection-compare-table td {
    padding: 15px 14px;
    border-bottom: 1px solid #e3edf8;
    text-align: left;
    vertical-align: top;
}

.ar-selection-compare-table thead th {
    color: #47607e;
    background: #f3f9ff;
    font-size: 10px;
    font-weight: 900;
    letter-spacing: 0.07em;
    text-transform: uppercase;
}

.ar-selection-compare-table tbody th {
    color: var(--ar-selection-navy);
    font-weight: 900;
}

.ar-selection-compare-table tbody th a,
.ar-selection-compare-table tbody td:last-child a {
    color: var(--ar-selection-blue);
    text-decoration: underline;
    text-underline-offset: 3px;
}

.ar-selection-compare-table tbody tr:last-child th,
.ar-selection-compare-table tbody tr:last-child td {
    border-bottom: 0;
}

.ar-selection-price-note {
    margin: 12px 0 0;
    color: #65758d;
    font-size: 12px;
}

.ar-selection-method-section {
    padding: clamp(22px, 3vw, 32px);
}

.ar-selection-method-layout {
    display: grid;
    grid-template-columns: minmax(250px, 0.78fr) minmax(0, 1.22fr);
    align-items: start;
    gap: clamp(22px, 3vw, 38px);
}

.ar-selection-method-head {
    max-width: 540px;
    margin: 0;
}

.ar-selection-method-head h2,
.ar-selection-faq-head h2,
.ar-selection-method-cta h2 {
    margin: 6px 0 10px;
    color: var(--ar-selection-navy);
    font-size: clamp(30px, 4vw, 48px);
    font-weight: 900;
    letter-spacing: -0.055em;
    line-height: 1.04;
}

.ar-selection-method-head > p:last-child,
.ar-selection-method-cta p {
    margin: 0;
    color: #53657d;
}

.ar-selection-method-head h2 {
    max-width: 520px;
    font-size: clamp(28px, 3vw, 38px);
}

.ar-selection-criteria-list {
    display: grid;
    gap: 8px;
    padding: 0;
    margin: 0;
    list-style: none;
}

.ar-selection-criteria-list li {
    display: grid;
    min-height: 54px;
    grid-template-columns: 32px minmax(0, 1fr);
    align-items: center;
    gap: 12px;
    padding: 10px 14px;
    border: 1px solid var(--ar-selection-line);
    border-radius: 14px;
    background: #f7fbff;
}

.ar-selection-criteria-list span {
    display: grid;
    width: 32px;
    height: 32px;
    place-items: center;
    border-radius: 50%;
    color: var(--ar-selection-blue);
    background: #e8f2ff;
}

.ar-selection-criteria-list svg {
    width: 18px;
    height: 18px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2.2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.ar-selection-criteria-list p {
    margin: 0;
    color: #314761;
    font-size: 14.5px;
    font-weight: 750;
    line-height: 1.45;
}

.ar-selection-transparency-note {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    gap: 20px;
    margin-top: 16px;
    padding: 15px 17px;
    border: 1px solid #cfe9ef;
    border-radius: 14px;
    color: #234866;
    background: linear-gradient(120deg, #e7fbf9, #f1f8ff);
}

.ar-selection-transparency-note p {
    margin: 0;
    font-size: 13.5px;
    line-height: 1.55;
}

.ar-selection-transparency-note a {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    color: #0d4ec0;
    font-size: 13px;
    font-weight: 850;
    text-decoration: underline;
    text-decoration-thickness: 1px;
    text-underline-offset: 4px;
    white-space: nowrap;
}

.ar-selection-transparency-note a:hover {
    color: var(--ar-selection-navy);
}

.ar-selection-transparency-note a:focus-visible {
    border-radius: 4px;
    outline: 3px solid rgba(16, 98, 255, 0.25);
    outline-offset: 4px;
}

.ar-selection-faq-head {
    max-width: 760px;
    margin-bottom: 20px;
}

.ar-selection-faq-list {
    display: grid;
    gap: 9px;
}

.ar-selection-faq-list details {
    border: 1px solid var(--ar-selection-line);
    border-radius: 16px;
    background: #f9fcff;
}

.ar-selection-faq-list summary {
    position: relative;
    min-height: 56px;
    padding: 16px 54px 16px 17px;
    color: var(--ar-selection-navy);
    cursor: pointer;
    font-weight: 850;
    list-style: none;
}

.ar-selection-faq-list summary::-webkit-details-marker {
    display: none;
}

.ar-selection-faq-list summary span {
    position: absolute;
    top: 50%;
    right: 17px;
    width: 18px;
    height: 18px;
    transform: translateY(-50%);
}

.ar-selection-faq-list summary span::before,
.ar-selection-faq-list summary span::after {
    position: absolute;
    top: 8px;
    left: 2px;
    width: 14px;
    height: 2px;
    background: var(--ar-selection-blue);
    content: "";
}

.ar-selection-faq-list summary span::after {
    transform: rotate(90deg);
    transition: transform 180ms ease;
}

.ar-selection-faq-list details[open] summary span::after {
    transform: rotate(0);
}

.ar-selection-faq-list details p {
    max-width: 850px;
    padding: 0 17px 18px;
    margin: 0;
    color: #52657e;
}

.ar-selection-method-cta {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    gap: 28px;
    color: #fff;
    border-color: transparent;
    background:
        radial-gradient(circle at 90% 10%, rgba(36, 200, 244, 0.36), transparent 28%),
        linear-gradient(135deg, #07142f, #0b367c);
}

.ar-selection-method-cta .ar-kicker {
    color: #80e8ff;
}

.ar-selection-method-cta h2 {
    color: #fff;
}

.ar-selection-method-cta p {
    max-width: 760px;
    color: #d7e7ff;
}

.ar-seo-fold {
    --ar-seo-fold-height: 320px;
    position: relative;
}

.ar-seo-fold__content {
    position: relative;
}

.ar-seo-fold.is-ready:not(.is-expanded) .ar-seo-fold__content {
    max-height: var(--ar-seo-fold-height);
    overflow: hidden;
}

.ar-seo-fold.is-ready:not(.is-expanded) .ar-seo-fold__content::after {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    height: 104px;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0), #fff 88%);
    content: "";
    pointer-events: none;
}

.ar-seo-fold__controls {
    position: relative;
    z-index: 1;
    display: flex;
    justify-content: center;
    margin-top: 14px;
}

.ar-seo-fold__toggle {
    min-height: 46px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    padding: 10px 20px;
    color: #0b4ea2;
    border: 1px solid #a9c8ef;
    border-radius: 999px;
    background: #f4f9ff;
    box-shadow: 0 6px 18px rgba(18, 71, 141, 0.09);
    cursor: pointer;
    font: inherit;
    font-weight: 850;
    line-height: 1.2;
    transition: color 160ms ease, border-color 160ms ease, background-color 160ms ease, box-shadow 160ms ease;
}

.ar-seo-fold__toggle[hidden] {
    display: none;
}

.ar-seo-fold__toggle:hover {
    color: #063777;
    border-color: #78abe5;
    background: #eaf4ff;
    box-shadow: 0 8px 22px rgba(18, 71, 141, 0.14);
}

.ar-seo-fold__toggle:focus-visible {
    outline: 3px solid rgba(0, 119, 255, 0.34);
    outline-offset: 3px;
}

.ar-seo-fold__toggle svg {
    width: 18px;
    height: 18px;
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 2;
    transition: transform 180ms ease;
}

.ar-seo-fold.is-expanded .ar-seo-fold__toggle svg {
    transform: rotate(180deg);
}

@media (max-width: 1024px) {
    .ar-selection-hero-inner {
        grid-template-columns: minmax(0, 1fr) 280px;
    }

    .ar-selection-filter-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .ar-selection-product-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 760px) {
    .ar-selection-page main {
        gap: 18px;
    }

    .ar-selection-hero {
        padding: 24px 0 8px;
    }

    .ar-selection-hero-inner {
        grid-template-columns: 1fr;
    }

    .ar-selection-hero-map {
        width: min(100%, 300px);
        justify-self: center;
    }

    .ar-selection-method-layout,
    .ar-selection-filter-intro,
    .ar-selection-method-cta {
        grid-template-columns: 1fr;
        align-items: start;
    }

    .ar-selection-filter-intro {
        display: grid;
    }

    .ar-selection-criteria-list {
        grid-template-columns: 1fr;
    }

    .ar-selection-criteria-list li {
        min-height: 0;
        grid-template-columns: 32px minmax(0, 1fr);
        align-items: center;
        gap: 12px;
    }

    .ar-selection-transparency-note {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .ar-selection-transparency-note a {
        white-space: normal;
    }
}

@media (max-width: 580px) {
    .ar-seo-fold {
        --ar-seo-fold-height: 260px;
    }

    .ar-selection-page .ar-shell {
        width: min(100% - 28px, 1180px);
    }

    .ar-selection-hero-copy h1,
    .ar-selection-hero.is-child .ar-selection-hero-copy h1 {
        font-size: clamp(39px, 12vw, 54px);
    }

    .ar-selection-hero-actions,
    .ar-selection-hero-actions .ar-button,
    .ar-selection-method-cta .ar-button {
        width: 100%;
    }

    .ar-selection-hero-map {
        width: 250px;
    }

    .ar-selection-filter-section,
    .ar-selection-products-section,
    .ar-selection-table-section,
    .ar-selection-method-section,
    .ar-selection-faq-section,
    .ar-selection-wordpress-content,
    .ar-selection-method-cta {
        padding: 19px;
        border-radius: 22px;
    }

    .ar-selection-filter-grid,
    .ar-selection-product-grid {
        grid-template-columns: 1fr;
    }

    .ar-selection-filter-card {
        min-height: 124px;
        grid-template-columns: 48px minmax(0, 1fr) auto;
        grid-template-rows: 1fr;
        align-items: center;
    }

    .ar-selection-filter-copy {
        grid-column: auto;
        align-self: center;
    }

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

    .ar-selection-method-head h2,
    .ar-selection-faq-head h2,
    .ar-selection-method-cta h2 {
        font-size: 31px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .ar-selection-filter-card,
    .ar-selection-faq-list summary span::after,
    .ar-seo-fold__toggle,
    .ar-seo-fold__toggle svg {
        transition: none;
    }

    .ar-selection-filter-card:hover {
        transform: none;
    }
}

/* Saved products */
.ar-home-favorites {
    position: relative;
    z-index: 4;
    display: flex;
    align-items: center;
    gap: 10px;
    width: max-content;
    max-width: 100%;
    margin: -22px 0 18px auto;
}

.ar-home-favorites__toggle {
    display: inline-flex;
    min-height: 44px;
    align-items: center;
    gap: 8px;
    padding: 8px 10px 8px 12px;
    border: 1px solid #d4e2f3;
    border-radius: 14px;
    color: #254b75;
    background: #fff;
    box-shadow: 0 8px 20px rgba(20, 63, 111, 0.07);
    cursor: pointer;
    font: inherit;
    font-size: 12px;
    font-weight: 850;
    transition: color 180ms ease, border-color 180ms ease, background-color 180ms ease, box-shadow 180ms ease;
}

.ar-home-favorites__toggle > svg {
    width: 18px;
    height: 18px;
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 1.7;
}

.ar-home-favorites__toggle b {
    display: grid;
    min-width: 23px;
    height: 23px;
    place-items: center;
    padding-inline: 5px;
    border-radius: 999px;
    color: #fff;
    background: #1062ff;
    font-size: 10px;
}

.ar-home-favorites__toggle i {
    width: 7px;
    height: 7px;
    margin: 0 2px 3px 3px;
    border-right: 1.5px solid currentColor;
    border-bottom: 1.5px solid currentColor;
    transform: rotate(45deg);
    transition: transform 180ms ease;
}

.ar-home-favorites.is-open .ar-home-favorites__toggle i {
    margin-bottom: -3px;
    transform: rotate(225deg);
}

.ar-home-favorites__toggle:hover,
.ar-home-favorites__toggle:focus-visible,
.ar-home-favorites.is-open .ar-home-favorites__toggle {
    border-color: #8db9f4;
    color: #0b4fc7;
    background: #f5faff;
    box-shadow: 0 10px 24px rgba(16, 98, 255, 0.12);
}

.ar-home-favorites.has-saved-feedback .ar-home-favorites__toggle {
    border-color: #60c7ae;
    box-shadow: 0 0 0 4px rgba(30, 167, 135, 0.12);
}

.ar-home-favorites__privacy {
    color: #758399;
    font-size: 10px;
}

.ar-home-favorites__panel[hidden] {
    display: none;
}

.ar-home-favorites__panel {
    position: absolute;
    z-index: 8;
    top: calc(100% + 10px);
    right: 0;
    width: min(540px, calc(100vw - 40px));
    padding: 16px;
    border: 1px solid #cfe0f3;
    border-radius: 20px;
    color: #1b2b43;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 24px 60px rgba(7, 20, 47, 0.2);
    backdrop-filter: blur(16px);
}

.ar-home-favorites__panel-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding-bottom: 12px;
    border-bottom: 1px solid #e6eef7;
}

.ar-home-favorites__panel-head > div {
    display: grid;
    gap: 2px;
}

.ar-home-favorites__panel-head small {
    color: #1062ff;
    font-size: 9px;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.ar-home-favorites__panel-head strong {
    color: #07142f;
    font-size: 14px;
}

.ar-home-favorites__panel-head button,
.ar-home-favorites__remove {
    display: grid;
    width: 44px;
    height: 44px;
    flex: 0 0 auto;
    place-items: center;
    padding: 0;
    border: 0;
    border-radius: 50%;
    color: #667991;
    background: #f2f7fc;
    cursor: pointer;
}

.ar-home-favorites__panel-head button svg,
.ar-home-favorites__remove svg {
    width: 16px;
    height: 16px;
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-width: 1.8;
}

.ar-home-favorites__panel-head button:hover,
.ar-home-favorites__remove:hover {
    color: #0b4fc7;
    background: #e7f2ff;
}

.ar-home-favorites__empty {
    margin: 14px 0 2px;
    color: #66758a;
    font-size: 12px;
}

.ar-home-favorites__empty[hidden] {
    display: none;
}

.ar-home-favorites__list {
    display: grid;
    gap: 8px;
    padding: 0;
    margin: 12px 0 0;
    list-style: none;
}

.ar-home-favorites__item {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 44px;
    align-items: center;
    gap: 8px;
    padding: 5px;
    border: 1px solid #e1ebf5;
    border-radius: 14px;
    background: #f9fcff;
}

.ar-home-favorites__link {
    display: grid;
    min-width: 0;
    grid-template-columns: 42px minmax(0, 1fr);
    align-items: center;
    gap: 10px;
}

.ar-home-favorites__visual {
    display: grid;
    width: 42px;
    height: 42px;
    place-items: center;
    overflow: hidden;
    border-radius: 11px;
    color: #0b4fc7;
    background: #fff;
    font-size: 13px;
    font-weight: 900;
}

.ar-home-favorites__visual img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.ar-home-favorites__label {
    overflow: hidden;
    color: #17304e;
    font-size: 12px;
    font-weight: 800;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.ar-favorite-toggle {
    display: grid;
    width: 44px;
    height: 44px;
    place-items: center;
    padding: 0;
    border: 1px solid rgba(191, 211, 233, 0.92);
    border-radius: 14px;
    color: #3b5879;
    background: rgba(255, 255, 255, 0.94);
    box-shadow: 0 9px 20px rgba(7, 20, 47, 0.12);
    backdrop-filter: blur(10px);
    cursor: pointer;
    transition: color 180ms ease, border-color 180ms ease, background-color 180ms ease, box-shadow 180ms ease;
}

.ar-favorite-toggle--home {
    position: absolute;
    z-index: 3;
    top: 12px;
    left: 12px;
}

.ar-favorite-toggle svg {
    width: 20px;
    height: 20px;
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 1.7;
}

.ar-favorite-toggle:hover,
.ar-favorite-toggle:focus-visible {
    border-color: #83afe4;
    color: #0b4fc7;
    background: #fff;
    box-shadow: 0 11px 24px rgba(16, 98, 255, 0.18);
}

.ar-favorite-toggle.is-selected {
    border-color: #7cb7ff;
    color: #fff;
    background: #1062ff;
}

.ar-favorite-toggle.is-selected svg path:first-child {
    fill: currentColor;
    fill-opacity: 0.18;
}

.ar-favorite-toggle__hint {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    padding: 4px 7px;
    border-radius: 7px;
    color: #fff;
    background: #07142f;
    font-size: 9px;
    font-weight: 800;
    line-height: 1;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-3px);
    transition: opacity 160ms ease, transform 160ms ease;
}

.ar-favorite-toggle:hover .ar-favorite-toggle__hint,
.ar-favorite-toggle:focus-visible .ar-favorite-toggle__hint {
    opacity: 1;
    transform: translateY(0);
}

/* Product comparator */
.ar-compare-toggle {
    display: inline-flex;
    width: auto;
    min-width: 0;
    min-height: 44px;
    align-items: center;
    justify-content: center;
    gap: 7px;
    padding: 8px 12px;
    border: 1px solid #cfdfef;
    border-radius: 12px;
    color: #284f79;
    background: #f4f8fc;
    cursor: pointer;
    font: inherit;
    font-size: 11px;
    font-weight: 800;
    line-height: 1.2;
    touch-action: manipulation;
    transition: color 180ms ease, border-color 180ms ease, background-color 180ms ease, box-shadow 180ms ease;
}

.ar-compare-toggle svg {
    width: 17px;
    height: 17px;
    flex: 0 0 auto;
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 1.8;
}

.ar-compare-toggle:hover {
    border-color: #8db9f4;
    color: #0b4fc7;
    background: #eef6ff;
    box-shadow: 0 6px 16px rgba(16, 98, 255, 0.10);
}

.ar-compare-toggle:focus-visible {
    outline: 3px solid rgba(16, 98, 255, 0.30);
    outline-offset: 3px;
}

.ar-compare-toggle.is-selected {
    border-color: #8bcbbd;
    color: #08684f;
    background: #e9f8f3;
}

.ar-compare-toggle.is-selected svg circle {
    fill: rgba(8, 104, 79, 0.08);
}

.ar-compare-toggle.is-unavailable {
    opacity: 0.55;
    cursor: not-allowed;
}

.ar-comparator-tray[hidden] {
    display: none;
}

.ar-comparator-tray {
    position: fixed;
    z-index: 99990;
    right: 0;
    bottom: 0;
    left: 0;
    padding: 13px max(18px, env(safe-area-inset-right)) calc(13px + env(safe-area-inset-bottom)) max(18px, env(safe-area-inset-left));
    color: #fff;
    background: rgba(7, 20, 47, 0.98);
    box-shadow: 0 -18px 48px rgba(7, 20, 47, 0.22);
    backdrop-filter: blur(16px);
}

.ar-comparator-tray__inner {
    display: grid;
    width: min(100%, 1180px);
    min-height: 64px;
    grid-template-columns: minmax(130px, auto) minmax(0, 1fr) auto;
    align-items: center;
    gap: 18px;
    margin: 0 auto;
}

.ar-comparator-tray__summary {
    display: grid;
    gap: 3px;
}

.ar-comparator-tray__summary strong {
    font-size: 14px;
    font-weight: 900;
}

.ar-comparator-tray__summary > span {
    color: #aabbd7;
    font-size: 11px;
}

.ar-comparator-tray__items {
    display: flex;
    min-width: 0;
    align-items: center;
    gap: 8px;
    padding: 0;
    margin: 0;
    list-style: none;
}

.ar-comparator-tray__item {
    position: relative;
    display: grid;
    min-width: 0;
    max-width: 190px;
    min-height: 54px;
    grid-template-columns: 34px minmax(0, 1fr) 44px;
    align-items: center;
    gap: 7px;
    padding: 5px 5px 5px 7px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.08);
}

.ar-comparator-tray__visual {
    display: grid;
    width: 32px;
    height: 32px;
    place-items: center;
    overflow: hidden;
    border-radius: 50%;
    color: #0b4fc7;
    background: #fff;
    font-size: 12px;
    font-weight: 900;
}

.ar-comparator-tray__visual img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.ar-comparator-tray__label {
    overflow: hidden;
    color: #eef5ff;
    font-size: 11px;
    font-weight: 750;
    line-height: 1.25;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.ar-comparator-tray__remove {
    display: grid;
    width: 44px;
    height: 44px;
    place-items: center;
    padding: 0;
    border: 0;
    border-radius: 50%;
    color: #aebed8;
    background: transparent;
    cursor: pointer;
    touch-action: manipulation;
    transition: color 160ms ease, background-color 160ms ease;
}

.ar-comparator-tray__remove:hover,
.ar-comparator-tray__remove:focus-visible {
    color: #fff;
    background: rgba(255, 255, 255, 0.12);
}

.ar-comparator-tray__remove:focus-visible {
    outline: 2px solid #7ce7ff;
    outline-offset: 1px;
}

.ar-comparator-tray__remove svg {
    width: 17px;
    height: 17px;
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-width: 2;
}

.ar-comparator-tray__actions {
    display: flex;
    align-items: center;
    gap: 9px;
}

.ar-comparator-clear,
.ar-comparator-submit {
    display: inline-flex;
    min-height: 46px;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    cursor: pointer;
    font: inherit;
    font-size: 13px;
    font-weight: 900;
    text-decoration: none;
    touch-action: manipulation;
    transition: color 160ms ease, border-color 160ms ease, background-color 160ms ease, box-shadow 160ms ease;
}

.ar-comparator-clear {
    padding: 9px 14px;
    border: 1px solid rgba(255, 255, 255, 0.24);
    color: #fff;
    background: transparent;
}

.ar-comparator-submit {
    gap: 5px;
    min-width: 132px;
    padding: 9px 18px;
    border: 1px solid #32d7f4;
    color: #061631;
    background: #32d7f4;
    box-shadow: 0 10px 26px rgba(50, 215, 244, 0.22);
}

.ar-comparator-clear:hover,
.ar-comparator-clear:focus-visible {
    border-color: rgba(255, 255, 255, 0.48);
    background: rgba(255, 255, 255, 0.10);
}

.ar-comparator-submit:hover,
.ar-comparator-submit:focus-visible {
    color: #061631;
    border-color: #76eaff;
    background: #76eaff;
}

.ar-comparator-clear:focus-visible,
.ar-comparator-submit:focus-visible {
    outline: 3px solid rgba(124, 231, 255, 0.42);
    outline-offset: 2px;
}

.ar-comparator-submit[aria-disabled="true"] {
    border-color: rgba(255, 255, 255, 0.14);
    color: #8291aa;
    background: rgba(255, 255, 255, 0.10);
    box-shadow: none;
    cursor: not-allowed;
}

.ar-compare-toggle:active,
.ar-comparator-tray__remove:active,
.ar-comparator-clear:active,
.ar-comparator-submit:not([aria-disabled="true"]):active {
    opacity: 0.82;
}

.ar-comparator-tray.has-limit-warning {
    box-shadow: 0 -4px 0 #ffb000, 0 -18px 48px rgba(7, 20, 47, 0.24);
}

.ar-comparator-tray-visible .ar-core:not(.ar-comparator-page) {
    padding-bottom: 112px;
}

.ar-comparator-page {
    --ar-comparator-navy: #07142f;
    --ar-comparator-blue: #1062ff;
    --ar-comparator-cyan: #24c8f4;
    --ar-comparator-line: #dce8f6;
    min-height: 100vh;
    color: #1b2b43;
    background: #f4f9ff;
}

.ar-comparator-page main {
    display: grid;
    gap: 28px;
    padding-bottom: 70px;
}

.ar-comparator-hero {
    position: relative;
    overflow: hidden;
    padding: 42px 0 34px;
    background:
        radial-gradient(circle at 82% 24%, rgba(36, 200, 244, 0.24), transparent 24%),
        radial-gradient(circle at 18% 4%, rgba(152, 241, 234, 0.25), transparent 22%),
        linear-gradient(180deg, #f9fdff 0%, #eaf5ff 100%);
}

.ar-comparator-hero .ar-breadcrumb {
    margin-bottom: 28px;
}

.ar-comparator-hero h1 {
    max-width: 900px;
    margin: 10px 0 16px;
    color: var(--ar-comparator-navy);
    font-family: var(--ar-sans);
    font-size: clamp(44px, 6vw, 78px);
    font-weight: 950;
    letter-spacing: -0.065em;
    line-height: 0.98;
}

.ar-comparator-hero .ar-lead {
    max-width: 780px;
    margin: 0;
    color: #50627b;
    font-size: clamp(17px, 2vw, 21px);
    line-height: 1.55;
}

.ar-comparator-hero-signals {
    display: flex;
    flex-wrap: wrap;
    gap: 9px;
    margin-top: 22px;
}

.ar-comparator-hero-signals span {
    display: inline-flex;
    min-height: 34px;
    align-items: center;
    padding: 7px 12px;
    border: 1px solid rgba(16, 98, 255, 0.18);
    border-radius: 999px;
    color: #23456f;
    background: rgba(255, 255, 255, 0.78);
    font-size: 12px;
    font-weight: 850;
}

.ar-comparator-workspace,
.ar-comparator-empty {
    padding: clamp(22px, 4vw, 42px);
    border: 1px solid var(--ar-comparator-line);
    border-radius: 28px;
    background: #fff;
    box-shadow: 0 20px 62px rgba(16, 98, 255, 0.08);
}

.ar-comparator-toolbar {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 20px;
}

.ar-comparator-toolbar h2,
.ar-comparator-empty h2 {
    margin: 5px 0 0;
    color: var(--ar-comparator-navy);
    font-size: clamp(29px, 4vw, 46px);
    font-weight: 950;
    letter-spacing: -0.05em;
    line-height: 1.05;
}

.ar-comparator-differences {
    display: flex;
    min-height: 46px;
    align-items: center;
    gap: 10px;
    padding: 9px 14px;
    border: 1px solid #cddff2;
    border-radius: 999px;
    color: #29435f;
    background: #f7fbff;
    cursor: pointer;
    font-size: 13px;
    font-weight: 800;
}

.ar-comparator-differences input {
    width: 20px;
    height: 20px;
    margin: 0;
    accent-color: var(--ar-comparator-blue);
}

.ar-comparator-differences:focus-within {
    outline: 3px solid rgba(16, 98, 255, 0.23);
    outline-offset: 2px;
}

.ar-comparator-mobile-hint {
    display: none;
    margin: 0 0 10px;
    color: #58708f;
    font-size: 12px;
}

.ar-comparator-table-scroll {
    overflow-x: auto;
    border: 1px solid var(--ar-comparator-line);
    border-radius: 20px;
    background: #fff;
    overscroll-behavior-x: contain;
    -webkit-overflow-scrolling: touch;
}

.ar-comparator-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    font-variant-numeric: tabular-nums;
    table-layout: fixed;
}

.ar-comparator-table.has-2-products {
    min-width: 720px;
}

.ar-comparator-table.has-3-products {
    min-width: 940px;
}

.ar-comparator-table.has-4-products {
    min-width: 1160px;
}

.ar-comparator-table th,
.ar-comparator-table td {
    width: 250px;
    padding: 15px 16px;
    border-right: 1px solid #e2ebf5;
    border-bottom: 1px solid #e2ebf5;
    color: #30435d;
    background: #fff;
    text-align: center;
    vertical-align: middle;
}

.ar-comparator-table tr > :first-child {
    position: sticky;
    z-index: 2;
    left: 0;
    width: 190px;
    min-width: 190px;
    color: var(--ar-comparator-navy);
    background: #f3f8fe;
    box-shadow: 8px 0 16px -15px rgba(7, 20, 47, 0.55);
    text-align: left;
}

.ar-comparator-table thead th {
    padding: 18px;
    color: #fff;
    background:
        radial-gradient(circle at 90% 0%, rgba(36, 200, 244, 0.28), transparent 28%),
        linear-gradient(145deg, #0d5eea, #0739ad);
    vertical-align: top;
}

.ar-comparator-table thead th:first-child {
    z-index: 3;
    color: #dceaff;
    background: #083c99;
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.ar-comparator-table tr > :last-child {
    border-right: 0;
}

.ar-comparator-table tbody tr:last-child > * {
    border-bottom: 0;
}

.ar-comparator-table tbody th small {
    display: block;
    margin-bottom: 4px;
    color: #1062ff;
    font-size: 9px;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.ar-comparator-table tbody th span {
    display: block;
    font-size: 13px;
    font-weight: 900;
    line-height: 1.3;
}

.ar-comparator-table td {
    font-size: 13px;
    line-height: 1.45;
}

.ar-comparator-table td > small {
    display: block;
    margin-top: 4px;
    color: #6b7c94;
    font-size: 10px;
}

.ar-comparator-table .ar-data-flag {
    display: inline-flex;
    min-height: 28px;
    align-items: center;
    padding: 4px 10px;
    border-radius: 999px;
    font-weight: 850;
}

.ar-comparator-table .ar-data-flag.is-yes {
    color: #087342;
    background: #dcf8e9;
}

.ar-comparator-table .ar-data-flag.is-no {
    color: #6c4250;
    background: #f7eaee;
}

.ar-comparator-product-head {
    display: grid;
    justify-items: center;
    gap: 7px;
}

.ar-comparator-product-image {
    display: grid;
    width: 112px;
    height: 82px;
    place-items: center;
    overflow: hidden;
    border: 6px solid rgba(255, 255, 255, 0.92);
    border-radius: 16px;
    background: #fff;
    box-shadow: 0 10px 22px rgba(4, 29, 87, 0.18);
}

.ar-comparator-product-image img,
.ar-comparator-product-image .ar-image-fallback {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.ar-comparator-product-head > small {
    color: #edf6ff;
    font-size: 10px;
    font-weight: 750;
}

.ar-comparator-product-name {
    color: #fff;
    font-size: 14px;
    font-weight: 900;
    line-height: 1.25;
    text-decoration: none;
}

.ar-comparator-product-name:hover,
.ar-comparator-product-name:focus-visible {
    color: #a4edff;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.ar-comparator-remove {
    display: inline-flex;
    min-height: 44px;
    align-items: center;
    justify-content: center;
    padding: 6px 10px;
    border-radius: 999px;
    color: #cfe2ff;
    font-size: 10px;
    font-weight: 800;
    text-decoration: underline;
    text-underline-offset: 3px;
    touch-action: manipulation;
}

.ar-comparator-remove:hover,
.ar-comparator-remove:focus-visible {
    color: #fff;
    background: rgba(255, 255, 255, 0.12);
}

.ar-comparator-actions-row td {
    padding: 18px 14px;
}

.ar-comparator-actions-row .ar-button,
.ar-comparator-actions-row .ar-text-link {
    display: flex;
    width: 100%;
    justify-content: center;
}

.ar-comparator-actions-row .ar-text-link {
    margin-top: 9px;
}

.ar-comparator-data-note {
    margin: 14px 0 0;
    color: #64758b;
    font-size: 12px;
    line-height: 1.5;
}

.ar-comparator-empty {
    display: grid;
    grid-template-columns: minmax(180px, 0.38fr) minmax(0, 1fr);
    align-items: center;
    gap: clamp(24px, 5vw, 64px);
}

.ar-comparator-empty > div:last-child {
    max-width: 720px;
}

.ar-comparator-empty p:not(.ar-kicker) {
    color: #566a84;
    line-height: 1.6;
}

.ar-comparator-empty .ar-button {
    margin-top: 6px;
}

.ar-comparator-empty-visual {
    position: relative;
    display: flex;
    min-height: 230px;
    align-items: center;
    justify-content: center;
}

.ar-comparator-empty-visual span {
    width: 118px;
    height: 150px;
    border: 1px solid #cfe0f3;
    border-radius: 22px;
    background: linear-gradient(145deg, #fff, #edf6ff);
    box-shadow: 0 20px 42px rgba(16, 98, 255, 0.11);
}

.ar-comparator-empty-visual span + span {
    margin-left: -30px;
    transform: translateY(20px);
}

.ar-comparator-empty-visual i {
    position: absolute;
    display: grid;
    width: 54px;
    height: 54px;
    place-items: center;
    border: 7px solid #fff;
    border-radius: 50%;
    color: #fff;
    background: #1062ff;
    box-shadow: 0 14px 28px rgba(16, 98, 255, 0.28);
    font-size: 28px;
    font-style: normal;
    font-weight: 600;
}

@media (max-width: 900px) {
    .ar-comparator-tray__inner {
        grid-template-columns: auto minmax(0, 1fr) auto;
        gap: 10px;
    }

    .ar-comparator-tray__summary > span,
    .ar-comparator-tray__label {
        display: none;
    }

    .ar-comparator-tray__items {
        justify-content: flex-start;
    }

    .ar-comparator-tray__item {
        width: 46px;
        min-width: 46px;
        grid-template-columns: 34px;
        padding: 5px;
    }

    .ar-comparator-tray__remove {
        position: absolute;
        width: 22px;
        height: 22px;
        margin: -30px 0 0 27px;
        color: #fff;
        background: #314866;
    }

    .ar-comparator-toolbar {
        display: grid;
        align-items: start;
    }
}

@media (max-width: 620px) {
    .ar-home-product-meta span {
        max-width: 68%;
    }

    .ar-home-product-actions,
    .ar-card-decision-footer,
    .ar-selection-product-decision {
        flex-wrap: wrap;
    }

    .ar-home-product-actions .ar-button {
        min-width: 132px;
    }

    .ar-card-decision-footer .ar-compare-toggle,
    .ar-selection-product-decision .ar-compare-toggle {
        margin-left: auto;
    }

    .ar-comparator-tray {
        padding-top: 9px;
    }

    .ar-comparator-tray__inner {
        min-height: 54px;
        grid-template-columns: minmax(0, 1fr) auto;
    }

    .ar-comparator-tray__summary {
        display: none;
    }

    .ar-comparator-tray__items {
        gap: 4px;
    }

    .ar-comparator-tray__item {
        width: 44px;
        min-width: 44px;
        min-height: 44px;
        grid-template-columns: 34px;
        padding: 5px;
    }

    .ar-comparator-tray__visual {
        width: 34px;
        height: 34px;
    }

    .ar-comparator-tray__remove {
        inset: 0;
        width: 44px;
        height: 44px;
        margin: 0;
        color: #fff;
        background: linear-gradient(135deg, transparent 45%, rgba(7, 20, 47, 0.78) 46%);
        opacity: 0.9;
    }

    .ar-comparator-tray__remove svg {
        width: 14px;
        height: 14px;
        margin: -21px 0 0 21px;
    }

    .ar-comparator-tray__actions {
        gap: 5px;
    }

    .ar-comparator-clear {
        width: 38px;
        min-height: 44px;
        padding-inline: 5px;
        overflow: hidden;
        color: transparent;
    }

    .ar-comparator-clear::before {
        color: #fff;
        content: "×";
        font-size: 22px;
    }

    .ar-comparator-submit {
        min-width: 88px;
        padding-inline: 10px;
    }

    .ar-comparator-tray-visible .ar-core:not(.ar-comparator-page) {
        padding-bottom: 92px;
    }

    .ar-comparator-hero {
        padding: 24px 0 18px;
    }

    .ar-comparator-hero .ar-shell,
    .ar-comparator-page > main > .ar-shell {
        width: min(100% - 28px, 1180px);
    }

    .ar-comparator-hero h1 {
        font-size: clamp(39px, 12vw, 54px);
    }

    .ar-comparator-workspace,
    .ar-comparator-empty {
        padding: 18px;
        border-radius: 22px;
    }

    .ar-comparator-mobile-hint {
        display: block;
    }

    .ar-comparator-differences {
        width: 100%;
        border-radius: 14px;
    }

    .ar-comparator-empty {
        grid-template-columns: 1fr;
    }

    .ar-comparator-empty-visual {
        min-height: 180px;
    }

    .ar-comparator-empty-visual span {
        width: 92px;
        height: 120px;
    }

    .ar-comparator-table tr > :first-child {
        width: 148px;
        min-width: 148px;
    }

    .ar-comparator-table th,
    .ar-comparator-table td {
        width: 220px;
        padding: 13px 12px;
    }
}

@media (max-width: 680px) {
    .ar-home-favorites {
        width: 100%;
        justify-content: flex-end;
        margin-top: -18px;
    }

    .ar-home-favorites__privacy {
        display: none;
    }

    .ar-home-favorites__panel {
        width: 100%;
    }
}

@media (max-width: 360px) {
    .ar-comparator-tray__inner {
        grid-template-columns: 1fr;
        justify-items: center;
    }

    .ar-comparator-tray__items,
    .ar-comparator-tray__actions {
        justify-content: center;
    }

    .ar-comparator-tray-visible .ar-core:not(.ar-comparator-page) {
        padding-bottom: 148px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .ar-compare-toggle,
    .ar-favorite-toggle,
    .ar-favorite-toggle__hint,
    .ar-home-favorites__toggle,
    .ar-home-favorites__toggle i,
    .ar-comparator-tray,
    .ar-comparator-tray__remove,
    .ar-comparator-clear,
    .ar-comparator-submit {
        transition: none;
    }
}

/* Home selection cards — compact decision controls (0.7.26) */
.ar-home-featured-panel {
    --ar-card-navy: #07142f;
    --ar-card-blue: #1062ff;
    --ar-card-blue-dark: #0746b7;
    --ar-card-muted: #64758c;
    --ar-card-line: #d8e6f5;
    --ar-card-tint: #f2f8ff;
}

.ar-home-featured-panel .ar-section-head {
    align-items: flex-end;
}

.ar-section-head-actions {
    display: flex;
    max-width: 390px;
    flex: 0 0 auto;
    flex-wrap: wrap;
    align-items: center;
    justify-content: flex-end;
    gap: 8px;
}

.ar-home-featured-panel .ar-section-head-actions > .ar-button {
    min-height: 44px;
    padding: 9px 14px;
    white-space: nowrap;
}

.ar-home-featured-panel .ar-home-favorites {
    width: auto;
    margin: 0;
    justify-content: flex-start;
}

.ar-home-favorites[hidden] {
    display: none !important;
}

.ar-home-featured-panel .ar-home-favorites__privacy {
    display: none;
}

.ar-home-product-card {
    grid-template-columns: minmax(124px, 35%) minmax(0, 65%);
    border-color: var(--ar-card-line);
    border-radius: 22px;
    background: linear-gradient(145deg, #ffffff 0%, #ffffff 72%, #f7fbff 100%);
    box-shadow: 0 10px 28px rgba(30, 74, 123, 0.06);
}

.ar-home-product-card.is-featured::before {
    position: absolute;
    z-index: 2;
    inset: 0 auto 0 0;
    width: 3px;
    background: linear-gradient(180deg, var(--ar-card-blue), #27c9ee 62%, #8be9de);
    content: "";
}

.ar-home-product-card:hover {
    border-color: rgba(16, 98, 255, 0.42);
    box-shadow: 0 18px 40px rgba(18, 80, 145, 0.12);
}

.ar-home-product-content {
    min-height: 420px;
    padding: 20px 20px 17px;
}

.ar-home-product-card p {
    min-height: 36px;
    -webkit-line-clamp: 2;
}

.ar-home-product-highlights {
    margin-top: 11px;
    padding: 10px 0;
}

.ar-home-product-meta {
    gap: 12px;
    padding-top: 10px;
}

.ar-home-product-meta span {
    max-width: 72%;
}

.ar-home-product-meta strong {
    color: var(--ar-card-blue);
    font-size: 13px;
    font-variant-numeric: tabular-nums;
    font-weight: 900;
}

.ar-home-product-tools {
    display: flex;
    min-height: 44px;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    margin-top: 7px;
    padding-top: 5px;
    border-top: 1px solid #edf3fa;
}

.ar-home-product-tools small {
    color: #7a899c;
    font-size: 9px;
    font-weight: 780;
    letter-spacing: 0.015em;
    white-space: nowrap;
}

.ar-home-product-tools .ar-compare-toggle--home {
    min-height: 44px;
    gap: 7px;
    padding: 0 3px 0 0;
    border: 0;
    color: #49617c;
    background: transparent;
    box-shadow: none;
    font-size: 10.5px;
}

.ar-home-product-tools .ar-compare-toggle--home svg {
    box-sizing: content-box;
    width: 14px;
    height: 14px;
    padding: 5px;
    border: 1px solid #d7e4f2;
    border-radius: 9px;
    color: #31567d;
    background: var(--ar-card-tint);
    stroke-width: 1.65;
    transition: color 180ms ease, border-color 180ms ease, background-color 180ms ease;
}

.ar-home-product-tools .ar-compare-toggle--home:hover,
.ar-home-product-tools .ar-compare-toggle--home:focus-visible {
    border: 0;
    color: var(--ar-card-blue);
    background: transparent;
    box-shadow: none;
}

.ar-home-product-tools .ar-compare-toggle--home:hover svg,
.ar-home-product-tools .ar-compare-toggle--home:focus-visible svg {
    border-color: #8fb8ef;
    color: var(--ar-card-blue);
    background: #eaf4ff;
}

.ar-home-product-tools .ar-compare-toggle--home.is-selected {
    color: #08745a;
    background: transparent;
}

.ar-home-product-tools .ar-compare-toggle--home.is-selected svg {
    border-color: #94d7c7;
    color: #08745a;
    background: #eaf9f4;
}

.ar-home-product-actions {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 3px;
    margin-top: 7px;
    padding: 3px;
    overflow: hidden;
    border: 1px solid #cfdff0;
    border-radius: 14px;
    background: #edf4fb;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.92);
}

.ar-home-product-actions .ar-button,
.ar-home-product-actions .ar-button:visited {
    width: 100%;
    min-width: 0;
    min-height: 44px;
    gap: 7px;
    margin: 0;
    padding: 8px 9px;
    border: 0;
    border-radius: 10px;
    box-shadow: none;
    font-size: 11.5px;
    font-weight: 900;
    line-height: 1;
    transform: none;
}

.ar-home-product-actions .ar-button:hover,
.ar-home-product-actions .ar-button:active {
    transform: none;
}

.ar-home-product-actions .ar-button:focus-visible {
    outline: 3px solid rgba(16, 98, 255, 0.34);
    outline-offset: 1px;
}

.ar-home-product-actions .ar-button:only-child {
    grid-column: 1 / -1;
}

.ar-home-product-actions svg {
    width: 15px;
    height: 15px;
    stroke-width: 1.75;
}

.ar-home-product-actions .ar-home-article-button,
.ar-home-product-actions .ar-home-article-button:visited {
    border: 0;
    color: #173d68 !important;
    background: #ffffff !important;
}

.ar-home-product-actions .ar-home-article-button:hover,
.ar-home-product-actions .ar-home-article-button:active {
    border: 0;
    color: #084ebc !important;
    background: #e7f2ff !important;
}

.ar-home-product-actions .ar-home-buy-button,
.ar-home-product-actions .ar-home-buy-button:visited {
    border: 0;
    color: #ffffff !important;
    background: linear-gradient(135deg, var(--ar-card-blue), #0a54d4) !important;
    box-shadow: 0 7px 16px rgba(16, 98, 255, 0.20);
}

.ar-home-product-actions .ar-home-buy-button:hover,
.ar-home-product-actions .ar-home-buy-button:active {
    border: 0;
    color: #ffffff !important;
    background: linear-gradient(135deg, var(--ar-card-blue-dark), #05368f) !important;
    box-shadow: 0 9px 20px rgba(7, 70, 183, 0.26);
}

@media (max-width: 900px) {
    .ar-home-featured-panel .ar-section-head {
        align-items: flex-start;
    }

    .ar-section-head-actions {
        width: 100%;
        max-width: none;
        justify-content: flex-start;
    }

    .ar-home-product-card {
        grid-template-columns: 1fr;
    }

    .ar-home-product-content {
        min-height: 0;
    }
}

@media (max-width: 420px) {
    .ar-home-product-actions {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .ar-home-product-actions .ar-button {
        min-width: 0;
        padding-inline: 7px;
    }

    .ar-home-product-tools small {
        font-size: 8.5px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .ar-home-product-card,
    .ar-home-product-tools .ar-compare-toggle--home svg,
    .ar-home-product-actions .ar-button {
        transition: none;
    }

    .ar-home-product-card:hover {
        transform: none;
    }
}

/* Home decision controls and floating favorites (0.7.27) */
.ar-home-favorites {
    position: fixed;
    z-index: 99982;
    right: max(18px, env(safe-area-inset-right));
    bottom: calc(18px + env(safe-area-inset-bottom));
    display: block;
    width: auto;
    max-width: calc(100vw - 36px);
    margin: 0;
}

.ar-home-favorites[hidden] {
    display: none !important;
}

.ar-home-favorites__toggle {
    min-height: 48px;
    gap: 7px;
    padding: 7px 9px 7px 13px;
    border-color: rgba(171, 198, 227, 0.88);
    border-radius: 999px;
    color: #173d68;
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0 14px 34px rgba(7, 20, 47, 0.17);
    backdrop-filter: blur(14px);
}

.ar-home-favorites__toggle > svg {
    width: 17px;
    height: 17px;
}

.ar-home-favorites__toggle b {
    min-width: 22px;
    height: 22px;
}

.ar-home-favorites__toggle i {
    margin-left: 1px;
}

.ar-home-favorites__panel {
    top: auto;
    right: 0;
    bottom: calc(100% + 11px);
    width: min(420px, calc(100vw - 36px));
    max-height: min(520px, calc(100dvh - 118px));
    overflow: auto;
    overscroll-behavior: contain;
}

.ar-home-favorites__list {
    max-height: 360px;
    overflow: auto;
    overscroll-behavior: contain;
}

.ar-comparator-tray-visible .ar-home-favorites {
    bottom: calc(112px + env(safe-area-inset-bottom));
}

.ar-home-product-tools {
    min-height: 44px;
    justify-content: center;
    margin-top: 6px;
    padding-top: 4px;
}

.ar-home-product-tools .ar-compare-toggle--home {
    min-height: 44px;
    gap: 6px;
    padding: 0 9px;
    border: 0;
    border-radius: 999px;
    color: #617188;
    background: transparent;
    box-shadow: none;
    font-size: 10.5px;
    font-weight: 820;
}

.ar-home-product-tools .ar-compare-toggle--home svg {
    box-sizing: border-box;
    width: 15px;
    height: 15px;
    padding: 0;
    border: 0;
    border-radius: 0;
    color: #526b87;
    background: transparent;
}

.ar-home-product-tools .ar-compare-toggle--home:hover,
.ar-home-product-tools .ar-compare-toggle--home:focus-visible {
    color: #0b55ce;
    background: #edf5ff;
}

.ar-home-product-tools .ar-compare-toggle--home:hover svg,
.ar-home-product-tools .ar-compare-toggle--home:focus-visible svg {
    border: 0;
    color: #0b55ce;
    background: transparent;
}

.ar-home-product-tools .ar-compare-toggle--home.is-selected {
    color: #08745a;
    background: #eaf9f4;
}

.ar-home-product-tools .ar-compare-toggle--home.is-selected svg {
    border: 0;
    color: #08745a;
    background: transparent;
}

.ar-home-product-actions {
    grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
    gap: 2px;
    padding: 3px;
}

.ar-home-product-actions .ar-button,
.ar-home-product-actions .ar-button:visited {
    min-height: 46px;
    justify-content: center;
    gap: 6px;
    padding: 9px 8px;
    font-size: 12.5px;
    white-space: nowrap;
}

.ar-home-product-actions .ar-button::after {
    margin-left: 3px;
    font-size: 18px;
}

.ar-home-product-actions .ar-home-buy-button,
.ar-home-product-actions .ar-home-buy-button:visited {
    gap: 0;
}

@media (max-width: 620px) {
    .ar-comparator-tray-visible .ar-home-favorites {
        bottom: calc(96px + env(safe-area-inset-bottom));
    }
}

@media (max-width: 480px) {
    .ar-home-favorites {
        right: max(12px, env(safe-area-inset-right));
        bottom: calc(12px + env(safe-area-inset-bottom));
        max-width: calc(100vw - 24px);
    }

    .ar-home-favorites__toggle {
        width: 48px;
        padding: 0;
        justify-content: center;
    }

    .ar-home-favorites__toggle > span,
    .ar-home-favorites__toggle i {
        display: none;
    }

    .ar-home-favorites__toggle b {
        position: absolute;
        top: -4px;
        right: -4px;
        min-width: 20px;
        height: 20px;
        border: 2px solid #fff;
    }

    .ar-home-favorites__panel {
        position: fixed;
        right: 12px;
        bottom: calc(70px + env(safe-area-inset-bottom));
        width: calc(100vw - 24px);
        max-height: calc(100dvh - 94px - env(safe-area-inset-bottom));
    }

    .ar-comparator-tray-visible .ar-home-favorites {
        bottom: calc(94px + env(safe-area-inset-bottom));
    }

    .ar-comparator-tray-visible .ar-home-favorites__panel {
        bottom: calc(152px + env(safe-area-inset-bottom));
        max-height: calc(100dvh - 176px - env(safe-area-inset-bottom));
    }
}

@media (max-width: 360px) {
    .ar-comparator-tray-visible .ar-home-favorites {
        bottom: calc(154px + env(safe-area-inset-bottom));
    }

    .ar-comparator-tray-visible .ar-home-favorites__panel {
        bottom: calc(212px + env(safe-area-inset-bottom));
        max-height: calc(100dvh - 236px - env(safe-area-inset-bottom));
    }
}

@media (prefers-reduced-motion: reduce) {
    .ar-home-favorites__toggle,
    .ar-home-product-tools .ar-compare-toggle--home,
    .ar-home-product-tools .ar-compare-toggle--home svg,
    .ar-home-product-actions .ar-button {
        transition: none;
    }
}

/* Stabilité responsive, pagination et comparateur — 0.7.28 */
body.ar-home-takeover,
body.ar-page-takeover {
    max-width: 100%;
    overflow-x: hidden;
}

.ar-article-layout > *,
.ar-article-content,
.ar-editorial-intro,
.ar-selection-wordpress-content,
.ar-brand-intro,
.ar-brand-story,
.ar-prose {
    min-width: 0;
    max-width: 100%;
}

.ar-prose {
    overflow-wrap: anywhere;
    word-break: normal;
}

.ar-prose :where(figure, .wp-block-image, .wp-block-gallery, .wp-block-embed, .wp-block-table) {
    width: 100% !important;
    max-width: 100% !important;
    margin-right: 0 !important;
    margin-left: 0 !important;
}

.ar-prose :where(.alignwide, .alignfull) {
    right: auto !important;
    left: auto !important;
    width: 100% !important;
    max-width: 100% !important;
    margin-right: 0 !important;
    margin-left: 0 !important;
    transform: none !important;
}

.ar-prose :where(img, picture, video, iframe, embed, object, canvas, svg) {
    max-width: 100% !important;
}

.ar-prose :where(img, video) {
    height: auto !important;
}

.ar-prose :where(iframe, embed, object) {
    width: 100% !important;
}

.ar-prose .wp-block-embed__wrapper {
    max-width: 100%;
    overflow: hidden;
}

.ar-prose :where(pre, .wp-block-code) {
    max-width: 100%;
    overflow-x: auto;
    white-space: pre;
    -webkit-overflow-scrolling: touch;
}

.ar-prose :where(table, .wp-block-table) {
    max-width: 100%;
    overflow-x: auto;
    overscroll-behavior-x: contain;
    -webkit-overflow-scrolling: touch;
}

.ar-prose > table {
    display: block;
    width: 100% !important;
}

.ar-prose :where(p, li, td, th, figcaption, a) {
    overflow-wrap: anywhere;
}

.ar-pagination {
    display: flex;
    max-width: 100%;
    justify-content: center;
    margin: 34px auto 4px;
}

.ar-pagination__list {
    display: flex;
    max-width: 100%;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 9px;
    margin: 0;
    padding: 10px;
    border: 1px solid #e2e7ec;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0 14px 34px rgba(7, 20, 47, 0.08);
    list-style: none;
}

.ar-pagination__page > a,
.ar-pagination__page > span,
.ar-pagination__ellipsis > span {
    display: grid;
    width: 48px;
    min-width: 48px;
    height: 48px;
    place-items: center;
    border: 1px solid #cfe0f4;
    border-radius: 50%;
    color: #164b9c;
    background: #f2f8ff;
    font-size: 16px;
    font-weight: 850;
    line-height: 1;
    text-decoration: none;
    transition: border-color 180ms ease, color 180ms ease, background-color 180ms ease, box-shadow 180ms ease;
}

.ar-pagination__page > span[aria-current="page"] {
    color: #fff;
    border-color: #1062ff;
    background: linear-gradient(145deg, #0753dc, #159fe9);
    box-shadow: 0 10px 22px rgba(16, 98, 255, 0.24);
}

.ar-pagination__page > a:hover {
    color: #0753dc;
    border-color: #7eb5f5;
    background: #fff;
}

.ar-pagination__ellipsis > span {
    border-color: #d7e6f8;
    color: #536a88;
    background: #f7fbff;
    cursor: default;
}

.ar-pagination__direction > a {
    display: inline-flex;
    min-height: 48px;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px 20px;
    border: 1px solid #cfe0f4;
    border-radius: 999px;
    color: #164b9c;
    background: #eef6ff;
    font-size: 14px;
    font-weight: 850;
    line-height: 1.15;
    text-align: center;
    text-decoration: none;
    transition: border-color 180ms ease, color 180ms ease, background-color 180ms ease;
}

.ar-pagination__direction > a:hover {
    color: #0753dc;
    border-color: #7eb5f5;
    background: #fff;
}

.ar-pagination :where(a, span[aria-current="page"]):focus-visible {
    outline: 3px solid rgba(16, 98, 255, 0.3);
    outline-offset: 3px;
}

.ar-comparator-workspace,
.ar-comparator-toolbar,
.ar-comparator-table-scroll {
    min-width: 0;
    max-width: 100%;
}

.ar-comparator-toolbar h2,
.ar-comparator-table :where(th, td, a, span) {
    overflow-wrap: anywhere;
}

.ar-comparator-table-scroll {
    width: 100%;
    scrollbar-color: #8fb7e6 #edf5fd;
    scrollbar-width: thin;
}

.ar-comparator-table-scroll:focus-visible {
    outline: 3px solid rgba(16, 98, 255, 0.28);
    outline-offset: 3px;
}

@media (max-width: 620px) {
    .ar-pagination {
        margin-top: 26px;
    }

    .ar-pagination__list {
        width: 100%;
        gap: 6px;
        padding: 8px;
        border-radius: 24px;
    }

    .ar-pagination__page > a,
    .ar-pagination__page > span,
    .ar-pagination__ellipsis > span {
        width: 44px;
        min-width: 44px;
        height: 44px;
        font-size: 14px;
    }

    .ar-pagination__direction > a {
        min-height: 44px;
        padding-inline: 13px;
        font-size: 12px;
    }

    .ar-comparator-workspace {
        padding: 14px;
    }

    .ar-comparator-toolbar h2 {
        max-width: 100%;
        font-size: clamp(26px, 8vw, 36px);
        line-height: 1.08;
        text-wrap: balance;
    }

    .ar-comparator-table {
        --ar-comparator-label-column: 102px;
        --ar-comparator-product-column: max(160px, calc(100vw - 160px));
        width: max-content;
        table-layout: fixed;
    }

    .ar-comparator-table.has-2-products {
        min-width: calc(var(--ar-comparator-label-column) + (2 * var(--ar-comparator-product-column)));
    }

    .ar-comparator-table.has-3-products {
        min-width: calc(var(--ar-comparator-label-column) + (3 * var(--ar-comparator-product-column)));
    }

    .ar-comparator-table.has-4-products {
        min-width: calc(var(--ar-comparator-label-column) + (4 * var(--ar-comparator-product-column)));
    }

    .ar-comparator-table tr > :first-child {
        width: var(--ar-comparator-label-column);
        min-width: var(--ar-comparator-label-column);
        padding: 11px 9px;
    }

    .ar-comparator-table tr > :not(:first-child) {
        width: var(--ar-comparator-product-column);
        min-width: var(--ar-comparator-product-column);
        padding: 12px 10px;
    }

    .ar-comparator-table tbody th span {
        font-size: 11.5px;
    }

    .ar-comparator-product-image {
        width: min(96px, calc(var(--ar-comparator-product-column) - 26px));
        height: 76px;
    }

    .ar-comparator-product-name {
        max-width: calc(var(--ar-comparator-product-column) - 16px);
        font-size: 13px;
    }

    .ar-comparator-mobile-hint {
        display: flex;
        align-items: center;
        gap: 7px;
        color: #405b7c;
        font-size: 12px;
        font-weight: 750;
    }

    .ar-comparator-mobile-hint::before {
        color: #1062ff;
        content: "↔";
        font-size: 17px;
        line-height: 1;
    }
}

@media (max-width: 420px) {
    .ar-pagination__direction {
        flex: 1 1 auto;
    }

    .ar-pagination__direction > a {
        width: 100%;
    }

    .ar-prose {
        font-size: 16px;
        line-height: 1.72;
    }
}

@media (prefers-reduced-motion: reduce) {
    .ar-pagination a {
        transition: none;
    }
}

/* Confinement mobile du hub Meilleurs aspirateurs robots — 0.7.29 */
.ar-selection-page {
    width: 100%;
    min-width: 0;
    max-width: 100%;
}

.ar-selection-page main {
    width: 100%;
    min-width: 0;
    max-width: 100%;
    grid-template-columns: minmax(0, 1fr);
}

.ar-selection-page main > *,
.ar-selection-page .ar-selection-hero-inner,
.ar-selection-page .ar-selection-hero-copy,
.ar-selection-page .ar-section-head,
.ar-selection-page .ar-section-head > div,
.ar-selection-page .ar-selection-filter-section,
.ar-selection-page .ar-selection-products-section,
.ar-selection-page .ar-selection-table-section,
.ar-selection-page .ar-selection-method-section,
.ar-selection-page .ar-selection-faq-section,
.ar-selection-page .ar-selection-wordpress-content,
.ar-selection-page .ar-selection-method-cta,
.ar-selection-page .ar-selection-filter-grid,
.ar-selection-page .ar-selection-product-grid,
.ar-selection-page .ar-selection-filter-card,
.ar-selection-page .ar-selection-filter-copy,
.ar-selection-page .ar-selection-product-copy,
.ar-selection-page .ar-selection-product-decision,
.ar-selection-page .ar-selection-product-actions {
    min-width: 0;
    max-width: 100%;
}

.ar-selection-page .ar-selection-hero-copy h1,
.ar-selection-page .ar-section-head h2,
.ar-selection-page .ar-selection-filter-copy strong,
.ar-selection-page .ar-selection-filter-copy small,
.ar-selection-page .ar-selection-product-copy h3,
.ar-selection-page .ar-selection-product-copy p,
.ar-selection-page .ar-selection-wordpress-content :where(h2, h3, h4, p, li, a) {
    max-width: 100%;
    overflow-wrap: break-word;
    word-break: normal;
}

.ar-selection-page .ar-selection-hero-copy h1,
.ar-selection-page .ar-section-head h2 {
    text-wrap: balance;
}

.ar-selection-page .ar-selection-hero-actions .ar-button,
.ar-selection-page .ar-selection-signals span {
    max-width: 100%;
    white-space: normal;
}

.ar-selection-page .ar-selection-table-scroll {
    display: block;
    width: 100%;
    min-width: 0;
    max-width: 100%;
    contain: inline-size;
    overscroll-behavior-x: contain;
}

@media (max-width: 760px) {
    .ar-selection-page .ar-selection-hero-inner {
        gap: 24px;
    }

    .ar-selection-page .ar-selection-hero-copy .ar-breadcrumb {
        margin-bottom: 22px;
    }

    .ar-selection-page .ar-selection-hero-copy h1,
    .ar-selection-page .ar-selection-hero.is-child .ar-selection-hero-copy h1 {
        font-size: clamp(38px, 11.2vw, 54px);
        line-height: 1;
    }

    .ar-selection-page .ar-selection-hero-actions {
        display: grid;
        grid-template-columns: 1fr;
    }

    .ar-selection-page .ar-selection-hero-actions .ar-button {
        width: 100%;
    }

    .ar-selection-page .ar-selection-signals {
        width: 100%;
    }

    .ar-selection-page .ar-selection-hero-map {
        width: min(66vw, 238px);
        justify-self: center;
    }

    .ar-selection-page .ar-section-head {
        width: 100%;
        gap: 18px;
    }

    .ar-selection-page .ar-section-head .ar-button {
        max-width: 100%;
        justify-self: stretch;
    }

    .ar-selection-page .ar-selection-filter-grid,
    .ar-selection-page .ar-selection-product-grid {
        grid-template-columns: minmax(0, 1fr);
    }

    .ar-selection-page .ar-selection-compare-table {
        min-width: 760px;
    }
}

@media (max-width: 580px) {
    .ar-selection-page .ar-shell {
        width: calc(100% - 28px);
        min-width: 0;
        max-width: calc(100% - 28px);
    }

    .ar-selection-page .ar-selection-hero {
        padding-top: 26px;
    }

    .ar-selection-page .ar-selection-hero-copy .ar-lead {
        font-size: 17px;
        line-height: 1.55;
    }

    .ar-selection-page .ar-selection-signals {
        display: grid;
        grid-template-columns: 1fr;
    }

    .ar-selection-page .ar-selection-signals span {
        width: 100%;
        justify-content: center;
        text-align: center;
    }

    .ar-selection-page .ar-selection-filter-section,
    .ar-selection-page .ar-selection-products-section,
    .ar-selection-page .ar-selection-table-section,
    .ar-selection-page .ar-selection-method-section,
    .ar-selection-page .ar-selection-faq-section,
    .ar-selection-page .ar-selection-wordpress-content,
    .ar-selection-page .ar-selection-method-cta {
        padding: clamp(17px, 5vw, 20px);
    }

    .ar-selection-page .ar-selection-filter-card {
        width: 100%;
        grid-template-columns: 48px minmax(0, 1fr) auto;
    }

    .ar-selection-page .ar-selection-filter-count {
        min-width: 42px;
    }

    .ar-selection-page .ar-selection-product-decision {
        flex-wrap: wrap;
    }

    .ar-selection-page .ar-selection-product-meta {
        min-width: 0;
        flex: 1 1 180px;
        flex-wrap: wrap;
    }

    .ar-selection-page .ar-selection-product-actions {
        width: 100%;
    }

    .ar-selection-page .ar-selection-product-actions .ar-button,
    .ar-selection-page .ar-selection-product-actions .ar-text-link {
        width: 100%;
        min-height: 44px;
        justify-content: center;
        text-align: center;
    }
}

@media (max-width: 360px) {
    .ar-selection-page .ar-selection-hero-copy h1,
    .ar-selection-page .ar-selection-hero.is-child .ar-selection-hero-copy h1 {
        font-size: 36px;
    }

    .ar-selection-page .ar-selection-filter-card {
        grid-template-columns: 44px minmax(0, 1fr);
        grid-template-rows: auto auto;
    }

    .ar-selection-page .ar-selection-filter-count {
        grid-column: 2;
        justify-items: start;
    }
}

/* Orbite de décision du hero principal — 0.7.30 */
.ar-selection-parent .ar-selection-decision-orbit {
    position: relative;
    isolation: isolate;
    display: block;
    width: min(100%, 340px);
    overflow: visible;
    border: 0;
    border-radius: 0;
    background: none;
    box-shadow: none;
}

.ar-selection-parent .ar-selection-decision-orbit::before {
    position: absolute;
    z-index: -1;
    inset: 10%;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(36, 200, 244, 0.2) 0%, rgba(16, 98, 255, 0.08) 45%, transparent 72%);
    filter: blur(8px);
    content: "";
}

.ar-selection-decision-ring,
.ar-selection-decision-route {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
}

.ar-selection-decision-ring {
    border: 1.5px solid rgba(16, 98, 255, 0.22);
}

.ar-selection-decision-ring.is-outer {
    inset: 1%;
}

.ar-selection-decision-ring.is-middle {
    inset: 17%;
    border-color: rgba(16, 98, 255, 0.28);
}

.ar-selection-decision-ring.is-inner {
    inset: 34%;
    border-color: rgba(16, 98, 255, 0.2);
}

.ar-selection-decision-route {
    inset: 9%;
    border: 1.5px dashed rgba(36, 200, 244, 0.46);
    border-right-color: transparent;
    border-bottom-color: transparent;
    transform: rotate(-19deg);
}

.ar-selection-decision-node {
    position: absolute;
    z-index: 3;
    width: 18px;
    height: 18px;
    border: 4px solid rgba(255, 255, 255, 0.96);
    border-radius: 50%;
    background: var(--ar-selection-blue);
    box-shadow:
        0 0 0 10px rgba(16, 98, 255, 0.1),
        0 9px 20px rgba(16, 98, 255, 0.2);
    animation: ar-selection-node-pulse 3.4s ease-in-out infinite;
}

.ar-selection-decision-node.is-budget {
    top: 11%;
    left: 48%;
}

.ar-selection-decision-node.is-floor {
    right: 8%;
    bottom: 27%;
    animation-delay: -1.1s;
}

.ar-selection-decision-node.is-usage {
    bottom: 25%;
    left: 12%;
    background: var(--ar-selection-cyan);
    animation-delay: -2.2s;
}

.ar-selection-decision-robot {
    position: absolute;
    z-index: 2;
    top: 50%;
    left: 50%;
    display: grid;
    width: 104px;
    height: 104px;
    place-items: center;
    border: 8px solid rgba(255, 255, 255, 0.95);
    border-radius: 50%;
    color: var(--ar-selection-blue);
    background: linear-gradient(145deg, #ffffff 8%, #e7f7ff 100%);
    box-shadow:
        0 22px 46px rgba(16, 98, 255, 0.2),
        inset 0 0 0 1px rgba(16, 98, 255, 0.13);
    transform: translate(-50%, -50%);
}

.ar-selection-decision-robot svg {
    width: 78px;
    height: 78px;
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 2.3;
}

.ar-selection-decision-robot svg .is-filled {
    fill: currentColor;
    stroke: none;
}

.ar-selection-decision-count {
    position: absolute;
    z-index: 4;
    right: -3%;
    bottom: 1%;
    display: inline-flex;
    min-height: 48px;
    align-items: center;
    gap: 8px;
    padding: 8px 13px 8px 10px;
    border: 1px solid rgba(16, 98, 255, 0.15);
    border-radius: 999px;
    color: #4d6380;
    background: rgba(255, 255, 255, 0.92);
    box-shadow: 0 14px 34px rgba(16, 98, 255, 0.12);
    backdrop-filter: blur(10px);
}

.ar-selection-parent .ar-selection-decision-count strong {
    position: static;
    display: grid;
    width: 31px;
    height: 31px;
    place-items: center;
    border-radius: 50%;
    color: #fff;
    background: linear-gradient(145deg, var(--ar-selection-blue), var(--ar-selection-cyan));
    font-size: 15px;
    font-weight: 900;
    letter-spacing: -0.02em;
    line-height: 1;
}

.ar-selection-decision-count small {
    max-width: 72px;
    font-size: 10px;
    font-weight: 850;
    line-height: 1.15;
}

@keyframes ar-selection-node-pulse {
    0%,
    100% {
        box-shadow:
            0 0 0 8px rgba(16, 98, 255, 0.08),
            0 9px 20px rgba(16, 98, 255, 0.18);
    }

    50% {
        box-shadow:
            0 0 0 12px rgba(16, 98, 255, 0.13),
            0 11px 24px rgba(16, 98, 255, 0.24);
    }
}

@media (max-width: 1024px) {
    .ar-selection-parent .ar-selection-decision-orbit {
        width: min(100%, 280px);
    }

    .ar-selection-decision-robot {
        width: 92px;
        height: 92px;
    }

    .ar-selection-decision-robot svg {
        width: 68px;
        height: 68px;
    }
}

@media (max-width: 760px) {
    .ar-selection-parent .ar-selection-decision-orbit {
        width: min(68vw, 248px);
        margin: 2px auto 18px;
        justify-self: center;
    }

    .ar-selection-decision-count {
        right: -7%;
        bottom: -4%;
    }
}

@media (max-width: 360px) {
    .ar-selection-parent .ar-selection-decision-orbit {
        width: 218px;
    }

    .ar-selection-decision-robot {
        width: 82px;
        height: 82px;
        border-width: 6px;
    }

    .ar-selection-decision-robot svg {
        width: 60px;
        height: 60px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .ar-selection-decision-node {
        animation: none;
    }
}

/* Marques et duels 0.8.0 */
.ar-brand-decision-page .ar-brand-podium,
.ar-brand-decision-page .ar-brand-catalog,
.ar-brand-decision-page .ar-brand-related-duels,
.ar-brands-hub .ar-brand-related-duels,
.ar-brand-duels-page .ar-brand-duels-list,
.ar-brand-duels-page .ar-brand-duel-method,
.ar-brand-duels-page .ar-brand-duel-snapshot,
.ar-brand-duels-page .ar-brand-duel-matrix,
.ar-brand-duels-page .ar-brand-duel-picks {
    margin-top: 18px;
    padding: clamp(22px, 3vw, 32px);
    border: 1px solid rgba(211, 228, 249, 0.96);
    border-radius: 28px;
    background: rgba(255, 255, 255, 0.92);
    box-shadow: 0 18px 50px rgba(18, 80, 145, 0.085);
}

.ar-brand-ranking-note {
    display: inline-flex;
    align-items: center;
    min-height: 34px;
    margin: -5px 0 20px;
    padding: 7px 11px;
    border: 1px solid #d7e6f8;
    border-radius: 999px;
    color: #52627a;
    background: #f6fbff;
    font-size: 11px;
    font-weight: 750;
}

.ar-brand-podium-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
}

.ar-brand-podium-grid.has-1-items {
    grid-template-columns: minmax(0, 620px);
}

.ar-brand-podium-grid.has-2-items {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.ar-brand-top-card {
    position: relative;
    display: flex;
    min-width: 0;
    flex-direction: column;
    overflow: hidden;
    border: 1px solid #d7e6f8;
    border-radius: 22px;
    background: #fff;
    box-shadow: 0 14px 34px rgba(16, 98, 255, 0.075);
    transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.ar-brand-top-card:hover {
    border-color: rgba(16, 98, 255, 0.48);
    box-shadow: 0 20px 48px rgba(16, 98, 255, 0.13);
    transform: translateY(-2px);
}

.ar-brand-top-card.is-rank-1 {
    border-color: rgba(16, 98, 255, 0.44);
    box-shadow: 0 20px 52px rgba(16, 98, 255, 0.15);
}

.ar-brand-top-rank {
    position: absolute;
    z-index: 4;
    top: 14px;
    left: 14px;
    display: grid;
    min-width: 58px;
    min-height: 58px;
    place-content: center;
    padding: 6px;
    border: 1px solid rgba(255, 255, 255, 0.68);
    border-radius: 17px;
    color: #fff;
    background: linear-gradient(145deg, #0753dc, #18aef6);
    box-shadow: 0 10px 24px rgba(16, 98, 255, 0.25);
    text-align: center;
}

.ar-brand-top-rank small,
.ar-brand-top-rank strong {
    display: block;
}

.ar-brand-top-rank small {
    font-size: 8px;
    font-weight: 850;
    letter-spacing: 0.08em;
    line-height: 1;
    text-transform: uppercase;
}

.ar-brand-top-rank strong {
    margin-top: 3px;
    font-size: 22px;
    font-weight: 920;
    line-height: 1;
}

.ar-brand-top-media {
    position: relative;
    aspect-ratio: 1.34;
    min-height: 220px;
    overflow: hidden;
    border-bottom: 1px solid #d7e6f8;
    background:
        radial-gradient(circle at 50% 55%, rgba(36, 200, 244, 0.17), transparent 46%),
        linear-gradient(145deg, #f9fcff, #eaf6ff);
}

.ar-brand-top-media > a:not(.ar-favorite-toggle) {
    display: block;
    width: 100%;
    height: 100%;
}

.ar-brand-top-media img,
.ar-brand-top-media .ar-image-fallback {
    width: 100%;
    height: 100%;
    padding: 22px;
    object-fit: contain;
    background: transparent;
}

.ar-brand-top-media .ar-favorite-toggle--brand,
.ar-brand-catalog-media .ar-favorite-toggle--brand-catalog {
    position: absolute;
    z-index: 5;
    top: 14px;
    right: 14px;
}

.ar-brand-top-score {
    position: absolute;
    right: 14px;
    bottom: 14px;
    display: inline-flex;
    align-items: baseline;
    min-height: 42px;
    gap: 2px;
    padding: 8px 11px;
    border: 1px solid rgba(16, 98, 255, 0.16);
    border-radius: 13px;
    color: #0753dc;
    background: rgba(255, 255, 255, 0.92);
    box-shadow: 0 8px 22px rgba(16, 98, 255, 0.12);
}

.ar-brand-top-score strong {
    font-size: 20px;
    font-weight: 920;
}

.ar-brand-top-score small {
    font-size: 10px;
    font-weight: 850;
}

.ar-brand-top-body {
    display: flex;
    min-width: 0;
    flex: 1;
    flex-direction: column;
    padding: 22px;
}

.ar-brand-top-label {
    min-height: 32px;
    margin: 0 0 7px;
    color: #1062ff;
    font-size: 10px;
    font-weight: 880;
    letter-spacing: 0.08em;
    line-height: 1.45;
    text-transform: uppercase;
}

.ar-brand-top-body h3 {
    margin: 0;
    color: #07142f;
    font-size: clamp(22px, 2vw, 27px);
    font-weight: 920;
    letter-spacing: -0.052em;
    line-height: 1.05;
    overflow-wrap: anywhere;
}

.ar-brand-top-body h3 a:hover {
    color: #1062ff;
}

.ar-brand-top-strengths {
    display: grid;
    gap: 8px;
    margin: 17px 0 0;
    padding: 0;
    list-style: none;
}

.ar-brand-top-strengths li {
    display: grid;
    grid-template-columns: 17px minmax(0, 1fr);
    align-items: start;
    gap: 7px;
    color: #34455c;
    font-size: 12px;
    line-height: 1.42;
}

.ar-brand-top-strengths .ar-evidence-icon {
    width: 17px;
    color: #0e8b68;
}

.ar-brand-profile {
    display: grid;
    gap: 8px;
    margin-top: 18px;
    padding: 13px;
    border: 1px solid #dce9f7;
    border-radius: 14px;
    background: #f8fcff;
}

.ar-brand-profile > div {
    display: grid;
    grid-template-columns: 58px minmax(42px, 1fr) 35px;
    align-items: center;
    gap: 7px;
    color: #596a80;
    font-size: 9px;
    font-weight: 800;
}

.ar-brand-profile i {
    height: 5px;
    overflow: hidden;
    border-radius: 999px;
    background: #dce8f5;
}

.ar-brand-profile b {
    display: block;
    height: 100%;
    border-radius: inherit;
    background: linear-gradient(90deg, #1062ff, #24c8f4);
}

.ar-brand-profile strong {
    color: #27405f;
    font-size: 9px;
    font-variant-numeric: tabular-nums;
    text-align: right;
}

.ar-brand-top-limit {
    display: grid;
    gap: 3px;
    margin: 14px 0 0;
    padding: 10px 11px;
    border-left: 3px solid #e0a31b;
    border-radius: 0 10px 10px 0;
    color: #594925;
    background: #fff9e9;
    font-size: 11px;
    line-height: 1.42;
}

.ar-brand-top-limit strong {
    font-size: 9px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.ar-brand-top-purchase {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 12px;
    margin-top: auto;
    padding-top: 18px;
}

.ar-brand-top-purchase span {
    color: #6b788b;
    font-size: 9px;
    line-height: 1.3;
}

.ar-brand-top-purchase strong {
    color: #07142f;
    font-size: 20px;
    font-weight: 920;
    font-variant-numeric: tabular-nums;
    white-space: nowrap;
}

.ar-brand-top-tools {
    display: flex;
    justify-content: flex-end;
    min-height: 44px;
    margin-top: 10px;
}

.ar-brand-top-tools .ar-compare-toggle--brand,
.ar-brand-catalog-footer .ar-compare-toggle--brand-catalog,
.ar-brand-duel-pick-actions .ar-compare-toggle--brand-duel {
    min-height: 44px;
    border-color: transparent;
    background: transparent;
    box-shadow: none;
}

.ar-brand-top-actions,
.ar-brand-catalog-footer > div,
.ar-brand-duel-pick-actions {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    overflow: hidden;
    border: 1px solid #bcd5f4;
    border-radius: 13px;
}

.ar-brand-top-actions > a,
.ar-brand-catalog-footer > div > a,
.ar-brand-duel-pick-actions > a {
    display: inline-flex;
    min-width: 0;
    min-height: 44px;
    align-items: center;
    justify-content: center;
    padding: 9px 10px;
    color: #0d4fae;
    background: #f7fbff;
    font-size: 11px;
    font-weight: 880;
    text-align: center;
    transition: color 160ms ease, background 160ms ease;
}

.ar-brand-top-actions > a:hover,
.ar-brand-top-actions > a:focus-visible,
.ar-brand-catalog-footer > div > a:hover,
.ar-brand-catalog-footer > div > a:focus-visible,
.ar-brand-duel-pick-actions > a:hover,
.ar-brand-duel-pick-actions > a:focus-visible {
    color: #0753dc;
    background: #eaf4ff;
}

.ar-brand-top-actions > a.is-buy,
.ar-brand-catalog-footer > div > a.is-buy,
.ar-brand-duel-pick-actions > a.is-buy {
    color: #fff;
    background: #0753dc;
}

.ar-brand-top-actions > a.is-buy:hover,
.ar-brand-top-actions > a.is-buy:focus-visible,
.ar-brand-catalog-footer > div > a.is-buy:hover,
.ar-brand-catalog-footer > div > a.is-buy:focus-visible,
.ar-brand-duel-pick-actions > a.is-buy:hover,
.ar-brand-duel-pick-actions > a.is-buy:focus-visible {
    color: #fff;
    background: #063eaa;
}

.ar-brand-top-actions > a + a,
.ar-brand-catalog-footer > div > a + a,
.ar-brand-duel-pick-actions > a + a {
    border-left: 1px solid #bcd5f4;
}

.ar-brand-top-actions > a:only-child,
.ar-brand-catalog-footer > div > a:only-child {
    grid-column: 1 / -1;
}

.ar-brand-catalog-list {
    display: grid;
    gap: 12px;
}

.ar-brand-catalog-card {
    position: relative;
    display: grid;
    grid-template-columns: 46px minmax(150px, 190px) minmax(0, 1fr);
    min-width: 0;
    overflow: hidden;
    border: 1px solid #d7e6f8;
    border-radius: 18px;
    background: #fff;
    box-shadow: 0 10px 28px rgba(16, 98, 255, 0.055);
    transition: border-color 180ms ease, box-shadow 180ms ease;
}

.ar-brand-catalog-card:hover {
    border-color: rgba(16, 98, 255, 0.42);
    box-shadow: 0 15px 36px rgba(16, 98, 255, 0.1);
}

.ar-brand-catalog-rank {
    display: grid;
    place-items: center;
    color: #1062ff;
    border-right: 1px solid #d7e6f8;
    background: #f6fbff;
    font-size: 12px;
    font-weight: 920;
    font-variant-numeric: tabular-nums;
}

.ar-brand-catalog-media {
    position: relative;
    min-width: 0;
    border-right: 1px solid #d7e6f8;
    background: linear-gradient(145deg, #fbfdff, #edf8ff);
}

.ar-brand-catalog-media > a:not(.ar-favorite-toggle) {
    display: block;
    width: 100%;
    height: 100%;
    min-height: 176px;
}

.ar-brand-catalog-media img,
.ar-brand-catalog-media .ar-image-fallback {
    width: 100%;
    height: 100%;
    min-height: 176px;
    padding: 16px;
    object-fit: contain;
    background: transparent;
}

.ar-brand-catalog-main {
    display: grid;
    min-width: 0;
    gap: 13px;
    padding: 18px 20px;
}

.ar-brand-catalog-heading {
    display: flex;
    min-width: 0;
    align-items: start;
    justify-content: space-between;
    gap: 20px;
}

.ar-brand-catalog-heading > div:first-child {
    min-width: 0;
}

.ar-brand-catalog-heading small {
    display: block;
    margin-bottom: 3px;
    color: #1062ff;
    font-size: 9px;
    font-weight: 850;
    letter-spacing: 0.07em;
    text-transform: uppercase;
}

.ar-brand-catalog-heading h3 {
    margin: 0;
    color: #07142f;
    font-size: clamp(20px, 2vw, 25px);
    font-weight: 920;
    letter-spacing: -0.05em;
    line-height: 1.06;
    overflow-wrap: anywhere;
}

.ar-brand-catalog-numbers {
    display: grid;
    flex: 0 0 auto;
    justify-items: end;
    gap: 2px;
}

.ar-brand-catalog-numbers strong {
    color: #1062ff;
    font-size: 17px;
    font-weight: 920;
}

.ar-brand-catalog-numbers span {
    color: #07142f;
    font-size: 13px;
    font-weight: 850;
}

.ar-brand-catalog-evidence {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
}

.ar-brand-catalog-evidence p {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    align-items: start;
    gap: 7px;
    margin: 0;
    padding: 9px 10px;
    border-radius: 10px;
    color: #415169;
    background: #f6fbff;
    font-size: 10px;
    line-height: 1.4;
}

.ar-brand-catalog-evidence p.is-limit {
    background: #fff9e9;
}

.ar-brand-catalog-evidence strong {
    color: #0e7b5d;
    font-size: 9px;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.ar-brand-catalog-evidence .is-limit strong {
    color: #8b6412;
}

.ar-brand-catalog-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.ar-brand-catalog-footer > div {
    width: min(100%, 230px);
}

.ar-brand-related-duels {
    padding-bottom: 28px !important;
}

.ar-brand-duel-card-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
}

.ar-brand-duel-card {
    min-width: 0;
    overflow: hidden;
    border: 1px solid #d7e6f8;
    border-radius: 20px;
    background: #fff;
    box-shadow: 0 12px 32px rgba(16, 98, 255, 0.075);
    transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.ar-brand-duel-card:hover {
    border-color: rgba(16, 98, 255, 0.44);
    box-shadow: 0 18px 42px rgba(16, 98, 255, 0.13);
    transform: translateY(-2px);
}

.ar-brand-duel-card-head {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 42px minmax(0, 1fr);
    align-items: center;
    min-height: 176px;
    gap: 8px;
    padding: 20px;
    border-bottom: 1px solid #d7e6f8;
    background:
        radial-gradient(circle at 16% 25%, rgba(36, 200, 244, 0.19), transparent 28%),
        radial-gradient(circle at 84% 75%, rgba(152, 241, 234, 0.2), transparent 30%),
        linear-gradient(145deg, #f9fcff, #eaf6ff);
}

.ar-brand-duel-card-head > span {
    display: grid;
    min-width: 0;
    justify-items: center;
    gap: 7px;
}

.ar-brand-duel-card-head b {
    display: grid;
    width: 72px;
    max-width: 100%;
    aspect-ratio: 1;
    place-items: center;
    border: 1px solid rgba(16, 98, 255, 0.2);
    border-radius: 50%;
    color: #fff;
    background: linear-gradient(145deg, #0753dc, #18aef6);
    box-shadow: 0 12px 28px rgba(16, 98, 255, 0.18);
    font-size: 21px;
    font-weight: 920;
}

.ar-brand-duel-card-head small {
    max-width: 100%;
    color: #29415f;
    font-size: 10px;
    font-weight: 850;
    line-height: 1.2;
    overflow-wrap: anywhere;
    text-align: center;
}

.ar-brand-duel-card-head i {
    display: grid;
    width: 40px;
    height: 40px;
    place-items: center;
    border: 1px solid #cfe2f7;
    border-radius: 50%;
    color: #1062ff;
    background: #fff;
    font-size: 10px;
    font-style: normal;
    font-weight: 920;
}

.ar-brand-duel-card-body {
    padding: 20px;
}

.ar-brand-duel-card-body > small {
    color: #1062ff;
    font-size: 9px;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.ar-brand-duel-card-body h3 {
    margin: 5px 0 0;
    color: #07142f;
    font-size: 24px;
    font-weight: 920;
    letter-spacing: -0.05em;
    line-height: 1.05;
    overflow-wrap: anywhere;
}

.ar-brand-duel-card-body > p {
    margin: 11px 0 0;
    color: #596a80;
    font-size: 12px;
    line-height: 1.5;
}

.ar-brand-duel-card-data {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 7px;
    margin-top: 16px;
}

.ar-brand-duel-card-data span {
    display: grid;
    min-width: 0;
    gap: 2px;
    padding: 9px;
    border-radius: 10px;
    color: #607088;
    background: #f6fbff;
    font-size: 9px;
}

.ar-brand-duel-card-data strong {
    color: #1062ff;
    font-size: 12px;
}

.ar-brand-duel-card-body .ar-text-link {
    display: inline-flex;
    min-height: 44px;
    align-items: center;
    margin-top: 11px;
    color: #1062ff;
    font-size: 11px;
    font-weight: 880;
}

.ar-brand-duels-hero,
.ar-brand-duel-hero {
    display: grid;
    grid-template-columns: minmax(0, 0.96fr) minmax(380px, 1.04fr);
    align-items: center;
    gap: 28px;
    padding: 34px 0 28px;
}

.ar-brand-duels-hero h1,
.ar-brand-duel-hero h1 {
    max-width: 730px;
    margin: 10px 0 0;
    color: #07142f;
    font-size: clamp(42px, 5vw, 70px);
    font-weight: 920;
    letter-spacing: -0.064em;
    line-height: 0.97;
    overflow-wrap: anywhere;
}

.ar-brand-duels-hero .ar-lead,
.ar-brand-duel-hero .ar-lead {
    max-width: 680px;
    margin-top: 18px;
    color: #44546b;
    font-size: clamp(16px, 1.4vw, 19px);
}

.ar-brand-duels-compass,
.ar-brand-duel-versus {
    min-width: 0;
    padding: clamp(26px, 4vw, 44px);
    border: 1px solid rgba(198, 222, 247, 0.96);
    border-radius: 28px;
    background:
        radial-gradient(circle at 78% 17%, rgba(36, 200, 244, 0.28), transparent 34%),
        radial-gradient(circle at 18% 78%, rgba(152, 241, 234, 0.23), transparent 33%),
        linear-gradient(145deg, rgba(255, 255, 255, 0.97), rgba(225, 244, 255, 0.95));
    box-shadow: 0 24px 70px rgba(16, 98, 255, 0.13);
}

.ar-brand-duels-compass {
    min-height: 430px;
}

.ar-brand-duels-compass-visual {
    display: grid;
    grid-template-columns: 1fr 54px 1fr;
    align-items: center;
    gap: 9px;
    margin-bottom: 40px;
}

.ar-brand-duels-compass-visual span {
    display: grid;
    aspect-ratio: 1;
    place-items: center;
    border: 1px solid #cae0f8;
    border-radius: 50%;
    color: #fff;
    background: linear-gradient(145deg, #0753dc, #18aef6);
    box-shadow: 0 16px 38px rgba(16, 98, 255, 0.18);
    font-size: clamp(28px, 4vw, 46px);
    font-weight: 920;
}

.ar-brand-duels-compass-visual i {
    display: grid;
    width: 52px;
    height: 52px;
    place-items: center;
    border-radius: 50%;
    color: #1062ff;
    background: #fff;
    box-shadow: 0 10px 24px rgba(16, 98, 255, 0.11);
    font-size: 11px;
    font-style: normal;
    font-weight: 920;
}

.ar-brand-duels-compass h2 {
    margin: 7px 0 0;
    color: #07142f;
    font-size: clamp(28px, 3vw, 40px);
    font-weight: 920;
    letter-spacing: -0.055em;
    line-height: 1.02;
}

.ar-brand-duels-stats {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 9px;
    margin-top: 22px;
}

.ar-brand-duels-stats span {
    display: grid;
    gap: 2px;
    padding: 12px;
    border: 1px solid #d2e4f8;
    border-radius: 13px;
    color: #52627a;
    background: rgba(255, 255, 255, 0.78);
    font-size: 10px;
}

.ar-brand-duels-stats strong {
    color: #1062ff;
    font-size: 23px;
    font-weight: 920;
}

.ar-brand-duels-intro {
    padding: clamp(24px, 4vw, 38px);
    border: 1px solid rgba(211, 228, 249, 0.92);
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.9);
    box-shadow: 0 18px 50px rgba(18, 80, 145, 0.075);
}

.ar-brand-duel-method-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
}

.ar-brand-duel-method-grid article {
    min-width: 0;
    padding: 21px;
    border: 1px solid #d7e6f8;
    border-radius: 17px;
    background: #f9fcff;
}

.ar-brand-duel-method-grid span {
    display: inline-flex;
    min-height: 30px;
    align-items: center;
    padding: 5px 9px;
    border-radius: 999px;
    color: #fff;
    background: #1062ff;
    font-size: 9px;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.ar-brand-duel-method-grid h3 {
    margin: 14px 0 0;
    color: #07142f;
    font-size: 21px;
    font-weight: 920;
    letter-spacing: -0.04em;
}

.ar-brand-duel-method-grid p {
    margin: 8px 0 0;
    color: #596a80;
    font-size: 12px;
}

.ar-brand-duel-versus {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 58px minmax(0, 1fr);
    align-items: center;
    min-height: 380px;
    gap: 10px;
}

.ar-brand-duel-versus > a {
    display: grid;
    min-width: 0;
    min-height: 230px;
    align-content: center;
    justify-items: center;
    gap: 8px;
    padding: 16px 8px;
    border: 1px solid rgba(16, 98, 255, 0.14);
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.72);
    text-align: center;
    transition: border-color 180ms ease, background 180ms ease;
}

.ar-brand-duel-versus > a:hover {
    border-color: rgba(16, 98, 255, 0.46);
    background: #fff;
}

.ar-brand-duel-versus > a b {
    display: grid;
    width: min(105px, 80%);
    aspect-ratio: 1;
    place-items: center;
    border-radius: 50%;
    color: #fff;
    background: linear-gradient(145deg, #0753dc, #18aef6);
    box-shadow: 0 16px 34px rgba(16, 98, 255, 0.2);
    font-size: 30px;
    font-weight: 920;
}

.ar-brand-duel-versus > a strong {
    max-width: 100%;
    color: #07142f;
    font-size: 16px;
    font-weight: 920;
    line-height: 1.1;
    overflow-wrap: anywhere;
}

.ar-brand-duel-versus > a small {
    color: #66758a;
    font-size: 9px;
    line-height: 1.35;
}

.ar-brand-duel-versus > i {
    display: grid;
    width: 56px;
    height: 56px;
    place-items: center;
    border-radius: 50%;
    color: #fff;
    background: #07142f;
    box-shadow: 0 12px 30px rgba(7, 20, 47, 0.2);
    font-size: 11px;
    font-style: normal;
    font-weight: 920;
}

.ar-brand-duel-trust {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 22px;
}

.ar-brand-duel-trust span {
    display: inline-flex;
    min-height: 34px;
    align-items: center;
    padding: 6px 10px;
    border: 1px solid #d7e6f8;
    border-radius: 999px;
    color: #53647a;
    background: #fff;
    font-size: 10px;
    font-weight: 800;
}

.ar-brand-duel-editor-note {
    margin: 0 0 18px;
    padding: 13px 16px;
    border-left: 4px solid #d29a1b;
    color: #5e4a1e;
    background: #fff8e4;
    font-size: 12px;
}

.ar-brand-duel-snapshot-grid,
.ar-brand-duel-picks-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}

.ar-brand-duel-snapshot-grid > article {
    min-width: 0;
    padding: 22px;
    border: 1px solid #d7e6f8;
    border-radius: 18px;
    background: #f9fcff;
}

.ar-brand-duel-snapshot-head {
    display: flex;
    align-items: center;
    gap: 13px;
}

.ar-brand-duel-snapshot-head > span {
    display: grid;
    width: 58px;
    height: 58px;
    flex: 0 0 auto;
    place-items: center;
    border-radius: 50%;
    color: #fff;
    background: linear-gradient(145deg, #0753dc, #18aef6);
    font-weight: 920;
}

.ar-brand-duel-snapshot-head small {
    color: #1062ff;
    font-size: 9px;
    font-weight: 880;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.ar-brand-duel-snapshot-head h3 {
    margin: 2px 0 0;
    color: #07142f;
    font-size: 25px;
    font-weight: 920;
    letter-spacing: -0.05em;
}

.ar-brand-duel-snapshot-grid dl {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 7px;
    margin: 18px 0 0;
}

.ar-brand-duel-snapshot-grid dl > div {
    min-width: 0;
    padding: 10px;
    border-radius: 10px;
    background: #fff;
}

.ar-brand-duel-snapshot-grid dt {
    color: #68778b;
    font-size: 8px;
    font-weight: 800;
    line-height: 1.25;
    text-transform: uppercase;
}

.ar-brand-duel-snapshot-grid dd {
    margin: 5px 0 0;
    color: #1062ff;
    font-size: 14px;
    font-weight: 920;
    line-height: 1.15;
    overflow-wrap: anywhere;
}

.ar-brand-duel-snapshot-grid > article > a {
    display: inline-flex;
    min-height: 44px;
    align-items: center;
    margin-top: 10px;
    color: #1062ff;
    font-size: 11px;
    font-weight: 880;
}

.ar-brand-duel-matrix-table {
    overflow: hidden;
    border: 1px solid #d7e6f8;
    border-radius: 17px;
}

.ar-brand-duel-matrix-row {
    display: grid;
    grid-template-columns: minmax(130px, 1.15fr) repeat(2, minmax(0, 1fr));
    min-width: 0;
}

.ar-brand-duel-matrix-row + .ar-brand-duel-matrix-row {
    border-top: 1px solid #d7e6f8;
}

.ar-brand-duel-matrix-row > * {
    min-width: 0;
    padding: 13px 15px;
    overflow-wrap: anywhere;
}

.ar-brand-duel-matrix-row > * + * {
    border-left: 1px solid #d7e6f8;
}

.ar-brand-duel-matrix-row span {
    color: #5d6c80;
    background: #f8fbff;
    font-size: 11px;
    font-weight: 800;
}

.ar-brand-duel-matrix-row b {
    color: #203750;
    background: #fff;
    font-size: 12px;
    font-weight: 860;
    font-variant-numeric: tabular-nums;
}

.ar-brand-duel-matrix-row.is-head strong {
    color: #fff;
    background: #0b4db6;
    font-size: 11px;
    font-weight: 900;
}

.ar-brand-duel-pick {
    display: grid;
    grid-template-columns: minmax(150px, 0.72fr) minmax(0, 1.28fr);
    min-width: 0;
    overflow: hidden;
    border: 1px solid #d7e6f8;
    border-radius: 18px;
    background: #fff;
}

.ar-brand-duel-pick-media {
    min-width: 0;
    background: linear-gradient(145deg, #fbfdff, #eaf6ff);
}

.ar-brand-duel-pick-media img,
.ar-brand-duel-pick-media .ar-image-fallback {
    width: 100%;
    height: 100%;
    min-height: 290px;
    padding: 18px;
    object-fit: contain;
    background: transparent;
}

.ar-brand-duel-pick > div {
    min-width: 0;
    padding: 20px;
}

.ar-brand-duel-pick > div > small {
    color: #1062ff;
    font-size: 9px;
    font-weight: 880;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.ar-brand-duel-pick h3 {
    margin: 4px 0 0;
    color: #07142f;
    font-size: 24px;
    font-weight: 920;
    letter-spacing: -0.05em;
    line-height: 1.05;
    overflow-wrap: anywhere;
}

.ar-brand-duel-pick > div > p {
    margin: 9px 0 0;
    color: #596a80;
    font-size: 11px;
}

.ar-brand-duel-pick-numbers {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    margin-top: 13px;
    padding: 9px 10px;
    border-radius: 10px;
    background: #f6fbff;
}

.ar-brand-duel-pick-numbers strong {
    color: #1062ff;
    font-size: 17px;
    font-weight: 920;
}

.ar-brand-duel-pick-numbers span {
    color: #07142f;
    font-size: 13px;
    font-weight: 880;
}

.ar-brand-duel-pick p.is-strength,
.ar-brand-duel-pick p.is-limit {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    gap: 7px;
    padding: 8px 9px;
    border-radius: 9px;
    background: #f4fbf8;
}

.ar-brand-duel-pick p.is-limit {
    background: #fff9e9;
}

.ar-brand-duel-pick p.is-strength strong {
    color: #0e7b5d;
}

.ar-brand-duel-pick p.is-limit strong {
    color: #8b6412;
}

.ar-brand-duel-pick-actions {
    grid-template-columns: auto repeat(2, minmax(0, 1fr));
    align-items: center;
    margin-top: 14px;
    border: 0;
    border-radius: 0;
}

.ar-brand-duel-pick-actions .ar-compare-toggle--brand-duel {
    margin-right: 8px;
}

.ar-brand-duel-pick-actions > a {
    border-top: 1px solid #bcd5f4;
    border-bottom: 1px solid #bcd5f4;
}

.ar-brand-duel-pick-actions > a:nth-of-type(1) {
    border-left: 1px solid #bcd5f4;
    border-radius: 12px 0 0 12px;
}

.ar-brand-duel-pick-actions > a:last-child {
    border-right: 1px solid #bcd5f4;
    border-radius: 0 12px 12px 0;
}

.ar-brand-duel-editorial-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 300px;
    align-items: start;
    gap: 18px;
    margin-top: 18px;
}

.ar-brand-duel-editorial {
    min-width: 0;
    padding: clamp(26px, 4vw, 42px);
    border: 1px solid rgba(211, 228, 249, 0.92);
    border-radius: 28px;
    background: rgba(255, 255, 255, 0.92);
    box-shadow: 0 18px 50px rgba(18, 80, 145, 0.085);
}

@media (max-width: 1080px) {
    .ar-brand-podium-grid,
    .ar-brand-duel-card-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .ar-brand-podium-grid.has-3-items .ar-brand-top-card:first-child {
        grid-column: span 2;
    }

    .ar-brand-podium-grid.has-3-items .ar-brand-top-card:first-child {
        display: grid;
        grid-template-columns: minmax(260px, 0.85fr) minmax(0, 1.15fr);
    }

    .ar-brand-podium-grid.has-3-items .ar-brand-top-card:first-child .ar-brand-top-media {
        height: 100%;
        aspect-ratio: auto;
        border-right: 1px solid #d7e6f8;
        border-bottom: 0;
    }

    .ar-brand-duels-hero,
    .ar-brand-duel-hero {
        grid-template-columns: 1fr;
    }

    .ar-brand-duels-compass,
    .ar-brand-duel-versus {
        min-height: 0;
    }
}

@media (max-width: 860px) {
    .ar-brand-catalog-card {
        grid-template-columns: 42px minmax(135px, 165px) minmax(0, 1fr);
    }

    .ar-brand-catalog-heading {
        display: grid;
        gap: 9px;
    }

    .ar-brand-catalog-numbers {
        grid-template-columns: auto auto;
        justify-content: start;
        justify-items: start;
        gap: 10px;
    }

    .ar-brand-catalog-evidence {
        grid-template-columns: 1fr;
    }

    .ar-brand-duel-method-grid {
        grid-template-columns: 1fr;
    }

    .ar-brand-duel-pick {
        grid-template-columns: 1fr;
    }

    .ar-brand-duel-pick-media img,
    .ar-brand-duel-pick-media .ar-image-fallback {
        min-height: 220px;
        max-height: 270px;
    }

    .ar-brand-duel-editorial-layout {
        grid-template-columns: 1fr;
    }

    .ar-brand-duel-editorial-layout .ar-brand-side {
        position: static;
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 700px) {
    .ar-brand-decision-page .ar-brand-podium,
    .ar-brand-decision-page .ar-brand-catalog,
    .ar-brand-decision-page .ar-brand-related-duels,
    .ar-brands-hub .ar-brand-related-duels,
    .ar-brand-duels-page .ar-brand-duels-list,
    .ar-brand-duels-page .ar-brand-duel-method,
    .ar-brand-duels-page .ar-brand-duel-snapshot,
    .ar-brand-duels-page .ar-brand-duel-matrix,
    .ar-brand-duels-page .ar-brand-duel-picks {
        padding: 20px;
        border-radius: 22px;
    }

    .ar-brand-podium-grid,
    .ar-brand-podium-grid.has-1-items,
    .ar-brand-podium-grid.has-2-items,
    .ar-brand-duel-card-grid,
    .ar-brand-duel-snapshot-grid,
    .ar-brand-duel-picks-grid {
        grid-template-columns: 1fr;
    }

    .ar-brand-podium-grid.has-3-items .ar-brand-top-card:first-child {
        grid-column: auto;
        display: flex;
    }

    .ar-brand-podium-grid.has-3-items .ar-brand-top-card:first-child .ar-brand-top-media {
        height: auto;
        aspect-ratio: 1.34;
        border-right: 0;
        border-bottom: 1px solid #d7e6f8;
    }

    .ar-brand-ranking-note {
        display: flex;
        border-radius: 12px;
        line-height: 1.35;
    }

    .ar-brand-catalog-card {
        grid-template-columns: 1fr;
    }

    .ar-brand-catalog-rank {
        position: absolute;
        z-index: 4;
        top: 12px;
        left: 12px;
        width: 40px;
        height: 40px;
        border: 1px solid rgba(255, 255, 255, 0.75);
        border-radius: 12px;
        color: #fff;
        background: #1062ff;
        box-shadow: 0 8px 20px rgba(16, 98, 255, 0.22);
    }

    .ar-brand-catalog-media {
        min-height: 210px;
        border-right: 0;
        border-bottom: 1px solid #d7e6f8;
    }

    .ar-brand-catalog-media > a:not(.ar-favorite-toggle),
    .ar-brand-catalog-media img,
    .ar-brand-catalog-media .ar-image-fallback {
        min-height: 210px;
        max-height: 250px;
    }

    .ar-brand-catalog-main {
        padding: 18px;
    }

    .ar-brand-catalog-heading {
        display: flex;
    }

    .ar-brand-catalog-numbers {
        display: grid;
        grid-template-columns: 1fr;
        justify-items: end;
    }

    .ar-brand-duels-hero,
    .ar-brand-duel-hero {
        padding-top: 24px;
    }

    .ar-brand-duels-hero h1,
    .ar-brand-duel-hero h1 {
        font-size: clamp(38px, 11vw, 54px);
    }

    .ar-brand-duels-compass,
    .ar-brand-duel-versus {
        padding: 22px 18px;
        border-radius: 22px;
    }

    .ar-brand-duels-compass-visual {
        grid-template-columns: minmax(0, 1fr) 44px minmax(0, 1fr);
        margin-bottom: 28px;
    }

    .ar-brand-duels-compass-visual i {
        width: 42px;
        height: 42px;
    }

    .ar-brand-duel-versus {
        grid-template-columns: minmax(0, 1fr) 44px minmax(0, 1fr);
        gap: 6px;
    }

    .ar-brand-duel-versus > a {
        min-height: 188px;
        padding: 12px 5px;
        border-radius: 16px;
    }

    .ar-brand-duel-versus > a b {
        width: min(76px, 78%);
        font-size: 22px;
    }

    .ar-brand-duel-versus > a strong {
        font-size: 13px;
    }

    .ar-brand-duel-versus > i {
        width: 42px;
        height: 42px;
    }

    .ar-brand-duel-snapshot-grid dl {
        grid-template-columns: 1fr;
    }

    .ar-brand-duel-matrix {
        padding-inline: 12px !important;
    }

    .ar-brand-duel-matrix-row {
        grid-template-columns: minmax(86px, 1.1fr) repeat(2, minmax(0, 1fr));
    }

    .ar-brand-duel-matrix-row > * {
        padding: 10px 7px;
        font-size: 9px;
        line-height: 1.35;
    }

    .ar-brand-duel-pick-actions {
        grid-template-columns: 1fr 1fr;
    }

    .ar-brand-duel-pick-actions .ar-compare-toggle--brand-duel {
        grid-column: 1 / -1;
        margin: 0 0 6px;
    }

    .ar-brand-duel-editorial {
        padding: 24px 20px;
        border-radius: 22px;
    }

    .ar-brand-duel-editorial-layout .ar-brand-side {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 420px) {
    .ar-brand-top-media {
        min-height: 205px;
    }

    .ar-brand-top-body {
        padding: 19px;
    }

    .ar-brand-profile > div {
        grid-template-columns: 54px minmax(36px, 1fr) 33px;
    }

    .ar-brand-top-purchase,
    .ar-brand-catalog-heading,
    .ar-brand-catalog-footer {
        align-items: stretch;
        flex-direction: column;
    }

    .ar-brand-catalog-numbers {
        grid-template-columns: auto auto;
        justify-content: space-between;
        justify-items: start;
    }

    .ar-brand-catalog-footer > div {
        width: 100%;
    }

    .ar-brand-duels-stats {
        grid-template-columns: 1fr;
    }

    .ar-brand-duel-card-head {
        grid-template-columns: minmax(0, 1fr) 36px minmax(0, 1fr);
        padding: 16px 12px;
    }

    .ar-brand-duel-card-head b {
        width: 64px;
        font-size: 18px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .ar-brand-top-card,
    .ar-brand-duel-card {
        transition: none;
    }

    .ar-brand-top-card:hover,
    .ar-brand-duel-card:hover {
        transform: none;
    }
}

/* Filtres contextuels, provenance des scores et pagination bleue — 0.8.1 */
.ar-product-filters {
    position: relative;
    margin: 22px 0 26px;
    padding: clamp(20px, 3vw, 28px);
    overflow: hidden;
    border: 1px solid rgba(126, 181, 245, 0.42);
    border-radius: 24px;
    color: #fff;
    background:
        radial-gradient(circle at 8% 0%, rgba(36, 200, 244, 0.20), transparent 32%),
        radial-gradient(circle at 92% 110%, rgba(16, 98, 255, 0.28), transparent 38%),
        linear-gradient(125deg, #082b55 0%, #071d43 52%, #092c69 100%);
    box-shadow: 0 18px 42px rgba(7, 29, 67, 0.16);
}

.ar-product-filters__head {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 18px;
}

.ar-product-filters__head .ar-kicker {
    margin: 0 0 4px;
    color: #8edfff;
}

.ar-product-filters__head h3 {
    margin: 0;
    color: #fff;
    font-size: clamp(21px, 2.4vw, 29px);
    font-weight: 900;
    letter-spacing: -0.035em;
    line-height: 1.12;
}

.ar-product-filters__head > p {
    flex: 0 0 auto;
    margin: 0;
    color: rgba(255, 255, 255, 0.72);
    font-size: 12px;
    font-weight: 720;
}

.ar-product-filters__head > p strong {
    color: #fff;
    font-size: 17px;
    font-variant-numeric: tabular-nums;
}

.ar-product-filters__form {
    display: grid;
    grid-template-columns: repeat(4, minmax(145px, 1fr)) auto auto;
    align-items: end;
    gap: 12px;
}

.ar-product-filters__form.has-3-fields {
    grid-template-columns: repeat(3, minmax(165px, 1fr)) auto auto;
}

.ar-product-filters__form.has-2-fields {
    grid-template-columns: repeat(2, minmax(180px, 1fr)) auto auto;
}

.ar-product-filters__form.has-1-fields {
    grid-template-columns: minmax(220px, 1fr) auto auto;
}

.ar-product-filters__form label {
    display: grid;
    min-width: 0;
    gap: 7px;
}

.ar-product-filters__form label > span {
    color: rgba(224, 240, 255, 0.84);
    font-size: 10px;
    font-weight: 850;
    letter-spacing: 0.085em;
    text-transform: uppercase;
}

.ar-product-filters__form select {
    width: 100%;
    min-height: 50px;
    padding: 10px 38px 10px 14px;
    border: 1px solid rgba(174, 211, 250, 0.30);
    border-radius: 14px;
    color: #fff;
    background-color: rgba(255, 255, 255, 0.09);
    color-scheme: dark;
    cursor: pointer;
    font-size: 14px;
    font-weight: 760;
    outline: 0;
    transition: border-color 180ms ease, background-color 180ms ease, box-shadow 180ms ease;
}

.ar-product-filters__form select:hover {
    border-color: rgba(174, 211, 250, 0.58);
    background-color: rgba(255, 255, 255, 0.13);
}

.ar-product-filters__form select:focus-visible {
    border-color: #7edfff;
    box-shadow: 0 0 0 3px rgba(126, 223, 255, 0.24);
}

.ar-product-filters__submit,
.ar-product-filters__reset {
    display: inline-flex;
    min-height: 50px;
    align-items: center;
    justify-content: center;
    padding: 10px 17px;
    border-radius: 14px;
    cursor: pointer;
    font-size: 13px;
    font-weight: 850;
    line-height: 1;
    text-decoration: none;
    transition: border-color 180ms ease, color 180ms ease, background-color 180ms ease, box-shadow 180ms ease;
}

.ar-product-filters__submit {
    border: 1px solid #159fe9;
    color: #fff;
    background: linear-gradient(145deg, #1062ff, #0a79d9);
    box-shadow: 0 10px 24px rgba(16, 98, 255, 0.26);
}

.ar-product-filters__submit:hover {
    border-color: #8edfff;
    background: linear-gradient(145deg, #0753dc, #159fe9);
}

.ar-product-filters__reset {
    border: 1px solid rgba(174, 211, 250, 0.36);
    color: #dcecff;
    background: rgba(255, 255, 255, 0.06);
}

.ar-product-filters__reset:hover,
.ar-product-filters__reset.is-active {
    border-color: rgba(174, 211, 250, 0.72);
    color: #fff;
    background: rgba(255, 255, 255, 0.13);
}

.ar-product-filters__submit:focus-visible,
.ar-product-filters__reset:focus-visible {
    outline: 3px solid rgba(126, 223, 255, 0.42);
    outline-offset: 3px;
}

.ar-selection-product-signal-source,
.ar-selection-table-source {
    display: block;
    margin-top: -5px;
    color: #687c98;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.015em;
    line-height: 1.35;
}

.ar-selection-table-source {
    margin-top: 4px;
    color: #718198;
}

.ar-selection-product-copy > p:not(.ar-selection-product-signal):not(.ar-selection-product-limit):not(.ar-selection-product-signal-source) {
    min-height: 48px;
}

@media (max-width: 1120px) {
    .ar-product-filters__form,
    .ar-product-filters__form.has-3-fields,
    .ar-product-filters__form.has-2-fields,
    .ar-product-filters__form.has-1-fields {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 620px) {
    .ar-product-filters {
        margin-block: 18px 22px;
        padding: 18px;
        border-radius: 20px;
    }

    .ar-product-filters__head {
        align-items: flex-start;
        flex-direction: column;
        gap: 8px;
    }

    .ar-product-filters__form,
    .ar-product-filters__form.has-3-fields,
    .ar-product-filters__form.has-2-fields,
    .ar-product-filters__form.has-1-fields {
        grid-template-columns: 1fr;
    }

    .ar-product-filters__form select,
    .ar-product-filters__submit,
    .ar-product-filters__reset {
        width: 100%;
        min-height: 48px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .ar-product-filters__form select,
    .ar-product-filters__submit,
    .ar-product-filters__reset {
        transition: none;
    }
}

/* Fiches TEST/AVIS 0.8.2 — plateau de décision, offre et repères de confiance */
.ar-test-aligned .ar-decision-cluster {
    position: relative;
    margin-top: 18px;
    padding: 6px;
    overflow: hidden;
    border: 1px solid #c8ddf5;
    border-radius: 23px;
    background:
        radial-gradient(circle at 96% 0%, rgba(69, 188, 255, 0.14), transparent 34%),
        linear-gradient(145deg, #f8fbff 0%, #edf6ff 100%);
    box-shadow: 0 18px 38px rgba(19, 87, 160, 0.09);
}

.ar-test-aligned .ar-product-decision .ar-decision-cluster .ar-fit-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 6px;
    margin-top: 0;
}

.ar-test-aligned .ar-product-decision .ar-decision-cluster .ar-fit-card {
    display: grid;
    min-width: 0;
    min-height: 104px;
    grid-template-columns: 44px minmax(0, 1fr);
    align-items: center;
    gap: 13px;
    padding: 17px;
    border: 1px solid rgba(207, 225, 246, 0.96);
    border-radius: 17px;
    background: rgba(255, 255, 255, 0.94);
    box-shadow: 0 7px 18px rgba(29, 94, 160, 0.05);
}

.ar-test-aligned .ar-product-decision .ar-decision-cluster .ar-fit-card.is-caution {
    border-color: rgba(228, 196, 112, 0.78);
    background: linear-gradient(145deg, #fffdfa, #fff7e3);
}

.ar-test-aligned .ar-fit-icon {
    display: grid;
    width: 44px;
    height: 44px;
    place-items: center;
    border: 1px solid #c8defa;
    border-radius: 14px;
    color: #0b63e5;
    background: #eaf3ff;
}

.ar-test-aligned .ar-fit-card.is-caution .ar-fit-icon {
    border-color: #eed38c;
    color: #936108;
    background: #fff0c4;
}

.ar-test-aligned .ar-fit-icon svg {
    width: 22px;
    height: 22px;
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 1.7;
}

.ar-test-aligned .ar-fit-copy {
    display: block;
    min-width: 0;
}

.ar-test-aligned .ar-decision-cluster .ar-fit-grid small {
    margin-bottom: 6px;
    color: #60728b;
    font-size: 10px;
    letter-spacing: 0.11em;
}

.ar-test-aligned .ar-product-decision .ar-decision-cluster .ar-fit-grid strong {
    color: #1b2f4d;
    font-size: 14px;
    font-weight: 790;
    line-height: 1.46;
}

.ar-test-aligned .ar-decision-cluster .ar-hero-offer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    margin-top: 6px;
    padding: 14px 14px 14px 16px;
    border: 0;
    border-radius: 17px;
    color: #fff;
    background:
        radial-gradient(circle at 74% -40%, rgba(83, 220, 255, 0.16), transparent 42%),
        linear-gradient(118deg, #064dbf 0%, #0865cf 62%, #0b79cf 120%);
    box-shadow: 0 13px 26px rgba(4, 83, 193, 0.2);
}

.ar-test-aligned .ar-hero-offer-copy {
    display: grid;
    min-width: 0;
    max-width: none;
    grid-template-columns: 40px minmax(0, 1fr);
    align-items: center;
    gap: 12px;
    color: inherit;
}

.ar-test-aligned .ar-offer-icon {
    display: grid;
    width: 40px;
    height: 40px;
    max-width: none;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, 0.32);
    border-radius: 13px;
    color: #fff;
    background: rgba(255, 255, 255, 0.13);
}

.ar-test-aligned .ar-offer-icon svg {
    width: 21px;
    height: 21px;
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 1.7;
}

.ar-test-aligned .ar-hero-offer-text {
    display: block;
    min-width: 0;
    max-width: none;
    color: #fff;
}

.ar-test-aligned .ar-hero-offer-text small,
.ar-test-aligned .ar-hero-offer-text > span {
    display: block;
    max-width: none;
    color: inherit;
}

.ar-test-aligned .ar-hero-offer-text small {
    margin-bottom: 3px;
    color: #fff;
    font-size: 10px;
    font-weight: 900;
    letter-spacing: 0.12em;
    line-height: 1.25;
    text-transform: uppercase;
}

.ar-test-aligned .ar-hero-offer-text > span {
    color: #fff;
    font-size: 12px;
    font-weight: 720;
    line-height: 1.38;
}

.ar-test-aligned .ar-decision-cluster .ar-hero-offer .ar-button {
    min-width: 188px;
    min-height: 48px;
    flex: 0 0 auto;
    gap: 8px;
    border-color: #fff;
    color: #0757ca !important;
    background: #fff;
    box-shadow: 0 8px 20px rgba(4, 48, 120, 0.18);
}

.ar-test-aligned .ar-decision-cluster .ar-hero-offer .ar-button:hover {
    border-color: #e7f4ff;
    color: #063f98 !important;
    background: #e7f4ff;
}

.ar-test-aligned .ar-decision-cluster .ar-hero-offer .ar-button span {
    max-width: none;
    color: inherit;
    font-size: inherit;
    line-height: inherit;
}

.ar-test-aligned .ar-decision-cluster .ar-hero-offer .ar-button svg {
    width: 18px;
    height: 18px;
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 2;
    transition: transform 180ms ease;
}

.ar-test-aligned .ar-decision-cluster .ar-hero-offer .ar-button:hover svg {
    transform: translateX(2px);
}

.ar-test-aligned .ar-product-decision .ar-decision-cluster .ar-meta {
    display: grid;
    grid-template-columns: max-content max-content minmax(0, 1fr);
    align-items: center;
    gap: 12px 18px;
    margin-top: 0;
    padding: 14px 12px 10px;
    color: #5d708a;
    font-size: 11px;
    font-weight: 760;
}

.ar-test-aligned .ar-decision-cluster .ar-meta-item {
    display: inline-flex;
    min-width: 0;
    align-items: center;
    gap: 7px;
    line-height: 1.35;
}

.ar-test-aligned .ar-decision-cluster .ar-meta-item:last-child {
    justify-self: end;
}

.ar-test-aligned .ar-decision-cluster .ar-meta-item + .ar-meta-item::before {
    content: none;
}

.ar-test-aligned .ar-decision-cluster .ar-meta-item svg {
    width: 17px;
    height: 17px;
    flex: 0 0 auto;
    fill: none;
    stroke: #2571ca;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 1.55;
}

@media (max-width: 700px) {
    .ar-test-aligned .ar-decision-cluster {
        padding: 5px;
        border-radius: 20px;
    }

    .ar-test-aligned .ar-product-decision .ar-decision-cluster .ar-fit-grid {
        grid-template-columns: 1fr;
        gap: 5px;
    }

    .ar-test-aligned .ar-product-decision .ar-decision-cluster .ar-fit-card {
        min-height: 0;
        padding: 15px;
    }

    .ar-test-aligned .ar-decision-cluster .ar-hero-offer {
        align-items: stretch;
        flex-direction: column;
        gap: 13px;
        padding: 15px;
    }

    .ar-test-aligned .ar-decision-cluster .ar-hero-offer .ar-button {
        width: 100%;
        min-width: 0;
    }

    .ar-test-aligned .ar-product-decision .ar-decision-cluster .ar-meta {
        grid-template-columns: 1fr;
        gap: 9px;
        padding: 14px 12px 12px;
        font-size: 12px;
    }

    .ar-test-aligned .ar-decision-cluster .ar-meta-item:last-child {
        justify-self: start;
    }
}

@media (max-width: 380px) {
    .ar-test-aligned .ar-product-decision .ar-decision-cluster .ar-fit-card {
        grid-template-columns: 38px minmax(0, 1fr);
        gap: 10px;
        padding: 13px;
    }

    .ar-test-aligned .ar-fit-icon {
        width: 38px;
        height: 38px;
        border-radius: 12px;
    }

    .ar-test-aligned .ar-product-decision .ar-decision-cluster .ar-fit-grid strong {
        font-size: 13px;
    }

    .ar-test-aligned .ar-hero-offer-copy {
        grid-template-columns: 36px minmax(0, 1fr);
        gap: 9px;
    }

    .ar-test-aligned .ar-offer-icon {
        width: 36px;
        height: 36px;
        border-radius: 11px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .ar-test-aligned .ar-decision-cluster .ar-hero-offer .ar-button svg {
        transition: none;
    }

    .ar-test-aligned .ar-decision-cluster .ar-hero-offer .ar-button:hover svg {
        transform: none;
    }
}

/* Core 0.8.3 — offre TEST/AVIS lisible et favoris sur tous les parcours produit */
.ar-test-aligned .ar-decision-eyebrow-actions {
    display: flex;
    min-width: 0;
    align-items: center;
    justify-content: flex-end;
    gap: 10px;
}

.ar-test-aligned .ar-decision-eyebrow-actions > span {
    max-width: 210px;
    color: #68778d;
    font-size: 10px;
    font-weight: 780;
    line-height: 1.35;
    text-align: right;
}

.ar-test-aligned .ar-favorite-toggle--hero {
    position: static;
    display: inline-flex;
    width: auto;
    min-width: 44px;
    height: 44px;
    flex: 0 0 auto;
    gap: 8px;
    padding: 0 13px;
    border-color: #c8def8;
    border-radius: 12px;
    color: #24527f;
    background: #f5f9fe;
    box-shadow: none;
    backdrop-filter: none;
}

.ar-test-aligned .ar-favorite-toggle--hero .ar-favorite-toggle__hint {
    position: static;
    padding: 0;
    color: inherit;
    background: transparent;
    font-size: 11px;
    opacity: 1;
    transform: none;
}

.ar-test-aligned .ar-favorite-toggle--hero.is-selected .ar-favorite-toggle__hint {
    color: #fff;
}

.ar-test-aligned .ar-decision-cluster .ar-hero-offer {
    min-height: 76px;
    gap: 16px;
    padding: 12px 13px 12px 15px;
    background:
        radial-gradient(circle at 75% -65%, rgba(107, 225, 255, 0.2), transparent 45%),
        linear-gradient(118deg, #0648ad 0%, #0864cb 64%, #0879c7 120%);
}

.ar-test-aligned .ar-hero-offer-copy {
    grid-template-columns: 42px minmax(0, 1fr);
}

.ar-test-aligned .ar-offer-icon {
    width: 42px;
    height: 42px;
    border-color: rgba(255, 255, 255, 0.42);
    color: #fff;
    background: rgba(3, 35, 85, 0.2);
}

.ar-test-aligned .ar-hero-offer-text small,
.ar-test-aligned .ar-hero-offer-text strong,
.ar-test-aligned .ar-hero-offer-text > span {
    display: block;
    max-width: none;
    color: #fff !important;
}

.ar-test-aligned .ar-hero-offer-text small {
    margin: 0 0 2px;
    color: #fff !important;
    font-size: 9px;
    letter-spacing: 0.13em;
}

.ar-test-aligned .ar-hero-offer-text strong {
    font-size: 14px;
    font-weight: 880;
    line-height: 1.25;
}

.ar-test-aligned .ar-hero-offer-text > span {
    margin-top: 3px;
    color: #fff !important;
    font-size: 10px;
    font-weight: 650;
    line-height: 1.3;
}

.ar-home-2026 .ar-decision-cluster .ar-hero-offer .ar-button {
    min-width: 152px;
    min-height: 48px;
    padding: 10px 16px;
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 13px;
    color: #fff !important;
    background: rgba(3, 31, 76, 0.45);
    box-shadow: none;
}

.ar-home-2026 .ar-decision-cluster .ar-hero-offer .ar-button::after {
    display: none;
    content: none;
}

.ar-home-2026 .ar-decision-cluster .ar-hero-offer .ar-button:hover,
.ar-home-2026 .ar-decision-cluster .ar-hero-offer .ar-button:focus-visible {
    border-color: #fff;
    color: #0649ad !important;
    background: #fff;
    box-shadow: 0 8px 20px rgba(3, 31, 76, 0.18);
}

.ar-product-card,
.ar-shelf-card {
    position: relative;
}

.ar-favorite-toggle--selection,
.ar-favorite-toggle--card,
.ar-favorite-toggle--shelf,
.ar-favorite-toggle--quiz {
    position: absolute;
    z-index: 5;
}

.ar-favorite-toggle--selection {
    top: 12px;
    right: 12px;
}

.ar-favorite-toggle--card {
    top: 58px;
    right: 12px;
}

.ar-favorite-toggle--shelf {
    top: 12px;
    right: 12px;
}

.ar-favorite-toggle--quiz {
    top: 50px;
    right: 11px;
}

.ar-brand-duel-pick-media {
    position: relative;
    margin: 0;
}

.ar-brand-duel-pick-media > a:not(.ar-favorite-toggle) {
    display: block;
    width: 100%;
    height: 100%;
}

.ar-brand-duel-pick-media .ar-favorite-toggle--brand-duel {
    position: absolute;
    z-index: 5;
    top: 13px;
    right: 13px;
}

.ar-favorite-toggle--compact {
    position: static;
    flex: 0 0 auto;
    box-shadow: none;
}

.ar-favorite-toggle--comparator {
    position: static;
    border-color: rgba(255, 255, 255, 0.38);
    color: #fff;
    background: rgba(255, 255, 255, 0.12);
    box-shadow: none;
    backdrop-filter: none;
}

.ar-favorite-toggle--comparator:hover,
.ar-favorite-toggle--comparator:focus-visible {
    border-color: #fff;
    color: #0752d3;
    background: #fff;
}

.ar-favorite-toggle--comparator .ar-favorite-toggle__hint {
    display: none;
}

@media (max-width: 700px) {
    .ar-test-aligned .ar-decision-eyebrow {
        align-items: flex-start;
        flex-direction: column;
    }

    .ar-test-aligned .ar-decision-eyebrow-actions {
        width: 100%;
        justify-content: space-between;
    }

    .ar-test-aligned .ar-decision-eyebrow-actions > span {
        max-width: 190px;
        text-align: left;
    }

    .ar-test-aligned .ar-decision-cluster .ar-hero-offer {
        min-height: 0;
        padding: 14px;
    }

    .ar-home-2026 .ar-decision-cluster .ar-hero-offer .ar-button {
        width: 100%;
        min-width: 0;
    }
}

@media (max-width: 420px) {
    .ar-test-aligned .ar-favorite-toggle--hero {
        width: 44px;
        padding: 0;
    }

    .ar-test-aligned .ar-favorite-toggle--hero .ar-favorite-toggle__hint {
        display: none;
    }

    .ar-test-aligned .ar-decision-eyebrow-actions > span {
        max-width: calc(100% - 54px);
    }
}

@media (prefers-reduced-motion: reduce) {
    .ar-home-2026 .ar-decision-cluster .ar-hero-offer .ar-button,
    .ar-favorite-toggle {
        transition: none;
    }
}

/* Core 0.8.4 — verrouillage du contraste du bandeau marchand TEST/AVIS */
.ar-test-aligned .ar-decision-cluster .ar-hero-offer .ar-hero-offer-copy,
.ar-test-aligned .ar-decision-cluster .ar-hero-offer .ar-offer-icon,
.ar-test-aligned .ar-decision-cluster .ar-hero-offer .ar-hero-offer-text,
.ar-test-aligned .ar-decision-cluster .ar-hero-offer .ar-hero-offer-text small,
.ar-test-aligned .ar-decision-cluster .ar-hero-offer .ar-hero-offer-text strong,
.ar-test-aligned .ar-decision-cluster .ar-hero-offer .ar-hero-offer-text > span {
    color: #fff !important;
}

/* Core 0.8.4.1 — hub Entretien, maillage post-achat et navigation associée */
.ar-nav-guidance-submenu {
    right: 0;
    left: auto;
    width: min(430px, calc(100vw - 40px));
}

.ar-nav-guidance-submenu > a {
    min-height: 76px;
}

.ar-maintenance-hub {
    --ar-care-navy: #071b36;
    --ar-care-blue: #0d66e8;
    --ar-care-cyan: #28c7e9;
    --ar-care-line: #d5e6f7;
    --ar-care-soft: #eef8ff;
    color: #1a2b42;
}

.ar-maintenance-hub main {
    display: grid;
    gap: 18px;
    padding-bottom: 0;
}

.ar-maintenance-hero {
    display: grid;
    min-height: 520px;
    grid-template-columns: minmax(0, 1.04fr) minmax(340px, 0.96fr);
    align-items: center;
    gap: clamp(30px, 5vw, 72px);
    padding-block: 40px 30px;
}

.ar-maintenance-hero-copy {
    max-width: 720px;
}

.ar-maintenance-hero .ar-breadcrumb {
    margin-bottom: 22px;
}

.ar-maintenance-hero h1 {
    max-width: 760px;
    margin: 12px 0 20px;
    color: var(--ar-care-navy);
    font-family: var(--ar-sans);
    font-size: clamp(46px, 5.6vw, 76px);
    font-weight: 930;
    letter-spacing: -0.068em;
    line-height: 0.98;
}

.ar-maintenance-hero .ar-lead {
    max-width: 690px;
    margin: 0;
    color: #4b5e75;
    font-size: clamp(17px, 1.8vw, 21px);
    line-height: 1.62;
}

.ar-maintenance-console {
    position: relative;
    display: flex;
    min-height: 430px;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-end;
    padding: clamp(26px, 4vw, 44px);
    overflow: hidden;
    border: 1px solid rgba(154, 207, 246, 0.82);
    border-radius: 30px;
    background:
        radial-gradient(circle at 74% 24%, rgba(255, 255, 255, 0.9), transparent 18%),
        linear-gradient(145deg, #f6fdff 0%, #d9f1ff 45%, #a4ddff 100%);
    box-shadow: 0 26px 68px rgba(23, 111, 198, 0.16);
}

.ar-maintenance-console > p,
.ar-maintenance-console > strong,
.ar-maintenance-console > span,
.ar-maintenance-console > small {
    position: relative;
    z-index: 3;
}

.ar-maintenance-console > p {
    margin: 0 0 3px;
    color: #0b5fd2;
    font-size: 10px;
    font-weight: 900;
    letter-spacing: 0.13em;
    text-transform: uppercase;
}

.ar-maintenance-console > strong {
    color: var(--ar-care-navy);
    font-size: clamp(54px, 7vw, 82px);
    font-weight: 950;
    letter-spacing: -0.08em;
    line-height: 0.92;
}

.ar-maintenance-console > span {
    margin-top: 6px;
    color: #203d61;
    font-size: 14px;
    font-weight: 850;
}

.ar-maintenance-console > small {
    margin-top: 16px;
    padding: 7px 11px;
    border: 1px solid rgba(13, 102, 232, 0.18);
    border-radius: 999px;
    color: #355779;
    background: rgba(255, 255, 255, 0.72);
    font-size: 10px;
    font-weight: 800;
}

.ar-maintenance-route {
    position: absolute;
    z-index: 1;
    top: 34px;
    right: 28px;
    width: 76%;
    height: 62%;
    border: 2px dashed rgba(13, 102, 232, 0.25);
    border-bottom-color: transparent;
    border-left-color: transparent;
    border-radius: 52% 48% 54% 46%;
    transform: rotate(-8deg);
}

.ar-maintenance-route::before,
.ar-maintenance-route::after {
    position: absolute;
    border-radius: 50%;
    content: "";
}

.ar-maintenance-route::before {
    top: 18%;
    left: 15%;
    width: 138px;
    height: 138px;
    border: 18px solid rgba(255, 255, 255, 0.84);
    background: linear-gradient(145deg, #ffffff, #bfe7ff);
    box-shadow: 0 20px 42px rgba(8, 91, 181, 0.18), inset 0 0 0 2px rgba(13, 102, 232, 0.12);
}

.ar-maintenance-route::after {
    top: 12%;
    left: 10%;
    width: 14px;
    height: 14px;
    border: 5px solid rgba(255, 255, 255, 0.9);
    background: var(--ar-care-cyan);
    box-shadow: 0 8px 18px rgba(13, 102, 232, 0.25);
}

.ar-maintenance-route span,
.ar-maintenance-route i,
.ar-maintenance-route b {
    position: absolute;
    z-index: 2;
    display: block;
    width: 12px;
    height: 12px;
    border: 4px solid #fff;
    border-radius: 50%;
    background: var(--ar-care-blue);
    box-shadow: 0 6px 14px rgba(13, 102, 232, 0.23);
}

.ar-maintenance-route span {
    top: 4%;
    right: 18%;
}

.ar-maintenance-route i {
    right: 2%;
    bottom: 18%;
    background: #21b9d9;
}

.ar-maintenance-route b {
    bottom: -2%;
    left: 35%;
    background: #5cc8a8;
}

.ar-maintenance-topics,
.ar-maintenance-calendar,
.ar-maintenance-guide-section,
.ar-maintenance-start {
    padding: clamp(24px, 3.8vw, 42px);
    border: 1px solid rgba(203, 224, 246, 0.96);
    border-radius: 28px;
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 18px 52px rgba(20, 91, 157, 0.075);
}

.ar-maintenance-topics .ar-section-head,
.ar-maintenance-guide-section .ar-section-head {
    margin-bottom: 24px;
}

.ar-maintenance-topics .ar-section-head h2,
.ar-maintenance-guide-section .ar-section-head h2,
.ar-maintenance-calendar h2,
.ar-maintenance-start h2 {
    color: var(--ar-care-navy);
    font-family: var(--ar-sans);
    font-size: clamp(29px, 3.6vw, 44px);
    font-weight: 920;
    letter-spacing: -0.058em;
    line-height: 1.04;
}

.ar-maintenance-topic-grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 11px;
}

.ar-maintenance-topic-card {
    display: flex;
    min-width: 0;
    min-height: 174px;
    flex-direction: column;
    align-items: flex-start;
    padding: 18px;
    border: 1px solid #d7e7f7;
    border-radius: 18px;
    color: var(--ar-care-navy);
    background: linear-gradient(155deg, #fff 0%, #f1f9ff 100%);
    transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

a.ar-maintenance-topic-card:hover,
a.ar-maintenance-topic-card:focus-visible {
    border-color: #8ec6f8;
    box-shadow: 0 14px 32px rgba(13, 102, 232, 0.12);
    transform: translateY(-2px);
}

.ar-maintenance-topic-card.is-empty {
    opacity: 0.68;
}

.ar-maintenance-topic-card > span {
    display: grid;
    width: 46px;
    height: 46px;
    place-items: center;
    border-radius: 14px;
    color: #fff;
    background: linear-gradient(135deg, var(--ar-care-blue), var(--ar-care-cyan));
    box-shadow: 0 10px 23px rgba(13, 102, 232, 0.18);
}

.ar-maintenance-topic-card svg,
.ar-maintenance-guide-icon svg,
.ar-maintenance-calendar-head > span svg,
.ar-maintenance-start > span svg {
    width: 24px;
    height: 24px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.7;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.ar-maintenance-topic-card strong {
    margin-top: 22px;
    font-size: 15px;
    font-weight: 900;
    letter-spacing: -0.025em;
    line-height: 1.18;
}

.ar-maintenance-topic-card small {
    margin-top: 7px;
    color: #64768d;
    font-size: 11px;
    font-weight: 760;
}

.ar-maintenance-calendar {
    overflow: hidden;
    padding: 0;
}

.ar-maintenance-calendar-head {
    display: grid;
    min-height: 190px;
    grid-template-columns: minmax(0, 1fr) 72px;
    align-items: center;
    gap: 32px;
    padding: clamp(28px, 4vw, 44px);
    color: #fff;
    background:
        radial-gradient(circle at 88% 0%, rgba(40, 199, 233, 0.32), transparent 34%),
        linear-gradient(120deg, #071b36 0%, #0a3f80 100%);
}

.ar-maintenance-calendar-head .ar-kicker {
    color: #7fe8fb;
}

.ar-maintenance-calendar-head h2 {
    margin: 0;
    color: #fff;
}

.ar-maintenance-calendar-head p:not(.ar-kicker) {
    max-width: 790px;
    margin: 13px 0 0;
    color: #c7d9ec;
    line-height: 1.62;
}

.ar-maintenance-calendar-head > span,
.ar-maintenance-start > span {
    display: grid;
    width: 68px;
    height: 68px;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, 0.26);
    border-radius: 20px;
    color: #fff;
    background: rgba(255, 255, 255, 0.1);
}

.ar-maintenance-calendar-table-wrap {
    overflow-x: auto;
    overscroll-behavior-inline: contain;
}

.ar-maintenance-calendar table {
    width: 100%;
    min-width: 760px;
    border-collapse: collapse;
    background: #fff;
}

.ar-maintenance-calendar th,
.ar-maintenance-calendar td {
    padding: 18px 22px;
    border-right: 1px solid #e0ebf6;
    border-bottom: 1px solid #e0ebf6;
    text-align: left;
    vertical-align: top;
}

.ar-maintenance-calendar thead th {
    color: #35506f;
    background: #f0f7fe;
    font-size: 10px;
    font-weight: 900;
    letter-spacing: 0.09em;
    text-transform: uppercase;
}

.ar-maintenance-calendar tbody th {
    width: 22%;
    color: var(--ar-care-navy);
    font-size: 13px;
    font-weight: 900;
}

.ar-maintenance-calendar td {
    color: #4f6076;
    font-size: 13px;
    line-height: 1.55;
}

.ar-maintenance-note {
    margin: 0;
    padding: 18px 22px;
    color: #5a4a1e;
    background: #fff8df;
    font-size: 12px;
    line-height: 1.55;
}

.ar-maintenance-note strong {
    color: #493a12;
}

.ar-maintenance-guide-sections {
    display: grid;
    gap: 18px;
}

.ar-maintenance-guide-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
}

.ar-maintenance-guide-card {
    display: grid;
    min-width: 0;
    grid-template-columns: 54px minmax(0, 1fr);
    gap: 16px;
    padding: 20px;
    border: 1px solid #d8e7f6;
    border-radius: 18px;
    background: linear-gradient(150deg, #fff, #f7fbff);
    transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.ar-maintenance-guide-card:hover {
    border-color: #9acbf7;
    box-shadow: 0 14px 34px rgba(13, 102, 232, 0.1);
    transform: translateY(-2px);
}

.ar-maintenance-guide-icon {
    display: grid;
    width: 52px;
    height: 52px;
    place-items: center;
    border-radius: 15px;
    color: var(--ar-care-blue);
    background: #e9f5ff;
}

.ar-maintenance-guide-card small {
    color: #0b66df;
    font-size: 9px;
    font-weight: 900;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.ar-maintenance-guide-card h3 {
    margin: 7px 0 0;
    color: var(--ar-care-navy);
    font-family: var(--ar-sans);
    font-size: 22px;
    font-weight: 900;
    letter-spacing: -0.045em;
    line-height: 1.12;
}

.ar-maintenance-guide-card h3 a:hover {
    color: var(--ar-care-blue);
}

.ar-maintenance-guide-card p {
    margin: 11px 0 0;
    color: #5a6c83;
    font-size: 13px;
    line-height: 1.56;
}

.ar-maintenance-guide-card footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    margin-top: 18px;
    padding-top: 14px;
    border-top: 1px solid #dfebf6;
}

.ar-maintenance-guide-card footer span {
    color: #77879a;
    font-size: 10px;
    line-height: 1.4;
}

.ar-maintenance-guide-card footer a {
    flex: 0 0 auto;
    color: var(--ar-care-blue);
    font-size: 11px;
    font-weight: 900;
}

.ar-maintenance-start {
    display: grid;
    min-height: 230px;
    grid-template-columns: minmax(0, 1fr) 74px;
    align-items: center;
    gap: 34px;
}

.ar-maintenance-start h2 {
    margin: 0;
}

.ar-maintenance-start p:not(.ar-kicker) {
    max-width: 740px;
    margin: 13px 0 0;
    color: #5a6c83;
}

.ar-maintenance-start > span {
    color: #fff;
    background: linear-gradient(135deg, var(--ar-care-blue), var(--ar-care-cyan));
}

.ar-maintenance-final {
    margin-top: 0;
}

.ar-core .ar-article-side .ar-maintenance-link-box,
.ar-core .ar-brand-side .ar-maintenance-link-box {
    border-color: #b9dcfa;
    background: linear-gradient(155deg, #fff, #eef8ff);
}

.ar-maintenance-link-box .ar-side-eyebrow {
    margin-bottom: 8px;
    color: #0b66df;
}

.ar-brand-lens-link {
    display: inline-flex;
    margin-top: 14px;
    color: #0b62e0;
    font-size: 12px;
    font-weight: 900;
}

.ar-home-editorial-card.is-maintenance {
    border-color: #cde5f7;
    background: linear-gradient(155deg, #fff, #effaff);
}

.ar-footer-grid {
    grid-template-columns: minmax(260px, 1.55fr) repeat(3, minmax(130px, 0.68fr));
    gap: 48px;
}

.ar-footer-grid > div:last-child {
    grid-column: auto;
}

@media (max-width: 1080px) {
    .ar-maintenance-hero {
        grid-template-columns: 1fr;
    }

    .ar-maintenance-hero-copy {
        max-width: 820px;
    }

    .ar-maintenance-console {
        min-height: 390px;
    }

    .ar-maintenance-topic-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .ar-footer-grid {
        grid-template-columns: minmax(220px, 1.2fr) repeat(3, minmax(0, 0.8fr));
        gap: 30px;
    }

    .ar-footer-grid > div:last-child {
        grid-column: auto;
    }
}

@media (max-width: 820px) {
    .ar-maintenance-guide-grid {
        grid-template-columns: 1fr;
    }

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

    .ar-footer-grid > div:first-child {
        grid-column: 1 / -1;
    }
}

@media (max-width: 700px) {
    .ar-maintenance-hero {
        min-height: 0;
        padding-top: 24px;
    }

    .ar-maintenance-hero h1 {
        font-size: clamp(40px, 12vw, 58px);
    }

    .ar-maintenance-console {
        min-height: 330px;
        padding: 22px;
        border-radius: 22px;
    }

    .ar-maintenance-route {
        top: 24px;
        right: 14px;
        width: 82%;
        height: 58%;
    }

    .ar-maintenance-route::before {
        width: 112px;
        height: 112px;
    }

    .ar-maintenance-topics,
    .ar-maintenance-guide-section,
    .ar-maintenance-start {
        padding: 20px;
        border-radius: 22px;
    }

    .ar-maintenance-calendar {
        border-radius: 22px;
    }

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

    .ar-maintenance-topic-card {
        min-height: 158px;
        padding: 16px;
    }

    .ar-maintenance-calendar-head {
        grid-template-columns: 1fr;
        gap: 22px;
        padding: 26px 20px;
    }

    .ar-maintenance-calendar-head > span {
        display: none;
    }

    .ar-maintenance-guide-card {
        grid-template-columns: 44px minmax(0, 1fr);
        gap: 12px;
        padding: 17px;
    }

    .ar-maintenance-guide-icon {
        width: 44px;
        height: 44px;
        border-radius: 13px;
    }

    .ar-maintenance-guide-card h3 {
        font-size: 20px;
    }

    .ar-maintenance-guide-card footer {
        align-items: flex-start;
        flex-direction: column;
    }

    .ar-maintenance-start {
        grid-template-columns: 1fr;
    }

    .ar-maintenance-start > span {
        display: none;
    }
}

@media (max-width: 580px) {
    .ar-maintenance-topic-grid,
    .ar-footer-grid {
        grid-template-columns: 1fr;
    }

    .ar-footer-grid > div:first-child,
    .ar-footer-grid > div:last-child {
        grid-column: auto;
    }
}

@media (prefers-reduced-motion: reduce) {
    a.ar-maintenance-topic-card,
    .ar-maintenance-guide-card {
        transition: none;
    }

    a.ar-maintenance-topic-card:hover,
    a.ar-maintenance-topic-card:focus-visible,
    .ar-maintenance-guide-card:hover {
        transform: none;
    }
}

/* Signature éditoriale des tests, guides, sélections, comparatifs et actualités */
.ar-test-author-box {
    position: relative;
    display: grid;
    grid-template-columns: 112px minmax(0, 1fr) minmax(210px, 260px);
    align-items: center;
    gap: clamp(22px, 3vw, 38px);
    margin: clamp(34px, 5vw, 62px) 0;
    padding: clamp(24px, 3.4vw, 38px);
    overflow: hidden;
    border: 1px solid #cbdcf1;
    border-radius: 26px;
    background:
        radial-gradient(circle at 7% 18%, rgba(36, 200, 244, 0.1), transparent 24%),
        linear-gradient(145deg, #ffffff 0%, #f7fbff 68%, #edf6ff 100%);
    box-shadow: 0 18px 46px rgba(16, 69, 143, 0.09);
}

.ar-test-author-box::before {
    position: absolute;
    z-index: 0;
    top: 0;
    right: 0;
    left: 0;
    height: 4px;
    background: linear-gradient(90deg, #1062ff 0%, #24c8f4 58%, #98f1ea 100%);
    content: "";
}

.ar-test-author-box > * {
    position: relative;
    z-index: 1;
}

.ar-test-author-portrait {
    position: relative;
    display: grid;
    width: 112px;
    height: 112px;
    place-items: center;
}

.ar-test-author-portrait::before {
    position: absolute;
    inset: -9px;
    border: 1px dashed rgba(16, 98, 255, 0.38);
    border-radius: 50%;
    content: "";
}

.ar-test-author-portrait::after {
    position: absolute;
    top: -8px;
    left: 18px;
    width: 9px;
    height: 9px;
    border: 3px solid #f7fbff;
    border-radius: 50%;
    background: #24c8f4;
    box-shadow: 0 0 0 1px rgba(16, 98, 255, 0.16);
    content: "";
}

.ar-test-author-avatar,
.ar-test-author-initial {
    width: 112px;
    height: 112px;
    border: 4px solid #fff;
    border-radius: 50%;
    box-shadow: 0 10px 26px rgba(7, 20, 47, 0.16);
}

.ar-test-author-avatar {
    object-fit: cover;
}

.ar-test-author-initial {
    display: grid;
    place-items: center;
    color: #fff;
    background: linear-gradient(145deg, #0d3475, #1062ff);
    font-size: 38px;
    font-weight: 850;
}

.ar-test-author-check {
    position: absolute;
    right: -3px;
    bottom: 2px;
    display: grid;
    width: 34px;
    height: 34px;
    place-items: center;
    border: 4px solid #f7fbff;
    border-radius: 50%;
    color: #fff;
    background: #1062ff;
    box-shadow: 0 5px 16px rgba(16, 98, 255, 0.26);
}

.ar-test-author-check svg {
    width: 18px;
    height: 18px;
}

.ar-test-author-check path {
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 1.8;
}

.ar-test-author-copy {
    min-width: 0;
}

.ar-test-author-copy .ar-kicker {
    margin: 0 0 5px;
    color: #0b62e0;
}

.ar-test-author-heading {
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;
    gap: 8px 14px;
}

.ar-test-author-heading h2 {
    margin: 0;
    color: #07142f;
    font-family: var(--ar-sans);
    font-size: clamp(25px, 3vw, 34px);
    font-weight: 850;
    letter-spacing: -0.035em;
    line-height: 1.08;
}

.ar-test-author-heading > span {
    color: #526070;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.035em;
    text-transform: uppercase;
}

.ar-test-author-copy > p:not(.ar-kicker) {
    max-width: 660px;
    margin: 12px 0 0;
    color: #465568;
    font-size: 15px;
    line-height: 1.7;
}

.ar-test-author-proof {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 18px;
    margin-top: 16px;
    color: #33445a;
    font-size: 12px;
    font-weight: 760;
}

.ar-test-author-proof span {
    display: inline-flex;
    align-items: center;
    gap: 7px;
}

.ar-test-author-proof svg {
    width: 17px;
    height: 17px;
    flex: 0 0 auto;
}

.ar-test-author-proof path,
.ar-test-author-proof circle {
    fill: none;
    stroke: #1062ff;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 1.6;
}

.ar-test-author-links {
    display: grid;
    gap: 5px;
    min-width: 0;
    padding-left: clamp(20px, 2.4vw, 30px);
    border-left: 1px solid #d8e5f4;
}

.ar-test-author-links a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 46px;
    gap: 14px;
    padding: 8px 2px;
    border-bottom: 1px solid #e1eaf5;
    color: #0d3475;
    font-size: 13px;
    font-weight: 820;
}

.ar-test-author-links a:last-child {
    border-bottom: 0;
}

.ar-test-author-links a:hover {
    color: #1062ff;
}

.ar-test-author-links svg {
    width: 18px;
    height: 18px;
    flex: 0 0 auto;
}

.ar-test-author-links path {
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 1.8;
}

@media (max-width: 900px) {
    .ar-test-author-box {
        grid-template-columns: 96px minmax(0, 1fr);
    }

    .ar-test-author-portrait,
    .ar-test-author-avatar,
    .ar-test-author-initial {
        width: 96px;
        height: 96px;
    }

    .ar-test-author-links {
        grid-column: 1 / -1;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        padding: 14px 0 0;
        border-top: 1px solid #d8e5f4;
        border-left: 0;
    }

    .ar-test-author-links a {
        border-bottom: 0;
    }
}

@media (max-width: 620px) {
    .ar-test-author-box {
        grid-template-columns: 1fr;
        align-items: start;
        border-radius: 22px;
    }

    .ar-test-author-portrait {
        width: 82px;
        height: 82px;
        margin-left: 8px;
    }

    .ar-test-author-avatar,
    .ar-test-author-initial {
        width: 82px;
        height: 82px;
    }

    .ar-test-author-check {
        right: -5px;
        width: 30px;
        height: 30px;
    }

    .ar-test-author-heading {
        display: block;
    }

    .ar-test-author-heading > span {
        display: block;
        margin-top: 8px;
    }

    .ar-test-author-proof {
        display: grid;
    }

    .ar-test-author-links {
        grid-template-columns: 1fr;
    }

    .ar-test-author-links a + a {
        border-top: 1px solid #e1eaf5;
    }
}

/* Responsive favorites dock and custom 404 — 0.8.4.11 */
.ar-home-favorites,
.ar-home-favorites *,
.ar-home-favorites *::before,
.ar-home-favorites *::after {
    box-sizing: border-box;
}

.ar-home-favorites {
    font-family: var(--ar-sans);
}

.ar-home-favorites__panel,
.ar-home-favorites__panel-head > div,
.ar-home-favorites__link {
    min-width: 0;
}

.ar-404-main {
    min-height: 70vh;
    padding: clamp(34px, 6vw, 76px) 0 clamp(60px, 8vw, 104px);
    background:
        radial-gradient(circle at 82% 9%, rgba(36, 200, 244, 0.15), transparent 25%),
        linear-gradient(180deg, #f8fbff 0%, #eef6ff 52%, #f6f8fb 100%);
}

.ar-404-hero {
    display: grid;
    grid-template-columns: minmax(0, 0.93fr) minmax(360px, 1.07fr);
    align-items: center;
    gap: clamp(34px, 6vw, 82px);
}

.ar-404-copy {
    position: relative;
    z-index: 2;
}

.ar-404-copy h1 {
    max-width: 720px;
    margin: 11px 0 18px;
    color: var(--ar-selection-navy);
    font-family: var(--ar-display);
    font-size: clamp(46px, 6.4vw, 84px);
    font-weight: 700;
    letter-spacing: -0.055em;
    line-height: 0.98;
}

.ar-404-copy .ar-lead {
    max-width: 640px;
    color: #526984;
    font-size: clamp(17px, 1.7vw, 20px);
}

.ar-404-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 27px;
}

.ar-404-help {
    max-width: 610px;
    margin: 20px 0 0;
    color: #718198;
    font-size: 13px;
}

.ar-404-help a {
    color: #0b5bd3;
    font-weight: 800;
    text-decoration: underline;
    text-decoration-thickness: 1px;
    text-underline-offset: 3px;
}

.ar-404-map {
    position: relative;
    min-height: 430px;
    overflow: hidden;
    border: 1px solid rgba(169, 203, 235, 0.82);
    border-radius: 34px;
    background:
        linear-gradient(rgba(167, 203, 232, 0.18) 1px, transparent 1px),
        linear-gradient(90deg, rgba(167, 203, 232, 0.18) 1px, transparent 1px),
        linear-gradient(145deg, rgba(255, 255, 255, 0.98), rgba(223, 243, 255, 0.94));
    background-size: 36px 36px, 36px 36px, auto;
    box-shadow: 0 32px 80px rgba(18, 66, 116, 0.16);
    isolation: isolate;
}

.ar-404-map::before,
.ar-404-map::after {
    position: absolute;
    content: "";
}

.ar-404-map::before {
    z-index: -1;
    inset: 23px;
    border: 2px solid rgba(255, 255, 255, 0.94);
    border-radius: 24px;
    box-shadow: inset 0 0 0 1px rgba(152, 190, 223, 0.28);
}

.ar-404-map::after {
    z-index: -1;
    right: -55px;
    bottom: -68px;
    width: 235px;
    height: 235px;
    border: 42px solid rgba(16, 98, 255, 0.07);
    border-radius: 50%;
}

.ar-404-code {
    position: absolute;
    z-index: 0;
    top: 28px;
    left: 34px;
    color: rgba(7, 20, 47, 0.08);
    font-family: var(--ar-sans);
    font-size: clamp(104px, 13vw, 164px);
    font-weight: 950;
    letter-spacing: -0.09em;
    line-height: 1;
}

.ar-404-route {
    position: absolute;
    z-index: 1;
    inset: 52px 22px 26px;
    width: calc(100% - 44px);
    height: calc(100% - 78px);
    fill: none;
    pointer-events: none;
}

.ar-404-route path {
    stroke: rgba(16, 98, 255, 0.12);
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 18;
}

.ar-404-route path.is-dashed {
    stroke: #1062ff;
    stroke-dasharray: 4 18;
    stroke-width: 4;
    animation: ar-404-route-scan 3.8s linear infinite;
}

.ar-404-dock {
    position: absolute;
    z-index: 2;
    top: 83px;
    left: 47px;
    display: grid;
    width: 68px;
    height: 68px;
    place-items: center;
    border: 1px solid #c7dff4;
    border-radius: 18px;
    background: #fff;
    box-shadow: 0 16px 30px rgba(16, 71, 126, 0.13);
}

.ar-404-dock::before,
.ar-404-dock::after,
.ar-404-dock i {
    position: absolute;
    content: "";
}

.ar-404-dock::before {
    width: 32px;
    height: 32px;
    border: 5px solid #173d68;
    border-radius: 50%;
}

.ar-404-dock::after {
    bottom: 12px;
    width: 29px;
    height: 5px;
    border-radius: 99px;
    background: #24c8f4;
}

.ar-404-dock i {
    top: 11px;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #60c7ae;
    box-shadow: 0 0 0 5px rgba(96, 199, 174, 0.16);
}

.ar-404-robot {
    position: absolute;
    z-index: 3;
    right: 80px;
    bottom: 56px;
    display: grid;
    width: 110px;
    height: 110px;
    place-items: center;
    border: 1px solid #bed8ee;
    border-radius: 50%;
    background: linear-gradient(145deg, #fff, #dcecf8);
    box-shadow:
        0 28px 38px rgba(17, 61, 106, 0.21),
        inset -10px -12px 22px rgba(78, 127, 166, 0.1);
    transform: rotate(-15deg);
}

.ar-404-robot::before,
.ar-404-robot::after,
.ar-404-robot i,
.ar-404-robot b {
    position: absolute;
    content: "";
}

.ar-404-robot::before {
    width: 62px;
    height: 62px;
    border: 6px solid #0f3158;
    border-radius: 50%;
}

.ar-404-robot::after {
    top: 18px;
    width: 18px;
    height: 18px;
    border: 4px solid #fff;
    border-radius: 50%;
    background: #1062ff;
    box-shadow: 0 0 0 4px rgba(16, 98, 255, 0.13);
}

.ar-404-robot i {
    right: -8px;
    bottom: 14px;
    width: 28px;
    height: 6px;
    border-radius: 99px;
    background: #24c8f4;
    transform: rotate(35deg);
}

.ar-404-robot b {
    bottom: 12px;
    width: 38px;
    height: 6px;
    border-radius: 99px;
    background: #173d68;
}

.ar-404-signal {
    position: absolute;
    z-index: 4;
    right: 58px;
    top: 65px;
    display: grid;
    width: 76px;
    height: 76px;
    place-items: center;
    border: 1px solid rgba(228, 154, 32, 0.34);
    border-radius: 50%;
    color: #7a4a00;
    background: #fff4d6;
    box-shadow: 0 17px 34px rgba(122, 74, 0, 0.13);
}

.ar-404-signal strong {
    font-family: var(--ar-display);
    font-size: 38px;
    line-height: 1;
}

.ar-404-signal i,
.ar-404-signal b {
    position: absolute;
    right: -13px;
    bottom: -7px;
    width: 18px;
    height: 3px;
    border-radius: 99px;
    background: #e0a31b;
    content: "";
}

.ar-404-signal i {
    transform: rotate(14deg);
}

.ar-404-signal b {
    right: -7px;
    bottom: -16px;
    transform: rotate(48deg);
}

.ar-404-map-label {
    position: absolute;
    z-index: 4;
    left: 38px;
    bottom: 30px;
    padding: 7px 11px;
    border: 1px solid rgba(170, 198, 224, 0.8);
    border-radius: 999px;
    color: #33536f;
    background: rgba(255, 255, 255, 0.88);
    font-size: 10px;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    backdrop-filter: blur(10px);
}

.ar-404-routes {
    margin-top: clamp(42px, 7vw, 82px);
}

.ar-404-routes-head {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 28px;
    padding-bottom: 18px;
    border-bottom: 1px solid #cfdfef;
}

.ar-404-routes-head h2 {
    max-width: 720px;
    margin: 0;
    color: var(--ar-selection-navy);
    font-family: var(--ar-display);
    font-size: clamp(28px, 4vw, 44px);
    letter-spacing: -0.035em;
    line-height: 1.08;
}

.ar-404-route-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
    margin-top: 18px;
}

.ar-404-route-card {
    display: grid;
    min-width: 0;
    grid-template-columns: 54px minmax(0, 1fr) auto;
    align-items: start;
    gap: 14px;
    padding: 19px;
    border: 1px solid #d4e3f1;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.88);
    box-shadow: 0 14px 38px rgba(16, 63, 111, 0.07);
    transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.ar-404-route-card:hover,
.ar-404-route-card:focus-visible {
    border-color: #85b7ed;
    box-shadow: 0 20px 44px rgba(16, 98, 255, 0.13);
    transform: translateY(-3px);
}

.ar-404-route-icon {
    display: grid;
    width: 54px;
    height: 54px;
    place-items: center;
    border-radius: 16px;
    color: #0b59ce;
    background: #eaf4ff;
}

.ar-404-route-icon svg {
    width: 26px;
    height: 26px;
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 1.7;
}

.ar-404-route-card > span:nth-child(2) {
    display: grid;
    min-width: 0;
    gap: 4px;
}

.ar-404-route-card small {
    color: #0b62e0;
    font-size: 9px;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.ar-404-route-card strong {
    color: #132f4d;
    font-size: 15px;
    line-height: 1.25;
}

.ar-404-route-card em {
    color: #65788e;
    font-size: 12px;
    font-style: normal;
    line-height: 1.5;
}

.ar-404-route-card > i {
    color: #0b62e0;
    font-size: 22px;
    font-style: normal;
    line-height: 1;
}

@keyframes ar-404-route-scan {
    to {
        stroke-dashoffset: -44;
    }
}

@media (max-width: 960px) {
    .ar-404-hero {
        grid-template-columns: 1fr;
    }

    .ar-404-copy {
        max-width: 760px;
    }

    .ar-404-map {
        min-height: 390px;
    }

    .ar-404-route-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 620px) {
    .ar-home-favorites {
        max-width: calc(100vw - max(24px, env(safe-area-inset-left) + env(safe-area-inset-right)));
    }

    .ar-home-favorites__panel {
        position: fixed;
        right: max(12px, env(safe-area-inset-right));
        bottom: calc(76px + env(safe-area-inset-bottom));
        left: max(12px, env(safe-area-inset-left));
        width: auto;
        max-width: none;
        max-height: calc(100dvh - 100px - env(safe-area-inset-bottom));
        padding: 14px;
        border-radius: 18px;
    }

    .ar-comparator-tray-visible .ar-home-favorites__panel {
        bottom: calc(154px + env(safe-area-inset-bottom));
        max-height: calc(100dvh - 178px - env(safe-area-inset-bottom));
    }

    .ar-home-favorites__panel:not([hidden]) {
        display: grid;
        grid-template-rows: auto minmax(0, 1fr);
        overflow: hidden;
    }

    .ar-home-favorites__panel-head {
        align-items: flex-start;
        gap: 10px;
    }

    .ar-home-favorites__panel-head strong {
        display: block;
        max-width: 27ch;
        line-height: 1.35;
    }

    .ar-home-favorites__list {
        min-height: 0;
        max-height: none;
        margin-top: 10px;
        overflow: auto;
    }

    .ar-home-favorites__label {
        display: -webkit-box;
        overflow: hidden;
        line-height: 1.35;
        white-space: normal;
        -webkit-box-orient: vertical;
        -webkit-line-clamp: 2;
    }

    .ar-404-main {
        padding-top: 28px;
    }

    .ar-404-copy h1 {
        font-size: clamp(42px, 13vw, 60px);
    }

    .ar-404-actions {
        display: grid;
        grid-template-columns: 1fr;
    }

    .ar-404-actions .ar-button {
        justify-content: center;
        text-align: center;
    }

    .ar-404-map {
        min-height: 315px;
        border-radius: 24px;
    }

    .ar-404-map::before {
        inset: 16px;
        border-radius: 18px;
    }

    .ar-404-code {
        top: 24px;
        left: 24px;
        font-size: clamp(88px, 31vw, 128px);
    }

    .ar-404-route {
        inset: 34px 8px 16px;
        width: calc(100% - 16px);
        height: calc(100% - 50px);
    }

    .ar-404-dock {
        top: 62px;
        left: 30px;
        width: 56px;
        height: 56px;
        border-radius: 15px;
    }

    .ar-404-robot {
        right: 42px;
        bottom: 40px;
        width: 86px;
        height: 86px;
    }

    .ar-404-robot::before {
        width: 48px;
        height: 48px;
        border-width: 5px;
    }

    .ar-404-signal {
        top: 49px;
        right: 30px;
        width: 62px;
        height: 62px;
    }

    .ar-404-signal strong {
        font-size: 30px;
    }

    .ar-404-map-label {
        left: 24px;
        bottom: 19px;
    }

    .ar-404-routes-head {
        display: grid;
    }
}

@media (max-width: 420px) {
    .ar-home-favorites__panel-head button,
    .ar-home-favorites__remove {
        width: 40px;
        height: 40px;
    }

    .ar-home-favorites__item {
        grid-template-columns: minmax(0, 1fr) 40px;
        gap: 5px;
    }

    .ar-home-favorites__link {
        grid-template-columns: 38px minmax(0, 1fr);
        gap: 8px;
    }

    .ar-home-favorites__visual {
        width: 38px;
        height: 38px;
    }

    .ar-404-route-card {
        grid-template-columns: 46px minmax(0, 1fr) auto;
        gap: 11px;
        padding: 16px;
    }

    .ar-404-route-icon {
        width: 46px;
        height: 46px;
        border-radius: 14px;
    }
}

@media (max-width: 360px) {
    .ar-comparator-tray-visible .ar-home-favorites__panel {
        bottom: calc(212px + env(safe-area-inset-bottom));
        max-height: calc(100dvh - 236px - env(safe-area-inset-bottom));
    }
}

@media (prefers-reduced-motion: reduce) {
    .ar-404-route path.is-dashed {
        animation: none;
    }

    .ar-404-route-card {
        transition: none;
    }
}

/* Page Contact et intégration Contact Form 7 — 0.8.4.14 */
.ar-contact-main {
    padding-bottom: clamp(54px, 8vw, 92px);
}

.ar-contact-hero {
    display: grid;
    grid-template-columns: minmax(0, 1.08fr) minmax(340px, 0.92fr);
    align-items: center;
    gap: clamp(30px, 6vw, 76px);
    min-height: 590px;
    padding-block: clamp(46px, 7vw, 82px);
}

.ar-contact-hero > div:first-child {
    max-width: 760px;
}

.ar-contact-hero .ar-breadcrumb {
    margin-bottom: 22px;
    color: #65758e;
    font-size: 11px;
    font-weight: 780;
}

.ar-contact-hero h1 {
    max-width: 800px;
    margin: 14px 0 0;
    color: #07142f;
    font-family: var(--ar-sans);
    font-size: clamp(44px, 5.2vw, 72px);
    font-weight: 930;
    letter-spacing: -0.068em;
    line-height: 0.98;
    text-wrap: balance;
}

.ar-contact-hero .ar-lead {
    max-width: 720px;
    margin-top: 22px;
    color: #40536d;
    font-size: clamp(17px, 1.5vw, 20px);
    line-height: 1.7;
}

.ar-contact-topics {
    display: flex;
    flex-wrap: wrap;
    gap: 9px;
    margin: 26px 0 0;
    padding: 0;
    list-style: none;
}

.ar-contact-topics li {
    display: inline-flex;
    min-height: 38px;
    align-items: center;
    padding: 8px 13px;
    border: 1px solid #c8e1f8;
    border-radius: 999px;
    color: #145cae;
    background: rgba(255, 255, 255, 0.74);
    font-size: 11px;
    font-weight: 850;
}

.ar-contact-route {
    position: relative;
    min-height: 370px;
    overflow: hidden;
    border: 1px solid rgba(119, 202, 255, 0.28);
    border-radius: 30px;
    background:
        linear-gradient(rgba(113, 203, 255, 0.07) 1px, transparent 1px),
        linear-gradient(90deg, rgba(113, 203, 255, 0.07) 1px, transparent 1px),
        radial-gradient(circle at 84% 12%, rgba(71, 210, 255, 0.25), transparent 32%),
        linear-gradient(145deg, #07162f 0%, #0a2e65 100%);
    background-size: 42px 42px, 42px 42px, auto, auto;
    box-shadow: 0 28px 70px rgba(7, 35, 78, 0.24);
}

.ar-contact-route::before,
.ar-contact-route::after {
    position: absolute;
    border: 1px solid rgba(128, 218, 255, 0.14);
    border-radius: 50%;
    content: "";
}

.ar-contact-route::before {
    top: -84px;
    right: -64px;
    width: 240px;
    height: 240px;
    box-shadow: 0 0 0 48px rgba(128, 218, 255, 0.025);
}

.ar-contact-route::after {
    bottom: -48px;
    left: -42px;
    width: 170px;
    height: 170px;
}

.ar-contact-route-label {
    position: absolute;
    z-index: 3;
    top: 27px;
    left: 28px;
    color: #9fe6ff;
    font-size: 10px;
    font-weight: 900;
    letter-spacing: 0.13em;
    text-transform: uppercase;
}

.ar-contact-route-line {
    position: absolute;
    z-index: 1;
    top: 84px;
    right: 76px;
    bottom: 86px;
    left: 102px;
    border: 2px dashed rgba(128, 222, 255, 0.45);
    border-left: 0;
    border-radius: 0 120px 120px 0;
}

.ar-contact-route-line::before {
    position: absolute;
    top: -6px;
    left: -4px;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #69dcff;
    box-shadow: 0 0 0 8px rgba(105, 220, 255, 0.1);
    content: "";
}

.ar-contact-route-robot {
    position: absolute;
    z-index: 3;
    bottom: 45px;
    left: 39px;
    display: grid;
    width: 98px;
    height: 98px;
    place-items: center;
    border: 1px solid rgba(126, 220, 255, 0.5);
    border-radius: 50%;
    background: linear-gradient(145deg, #f9fdff, #9edbff);
    box-shadow: 0 18px 38px rgba(0, 8, 25, 0.32);
}

.ar-contact-route-robot::before {
    width: 55px;
    height: 55px;
    border: 6px solid #fff;
    border-radius: 50%;
    background: #0d68dd;
    content: "";
}

.ar-contact-route-robot > i {
    position: absolute;
    top: 20px;
    right: 21px;
    width: 19px;
    height: 19px;
    border: 5px solid #fff;
    border-radius: 50%;
    background: #123c74;
}

.ar-contact-route-robot > b {
    position: absolute;
    right: 14px;
    bottom: 16px;
    width: 15px;
    height: 5px;
    border-radius: 999px;
    background: #0c58bb;
}

.ar-contact-route-message {
    position: absolute;
    z-index: 3;
    top: 46px;
    right: 35px;
    display: grid;
    width: 100px;
    height: 78px;
    place-items: center;
    border: 1px solid rgba(170, 232, 255, 0.58);
    border-radius: 24px 24px 6px 24px;
    color: #0759c9;
    background: linear-gradient(145deg, #fff, #d9f3ff);
    box-shadow: 0 17px 34px rgba(0, 18, 50, 0.22);
}

.ar-contact-route-message::after {
    position: absolute;
    right: -1px;
    bottom: -13px;
    width: 22px;
    height: 22px;
    background: #d9f3ff;
    clip-path: polygon(0 0, 100% 0, 100% 100%);
    content: "";
}

.ar-contact-route-message strong {
    font-size: 26px;
    letter-spacing: 0.08em;
    line-height: 1;
}

.ar-contact-route-message > i,
.ar-contact-route-message > b {
    position: absolute;
    border-radius: 50%;
    background: rgba(11, 98, 224, 0.16);
    content: "";
}

.ar-contact-route-message > i {
    top: 12px;
    left: 15px;
    width: 8px;
    height: 8px;
}

.ar-contact-route-message > b {
    right: 13px;
    bottom: 12px;
    width: 11px;
    height: 11px;
}

.ar-contact-route small {
    position: absolute;
    z-index: 3;
    right: 28px;
    bottom: 25px;
    color: #a9c8e4;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.04em;
}

.ar-contact-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 350px;
    align-items: start;
    gap: 22px;
}

.ar-contact-card {
    min-width: 0;
    overflow: hidden;
    border: 1px solid rgba(197, 220, 247, 0.92);
    border-radius: 28px;
    background: rgba(255, 255, 255, 0.97);
    box-shadow: 0 22px 62px rgba(17, 88, 158, 0.09);
}

.ar-contact-card-head {
    padding: clamp(28px, 5vw, 50px);
    border-bottom: 1px solid #dce9f6;
    background:
        radial-gradient(circle at 92% 6%, rgba(69, 207, 255, 0.14), transparent 34%),
        #fff;
}

.ar-contact-card-head h2 {
    max-width: 760px;
    margin: 9px 0 12px;
    color: #07142f;
    font-family: var(--ar-sans);
    font-size: clamp(30px, 3.4vw, 44px);
    font-weight: 920;
    letter-spacing: -0.055em;
    line-height: 1.05;
    text-wrap: balance;
}

.ar-contact-card-head > p:last-child {
    max-width: 720px;
    margin: 0;
    color: #566981;
    font-size: 15px;
    line-height: 1.65;
}

.ar-contact-form,
.ar-contact-form-empty {
    padding: clamp(28px, 5vw, 50px);
}

.ar-contact-form-empty {
    color: #42556e;
}

.ar-contact-form-empty strong {
    color: #0b1c37;
    font-size: 18px;
}

.ar-contact-form-empty p {
    margin: 7px 0 0;
}

.ar-contact-form > :first-child,
.ar-contact-form .wpcf7 > :first-child,
.ar-contact-form .wpcf7 form > :first-child {
    margin-top: 0;
}

.ar-contact-form > :last-child,
.ar-contact-form .wpcf7 > :last-child,
.ar-contact-form .wpcf7 form > :last-child {
    margin-bottom: 0;
}

.ar-contact-form .wpcf7 form {
    margin: 0;
}

.ar-contact-form .wpcf7 form > p {
    margin: 0 0 20px;
}

.ar-contact-form .wpcf7 label {
    display: grid;
    gap: 8px;
    color: #183551;
    font-size: 13px;
    font-weight: 850;
    line-height: 1.4;
}

.ar-contact-form .wpcf7-form-control-wrap {
    display: block;
    width: 100%;
}

.ar-contact-form :where(
    input:not([type="submit"]):not([type="checkbox"]):not([type="radio"]),
    textarea,
    select
) {
    width: 100%;
    max-width: 100%;
    min-height: 52px;
    padding: 13px 15px;
    border: 1px solid #bfd4e8;
    border-radius: 13px;
    outline: 0;
    color: #142b45;
    background: #fafdff;
    box-shadow: 0 1px 0 rgba(11, 86, 172, 0.02);
    font: inherit;
    font-size: 15px;
    transition: border-color 160ms ease, box-shadow 160ms ease, background-color 160ms ease;
}

.ar-contact-form textarea {
    min-height: 180px;
    resize: vertical;
}

.ar-contact-form :where(
    input:not([type="submit"]):not([type="checkbox"]):not([type="radio"]),
    textarea,
    select
):hover {
    border-color: #8abbe7;
    background: #fff;
}

.ar-contact-form :where(
    input:not([type="submit"]):not([type="checkbox"]):not([type="radio"]),
    textarea,
    select
):focus {
    border-color: #1062ff;
    background: #fff;
    box-shadow: 0 0 0 4px rgba(16, 98, 255, 0.12);
}

.ar-contact-form :where(input[type="checkbox"], input[type="radio"]) {
    width: 18px;
    height: 18px;
    flex: 0 0 auto;
    margin: 1px 0 0;
    accent-color: #1062ff;
}

.ar-contact-form .wpcf7-list-item {
    margin: 0 14px 8px 0;
}

.ar-contact-form .wpcf7-list-item > label {
    display: inline-flex;
    align-items: flex-start;
    gap: 8px;
    font-weight: 700;
}

.ar-contact-form input[type="submit"],
.ar-contact-form button[type="submit"] {
    display: inline-flex;
    min-height: 52px;
    align-items: center;
    justify-content: center;
    padding: 13px 24px;
    border: 1px solid #1062ff;
    border-radius: 13px;
    color: #fff;
    background: #1062ff;
    box-shadow: 0 10px 24px rgba(16, 98, 255, 0.2);
    font-family: var(--ar-sans);
    font-size: 14px;
    font-weight: 900;
    line-height: 1.2;
    cursor: pointer;
    transition: background-color 160ms ease, border-color 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

.ar-contact-form input[type="submit"]:hover,
.ar-contact-form button[type="submit"]:hover {
    border-color: #084dc5;
    background: #084dc5;
    box-shadow: 0 12px 28px rgba(16, 98, 255, 0.26);
    transform: translateY(-1px);
}

.ar-contact-form input[type="submit"]:focus-visible,
.ar-contact-form button[type="submit"]:focus-visible {
    outline: 3px solid rgba(16, 98, 255, 0.25);
    outline-offset: 3px;
}

.ar-contact-form input[type="submit"]:disabled,
.ar-contact-form button[type="submit"]:disabled {
    cursor: wait;
    opacity: 0.68;
    transform: none;
}

.ar-contact-form .wpcf7-not-valid {
    border-color: #d34444 !important;
}

.ar-contact-form .wpcf7-not-valid-tip {
    margin-top: 6px;
    color: #b42323;
    font-size: 12px;
    font-weight: 750;
}

.ar-contact-form .wpcf7 form .wpcf7-response-output {
    margin: 22px 0 0;
    padding: 14px 16px;
    border: 1px solid #ddad39;
    border-radius: 13px;
    color: #664b08;
    background: #fff8df;
    font-size: 13px;
    line-height: 1.55;
}

.ar-contact-form .wpcf7 form.sent .wpcf7-response-output {
    border-color: #62bd88;
    color: #155a32;
    background: #edfff4;
}

.ar-contact-form .wpcf7 form.invalid .wpcf7-response-output,
.ar-contact-form .wpcf7 form.failed .wpcf7-response-output,
.ar-contact-form .wpcf7 form.aborted .wpcf7-response-output {
    border-color: #e08a8a;
    color: #7d2525;
    background: #fff1f1;
}

.ar-contact-form .wpcf7-spinner {
    margin: 0 0 0 10px;
    vertical-align: middle;
}

.ar-contact-aside {
    position: sticky;
    top: 98px;
    display: grid;
    gap: 14px;
}

.admin-bar .ar-contact-aside {
    top: 130px;
}

.ar-contact-guidance,
.ar-contact-boundary,
.ar-contact-privacy {
    padding: 23px;
    border: 1px solid #d3e3f4;
    border-radius: 19px;
    background: rgba(255, 255, 255, 0.97);
    box-shadow: 0 12px 32px rgba(22, 96, 168, 0.08);
}

.ar-contact-guidance h2,
.ar-contact-boundary h2 {
    margin: 7px 0 12px;
    color: #0b1c37;
    font-family: var(--ar-sans);
    font-size: 22px;
    font-weight: 900;
    letter-spacing: -0.035em;
    line-height: 1.15;
}

.ar-contact-guidance ul {
    display: grid;
    gap: 0;
    margin: 17px 0 0;
    padding: 0;
    list-style: none;
}

.ar-contact-guidance li {
    display: grid;
    grid-template-columns: 58px minmax(0, 1fr);
    gap: 11px;
    align-items: start;
    padding: 14px 0;
    border-top: 1px solid #e1edf7;
}

.ar-contact-guidance li:first-child {
    border-top: 0;
}

.ar-contact-guidance li > span {
    display: inline-flex;
    min-height: 29px;
    align-items: center;
    justify-content: center;
    padding: 5px 8px;
    border-radius: 9px;
    color: #0b5fc9;
    background: #eaf5ff;
    font-size: 9px;
    font-weight: 900;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.ar-contact-guidance li p,
.ar-contact-boundary p,
.ar-contact-privacy p {
    margin: 0;
    color: #566981;
    font-size: 13px;
    line-height: 1.6;
}

.ar-contact-boundary {
    border-color: #c8dff5;
    background: linear-gradient(145deg, #fafdff, #edf7ff);
}

.ar-contact-privacy {
    box-shadow: none;
}

.ar-contact-privacy .ar-text-link {
    display: inline-flex;
    margin-top: 10px;
    font-size: 12px;
}

@media (max-width: 980px) {
    .ar-contact-hero {
        grid-template-columns: minmax(0, 1fr) minmax(300px, 0.78fr);
        min-height: 0;
    }

    .ar-contact-layout {
        grid-template-columns: minmax(0, 1fr) 300px;
    }
}

@media (max-width: 820px) {
    .ar-contact-hero {
        grid-template-columns: 1fr;
        padding-block: 38px 30px;
    }

    .ar-contact-route {
        min-height: 330px;
    }

    .ar-contact-layout {
        grid-template-columns: 1fr;
    }

    .ar-contact-aside,
    .admin-bar .ar-contact-aside {
        position: static;
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .ar-contact-privacy {
        grid-column: 1 / -1;
    }
}

@media (max-width: 580px) {
    .ar-contact-hero h1 {
        font-size: clamp(38px, 11.5vw, 52px);
        letter-spacing: -0.06em;
    }

    .ar-contact-topics {
        display: grid;
        grid-template-columns: 1fr;
    }

    .ar-contact-topics li {
        justify-content: center;
    }

    .ar-contact-route {
        min-height: 290px;
        border-radius: 23px;
    }

    .ar-contact-route-line {
        top: 72px;
        right: 56px;
        bottom: 68px;
        left: 82px;
    }

    .ar-contact-route-robot {
        bottom: 31px;
        left: 27px;
        width: 82px;
        height: 82px;
    }

    .ar-contact-route-robot::before {
        width: 45px;
        height: 45px;
        border-width: 5px;
    }

    .ar-contact-route-robot > i {
        top: 16px;
        right: 17px;
        width: 17px;
        height: 17px;
        border-width: 4px;
    }

    .ar-contact-route-message {
        top: 40px;
        right: 24px;
        width: 84px;
        height: 66px;
        border-radius: 20px 20px 6px 20px;
    }

    .ar-contact-route small {
        right: 20px;
        bottom: 18px;
    }

    .ar-contact-card {
        border-radius: 22px;
    }

    .ar-contact-card-head,
    .ar-contact-form,
    .ar-contact-form-empty {
        padding: 26px 20px;
    }

    .ar-contact-card-head h2 {
        font-size: 31px;
    }

    .ar-contact-aside {
        grid-template-columns: 1fr;
    }

    .ar-contact-privacy {
        grid-column: auto;
    }

    .ar-contact-form input[type="submit"],
    .ar-contact-form button[type="submit"] {
        width: 100%;
    }

    .ar-contact-form .wpcf7-spinner {
        display: block;
        margin: 10px auto 0;
    }
}

@media (prefers-reduced-motion: reduce) {
    .ar-contact-form :where(
        input:not([type="submit"]):not([type="checkbox"]):not([type="radio"]),
        textarea,
        select
    ),
    .ar-contact-form input[type="submit"],
    .ar-contact-form button[type="submit"] {
        transition: none;
    }
}
