/* ============================================================
   Motorscan Homepage — Minimalist Modern design system
   Spec source: in-house design tokens (Inter + Rubik + JetBrains Mono)
   Strict scoping — every selector targets a homepage section.
   No element-level overrides. Header/footer/alerts untouched.
   ============================================================ */

/* ----------- Tokens (used inside scoped selectors only) -----------
   --hp-primary       #0052FF   primary
   --hp-primary-end   #4D7CFF   gradient end
   --hp-success       #10B981
   --hp-warning       #FFCC00   plate yellow
   --hp-dark          #0F172A   inverted surfaces
   --hp-body-bg       #FAFAFA   alt section bg
   --hp-ink           #0F172A   body copy
   --hp-muted         #64748B   secondary copy
   --hp-line          #E2E8F0   borders
   --hp-card          #FFFFFF
   --hp-radius        12px      (0.75rem)
   --hp-radius-lg     16px      (1rem)
   --hp-radius-sm     8px       (0.5rem)
*/

/* ----------- Fonts ----------- */
@font-face {
    font-family: 'UKNumberPlate';
    src: url('../assets/fonts/UKNumberPlate.woff2') format('woff2'),
         url('../assets/fonts/UKNumberPlate.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

/* ----------- Shared utilities (scoped names, no global leak) ----------- */

/* Monospace eyebrow pill — used everywhere instead of .accent-heading */
.hp-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 14px;
    border-radius: 999px;
    border: 1px solid rgba(0, 82, 255, 0.2);
    background-color: rgba(0, 82, 255, 0.06);
    color: #0052FF;
    font-family: 'JetBrains Mono', SFMono-Regular, Menlo, Monaco, Consolas, monospace;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    line-height: 1;
}

.hp-badge--hero {
    margin-bottom: 24px;
}

/* Promote existing .accent-heading inside our sections to badge style */
#whats-included .accent-heading,
#all-checks .accent-heading,
#mot-history .accent-heading,
#car-tax .accent-heading,
#car-history .accent-heading,
#vehicle-score .accent-heading,
.homepage__feedback .accent-heading,
.homepage__faqs .accent-heading,
.homepage__articles .accent-heading {
    display: inline-flex;
    align-items: center;
    padding: 6px 14px;
    border-radius: 999px;
    border: 1px solid rgba(0, 82, 255, 0.2);
    background-color: rgba(0, 82, 255, 0.06);
    color: #0052FF;
    font-family: 'JetBrains Mono', SFMono-Regular, Menlo, Monaco, Consolas, monospace;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    line-height: 1;
    margin: 0 0 18px;
}

/* ============================================================
   SECTION 1 — HERO (inverted surface)
   ============================================================ */
.lp-v2.lp-v2__hero {
    position: relative;
    background-color: #FFFFFF;
    background-image:
        radial-gradient(900px 600px at 50% 110%, rgba(0, 82, 255, 0.10), transparent 65%),
        linear-gradient(180deg, #FFFFFF 0%, #F4F8FF 60%, #ECF2FF 100%);
    /* top padding clears the fixed navbar (~70px) plus breathing room */
    padding: 160px 0 120px;
    color: #0F172A;
    overflow: hidden;
    isolation: isolate;
    border-bottom: 1px solid #E2E8F0;
}

/* Subtle navy dot texture, masked to fade at edges */
.lp-v2.lp-v2__hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle, rgba(0, 82, 255, 0.07) 1px, transparent 1px);
    background-size: 32px 32px;
    -webkit-mask-image: radial-gradient(ellipse 80% 70% at 50% 40%, #000 25%, transparent 85%);
            mask-image: radial-gradient(ellipse 80% 70% at 50% 40%, #000 25%, transparent 85%);
    pointer-events: none;
    z-index: 0;
}

.lp-v2.lp-v2__hero .container {
    position: relative;
    z-index: 2;
}

/* ============================================================
   Animated hero car + buyer-concern tooltips
   Top-right area of the hero, slides in then tooltips fade in.
   Hidden on tablet/mobile so the centred search stays the focus.
   ============================================================ */
.lp-v2.lp-v2__hero .lp-v2__hero-visual {
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    width: 50%;
    max-width: 760px;
    /* Matches the top-view-car.webp source (1200x800) so it fills the box edge-to-edge */
    aspect-ratio: 3 / 2;
    z-index: 1;
    pointer-events: none;
    overflow: visible;
}

.lp-v2.lp-v2__hero .lp-v2__hero-car {
    position: relative;
    width: 100%;
    height: 100%;
    transform: translateX(120%);
    opacity: 0;
    animation: hpCarSlideIn 1.1s cubic-bezier(0.22, 1, 0.36, 1) 0.25s forwards;
    filter: drop-shadow(0 30px 30px rgba(15, 23, 42, 0.18));
}

.lp-v2.lp-v2__hero .lp-v2__hero-car > img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

@keyframes hpCarSlideIn {
    from { transform: translateX(120%); opacity: 0; }
    to   { transform: translateX(0);    opacity: 1; }
}

/* Tooltips — premium "report finding" cards: icon chip + title + meta */
.lp-v2.lp-v2__hero .lp-v2__hero-tip {
    position: absolute;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 10px 16px 10px 10px;
    background: #FFFFFF;
    border: 1px solid #E2E8F0;
    border-radius: 14px;
    box-shadow:
        0 24px 48px -16px rgba(15, 23, 42, 0.22),
        0 8px 16px -8px rgba(15, 23, 42, 0.10),
        0 0 0 1px rgba(255, 255, 255, 0.6) inset;
    font-family: 'Inter', sans-serif;
    color: #0F172A;
    min-width: 200px;
    opacity: 0;
    will-change: transform, opacity;
    animation:
        hpTipFadeIn 0.5s cubic-bezier(0.22, 1, 0.36, 1) forwards,
        hpTipFloat  5s ease-in-out infinite;
}

.lp-v2.lp-v2__hero .lp-v2__hero-tip-icon {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    position: relative;
}

.lp-v2.lp-v2__hero .lp-v2__hero-tip-icon::after {
    content: "";
    position: absolute;
    inset: -3px;
    border-radius: 12px;
    border: 1px solid currentColor;
    opacity: 0.12;
}

.lp-v2.lp-v2__hero .lp-v2__hero-tip-icon .material-icons {
    font-size: 20px;
}

.lp-v2.lp-v2__hero .lp-v2__hero-tip-body {
    display: flex;
    flex-direction: column;
    gap: 1px;
    line-height: 1.25;
}

.lp-v2.lp-v2__hero .lp-v2__hero-tip-title {
    font-family: 'Rubik', sans-serif;
    font-weight: 600;
    font-size: 13px;
    letter-spacing: -0.005em;
    color: #0F172A;
}

.lp-v2.lp-v2__hero .lp-v2__hero-tip-meta {
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-size: 11px;
    color: #64748B;
    letter-spacing: 0;
}

/* Severity variants */
.lp-v2.lp-v2__hero .lp-v2__hero-tip--danger {
    background: linear-gradient(180deg, #FFFFFF 0%, #FFF6F6 100%);
    border-color: #FECACA;
}

.lp-v2.lp-v2__hero .lp-v2__hero-tip--danger .lp-v2__hero-tip-icon {
    background: linear-gradient(135deg, #DC2626, #EF4444);
    color: #FFFFFF;
    box-shadow: 0 6px 14px rgba(220, 38, 38, 0.30);
}

.lp-v2.lp-v2__hero .lp-v2__hero-tip--warning {
    background: linear-gradient(180deg, #FFFFFF 0%, #FFFBF0 100%);
    border-color: #FED7AA;
}

.lp-v2.lp-v2__hero .lp-v2__hero-tip--warning .lp-v2__hero-tip-icon {
    background: linear-gradient(135deg, #D97706, #F59E0B);
    color: #FFFFFF;
    box-shadow: 0 6px 14px rgba(217, 119, 6, 0.30);
}

@keyframes hpTipFadeIn {
    from { opacity: 0; }
    to   { opacity: 1; }
}

/* Subtle continuous float — different timing per tip via individual delays */
@keyframes hpTipFloat {
    0%, 100% { transform: translateY(0); }
    50%      { transform: translateY(-5px); }
}

/* Position + entrance/float delays per tip.
   Tuned to top-view-car.webp where the car body sits roughly within
   10–90% horizontally and 22–78% vertically of the wrapper.
   Kept INSIDE the wrapper bounds so they don't reach into the title column. */
.lp-v2.lp-v2__hero .lp-v2__hero-tip--bonnet {
    top: 28%; left: 0;
    animation-delay: 1.35s, 0s;
}
.lp-v2.lp-v2__hero .lp-v2__hero-tip--roof {
    top: 4%; left: 34%;
    animation-delay: 1.55s, -1.2s;
}
.lp-v2.lp-v2__hero .lp-v2__hero-tip--wheel {
    bottom: 14%; left: 4%;
    animation-delay: 1.75s, -2.4s;
}
.lp-v2.lp-v2__hero .lp-v2__hero-tip--rear {
    bottom: 28%; right: -8%;
    animation-delay: 1.95s, -3.6s;
}

@media (max-width: 1199px) {
    .lp-v2.lp-v2__hero .lp-v2__hero-visual {
        width: 46%;
        max-width: 580px;
    }
    .lp-v2.lp-v2__hero .lp-v2__hero-tip {
        min-width: 180px;
        padding: 8px 14px 8px 8px;
    }
    .lp-v2.lp-v2__hero .lp-v2__hero-tip-title { font-size: 12px; }
    .lp-v2.lp-v2__hero .lp-v2__hero-tip-meta  { font-size: 10px; }
    .lp-v2.lp-v2__hero .lp-v2__hero-tip--bonnet { left: 4%; }
    .lp-v2.lp-v2__hero .lp-v2__hero-tip--rear   { right: -2%; }
}

@media (max-width: 991px) {
    .lp-v2.lp-v2__hero .lp-v2__hero-visual {
        display: none;
    }
}

@media (prefers-reduced-motion: reduce) {
    .lp-v2.lp-v2__hero .lp-v2__hero-car {
        transform: none;
        opacity: 1;
        animation: none;
    }
    .lp-v2.lp-v2__hero .lp-v2__hero-tip {
        opacity: 1;
        transform: none;
        animation: none;
    }
}

.lp-v2.lp-v2__hero h1 {
    font-family: 'Rubik', sans-serif;
    color: #0F172A;
    font-size: 42px;
    font-weight: 700;
    line-height: 1.15;
    letter-spacing: -0.02em;
    margin: 0 0 18px;
}

.lp-v2.lp-v2__hero h6 {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    color: #5A6478;
    font-size: 18px;
    font-weight: 400;
    line-height: 1.6;
    letter-spacing: 0;
    text-transform: none;
    margin: 0 auto 36px;
    max-width: 640px;
}

.lp-v2.lp-v2__hero h6 a,
.lp-v2.lp-v2__hero h6 a.text-white {
    color: #0052FF;
    text-decoration: underline;
    text-decoration-color: rgba(0, 82, 255, 0.35);
    text-decoration-thickness: 1px;
    text-underline-offset: 3px;
}

.lp-v2.lp-v2__hero h6 a:hover,
.lp-v2.lp-v2__hero h6 a.text-white:hover {
    text-decoration-color: #0052FF;
    color: #0052FF;
}

/* Reg search — sits in its own breathing room between subhead and CTAs */
.lp-v2.lp-v2__hero .vrm-search {
    background: transparent;
    padding: 0;
    border: 0;
    box-shadow: none;
    margin: 8px 0 24px;
}

.lp-v2.lp-v2__hero .vrm-search__form-container {
    padding: 0;
}

/* Wrap the input + camera icon as one positioned group */
.lp-v2.lp-v2__hero .vrm-search__form__group-container {
    position: relative;
}

.lp-v2.lp-v2__hero .vrm-search__form {
    margin-bottom: 0;
}

.lp-v2.lp-v2__hero .vrm-search .input-group {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 40px -10px rgba(15, 23, 42, 0.18), 0 8px 16px -8px rgba(15, 23, 42, 0.12);
}

.lp-v2.lp-v2__hero .vrm-search .input-group-text.uk {
    background: linear-gradient(135deg, #0052FF, #4D7CFF);
    color: #FFFFFF;
    border: 0;
    font-family: 'Rubik', sans-serif;
    font-weight: 600;
    font-size: 16px;
    letter-spacing: 0.06em;
    padding: 0 22px;
    height: 68px;
    border-radius: 0;
}

.lp-v2.lp-v2__hero .vrm-search__input {
    height: 68px;
    background: #FFCC00;
    color: #0F172A;
    border: 0;
    border-radius: 0;
    /* right padding reserves space for the absolute camera button */
    padding-right: 60px;
    font-family: 'UKNumberPlate', 'Rubik', sans-serif;
    font-weight: 400;
    font-size: 34px;
    letter-spacing: 0.04em;
    text-align: center;
    text-transform: uppercase;
}

/* Camera (ANPR) icon — overlaid on the right edge of the input */
.lp-v2.lp-v2__hero .vrm-search__anpr {
    position: absolute;
    top: 50%;
    right: 12px;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    color: #0F172A;
    background: rgba(15, 23, 42, 0.06);
    border: 0;
    padding: 0;
    cursor: pointer;
    z-index: 3;
    transition: background-color .15s ease, color .15s ease;
    text-decoration: none;
    font: inherit;
}

.lp-v2.lp-v2__hero .vrm-search__anpr:hover,
.lp-v2.lp-v2__hero .vrm-search__anpr:focus {
    background: #0F172A;
    color: #FFCC00;
    text-decoration: none;
}

.lp-v2.lp-v2__hero .vrm-search__anpr .material-icons {
    font-size: 22px;
    color: inherit;
}

.lp-v2.lp-v2__hero .vrm-search__input::placeholder {
    color: rgba(15, 23, 42, 0.4);
    font-family: 'UKNumberPlate', 'Rubik', sans-serif;
    font-weight: 400;
    letter-spacing: 0.04em;
}

.lp-v2.lp-v2__hero .vrm-search__input:focus {
    background: #FFD933;
    box-shadow: none;
    outline: 0;
}

.lp-v2.lp-v2__hero .vrm-search .form-group.row {
    margin-top: 14px;
    margin-bottom: 0;
}

/* Hero buttons */
.lp-v2.lp-v2__hero .btn {
    border-radius: 12px;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 16px;
    letter-spacing: 0;
    padding: 16px 22px;
    border: 0;
    transition: transform .2s ease, box-shadow .2s ease, background .2s ease, color .2s ease;
}

.lp-v2.lp-v2__hero .btn-success {
    background: linear-gradient(135deg, #0052FF, #4D7CFF);
    color: #FFFFFF;
    box-shadow: 0 4px 14px rgba(0, 82, 255, 0.35);
}

.lp-v2.lp-v2__hero .btn-success:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 82, 255, 0.45);
    color: #FFFFFF;
}

.lp-v2.lp-v2__hero .btn-light {
    background: #FFFFFF;
    border: 1px solid #E2E8F0;
    color: #0F172A;
    box-shadow: 0 1px 3px rgba(15, 23, 42, 0.06);
}

.lp-v2.lp-v2__hero .btn-light:hover {
    background: #FFFFFF;
    border-color: #0052FF;
    color: #0052FF;
    transform: translateY(-2px);
    box-shadow: 0 4px 14px rgba(0, 82, 255, 0.15);
}

/* Trust strip */
.lp-v2.lp-v2__hero .lp-v2__proof {
    list-style: none;
    padding: 0;
    margin: 28px 0 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px 24px;
    color: #5A6478;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 500;
}

@media (min-width: 992px) {
    .lp-v2.lp-v2__hero .lp-v2__proof {
        justify-content: flex-start;
    }
}

.lp-v2.lp-v2__hero .lp-v2__proof li {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.lp-v2.lp-v2__hero .lp-v2__proof .material-icons {
    font-size: 16px;
    color: #10B981;
}

.lp-v2.lp-v2__hero .lp-v2__proof li[style] {
    width: 100%;
    justify-content: center;
    margin-top: 8px;
    color: #5A6478;
}

.lp-v2.lp-v2__hero .lp-v2__proof img.review-icons {
    margin-top: 4px;
}

.lp-v2.lp-v2__hero .vrm-search .alert {
    border-radius: 12px;
}

/* Hero trust counter — two blocks (check count + Trustpilot rating) */
.lp-v2.lp-v2__hero .lp-v2__counter {
    margin: 32px auto 0;
    padding: 16px 28px;
    border: 1px solid #E2E8F0;
    background: #FFFFFF;
    border-radius: 14px;
    display: inline-flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 14px 28px;
    max-width: 100%;
    text-align: center;
    box-shadow: 0 10px 40px -10px rgba(15, 23, 42, 0.08);
}

@media (min-width: 992px) {
    .lp-v2.lp-v2__hero .lp-v2__counter {
        margin-left: 0;
        margin-right: 0;
    }
}

.lp-v2.lp-v2__hero .lp-v2__counter-block {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    text-decoration: none;
    color: inherit;
    transition: opacity .15s ease;
}

.lp-v2.lp-v2__hero .lp-v2__counter-block--rating:hover {
    opacity: 0.85;
    text-decoration: none;
    color: inherit;
}

.lp-v2.lp-v2__hero .lp-v2__counter-divider {
    width: 1px;
    height: 38px;
    background: #E2E8F0;
    display: block;
}

.lp-v2.lp-v2__hero .lp-v2__counter-num {
    font-family: 'JetBrains Mono', monospace;
    font-weight: 700;
    font-size: 22px;
    color: #0F172A;
    letter-spacing: -0.01em;
    line-height: 1.1;
    background: linear-gradient(135deg, #0052FF, #4D7CFF);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.lp-v2.lp-v2__hero .lp-v2__counter-stars {
    width: 140px;
    height: 26px;
    display: block;
    margin: 0;
}

.lp-v2.lp-v2__hero .lp-v2__counter-label {
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    color: #5A6478;
    line-height: 1.3;
    letter-spacing: 0;
}

@media (max-width: 575px) {
    .lp-v2.lp-v2__hero .lp-v2__counter {
        flex-direction: column;
        gap: 12px;
        padding: 16px 20px;
        margin-top: 24px;
    }
    .lp-v2.lp-v2__hero .lp-v2__counter-divider {
        width: 60%;
        height: 1px;
    }
    .lp-v2.lp-v2__hero .lp-v2__counter-num {
        font-size: 20px;
    }
    .lp-v2.lp-v2__hero .lp-v2__counter-stars {
        width: 120px;
        height: 22px;
    }
}

/* ============================================================
   Section base
   ============================================================ */
#whats-included,
#all-checks {
    padding: 96px 0;
    background: #FFFFFF;
    border-top: 1px solid #E2E8F0;
}

#mot-history,
#car-tax,
#car-history,
#vehicle-score {
    padding: 80px 0;
    background: #FAFAFA;
    border-top: 1px solid #E2E8F0;
}

#car-tax,
#vehicle-score {
    background: #FFFFFF;
}

/* Section headings */
#whats-included h2,
#all-checks h2,
#mot-history h2,
#car-tax h2,
#car-history h2,
#vehicle-score h2,
.homepage__feedback h2,
.homepage__faqs h2,
.homepage__articles h2 {
    font-family: 'Rubik', sans-serif;
    color: #0F172A;
    font-size: 44px;
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -0.02em;
    margin: 0 0 18px;
}

#whats-included p,
#all-checks p,
#mot-history p,
#car-tax p,
#car-history p,
#vehicle-score p,
.homepage__feedback > .container > .row > [class*="col"] > p,
.homepage__articles p {
    font-family: 'Inter', sans-serif;
    color: #64748B;
    font-size: 17px;
    line-height: 1.6;
}

/* ============================================================
   SECTION 2 — Free vs Paid (data points)
   ============================================================ */
/* Only stretch the row that holds the cards, not the intro row */
#whats-included .row:has(> [class*="col-"] > .homepage__features-col) {
    align-items: stretch;
}

#whats-included .row > [class*="col-"]:has(> .homepage__features-col) {
    display: flex;
}

#whats-included .homepage__features-col {
    background: #FFFFFF;
    border: 1px solid #E2E8F0;
    border-radius: 16px;
    padding: 36px 34px;
    width: 100%;
    display: flex;
    flex-direction: column;
    box-shadow: 0 10px 40px -10px rgba(0, 0, 0, 0.08);
    transition: transform .3s ease, box-shadow .3s ease;
}

#whats-included .homepage__features-col:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

#whats-included .homepage__features-col__heading {
    display: flex;
    align-items: center;
    gap: 14px;
    margin: 0 0 22px;
    padding: 0 0 18px;
    border-bottom: 1px solid #E2E8F0;
}

#whats-included .homepage__features-col__icon-wrapper {
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, #0052FF, #4D7CFF);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 4px 14px rgba(0, 82, 255, 0.25);
}

