/* ============================================================
   HOME PAGE STYLES v1.0 — page-omicron-home.php
   Requires: omicron-shared.css
   ============================================================ */

/* ─── HOME HERO ──────────────────────────────────────────── */
.hero-wrap {
    position: relative;
    overflow: hidden;
    min-height: 600px;
    max-height: 600px;
    display: flex;
    align-items: center;
    background: linear-gradient(120deg, var(--off-black) 0%, var(--off-black) 45%, var(--grey) 45%, var(--grey) 50%, var(--yellow) 50%, var(--yellow) 70%, var(--grey) 70%, var(--grey) 75%, var(--off-black) 75%, var(--off-black) 100%);
    color: var(--text-1);
}

.hero-wrap::before,
.hero-wrap::after {
    display: none;
}

.hero-inner {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 40px;
    padding: 112px 0 104px;
}

.hero-copy {
    /* The primary hero text must be visible in the first paint for LCP. */
    opacity: 1;
}

.kicker {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--yellow);
    color: #000;
    font-weight: 900;
    font-size: 11px;
    letter-spacing: .13em;
    text-transform: uppercase;
    padding: 7px 16px;
    border-radius: 6px;
    margin-bottom: 24px;
}

.kicker i {
    font-size: 10px;
}

.hero-h1 {
    font-size: clamp(40px, 5.6vw, 74px);
    font-weight: 900;
    line-height: 1.03;
    letter-spacing: -.04em;
    margin-bottom: 20px;
}

.hero-h1 .hl {
    color: var(--yellow);
}

.hero-sub {
    font-size: clamp(15px, 1.3vw, 17px);
    line-height: 1.72;
    color: var(--text-2);
    max-width: 520px;
    margin-bottom: 34px;
}

.cta-row {
    display: flex;
    gap: 13px;
    flex-wrap: wrap;
    margin-bottom: 30px;
}

.trust-row {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

.trust-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    border-radius: 999px;
    background: rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.12);
    font-size: 13px;
    font-weight: 700;
    color: var(--text-1);
    line-height: 1;
    white-space: nowrap;
}

.trust-badge i {
    color: var(--text-1);
    font-size: 11px;
}

/* Car visual */
.hero-vis {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 380px;
    padding-bottom: 8px;
}

.hero-glow {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    height: 260px;
    background: radial-gradient(ellipse at 50% 100%, rgba(245, 196, 0, 0.15) 0%, transparent 68%);
    pointer-events: none;
}

.hero-car {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 640px;
    filter: drop-shadow(0 24px 64px rgba(0, 0, 0, 0.8));
    /* Keep the high-priority mobile hero image eligible as an LCP candidate. */
    opacity: 1;
    transform: none;
}

.hero-car-ph {
    position: relative;
    z-index: 2;
    display: none;
    flex-direction: column;
    align-items: center;
    animation: float 5s ease-in-out infinite;
}

.hero-car-ph i {
    font-size: clamp(140px, 22vw, 220px);
    color: rgba(245, 196, 0, 0.2);
    filter: drop-shadow(0 20px 48px rgba(0, 0, 0, .7));
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0)
    }

    50% {
        transform: translateY(-12px)
    }
}

/* ─── SERVICES SECTION (REDESIGNED) ──────────────────────── */
.sec-services {
    padding: 80px 0 90px;
    background-color: #DDE2E7;
    border-top: 1px solid rgba(18, 24, 32, 0.06);
    border-bottom: 1px solid rgba(18, 24, 32, 0.06);
    color: #1f242d;
}

/* Services Groups & Headers */
.services-group {
    margin-bottom: 60px;
}

.services-group:last-child {
    margin-bottom: 0;
}

.services-group-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 35px;
}

.services-group-header h2 {
    font-family: 'Saira Semi Condensed', 'Manrope', sans-serif;
    font-size: clamp(20px, 2.5vw, 32px);
    font-weight: 800;
    letter-spacing: 0.02em;
    color: #0d1017;
    margin: 0;
    white-space: nowrap;
    text-transform: uppercase;
}

.services-group-header .header-line {
    flex: 1;
    height: 2px;
    background: rgba(0, 0, 0, 0.13);
    border-radius: 2px;
}

