.section-hero {
    padding: 28px 32px 20px;
    border-bottom: 0.5px solid #e5e5e5;
}

@media (max-width: 767px) {
    .section-hero {
        padding: 12px 16px;
    }

    .product-image-wrap {
        aspect-ratio: 3 / 2;
    }

    .product-user-profile {
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }
}

.section-hero .eyebrow {
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #888780;
    margin-bottom: 16px;
}

.section-hero h1 {
    font-size: 2rem;
    font-weight: 500;
    line-height: 1.2;
    color: #1a1a1a;
    margin-bottom: 16px;
}

@media (min-width: 768px) {
    .section-hero h1 {
        font-size: 2.5rem;
    }
}

.section-hero p {
    font-size: 1rem;
    color: #5F5E5A;
    max-width: 640px;
    line-height: 1.7;
}

.hero-social-proof {
    font-size: 0.9375rem;
    color: #1a1a1a;
    font-weight: 500;
    margin-top: 12px;
}

.hero-stats {
    display: flex;
    gap: 20px;
    margin-top: 16px;
    flex-wrap: wrap;
}

.hero-stat {
    font-size: 0.8125rem;
    color: #5F5E5A;
}

.hero-stat strong {
    color: #1a1a1a;
    font-weight: 500;
}

.hero-stat.accelerating {
    color: #3B6D11;
    font-weight: 400;
}

.hero-stat.accelerating strong {
    color: #3B6D11;
    font-weight: 500;
}

.price-range {
    font-size: 0.75rem;
    color: #888780;
    margin-top: -4px;
}

.section-products {
    padding: 32px;
    border-bottom: 0.5px solid #e5e5e5;
}

.products-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
    align-items: stretch;
}

@media (min-width: 768px) {
    .products-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

.product-card {
    background-color: #ffffff;
    border: 0.5px solid #e5e5e5;
    border-radius: 12px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    position: relative;
}

.product-card.featured {
    border: 2px solid #378ADD;
}

.product-badge {
    display: inline-block;
    font-size: 0.6875rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    width: fit-content;
    visibility: hidden;
    position: absolute;
    top: 12px;
    left: 12px;
    z-index: 1;
}

.badge-best-overall {
    visibility: visible;
}

.badge-best-overall {
    background-color: #E6F1FB;
    color: #0C447C;
    padding: 3px 9px;
    border-radius: 6px;
}

.product-image-wrap {
    width: 100%;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    border-radius: 8px;
    background-color: #E8E8E8;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.product-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 8px;
}

.product-title {
    font-size: 0.875rem;
    font-weight: 500;
    color: #1a1a1a;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.product-user-profile {
    font-size: 0.8125rem;
    color: #5F5E5A;
    font-style: italic;
    line-height: 1.4;
    flex-grow: 1;
}

.product-rating {
    display: flex;
    align-items: center;
    gap: 6px;
}

.stars {
    display: flex;
    align-items: center;
    gap: 1px;
}

.star-svg {
    width: 14px;
    height: 14px;
}

.rating-number {
    font-size: 0.875rem;
    font-weight: 500;
    color: #1a1a1a;
}

.review-count {
    font-size: 0.8125rem;
    color: #888780;
}

.product-cta {
    display: block;
    background-color: #185FA5;
    color: #ffffff;
    font-size: 0.875rem;
    font-weight: 500;
    text-align: center;
    padding: 10px 16px;
    border-radius: 8px;
    margin-top: auto;
    transition: opacity 0.15s ease;
}

.product-cta:hover {
    opacity: 0.88;
}

.product-cta--secondary {
    background-color: transparent;
    color: var(--ax-cta, #185FA5);
    border: 1.5px solid var(--ax-cta, #185FA5);
}

.product-cta--secondary:hover {
    background-color: rgba(24, 95, 165, 0.06);
    opacity: 1;
}

.section-specs-table {
    padding: 32px;
    border-bottom: 0.5px solid #e5e5e5;
    overflow-x: auto;
}

.specs-table-wrap {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    position: relative;
}

@media (max-width: 767px) {
    .specs-table-wrap {
        position: relative;
    }

    .specs-table-wrap::after {
        content: "";
        position: absolute;
        top: 0;
        right: 0;
        width: 48px;
        height: 100%;
        background: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.92));
        pointer-events: none;
        z-index: 2;
    }
}

.specs-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.875rem;
}

.specs-th {
    text-align: left;
    padding: 10px 12px;
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: #444441;
    border-bottom: 0.5px solid #e5e5e5;
    background-color: #E8E8E8;
}

.specs-row:nth-child(even) {
    background-color: #fafafa;
}

.specs-value {
    padding: 10px 12px;
    color: #1a1a1a;
    text-align: center;
}

.specs-key {
    padding: 10px 12px;
    font-weight: 500;
    color: #1a1a1a;
    white-space: nowrap;
    text-align: left;
}

.specs-na {
    color: #A32D2D;
    font-style: normal;
    text-align: center;
}

.section-why-works {
    padding: 40px 32px;
    border-bottom: 0.5px solid #e5e5e5;
}