#whats-included .homepage__features-col:nth-child(2) .homepage__features-col__icon-wrapper {
    background: #0F172A;
    box-shadow: 0 4px 14px rgba(15, 23, 42, 0.2);
}

#whats-included .homepage__features-col__icon-wrapper img {
    width: 22px;
    height: 22px;
    display: block;
}

#whats-included .homepage__features-col h4 {
    font-family: 'Rubik', sans-serif;
    color: #0F172A;
    font-size: 20px;
    font-weight: 700;
    margin: 0;
    letter-spacing: -0.01em;
}

#whats-included .homepage__features-col ul {
    list-style: none;
    padding: 0;
    margin: 4px 0 0;
    columns: 2;
    column-gap: 32px;
}

#whats-included .homepage__features-col ul li {
    padding: 10px 0 10px 30px;
    position: relative;
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    color: #0F172A;
    break-inside: avoid;
    line-height: 1.5;
}

#whats-included .homepage__features-col ul li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 13px;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background-color: #10B981;
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 18 18'><path d='M5 9.5 7.8 12 13 6.5' stroke='white' stroke-width='1.8' fill='none' stroke-linecap='round' stroke-linejoin='round'/></svg>");
    background-repeat: no-repeat;
    background-position: center;
}

#whats-included .homepage__features-col:nth-child(2) ul li::before {
    background-color: #0052FF;
}