/* Rows (Split Layouts) */
.services-row {
    display: flex;
    flex-direction: column;
    background: #ffffff;
    border-radius: 16px;
    overflow: hidden;
    margin-bottom: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
    border: 1px solid rgba(0, 0, 0, 0.06);
}

.services-row:last-child {
    margin-bottom: 0;
}

.service-item-card {
    padding: 30px 24px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 280px;
}

.service-item-card.white-card {
    background: #ffffff;
    color: #1f242d;
}

.service-item-card.dark-card {
    background: #0d1017;
    color: #ffffff;
    border: none;
}

.service-item-image {
    position: relative;
    min-height: 220px;
    overflow: hidden;
}

.service-item-image img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.services-row:hover .service-item-image img {
    transform: scale(1.05);
}

/* Card inner details */
.card-inner {
    display: flex;
    flex-direction: column;
    height: 100%;
    justify-content: space-between;
    gap: 20px;
}

.card-header {
    display: flex;
    align-items: center;
    gap: 16px;
}

.service-circle-icon {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    flex-shrink: 0;
}

.service-circle-icon.yellow-bg {
    background: var(--yellow);
    color: #000000;
}

.service-circle-icon.outline-y {
    background: transparent;
    color: var(--yellow);
    border: 2px solid var(--yellow);
}

.card-header h3 {
    font-family: 'Saira Semi Condensed', 'Manrope', sans-serif;
    font-size: clamp(18px, 2.2vw, 22px);
    font-weight: 800;
    margin: 0;
    letter-spacing: 0.01em;
}

.sec-services .white-card .card-header h3 {
    color: #1a1f28 !important;
}

.sec-services .dark-card .card-header h3,
.sec-services .image-bg-card .card-header h3 {
    color: #f5f7fb !important;
    text-shadow: 0 1px 8px rgba(0, 0, 0, 0.6);
}

html[data-theme="grey"] body .sec-services .dark-card .card-header h3,
html[data-theme="grey"] body .sec-services .image-bg-card .card-header h3 {
    color: #f5f7fb !important;
}

.service-desc {
    font-size: 14px;
    line-height: 1.6;
    margin: 0;
}

.white-card .service-desc {
    color: rgba(20, 26, 36, 0.88);
}

.dark-card .service-desc {
    color: rgba(255, 255, 255, 0.88);
}

.dark-card .service-desc strong {
    color: var(--yellow);
    font-weight: 800;
}

.image-bg-card .service-desc strong {
    color: var(--yellow);
    font-weight: 800;
}

/* Actions & Buttons */
.service-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    align-items: center;
}

.btn-service {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 20px;
    font-family: 'Manrope', sans-serif;
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    border-radius: 6px;
    transition: all 0.25s ease;
    cursor: pointer;
    min-width: 120px;
}

.btn-solid-y {
    background: var(--yellow);
    color: #000000;
    border: 1.5px solid var(--yellow);
}

.btn-solid-y:hover {
    background: #000000;
    color: var(--yellow);
    border-color: #000000;
}

.white-card .btn-solid-y:hover {
    background: #1a1f28;
    color: var(--yellow);
    border-color: #1a1f28;
}

.btn-outline-y {
    background: transparent;
    color: #000000;
    border: 1.5px solid #000000;
}

.dark-card .btn-outline-y {
    color: var(--yellow);
    border-color: var(--yellow);
}

.btn-outline-y:hover {
    background: #000000;
    color: var(--yellow);
    border-color: #000000;
}

.dark-card .btn-outline-y:hover {
    background: var(--yellow);
    color: #000000;
    border-color: var(--yellow);
}

/* Grid layout for Alignment & Tires */
.services-grid-two {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
}

.service-grid-card {
    border-radius: 16px;
    overflow: hidden;
    padding: 35px 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 300px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
}

.service-grid-card.image-bg-card {
    background-size: cover;
    background-position: center;
    border: none;
    position: relative;
    z-index: 1;
    color: #ffffff;
}

.service-grid-card.dark-card {
    background: #0d1017;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.image-bg-card .service-desc {
    color: rgba(255, 255, 255, 0.94);
    text-shadow: 0 1px 6px rgba(0, 0, 0, 0.5);
}

.image-bg-card .btn-solid-y:hover {
    background: #ffffff;
    color: #000000;
    border-color: #ffffff;
}

