/* © 2026 H.W. & H. Investments Pty Ltd. All rights reserved. */
/**
 * AYIO Sales — Homepage Styles (World-Class Premium Design)
 *
 * Hero section, quick search bar, category tiles, card carousel,
 * listing cards, CTA banners, dealer grid, testimonials, blog,
 * newsletter, micro-interactions, and responsive layout.
 *
 * Design tokens: --navy, --gold, --off-white, --shadow-*, --radius-*,
 * --sp-*, --transition-slow, Inter font, DM Sans headings (all from style.css).
 */

/* ═══════════════════════════════════════════════════════════════
   KEYFRAME ANIMATIONS
   ═══════════════════════════════════════════════════════════════ */

@keyframes heroFloat {
    0%   { transform: translate(0, 0) rotate(0deg); }
    25%  { transform: translate(12px, -18px) rotate(1deg); }
    50%  { transform: translate(-8px, -30px) rotate(-0.5deg); }
    75%  { transform: translate(-16px, -10px) rotate(0.5deg); }
    100% { transform: translate(0, 0) rotate(0deg); }
}

@keyframes heroFloatAlt {
    0%   { transform: translate(0, 0) rotate(0deg); }
    25%  { transform: translate(-14px, 12px) rotate(-1deg); }
    50%  { transform: translate(10px, 24px) rotate(0.5deg); }
    75%  { transform: translate(18px, 6px) rotate(-0.5deg); }
    100% { transform: translate(0, 0) rotate(0deg); }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(28px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: scale(0.95);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50%      { opacity: 0.5; }
}

@keyframes shimmer {
    0%   { background-position: -200% 0; }
    100% { background-position: 200% 0; }
}

@keyframes subtleGlow {
    0%, 100% { box-shadow: 0 0 20px rgba(240, 165, 0, 0.1); }
    50%      { box-shadow: 0 0 30px rgba(240, 165, 0, 0.25); }
}

@keyframes diagonalDrift {
    0%   { background-position: 0% 0%; }
    100% { background-position: 100% 100%; }
}

@keyframes heroLines {
    0%   { transform: translateX(-50%) translateY(-50%) rotate(45deg); }
    100% { transform: translateX(0%) translateY(0%) rotate(45deg); }
}

@keyframes countUp {
    from {
        opacity: 0;
        transform: translateY(16px) scale(0.9);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@keyframes springIn {
    0% {
        opacity: 0;
        transform: scale(0.8);
    }
    60% {
        transform: scale(1.05);
    }
    80% {
        transform: scale(0.98);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes scrollChevron {
    0%, 100% {
        transform: translateX(-50%) translateY(0);
        opacity: 0.4;
    }
    50% {
        transform: translateX(-50%) translateY(8px);
        opacity: 0.8;
    }
}

/* ═══════════════════════════════════════════════════════════════
   1. HERO SECTION
   ═══════════════════════════════════════════════════════════════ */

.hero {
    position: relative;
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #1a3461 0%, #1e3d6e 100%);
    color: #fff;
    padding: 7rem 0 4rem;
    text-align: center;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    inset: -50%;
    width: 200%;
    height: 200%;
    background: repeating-linear-gradient(
        45deg,
        transparent,
        transparent 60px,
        rgba(255, 255, 255, 0.03) 60px,
        rgba(255, 255, 255, 0.03) 61px
    );
    animation: heroLines 20s linear infinite;
    opacity: 0.05;
    z-index: 0;
    pointer-events: none;
}

.hero::after {
    content: '';
    position: absolute;
    top: -20%;
    left: 50%;
    transform: translateX(-50%);
    width: 120%;
    height: 80%;
    background: radial-gradient(
        ellipse at 50% 0%,
        rgba(240, 165, 0, 0.08) 0%,
        transparent 60%
    );
    z-index: 0;
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    margin: 0 auto;
    padding: 0 var(--sp-lg);
}

.hero-content > * {
    animation: fadeInUp 0.8s cubic-bezier(0.4, 0, 0.2, 1) backwards;
}

.hero-content > *:nth-child(1) { animation-delay: 0s; }
.hero-content > *:nth-child(2) { animation-delay: 0.1s; }
.hero-content > *:nth-child(3) { animation-delay: 0.2s; }
.hero-content > *:nth-child(4) { animation-delay: 0.3s; }
.hero-content > *:nth-child(5) { animation-delay: 0.4s; }
.hero-content > *:nth-child(6) { animation-delay: 0.5s; }
.hero-content > *:nth-child(7) { animation-delay: 0.6s; }

.hero h1 {
    font-family: var(--font-heading);
    font-size: 4.5rem;
    font-weight: 900;
    letter-spacing: -2px;
    line-height: 1.05;
    color: var(--white);
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.2);
    margin: 0 0 1rem;
    animation: fadeInUp 0.8s cubic-bezier(0.4, 0, 0.2, 1) backwards;
}

.hero-subtitle-secondary {
    font-size: 18px;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--gold);
    opacity: 0.9;
    margin-bottom: 8px;
    font-weight: 600;
}

.hero-subtitle {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.75);
    max-width: 600px;
    margin: 0 auto 2.5rem;
    line-height: 1.6;
}

/* HERO SEARCH WIDGET */
.hero-search {
    max-width: 860px;
    margin: 0 auto;
    animation: fadeInUp 1s 0.3s cubic-bezier(0.4, 0, 0.2, 1) backwards;
}

.hero-search-fields {
    background: var(--white);
    border-radius: 12px;
    padding: 8px;
    display: flex;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.18), 0 2px 8px rgba(0, 0, 0, 0.08);
    align-items: center;
}

.hero-search-field {
    flex: 1;
    min-width: 0;
}

.hero-search-field--keyword {
    flex: 1.3;
}

.hero-search-select,
.hero-search-input {
    height: 48px;
    border: none;
    border-radius: 8px;
    font-size: 15px;
    padding: 0 16px;
    background: transparent;
    color: var(--grey-900);
    flex: 1;
    min-width: 0;
    outline: none;
    font-family: var(--font-body);
}

.hero-search-select {
    border-right: 1px solid var(--grey-200);
    cursor: pointer;
    appearance: none;
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='7'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%239ca3af' stroke-width='1.5' fill='none'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    padding-right: 32px;
}

.hero-search-input {
    border-right: 1px solid var(--grey-200);
}

.hero-search-input::placeholder {
    color: var(--grey-400);
}

.hero-search-btn {
    background: var(--gold);
    height: 48px;
    min-width: 140px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 700;
    border: none;
    cursor: pointer;
    transition: all 0.2s ease;
    flex-shrink: 0;
    color: var(--navy);
    font-family: var(--font-heading);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

.hero-search-btn:hover {
    background: var(--gold-hover);
    transform: scale(1.02);
}

/* HERO CTAs */
.hero-ctas {
    display: flex;
    gap: 12px;
    justify-content: center;
    margin-top: 1.5rem;
    flex-wrap: wrap;
    animation: fadeInUp 1s 0.5s cubic-bezier(0.4, 0, 0.2, 1) backwards;
}

.hero-ctas .btn {
    backdrop-filter: blur(8px);
    border-radius: var(--radius-full);
}

/* POPULAR SEARCHES */
.hero-popular {
    margin-top: 2rem;
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}

.hero-popular span {
    color: rgba(255, 255, 255, 0.5);
    font-size: 13px;
}

.hero-popular a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 13px;
    padding: 4px 12px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-full);
    transition: all 0.2s ease;
    text-decoration: none;
}