#whats-included [class*="col-"] {
    margin-bottom: 24px;
}

@media (min-width: 768px) {
    #whats-included [class*="col-"] {
        margin-bottom: 0;
    }
}

@media (max-width: 575px) {
    #whats-included .homepage__features-col ul {
        columns: 1;
    }
}

/* ============================================================
   SECTION 3, 4, 5, 5b — Spotlights (MOT, Tax, History, Vehicle Score)
   ============================================================ */
#mot-history .container,
#car-tax .container,
#car-history .container,
#vehicle-score .container {
    max-width: 980px;
}

#mot-history h2,
#car-tax h2,
#car-history h2,
#vehicle-score h2 {
    font-size: 38px;
    margin-bottom: 16px;
}

#mot-history p,
#car-tax p,
#car-history p,
#vehicle-score p {
    max-width: 680px;
    margin: 0 auto 28px;
    font-size: 17px;
    color: #64748B;
}

#mot-history .btn,
#car-tax .btn,
#car-history .btn,
#vehicle-score .btn {
    background: linear-gradient(135deg, #0052FF, #4D7CFF);
    border: 0;
    color: #FFFFFF;
    border-radius: 12px;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    padding: 14px 26px;
    font-size: 15px;
    letter-spacing: 0;
    box-shadow: 0 4px 14px rgba(0, 82, 255, 0.25);
    transition: transform .2s ease, box-shadow .2s ease;
}

