@import url('https://fonts.googleapis.com/css2?family=Geist:wght@400;500;600;700&display=swap');

/* Prevent any element from pushing the page wider than the viewport */
html, body { overflow-x: hidden; max-width: 100%; }

/* ─────────────────────────────────────────────
   VARIABLES
   ───────────────────────────────────────────── */
:root {
    --lp-green: #0B3D2E;
    --lp-green-hover: #14532D;
    --lp-blue: #10B981;
    --lp-blue-light: #10B981;
    --lp-accent: #10B981;
    --lp-text: #0F172A;
    --lp-text-muted: #64748B;
    --lp-surface: #FFFFFF;
    --lp-surface-alt: #F8FAFC;
    --lp-border: #E2E8F0;
    --lp-success: #16A34A;
    --lp-warning: #F59E0B;
    --lp-danger: #DC2626;
    --lp-shadow: 0 1px 3px rgba(0, 0, 0, .08);
    --lp-shadow-hover: 0 8px 24px rgba(0, 0, 0, .10);
    --lp-radius-sm: 12px;
    --lp-radius-md: 16px;
    --lp-radius-lg: 24px;
    --lp-font-head: "Geist", "Segoe UI", sans-serif;
    --lp-font-body: "Geist", "Segoe UI", sans-serif;
}

/* ─────────────────────────────────────────────
   BASE
   ───────────────────────────────────────────── */
.lp-home,
.lp-home * {
    box-sizing: border-box;
}

.lp-home {
    display: flex;
    flex-direction: column;
    color: var(--lp-text);
    background: var(--lp-surface-alt);
    font-family: var(--lp-font-body);
    padding: 0;
}

.lp-home .lp-hero-shell {
    order: 1;
}

.lp-home .lp-brand-section,
.lp-home .lp-brand-strip {
    order: 2;
}

.lp-home .lp-category-section {
    order: 3;
}

.lp-home .lp-featured-section {
    order: 4;
}

.lp-home .lp-split-section {
    order: 5;
}

.lp-home a {
    text-decoration: none;
}

.lp-home button,
.lp-home input {
    font: inherit;
}

.lp-lucide {
    width: 24px;
    height: 24px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

/* ─────────────────────────────────────────────
   TYPOGRAPHY UTILITIES
   ───────────────────────────────────────────── */
.lp-home .lp-kicker {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: 1px solid rgba(15, 61, 46, 0.16);
    background: rgba(15, 61, 46, 0.05);
    color: var(--lp-green);
    border-radius: 999px;
    padding: 8px 14px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

/* ─────────────────────────────────────────────
   BUTTONS
   ───────────────────────────────────────────── */
.lp-home .lp-btn-primary,
.lp-home .lp-btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 50px;
    padding: 0 22px;
    border-radius: var(--lp-radius-sm);
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.02em;
    transition: background-color 0.22s ease, border-color 0.22s ease, color 0.22s ease,
                transform 0.22s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.22s ease;
    cursor: pointer;
}

/* Shimmer — Circunomics-style moving highlight */
.lp-home .lp-btn-primary {
    position: relative;
    overflow: hidden;
    background: var(--lp-green);
    color: #fff;
    border: 1px solid var(--lp-green);
    box-shadow: var(--lp-shadow);
}

.lp-home .lp-btn-primary::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 55%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.22), transparent);
    transform: skewX(-20deg);
    transition: left 0.55s ease;
    pointer-events: none;
}

.lp-home .lp-btn-primary:hover {
    background: var(--lp-green-hover);
    border-color: var(--lp-green-hover);
    transform: translateY(-2px);
    box-shadow: var(--lp-shadow-hover);
}

.lp-home .lp-btn-primary:hover::after {
    left: 150%;
}

.lp-home .lp-btn-primary:disabled {
    background: #bfc8c4;
    border-color: #bfc8c4;
    box-shadow: none;
    cursor: not-allowed;
    transform: none;
}

.lp-home .lp-btn-primary:disabled::after {
    display: none;
}

.lp-home .lp-btn-secondary {
    background: transparent;
    color: var(--lp-blue);
    border: 1px solid var(--lp-blue);
}

.lp-home .lp-btn-secondary:hover {
    color: var(--lp-blue-light);
    border-color: var(--lp-blue-light);
    background: rgba(16, 185, 129, 0.08);
    transform: translateY(-1px);
    box-shadow: var(--lp-shadow-hover);
}

/* ─────────────────────────────────────────────
   CHIP
   ───────────────────────────────────────────── */
.lp-home .lp-chip {
    border: 1px solid var(--lp-border);
    background: #fff;
    color: var(--lp-text-muted);
    border-radius: 999px;
    padding: 10px 14px;
    font-size: 13px;
    font-weight: 600;
    transition: border-color 0.18s ease, color 0.18s ease, background-color 0.18s ease;
    cursor: pointer;
}

.lp-home .lp-chip:hover {
    border-color: rgba(15, 61, 46, 0.3);
    color: var(--lp-green);
    background: rgba(15, 61, 46, 0.04);
}

/* ─────────────────────────────────────────────
   PAGE SECTION CONTAINERS
   ───────────────────────────────────────────── */
.lp-home .lp-finder-section,
.lp-home .lp-brand-section,
.lp-home .lp-category-section,
.lp-home .lp-featured-section,
.lp-home .lp-insight-section {
    max-width: 1240px;
    margin: 56px auto 0;
    padding: 0 24px;
}

.lp-home .lp-trust-strip {
    display: none;
}

/* ─────────────────────────────────────────────
   HERO — PHOTO BACKGROUND SEARCH LANDING
   ───────────────────────────────────────────── */
.lp-home .lp-hero-shell {
    position: relative;
    isolation: isolate;
    background: var(--lp-green);
    overflow: visible;
    min-height: 760px;
    padding: 0;
    margin-top: -68px; /* pull hero behind the absolute nav */
}

.lp-home .lp-hero-bg,
.lp-home .lp-hero-bg img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.lp-home .lp-hero-bg img {
    object-fit: cover;
}