.hero-popular a:hover {
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    border-color: rgba(255, 255, 255, 0.4);
}

/* SCROLL INDICATOR */
.hero-scroll {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    animation: scrollChevron 2s infinite;
    z-index: 2;
}

.hero-scroll svg {
    width: 24px;
    height: 24px;
    color: rgba(255, 255, 255, 0.4);
}

/* HERO STATS (in-hero animated counters) */
.hero-stats {
    display: flex;
    justify-content: center;
    gap: 48px;
    margin-top: 32px;
    padding-top: 32px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    animation: fadeInUp 1s 0.7s cubic-bezier(0.4, 0, 0.2, 1) backwards;
}

.hero-stat {
    text-align: center;
}

.hero-stat-number {
    display: block;
    font-family: var(--font-heading);
    font-size: 1.75rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.9);
    letter-spacing: -0.5px;
    line-height: 1.2;
}

.hero-stat-label {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 2px;
    display: block;
}

/* ═══════════════════════════════════════════════════════════════
   2. STATS BAR
   ═══════════════════════════════════════════════════════════════ */

.stats-bar-navy {
    background: var(--navy);
    padding: 2rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.stats-bar-grid {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.stats-bar-item {
    text-align: center;
    padding: 0 2rem;
    border-right: 1px solid rgba(255, 255, 255, 0.12);
}

.stats-bar-item:last-child {
    border-right: none;
}

.stats-bar-number {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--gold);
    display: block;
    letter-spacing: -1px;
    line-height: 1.2;
}

.stats-bar-label {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 4px;
    display: block;
}

/* ═══════════════════════════════════════════════════════════════
   3. SECTION STYLES (shared)
   ═══════════════════════════════════════════════════════════════ */

.section {
    padding: 80px 0;
}

.section-header {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    margin-bottom: 48px;
    flex-wrap: wrap;
    gap: 1rem;
}

.section-header h2 {
    font-family: var(--font-heading);
    font-size: 1.875rem;
    font-weight: 800;
    color: var(--navy);
    margin: 0;
    letter-spacing: -0.5px;
}

.section-link {
    color: var(--gold);
    font-weight: 600;
    font-size: 14px;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    transition: color 0.2s ease;
    text-decoration: none;
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
    font-family: inherit;
}

.section-link:hover {
    color: var(--gold-hover);
}

.section-footer {
    text-align: center;
    margin-top: 2.5rem;
}

.section-footer .btn {
    min-width: 220px;
}

/* ═══════════════════════════════════════════════════════════════
   4. CATEGORY GRID
   ═══════════════════════════════════════════════════════════════ */

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

.category-tile {
    height: 170px;
    border-radius: 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    text-decoration: none;
    position: relative;
    overflow: hidden;
    transition: transform 0.25s ease,
                box-shadow 0.25s ease,
                border-color 0.25s ease;
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
    border: 2px solid rgba(255, 255, 255, 0.06);
}

.category-tile:nth-child(1) {
    background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 100%);
}

