:root {
    --ink: #18231d;
    --muted: #667069;
    --green: #315e46;
    --green-dark: #234735;
    --sage: #dce9df;
    --sage-light: #eef5ef;
    --beige: #f5f0e8;
    --cream: #fbfaf7;
    --white: #ffffff;
    --line: #e3e6e2;
    --shadow: 0 20px 55px rgba(32, 55, 42, 0.1);
    --shadow-soft: 0 10px 30px rgba(32, 55, 42, 0.07);
    --radius: 24px;
    --radius-small: 14px;
    --container: 1180px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    color: var(--ink);
    background: var(--white);
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    font-size: 16px;
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
}

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

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

button,
input,
textarea {
    font: inherit;
}

h1,
h2,
h3 {
    margin: 0 0 0.65em;
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, "Segoe UI", sans-serif;
    line-height: 1.12;
    letter-spacing: -0.035em;
}

h1 {
    font-size: clamp(2.6rem, 8vw, 5rem);
}

h2 {
    font-size: clamp(2rem, 5vw, 3.25rem);
}

h3 {
    font-size: 1.25rem;
}

p {
    margin: 0 0 1.25em;
}

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

.skip-link {
    position: fixed;
    z-index: 1000;
    top: 12px;
    left: 12px;
    padding: 10px 16px;
    transform: translateY(-160%);
    border-radius: 8px;
    color: var(--white);
    background: var(--green-dark);
}

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

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.site-header {
    position: sticky;
    z-index: 100;
    top: 0;
    border-bottom: 1px solid rgba(227, 230, 226, 0.9);
    background: rgba(255, 255, 255, 0.94);
    backdrop-filter: blur(14px);
}

.header-inner {
    position: relative;
    display: flex;
    min-height: 74px;
    align-items: center;
    justify-content: space-between;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: Inter, ui-sans-serif, system-ui, sans-serif;
    font-size: 1.35rem;
    font-weight: 800;
    letter-spacing: -0.04em;
}

.brand-mark {
    display: grid;
    width: 36px;
    height: 36px;
    place-items: center;
    border-radius: 11px 11px 11px 4px;
    color: var(--white);
    background: var(--green);
    font-size: 1rem;
}

.nav-toggle {
    display: grid;
    width: 42px;
    height: 42px;
    padding: 10px;
    cursor: pointer;
    border: 0;
    border-radius: 10px;
    background: var(--sage-light);
    gap: 4px;
    align-content: center;
}

.nav-toggle span:not(.sr-only) {
    display: block;
    height: 2px;
    border-radius: 2px;
    background: var(--ink);
}

.primary-navigation {
    position: absolute;
    top: calc(100% + 1px);
    right: 0;
    left: 0;
    display: none;
    padding: 14px 20px 20px;
    border-bottom: 1px solid var(--line);
    background: var(--white);
    box-shadow: var(--shadow-soft);
    max-height: calc(100vh - 74px);
    overflow-y: auto;
}

.primary-navigation.is-open {
    display: grid;
}

.primary-navigation a {
    padding: 12px 8px;
    color: #344239;
    font-size: 0.94rem;
    font-weight: 600;
}

.primary-navigation a:hover,
.primary-navigation a:focus-visible {
    color: var(--green);
}