.lp-home .lp-hero-shell::before,
.lp-home .lp-hero-shell::after {
    content: '';
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.lp-home .lp-hero-shell::after {
    z-index: 1;
    background:
        radial-gradient(120% 80% at 15% 20%, rgba(16, 185, 129, 0.28), transparent 55%),
        radial-gradient(120% 90% at 90% 80%, rgba(4, 120, 87, 0.34), transparent 55%);
}

.lp-home .lp-hero-shell::before {
    z-index: 1;
    background:
        linear-gradient(180deg, rgba(8, 46, 34, 0.78) 0%, rgba(8, 46, 34, 0.42) 30%, rgba(7, 40, 57, 0.58) 70%, rgba(8, 46, 34, 0.92) 100%);
}

.lp-home .lp-hero-panel {
    position: relative;
    z-index: 20;
    max-width: 1320px;
    margin: 0 auto;
    padding: 132px 48px 56px; /* 68px nav + 64px original breathing room */
}

.lp-home .lp-hero-copy {
    max-width: 1000px;
}

.lp-home .lp-section-heading h2,
.lp-home .lp-insight-main h2,
.lp-home .lp-cta-panel h2 {
    margin: 0;
    font-family: var(--lp-font-head);
    font-weight: 700;
    line-height: 0.95;
    letter-spacing: 0;
}

.lp-home .lp-hero-copy h1 {
    display: flex;
    flex-direction: column;
    max-width: 1000px;
    margin: 0;
    color: #fff;
    font-family: var(--lp-font-head);
    font-size: 84px;
    font-weight: 700;
    line-height: 0.98;
    letter-spacing: -0.035em;
    text-shadow: 0 2px 24px rgba(0, 0, 0, 0.18);
    animation: heroFadeUp 0.65s cubic-bezier(0.16, 1, 0.3, 1) 0.06s both;
}

.lp-home .lp-hero-title-accent {
    width: max-content;
    max-width: 100%;
    background: linear-gradient(135deg, #10B981, #34D399);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.lp-home .lp-hero-intro {
    max-width: 620px;
    margin: 22px 0 0;
    color: rgba(233, 242, 238, 0.92);
    font-size: 19px;
    line-height: 1.55;
}

.lp-home .lp-audience-row {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-top: 26px;
    color: rgba(223, 245, 236, 0.85);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.lp-home .lp-audience-switch {
    display: inline-flex;
    padding: 3px;
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.14);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
}

.lp-home .lp-audience-switch button {
    border: 0;
    border-radius: 999px;
    background: transparent;
    color: #fff;
    padding: 9px 18px;
    font-size: 12px;
    font-weight: 700;
    cursor: pointer;
}

.lp-home .lp-audience-switch button.is-active {
    background: #fff;
    color: var(--lp-green);
}

/* ─────────────────────────────────────────────
   STATS STRIP (inside hero)
   ───────────────────────────────────────────── */
.lp-home .lp-stats-strip {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0;
    max-width: 1000px;
    margin-top: 34px;
    animation: heroFadeUp 0.65s cubic-bezier(0.16, 1, 0.3, 1) 0.1s both;
}

.lp-home .lp-stat-item {
    display: flex;
    flex-direction: column;
    gap: 5px;
    padding: 0 24px;
    border-left: 1px solid rgba(255, 255, 255, 0.18);
}

.lp-home .lp-stat-item:first-child {
    padding-left: 0;
    border-left: 0;
}

.lp-home .lp-stat-num {
    font-family: var(--lp-font-head);
    font-size: 30px;
    font-weight: 700;
    color: #fff;
    line-height: 1;
    letter-spacing: 0;
}

.lp-home .lp-stat-label {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.48);
}

/* ─────────────────────────────────────────────
   HERO FINDER CARD
   ───────────────────────────────────────────── */
.lp-home .lp-hero-finder-card {
    position: relative;
    z-index: 30;
    max-width: 1060px;
    margin-top: 30px;
    overflow: visible;
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: var(--lp-radius-md);
    background: rgba(255, 255, 255, 0.97);
    box-shadow: 0 30px 70px -30px rgba(8, 46, 34, 0.7);
    animation: heroFadeUp 0.65s cubic-bezier(0.16, 1, 0.3, 1) 0.16s both;
}

.lp-home .lp-finder-mode-panel[hidden] {
    display: none !important;
}

.lp-home .lp-finder-mode-panel {
    position: relative;
    z-index: 40;
    margin: 0;
    padding: 22px;
}

.lp-home .lp-hero-search-mode {
    display: flex;
    align-items: center;
    border-bottom: 1px solid var(--lp-border);
    background: var(--lp-surface-alt);
    border-radius: var(--lp-radius-md) var(--lp-radius-md) 0 0;
    overflow: hidden;
}

.lp-home .lp-mode-switch {
    display: flex;
    align-items: stretch;
    width: 100%;
}

.lp-home .lp-mode-pill {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 3px;
    min-width: 168px;
    margin-bottom: -1px;
    padding: 15px 22px;
    border: 0;
    border-right: 1px solid var(--lp-border);
    border-bottom: 2px solid transparent;
    border-radius: 0;
    background: transparent;
    color: var(--lp-text-muted);
    font-size: 13.5px;
    font-weight: 700;
    cursor: pointer;
    transition: background-color 0.18s ease, color 0.18s ease, border-color 0.18s ease;
}

.lp-home .lp-mode-pill.is-active {
    border-bottom-color: #10B981;
    background: #fff;
    color: var(--lp-green);
}

.lp-home .lp-mode-pill small {
    color: inherit;
    font-size: 9.5px;
    font-weight: 500;
    letter-spacing: 0.06em;
    opacity: 0.6;
}

/* ─────────────────────────────────────────────
   SELECTS & DROPDOWNS
   ───────────────────────────────────────────── */
.lp-home .lp-vehicle-selects {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr)) auto;
    gap: 12px;
    align-items: end;
}

.lp-home .lp-brand-finder,
.lp-home .lp-reference-finder {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 12px;
    align-items: end;
}

.lp-home .lp-select-wrap {
    display: grid;
    gap: 8px;
}

.lp-home .lp-select-wrap label {
    color: var(--lp-text-muted);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    opacity: 0.72;
}

.lp-home .lp-custom-select {
    position: relative;
    z-index: 1;
}

.lp-home .lp-custom-select.open {
    z-index: 1000;
}

.lp-home .lp-select-input {
    width: 100%;
    min-height: 56px;
    padding: 0 42px 0 16px;
    border: 1px solid var(--lp-border);
    border-radius: var(--lp-radius-sm);
    background: #fff;
    color: var(--lp-text);
    outline: 0;
    cursor: pointer;
    transition: border-color 0.18s ease, background-color 0.18s ease;
}

.lp-home .lp-select-input:disabled {
    background: #f8fafc;
    color: rgba(18, 18, 18, 0.34);
    cursor: not-allowed;
}

.lp-home .lp-select-input::placeholder {
    color: rgba(18, 18, 18, 0.42);
}

.lp-home .lp-reference-input {
    padding-right: 16px;
    cursor: text;
}

.lp-home .lp-custom-select.open .lp-select-input {
    border-color: rgba(16, 185, 129, 0.42);
    background: #fff;
}

.lp-home .lp-chevron {
    position: absolute;
    right: 14px;
    top: 50%;
    width: 12px;
    height: 12px;
    color: rgba(18, 18, 18, 0.45);
    transform: translateY(-50%);
    pointer-events: none;
    transition: transform 0.18s ease;
}

.lp-home .lp-custom-select.open .lp-chevron {
    transform: translateY(-50%) rotate(180deg);
}

/* Dropdown remains white — legibility */
.lp-home .lp-dropdown {
    display: none;
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    right: 0;
    max-height: 240px;
    overflow-y: auto;
    border: 1px solid var(--lp-border);
    border-radius: 14px;
    background: #fff;
    box-shadow: 0 18px 32px rgba(0, 0, 0, 0.18);
    z-index: 1001;
}

.lp-home .lp-custom-select.open .lp-dropdown {
    display: block;
}

.lp-home .lp-dropdown-item {
    padding: 12px 14px;
    cursor: pointer;
    color: var(--lp-text);
}

.lp-home .lp-dropdown-item:hover {
    background: rgba(15, 61, 46, 0.05);
    color: var(--lp-green);
}

.lp-home .lp-fitment-button {
    min-width: 220px;
    min-height: 56px;
}

.lp-home .lp-vehicle-selects-hero {
    grid-template-columns: 1fr 1fr 1fr 150px auto;
}

.lp-home .lp-brand-finder .lp-fitment-button,
.lp-home .lp-reference-finder .lp-fitment-button {
    min-width: 0;
}

.lp-home .lp-vehicle-selects-hero .lp-fitment-button {
    min-width: 0;
}

/* ─────────────────────────────────────────────
   SHARED CONTENT UTILITIES
   ───────────────────────────────────────────── */