.category-tile:nth-child(2) {
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
}

.category-tile:nth-child(3) {
    background: linear-gradient(135deg, var(--navy-mid) 0%, var(--navy-light) 100%);
}

.category-tile:nth-child(4) {
    background: linear-gradient(135deg, var(--navy-light) 0%, var(--navy) 100%);
}

.category-tile:nth-child(5) {
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-dark) 100%);
}

.category-tile:nth-child(6) {
    background: linear-gradient(135deg, var(--navy-mid) 0%, var(--navy-dark) 100%);
}

.category-tile:nth-child(7) {
    background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy-mid) 100%);
}

.category-tile:nth-child(8) {
    background: linear-gradient(135deg, var(--navy-light) 0%, var(--navy-mid) 100%);
}

.category-tile:nth-child(9) {
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
}

.category-tile:hover {
    transform: scale(1.02);
    border-color: var(--gold);
    box-shadow: 0 8px 24px rgba(212, 175, 55, 0.2);
}

.category-tile:active {
    transform: translateY(-2px) scale(1.01);
}

/* Muted state for 0-listing categories — still clickable, just subtly dimmed */
.category-tile--empty {
    opacity: 0.65;
    filter: grayscale(0.2);
}

.category-tile--empty:hover {
    opacity: 1;
    filter: grayscale(0);
}

.category-tile--empty .category-count,
.category-count--zero {
    background: rgba(255, 255, 255, 0.15);
    color: rgba(255, 255, 255, 0.6);
}

/* "Be the first to list" CTA inside empty category tiles */
.category-cta {
    display: block;
    margin-top: 4px;
    font-size: 0.7rem;
    font-weight: 600;
    color: var(--gold, #D4A843);
    letter-spacing: 0.02em;
    opacity: 0;
    transform: translateY(4px);
    transition: opacity 0.25s ease, transform 0.25s ease;
}

.category-tile--empty:hover .category-cta {
    opacity: 1;
    transform: translateY(0);
}

.category-icon {
    width: 72px;
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
}

.category-icon svg {
    width: 48px;
    height: 48px;
    stroke: var(--white);
    stroke-width: 1.8;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.15));
}

.category-name {
    color: var(--white);
    font-weight: 700;
    font-size: 15px;
    letter-spacing: 0.02em;
}

.category-count {
    background: transparent;
    color: var(--gold);
    font-size: 12px;
    font-weight: 700;
    padding: 0;
    min-width: 0;
    text-align: center;
    letter-spacing: 0.03em;
}

/* ═══════════════════════════════════════════════════════════════
   5. HOW IT WORKS
   ═══════════════════════════════════════════════════════════════ */

.section-how-it-works {
    background: var(--off-white);
}

.hiw-tabs {
    display: flex;
    gap: 4px;
    background: var(--grey-100);
    border-radius: var(--radius-full);
    padding: 4px;
    width: fit-content;
    margin: 0 auto 2.5rem;
}

.hiw-tab {
    padding: 8px 24px;
    border-radius: var(--radius-full);
    font-size: 14px;
    font-weight: 600;
    border: none;
    background: transparent;
    cursor: pointer;
    transition: all 0.2s ease;
    color: var(--grey-600);
    font-family: var(--font-body);
}

.hiw-tab:hover {
    color: var(--navy);
}

.hiw-tab-active {
    background: var(--gold);
    color: var(--navy);
}

.hiw-grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    position: relative;
}

.hiw-grid-3::before {
    content: '';
    position: absolute;
    top: 24px;
    left: 20%;
    right: 20%;
    height: 0;
    border-top: 2px dashed var(--grey-300, #d1d5db);
    z-index: 0;
}

.hiw-step {
    text-align: center;
    position: relative;
    z-index: 1;
}

.hiw-step-number {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--gold);
    color: var(--navy);
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    box-shadow: 0 4px 12px rgba(212, 175, 55, 0.25);
}

.hiw-step h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--navy);
}

.hiw-step p {
    font-size: 14px;
    color: var(--grey-600);
    max-width: 280px;
    margin: 0 auto;
    line-height: 1.6;
}

/* ═══════════════════════════════════════════════════════════════
   6. FEATURED CAROUSEL
   ═══════════════════════════════════════════════════════════════ */

.section-featured {
    background: var(--white);
}

.card-carousel {
    position: relative;
    overflow: hidden;
}

.carousel-track {
    display: flex;
    gap: 24px;
    scroll-snap-type: x mandatory;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding: 4px 0;
}

.carousel-track::-webkit-scrollbar {
    display: none;
}