#mot-history .btn:hover,
#car-tax .btn:hover,
#car-history .btn:hover,
#vehicle-score .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 82, 255, 0.35);
    color: #FFFFFF;
}

/* ============================================================
   SECTION 6 — Trust band + reviews
   ============================================================ */
.homepage__trust {
    background: #0F172A;
    padding: 22px 0;
    text-align: center;
    border-top: 0;
}

.homepage__trust .col {
    padding: 0 16px;
}

.homepage__trust h2 {
    font-family: 'Inter', sans-serif;
    color: #FFFFFF;
    font-size: 17px;
    font-weight: 400;
    line-height: 1.5;
    margin: 0 auto;
    letter-spacing: 0;
    max-width: 880px;
}

.homepage__trust h2 span {
    background: linear-gradient(135deg, #0052FF, #4D7CFF);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 700;
    white-space: nowrap;
}

.homepage__feedback {
    background: #FAFAFA;
    padding: 96px 0;
    border-top: 1px solid #E2E8F0;
}

.homepage__feedback .card {
    background: #FFFFFF;
    border: 1px solid #E2E8F0;
    border-radius: 16px;
    box-shadow: 0 10px 40px -10px rgba(0, 0, 0, 0.08);
    height: 100%;
    transition: transform .3s ease, box-shadow .3s ease;
}

.homepage__feedback .card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.homepage__feedback .card-body {
    padding: 36px 32px;
}

.homepage__feedback__container {
    width: 100%;
}

.homepage__feedback blockquote.blockquote p {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: #0F172A;
    margin: 0 0 18px;
    font-weight: 400;
}

.homepage__feedback__wrapper {
    margin-bottom: 12px;
}

.homepage__feedback__wrapper .material-icons {
    color: #FFCC00;
    font-size: 20px;
}

.homepage__feedback__container > a {
    color: #64748B;
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    letter-spacing: 0;
}

.homepage__feedback__container > a:hover {
    color: #0052FF;
}

.homepage__feedback__row {
    margin-top: 48px;
}

.homepage__feedback__row > [class*="col"] {
    margin-bottom: 24px;
}

/* ============================================================
   SECTION 7 — Check type navigation grid
   ============================================================ */
#all-checks {
    background: #FFFFFF;
}