.lp-home .lp-badge-row,
.lp-home .lp-cta-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.lp-home .lp-aside-label,
.lp-home .lp-mini-label,
.lp-home .lp-category-count {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.lp-home .lp-aside-card strong,
.lp-home .lp-process-card strong,
.lp-home .lp-feature-card strong,
.lp-home .lp-category-card strong,
.lp-home .lp-insight-card strong {
    display: block;
    font-size: 22px;
    line-height: 1.2;
}

.lp-home .lp-aside-card p,
.lp-home .lp-process-card p,
.lp-home .lp-feature-card p,
.lp-home .lp-category-card p,
.lp-home .lp-insight-card p {
    margin: 10px 0 0;
    color: rgba(18, 18, 18, 0.7);
    line-height: 1.65;
}

/* ─────────────────────────────────────────────
   TRUST STRIP
   ───────────────────────────────────────────── */
.lp-home .lp-trust-item,
.lp-home .lp-finder-panel,
.lp-home .lp-process-card,
.lp-home .lp-feature-card,
.lp-home .lp-category-card,
.lp-home .lp-insight-card,
.lp-home .lp-cta-panel {
    border: 1px solid var(--lp-border);
    background: rgba(255, 255, 255, 0.1);
    box-shadow: 0 10px 24px rgba(18, 18, 18, 0.04);
}

.lp-home .lp-trust-strip {
    display: none;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px;
}

.lp-home .lp-trust-item {
    border-radius: 20px;
    padding: 20px 22px;
    display: flex;
    align-items: flex-start;
    gap: 14px;
    transition: transform 0.22s cubic-bezier(0.16, 1, 0.3, 1),
                box-shadow 0.22s ease,
                border-color 0.22s ease;
}

.lp-home .lp-trust-item:hover {
    transform: translateY(-3px);
    border-color: rgba(15, 61, 46, 0.2);
    box-shadow: 0 18px 36px rgba(18, 18, 18, 0.08);
}

.lp-home .lp-trust-icon {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    border-radius: 12px;
    background: rgba(15, 61, 46, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--lp-green);
}

.lp-home .lp-trust-icon svg {
    width: 20px;
    height: 20px;
}

.lp-home .lp-trust-body {
    display: flex;
    flex-direction: column;
    gap: 4px;
    min-width: 0;
}

.lp-home .lp-trust-value {
    display: block;
    color: var(--lp-text);
    font-size: 14px;
    font-weight: 700;
    line-height: 1.2;
}

.lp-home .lp-trust-copy {
    display: block;
    color: rgba(18, 18, 18, 0.58);
    font-size: 13px;
    line-height: 1.5;
}

/* ─────────────────────────────────────────────
   SECTION HEADINGS
   ───────────────────────────────────────────── */
.lp-home .lp-section-heading {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 18px;
    margin-bottom: 20px;
}

.lp-home .lp-section-heading h2,
.lp-home .lp-insight-main h2,
.lp-home .lp-cta-panel h2 {
    font-size: clamp(2.2rem, 4.5vw, 3.4rem);
    margin-top: 10px;
}

.lp-home .lp-text-link {
    color: var(--lp-blue);
    font-weight: 700;
    white-space: nowrap;
    transition: color 0.18s ease;
}

.lp-home .lp-text-link:hover {
    color: var(--lp-blue-light);
}

/* ─────────────────────────────────────────────
   FINDER PANEL
   ───────────────────────────────────────────── */
.lp-home .lp-finder-panel {
    border-radius: 28px;
    padding: 26px;
}

.lp-home .lp-finder-intro {
    display: flex;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 18px;
}

.lp-home .lp-finder-intro strong {
    max-width: 440px;
    font-size: 24px;
    line-height: 1.25;
}

.lp-home .lp-finder-intro p {
    max-width: 500px;
    margin: 0;
    color: rgba(18, 18, 18, 0.72);
    line-height: 1.7;
}

/* ─────────────────────────────────────────────
   GRIDS
   ───────────────────────────────────────────── */
.lp-home .lp-category-grid,
.lp-home .lp-make-grid,
.lp-home .lp-brand-grid,
.lp-home .lp-process-grid,
.lp-home .lp-featured-grid,
.lp-home .lp-insight-section {
    display: grid;
    gap: 16px;
}

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

/* ─────────────────────────────────────────────
   CARDS — shared hover depth (Circunomics)
   ───────────────────────────────────────────── */
.lp-home .lp-category-card,
.lp-home .lp-process-card,
.lp-home .lp-feature-card {
    border-radius: 24px;
    padding: 22px;
    text-align: left;
    cursor: pointer;
    transition: transform 0.22s cubic-bezier(0.16, 1, 0.3, 1),
                box-shadow 0.22s cubic-bezier(0.16, 1, 0.3, 1),
                border-color 0.22s ease;
}

.lp-home .lp-process-card {
    cursor: default;
}

.lp-home .lp-category-card:hover,
.lp-home .lp-feature-card:hover {
    transform: translateY(-4px);
    border-color: rgba(15, 61, 46, 0.2);
    box-shadow: 0 22px 44px rgba(18, 18, 18, 0.1);
}

/* ─────────────────────────────────────────────
   CATEGORY CARDS
   ───────────────────────────────────────────── */
.lp-home .lp-category-topline,
.lp-home .lp-feature-top,
.lp-home .lp-feature-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.lp-home .lp-category-code {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 12px;
    background: rgba(15, 61, 46, 0.08);
    color: var(--lp-green);
    font-weight: 700;
}

.lp-home .lp-category-count {
    color: var(--lp-blue);
}

.lp-home .lp-category-card strong,
.lp-home .lp-feature-card strong {
    margin-top: 22px;
}

.lp-home .lp-category-card {
    display: flex;
    flex-direction: column;
    gap: 14px;
    min-height: 236px;
}

.lp-home .lp-category-card[hidden] {
    display: none;
}

.lp-home .lp-category-card-hidden {
    display: none;
}

.lp-home .lp-category-image-wrap {
    width: 100%;
    height: 116px;
    border-radius: 18px;
    overflow: hidden;
    background: transparent;
}

.lp-home .lp-category-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    display: block;
}

.lp-home .lp-category-meta {
    display: grid;
    gap: 8px;
}

.lp-home .lp-category-primary-link {
    display: grid;
    gap: 14px;
    color: inherit;
}

.lp-home .lp-category-meta strong {
    margin-top: 0;
}

.lp-home .lp-category-title-link {
    color: inherit;
    transition: color 0.18s ease;
}

.lp-home .lp-category-title-link:hover {
    color: var(--lp-green);
}

.lp-home .lp-category-children {
    display: grid;
    gap: 8px;
    max-height: 122px;
    padding-right: 6px;
    overflow-y: auto;
}

.lp-home .lp-category-child-link {
    display: block;
    padding: 8px 12px;
    border-radius: 12px;
    background: rgba(15, 61, 46, 0.05);
    color: var(--lp-green);
    font-size: 13px;
    font-weight: 700;
    transition: background-color 0.18s ease, color 0.18s ease;
}

.lp-home .lp-category-child-link:hover {
    background: rgba(15, 61, 46, 0.1);
    color: var(--lp-green-hover);
}

.lp-home .lp-category-load-all {
    position: relative;
    overflow: hidden;
    min-height: 0;
    padding: 10px 20px;
    border: 0;
    border-radius: 999px;
    background: var(--lp-green);
    color: #fff;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.02em;
    cursor: pointer;
    box-shadow: 0 10px 24px rgba(15, 61, 46, 0.18);
    transition: background-color 0.18s ease, transform 0.22s cubic-bezier(0.16,1,0.3,1),
                box-shadow 0.18s ease;
}

.lp-home .lp-category-load-all::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 55%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transform: skewX(-20deg);
    transition: left 0.5s ease;
    pointer-events: none;
}

.lp-home .lp-category-load-all:hover {
    background: var(--lp-green-hover);
    transform: translateY(-1px);
    box-shadow: 0 14px 28px rgba(15, 61, 46, 0.22);
}

.lp-home .lp-category-load-all:hover::after {
    left: 150%;
}

.lp-home .lp-category-actions {
    display: flex;
    justify-content: flex-end;
    margin-top: 14px;
}

/* ─────────────────────────────────────────────
   PROCESS / HOW IT WORKS
   ───────────────────────────────────────────── */
.lp-home .lp-process-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.lp-home .lp-process-step {
    display: inline-flex;
    margin-bottom: 18px;
    color: var(--lp-blue);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

/* ─────────────────────────────────────────────
   FEATURED PARTS
   ───────────────────────────────────────────── */
.lp-home .lp-featured-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.lp-home .lp-feature-brand {
    color: var(--lp-blue);
    font-size: 13px;
    font-weight: 700;
}

/* Badges */
.lp-home .lp-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 28px;
    padding: 0 10px;
    border-radius: 999px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.07em;
    text-transform: uppercase;
}

.lp-home .lp-badge.new {
    background: rgba(31, 111, 90, 0.12);
    color: #1F6F5A;
}

.lp-home .lp-badge.used {
    background: rgba(107, 114, 128, 0.14);
    color: #6B7280;
}

.lp-home .lp-badge.warning {
    background: rgba(245, 158, 11, 0.14);
    color: #D97706;
}

.lp-home .lp-badge.in-stock {
    background: rgba(16, 185, 129, 0.12);
    color: #059669;
}

.lp-home .lp-badge.low-stock {
    background: rgba(245, 158, 11, 0.12);
    color: #D97706;
    animation: lowStockPulse 1.8s ease-in-out infinite;
}

.lp-home .lp-badge.out-of-stock {
    background: rgba(107, 114, 128, 0.1);
    color: #9CA3AF;
}