.hero {
    position: relative;
    overflow: hidden;
    padding: 64px 0 76px;
    background:
        radial-gradient(circle at 90% 10%, rgba(220, 233, 223, 0.85), transparent 34%),
        linear-gradient(135deg, var(--cream), #f4f3ed);
}

.hero::after {
    position: absolute;
    right: -70px;
    bottom: -100px;
    width: 250px;
    height: 250px;
    content: "";
    border: 1px solid rgba(49, 94, 70, 0.12);
    border-radius: 50%;
}

.hero-grid {
    display: grid;
    gap: 48px;
}

.hero-copy {
    position: relative;
    z-index: 2;
    max-width: 710px;
}

.eyebrow {
    margin-bottom: 15px;
    color: var(--green);
    font-size: 0.76rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

.hero h1 {
    max-width: 760px;
}

.hero-subtitle {
    max-width: 720px;
    color: var(--muted);
    font-size: clamp(1.08rem, 2.4vw, 1.32rem);
}

.hero-actions {
    display: flex;
    margin-top: 30px;
    align-items: center;
    flex-wrap: wrap;
    gap: 22px;
}

.button {
    display: inline-flex;
    min-height: 50px;
    padding: 13px 23px;
    align-items: center;
    justify-content: center;
    border: 0;
    border-radius: 12px;
    color: var(--white);
    background: var(--green);
    box-shadow: 0 8px 20px rgba(49, 94, 70, 0.18);
    font-weight: 700;
    line-height: 1.2;
    transition: transform 180ms ease, background 180ms ease;
    text-align: center;
}

.button:hover,
.button:focus-visible {
    transform: translateY(-2px);
    background: var(--green-dark);
}

.button-light {
    color: var(--green-dark);
    background: var(--white);
}

.text-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--green);
    font-weight: 700;
}

.text-link span {
    transition: transform 180ms ease;
}

.text-link:hover span {
    transform: translateX(3px);
}

.trust-list {
    display: flex;
    padding: 0;
    margin: 38px 0 0;
    color: var(--muted);
    flex-wrap: wrap;
    gap: 12px 24px;
    font-size: 0.88rem;
    list-style: none;
}

.trust-list li::before {
    margin-right: 8px;
    color: var(--green);
    content: "✓";
    font-weight: 800;
}

.hero-visual {
    position: relative;
    z-index: 2;
}

.hero-image-card {
    position: relative;
    padding: 14px;
    transform: rotate(1.5deg);
    border-radius: 32px;
    background: rgba(255, 255, 255, 0.76);
    box-shadow: var(--shadow);
}

.hero-image-card > img {
    width: 100%;
    aspect-ratio: 1.16;
    border-radius: 22px;
    object-fit: cover;
}

.floating-note {
    position: absolute;
    right: -8px;
    bottom: 20px;
    display: flex;
    padding: 13px 16px;
    transform: rotate(-1.5deg);
    align-items: center;
    border: 1px solid rgba(49, 94, 70, 0.12);
    border-radius: 14px;
    background: var(--white);
    box-shadow: var(--shadow-soft);
    gap: 11px;
    font-size: 0.8rem;
    line-height: 1.35;
}

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

.note-icon {
    display: grid !important;
    width: 32px;
    height: 32px;
    place-items: center;
    border-radius: 50%;
    color: var(--green);
    background: var(--sage);
    font-weight: 800;
}

.section {
    padding: 88px 0;
}

.section-compact {
    padding-top: 20px;
}

.section-tinted {
    background: var(--cream);
}

.section-heading {
    display: grid;
    margin-bottom: 38px;
    gap: 16px;
}

.section-heading h2 {
    margin-bottom: 0;
}

.section-heading > p {
    max-width: 480px;
    margin: 0;
    color: var(--muted);
}

.featured-product {
    display: grid;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--white);
    box-shadow: var(--shadow-soft);
}

.featured-product-image {
    min-height: 300px;
    padding: 22px;
    background: linear-gradient(145deg, #e8eee9, #f5f2e9);
}

.featured-product-image img {
    width: 100%;
    height: 100%;
    min-height: 280px;
    border-radius: 17px;
    object-fit: cover;
}

.featured-product-copy {
    padding: 36px 28px;
}

.featured-product-copy > p:not(.eyebrow, .microcopy) {
    color: var(--muted);
    font-size: 1.05rem;
}

.check-list {
    padding: 0;
    margin: 26px 0 30px;
    list-style: none;
}

.check-list li {
    position: relative;
    padding: 8px 0 8px 30px;
}

.check-list li::before {
    position: absolute;
    top: 9px;
    left: 0;
    display: grid;
    width: 20px;
    height: 20px;
    content: "✓";
    place-items: center;
    border-radius: 50%;
    color: var(--green);
    background: var(--sage);
    font-size: 0.7rem;
    font-weight: 800;
}

.microcopy {
    margin: 18px 0 0;
    color: #7a827d;
    font-size: 0.78rem;
}

.category-grid,
.post-grid,
.product-grid {
    display: grid;
    gap: 18px;
}

.category-card {
    position: relative;
    min-height: 300px;
    padding: 28px;
    overflow: hidden;
    border: 1px solid rgba(49, 94, 70, 0.08);
    border-radius: 20px;
    transition: transform 180ms ease, box-shadow 180ms ease;
    isolation: isolate;
}

.category-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-soft);
}