.carousel-track .listing-card {
    flex: 0 0 calc(33.333% - 14px);
    scroll-snap-align: start;
    min-width: 300px;
}

.carousel-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid var(--grey-200);
    box-shadow: var(--shadow-md);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: var(--navy);
    z-index: 5;
    transition: all 0.2s ease;
}

.carousel-nav:hover {
    background: var(--white);
    box-shadow: var(--shadow-lg);
    transform: translateY(-50%) scale(1.05);
}

.carousel-prev {
    left: -4px;
}

.carousel-next {
    right: -4px;
}

/* Card styles live in listing-card.css (single source of truth) */

/* ═══════════════════════════════════════════════════════════════
   8. CARD GRID LAYOUTS
   ═══════════════════════════════════════════════════════════════ */

.card-grid {
    display: grid;
    gap: 24px;
}

.card-grid-3 {
    grid-template-columns: repeat(3, 1fr);
}

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

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

/* ═══════════════════════════════════════════════════════════════
   9. AUCTION SECTION
   ═══════════════════════════════════════════════════════════════ */

.section-auctions {
    background: linear-gradient(155deg, var(--navy-dark), var(--navy));
    padding: 4rem 0;
    color: var(--white);
}

.section-auctions .section-header h2 {
    color: var(--white);
}

.section-auctions .section-link {
    color: var(--gold);
}

.section-auctions .listing-card {
    border-color: transparent;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(8px);
}

.section-auctions .listing-card:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.1);
}

.section-auctions .listing-card__body {
    color: var(--white);
}

.section-auctions .listing-card__title {
    color: var(--white);
}

.section-auctions .listing-card__price {
    color: var(--gold);
}

.section-auctions .listing-card__footer {
    color: rgba(255, 255, 255, 0.5);
}

.section-auctions .card-sm-specs {
    color: rgba(255, 255, 255, 0.5);
}

/* Live dot */
.live-dot {
    display: inline-block;
    width: 10px;
    height: 10px;
    background: var(--color-danger);
    border-radius: 50%;
    margin-right: 8px;
    animation: pulse 2s infinite;
    vertical-align: middle;
}

/* ═══════════════════════════════════════════════════════════════
   10. CTA BANNERS
   ═══════════════════════════════════════════════════════════════ */

.cta-banner {
    padding: 80px 0;
}

.cta-sell-to-dealer {
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light, #2a3a4e) 100%);
}

.cta-sell-to-dealer .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

.cta-sell-to-dealer h2 {
    color: var(--white);
    font-family: var(--font-heading);
    font-weight: 800;
    margin: 0;
    font-size: 1.75rem;
}

.cta-sell-to-dealer p {
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
}

.cta-btn {
    flex-shrink: 0;
}

.cta-finance {
    background: var(--navy-dark);
}

.cta-finance h2 {
    color: var(--white);
    font-family: var(--font-heading);
    font-weight: 800;
    margin: 0;
}

.cta-finance p {
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
}

.cta-finance .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

/* ═══════════════════════════════════════════════════════════════
   11. CLEARANCE SECTION
   ═══════════════════════════════════════════════════════════════ */

.section-clearance {
    background: var(--off-white);
}

/* ═══════════════════════════════════════════════════════════════
   12. NEAR YOU SECTION
   ═══════════════════════════════════════════════════════════════ */

.near-you-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

/* ═══════════════════════════════════════════════════════════════
   13. TESTIMONIALS
   ═══════════════════════════════════════════════════════════════ */

.section-testimonials {
    background: var(--white);
}

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

.testimonial-card {
    background: var(--off-white);
    border-radius: var(--radius-lg);
    padding: 2rem;
    position: relative;
    border: 1px solid var(--grey-100);
}

.testimonial-card::before {
    content: '\201C';
    position: absolute;
    top: 16px;
    left: 20px;
    font-size: 4rem;
    font-family: var(--font-heading);
    color: var(--gold);
    opacity: 0.3;
    line-height: 1;
}

.testimonial-quote {
    font-size: 15px;
    color: var(--grey-700);
    line-height: 1.7;
    margin-bottom: 1.5rem;
    padding-top: 1rem;
    font-style: italic;
}

.testimonial-stars {
    display: flex;
    gap: 2px;
    margin-bottom: 1rem;
    color: var(--gold);
    font-size: 16px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.testimonial-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--navy);
    color: var(--gold);
    font-weight: 700;
    font-size: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.testimonial-name {
    font-size: 15px;
    color: var(--navy);
    display: block;
    font-weight: 600;
}

.testimonial-meta {
    font-size: 13px;
    color: var(--grey-500);
}

/* Feature-card variant (replaces testimonials until real reviews exist) */
.section-testimonials--features .testimonial-card::before {
    display: none;
}

.section-testimonials--features .testimonial-card {
    text-align: center;
    padding: 2rem 1.5rem;
}

.section-testimonials--features .testimonial-stars {
    justify-content: center;
    color: var(--navy);
    margin-bottom: 1.25rem;
}

