/* ============================================================================
   landing.css
   Shared visual system for MLS landing/editorial pages (homepage, category
   parents, buying guides, KLPs). NOT for marketplace search/listing pages.
   Currently used by: default.aspx, SemiTruckView.aspx
   ============================================================================ */

:root {
    --landing-navy: #252C62;
    --landing-navy-dark: #122038;
    --landing-navy-light: #243e63;
    --landing-orange: #f58220;
    --landing-orange-dark: #D4530F;
    --landing-yellow: #FFBE00;
    --landing-text: #111111;
    --landing-text-muted: #333333;
    --landing-divider: #d9d9d9;
    --landing-card-border: #cccccc;
    --landing-bg-alt: #f1f1f1;
    --landing-white: #ffffff;
    --landing-shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.06);
    --landing-shadow-md: 0 4px 10px rgba(0, 0, 0, 0.10);
    --landing-shadow-lg: 0 10px 22px rgba(0, 0, 0, 0.14);
    --landing-radius-sm: 4px;
    --landing-radius-md: 8px;
    --landing-radius-lg: 12px;
}

/* ============================================================================
   SECTION GUTTERS
   Sitewide .wrapper sets max-width + centers, but has no horizontal padding,
   so on mobile (under 768px) content runs flush against the viewport edge.
   Other pages get gutters from inner elements (.content-card-inner, .row /
   .col-*). Landing-page sections don't have those layers, so add a 15px
   gutter directly to the wrapper inside each landing section type. The
   selector is scoped so this never touches .wrapper usage on other pages.
   ============================================================================ */

.page-hero > .wrapper,
.page-section > .wrapper,
.quick-searches > .wrapper,
.cta-banner > .wrapper {
    padding-left: 15px;
    padding-right: 15px;
}

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

.page-hero {
    background: var(--landing-navy);
    color: var(--landing-white);
    padding: 56px 0 48px;
    position: relative;
    overflow: hidden;
}

.hero-eyebrow {
    color: var(--landing-orange);
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 10px;
    display: inline-block;
}

.page-hero h1 {
    font-size: 44px;
    font-weight: 900;
    line-height: 1.1;
    margin: 0 0 16px;
    color: var(--landing-white);
    max-width: 900px;
}

.page-hero h1 .accent {
    color: var(--landing-yellow);
    white-space: nowrap;
}

.page-hero-intro {
    font-size: 16px;
    line-height: 1.55;
    color: rgba(255, 255, 255, 0.92);
    max-width: 760px;
    margin-bottom: 28px;
}

.hero-stats {
    display: flex;
    gap: 48px;
    flex-wrap: wrap;
}

.hero-stat-value {
    display: block;
    color: var(--landing-yellow);
    font-size: 32px;
    font-weight: 900;
    line-height: 1;
}

.hero-stat-label {
    display: block;
    color: rgba(255, 255, 255, 0.82);
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 4px;
}

/* ============================================================================
   QUICK SEARCH CHIPS (homepage chip strip)
   ============================================================================ */

.quick-searches {
    background: var(--landing-bg-alt);
    border-bottom: 1px solid var(--landing-divider);
    padding: 16px 0;
}

.quick-searches .wrapper {
    display: flex;
    align-items: center;
    gap: 12px;
    overflow-x: auto;
    scrollbar-width: none;
}

.quick-searches .wrapper::-webkit-scrollbar {
    display: none;
}

.quick-searches-label {
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--landing-text);
    flex-shrink: 0;
}

.quick-chip {
    flex-shrink: 0;
    padding: 7px 14px;
    border-radius: 999px;
    background: var(--landing-white);
    border: 1px solid var(--landing-card-border);
    font-size: 13px;
    font-weight: 600;
    color: var(--landing-text);
    white-space: nowrap;
    text-decoration: none;
}

.quick-chip:hover,
.quick-chip:focus {
    border-color: var(--landing-orange);
    color: var(--landing-orange);
    text-decoration: none;
}

.quick-chip.featured {
    background: var(--landing-navy);
    color: var(--landing-white);
    border-color: var(--landing-navy);
}