.section-why-works h2 {
    font-size: 1.375rem;
    font-weight: 500;
    color: #1a1a1a;
    margin-bottom: 24px;
}

.reasons-list {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.reason-item {
    border-bottom: 0.5px solid #e5e5e5;
    padding: 14px 0;
}

.reason-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.reason-statement {
    font-size: 0.9375rem;
    font-weight: 500;
    color: #1a1a1a;
    margin-bottom: 4px;
}

.reason-proof {
    font-size: 0.875rem;
    color: #5F5E5A;
    line-height: 1.55;
}

.section-insights {
    padding: 40px 32px;
}

.section-insights h2 {
    font-size: 1.375rem;
    font-weight: 500;
    color: #1a1a1a;
    margin-bottom: 20px;
}

.insight-item {
    padding: 12px 0;
    border-bottom: 0.5px solid #e5e5e5;
}

.insight-item:last-child {
    border-bottom: none;
}

.insight-snippet {
    font-size: 0.875rem;
    color: #1a1a1a;
    line-height: 1.6;
    margin-bottom: 4px;
}

.insight-source {
    font-size: 0.75rem;
    color: #185FA5;
    display: flex;
    align-items: center;
    gap: 4px;
}

@media (min-width: 768px) {
    .bottom-sections {
        display: grid;
        grid-template-columns: 1fr 1fr;
        border-bottom: 0.5px solid #e5e5e5;
    }

    .bottom-sections .section-why-works {
        border-bottom: none;
        border-right: 0.5px solid #e5e5e5;
    }

    .bottom-sections .section-insights {
        border-bottom: none;
    }
}

.section-final-cta {
    padding: 48px 32px;
    border-bottom: 0.5px solid #e5e5e5;
    text-align: center;
}

.section-final-cta h2 {
    font-size: 1.375rem;
    font-weight: 500;
    color: #1a1a1a;
    margin-bottom: 24px;
}

@media (min-width: 768px) {
    .section-final-cta h2 {
        font-size: 1.625rem;
    }
}

.cta-arrow {
    position: fixed;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background-color: #ffffff;
    border: 0.5px solid #D3D1C7;
    color: #5F5E5A;
    font-size: 1.125rem;
    text-decoration: none;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s ease, border-color 0.15s ease;
    z-index: 100;
}

.cta-arrow.visible {
    opacity: 1;
    pointer-events: auto;
}

.cta-arrow:hover {
    border-color: #888780;
}

.methodology {
    padding: 32px;
    border-top: 0.5px solid #e5e5e5;
    margin-top: 0;
}

.methodology-label {
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #888780;
    margin-bottom: 8px;
}

.methodology p {
    font-size: 0.8125rem;
    color: #5F5E5A;
    line-height: 1.7;
}

.section-label {
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #888780;
    margin-bottom: 24px;
}

/* ── Related landings ─────────────────────────────────────── */
.section-related {
    padding: 40px 32px;
    border-top: 0.5px solid #e5e5e5;
}

.related-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
}

@media (min-width: 768px) {
    .related-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (max-width: 767px) {
    .related-grid {
        display: flex;
        overflow-x: auto;
        gap: 12px;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        padding-bottom: 8px;
    }

    .related-card {
        min-width: 220px;
        scroll-snap-align: start;
        flex-shrink: 0;
    }

    .section-related::after {
        content: "scroll to see more";
        display: block;
        font-size: 0.75rem;
        color: #888780;
        margin-top: 8px;
    }
}

.related-card {
    display: flex;
    flex-direction: column;
    gap: 6px;
    padding: 16px;
    border: 0.5px solid #e5e5e5;
    border-radius: 10px;
    text-decoration: none;
    transition: border-color 0.15s ease;
}

.related-card:hover {
    border-color: #888780;
}

.related-eyebrow {
    font-size: 0.6875rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.eyebrow-peak {
    color: #3B6D11;
}

.eyebrow-accelerating {
    color: #185FA5;
}

.eyebrow-neutral {
    color: #888780;
}

.related-headline {
    font-size: 0.9375rem;
    font-weight: 500;
    color: #1a1a1a;
    line-height: 1.35;
}

.related-keyword {
    font-size: 0.8125rem;
    color: #888780;
}

.related-trend {
    font-size: 0.8125rem;
    color: #5F5E5A;
    min-height: 1.2em;
}

.related-arrow {
    font-size: 1rem;
    color: #888780;
    margin-top: auto;
    align-self: flex-end;
}

/* ── Landing breadcrumb ───────────────────────────────────── */
.ax-breadcrumb-landing {
    display: flex; align-items: center; gap: 8px; flex-wrap: wrap;
    font-size: 0.75rem; color: var(--ax-text-tertiary);
    padding: 12px 32px 0;
}
.ax-breadcrumb-landing a { color: var(--ax-text-tertiary); text-decoration: none; }
.ax-breadcrumb-landing a:hover { color: var(--ax-text-secondary); }
.ax-breadcrumb-landing span:not([aria-hidden]) { color: var(--ax-text-primary); }
@media (max-width: 767px) { .ax-breadcrumb-landing { padding: 10px 16px 0; } }