.category-smoothie {
    background: #e6f0e9;
}

.category-cutting {
    background: #f0e8dc;
}

.category-healthy {
    background: #eef0e4;
}

.category-meal {
    background: #e7eceb;
}

.category-number {
    position: absolute;
    top: 22px;
    right: 24px;
    color: rgba(24, 35, 29, 0.3);
    font-size: 0.76rem;
    font-weight: 700;
}

.category-icon {
    display: grid;
    width: 56px;
    height: 56px;
    margin-bottom: 38px;
    place-items: center;
    border: 1px solid rgba(49, 94, 70, 0.12);
    border-radius: 17px;
    color: var(--green);
    background: rgba(255, 255, 255, 0.62);
    font-size: 1.7rem;
}

.category-card h3 {
    font-size: 1.42rem;
}

.category-card p {
    color: var(--muted);
    font-size: 0.94rem;
}

.post-card,
.product-card {
    padding: 27px;
    border: 1px solid var(--line);
    border-radius: 19px;
    background: var(--white);
    box-shadow: 0 7px 25px rgba(32, 55, 42, 0.045);
    transition: transform 180ms ease, box-shadow 180ms ease;
}

.post-card:hover,
.product-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-soft);
}

.post-card-image {
    display: block;
    margin: -27px -27px 22px;
    overflow: hidden;
    border-radius: 19px 19px 0 0;
    background: var(--sage-light);
}

.post-card-image img {
    width: 100%;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    transition: transform 220ms ease;
}

.post-card:hover .post-card-image img {
    transform: scale(1.025);
}