.quick-chip.featured:hover,
.quick-chip.featured:focus {
    background: var(--landing-navy-light);
    color: var(--landing-white);
}

/* ============================================================================
   PAGE SECTIONS
   ============================================================================ */

.page-section {
    padding: 56px 0;
}

.page-section.alt {
    background: var(--landing-bg-alt);
}

.page-section.tight {
    padding: 40px 0;
}

.section-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 24px;
    flex-wrap: wrap;
    gap: 12px;
}

.section-header.centered {
    justify-content: center;
    text-align: center;
    flex-direction: column;
    align-items: center;
}

.section-title {
    font-size: 26px;
    font-weight: 900;
    color: var(--landing-text);
    margin: 0;
    padding-bottom: 10px;
    border-bottom: 3px solid var(--landing-orange);
    display: inline-block;
}

.section-subtitle {
    color: var(--landing-text-muted);
    font-size: 14px;
    margin: 4px 0 0;
}

.section-subtitle a {
    color: var(--landing-orange);
    font-weight: 700;
    text-decoration: none;
}

.section-subtitle a:hover,
.section-subtitle a:focus {
    color: var(--landing-orange-dark);
    text-decoration: underline;
}

.section-cta {
    color: var(--landing-orange);
    font-weight: 700;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    text-decoration: none;
}

.section-cta:hover,
.section-cta:focus {
    color: var(--landing-orange-dark);
    text-decoration: none;
}

.section-cta i {
    margin-left: 4px;
}

/* ============================================================================
   CAT CARD (homepage 4x2 category drilldown grid)
   ============================================================================ */

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

.cat-card {
    background: var(--landing-white);
    border: 1px solid var(--landing-card-border);
    border-radius: var(--landing-radius-lg);
    overflow: hidden;
    transition: border-color 0.15s, box-shadow 0.15s, transform 0.15s;
    display: flex;
    flex-direction: column;
}

.cat-card:hover {
    border-color: var(--landing-orange);
    box-shadow: var(--landing-shadow-lg);
    transform: translateY(-2px);
}

.cat-card-head {
    position: relative;
    aspect-ratio: 16 / 9;
    background: var(--landing-white);
    display: block;
    overflow: hidden;
}

.cat-card-head img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.cat-card:hover .cat-card-head img {
    transform: scale(1.04);
}