.lp-home .lp-feature-badge-row {
    display: flex;
    gap: 5px;
    flex-wrap: wrap;
}

/* Price — now the hero of the card */
.lp-home .lp-feature-footer {
    margin-top: 20px;
    align-items: baseline;
}

.lp-home .lp-feature-price {
    font-family: var(--lp-font-head);
    font-size: 24px;
    font-weight: 700;
    color: var(--lp-text);
    line-height: 1;
    letter-spacing: 0.01em;
}

.lp-home .lp-feature-link {
    color: var(--lp-green);
    font-size: 13px;
    font-weight: 700;
    white-space: nowrap;
    transition: color 0.18s ease;
}

.lp-home .lp-feature-card:hover .lp-feature-link {
    color: var(--lp-green-hover);
}

.lp-home .lp-feature-image-wrap {
    width: 100%;
    height: 168px;
    margin-bottom: 18px;
    border-radius: 18px;
    overflow: hidden;
    background: #f5f7f9;
}

.lp-home .lp-feature-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    transition: transform 0.45s cubic-bezier(0.16, 1, 0.3, 1);
}

.lp-home .lp-feature-card:hover .lp-feature-image {
    transform: scale(1.04);
}

/* ─────────────────────────────────────────────
   MAKE GRID
   ───────────────────────────────────────────── */
.lp-home .lp-make-grid {
    grid-template-columns: repeat(6, minmax(0, 1fr));
}

.lp-home .lp-make-card,
.lp-home .lp-brand-card {
    border: 1px solid var(--lp-border);
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.94);
    box-shadow: 0 10px 24px rgba(18, 18, 18, 0.04);
    text-align: left;
    transition: transform 0.22s cubic-bezier(0.16, 1, 0.3, 1),
                box-shadow 0.22s cubic-bezier(0.16, 1, 0.3, 1),
                border-color 0.22s ease;
}

.lp-home .lp-make-card:hover,
.lp-home .lp-brand-card:hover {
    transform: translateY(-4px);
    border-color: rgba(15, 61, 46, 0.2);
    box-shadow: 0 22px 44px rgba(18, 18, 18, 0.1);
}

.lp-home .lp-make-card {
    padding: 16px 14px;
    display: grid;
    gap: 10px;
    justify-items: center;
    min-height: 118px;
}

.lp-home .lp-make-card strong,
.lp-home .lp-brand-meta strong {
    display: block;
    margin: 0;
    font-size: 24px;
    line-height: 1.05;
}

.lp-home .lp-make-card span,
.lp-home .lp-brand-meta span {
    color: var(--lp-blue);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.lp-home .lp-make-card small {
    color: rgba(18, 18, 18, 0.62);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.lp-home .lp-make-card[hidden] {
    display: none;
}

.lp-home .lp-make-card-hidden {
    display: none;
}

.lp-home .lp-make-logo-shell {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: 52px;
}

.lp-home .lp-make-logo {
    width: 100%;
    max-width: 92px;
    height: 28px;
    object-fit: contain;
    object-position: center;
    display: block;
    opacity: 0.6;
    transition: opacity 0.22s ease, transform 0.22s cubic-bezier(0.16, 1, 0.3, 1);
}

.lp-home .lp-make-card:hover .lp-make-logo {
    opacity: 1;
    transform: translateY(-2px);
}

.lp-home .lp-make-fallback {
    font-size: 16px !important;
    text-align: center;
}

/* ─────────────────────────────────────────────
   BRAND GRID
   ───────────────────────────────────────────── */
.lp-home .lp-brand-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.lp-home .lp-brand-card {
    padding: 18px;
    display: grid;
    gap: 14px;
    min-height: 188px;
}

.lp-home .lp-brand-image-wrap {
    width: 100%;
    height: 90px;
    border-radius: 18px;
    overflow: hidden;
    background: transparent;
}

.lp-home .lp-brand-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    display: block;
}

.lp-home .lp-brand-meta {
    display: grid;
    gap: 8px;
}

/* ─────────────────────────────────────────────
   DESIGN PASS — BRAND STRIP / BENTO / STOCK GRID
   ───────────────────────────────────────────── */
.lp-home .lp-brand-section {
    max-width: none;
    margin: 0;
    padding: 26px 48px;
    overflow: hidden;
    border-bottom: 1px solid var(--lp-border);
    background: #fff;
}

.lp-home .lp-brand-section .lp-section-heading,
.lp-home .lp-brand-section .lp-brand-grid {
    max-width: 1320px;
    margin-left: auto;
    margin-right: auto;
}

.lp-home .lp-brand-section .lp-section-heading {
    align-items: center;
    margin-bottom: 20px;
}

.lp-home .lp-brand-section .lp-section-heading::after {
    content: '';
    flex: 1;
    height: 1px;
    background: var(--lp-border);
}

.lp-home .lp-brand-section .lp-kicker {
    border: 0;
    background: transparent;
    padding: 0;
}

.lp-home .lp-brand-section .lp-section-heading h2 {
    margin: 0;
    color: var(--lp-green);
    font-size: 10.5px;
    font-weight: 700;
    letter-spacing: 0.14em;
    line-height: 1;
    text-transform: uppercase;
}

.lp-home .lp-brand-section .lp-kicker {
    display: none;
}

.lp-home .lp-brand-grid {
    display: flex;
    grid-template-columns: none;
    gap: 72px;
    overflow-x: auto;
    padding: 2px 0 8px;
    -webkit-mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent);
    mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent);
    scrollbar-width: none;
}

.lp-home .lp-brand-grid::-webkit-scrollbar {
    display: none;
}

.lp-home .lp-brand-card {
    display: inline-flex;
    flex: 0 0 auto;
    align-items: center;
    gap: 12px;
    min-height: 0;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    opacity: 0.66;
}

.lp-home .lp-brand-card:hover {
    transform: none;
    box-shadow: none;
    opacity: 1;
}

.lp-home .lp-brand-image-wrap {
    width: 116px;
    height: 34px;
    border-radius: 0;
}

.lp-home .lp-brand-image {
    filter: grayscale(1);
}

.lp-home .lp-brand-wordmark {
    color: var(--lp-text-muted);
    font-size: 22px;
    font-weight: 700;
    letter-spacing: 0.08em;
    white-space: nowrap;
}

.lp-home .lp-brand-meta {
    min-width: max-content;
}

.lp-home .lp-brand-meta span {
    color: var(--lp-text-muted);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.08em;
    opacity: 0.68;
}

.lp-home .lp-category-section {
    max-width: none;
    margin: 0;
    padding: 88px 48px;
    background: var(--lp-surface-alt);
}

.lp-home .lp-category-section > .lp-section-heading,
.lp-home .lp-category-section > .lp-category-grid,
.lp-home .lp-category-section > .lp-category-actions {
    max-width: 1320px;
    margin-left: auto;
    margin-right: auto;
}

.lp-home .lp-category-section .lp-section-heading {
    margin-bottom: 30px;
}

.lp-home .lp-category-section .lp-section-heading h2 {
    max-width: 680px;
    color: var(--lp-text);
    font-size: 52px;
    line-height: 1;
}

.lp-home .lp-category-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    grid-auto-rows: 176px;
    gap: 10px;
}

.lp-home .lp-category-card {
    position: relative;
    min-height: 0;
    padding: 22px;
    overflow: hidden;
    border-radius: var(--lp-radius-md);
}

.lp-home .lp-category-card:nth-child(1) {
    grid-column: span 2;
    grid-row: span 2;
    border-color: transparent;
    background: var(--lp-green);
    color: #fff;
}

.lp-home .lp-category-card:nth-child(6) {
    grid-column: span 2;
    border-color: transparent;
    background: var(--lp-green-hover);
    color: #fff;
}

.lp-home .lp-category-primary-link {
    display: flex;
    position: relative;
    z-index: 2;
    height: 100%;
    flex-direction: column;
    justify-content: space-between;
}

.lp-home .lp-category-primary-link::after {
    content: '->';
    position: absolute;
    right: 0;
    bottom: 0;
    color: currentColor;
    font-size: 20px;
    font-weight: 700;
}