/* Only stretch rows that hold cards */
#all-checks .row:has(> [class*="col-"] > .homepage__features-col) {
    align-items: stretch;
}

#all-checks .row > [class*="col-"]:has(> .homepage__features-col) {
    display: flex;
    margin-bottom: 24px;
}

#all-checks .homepage__features-col {
    background: #FFFFFF;
    border: 1px solid #E2E8F0;
    border-radius: 12px;
    padding: 28px 26px;
    width: 100%;
    display: flex;
    flex-direction: column;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
    transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}

#all-checks .homepage__features-col:hover {
    transform: translateY(-4px);
    border-color: rgba(0, 82, 255, 0.25);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.08), 0 10px 10px -5px rgba(0, 0, 0, 0.03);
}

#all-checks .homepage__features-col__heading {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 12px;
}

#all-checks .homepage__features-col__icon-wrapper {
    width: 42px;
    height: 42px;
    background: linear-gradient(135deg, #0052FF, #4D7CFF);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 4px 14px rgba(0, 82, 255, 0.2);
}

#all-checks .homepage__features-col__icon-wrapper img {
    width: 20px;
    height: 20px;
    display: block;
}

#all-checks .homepage__features-col h4 {
    font-family: 'Rubik', sans-serif;
    font-size: 17px;
    font-weight: 700;
    margin: 0;
    line-height: 1.3;
    letter-spacing: -0.01em;
}

#all-checks .homepage__features-col h4 a {
    color: #0F172A;
    text-decoration: none;
}

#all-checks .homepage__features-col:hover h4 a {
    color: #0052FF;
}

#all-checks .homepage__features-col p {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    line-height: 1.55;
    margin: 0;
    color: #64748B;
}

/* ============================================================
   SECTION 8 — FAQ accordion
   ============================================================ */
.homepage__faqs {
    background: #FAFAFA;
    padding: 96px 0;
    border-top: 1px solid #E2E8F0;
}

.homepage__faqs__accordion {
    margin-top: 36px;
}

.homepage__faqs .card {
    background: #FFFFFF;
    border: 1px solid #E2E8F0;
    border-radius: 12px;
    margin-bottom: 12px;
    overflow: hidden;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
    transition: box-shadow .2s ease, border-color .2s ease;
}

.homepage__faqs .card:hover {
    border-color: rgba(0, 82, 255, 0.2);
    box-shadow: 0 10px 40px -10px rgba(0, 0, 0, 0.08);
}

.homepage__faqs .card h5 {
    font-family: 'Rubik', sans-serif;
    margin: 0;
    padding: 22px 26px;
    font-size: 16px;
    font-weight: 600;
    color: #0F172A;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 14px;
    letter-spacing: -0.005em;
    transition: color .15s ease;
}

.homepage__faqs .card h5 .material-icons {
    font-size: 14px;
    color: #64748B;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform .25s ease, color .15s ease;
    flex-shrink: 0;
}

.homepage__faqs .card h5:not(.collapsed) {
    color: #0052FF;
}

.homepage__faqs .card h5:not(.collapsed) .material-icons {
    transform: rotate(90deg);
    color: #0052FF;
}

.homepage__faqs .collapse,
.homepage__faqs .collapsing {
    padding: 0 26px;
}

.homepage__faqs .collapse.show p,
.homepage__faqs .collapsing p {
    padding: 0 0 22px;
    margin: 0;
    color: #64748B;
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    font-size: 15px;
}

.homepage__faqs .collapse.show p a,
.homepage__faqs .collapsing p a {
    color: #0052FF;
    text-decoration: underline;
}

/* ============================================================
   Articles
   ============================================================ */
.homepage__articles {
    background: #FFFFFF;
    padding: 96px 0;
    border-top: 1px solid #E2E8F0;
}