.cat-card-img-placeholder {
    width: 100%;
    height: 100%;
    background-color: #f6f6f6;
    background-image: linear-gradient(135deg, #f6f6f6 0%, #e7e7e7 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--landing-text-muted);
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-align: center;
    position: relative;
}

.cat-card-img-placeholder i {
    font-size: 48px;
    color: var(--landing-navy-light);
    display: block;
    margin-bottom: 6px;
    opacity: 0.35;
}

.cat-card-img-placeholder-label {
    display: block;
}

.cat-card-count {
    position: absolute;
    top: 12px;
    right: 12px;
    background: var(--landing-orange);
    color: var(--landing-white);
    padding: 4px 10px;
    border-radius: 999px;
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    z-index: 2;
    box-shadow: var(--landing-shadow-sm);
}

.cat-card-body {
    padding: 18px 20px 20px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.cat-card-title-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    user-select: none;
}

.cat-card-title {
    font-size: 17px;
    font-weight: 800;
    color: var(--landing-text);
    margin: 0;
    line-height: 1.2;
}

.cat-card-toggle {
    display: none;
    font-size: 16px;
    color: var(--landing-text);
    transition: transform 0.2s;
    background: none;
    border: none;
    padding: 4px 8px;
}

.cat-card-subs {
    margin-top: 14px;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.cat-card-sub {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    padding: 6px 0;
    font-size: 14px;
    color: var(--landing-text);
    border-bottom: 1px dashed var(--landing-divider);
    text-decoration: none;
}

.cat-card-sub:last-child {
    border-bottom: 0;
}

.cat-card-sub-name {
    font-weight: 500;
}

.cat-card-sub-count {
    font-size: 12px;
    font-weight: 700;
    color: var(--landing-text-muted);
    font-variant-numeric: tabular-nums;
}

.cat-card-sub:hover .cat-card-sub-name,
.cat-card-sub:focus .cat-card-sub-name {
    color: var(--landing-orange);
}

.cat-card-all {
    margin-top: 14px;
    color: var(--landing-orange);
    font-weight: 800;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    text-decoration: none;
}

.cat-card-all:hover,
.cat-card-all:focus {
    color: var(--landing-orange-dark);
    text-decoration: none;
}

.cat-card-all i {
    transition: transform 0.15s;
}

.cat-card-all:hover i,
.cat-card-all:focus i {
    transform: translateX(3px);
}

/* ============================================================================
   CATEGORY TILE (large 2-up landing-page tiles, e.g. SemiTruckView Day Cab /
   Sleeper choice). Distinct from .cat-card above.
   ============================================================================ */

.category-tile {
    display: block;
    position: relative;
    background: var(--landing-white);
    border: 1px solid var(--landing-card-border);
    border-radius: var(--landing-radius-md);
    overflow: hidden;
    transition: all 0.25s ease;
    height: 100%;
    color: inherit;
    text-decoration: none;
}

.category-tile:hover,
.category-tile:focus {
    transform: translateY(-4px);
    border-color: var(--landing-orange);
    box-shadow: 0 12px 32px rgba(37, 44, 98, 0.12);
    text-decoration: none;
    color: inherit;
}

.category-tile-image {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    background: var(--landing-bg-alt);
}

.category-tile-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.category-tile:hover .category-tile-image img {
    transform: scale(1.04);
}

.category-tile-count-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--landing-orange);
    color: var(--landing-white);
    padding: 0.375rem 0.875rem;
    border-radius: 2rem;
    font-size: 0.8125rem;
    font-weight: 700;
    z-index: 2;
}

.category-tile-body {
    padding: 1.5rem 1.75rem;
}

.category-tile h3 {
    font-size: 1.375rem;
    font-weight: 700;
    margin-bottom: 0.375rem;
}

.category-tile-desc {
    font-size: 0.9375rem;
    margin-bottom: 1rem;
    line-height: 1.5;
}

.category-tile-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--landing-orange);
    font-weight: 700;
    font-size: 0.9375rem;
}

.category-tile:hover .category-tile-cta {
    color: var(--landing-orange-dark);
}

.category-tile-cta i {
    transition: transform 0.2s ease;
}

.category-tile:hover .category-tile-cta i {
    transform: translateX(4px);
}

/* ============================================================================
   MAKE TILE (named card with logo + name + count, used on homepage)
   ============================================================================ */

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

.make-tile {
    background: var(--landing-white);
    border: 1px solid var(--landing-card-border);
    border-radius: var(--landing-radius-md);
    padding: 16px 12px 14px;
    text-align: center;
    transition: all 0.15s;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    min-height: 150px;
    gap: 10px;
    overflow: hidden;
    text-decoration: none;
}

.make-tile:hover,
.make-tile:focus {
    border-color: var(--landing-navy);
    box-shadow: var(--landing-shadow-md);
    transform: translateY(-2px);
    text-decoration: none;
}

.make-tile-logo {
    height: 50px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    overflow: hidden;
}

.make-tile-logo img {
    max-height: 100%;
    max-width: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
    display: block;
}