/* Tablet styles (768px+) */
@media (min-width: 768px) {
    .sec-services {
        padding: 100px 0;
    }

    .services-row {
        flex-direction: row;
        align-items: stretch;
    }

    .services-row:nth-child(even) {
        flex-direction: row;
    }

    .service-item-card {
        width: 50%;
        padding: 40px;
    }

    .service-item-image {
        width: 50%;
        min-height: auto;
    }

    .services-grid-two {
        grid-template-columns: 1fr 1fr;
        gap: 24px;
    }
    
    .service-grid-card {
        padding: 40px;
    }
}

/* Desktop styles (1024px+) */
@media (min-width: 1024px) {
    .services-group {
        margin-bottom: 70px;
    }

    .services-row {
        margin-bottom: 40px;
    }

    .service-item-card {
        padding: 50px;
    }

    .services-grid-two {
        gap: 30px;
    }
}

/* Dark/Grey Mode Theme Swapper overrides */
html[data-theme="grey"] .sec-services {
    background-color: #eef2f5;
    border-top-color: rgba(0, 0, 0, 0.06);
    border-bottom-color: rgba(0, 0, 0, 0.06);
}

html[data-theme="grey"] .services-group-header h2 {
    color: #0f1419;
}

html[data-theme="grey"] .services-group-header .header-line {
    background: rgba(0, 0, 0, 0.1);
}

/* ─── FREE CHECK SECTION ─────────────────────────────────── */
.sec-check {
    padding: 78px 0;
    background-color: var(--bg-alt2);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.check-card {
    border-radius: var(--r-lg);
    overflow: hidden;
    display: grid;
    grid-template-columns: 9fr 11fr;
    border: 1px solid var(--border-strong);
    background: var(--surface-2);
}

.check-left {
    padding: 58px 54px;
    display: flex;
    flex-direction: column;
    gap: 18px;
    position: relative;
}

.check-left::before,
.check-left::after {
    display: none;
}

.check-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    width: fit-content;
    background: var(--yellow);
    color: #000;
    font-weight: 900;
    font-size: 10px;
    letter-spacing: .14em;
    text-transform: uppercase;
    padding: 6px 14px;
    border-radius: 999px;
}

.check-left h2 {
    font-size: clamp(30px, 3.35vw, 48px);
    font-weight: 900;
    line-height: 1.04;
    letter-spacing: -.03em;
    max-width: 560px;
}

.check-left h2 em {
    font-style: normal;
    color: var(--yellow);
}

.check-left p {
    font-size: 16px;
    line-height: 1.72;
    color: var(--text-2);
    max-width: 500px;
}

.check-left .check-copy {
    font-size: 17px;
    line-height: 1.72;
}

.check-left .check-copy + .check-copy {
    margin-top: -8px;
}

.check-left .check-copy strong {
    color: var(--text);
    font-weight: 900;
}

.check-cta {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.check-note {
    font-size: 12px;
    color: var(--text-3);
    display: flex;
    align-items: center;
    gap: 7px;
    line-height: 1.45;
    max-width: 460px;
}

.check-note i {
    color: var(--yellow);
    font-size: 10px;
}

.check-right {
    position: relative;
    background: transparent;
    padding: 48px 52px 48px 72px;
    display: flex;
    align-items: center;
}

.check-right::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--yellow);
    clip-path: polygon(8% 0%, 100% 0%, 100% 100%, 0% 100%);
}

.check-right::after {
    display: none;
}

.check-list-wrap {
    position: relative;
    z-index: 2;
    width: 100%;
}

.check-list-title {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 11px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: .14em;
    color: var(--yellow);
    background: #050505;
    border: 1px solid rgba(0, 0, 0, 0.72);
    border-radius: 999px;
    padding: 8px 16px;
    margin-bottom: 18px;
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.16);
}

.check-list-title::before {
    content: '';
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--yellow);
    box-shadow: 0 0 0 4px rgba(227, 217, 15, 0.22);
}

.checklist {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px 16px;
}