.lp-home .lp-category-image-wrap {
    position: absolute;
    right: -28px;
    bottom: -28px;
    width: 140px;
    height: 140px;
    opacity: 1;
    border-radius: 0;
}

.lp-home .lp-category-card:nth-child(1) .lp-category-image-wrap {
    width: 260px;
    height: 260px;
    opacity: 1;
}

.lp-home .lp-category-card:nth-child(6) .lp-category-image-wrap {
    opacity: 1;
}

.lp-home .lp-category-meta {
    display: flex;
    flex-direction: column-reverse;
    gap: 14px;
}

.lp-home .lp-category-meta strong {
    max-width: 85%;
    color: inherit;
    font-size: 26px;
    line-height: 1;
}

.lp-home .lp-category-card:nth-child(1) .lp-category-meta strong {
    font-size: 52px;
}

.lp-home .lp-category-count {
    color: inherit;
    font-size: 11px;
    opacity: 0.72;
}

.lp-home .lp-category-title-link:hover {
    color: inherit;
}

.lp-home .lp-category-children {
    display: none;
}

.lp-home .lp-featured-section {
    max-width: none;
    margin: 0;
    padding: 88px 48px;
    background: #fff;
}

.lp-home .lp-featured-section > .lp-section-heading,
.lp-home .lp-featured-section > .lp-featured-grid {
    max-width: 1320px;
    margin-left: auto;
    margin-right: auto;
}

.lp-home .lp-featured-section .lp-section-heading {
    margin-bottom: 30px;
}

.lp-home .lp-featured-section .lp-section-heading h2 {
    color: var(--lp-text);
    font-size: 48px;
    line-height: 1;
}

.lp-home .lp-featured-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
}

.lp-home .lp-feature-card {
    display: flex;
    flex-direction: column;
    overflow: hidden;
    padding: 0;
    background: var(--lp-surface);
    border: 1px solid var(--lp-border);
    border-radius: var(--lp-radius-md);
    box-shadow: var(--lp-shadow);
}

.lp-home .lp-feature-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--lp-shadow-hover);
}

.lp-home .lp-feature-image-wrap {
    width: 100%;
    height: auto;
    aspect-ratio: 4 / 3;
    margin: 0;
    border-radius: 0;
    border-bottom: 1px solid var(--lp-border);
    background: repeating-linear-gradient(45deg, rgba(16, 185, 129, 0.06) 0 8px, rgba(16, 185, 129, 0.12) 8px 16px);
}

.lp-home .lp-feature-top,
.lp-home .lp-feature-card > strong,
.lp-home .lp-feature-card > p,
.lp-home .lp-feature-footer {
    margin-left: 15px;
    margin-right: 15px;
}

.lp-home .lp-feature-top {
    margin-top: 15px;
}

.lp-home .lp-feature-card > strong {
    margin-top: 8px;
    color: var(--lp-text);
    font-size: 14.5px;
    font-weight: 700;
    line-height: 1.35;
}

.lp-home .lp-feature-card > p {
    margin-top: 6px;
    color: var(--lp-text-muted);
    font-size: 12px;
    line-height: 1.45;
}

.lp-home .lp-feature-footer {
    margin-top: auto;
    padding: 12px 0 15px;
    align-items: flex-end;
}

.lp-home .lp-feature-price {
    color: var(--lp-green);
    font-size: 21px;
}

.lp-home .lp-feature-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    overflow: hidden;
    border-radius: var(--lp-radius-sm);
    background: linear-gradient(135deg, var(--lp-green), var(--lp-green-hover));
    color: transparent;
}

.lp-home .lp-feature-link::before {
    content: '';
    display: block;
    width: 20px;
    height: 20px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 20 20' fill='none'%3E%3Cpath d='M2 3h2l1.5 9h9L16 6H5' stroke='%23fff' stroke-width='1.6' stroke-linecap='round' stroke-linejoin='round'/%3E%3Ccircle cx='7.5' cy='15.5' r='1.2' fill='%23fff'/%3E%3Ccircle cx='13.5' cy='15.5' r='1.2' fill='%23fff'/%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

/* ─────────────────────────────────────────────
   SPLIT AUDIENCE SECTION
   ───────────────────────────────────────────── */
.lp-home .lp-split-section {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
    width: 100%;
    margin: 0;
    padding: 0 48px 96px;
    background: var(--lp-surface);
}

.lp-home .lp-split-card {
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    min-height: 390px;
    padding: 32px;
    border: 1px solid var(--lp-border);
    border-radius: var(--lp-radius-md);
    background: var(--lp-surface);
    color: var(--lp-text);
    box-shadow: var(--lp-shadow);
}

.lp-home .lp-split-card.is-dark {
    border-color: rgba(255, 255, 255, 0.12);
    background:
        radial-gradient(circle at 86% 12%, rgba(16, 185, 129, 0.28), transparent 34%),
        linear-gradient(135deg, var(--lp-green), var(--lp-green-hover));
    color: #fff;
}

.lp-home .lp-split-card:hover {
    box-shadow: var(--lp-shadow-hover);
}

.lp-home .lp-split-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    margin-bottom: 24px;
    border-radius: 14px;
    background: rgba(16, 185, 129, 0.1);
    color: var(--lp-green);
}

.lp-home .lp-split-card.is-dark .lp-split-icon {
    background: rgba(255, 255, 255, 0.12);
    color: #fff;
}

.lp-home .lp-split-tag {
    color: var(--lp-accent);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.lp-home .lp-split-card.is-dark .lp-split-tag {
    color: rgba(255, 255, 255, 0.74);
}

.lp-home .lp-split-card h2 {
    max-width: 560px;
    margin: 12px 0 14px;
    font-family: var(--lp-font-head);
    font-size: clamp(2rem, 4vw, 4rem);
    font-weight: 700;
    line-height: 0.95;
    letter-spacing: -0.06em;
}

.lp-home .lp-split-card p {
    max-width: 560px;
    margin: 0;
    color: var(--lp-text-muted);
    font-size: 16px;
    line-height: 1.6;
}

.lp-home .lp-split-card.is-dark p {
    color: rgba(255, 255, 255, 0.76);
}

.lp-home .lp-split-card ul {
    display: grid;
    gap: 12px;
    margin: 24px 0 32px;
    padding: 0;
    list-style: none;
}

.lp-home .lp-split-card li {
    position: relative;
    padding-left: 24px;
    color: var(--lp-text);
    font-size: 14px;
    font-weight: 500;
}

.lp-home .lp-split-card li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.55em;
    width: 8px;
    height: 8px;
    border-radius: 2px;
    background: var(--lp-accent);
    transform: rotate(45deg);
}

.lp-home .lp-split-card.is-dark li {
    color: rgba(255, 255, 255, 0.9);
}

.lp-home .lp-split-card .lp-btn-primary,
.lp-home .lp-split-card .lp-btn-secondary {
    margin-top: 20px !important;
    margin:auto;
}

.lp-home .lp-split-card.is-dark .lp-btn-secondary {
    border-color: rgba(255, 255, 255, 0.34);
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
}

.lp-home .lp-split-card.is-dark .lp-btn-secondary:hover {
    border-color: #fff;
    background: #fff;
    color: var(--lp-green);
}

/* ─────────────────────────────────────────────
   DESIGN FOOTER
   ───────────────────────────────────────────── */
.lp-design-footer {
    position: relative;
    overflow: hidden;
    width: 100%;
    background: var(--lp-green);
    color: #fff;
    font-family: 'Geist', 'Inter', system-ui, sans-serif;
}

/* Footer sky: default top is white (home, landing pages) */
.lp-footer-sky {
    position: relative;
    z-index: 0;
    height: 260px;
    background: linear-gradient(
        180deg,
        #ffffff  0%,
        #d4e8dc  38%,
        #6aaf85  68%,
        #0B3D2E  100%
    );
    overflow: hidden;
}

/* Pages with #F8FAFC background: match the sky top colour */
body:has(.pl-page) .lp-footer-sky,
body:has(.pd-page) .lp-footer-sky,
body:has(.ca-page) .lp-footer-sky,
body:has(.fv-page) .lp-footer-sky,
body:has(.ac-page) .lp-footer-sky {
    background: linear-gradient(
        180deg,
        #F8FAFC  0%,
        #d4e8dc  38%,
        #6aaf85  68%,
        #0B3D2E  100%
    );
}