.make-tile-logo-placeholder {
    height: 40px;
    width: 90px;
    background: #f6f6f6;
    border: 1px dashed var(--landing-card-border);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 9px;
    font-weight: 700;
    color: var(--landing-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    text-align: center;
    line-height: 1.1;
    padding: 2px;
}

.make-tile-name {
    font-size: 14px;
    font-weight: 800;
    color: var(--landing-text);
    line-height: 1.15;
    margin-top: 2px;
}

.make-tile-count {
    font-size: 11px;
    font-weight: 700;
    color: var(--landing-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.make-tile:hover .make-tile-name,
.make-tile:focus .make-tile-name {
    color: var(--landing-orange);
}

/* ============================================================================
   MAKE TILE COMPACT (logo-only tiles, used on landing pages like SemiTruckView)
   Distinct from .make-tile above.
   ============================================================================ */

.makes-grid-compact {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 14px;
}

.make-tile-compact {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    background: var(--landing-white);
    border: 1px solid var(--landing-card-border);
    border-radius: 6px;
    overflow: hidden;
    text-decoration: none;
    transition: border-color 0.15s ease, box-shadow 0.2s ease, transform 0.15s ease;
}

.make-tile-compact:hover,
.make-tile-compact:focus {
    border-color: var(--landing-orange);
    box-shadow: 0 4px 14px rgba(245, 130, 32, 0.18);
    transform: translateY(-2px);
    text-decoration: none;
}

.make-tile-compact img {
    display: block;
    width: 100%;
    height: auto;
    max-width: 220px;
    object-fit: contain;
}

.make-subheading {
    font-size: 17px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    padding-bottom: 8px;
    margin-bottom: 16px;
    border-bottom: 2px solid var(--landing-orange);
}

.make-subheading:not(:first-of-type) {
    margin-top: 36px;
}

/* ============================================================================
   TRUST GRID (4 differentiator cards)
   ============================================================================ */

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

.trust-item {
    text-align: center;
    padding: 20px;
}

.trust-icon {
    width: 64px;
    height: 64px;
    background: var(--landing-white);
    border: 2px solid var(--landing-orange);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--landing-orange);
    font-size: 26px;
    margin-bottom: 14px;
}

.trust-item h3 {
    font-size: 16px;
    font-weight: 800;
    color: var(--landing-text);
    margin: 0 0 6px;
}

.trust-item p {
    color: var(--landing-text);
    font-size: 14px;
    margin: 0;
    line-height: 1.55;
}

/* ============================================================================
   EDITORIAL BODY COPY (SEO blocks on landing pages)
   ============================================================================ */

.editorial {
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

/* 2-column editorial layout: editorial copy + catalog sidebar.
   Used on the homepage, where the editorial mentions MLS's print-catalog
   heritage and the sidebar surfaces the current digital edition.
   Left-aligned to match the other full-wrapper sections; editorial column
   is capped at 900px for reading comfort. */
.editorial-with-aside {
    display: grid;
    grid-template-columns: minmax(0, 900px) 280px;
    gap: 56px;
    align-items: start;
}

.editorial-with-aside > .editorial {
    max-width: none;
    margin: 0;
}

.editorial-aside {
    position: sticky;
    top: 24px;
}

.catalog-sidebar {
    border-top: 3px solid var(--landing-orange);
    padding-top: 20px;
}

.catalog-sidebar-label {
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--landing-orange);
    margin-bottom: 14px;
}

.catalog-sidebar-cover {
    display: block;
    margin-bottom: 16px;
}

.catalog-sidebar-cover img {
    display: block;
    width: 100%;
    height: auto;
    border: 1px solid var(--landing-card-border);
    border-radius: var(--landing-radius-sm);
    box-shadow: var(--landing-shadow-sm);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.catalog-sidebar-cover:hover img,
.catalog-sidebar-cover:focus img {
    transform: translateY(-2px);
    box-shadow: var(--landing-shadow-md);
}

.catalog-sidebar-meta {
    margin-bottom: 14px;
    line-height: 1.4;
}

.catalog-sidebar-meta strong {
    display: block;
    font-size: 17px;
    font-weight: 800;
    color: var(--landing-text);
}

.catalog-sidebar-meta span {
    font-size: 13px;
    color: var(--landing-text-muted);
}

.catalog-sidebar-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--landing-orange);
    font-weight: 700;
    text-decoration: none;
    margin-bottom: 14px;
}

.catalog-sidebar-link:hover,
.catalog-sidebar-link:focus {
    color: var(--landing-orange-dark);
    text-decoration: none;
}

.catalog-sidebar-link i {
    transition: transform 0.15s;
}

.catalog-sidebar-link:hover i,
.catalog-sidebar-link:focus i {
    transform: translateX(3px);
}

.catalog-sidebar-sub {
    font-size: 13px;
    color: var(--landing-text-muted);
    line-height: 1.55;
    margin: 0;
}

@media (max-width: 991px) {
    .editorial-with-aside {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .editorial-aside {
        position: static;
        max-width: 320px;
    }
}

.editorial h2 {
    font-size: 26px;
    font-weight: 900;
    color: var(--landing-text);
    margin: 0 0 12px;
    padding-bottom: 10px;
    border-bottom: 3px solid var(--landing-orange);
    display: inline-block;
}

.editorial h3 {
    font-size: 18px;
    font-weight: 800;
    color: var(--landing-text);
    margin: 28px 0 8px;
}

.editorial p {
    font-size: 15px;
    line-height: 1.65;
    color: var(--landing-text);
    margin: 0 0 14px;
}

.editorial a {
    font-weight: 600;
}

/* ============================================================================
   CONTENT SECTION (SemiTruckView buying-guide body styles)
   ============================================================================ */

.content-section h2 {
    font-size: 26px;
    font-weight: 800;
    margin-top: 0;
    margin-bottom: 16px;
    padding-bottom: 10px;
    border-bottom: 3px solid var(--landing-orange);
    display: inline-block;
}

.content-section h3 {
    font-size: 19px;
    font-weight: 700;
    margin-top: 24px;
    margin-bottom: 8px;
}

.content-section p {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 16px;
}

.content-section ul {
    padding-left: 24px;
    line-height: 1.75;
    font-size: 16px;
}

.content-section ul li {
    margin-bottom: 6px;
}

/* ============================================================================
   TERMS LIST (definition rows, e.g. "Basic Terms" on SemiTruckView)
   ============================================================================ */

.terms-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.terms-list li {
    padding: 16px 20px;
    background: var(--landing-white);
    border-left: 3px solid var(--landing-orange);
    margin-bottom: 10px;
    border-radius: 0 4px 4px 0;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.04);
}

.terms-list strong {
    display: inline-block;
    min-width: 112px;
}

/* ============================================================================
   TYPE CARD (image + heading + paragraph + CTA, e.g. truck-type sections)
   ============================================================================ */

.type-card {
    background: transparent;
    border: none;
    border-radius: 0;
    padding: 0;
    height: 100%;
}

.type-card-image {
    width: 100%;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    border-radius: 6px;
    border-bottom: 3px solid var(--landing-orange);
    margin-bottom: 18px;
    background: var(--landing-bg-alt);
}

.type-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.type-card:hover .type-card-image img {
    transform: scale(1.03);
}

.type-card h3 {
    margin: 0 0 8px 0;
    font-size: 22px;
    font-weight: 700;
}

.type-card-link {
    color: var(--landing-orange);
    font-weight: 700;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.type-card-link:hover,
.type-card-link:focus {
    color: var(--landing-orange-dark);
    text-decoration: none;
}

.type-card-link i {
    transition: transform 0.2s ease;
}

.type-card-link:hover i,
.type-card-link:focus i {
    transform: translateX(3px);
}

/* ============================================================================
   FEATURE BLOCK (yellow-bordered checklist boxes)
   ============================================================================ */

.feature-block {
    background: var(--landing-white);
    border: 1px solid var(--landing-card-border);
    border-left: 4px solid var(--landing-yellow);
    padding: 20px 22px;
    border-radius: 0 6px 6px 0;
    margin-bottom: 16px;
    height: 100%;
}

.feature-block h4 {
    font-size: 17px;
    font-weight: 700;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.feature-block h4 i {
    color: var(--landing-orange);
    font-size: 15px;
}

.feature-block ul {
    margin: 0;
    padding-left: 20px;
    font-size: 15px;
    line-height: 1.65;
}

/* ============================================================================
   PRO TIP / RED FLAG callouts
   ============================================================================ */

.pro-tip {
    background: #fff8e9;
    border-left: 4px solid var(--landing-yellow);
    padding: 18px 20px;
    margin: 24px 0;
    border-radius: 0 6px 6px 0;
}

.pro-tip-label {
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--landing-orange-dark);
    margin-bottom: 6px;
    display: block;
}

.pro-tip p {
    margin-bottom: 0;
}

.red-flag {
    background: #fff3f3;
    border-left: 4px solid #c0392b;
    padding: 18px 20px;
    margin: 24px 0;
    border-radius: 0 6px 6px 0;
}

.red-flag-label {
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #c0392b;
    margin-bottom: 6px;
    display: block;
}

.red-flag p {
    margin-bottom: 0;
}

/* ============================================================================
   SPEC TABLE / PRICE TABLE
   ============================================================================ */

.spec-table,
.price-table {
    width: 100%;
    background: var(--landing-white);
    border: 1px solid var(--landing-card-border);
    border-radius: var(--landing-radius-md);
    overflow: hidden;
    margin: 20px 0;
}

.spec-table th,
.price-table th {
    background: var(--landing-navy);
    color: var(--landing-white);
    padding: 14px 18px;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    text-align: left;
}

.spec-table td,
.price-table td {
    padding: 14px 18px;
    border-top: 1px solid var(--landing-card-border);
    font-size: 15px;
    vertical-align: top;
}

.spec-table tr td:first-child,
.price-table tr td:first-child {
    font-weight: 700;
    white-space: nowrap;
}

.price-table tr td:nth-child(2) {
    font-weight: 700;
    white-space: nowrap;
}

/* ============================================================================
   CHECKLIST (FontAwesome check bullets)
   ============================================================================ */

.checklist {
    list-style: none;
    padding-left: 0;
    margin: 16px 0;
}

.checklist li {
    position: relative;
    padding-left: 32px;
    padding-bottom: 12px;
    margin-bottom: 12px;
    border-bottom: 1px solid var(--landing-card-border);
    line-height: 1.6;
}

.checklist li:last-child {
    border-bottom: none;
    padding-bottom: 0;
    margin-bottom: 0;
}

.checklist li::before {
    content: "\f00c";
    font-family: "Font Awesome 6 Pro";
    font-weight: 900;
    position: absolute;
    left: 0;
    top: 3px;
    color: var(--landing-orange);
    font-size: 15px;
}

/* ============================================================================
   GUIDE NAV (sticky on mobile, floating on desktop) for buying guides
   ============================================================================ */

.guide-anchor {
    scroll-margin-top: 24px;
}

@media (min-width: 1200px) {
    .guide-nav {
        position: fixed;
        top: 50%;
        right: 24px;
        transform: translateY(-50%);
        z-index: 40;
        max-height: 80vh;
        overflow-y: auto;
        padding: 20px 18px;
        background: var(--landing-white);
        border: 1px solid var(--landing-card-border);
        border-radius: var(--landing-radius-md);
        box-shadow: 0 4px 16px rgba(37, 44, 98, 0.08);
        width: 220px;
        opacity: 0;
        visibility: hidden;
        transition: opacity 0.25s ease, visibility 0.25s ease;
    }

    .guide-nav.is-visible {
        opacity: 1;
        visibility: visible;
    }

    .guide-nav-label {
        font-size: 11px;
        font-weight: 800;
        text-transform: uppercase;
        letter-spacing: 0.12em;
        color: var(--landing-orange);
        margin-bottom: 10px;
        padding-bottom: 8px;
        border-bottom: 1px solid var(--landing-card-border);
    }

    .guide-nav ul {
        list-style: none;
        padding: 0;
        margin: 0;
    }

    .guide-nav li {
        margin-bottom: 2px;
    }

    .guide-nav a {
        display: block;
        padding: 6px 8px;
        font-size: 14px;
        line-height: 1.35;
        text-decoration: none;
        color: inherit;
        border-left: 2px solid transparent;
        border-radius: 4px;
        transition: background 0.15s ease, border-color 0.15s ease, color 0.15s ease;
    }

    .guide-nav a:hover {
        color: var(--landing-orange);
        background: var(--landing-bg-alt);
        text-decoration: none;
    }

    .guide-nav a.is-active {
        color: var(--landing-orange);
        border-left-color: var(--landing-orange);
        background: var(--landing-bg-alt);
        font-weight: 700;
    }
}

@media (max-width: 1199.98px) {
    .guide-nav {
        position: sticky;
        top: 0;
        z-index: 50;
        background: var(--landing-white);
        border-bottom: 1px solid var(--landing-card-border);
        padding: 10px 0;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }

    .guide-nav-label {
        display: none;
    }

    .guide-nav ul {
        display: flex;
        flex-wrap: nowrap;
        list-style: none;
        padding: 0 15px;
        margin: 0;
        gap: 4px;
    }

    .guide-nav li {
        flex-shrink: 0;
    }

    .guide-nav a {
        display: block;
        padding: 8px 14px;
        font-size: 14px;
        text-decoration: none;
        color: inherit;
        white-space: nowrap;
        border-radius: 999px;
        background: var(--landing-bg-alt);
        transition: background 0.15s ease, color 0.15s ease;
    }

    .guide-nav a.is-active {
        background: var(--landing-orange);
        color: var(--landing-white);
        font-weight: 700;
    }

    .guide-nav a:hover {
        text-decoration: none;
    }

    .guide-anchor {
        scroll-margin-top: 64px;
    }
}

/* ============================================================================
   STATE LINKS (geo KLP links on landing pages — NOT for homepage)
   ============================================================================ */

.state-block-heading {
    font-size: 18px;
    font-weight: 800;
    padding-bottom: 10px;
    margin-bottom: 16px;
    border-bottom: 2px solid var(--landing-orange);
}

.state-links-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 6px 20px;
}

.state-link {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 6px 0;
    font-size: 15px;
    color: var(--landing-orange);
    text-decoration: none;
}

.state-link:hover,
.state-link:focus {
    color: var(--landing-orange-dark);
    text-decoration: underline;
}

.state-link i {
    font-size: 12px;
    width: 14px;
}

/* ============================================================================
   EVENTS GRID (industry auctions & events, max 6 logos at 200x200)
   ============================================================================ */

.events-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    justify-content: center;
}