.checklist li {
    display: grid;
    grid-template-columns: 68px minmax(0, 1fr);
    align-items: center;
    gap: 14px;
    min-height: 84px;
    font-size: 13px;
    font-weight: 900;
    color: #10151d;
    background: rgba(255, 255, 255, 0.76);
    border: 1px solid rgba(0, 0, 0, 0.14);
    padding: 8px 16px 8px 10px;
    border-radius: 16px;
    line-height: 1.18;
    box-shadow: 0 10px 20px rgba(26, 28, 0, 0.1);
    transition: transform .2s ease, background .2s ease, box-shadow .2s ease;
}

.checklist li:hover {
    background: rgba(255, 255, 255, 0.9);
    box-shadow: 0 14px 26px rgba(26, 28, 0, 0.16);
    transform: translateY(-2px);
}

.check-icon {
    width: 68px;
    height: 68px;
    border-radius: 16px;
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.12);
    box-shadow: inset 0 -4px 10px rgba(227, 217, 15, 0.18), 0 5px 12px rgba(0, 0, 0, 0.1);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.check-icon img {
    width: 60px;
    height: 60px;
    display: block;
    object-fit: contain;
}

.checklist li i {
    display: none;
}

/* ─── ESHOP BANNER ───────────────────────────────────────── */
.sec-eshop {
    padding: 78px 0;
    background-color: var(--bg-alt3);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.eshop-card {
    border-radius: var(--r);
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: linear-gradient(90deg, rgba(0, 0, 0, 0.98) 0%, rgba(0, 0, 0, 0.92) 42%, rgba(0, 0, 0, 0.64) 70%, rgba(0, 0, 0, 0.28) 100%), var(--eshop-card-bg, none);
    background-size: cover;
    background-position: center;
    position: relative;
    overflow: hidden;
    min-height: 416px;
    display: flex;
    align-items: stretch;
    box-shadow: 0 28px 60px rgba(0, 0, 0, 0.18);
}

.eshop-card::before {
    content: '';
    position: absolute;
    inset: 0 auto 0 0;
    width: 58%;
    background: linear-gradient(90deg, rgba(0, 0, 0, 0.72), rgba(0, 0, 0, 0.28) 78%, transparent);
    pointer-events: none;
}

.eshop-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 22% 30%, rgba(227, 217, 15, 0.13), transparent 28%);
    pointer-events: none;
}

.eshop-copy {
    position: relative;
    z-index: 2;
    padding: 56px 60px;
    max-width: 600px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.eshop-label {
    display: inline-flex;
    align-items: center;
    width: fit-content;
    background: var(--yellow);
    color: #000;
    font-weight: 900;
    font-size: 10px;
    letter-spacing: .16em;
    text-transform: uppercase;
    padding: 5px 13px;
    border-radius: 999px;
    box-shadow: 0 10px 22px rgba(227, 217, 15, 0.24);
}

.eshop-copy h2 {
    font-size: clamp(28px, 3.4vw, 50px);
    font-weight: 900;
    line-height: 1.04;
    letter-spacing: -.035em;
    color: #ffffff !important;
    text-shadow: 0 3px 18px rgba(0, 0, 0, 0.5);
}

.eshop-copy h2 .eshop-title-main {
    color: #ffffff !important;
}

.eshop-copy h2 .yl {
    color: var(--yellow) !important;
}

.eshop-copy p {
    font-size: 16px;
    line-height: 1.68;
    color: rgba(248, 250, 252, 0.82);
    max-width: 440px;
    text-shadow: 0 2px 14px rgba(0, 0, 0, 0.48);
}

.eshop-copy p strong {
    color: #ffffff;
    font-weight: 900;
}

html[data-theme="grey"] body .sec-eshop .eshop-copy h2 {
    color: #ffffff !important;
}

html[data-theme="grey"] body .sec-eshop .eshop-copy h2 .eshop-title-main {
    color: #ffffff !important;
}

html[data-theme="grey"] body .sec-eshop .eshop-copy p {
    color: rgba(248, 250, 252, 0.84);
}

html[data-theme="grey"] body .sec-eshop .eshop-copy p strong {
    color: #ffffff;
}

.eshop-cta {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 4px;
}

.eshop-deco {
    position: absolute;
    right: 60px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    pointer-events: none;
}

.eshop-deco-cell {
    width: 88px;
    height: 88px;
    border-radius: 14px;
    background: rgba(248, 250, 252, 0.94);
    border: 1px solid rgba(255, 255, 255, 0.62);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    box-shadow: 0 16px 34px rgba(0, 0, 0, 0.26);
}

.eshop-deco-cell i {
    font-size: 26px;
    color: rgba(245, 196, 0, 0.99);
}

.eshop-deco-cell span {
    font-size: 9px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .08em;
    color: #5f6672;
}

/* ─── PICK YOUR SIGN SECTION ─────────────────────────────── */
/* Featured products */
.sec-featured-products {
    padding: 78px 0;
    background-color: var(--bg-alt2);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    overflow: hidden;
}

.featured-products-head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 28px;
}