.lp-footer-pines {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    display: block;
}

.lp-home .lp-split-card.is-dark h2 {
    color: #fff;
}

.lp-design-footer-inner {
    display: grid;
    grid-template-columns: minmax(280px, 1.5fr) repeat(3, minmax(150px, 1fr));
    gap: 48px;
    max-width: 1320px;
    margin: 0 auto;
    padding: 64px 48px 40px;
}

.lp-design-footer-logo {
    display: flex;
    align-items: center;
}

.lp-footer-logo-img {
    height: 28px;
    width: auto;
    display: block;
    filter: brightness(0) invert(1);
}

.lp-design-footer-brand p {
    max-width: 330px;
    margin: 18px 0 0;
    color: rgba(255, 255, 255, 0.72);
    font-size: 14px;
    line-height: 1.7;
}

.lp-design-footer-column {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.lp-design-footer-column strong {
    margin-bottom: 8px;
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    font-family: 'Geist', 'Inter', system-ui, sans-serif;
}

.lp-design-footer-column a,
.lp-design-footer-column span {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    line-height: 1.5;
}

.lp-design-footer-column a {
    transition: color 0.18s ease, transform 0.18s ease;
}

.lp-design-footer-column a:hover {
    color: #fff;
    transform: translateX(2px);
}

.lp-design-footer-bottom {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    max-width: 1320px;
    margin: 0 auto;
    padding: 24px 48px 32px;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    color: rgba(255, 255, 255, 0.62);
    font-size: 12px;
}

/* ─────────────────────────────────────────────
   INSIGHT SECTION
   ───────────────────────────────────────────── */
.lp-home .lp-insight-section {
    grid-template-columns: 1.35fr 1fr 1fr;
}

.lp-home .lp-insight-card,
.lp-home .lp-cta-panel {
    border-radius: 28px;
    padding: 28px;
}

.lp-home .lp-insight-main {
    background: linear-gradient(140deg, rgba(15, 61, 46, 0.98), rgba(47, 93, 140, 0.92));
    color: #fff;
    border-color: rgba(255, 255, 255, 0.08);
}

.lp-home .lp-insight-main p {
    color: rgba(255, 255, 255, 0.84);
}

.lp-home .lp-mini-label {
    display: block;
    color: var(--lp-blue);
    margin-bottom: 14px;
}

/* ─────────────────────────────────────────────
   CTA PANEL
   ───────────────────────────────────────────── */
.lp-home .lp-cta-panel {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.lp-home .lp-cta-panel h2 {
    max-width: 680px;
}

/* WhatsApp button */
.lp-home .lp-btn-whatsapp {
    position: relative;
    overflow: hidden;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    min-height: 50px;
    padding: 0 22px;
    border-radius: 14px;
    background: #25D366;
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.02em;
    border: 1px solid #25D366;
    box-shadow: 0 10px 24px rgba(37, 211, 102, 0.22);
    transition: background-color 0.22s ease, transform 0.22s cubic-bezier(0.16, 1, 0.3, 1),
                box-shadow 0.22s ease;
    white-space: nowrap;
}

.lp-home .lp-btn-whatsapp::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 55%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transform: skewX(-20deg);
    transition: left 0.55s ease;
    pointer-events: none;
}

.lp-home .lp-btn-whatsapp:hover {
    background: #1dba59;
    border-color: #1dba59;
    transform: translateY(-2px);
    box-shadow: 0 16px 32px rgba(37, 211, 102, 0.3);
}

.lp-home .lp-btn-whatsapp:hover::after {
    left: 150%;
}

.lp-home .lp-btn-whatsapp svg {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
}

/* ─────────────────────────────────────────────
   FOOTER
   ───────────────────────────────────────────── */
.lp-footer {
    margin-top: 80px;
    border-top: 1px solid #E5E7EB;
    padding: 48px 32px 24px;
    background: #fff;
    color: #121212;
}

.lp-footer-inner {
    display: flex;
    gap: 60px;
    max-width: 1100px;
    margin: 0 auto 40px;
}

.lp-footer-brand {
    flex: 1;
}

.lp-footer-brand p {
    color: #2A2A2A;
    font-size: 13px;
    margin-top: 12px;
    max-width: 220px;
    line-height: 1.6;
}

.lp-logo {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: var(--lp-font-head);
    font-size: 28px;
    letter-spacing: 0.04em;
    color: #121212;
    white-space: nowrap;
    flex-shrink: 0;
}

.lp-logo strong,
.lp-logo-icon {
    color: var(--lp-green);
}

.lp-footer-links {
    display: flex;
    gap: 48px;
}

.lp-footer-links > div {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.lp-footer-links strong {
    font-size: 12px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #2A2A2A;
    margin-bottom: 4px;
}

.lp-footer-links a {
    font-size: 14px;
    color: #121212;
    opacity: 0.76;
    transition: opacity 0.18s ease, color 0.18s ease;
}

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

.lp-footer-bottom {
    max-width: 1100px;
    margin: 0 auto;
    padding-top: 24px;
    border-top: 1px solid #E5E7EB;
    display: flex;
    justify-content: space-between;
    gap: 12px;
    font-size: 12px;
    color: #2A2A2A;
}

/* ─────────────────────────────────────────────
   SCROLL REVEAL SYSTEM
   ───────────────────────────────────────────── */
[data-reveal] {
    opacity: 1;
    transform: none;
    transition: opacity 0.65s cubic-bezier(0.16, 1, 0.3, 1),
                transform 0.65s cubic-bezier(0.16, 1, 0.3, 1);
}

[data-reveal].is-revealed {
    opacity: 1;
    transform: none;
}

[data-reveal-group] > * {
    opacity: 1;
    transform: none;
    transition: opacity 0.55s cubic-bezier(0.16, 1, 0.3, 1),
                transform 0.55s cubic-bezier(0.16, 1, 0.3, 1);
}

[data-reveal-group].is-revealed > *:nth-child(1)  { transition-delay: 0.04s; }
[data-reveal-group].is-revealed > *:nth-child(2)  { transition-delay: 0.10s; }
[data-reveal-group].is-revealed > *:nth-child(3)  { transition-delay: 0.16s; }
[data-reveal-group].is-revealed > *:nth-child(4)  { transition-delay: 0.22s; }
[data-reveal-group].is-revealed > *:nth-child(5)  { transition-delay: 0.28s; }
[data-reveal-group].is-revealed > *:nth-child(6)  { transition-delay: 0.34s; }
[data-reveal-group].is-revealed > *:nth-child(7)  { transition-delay: 0.40s; }
[data-reveal-group].is-revealed > *:nth-child(8)  { transition-delay: 0.46s; }
[data-reveal-group].is-revealed > *:nth-child(9)  { transition-delay: 0.52s; }
[data-reveal-group].is-revealed > * {
    opacity: 1;
    transform: none;
}

/* No motion preference */
@media (prefers-reduced-motion: reduce) {
    [data-reveal],
    [data-reveal-group] > * {
        opacity: 1;
        transform: none;
        transition: none;
    }

    .lp-home .lp-badge.low-stock {
        animation: none;
    }
}

/* ─────────────────────────────────────────────
   ENTRANCE ANIMATIONS
   ───────────────────────────────────────────── */
@keyframes heroFadeUp {
    from {
        opacity: 0;
        transform: translateY(22px);
    }
    to {
        opacity: 1;
        transform: none;
    }
}

@keyframes heroImageEnter {
    from {
        opacity: 0;
        transform: translateX(24px);
    }
    to {
        opacity: 1;
        transform: none;
    }
}

@keyframes lowStockPulse {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(245, 158, 11, 0);
        transform: scale(1);
    }
    50% {
        box-shadow: 0 0 0 8px rgba(245, 158, 11, 0.08);
        transform: scale(1.03);
    }
}

/* ─────────────────────────────────────────────
   RESPONSIVE — 1120px
   ───────────────────────────────────────────── */
@media (max-width: 1120px) {
    .lp-home .lp-hero-shell {
        min-height: 700px;
    }

    .lp-home .lp-hero-panel {
        padding: 52px 32px 48px;
    }

    .lp-home .lp-hero-copy h1 {
        font-size: 62px;
    }

    .lp-home .lp-hero-intro {
        font-size: 17px;
    }

    .lp-home .lp-vehicle-selects,
    .lp-home .lp-brand-finder,
    .lp-home .lp-reference-finder {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .lp-home .lp-vehicle-selects-hero {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .lp-home .lp-vehicle-selects-hero .lp-fitment-button,
    .lp-home .lp-brand-finder .lp-fitment-button,
    .lp-home .lp-reference-finder .lp-fitment-button {
        width: 100%;
        grid-column: 1 / -1;
    }

    .lp-home .lp-category-grid,
    .lp-home .lp-brand-grid,
    .lp-home .lp-featured-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

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

    .lp-home .lp-trust-strip {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .lp-home .lp-process-grid {
        grid-template-columns: 1fr;
    }

    .lp-home .lp-insight-section {
        grid-template-columns: 1fr;
    }

    .lp-home .lp-cta-panel {
        flex-direction: column;
        align-items: flex-start;
    }
}

/* ─────────────────────────────────────────────
   RESPONSIVE — 780px
   ───────────────────────────────────────────── */
@media (max-width: 780px) {
    .lp-home {
        padding: 0 0 56px;
    }

    .lp-home .lp-hero-shell {
        min-height: auto;
        padding: 0;
        margin-top: -58px; /* mobile nav is 58px */
    }

    .lp-home .lp-hero-panel {
        padding: 90px 18px 34px; /* 58px nav + 32px breathing room */
    }

    .lp-home .lp-hero-copy h1 {
        font-size: 42px;
    }

    .lp-home .lp-hero-intro {
        margin-top: 14px;
        font-size: 15px;
    }

    .lp-home .lp-audience-row {
        align-items: flex-start;
        flex-direction: column;
        gap: 8px;
        margin-top: 18px;
    }

    .lp-home .lp-audience-switch button {
        padding: 8px 15px;
        font-size: 11px;
    }

    .lp-home .lp-hero-finder-card {
        margin-top: 16px;
        border-radius: 16px;
    }

    .lp-home .lp-hero-search-mode {
        display: block;
        overflow-x: auto;
    }

    .lp-home .lp-mode-switch {
        display: flex;
        gap: 6px;
        width: max-content;
        min-width: 100%;
        padding: 12px 12px 0;
    }

    .lp-home .lp-mode-pill {
        min-width: auto;
        flex-shrink: 0;
        padding: 9px 14px;
        border: 1px solid var(--lp-border);
        border-radius: 999px;
        background: #fff;
        font-size: 12.5px;
    }

    .lp-home .lp-mode-pill small {
        display: none;
    }

    .lp-home .lp-mode-pill.is-active {
        border-color: var(--lp-green);
        background: var(--lp-green);
        color: #fff;
    }

    .lp-home .lp-finder-mode-panel {
        padding: 14px;
    }

    .lp-home .lp-stats-strip {
        grid-template-columns: 1fr 1fr;
        gap: 14px;
        margin-top: 22px;
    }

    .lp-home .lp-stat-item,
    .lp-home .lp-stat-item:first-child {
        padding: 0;
        border-left: 0;
    }

    .lp-home .lp-stat-num {
        font-size: 26px;
    }

    .lp-home .lp-vehicle-selects,
    .lp-home .lp-vehicle-selects-hero,
    .lp-home .lp-brand-finder,
    .lp-home .lp-reference-finder,
    .lp-home .lp-category-grid,
    .lp-home .lp-brand-grid,
    .lp-home .lp-featured-grid,
    .lp-home .lp-trust-strip {
        grid-template-columns: 1fr;
    }

    .lp-home .lp-make-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .lp-home .lp-fitment-button {
        width: 100%;
        min-width: 0;
    }

    .lp-home .lp-finder-panel,
    .lp-home .lp-insight-card,
    .lp-home .lp-cta-panel {
        padding: 22px;
    }

    .lp-footer,
    .lp-footer-inner {
        padding-left: 20px;
        padding-right: 20px;
    }

    .lp-footer-inner,
    .lp-footer-links,
    .lp-footer-bottom {
        flex-direction: column;
        gap: 24px;
    }
}

@media (max-width: 780px) {
    .lp-home .lp-brand-section {
        padding: 18px;
    }

    .lp-home .lp-brand-section .lp-section-heading {
        margin-bottom: 14px;
    }

    .lp-home .lp-brand-grid {
        gap: 38px;
    }

    .lp-home .lp-brand-wordmark {
        font-size: 17px;
    }

    .lp-home .lp-brand-image-wrap {
        width: 92px;
        height: 30px;
    }

    .lp-home .lp-category-section,
    .lp-home .lp-featured-section {
        padding: 34px 18px;
    }

    .lp-home .lp-category-section .lp-section-heading,
    .lp-home .lp-featured-section .lp-section-heading {
        align-items: flex-start;
        flex-direction: column;
        gap: 12px;
        margin-bottom: 18px;
    }

    .lp-home .lp-category-section .lp-section-heading h2 {
        font-size: 28px;
        line-height: 1.05;
    }

    .lp-home .lp-category-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        grid-auto-rows: 132px;
        gap: 10px;
    }

    .lp-home .lp-category-card:nth-child(1) {
        grid-column: span 2;
        grid-row: span 2;
    }

    .lp-home .lp-category-card:nth-child(6) {
        grid-column: span 2;
    }

    .lp-home .lp-category-meta strong {
        font-size: 17px;
    }

    .lp-home .lp-category-card:nth-child(1) .lp-category-meta strong {
        font-size: 34px;
    }

    .lp-home .lp-category-image-wrap {
        width: 108px;
        height: 108px;
    }

    .lp-home .lp-category-card:nth-child(1) .lp-category-image-wrap {
        width: 190px;
        height: 190px;
    }

    .lp-home .lp-featured-section .lp-section-heading h2 {
        font-size: 26px;
        line-height: 1.05;
    }

    .lp-home .lp-featured-grid {
        display: flex;
        gap: 12px;
        overflow-x: auto;
        margin-left: 20px !important;
        margin-right: -18px;
        padding: 0 18px 6px;
        scroll-snap-type: x mandatory;
        scrollbar-width: none;
    }

    .lp-home .lp-featured-grid::-webkit-scrollbar {
        display: none;
    }

    .lp-home .lp-feature-card {
        width: 208px;
        flex: 0 0 208px;
        scroll-snap-align: start;
    }

    .lp-home .lp-feature-card > strong {
        font-size: 13.5px;
    }

    .lp-home .lp-feature-price {
        font-size: 19px;
    }

    .lp-home .lp-split-section {
        grid-template-columns: 1fr;
        gap: 12px;
        padding: 0 18px 48px;
    }

    .lp-home .lp-split-card {
        min-height: 0;
        padding: 24px;
    }

    .lp-home .lp-split-card h2 {
        font-size: 34px;
        line-height: 1;
    }

    .lp-home .lp-split-card p {
        font-size: 14px;
    }

    .lp-footer-sky {
        height: 180px;
    }

    .lp-design-footer-inner {
        grid-template-columns: 1fr;
        gap: 28px;
        padding: 40px 18px 28px;
    }

    .lp-design-footer-logo {
        font-size: 20px;
    }

    .lp-design-footer-bottom {
        flex-direction: column;
        padding: 22px 18px 28px;
    }
}

/* ─── Popular chips (bottom of hero search card) ─── */
.lp-home .lp-popular-row {
    padding: 13px 22px;
    border-top: 1px solid #E2E8F0;
    background: #F8FAFC;
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
    border-radius: 0 0 var(--lp-radius-md) var(--lp-radius-md);
    overflow: hidden;
}

.lp-home .lp-popular-label {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #64748B;
    opacity: 0.6;
    white-space: nowrap;
    flex-shrink: 0;
}

.lp-home .lp-popular-chip {
    padding: 5px 11px;
    background: #fff;
    border: 1px solid #E2E8F0;
    border-radius: 999px;
    font-size: 13px;
    color: #0F172A;
    text-decoration: none;
    transition: border-color 0.15s;
}

.lp-home .lp-popular-chip:hover {
    border-color: #10B981;
    color: #0B3D2E;
}

/* ─── Brand marquee strip ─── */
.lp-home .lp-brand-strip {
    background: #fff;
    border-bottom: 1px solid #E2E8F0;
}

.lp-home .lp-brand-strip-inner {
    max-width: 1320px;
    margin: 0 auto;
    padding: 26px 48px;
}

.lp-home .lp-brand-oem-row {
    display: flex;
    align-items: center;
    gap: 18px;
    margin-bottom: 20px;
}

.lp-home .lp-brand-oem-label {
    font-size: 10.5px;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #10B981;
    flex-shrink: 0;
}

.lp-home .lp-brand-oem-line {
    flex: 1;
    height: 1px;
    background: #E2E8F0;
}

.lp-home .lp-brand-marquee {
    overflow: hidden;
    -webkit-mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent);
    mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent);
}

@keyframes lpMarquee {
    from { transform: translateX(0); }
    to   { transform: translateX(-50%); }
}

.lp-home .lp-brand-marquee-track {
    display: flex;
    gap: 72px;
    width: max-content;
    align-items: center;
    animation: lpMarquee 38s linear infinite;
}

.lp-home .lp-brand-marquee:hover .lp-brand-marquee-track {
    animation-play-state: paused;
}

.lp-home .lp-brand-word {
    font-size: 22px;
    font-weight: 700;
    color: #64748B;
    opacity: 0.62;
    white-space: nowrap;
    letter-spacing: 0.02em;
    transition: color 0.2s, opacity 0.2s;
    cursor: default;
}

.lp-home .lp-brand-word:hover {
    color: #0B3D2E;
    opacity: 1;
}

/* ─── Category bento ─── */
.lp-home .lp-category-section {
    background: #F8FAFC;
    padding: 88px 0;
    max-width: none;
    margin: 0;
}

@media (min-width: 861px) {
.lp-home .lp-bento-wrap {
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 48px;
}
}

.lp-home .lp-bento-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 30px;
}