.event-tile {
    flex: 0 0 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    text-decoration: none;
    transition: opacity 0.15s ease;
}

.event-tile:hover,
.event-tile:focus {
    opacity: 0.85;
    text-decoration: none;
}

.event-tile img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    display: block;
}

/* ============================================================================
   FAQ (lightweight bordered list, sitewide standard)
   ============================================================================ */

.faq-list {
    max-width: 900px;
}

.faq-item {
    border-bottom: 1px solid var(--landing-divider);
    padding: 14px 0;
}

.faq-item:first-child {
    border-top: 1px solid var(--landing-divider);
}

.faq-question {
    width: 100%;
    text-align: left;
    background: none;
    border: none;
    padding: 6px 40px 6px 0;
    font-size: 16px;
    font-weight: 700;
    color: var(--landing-text);
    cursor: pointer;
    position: relative;
    line-height: 1.4;
}

.faq-question::after {
    content: "\f078";
    font-family: "Font Awesome 6 Pro";
    font-weight: 900;
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    color: var(--landing-orange);
    font-size: 14px;
    transition: transform 0.2s;
}

.faq-item.is-open .faq-question::after {
    transform: translateY(-50%) rotate(180deg);
}

.faq-answer {
    display: none;
    padding: 8px 0 10px;
    font-size: 15px;
    line-height: 1.65;
    color: var(--landing-text);
    max-width: 780px;
}