.section-testimonials--features .testimonial-stars svg {
    width: 36px;
    height: 36px;
}

.section-testimonials--features .testimonial-quote {
    font-style: normal;
    font-size: 14px;
    padding-top: 0;
}

.section-testimonials--features .testimonial-author {
    justify-content: center;
}

.section-testimonials--features .testimonial-name {
    font-size: 16px;
    font-weight: 700;
}

.section-testimonials--features .testimonial-meta {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.03em;
}

/* ═══════════════════════════════════════════════════════════════
   14. TRUST BADGES
   ═══════════════════════════════════════════════════════════════ */

.section-trust {
    padding: 3rem 0;
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
    text-align: center;
}

.trust-badge {
    padding: 1.5rem 1rem;
}

.trust-badge-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--gold-glow);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 12px;
}

.trust-badge-icon svg {
    stroke: var(--gold);
    width: 24px;
    height: 24px;
}

.trust-badge-label {
    display: block;
    font-weight: 700;
    font-size: 14px;
    color: var(--navy);
    margin-bottom: 2px;
}

.trust-badge-sub {
    display: block;
    font-size: 12px;
    color: var(--grey-500);
}

/* ═══════════════════════════════════════════════════════════════
   15. DEALER GRID
   ═══════════════════════════════════════════════════════════════ */

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

.dealer-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 24px 16px;
    text-align: center;
    border: 1px solid var(--grey-200);
    text-decoration: none;
    transition: all 0.2s ease;
    display: block;
}

.dealer-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--gold);
}

.dealer-logo {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto 12px;
    display: block;
}

.dealer-logo-placeholder {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--navy);
    color: var(--gold);
    font-weight: 700;
    font-size: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 12px;
}

.dealer-name {
    font-size: 15px;
    color: var(--navy);
    margin-bottom: 4px;
    font-weight: 600;
}

.dealer-meta {
    font-size: 13px;
    color: var(--grey-500);
    display: block;
}

.dealer-count {
    font-size: 12px;
    color: var(--gold);
    font-weight: 600;
    display: block;
    margin-top: 4px;
}

/* ═══════════════════════════════════════════════════════════════
   16. LOCATIONS
   ═══════════════════════════════════════════════════════════════ */

.state-cards-row {
    display: grid;
    grid-template-columns: repeat(8, 1fr);
    gap: 12px;
}

.state-mini-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 16px 8px;
    background: var(--white);
    border-radius: var(--radius);
    border: 1px solid var(--grey-200);
    text-decoration: none;
    transition: all 0.2s ease;
    gap: 4px;
}

.state-mini-card:hover {
    border-color: var(--gold);
    box-shadow: var(--shadow-sm);
    transform: translateY(-2px);
}

.state-mini-card span:first-child {
    font-weight: 800;
    font-size: 18px;
    color: var(--navy);
}

.state-mini-count {
    font-size: 12px;
    color: var(--grey-500);
}

/* ═══════════════════════════════════════════════════════════════
   17. ECOSYSTEM SECTION
   ═══════════════════════════════════════════════════════════════ */

.section-ecosystem {
    background: var(--off-white);
}

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

.ecosystem-card {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px;
    background: var(--white);
    border-radius: var(--radius-lg);
    border: 1px solid var(--grey-100);
    text-decoration: none;
    transition: all 0.2s ease;
}

.ecosystem-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
    border-color: var(--gold);
}

.ecosystem-icon {
    width: 48px;
    height: 48px;
    border-radius: var(--radius);
    background: var(--navy);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.ecosystem-icon svg {
    width: 24px;
    height: 24px;
    stroke: var(--gold);
}

.ecosystem-text h3 {
    font-size: 15px;
    font-weight: 700;
    color: var(--navy);
    margin: 0 0 2px;
}

.ecosystem-text p {
    font-size: 13px;
    color: var(--grey-500);
    margin: 0;
}

/* ═══════════════════════════════════════════════════════════════
   18. BLOG PREVIEW
   ═══════════════════════════════════════════════════════════════ */

.blog-preview-card {
    display: block;
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--grey-100);
    text-decoration: none;
    transition: all 0.2s ease;
}

.blog-preview-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.blog-preview-img {
    height: 180px;
    background-size: cover;
    background-position: center;
    background-color: var(--grey-100);
}

.blog-preview-img-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--grey-100);
    height: 180px;
}

.blog-preview-body {
    padding: 16px;
}

.blog-preview-body h3 {
    font-size: 16px;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 8px;
    line-height: 1.3;
}

.blog-preview-body p {
    font-size: 14px;
    color: var(--grey-600);
    margin-bottom: 8px;
    line-height: 1.5;
}

.blog-preview-date {
    font-size: 12px;
    color: var(--grey-400);
}

/* ═══════════════════════════════════════════════════════════════
   19. NEWSLETTER
   ═══════════════════════════════════════════════════════════════ */