.lp-home .lp-bento-title {
    font-size: 52px;
    font-weight: 700;
    letter-spacing: -0.03em;
    margin: 0;
    color: #0F172A;
    line-height: 1.0;
}

.lp-home .lp-bento-all-link {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #0F172A;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
    white-space: nowrap;
}

.lp-home .lp-bento-all-link:hover { color: #10B981; }

.lp-home .lp-bento-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 176px;
    gap: 10px;
}

.lp-home .lp-bento-card {
    background: #fff;
    border: 1px solid #E2E8F0;
    border-radius: 16px;
    padding: 22px;
    text-decoration: none;
    color: #0F172A;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
    overflow: hidden;
    transition: box-shadow 0.2s, transform 0.2s;
}

.lp-home .lp-bento-card:hover {
    box-shadow: 0 4px 20px rgba(11,61,46,0.12);
    transform: translateY(-1px);
}

.lp-home .lp-bento-card.is-big {
    grid-column: span 2;
    grid-row: span 2;
    background: #0B3D2E;
    color: #fff;
    border: none;
}

.lp-home .lp-bento-card.is-wide {
    background: #047857;
    color: #fff;
    border: none;
}

.lp-home .lp-bento-top {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    opacity: 0.7;
    position: relative;
    z-index: 2;
}