.homepage__articles > .container > .row.align-items-center .btn {
    background: transparent;
    border: 1px solid #E2E8F0;
    color: #0F172A;
    border-radius: 12px;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    padding: 12px 22px;
    font-size: 14px;
    transition: background-color .15s ease, color .15s ease, border-color .15s ease;
}

.homepage__articles > .container > .row.align-items-center .btn:hover {
    background: #0052FF;
    border-color: #0052FF;
    color: #FFFFFF;
}

.homepage__articles__row {
    margin-top: 48px;
}

.homepage__articles__article {
    margin-bottom: 36px;
}

.homepage__articles__thumbnail-wrapper {
    overflow: hidden;
    border-radius: 12px;
    margin-bottom: 18px;
    aspect-ratio: 16 / 10;
    background: #FAFAFA;
}

.homepage__articles__thumbnail-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .4s ease;
}

.homepage__articles__article:hover .homepage__articles__thumbnail-wrapper img {
    transform: scale(1.04);
}

.homepage__articles__article > span {
    color: #64748B;
    font-family: 'JetBrains Mono', monospace;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.homepage__articles__article h4 {
    font-family: 'Rubik', sans-serif;
    font-size: 19px;
    font-weight: 700;
    line-height: 1.35;
    margin: 8px 0 10px;
    letter-spacing: -0.01em;
}

.homepage__articles__article h4 a {
    color: #0F172A;
    text-decoration: none;
}

.homepage__articles__article:hover h4 a {
    color: #0052FF;
}

.homepage__articles__article p {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    color: #64748B;
    line-height: 1.55;
}

/* ============================================================
   HowTo numbered steps (free-car-checker page)
   ============================================================ */
#how-to-check {
    padding: 96px 0;
    background: #FAFAFA;
    border-top: 1px solid #E2E8F0;
}

#how-to-check .accent-heading,
#compare .accent-heading {
    display: inline-flex;
    align-items: center;
    padding: 6px 14px;
    border-radius: 999px;
    border: 1px solid rgba(0, 82, 255, 0.2);
    background-color: rgba(0, 82, 255, 0.06);
    color: #0052FF;
    font-family: 'JetBrains Mono', SFMono-Regular, Menlo, Monaco, Consolas, monospace;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    line-height: 1;
    margin: 0 0 18px;
}

#how-to-check h2,
#compare h2 {
    font-family: 'Rubik', sans-serif;
    color: #0F172A;
    font-size: 38px;
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -0.02em;
    margin: 0 0 18px;
}

#how-to-check > .container > .row > [class*="col-"] > p {
    font-family: 'Inter', sans-serif;
    color: #64748B;
    font-size: 17px;
    line-height: 1.6;
}

#how-to-check .hp-steps {
    counter-reset: hp-step;
    list-style: none;
    padding: 0;
    margin: 48px auto 0;
    max-width: 880px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

#how-to-check .hp-steps li {
    counter-increment: hp-step;
    background: #FFFFFF;
    border: 1px solid #E2E8F0;
    border-radius: 12px;
    padding: 28px 26px 28px 80px;
    position: relative;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
}

#how-to-check .hp-steps li::before {
    content: counter(hp-step);
    position: absolute;
    left: 22px;
    top: 22px;
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: linear-gradient(135deg, #0052FF, #4D7CFF);
    color: #FFFFFF;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'JetBrains Mono', monospace;
    font-weight: 700;
    font-size: 16px;
    box-shadow: 0 4px 14px rgba(0, 82, 255, 0.25);
}

#how-to-check .hp-steps li h3 {
    font-family: 'Rubik', sans-serif;
    color: #0F172A;
    font-size: 17px;
    font-weight: 700;
    line-height: 1.3;
    letter-spacing: -0.005em;
    margin: 0 0 8px;
}

#how-to-check .hp-steps li p {
    font-family: 'Inter', sans-serif;
    color: #64748B;
    font-size: 14px;
    line-height: 1.55;
    margin: 0;
}

@media (max-width: 767px) {
    #how-to-check .hp-steps {
        grid-template-columns: 1fr;
    }
}

/* ============================================================
   Comparison table — Free vs Full check (free-car-checker page)
   ============================================================ */
#compare {
    padding: 96px 0;
    background: #FFFFFF;
    border-top: 1px solid #E2E8F0;
}

#compare > .container > .row > [class*="col-"] > p {
    font-family: 'Inter', sans-serif;
    color: #64748B;
    font-size: 17px;
    line-height: 1.6;
}

#compare .hp-compare-wrap {
    margin-top: 40px;
    overflow-x: auto;
    border: 1px solid #E2E8F0;
    border-radius: 16px;
    box-shadow: 0 10px 40px -10px rgba(0, 0, 0, 0.08);
    background: #FFFFFF;
}

#compare .hp-compare {
    width: 100%;
    border-collapse: collapse;
    font-family: 'Inter', sans-serif;
    min-width: 560px;
}

#compare .hp-compare thead th {
    background: #FAFAFA;
    color: #0F172A;
    font-family: 'Rubik', sans-serif;
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    padding: 18px 20px;
    text-align: left;
    border-bottom: 1px solid #E2E8F0;
}

#compare .hp-compare thead th.hp-compare__col {
    text-align: center;
    width: 22%;
}

#compare .hp-compare tbody td {
    padding: 14px 20px;
    border-bottom: 1px solid #F1F5F9;
    font-size: 15px;
    color: #0F172A;
    line-height: 1.4;
}

#compare .hp-compare tbody tr:last-child td {
    border-bottom: 0;
}

#compare .hp-compare tbody td.hp-compare__cell {
    text-align: center;
    width: 22%;
    font-size: 18px;
}

#compare .hp-compare tbody td.hp-compare__cell--yes {
    color: #10B981;
}

#compare .hp-compare tbody td.hp-compare__cell--no {
    color: #CBD5E1;
}

#compare .hp-compare__cta {
    margin-top: 32px;
    text-align: center;
}