.newsletter-section {
    background: linear-gradient(135deg, var(--gold, #D4A843) 0%, var(--gold-hover, #c49535) 100%);
    padding: 4rem 0;
    text-align: center;
    color: var(--navy, #1a2332);
}

.newsletter-box {
    max-width: 600px;
    margin: 0 auto;
}

.newsletter-box h2 {
    color: var(--navy, #1a2332);
    font-family: var(--font-heading);
    font-weight: 800;
    margin-bottom: 8px;
}

.newsletter-box p {
    color: rgba(26, 35, 50, 0.75);
    margin-bottom: 1.5rem;
}

.newsletter-form {
    display: flex;
    gap: 8px;
    max-width: 480px;
    margin: 0 auto;
}

.newsletter-input {
    flex: 1;
    padding: 14px 16px;
    border-radius: var(--radius);
    border: 2px solid rgba(26, 35, 50, 0.15);
    background: #fff;
    color: var(--navy, #1a2332);
    font-size: 15px;
    font-family: var(--font-body);
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.newsletter-input::placeholder {
    color: #8892a4;
}

.newsletter-input:focus {
    border-color: var(--navy, #1a2332);
    outline: none;
    box-shadow: 0 0 0 3px rgba(26, 35, 50, 0.15);
}

.newsletter-btn {
    flex-shrink: 0;
    background: var(--navy, #1a2332);
    color: #fff;
    border-color: var(--navy, #1a2332);
}

.newsletter-btn:hover {
    background: var(--navy-dark, #111b27);
    color: #fff;
    border-color: var(--navy-dark, #111b27);
}

/* ═══════════════════════════════════════════════════════════════
   20. SCROLL REVEAL
   ═══════════════════════════════════════════════════════════════ */

.scroll-reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.scroll-reveal.revealed,
.scroll-reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.scroll-reveal.revealed > .container > .card-grid > *,
.scroll-reveal.revealed > .container > .category-grid > * {
    opacity: 0;
    animation: fadeInUp 0.5s forwards;
}

.scroll-reveal.revealed > .container > .card-grid > *:nth-child(1),
.scroll-reveal.revealed > .container > .category-grid > *:nth-child(1) {
    animation-delay: 0s;
}

.scroll-reveal.revealed > .container > .card-grid > *:nth-child(2),
.scroll-reveal.revealed > .container > .category-grid > *:nth-child(2) {
    animation-delay: 0.1s;
}

.scroll-reveal.revealed > .container > .card-grid > *:nth-child(3),
.scroll-reveal.revealed > .container > .category-grid > *:nth-child(3) {
    animation-delay: 0.15s;
}

.scroll-reveal.revealed > .container > .card-grid > *:nth-child(4),
.scroll-reveal.revealed > .container > .category-grid > *:nth-child(4) {
    animation-delay: 0.2s;
}

.scroll-reveal.revealed > .container > .card-grid > *:nth-child(5),
.scroll-reveal.revealed > .container > .category-grid > *:nth-child(5) {
    animation-delay: 0.25s;
}

.scroll-reveal.revealed > .container > .card-grid > *:nth-child(6),
.scroll-reveal.revealed > .container > .category-grid > *:nth-child(6) {
    animation-delay: 0.3s;
}

.scroll-reveal.revealed > .container > .card-grid > *:nth-child(7),
.scroll-reveal.revealed > .container > .category-grid > *:nth-child(7) {
    animation-delay: 0.35s;
}

.scroll-reveal.revealed > .container > .card-grid > *:nth-child(8),
.scroll-reveal.revealed > .container > .category-grid > *:nth-child(8) {
    animation-delay: 0.4s;
}

.scroll-reveal.revealed > .container > .category-grid > *:nth-child(9) {
    animation-delay: 0.45s;
}

/* ═══════════════════════════════════════════════════════════════
   21. EMPTY STATES
   ═══════════════════════════════════════════════════════════════ */

.empty-state {
    text-align: center;
    padding: 3rem;
    color: var(--grey-500);
}

.empty-state-compact {
    padding: 2rem;
}

.section-empty {
    text-align: center;
    color: var(--grey-500);
    font-size: 15px;
    padding: 2rem;
}

/* ═══════════════════════════════════════════════════════════════
   22. TRUST SIGNALS STATS
   ═══════════════════════════════════════════════════════════════ */

.trust-signals {
    padding: 64px 0;
    background: var(--navy, #1a2332);
    color: #fff;
}

.trust-signals-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    max-width: 960px;
    margin: 0 auto;
    text-align: center;
}

.trust-signals-item {
    padding: 24px 16px;
    background: rgba(255,255,255,0.05);
    border-radius: 12px;
    border: 1px solid rgba(255,255,255,0.08);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.trust-signals-item:hover {
    transform: translateY(-4px);
    background: rgba(255,255,255,0.08);
}

.trust-signals-number {
    display: block;
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--gold, #D4A843);
    letter-spacing: -1px;
    line-height: 1.2;
    margin-bottom: 4px;
}

.trust-signals-label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: rgba(255,255,255,0.7);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* ═══════════════════════════════════════════════════════════════
   23. MID-PAGE CTA BANNER
   ═══════════════════════════════════════════════════════════════ */

.cta-mid-page {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light, #2a3a4e) 100%);
    color: var(--white);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-mid-page::before {
    content: '';
    position: absolute;
    top: -50%;
    left: 50%;
    transform: translateX(-50%);
    width: 120%;
    height: 100%;
    background: radial-gradient(
        ellipse at 50% 100%,
        rgba(240, 165, 0, 0.06) 0%,
        transparent 60%
    );
    pointer-events: none;
}

.cta-mid-content {
    position: relative;
    z-index: 1;
    max-width: 600px;
    margin: 0 auto;
}

.cta-mid-content h2 {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 800;
    color: var(--white);
    margin: 0 0 8px;
}

.cta-mid-content p {
    color: rgba(255, 255, 255, 0.65);
    margin: 0 0 24px;
    font-size: 1.1rem;
    line-height: 1.6;
}

.cta-mid-content .btn-lg {
    padding: 16px 32px;
    font-size: 16px;
    font-weight: 700;
}

/* ═══════════════════════════════════════════════════════════════
   24. HOW IT WORKS — STEP ICONS
   ═══════════════════════════════════════════════════════════════ */

.hiw-step-icon {
    margin-bottom: 12px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hiw-step-icon svg {
    width: 48px;
    height: 48px;
    transition: transform 0.3s ease;
}

.hiw-step:hover .hiw-step-icon svg {
    transform: scale(1.1);
}

/* ═══════════════════════════════════════════════════════════════
   25. FINAL CTA SECTION
   ═══════════════════════════════════════════════════════════════ */

.cta-final {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light, #2a3a4e) 100%);
    text-align: center;
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.cta-final::before {
    content: '';
    position: absolute;
    top: -30%;
    left: 50%;
    transform: translateX(-50%);
    width: 140%;
    height: 100%;
    background: radial-gradient(
        ellipse at 50% 0%,
        rgba(240, 165, 0, 0.06) 0%,
        transparent 60%
    );
    pointer-events: none;
}

.cta-final-content {
    position: relative;
    z-index: 1;
    max-width: 600px;
    margin: 0 auto;
}

.cta-final-content h2 {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 800;
    margin: 0 0 12px;
    color: var(--white);
}

.cta-final-content p {
    color: rgba(255, 255, 255, 0.65);
    font-size: 1.1rem;
    line-height: 1.6;
    margin: 0 0 28px;
}

.cta-final-actions {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ═══════════════════════════════════════════════════════════════
   RESPONSIVE — 1024px
   ═══════════════════════════════════════════════════════════════ */

@media (max-width: 1024px) {
    .category-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .card-grid-4 {
        grid-template-columns: repeat(3, 1fr);
    }

    .near-you-grid {
        grid-template-columns: repeat(3, 1fr);
    }

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

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

/* ═══════════════════════════════════════════════════════════════
   RESPONSIVE — 768px
   ═══════════════════════════════════════════════════════════════ */

@media (max-width: 768px) {
    .hero {
        min-height: auto;
        padding: 4rem 0 3rem;
    }

    .hero h1 {
        font-size: 2.75rem;
    }

    .hero-stats {
        gap: 32px;
    }

    .hero-stat-number {
        font-size: 2rem;
    }

    .hero-search-fields {
        flex-direction: column;
        border-radius: var(--radius);
    }

    .hero-search-select,
    .hero-search-input {
        border-right: none;
        border-bottom: 1px solid var(--grey-200);
    }

    .hero-search-btn {
        width: 100%;
        border-radius: var(--radius);
    }

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

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

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

    .hiw-grid-3 {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .hiw-grid-3::before {
        display: none;
    }

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

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

    .trust-grid > *:last-child:nth-child(odd) {
        grid-column: 1 / -1;
        max-width: 50%;
        margin: 0 auto;
    }

    .trust-signals {
        padding: 48px 0;
    }

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

    .trust-signals-number {
        font-size: 2rem;
    }

    .cta-mid-page {
        padding: 48px 0;
    }

    .cta-mid-content h2 {
        font-size: 1.75rem;
    }

    .cta-final-content h2 {
        font-size: 2rem;
    }

    .cta-final-actions {
        flex-direction: column;
        align-items: center;
    }

    .state-cards-row {
        grid-template-columns: repeat(4, 1fr);
    }

    .cta-sell-to-dealer .container,
    .cta-finance .container {
        flex-direction: column;
        text-align: center;
    }

    .section {
        padding: 3rem 0;
    }

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

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

    .section-header {
        flex-direction: column;
    }

    .carousel-track .listing-card {
        flex: 0 0 calc(50% - 10px);
        min-width: 260px;
    }
}

/* ═══════════════════════════════════════════════════════════════
   RESPONSIVE — 600px (category grid mobile)
   ═══════════════════════════════════════════════════════════════ */

@media (max-width: 600px) {
    .category-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
}

/* ═══════════════════════════════════════════════════════════════
   RESPONSIVE — 480px
   ═══════════════════════════════════════════════════════════════ */

@media (max-width: 480px) {
    .hero h1 {
        font-size: 2.25rem;
    }

    .hero-subtitle-secondary {
        font-size: 14px;
        letter-spacing: 2px;
    }

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

    .hero-stat-number {
        font-size: 1.75rem;
    }

    .hero-stat-label {
        font-size: 0.75rem;
    }

    .category-tile {
        height: 130px;
    }

    .card-grid-3,
    .card-grid-4,
    .card-grid-2 {
        grid-template-columns: 1fr;
    }

    .near-you-grid {
        grid-template-columns: 1fr;
    }

    .trust-signals {
        padding: 40px 0;
    }

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

    .trust-signals-number {
        font-size: 1.75rem;
    }

    .trust-signals-label {
        font-size: 12px;
    }

    .trust-signals-item {
        padding: 16px 12px;
    }

    .cta-mid-page {
        padding: 40px 0;
    }

    .cta-mid-content h2 {
        font-size: 1.5rem;
    }

    .cta-mid-content p {
        font-size: 1rem;
    }

    .cta-final {
        padding: 48px 0;
    }

    .cta-final-content h2 {
        font-size: 1.625rem;
    }

    .stats-bar-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 0;
    }

    .stats-bar-item {
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
        padding-bottom: 1rem;
        margin-bottom: 1rem;
    }

    .stats-bar-item:nth-last-child(-n+2) {
        border-bottom: none;
        margin-bottom: 0;
        padding-bottom: 0;
    }

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

    .state-cards-row {
        grid-template-columns: repeat(4, 1fr);
        gap: 8px;
    }

    .newsletter-form {
        flex-direction: column;
    }

    .hero-ctas {
        flex-direction: column;
        align-items: center;
    }

    .ecosystem-grid {
        grid-template-columns: 1fr;
    }

    .dealer-grid {
        grid-template-columns: 1fr;
    }

    .footer-upper,
    .footer-lower {
        grid-template-columns: 1fr;
    }

    .carousel-track .listing-card {
        flex: 0 0 calc(85%);
        min-width: 240px;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .testimonial-card {
        padding: 1.5rem;
    }

    .section-header h2 {
        font-size: 1.625rem;
    }

    .stats-bar-number {
        font-size: 2rem;
    }

}

/* ═══════════════════════════════════════════════════════════════
   MOBILE AUDIT FIX — 375px (iPhone SE)
   ═══════════════════════════════════════════════════════════════ */

@media (max-width: 375px) {
    /* Hero: tighter padding and smaller text */
    .hero {
        min-height: auto;
        padding: 3rem 0 2.5rem;
    }

    .hero h1 {
        font-size: 2rem;
        letter-spacing: -1px;
    }

    .hero-subtitle {
        font-size: 15px;
        margin-bottom: 1.5rem;
    }

    .hero-subtitle-secondary {
        font-size: 12px;
        letter-spacing: 2px;
    }

    /* Hero search: compact */
    .hero-search-fields {
        padding: 6px;
        border-radius: 12px;
    }

    .hero-search-select,
    .hero-search-input {
        padding: 10px 12px;
        font-size: 15px;
    }

    .hero-search-btn {
        padding: 12px;
        font-size: 14px;
    }

    /* Hero stats: compact 2-column */
    .hero-stats {
        gap: 12px;
        justify-content: center;
    }

    .hero-stat-number {
        font-size: 1.5rem;
    }

    .hero-stat-label {
        font-size: 0.7rem;
    }

    /* Category grid: 2 columns, tight */
    .category-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
    }

    .category-tile {
        height: 110px;
    }

    .category-tile-label {
        font-size: 12px;
    }

    /* Card grids: single column */
    .card-grid-2,
    .card-grid-3,
    .card-grid-4 {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    /* Near you grid */
    .near-you-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    /* Section spacing */
    .section {
        padding: 2rem 0;
    }

    .section-header {
        margin-bottom: 1rem;
    }

    .section-header h2 {
        font-size: 1.375rem;
    }

    /* How it works */
    .hiw-grid-3 {
        gap: 1.5rem;
    }

    /* Carousel: full width cards */
    .carousel-track .listing-card {
        flex: 0 0 92%;
        min-width: 220px;
    }

    /* Dealers grid */
    .dealer-grid {
        grid-template-columns: 1fr;
    }

    /* Trust grid */
    .trust-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .trust-grid > *:last-child:nth-child(odd) {
        max-width: 100%;
    }

    /* CTA sections */
    .cta-final-content h2 {
        font-size: 1.5rem;
    }

    .cta-final-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .cta-final-actions .btn {
        width: 100%;
        text-align: center;
    }

    /* State cards: 2 columns */
    .state-cards-row {
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
    }

    /* Stats bar: 2 columns tighter */
    .stats-bar-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
    }

    .stats-bar-number {
        font-size: 1.75rem;
    }

    /* Trust signals */
    .trust-signals-grid {
        grid-template-columns: 1fr 1fr;
        gap: 8px;
    }

    .trust-signals-number {
        font-size: 1.5rem;
    }
}