.lp-home .lp-bento-img-bg {
    position: absolute;
    right: 0;
    bottom: 0;
    width: 55%;
    height: 70%;
    object-fit: contain;
    object-position: right bottom;
    opacity: 1;
    pointer-events: none;
}

.lp-home .lp-bento-card.is-big .lp-bento-img-bg,
.lp-home .lp-bento-card.is-wide .lp-bento-img-bg {
    filter: brightness(10);
    opacity: 0.22;
}

.lp-home .lp-bento-bottom {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    position: relative;
    z-index: 2;
}

.lp-home .lp-bento-name {
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 1;
}

.lp-home .lp-bento-card.is-big .lp-bento-name { font-size: 52px; }
.lp-home .lp-bento-card:not(.is-big) .lp-bento-name { font-size: 26px; }

@media (max-width: 860px) {
    /* ── Overflow fix (marquee clips to viewport, hero neg-margin still works) ── */
    .lp-home { overflow-x: clip; }
    .lp-home .lp-brand-strip-inner { padding: 20px 16px; }
    .lp-home .lp-brand-oem-row { display: none; }

    /* ── Bento mobile ── */
    .lp-home .lp-category-section { padding: 48px 0; }
    .lp-home .lp-bento-wrap { padding: 0 16px; }
    .lp-home .lp-bento-header { flex-direction: column; align-items: flex-start; gap: 10px; margin-bottom: 16px; }
    .lp-home .lp-bento-title { font-size: 28px; line-height: 1.1; }

    .lp-home .lp-bento-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: 140px;
        gap: 8px;
    }

    /* big card: full width, 2 rows tall, first */
    .lp-home .lp-bento-card.is-big {
        grid-column: span 2;
        grid-row: span 2;
        order: 0;
    }
    .lp-home .lp-bento-card.is-big .lp-bento-name { font-size: 36px; }

    /* wide card: same 1-col width as regular cards, directly after big */
    .lp-home .lp-bento-card.is-wide {
        grid-column: span 1;
        order: 1;
    }

    /* all regular cards come after */
    .lp-home .lp-bento-card:not(.is-big):not(.is-wide) { order: 2; }

    /* ── Featured mobile ── */
    .lp-home .lp-featured-section { padding: 34px 0; }
    .lp-home .lp-featured-title { font-size: 26px; white-space: normal; }
    .lp-home .lp-featured-actions { display: none !important; }
    .lp-home .lp-featured-header { gap: 0; margin-bottom: 16px; padding: 0 18px; }
    /* reset the bleed trick — section has no side padding here so no negative margin needed */
    .lp-home .lp-featured-grid { margin-left: 0; margin-right: 0; padding: 0 18px 6px; }
    /* collapse invisible text so ::before cart icon centres properly */
    .lp-home .lp-feature-link { font-size: 0; }

    /* ── Split mobile ── */
    .lp-home .lp-split-section { padding: 0 16px 48px; }
}

/* ─── Featured heading ─── */
.lp-home .lp-featured-section {
    background: #fff;
    max-width: none;
    margin: 0;
}

.lp-home .lp-featured-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 30px;
}

.lp-home .lp-featured-title {
    font-weight: 700;
    letter-spacing: -0.03em;
    margin: 0;
    color: #0F172A;
    line-height: 1;
}

.lp-home .lp-featured-actions {
    display: flex;
    gap: 8px;
    flex-shrink: 0;
}

@media (min-width: 861px) {
    .lp-home .lp-featured-section { padding: 88px 0; }
    .lp-home .lp-featured-section > * {
        max-width: 1320px;
        margin-left: auto;
        margin-right: auto;
        padding-left: 48px;
        padding-right: 48px;
    }
    .lp-home .lp-featured-title { font-size: 48px; }
}

.lp-home .lp-ghost-btn {
    display: inline-flex;
    align-items: center;
    border: 1px solid #E2E8F0;
    background: #fff;
    color: #0F172A;
    padding: 10px 16px;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    transition: border-color 0.15s;
    white-space: nowrap;
}

.lp-home .lp-ghost-btn:hover { border-color: #10B981; color: #0B3D2E; }

/* Diamond bullet markers (design pattern) */
.lp-home .lp-split-section ul {
    list-style: none;
    padding: 0;
    margin: 4px 0 0;
    display: flex;
    flex-direction: column;
    gap: 9px;
}

.lp-home .lp-split-section ul li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.02em;
}

.lp-home .lp-split-section ul li::before {
    content: '';
    width: 7px;
    height: 7px;
    background: #10B981;
    border-radius: 2px;
    transform: rotate(45deg);
    flex-shrink: 0;
}

.lp-home .lp-split-section .is-dark ul li::before {
    background: #34D399;
}

.lp-home .lp-split-section .lp-split-card.is-dark {
    position: relative;
    overflow: hidden;
}

.lp-home .lp-split-section .lp-split-card.is-dark::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(120% 100% at 90% 10%, rgba(16,185,129,0.38), transparent 55%);
    pointer-events: none;
}