.faq-item.is-open .faq-answer {
    display: block;
}

/* ============================================================================
   CTA BANNER (orange gradient full-bleed banner)
   ============================================================================ */

.cta-banner {
    background: linear-gradient(135deg, var(--landing-orange) 0%, var(--landing-orange-dark) 100%);
    padding: 48px 0;
    color: var(--landing-white);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-banner h2 {
    font-size: 30px;
    font-weight: 900;
    margin: 0 0 10px;
    color: var(--landing-white);
}

.cta-banner p {
    font-size: 16px;
    margin-bottom: 24px;
    color: rgba(255, 255, 255, 0.98);
}

.cta-banner .btn-primary-lg {
    background: var(--landing-white);
    color: var(--landing-orange);
    padding: 14px 28px;
    border-radius: var(--landing-radius-sm);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 14px;
    display: inline-block;
    text-decoration: none;
    margin: 4px;
    transition: background 0.15s ease, color 0.15s ease;
}

.cta-banner .btn-primary-lg:hover,
.cta-banner .btn-primary-lg:focus {
    background: var(--landing-navy);
    color: var(--landing-white);
    text-decoration: none;
}

.cta-banner .btn-primary-lg.outline {
    background: transparent;
    color: var(--landing-white);
    border: 2px solid var(--landing-white);
    padding: 12px 26px;
}

.cta-banner .btn-primary-lg.outline:hover,
.cta-banner .btn-primary-lg.outline:focus {
    background: rgba(255, 255, 255, 0.12);
    color: var(--landing-white);
}

/* ============================================================================
   RESPONSIVE
   ============================================================================ */

@media (max-width: 1199.98px) {
    .cat-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 991px) {
    .makes-grid {
        grid-template-columns: repeat(4, 1fr);
    }

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

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

@media (max-width: 767px) {
    .page-hero {
        padding: 40px 0 32px;
    }

    .page-hero h1 {
        font-size: 30px;
    }

    .page-hero-intro {
        font-size: 15px;
    }

    .hero-stats {
        gap: 28px;
    }

    .hero-stat-value {
        font-size: 24px;
    }

    .page-section {
        padding: 36px 0;
    }

    .page-section.tight {
        padding: 28px 0;
    }

    .section-title {
        font-size: 22px;
    }

    .cat-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .cat-card {
        border-radius: var(--landing-radius-md);
    }

    .cat-card-head {
        /* Wider-than-16:9 aspect on mobile so cards stay compact without
           hard-cropping the subject. Source images fill 16:9 (no padding);
           5:2 here shows ~73% of the source — subjects stay clearly
           identifiable, with some top/bottom edge trim on the largest
           phones. */
        aspect-ratio: 5 / 2;
    }

    .cat-card-img-placeholder i {
        font-size: 40px;
    }

    .cat-card-title-row {
        cursor: pointer;
    }

    .cat-card-toggle {
        display: inline-flex;
    }

    .cat-card.is-collapsed .cat-card-subs,
    .cat-card.is-collapsed .cat-card-all {
        display: none;
    }

    .cat-card.is-collapsed .cat-card-toggle {
        transform: rotate(-90deg);
    }

    .makes-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 10px;
    }

    .make-tile {
        min-height: 110px;
        padding: 12px 8px;
    }

    .make-tile-name {
        font-size: 13px;
    }

    .trust-grid {
        grid-template-columns: 1fr;
        gap: 8px;
    }

    .cta-banner h2 {
        font-size: 24px;
    }

    .editorial h2 {
        font-size: 22px;
    }

    .editorial h3 {
        font-size: 16px;
    }
}

@media (max-width: 575.98px) {
    .page-hero h1 {
        font-size: 28px;
    }

    .hero-stats {
        gap: 20px;
        flex-wrap: wrap;
    }

    .hero-stat-value {
        font-size: 22px;
    }

    .event-tile {
        flex: 0 0 calc(50% - 8px);
    }
}

@media (prefers-reduced-motion: reduce) {
    .page-hero,
    .page-hero *,
    .page-section *,
    .quick-searches *,
    .cta-banner *,
    .cat-card,
    .cat-card *,
    .category-tile,
    .category-tile *,
    .make-tile,
    .make-tile *,
    .make-tile-compact,
    .make-tile-compact *,
    .type-card,
    .type-card *,
    .faq-item,
    .faq-item *,
    .guide-nav,
    .guide-nav * {
        transition: none !important;
        animation: none !important;
    }
}