.post-category-link {
    display: inline-block;
    margin-bottom: 10px;
    color: var(--green);
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.post-card-top {
    display: flex;
    margin-bottom: 26px;
    align-items: center;
    justify-content: space-between;
    color: var(--muted);
    font-size: 0.78rem;
}

.post-icon {
    display: grid;
    width: 39px;
    height: 39px;
    place-items: center;
    border-radius: 12px;
    color: var(--green);
    background: var(--sage-light);
    font-size: 1.1rem;
}

.post-card h3,
.product-card h3 {
    font-size: 1.25rem;
}

.post-card p,
.product-card p {
    color: var(--muted);
    font-size: 0.92rem;
}

.product-card {
    padding: 0;
    overflow: hidden;
}

.card-image-wrap {
    display: block;
    padding: 15px;
    background: var(--sage-light);
}

.card-image-wrap img {
    width: 100%;
    aspect-ratio: 4 / 3;
    border-radius: 12px;
    object-fit: cover;
}

.card-content {
    padding: 25px;
}

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

.newsletter-inner {
    display: flex;
    padding: 42px 28px;
    align-items: flex-start;
    justify-content: space-between;
    border-radius: var(--radius);
    color: var(--white);
    background: var(--green-dark);
    flex-direction: column;
    gap: 25px;
}

.newsletter-inner .eyebrow {
    color: #bcd3c3;
}

.newsletter-inner h2 {
    max-width: 700px;
    margin-bottom: 12px;
}

.newsletter-inner p:not(.eyebrow) {
    margin: 0;
    color: #d3dfd7;
}

.site-footer {
    padding: 70px 0 24px;
    border-top: 1px solid var(--line);
    background: var(--cream);
}

.footer-grid {
    display: grid;
    gap: 38px;
}

.footer-grid > div > p {
    max-width: 410px;
    margin-top: 20px;
    color: var(--muted);
}

.brand-footer {
    font-size: 1.45rem;
}

.footer-links {
    display: grid;
    align-content: start;
    gap: 10px;
}

.footer-links strong {
    margin-bottom: 5px;
    font-family: Inter, ui-sans-serif, system-ui, sans-serif;
}

.footer-links a {
    width: fit-content;
    color: var(--muted);
    font-size: 0.92rem;
}

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

.disclosure-bar {
    display: flex;
    padding-top: 27px;
    margin-top: 55px;
    border-top: 1px solid var(--line);
    color: #778079;
    flex-direction: column;
    gap: 15px;
    font-size: 0.78rem;
}

.disclosure-bar p {
    margin: 0;
}

.site-main {
    min-height: 65vh;
    padding-top: 22px;
}

.breadcrumbs {
    margin: 15px 0 35px;
    color: var(--muted);
    font-size: 0.82rem;
}

.breadcrumbs ol {
    display: flex;
    padding: 0;
    margin: 0;
    align-items: center;
    flex-wrap: wrap;
    gap: 9px;
    list-style: none;
}

.breadcrumbs li + li::before {
    margin-right: 9px;
    content: "/";
    color: #aeb5b0;
}

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

.archive-header {
    max-width: 860px;
    padding-top: 35px;
    padding-bottom: 65px;
    text-align: center;
}

.archive-header h1 {
    font-size: clamp(2.5rem, 7vw, 4.3rem);
}

.archive-header > p:last-child {
    max-width: 670px;
    margin-inline: auto;
    color: var(--muted);
    font-size: 1.1rem;
}

.product-hero {
    display: grid;
    padding-top: 18px;
    padding-bottom: 80px;
    align-items: center;
    gap: 42px;
}

.product-hero h1 {
    font-size: clamp(2.5rem, 7vw, 4.4rem);
}

.product-hero-image {
    padding: 18px;
    border-radius: 27px;
    background: linear-gradient(145deg, #e7ede8, var(--beige));
    box-shadow: var(--shadow-soft);
}

.product-hero-image img {
    width: 100%;
    aspect-ratio: 1.2;
    border-radius: 17px;
    object-fit: cover;
}

.review-meta {
    display: flex;
    margin: 25px 0;
    color: var(--muted);
    flex-wrap: wrap;
    gap: 8px 22px;
    font-size: 0.84rem;
}

.review-meta span + span::before {
    margin-right: 22px;
    content: "•";
    color: #a8afa9;
}

.article-layout {
    display: grid;
    padding-bottom: 100px;
    gap: 45px;
}

.article-content {
    color: #39453e;
    font-size: 1.04rem;
}

.article-content h2 {
    padding-top: 22px;
    font-size: clamp(1.6rem, 4vw, 2.25rem);
}

.article-content h3 {
    padding-top: 15px;
}

.article-content a {
    color: var(--green);
    text-decoration: underline;
    text-underline-offset: 3px;
}

.review-sidebar,
.contact-card {
    height: fit-content;
    padding: 28px;
    border: 1px solid #dce5de;
    border-radius: 18px;
    background: var(--sage-light);
}

.review-sidebar strong {
    display: block;
    margin-bottom: 10px;
    font-family: Inter, ui-sans-serif, system-ui, sans-serif;
    font-size: 1.2rem;
}

.review-sidebar p {
    color: var(--muted);
}

.article-page {
    padding-top: 30px;
    padding-bottom: 100px;
}

.article-header {
    max-width: 900px;
    margin: 0 auto 50px;
    text-align: center;
}

.article-header h1 {
    font-size: clamp(2.5rem, 7vw, 4.4rem);
}

.article-header .hero-subtitle {
    margin-inline: auto;
}

.article-header .review-meta {
    justify-content: center;
}

.article-featured-image {
    width: 100%;
    max-height: 620px;
    margin-bottom: 55px;
    border-radius: var(--radius);
    object-fit: cover;
}

.article-narrow {
    max-width: 760px;
    margin-inline: auto;
}

.contact-layout {
    display: grid;
    padding-top: 45px;
    padding-bottom: 110px;
    gap: 45px;
}

.contact-layout h1 {
    font-size: clamp(2.5rem, 7vw, 4.2rem);
}

.contact-card h2 {
    font-size: 1.6rem;
}

.empty-state {
    padding: 110px 20px;
    text-align: center;
}

.empty-state h1 {
    font-size: clamp(2.4rem, 7vw, 4rem);
}

.inline-empty {
    grid-column: 1 / -1;
    padding: 60px 25px;
    border-radius: var(--radius);
    background: var(--cream);
}

.inline-empty h2 {
    font-size: 1.8rem;
}

.desktop-link {
    display: none;
}

.filter-links,
.sibling-category-links {
    display: flex;
    padding-bottom: 35px;
    overflow-x: auto;
    gap: 9px;
}

.filter-links a,
.sibling-category-links a {
    padding: 9px 14px;
    border: 1px solid var(--line);
    border-radius: 999px;
    color: var(--muted);
    background: var(--white);
    font-size: 0.84rem;
    font-weight: 700;
    white-space: nowrap;
}

.filter-links a:hover,
.filter-links a.is-active,
.sibling-category-links a:hover {
    border-color: var(--green);
    color: var(--white);
    background: var(--green);
}

.pagination {
    display: flex;
    padding-top: 38px;
    justify-content: center;
    gap: 8px;
}

.pagination a {
    display: grid;
    width: 42px;
    height: 42px;
    place-items: center;
    border: 1px solid var(--line);
    border-radius: 10px;
    color: var(--muted);
    background: var(--white);
    font-weight: 700;
}

.pagination a:hover,
.pagination a.is-current {
    border-color: var(--green);
    color: var(--white);
    background: var(--green);
}

.internal-links-section,
.static-page-links {
    padding: 65px 0;
    background: var(--cream);
}

.internal-links-grid {
    display: grid;
    gap: 35px;
}

.internal-links-grid h2 {
    font-size: clamp(1.8rem, 4vw, 2.7rem);
}

.internal-link-list {
    display: grid;
    align-content: center;
    gap: 10px;
}

.internal-link-list a {
    display: flex;
    padding: 15px 17px;
    align-items: center;
    justify-content: space-between;
    border: 1px solid var(--line);
    border-radius: 12px;
    color: var(--ink);
    background: var(--white);
    font-weight: 700;
}

.internal-link-list a:hover {
    border-color: var(--green);
    color: var(--green);
}

.internal-link-list.horizontal {
    grid-template-columns: 1fr;
}

.featured-review-cta {
    padding: 70px 0;
    color: var(--white);
    background: var(--green-dark);
}

.featured-review-cta-inner {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    flex-direction: column;
    gap: 26px;
}

.featured-review-cta .eyebrow {
    color: #bad1c1;
}

.featured-review-cta h2 {
    max-width: 740px;
}

.featured-review-cta p:not(.eyebrow) {
    max-width: 680px;
    margin-bottom: 0;
    color: #d0ded4;
}

.review-page {
    padding-top: 22px;
}

.review-header {
    max-width: 980px;
    padding-top: 28px;
    padding-bottom: 35px;
    text-align: center;
}

.review-header h1 {
    font-size: clamp(2.45rem, 7vw, 4.7rem);
}

.review-intro {
    max-width: 790px;
    margin-inline: auto;
    color: var(--muted);
    font-size: clamp(1.05rem, 2.4vw, 1.25rem);
}

.review-header .review-meta {
    justify-content: center;
}

.disclosure-box {
    display: flex;
    padding: 18px 20px;
    align-items: flex-start;
    border: 1px solid #d8e3da;
    border-radius: var(--radius-small);
    background: var(--sage-light);
    gap: 13px;
    color: #45534a;
    font-size: 0.9rem;
}

.disclosure-box p {
    margin: 0;
}

.disclosure-box a,
.final-disclosure a {
    color: var(--green);
    font-weight: 700;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.disclosure-icon {
    display: grid;
    width: 26px;
    height: 26px;
    flex: 0 0 26px;
    place-items: center;
    border-radius: 50%;
    color: var(--white);
    background: var(--green);
    font-family: Georgia, serif;
    font-weight: 700;
}

.review-hero-image {
    margin-top: 30px;
}

.review-hero-image img {
    width: 100%;
    max-height: 680px;
    border-radius: var(--radius);
    box-shadow: var(--shadow-soft);
    object-fit: cover;
    object-position: center 52%;
}

.review-primary-cta {
    display: flex;
    padding-top: 28px;
    padding-bottom: 55px;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 12px;
    color: var(--muted);
    font-size: 0.82rem;
}

.button-large {
    min-height: 56px;
    padding: 16px 29px;
    font-size: 1rem;
}

.quick-verdict {
    display: grid;
    padding: 32px 25px;
    border: 1px solid #dbe4dc;
    border-radius: var(--radius);
    background: linear-gradient(135deg, var(--sage-light), var(--cream));
    gap: 27px;
}

.quick-verdict h2 {
    font-size: clamp(1.8rem, 4vw, 2.55rem);
}

.quick-verdict-heading > p:last-child {
    margin: 0;
    color: var(--muted);
}

.verdict-list {
    display: grid;
    margin: 0;
    gap: 12px;
}

.verdict-list > div {
    padding: 17px;
    border: 1px solid rgba(49, 94, 70, 0.1);
    border-radius: 13px;
    background: rgba(255, 255, 255, 0.74);
}

.verdict-list dt {
    margin-bottom: 4px;
    color: var(--green);
    font-size: 0.73rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.verdict-list dd {
    margin: 0;
    font-weight: 600;
    line-height: 1.5;
}

.review-content-layout {
    display: grid;
    padding-top: 75px;
    padding-bottom: 95px;
    gap: 55px;
}

.review-article-content section + section {
    padding-top: 28px;
}

.review-article-content h2 {
    scroll-margin-top: 100px;
}

.benefit-grid {
    display: grid;
    margin: 28px 0;
    gap: 14px;
}

.benefit-grid > div {
    padding: 22px;
    border: 1px solid var(--line);
    border-radius: 15px;
    background: var(--cream);
}

.benefit-grid h3 {
    margin-bottom: 8px;
    font-size: 1.08rem;
}

.benefit-grid p {
    margin: 0;
    color: var(--muted);
    font-size: 0.93rem;
}

.pros-cons-grid {
    display: grid;
    margin-top: 28px;
    gap: 16px;
}

.pros-card,
.cons-card {
    padding: 24px;
    border-radius: 17px;
}

.pros-card {
    border: 1px solid #cfe0d3;
    background: var(--sage-light);
}

.cons-card {
    border: 1px solid #e5ded2;
    background: var(--beige);
}

.pros-cons-grid h3 {
    font-size: 1.22rem;
}

.pros-cons-grid ul {
    padding-left: 20px;
    margin-bottom: 0;
}

.pros-cons-grid li {
    padding: 4px 0;
}

.review-toc {
    display: grid;
    height: fit-content;
    padding: 24px;
    border: 1px solid var(--line);
    border-radius: 17px;
    background: var(--cream);
    gap: 10px;
}

.review-toc strong {
    margin-bottom: 5px;
    font-family: "Manrope", sans-serif;
}

.review-toc a {
    color: var(--muted);
    font-size: 0.88rem;
}

.review-toc a:hover {
    color: var(--green);
}

.faq-section {
    scroll-margin-top: 100px;
}

.faq-list {
    display: grid;
    margin-top: 25px;
    gap: 10px;
}

.faq-list details {
    border: 1px solid var(--line);
    border-radius: 13px;
    background: var(--white);
}

.faq-list summary {
    position: relative;
    padding: 18px 50px 18px 19px;
    cursor: pointer;
    font-family: Inter, ui-sans-serif, system-ui, sans-serif;
    font-weight: 700;
    list-style: none;
}

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

.faq-list summary::after {
    position: absolute;
    top: 17px;
    right: 19px;
    content: "+";
    color: var(--green);
    font-size: 1.35rem;
}

.faq-list details[open] summary::after {
    content: "−";
}

.faq-list details p {
    padding: 0 19px 19px;
    margin: 0;
    color: var(--muted);
}

.final-review-cta {
    padding: 70px 0 30px;
    color: var(--white);
    background: var(--green-dark);
}

.final-review-cta-inner {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    flex-direction: column;
    gap: 28px;
}

.final-review-cta .eyebrow {
    color: #bad1c1;
}

.final-review-cta h2 {
    max-width: 720px;
}

.final-review-cta-inner p:not(.eyebrow) {
    max-width: 680px;
    color: #d0ded4;
}

.final-disclosure {
    padding-top: 35px;
    margin-top: 50px;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    color: #c4d2c8;
    font-size: 0.82rem;
}

.final-disclosure p {
    max-width: 850px;
    margin: 0;
}

.final-disclosure a {
    color: var(--white);
}

@media (min-width: 620px) {
    .category-grid,
    .post-grid,
    .product-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .newsletter-inner {
        padding: 55px;
    }

    .benefit-grid,
    .pros-cons-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .internal-link-list.horizontal {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 619px) {
    .container {
        width: min(calc(100% - 28px), var(--container));
    }

    body.menu-open {
        overflow: hidden;
    }

    .hero {
        padding: 48px 0 62px;
    }

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

    .hero-actions {
        align-items: stretch;
    }

    .hero-actions .text-link {
        justify-content: center;
    }

    .section {
        padding: 68px 0;
    }

    .featured-product-copy,
    .post-card,
    .category-card {
        padding: 23px;
    }

    .post-card-image {
        margin: -23px -23px 20px;
    }

    .newsletter-inner,
    .quick-verdict {
        border-radius: 18px;
    }

    .button-large,
    .review-primary-cta .button,
    .final-review-cta .button,
    .featured-review-cta .button {
        width: 100%;
    }

    .review-meta span + span::before {
        display: none;
    }

    .review-meta {
        flex-direction: column;
        gap: 4px;
    }

    .footer-grid {
        gap: 28px;
    }
}

@media (min-width: 820px) {
    .nav-toggle {
        display: none;
    }

    .primary-navigation {
        position: static;
        display: flex;
        padding: 0;
        border: 0;
        background: transparent;
        box-shadow: none;
        gap: 7px;
        max-height: none;
        overflow: visible;
    }

    .primary-navigation a {
        padding: 10px 11px;
    }

    .hero {
        padding: 85px 0 100px;
    }

    .hero-grid {
        grid-template-columns: 1.08fr 0.92fr;
        align-items: center;
        gap: 70px;
    }

    .section-heading {
        grid-template-columns: 1fr auto;
        align-items: end;
    }

    .featured-product {
        grid-template-columns: 1.05fr 0.95fr;
        align-items: stretch;
    }

    .featured-product-copy {
        padding: 55px 50px;
    }

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

    .post-grid,
    .product-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .newsletter-inner {
        align-items: center;
        flex-direction: row;
    }

    .footer-grid {
        grid-template-columns: 1.7fr 0.7fr 0.8fr;
    }

    .disclosure-bar {
        align-items: flex-start;
        justify-content: space-between;
        flex-direction: row;
    }

    .disclosure-bar p:first-child {
        max-width: 790px;
    }

    .product-hero {
        grid-template-columns: 1fr 0.9fr;
        gap: 65px;
    }

    .article-layout {
        grid-template-columns: minmax(0, 1fr) 310px;
        gap: 75px;
    }

    .contact-layout {
        grid-template-columns: minmax(0, 1.35fr) minmax(300px, 0.65fr);
        align-items: center;
        gap: 80px;
    }

    .desktop-link {
        display: inline-flex;
    }

    .quick-verdict {
        grid-template-columns: 0.75fr 1.25fr;
        padding: 42px;
        align-items: center;
        gap: 55px;
    }

    .verdict-list {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .review-content-layout {
        grid-template-columns: minmax(0, 1fr) 270px;
        gap: 75px;
    }

    .review-toc {
        position: sticky;
        top: 100px;
    }

    .final-review-cta-inner {
        align-items: center;
        flex-direction: row;
    }

    .internal-links-grid {
        grid-template-columns: 1fr .8fr;
        align-items: center;
        gap: 70px;
    }

    .internal-link-list.horizontal {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }

    .featured-review-cta-inner {
        align-items: center;
        flex-direction: row;
    }
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;
        transition-duration: 0.01ms !important;
    }
}