#compare .hp-compare__price {
    font-family: 'Inter', sans-serif;
    color: #0F172A;
    font-size: 16px;
    font-weight: 500;
    margin: 0 0 16px;
    line-height: 1.4;
}

#compare .hp-compare__price strong {
    font-family: 'Rubik', sans-serif;
    color: #0052FF;
    font-weight: 700;
}

#compare .hp-compare__cta .btn {
    background: linear-gradient(135deg, #0052FF, #4D7CFF);
    border: 0;
    color: #FFFFFF;
    border-radius: 12px;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    padding: 14px 26px;
    font-size: 15px;
    box-shadow: 0 4px 14px rgba(0, 82, 255, 0.25);
    transition: transform .2s ease, box-shadow .2s ease;
}

#compare .hp-compare__cta .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 82, 255, 0.35);
    color: #FFFFFF;
}

@media (max-width: 767px) {
    #how-to-check,
    #compare {
        padding: 72px 0;
    }

    #how-to-check h2,
    #compare h2 {
        font-size: 30px;
    }
}

/* ============================================================
   Pricing claim — bottom-of-homepage competitive positioning
   ============================================================ */
#pricing-claim {
    padding: 88px 0 96px;
    background: #FAFAFA;
    border-top: 1px solid #E2E8F0;
}

#pricing-claim .hp-badge {
    margin-bottom: 18px;
}

#pricing-claim h2 {
    font-family: 'Rubik', sans-serif;
    color: #0F172A;
    font-size: 36px;
    font-weight: 700;
    line-height: 1.15;
    letter-spacing: -0.02em;
    margin: 0 0 22px;
}

#pricing-claim .hp-pricing-claim__price {
    background: linear-gradient(135deg, #0052FF, #4D7CFF);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 700;
    white-space: nowrap;
}

#pricing-claim .hp-pricing-claim__lead {
    font-family: 'Inter', sans-serif;
    color: #0F172A;
    font-size: 18px;
    line-height: 1.55;
    font-weight: 500;
    margin: 0 0 14px;
}

#pricing-claim p {
    font-family: 'Inter', sans-serif;
    color: #64748B;
    font-size: 16px;
    line-height: 1.65;
    margin: 0 0 20px;
}

#pricing-claim .hp-pricing-claim__cta {
    background: linear-gradient(135deg, #0052FF, #4D7CFF);
    border: 0;
    color: #FFFFFF;
    border-radius: 12px;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    padding: 14px 28px;
    font-size: 15px;
    box-shadow: 0 4px 14px rgba(0, 82, 255, 0.25);
    transition: transform .2s ease, box-shadow .2s ease;
    margin: 8px 0 32px;
}

#pricing-claim .hp-pricing-claim__cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 82, 255, 0.35);
    color: #FFFFFF;
    text-decoration: none;
}

#pricing-claim .hp-pricing-claim__footnote {
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    line-height: 1.55;
    color: #94A3B8;
    margin: 0;
    padding-top: 24px;
    border-top: 1px solid #E2E8F0;
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
}

#pricing-claim .hp-pricing-claim__footnote strong {
    color: #5A6478;
    font-weight: 600;
}

#pricing-claim .hp-pricing-claim__footnote a {
    color: #5A6478;
    text-decoration: underline;
    text-decoration-color: #CBD5E1;
    text-decoration-thickness: 1px;
    text-underline-offset: 2px;
    transition: color .15s ease, text-decoration-color .15s ease;
}

#pricing-claim .hp-pricing-claim__footnote a:hover {
    color: #0052FF;
    text-decoration-color: #0052FF;
}

@media (max-width: 767px) {
    #pricing-claim {
        padding: 64px 0 72px;
    }
    #pricing-claim h2 {
        font-size: 28px;
    }
    #pricing-claim .hp-pricing-claim__lead {
        font-size: 16px;
    }
}

/* ============================================================
   Responsive
   ============================================================ */
@media (max-width: 991px) {
    .lp-v2.lp-v2__hero {
        padding: 130px 0 88px;
    }

    .lp-v2.lp-v2__hero h1 {
        font-size: 34px;
    }

    .lp-v2.lp-v2__hero h6 {
        font-size: 17px;
    }

    #whats-included,
    #all-checks,
    .homepage__feedback,
    .homepage__faqs,
    .homepage__articles {
        padding: 72px 0;
    }

    #mot-history,
    #car-tax,
    #car-history,
    #vehicle-score {
        padding: 64px 0;
    }

    #whats-included h2,
    #all-checks h2,
    .homepage__feedback h2,
    .homepage__faqs h2,
    .homepage__articles h2 {
        font-size: 34px;
    }

    #mot-history h2,
    #car-tax h2,
    #car-history h2,
    #vehicle-score h2 {
        font-size: 30px;
    }
}

@media (max-width: 575px) {
    .lp-v2.lp-v2__hero {
        padding: 110px 0 72px;
    }

    .lp-v2.lp-v2__hero h1 {
        font-size: 28px;
    }

    .lp-v2.lp-v2__hero h6 {
        font-size: 15px;
    }

    .lp-v2.lp-v2__hero .vrm-search__input,
    .lp-v2.lp-v2__hero .vrm-search .input-group-text.uk {
        height: 60px;
        font-size: 26px;
    }

    .lp-v2.lp-v2__hero .vrm-search__input {
        padding-right: 52px;
    }

    .lp-v2.lp-v2__hero .vrm-search .input-group-text.uk {
        font-size: 14px;
    }

    .lp-v2.lp-v2__hero .vrm-search__anpr {
        width: 38px;
        height: 38px;
        right: 8px;
    }

    .lp-v2.lp-v2__hero .vrm-search__anpr .material-icons {
        font-size: 20px;
    }

    #whats-included .homepage__features-col {
        padding: 28px 24px;
    }

    #all-checks .homepage__features-col {
        padding: 24px 22px;
    }

    .homepage__faqs .card h5 {
        padding: 18px 20px;
        font-size: 15px;
    }
}