.featured-products-kicker {
    display: inline-flex;
    align-items: center;
    width: fit-content;
    margin-bottom: 12px;
    padding: 7px 14px;
    border-radius: 999px;
    background: #050505;
    color: var(--yellow);
    font-size: 10px;
    font-weight: 900;
    letter-spacing: .16em;
    text-transform: uppercase;
}

.featured-products-head h2 {
    font-size: clamp(26px, 3vw, 44px);
    font-weight: 900;
    line-height: 1.06;
    letter-spacing: -.03em;
    margin: 0 0 10px;
}

.featured-products-head p {
    max-width: 650px;
    color: var(--text-2);
    font-size: 15px;
    line-height: 1.7;
    margin: 0;
}

.featured-products-actions {
    display: flex;
    align-items: center;
    gap: 10px;
    flex: 0 0 auto;
}

.featured-products-nav {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid var(--border-strong);
    background: var(--surface-2);
    color: var(--text-1);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: transform .2s ease, background .2s ease, color .2s ease, border-color .2s ease;
}

.featured-products-nav:hover {
    transform: translateY(-2px);
    background: var(--yellow);
    border-color: var(--yellow);
    color: #050505;
}

.featured-products-track {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: minmax(236px, 272px);
    gap: 18px;
    overflow-x: auto;
    overflow-y: hidden;
    padding: 4px 2px 18px;
    scroll-snap-type: x mandatory;
    scroll-padding-left: 2px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
    scrollbar-color: var(--yellow) transparent;
}

.featured-products-track::-webkit-scrollbar {
    height: 8px;
}

.featured-products-track::-webkit-scrollbar-track {
    background: transparent;
}

.featured-products-track::-webkit-scrollbar-thumb {
    background: var(--yellow);
    border-radius: 999px;
}

.featured-product-card {
    position: relative;
    display: flex;
    flex-direction: column;
    min-height: 360px;
    padding: 14px;
    border-radius: 18px;
    background: var(--surface-2);
    border: 1px solid var(--border);
    color: var(--text-1);
    text-decoration: none;
    scroll-snap-align: start;
    box-shadow: 0 18px 38px rgba(0, 0, 0, 0.1);
    transition: transform .22s ease, border-color .22s ease, box-shadow .22s ease;
}

.featured-product-card:hover {
    transform: translateY(-5px);
    border-color: rgba(227, 217, 15, 0.78);
    box-shadow: 0 24px 48px rgba(0, 0, 0, 0.16);
}