/* ============================================================
   Landing-page modular blocks (lp-*)
   Reusable across any landing page that loads homepage-v2.css.
   See templates/common/landing-blocks.twig for the macro helpers.
   ============================================================ */

/* Base styling for spotlight section containers. The existing ID-specific
   rules on the homepage (#mot-history, #car-tax, #car-history, #vehicle-score)
   override these via higher specificity, so this only kicks in for new
   sections that don't have their own ID rules. */
.homepage__spotlight {
    padding: 80px 0;
    background: #FAFAFA;
    border-top: 1px solid #E2E8F0;
}

/* Modifier for content-heavy spotlight sections that need more breathing room */
.homepage__spotlight.lp-spotlight--padded {
    padding: 96px 0;
}

/* Section intro — accent-heading pill + H2 + lede paragraph.
   Self-contained typography so every section using lp.intro() macro
   looks the same regardless of the parent container's ID. */
.lp-intro {
    margin-bottom: 40px;
}
.lp-intro .accent-heading {
    display: inline-flex;
    align-items: center;
    padding: 6px 14px;
    border-radius: 999px;
    border: 1px solid rgba(0, 82, 255, 0.2);
    background-color: rgba(0, 82, 255, 0.06);
    color: #0052FF;
    font-family: 'JetBrains Mono', SFMono-Regular, Menlo, Monaco, Consolas, monospace;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    line-height: 1;
    margin: 0 0 18px;
}
.lp-intro h2 {
    font-family: 'Rubik', sans-serif;
    color: #0F172A;
    font-size: 38px;
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -0.02em;
    margin: 0 0 18px;
}
.lp-intro p {
    font-family: 'Inter', sans-serif;
    color: #64748B;
    font-size: 17px;
    line-height: 1.6;
    max-width: 720px;
    margin: 0 auto;
}

/* Stack of full-width cards inside a section */
.lp-stack > * + * { margin-top: 16px; }

/* Severity-coded card (danger / warning / caution / info) */
.lp-severity {
    background: #fff;
    border: 1px solid #E2E8F0;
    border-left: 4px solid #94A3B8;
    border-radius: 0 12px 12px 0;
    padding: 22px 26px;
    box-shadow: 0 1px 2px rgba(15, 23, 42, .04);
}
.lp-severity--danger  { border-left-color: #DC2626; background: linear-gradient(90deg, #FEF2F2 0%, #fff 30%); }
.lp-severity--warning { border-left-color: #EA580C; background: linear-gradient(90deg, #FFF7ED 0%, #fff 30%); }
.lp-severity--caution { border-left-color: #CA8A04; background: linear-gradient(90deg, #FEFCE8 0%, #fff 30%); }
.lp-severity--info    { border-left-color: #2563EB; background: linear-gradient(90deg, #EFF6FF 0%, #fff 30%); }
.lp-severity h3 {
    margin: 0 0 10px;
    font-family: 'Rubik', sans-serif;
    font-size: 18px;
    font-weight: 700;
    letter-spacing: -0.005em;
}
.lp-severity--danger  h3 { color: #DC2626; }
.lp-severity--warning h3 { color: #EA580C; }
.lp-severity--caution h3 { color: #CA8A04; }
.lp-severity--info    h3 { color: #2563EB; }
.lp-severity p {
    margin: 0;
    color: #334155;
    font-size: 14px;
    line-height: 1.7;
}

/* Reason: divider-separated H3 + paragraph blocks for "why" sections */
.lp-reason {
    padding: 28px 0;
    border-top: 1px solid #E2E8F0;
}
.lp-reason:first-child { border-top: none; padding-top: 0; }
.lp-reason:last-child  { padding-bottom: 0; }
.lp-reason h3 {
    font-family: 'Rubik', sans-serif;
    font-size: 18px;
    font-weight: 700;
    margin: 0 0 8px;
    color: #0F172A;
    letter-spacing: -0.005em;
}
.lp-reason p {
    margin: 0;
    color: #334155;
    font-size: 14px;
    line-height: 1.75;
}

/* Insight grid + insight card: tag · big metric · title · description */
.lp-insights {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 22px;
}
.lp-insight {
    background: #fff;
    border: 1px solid #E2E8F0;
    border-radius: 14px;
    padding: 26px;
    position: relative;
    transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}
.lp-insight:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 28px rgba(15, 23, 42, .08);
    border-color: #CBD5E1;
}
.lp-insight__tag {
    display: inline-block;
    background: linear-gradient(135deg, #FFE066 0%, #FFB020 100%);
    color: #422006;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .08em;
    padding: 4px 10px;
    border-radius: 4px;
    margin-bottom: 16px;
}
.lp-insight__metric {
    font-family: 'Rubik', sans-serif;
    font-size: 36px;
    font-weight: 700;
    color: #0052FF;
    line-height: 1;
    letter-spacing: -0.02em;
    margin-bottom: 4px;
}
.lp-insight__metric small {
    font-size: 15px;
    color: #94A3B8;
    font-weight: 500;
    letter-spacing: 0;
}
.lp-insight__title {
    font-family: 'Rubik', sans-serif;
    font-size: 16px;
    font-weight: 700;
    margin: 14px 0 8px;
    color: #0F172A;
    letter-spacing: -0.005em;
}
.lp-insight__desc {
    font-size: 13px;
    color: #64748B;
    line-height: 1.65;
    margin: 0;
}
.lp-insights__footnote {
    text-align: center;
    font-size: 12px;
    color: #94A3B8;
    margin: 32px auto 0;
    max-width: 720px;
}

@media (max-width: 575px) {
    .homepage__spotlight { padding: 56px 0; }
    .homepage__spotlight.lp-spotlight--padded { padding: 64px 0; }
    .lp-intro { margin-bottom: 28px; }
    .lp-intro h2 { font-size: 30px; }
    .lp-severity { padding: 18px 20px; }
    .lp-reason   { padding: 22px 0; }
    .lp-insight  { padding: 22px; }
    .lp-insight__metric { font-size: 32px; }
}