.featured-product-badge {
    position: absolute;
    top: 14px;
    left: 14px;
    z-index: 2;
    padding: 6px 10px;
    border-radius: 999px;
    background: var(--yellow);
    color: #050505;
    font-size: 10px;
    font-weight: 900;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.featured-product-media {
    display: flex;
    align-items: center;
    justify-content: center;
    aspect-ratio: 1 / .86;
    border-radius: 14px;
    background: linear-gradient(145deg, #ffffff, #eef1f5);
    border: 1px solid rgba(0, 0, 0, 0.08);
    margin-bottom: 16px;
    overflow: hidden;
}

.featured-product-media img {
    width: 88%;
    height: 88%;
    object-fit: contain;
    display: block;
    transition: transform .24s ease;
}

.featured-product-card:hover .featured-product-media img {
    transform: scale(1.05);
}

.featured-product-meta {
    display: block;
    margin-bottom: 8px;
    color: var(--yellow);
    font-size: 11px;
    font-weight: 900;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.featured-product-title {
    display: -webkit-box;
    color: var(--text-1);
    font-size: 16px;
    font-weight: 900;
    line-height: 1.22;
    min-height: 59px;
    max-height: 59px;
    overflow: hidden;
    overflow-wrap: anywhere;
    word-break: break-word;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
}

.featured-product-price {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    width: fit-content;
    margin-top: 10px;
    padding: 7px 10px;
    border-radius: 8px;
    background: #050505;
    color: var(--yellow);
    font-size: 15px;
    font-weight: 900;
    line-height: 1.25;
    letter-spacing: .01em;
}

.featured-product-price del {
    color: rgba(227, 217, 15, 0.7);
    font-size: 12px;
    font-weight: 700;
    opacity: .72;
}

.featured-product-price ins {
    color: var(--yellow);
    text-decoration: none;
}

.featured-product-link {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    margin-top: auto;
    padding-top: 18px;
    color: var(--text-1);
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: .08em;
}

.featured-product-link i {
    color: var(--yellow);
    transition: transform .2s ease;
}

.featured-product-card:hover .featured-product-link i {
    transform: translateX(3px);
}

html[data-theme="grey"] .featured-product-card {
    background: rgba(255, 255, 255, 0.94);
    border-color: rgba(15, 23, 42, 0.1);
    box-shadow: 0 18px 38px rgba(15, 23, 42, 0.11);
}

html[data-theme="grey"] .featured-product-title,
html[data-theme="grey"] .featured-product-link {
    color: #111827;
}

.sec-signs {
    padding: 90px 0 78px;
    background-color: var(--bg-alt);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.signs-wrap {
    max-width: 900px;
    margin: 0 auto;
}

.signs-intro {
    text-align: center;
    margin-bottom: 40px;
}

.sign-icons-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 12px;
    margin: 0 auto 40px;
}

.sign-icon-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    cursor: pointer;
}

.sign-icon-img {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    border: 2px solid var(--border-strong);
    background: rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: border-color .2s, transform .2s;
    overflow: hidden;
}

.sign-icon-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.sign-icon-item:hover .sign-icon-img,
.sign-icon-item.active .sign-icon-img {
    border-color: var(--yellow);
    transform: translateY(-3px);
}

.sign-icon-label {
    font-size: 11px;
    font-weight: 700;
    color: var(--text-3);
    text-align: center;
}

.sign-icon-item.active .sign-icon-label {
    color: var(--yellow);
}

.signs-cta {
    display: flex;
    justify-content: center;
}

/* ─── RESPONSIVE HOME ────────────────────────────────────── */
@media (max-width:1120px) {
    .svc-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .eshop-deco {
        display: none;
    }
}

@media (max-width:1024px) {
    .hero-wrap {
        background: linear-gradient(160deg, var(--off-black) 40%, var(--grey) 50%, var(--yellow) 50.1%);
        min-height: calc(100svh - 96px);
        max-height: none;
    }

    .hero-inner {
        grid-template-columns: 1fr;
        padding: 64px 0 56px;
        text-align: center;
    }

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

    .cta-row {
        justify-content: center;
    }

    .trust-row {
        justify-content: center;
    }

    .hero-sub {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-vis {
        min-height: 260px;
        justify-content: center;
    }

    .hero-car {
        max-width: 460px;
        width: 100%;
    }

    .check-card {
        grid-template-columns: 1fr;
    }

    .check-right {
        display: none;
    }

    .check-left {
        padding: 44px 36px;
    }

    .eshop-copy {
        padding: 40px 32px;
    }

    .featured-products-head {
        align-items: flex-start;
        flex-direction: column;
    }
}

@media (max-width:768px) {
    .svc-grid {
        grid-template-columns: 1fr 1fr;
    }

    .eshop-copy {
        padding: 40px 32px;
    }

    .featured-products-track {
        grid-auto-columns: minmax(220px, 42vw);
    }

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

@media (max-width:520px) {
    .svc-grid {
        grid-template-columns: 1fr;
    }

    .cta-row .btn,
    .check-cta .btn,
    .eshop-cta .btn {
        width: 100%;
        justify-content: center;
    }

    .cta-row,
    .check-cta,
    .eshop-cta {
        flex-direction: column;
    }

    .featured-products-actions {
        width: 100%;
        justify-content: flex-end;
    }

    .featured-products-track {
        grid-auto-columns: minmax(236px, 82vw);
        margin-right: -18px;
        padding-right: 18px;
    }

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