/* ============================================================
   DEĞER OTOMOTİV — Endüstriyel Premium Stylesheet v2
   ============================================================ */

:root {
    /* Primary palette — derin ve teknik */
    --ink:        #0a0e14;
    --ink-2:      #11161f;
    --ink-3:      #1a2030;
    --steel:      #2a3142;
    --slate:      #4a5365;
    --slate-2:    #6b7585;
    --silver:     #b3bbc8;
    --pearl:      #e6e9ef;
    --bone:       #f5f6f9;
    --paper:      #fafbfc;
    --white:      #ffffff;

    /* Brand accent */
    --red:        #c8102e;
    --red-deep:   #8b0a1f;
    --red-glow:   #ff3b54;
    --red-soft:   rgba(200,16,46,0.08);

    /* Status */
    --green:      #1f8f3f;
    --green-soft: rgba(31,143,63,0.1);
    --amber:      #d97706;

    /* Effects */
    --shadow-xs: 0 1px 1px rgba(10,14,20,0.04);
    --shadow-sm: 0 2px 4px rgba(10,14,20,0.06), 0 1px 2px rgba(10,14,20,0.04);
    --shadow:    0 6px 18px rgba(10,14,20,0.08), 0 2px 6px rgba(10,14,20,0.05);
    --shadow-lg: 0 18px 40px rgba(10,14,20,0.14), 0 4px 12px rgba(10,14,20,0.06);
    --shadow-xl: 0 28px 64px rgba(10,14,20,0.22);

    --transition: all 0.28s cubic-bezier(.2,.8,.2,1);
    --transition-fast: all 0.18s ease;

    --font:      'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
    --font-disp: 'Oswald', 'Inter', system-ui, sans-serif;
    --font-mono: 'JetBrains Mono', 'IBM Plex Mono', 'SF Mono', Consolas, monospace;
}

/* ============================================================
   RESET & BASE
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; }
html, body { padding: 0; margin: 0; }
html { scroll-behavior: smooth; }

body {
    font-family: var(--font);
    font-size: 15px;
    line-height: 1.65;
    color: #1f2530;
    background: var(--white);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}

a {
    color: var(--red);
    text-decoration: none;
    transition: var(--transition-fast);
}
a:hover { color: var(--red-deep); }

img { max-width: 100%; display: block; }

h1, h2, h3, h4, h5 {
    font-family: var(--font-disp);
    color: var(--ink);
    margin: 0 0 16px;
    line-height: 1.05;
    font-weight: 600;
    letter-spacing: -0.01em;
    text-transform: uppercase;
}
h1 { font-size: 56px; letter-spacing: -0.02em; }
h2 { font-size: 38px; }
h3 { font-size: 24px; letter-spacing: 0.005em; }
h4 { font-size: 18px; letter-spacing: 0.02em; }

p { margin: 0 0 16px; }

::selection { background: var(--red); color: var(--white); }

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ============================================================
   COMMON: Eyebrow, Section Heading, Numbered Markers
   ============================================================ */
.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-family: var(--font);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: var(--red);
    margin-bottom: 14px;
}
.eyebrow::before {
    content: '';
    display: block;
    width: 32px;
    height: 2px;
    background: var(--red);
}

.section-num {
    font-family: var(--font-disp);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.3em;
    color: var(--slate-2);
    margin-bottom: 18px;
}
.section-num::before {
    content: '';
    display: inline-block;
    width: 28px;
    height: 1px;
    background: var(--slate-2);
    vertical-align: middle;
    margin-right: 14px;
    margin-bottom: 3px;
}

/* ============================================================
   TOP BAR
   ============================================================ */
.topbar {
    background: var(--ink);
    color: rgba(255,255,255,0.65);
    font-size: 12.5px;
    padding: 11px 0;
    letter-spacing: 0.02em;
    border-bottom: 1px solid rgba(255,255,255,0.06);
}
.topbar a { color: rgba(255,255,255,0.85); }
.topbar a:hover { color: var(--white); }
.topbar .row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}
.topbar .social {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 4px;
}
.topbar .social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 26px;
    height: 26px;
    background: rgba(255,255,255,0.06);
    border-radius: 4px;
    font-size: 11px;
    transition: var(--transition-fast);
}
.topbar .social a:hover {
    background: var(--red);
    color: var(--white);
}
.topbar .contact-list {
    display: flex;
    gap: 0;
    flex-wrap: wrap;
    list-style: none;
    margin: 0;
    padding: 0;
}
.topbar .contact-list span {
    padding: 0 18px;
    border-left: 1px solid rgba(255,255,255,0.08);
    line-height: 1;
}
.topbar .contact-list span:last-child { padding-right: 0; }
.topbar .contact-list span i {
    color: var(--red);
    margin-right: 8px;
    font-size: 12px;
}

/* ============================================================
   NAVBAR
   ============================================================ */
.navbar {
    background: var(--white);
    border-bottom: 1px solid var(--pearl);
    position: sticky;
    top: 0;
    z-index: 100;
}
.navbar .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 90px;
}
.navbar .brand img {
    max-height: 50px;
    transition: var(--transition-fast);
}
.navbar .brand:hover img { transform: scale(1.02); }

.nav-links {
    display: flex;
    gap: 4px;
    list-style: none;
    margin: 0;
    padding: 0;
    align-items: center;
}
.nav-links > li > a {
    display: block;
    padding: 14px 22px;
    color: var(--ink);
    font-family: var(--font-disp);
    font-weight: 500;
    font-size: 14.5px;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    position: relative;
    transition: var(--transition-fast);
}
.nav-links > li > a:hover { color: var(--red); }
.nav-links > li > a::after {
    content: '';
    position: absolute;
    bottom: 8px;
    left: 22px;
    right: 22px;
    height: 2px;
    background: var(--red);
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 0.28s ease;
}
.nav-links > li > a:hover::after,
.nav-links > li > a.active::after { transform: scaleX(1); }
.nav-links > li > a.active { color: var(--red); }

.nav-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 22px;
    background: var(--ink);
    color: var(--white) !important;
    font-family: var(--font-disp);
    font-size: 13.5px;
    letter-spacing: 0.16em;
    margin-left: 12px;
    transition: var(--transition-fast);
}
.nav-cta:hover { background: var(--red) !important; color: var(--white) !important; }
.nav-cta::after { display: none !important; }

.mobile-toggle {
    display: none;
    background: none;
    border: 0;
    padding: 8px;
    cursor: pointer;
}
.mobile-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--ink);
    margin: 5px 0;
    transition: var(--transition-fast);
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 28px;
    font-family: var(--font-disp);
    font-size: 13.5px;
    font-weight: 500;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    border: 1px solid transparent;
    cursor: pointer;
    transition: var(--transition);
    text-align: center;
    line-height: 1;
    position: relative;
    overflow: hidden;
}
.btn::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(255,255,255,0.12);
    transform: translateX(-100%);
    transition: transform 0.36s ease;
}
.btn:hover::before { transform: translateX(0); }
.btn > * { position: relative; z-index: 1; }

.btn-primary {
    background: var(--red);
    color: var(--white);
    border-color: var(--red);
}
.btn-primary:hover {
    background: var(--red-deep);
    border-color: var(--red-deep);
    color: var(--white);
    box-shadow: 0 10px 24px rgba(200,16,46,0.28);
}
.btn-dark {
    background: var(--ink);
    color: var(--white);
    border-color: var(--ink);
}
.btn-dark:hover {
    background: var(--red);
    border-color: var(--red);
    color: var(--white);
}
.btn-outline {
    background: transparent;
    color: var(--white);
    border-color: rgba(255,255,255,0.45);
}
.btn-outline:hover {
    background: var(--white);
    color: var(--ink);
    border-color: var(--white);
}
.btn-outline-dark {
    background: transparent;
    color: var(--ink);
    border-color: var(--ink);
}
.btn-outline-dark:hover {
    background: var(--ink);
    color: var(--white);
}
.btn-ghost {
    background: transparent;
    color: var(--slate);
    border-color: var(--pearl);
}
.btn-ghost:hover {
    background: var(--bone);
    border-color: var(--ink);
    color: var(--ink);
}
.btn-lg { padding: 17px 36px; font-size: 13.5px; }
.btn-sm { padding: 10px 18px; font-size: 12px; }

/* ============================================================
   HERO
   ============================================================ */
.hero {
    position: relative;
    min-height: 720px;
    background: var(--ink);
    color: var(--white);
    display: flex;
    align-items: center;
    overflow: hidden;
}
.hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0.42;
    z-index: 0;
}
.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 75% 50%, rgba(200,16,46,0.18) 0%, transparent 50%),
        linear-gradient(120deg, var(--ink) 0%, rgba(10,14,20,0.78) 50%, rgba(10,14,20,0.55) 100%);
    z-index: 1;
}
.hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
    background-size: 48px 48px;
    z-index: 1;
    pointer-events: none;
}
.hero .container {
    position: relative;
    z-index: 2;
    padding: 100px 24px;
    width: 100%;
}
.hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 60px;
    align-items: center;
    width: 100%;
}
.hero-text { max-width: 760px; }
.hero-visual {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
}
.hero-img {
    display: block;
    width: 100%;
    height: auto;
    max-height: 520px;
    object-fit: contain;
    filter: drop-shadow(0 30px 60px rgba(0,0,0,0.55));
}
.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-family: var(--font);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.32em;
    color: var(--red-glow);
    margin-bottom: 26px;
    text-transform: uppercase;
}
.hero-eyebrow::before {
    content: '';
    width: 42px;
    height: 2px;
    background: var(--red);
}
.hero h1 {
    color: var(--white);
    font-family: var(--font-disp);
    font-size: 88px;
    font-weight: 600;
    line-height: 0.95;
    letter-spacing: -0.025em;
    margin: 0 0 22px;
    text-transform: uppercase;
}
.hero h1 strong {
    color: var(--red-glow);
    font-weight: 600;
    position: relative;
    display: inline-block;
}
.hero h1 strong::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--red);
}
.hero p {
    font-size: 17px;
    line-height: 1.7;
    color: rgba(255,255,255,0.78);
    max-width: 580px;
    margin: 0 0 38px;
}
.hero .actions { display: flex; gap: 14px; flex-wrap: wrap; }

.hero-meta {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 2;
    background: linear-gradient(180deg, transparent, rgba(0,0,0,0.4));
    padding: 36px 0;
    border-top: 1px solid rgba(255,255,255,0.06);
}
.hero-meta .container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    padding: 0 24px;
}
.hero-meta-item {
    border-left: 1px solid rgba(255,255,255,0.1);
    padding: 0 28px;
}
.hero-meta-item:first-child { border-left: 0; padding-left: 0; }
.hero-meta-item .v {
    font-family: var(--font-disp);
    font-size: 38px;
    font-weight: 600;
    line-height: 1;
    color: var(--white);
    margin-bottom: 6px;
}
.hero-meta-item .v sup { color: var(--red); font-size: 18px; vertical-align: super; }
.hero-meta-item .l {
    font-size: 11px;
    letter-spacing: 0.24em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.55);
    font-weight: 600;
}

/* ============================================================
   SECTIONS
   ============================================================ */
.section { padding: 110px 0; position: relative; }
.section-tight { padding: 70px 0; }
.section-soft { background: var(--paper); }
.section-dark {
    background: var(--ink);
    color: rgba(255,255,255,0.75);
    position: relative;
    overflow: hidden;
}
.section-dark::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
    background-size: 56px 56px;
    pointer-events: none;
}
.section-dark > * { position: relative; z-index: 1; }
.section-dark h1, .section-dark h2, .section-dark h3 { color: var(--white); }
.section-dark .eyebrow { color: var(--red-glow); }

.section-head { margin-bottom: 60px; }
.section-head.centered { text-align: center; }
.section-head.centered .eyebrow { justify-content: center; }
.section-head h2 { margin-bottom: 18px; }
.section-head h2 b { color: var(--red); font-weight: 600; }
.section-head .lead {
    color: var(--slate);
    font-size: 16.5px;
    line-height: 1.7;
    max-width: 720px;
}
.section-head.centered .lead { margin: 0 auto; }

/* ============================================================
   STATS STRIP (Hakkımızda altında)
   ============================================================ */
.stats-strip {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    border-top: 1px solid var(--pearl);
    border-bottom: 1px solid var(--pearl);
    margin-top: 60px;
}
.stat-cell {
    padding: 42px 28px;
    border-left: 1px solid var(--pearl);
    position: relative;
    transition: var(--transition);
}
.stat-cell:first-child { border-left: 0; }
.stat-cell:hover { background: var(--paper); }
.stat-cell .v {
    font-family: var(--font-disp);
    font-size: 52px;
    font-weight: 600;
    line-height: 1;
    color: var(--ink);
    margin-bottom: 10px;
    display: flex;
    align-items: baseline;
    gap: 4px;
}
.stat-cell .v sup {
    color: var(--red);
    font-size: 22px;
    vertical-align: super;
}
.stat-cell .l {
    font-size: 11.5px;
    letter-spacing: 0.24em;
    text-transform: uppercase;
    color: var(--slate-2);
    font-weight: 600;
}
.stat-cell::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -1px;
    width: 0;
    height: 2px;
    background: var(--red);
    transition: width 0.4s ease;
}
.stat-cell:hover::after { width: 100%; }

/* ============================================================
   ABOUT BLOCK
   ============================================================ */
.about-block {
    display: grid;
    grid-template-columns: 1fr 1.05fr;
    gap: 80px;
    align-items: center;
}
.about-imagery {
    position: relative;
}
.about-imagery .main-img {
    position: relative;
    overflow: hidden;
    aspect-ratio: 4 / 5;
    box-shadow: var(--shadow-lg);
}
.about-imagery .main-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.about-imagery .accent-block {
    position: absolute;
    bottom: -28px;
    right: -28px;
    background: var(--red);
    color: var(--white);
    padding: 28px 32px;
    box-shadow: var(--shadow-lg);
    max-width: 280px;
}
.about-imagery .accent-block .v {
    font-family: var(--font-disp);
    font-size: 60px;
    font-weight: 600;
    line-height: 1;
    margin-bottom: 6px;
}
.about-imagery .accent-block .l {
    font-size: 12px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    opacity: 0.92;
    font-weight: 600;
}

.about-text h2 strong { color: var(--red); font-weight: 600; }
.about-text .desc { color: var(--slate); font-size: 16px; line-height: 1.85; }
.about-text .desc b { color: var(--ink); font-weight: 600; }
.about-text .actions { margin-top: 32px; display: flex; gap: 12px; flex-wrap: wrap; }

.about-list {
    list-style: none;
    margin: 22px 0 28px;
    padding: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px 22px;
}
.about-list li {
    display: flex;
    gap: 12px;
    align-items: center;
    font-size: 14.5px;
    color: var(--ink);
    font-weight: 500;
}
.about-list li i {
    color: var(--red);
    font-size: 14px;
    background: var(--red-soft);
    width: 26px;
    height: 26px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

/* ============================================================
   SHOWCASE SLIDER (Anasayfa orta)
   ============================================================ */
.showcase {
    position: relative;
    overflow: hidden;
    min-height: 520px;
    background: var(--ink);
    box-shadow: var(--shadow-xl);
}
.showcase-track {
    position: relative;
    height: 520px;
}
.showcase-slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transform: scale(1.04);
    transition: opacity 0.9s ease, transform 9s ease;
    z-index: 1;
}
.showcase-slide.active {
    opacity: 1;
    transform: scale(1);
    z-index: 2;
}
.showcase-slide::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 80% 40%, rgba(200,16,46,0.15) 0%, transparent 55%),
        linear-gradient(105deg, rgba(10,14,20,0.94) 0%, rgba(10,14,20,0.72) 48%, rgba(10,14,20,0.4) 100%);
}
.showcase-slide::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
    background-size: 44px 44px;
}
.showcase-content {
    position: relative;
    z-index: 2;
    color: var(--white);
    padding: 80px 70px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    max-width: 680px;
}
.showcase-content .eyebrow { color: var(--red-glow); margin-bottom: 22px; }
.showcase-content h2 {
    color: var(--white);
    font-family: var(--font-disp);
    font-size: 60px;
    font-weight: 600;
    line-height: 1;
    letter-spacing: -0.015em;
    margin-bottom: 22px;
    text-transform: uppercase;
}
.showcase-content h2 strong { color: var(--red-glow); font-weight: 600; }
.showcase-content p {
    font-size: 16.5px;
    line-height: 1.7;
    color: rgba(255,255,255,0.82);
    margin-bottom: 32px;
    max-width: 540px;
}

.showcase-counter {
    position: absolute;
    top: 36px;
    right: 40px;
    z-index: 3;
    font-family: var(--font-disp);
    font-size: 14px;
    color: rgba(255,255,255,0.6);
    letter-spacing: 0.18em;
}
.showcase-counter b { color: var(--white); font-size: 22px; font-weight: 600; }

.showcase-nav {
    position: absolute;
    bottom: 36px;
    right: 40px;
    z-index: 3;
    display: flex;
    gap: 10px;
}
.showcase-arrow {
    width: 52px;
    height: 52px;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.18);
    color: var(--white);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    transition: var(--transition-fast);
    backdrop-filter: blur(8px);
}
.showcase-arrow:hover {
    background: var(--red);
    border-color: var(--red);
}

.showcase-dots {
    position: absolute;
    bottom: 36px;
    left: 70px;
    z-index: 3;
    display: flex;
    gap: 8px;
}
.showcase-dot {
    width: 36px;
    height: 3px;
    background: rgba(255,255,255,0.22);
    border: 0;
    cursor: pointer;
    padding: 0;
    transition: var(--transition-fast);
}
.showcase-dot.active { background: var(--red); }

/* ============================================================
   BRAND STRIP
   ============================================================ */
.brand-strip {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    border-top: 1px solid var(--pearl);
    border-bottom: 1px solid var(--pearl);
}
.brand-card {
    background: var(--white);
    padding: 44px 26px;
    text-align: center;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 150px;
    border-left: 1px solid var(--pearl);
    position: relative;
    overflow: hidden;
    font-family: var(--font-disp);
    font-size: 26px;
    font-weight: 600;
    color: var(--ink);
    letter-spacing: 0.06em;
}
.brand-card:first-child { border-left: 0; }
.brand-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--red);
    transition: width 0.4s ease;
}
.brand-card:hover {
    background: var(--paper);
    color: var(--red);
}
.brand-card:hover::after { width: 100%; }
.brand-card img {
    max-height: 56px;
    max-width: 150px;
    object-fit: contain;
    filter: grayscale(0) brightness(1);
    opacity: 1;
    transition: var(--transition);
}
.brand-card:hover img { filter: grayscale(0) brightness(1); opacity: 1; }

/* ============================================================
   CTA STRIP
   ============================================================ */
.cta {
    background: var(--ink);
    color: var(--white);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}
.cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 88% 50%, rgba(200,16,46,0.18) 0%, transparent 55%),
        linear-gradient(105deg, var(--ink) 0%, var(--ink-2) 100%);
}
.cta::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
    background-size: 50px 50px;
    pointer-events: none;
}
.cta .container {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1.8fr auto;
    gap: 40px;
    align-items: center;
}
.cta h2 {
    color: var(--white);
    font-size: 36px;
    margin: 0;
    line-height: 1.15;
}
.cta h2 strong { color: var(--red-glow); font-weight: 600; }
.cta .lead {
    color: rgba(255,255,255,0.7);
    margin-top: 12px;
    margin-bottom: 0;
    font-size: 15.5px;
}

/* ============================================================
   PAGE HEADER (alt sayfalar)
   ============================================================ */
.page-header {
    position: relative;
    padding: 110px 0 90px;
    background: var(--ink);
    color: var(--white);
    overflow: hidden;
}
.page-header-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0.32;
    z-index: 0;
}
.page-header::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 80% 40%, rgba(200,16,46,0.15) 0%, transparent 55%),
        linear-gradient(120deg, rgba(10,14,20,0.94) 0%, rgba(10,14,20,0.72) 100%);
    z-index: 1;
}
.page-header::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
    background-size: 50px 50px;
    z-index: 1;
}
.page-header .container { position: relative; z-index: 2; }
.page-header h1 {
    color: var(--white);
    font-size: 64px;
    margin-bottom: 8px;
}
.page-header h1 strong { color: var(--red-glow); font-weight: 600; }
.breadcrumb {
    font-size: 12px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.55);
    font-weight: 600;
    margin-bottom: 22px;
    font-family: var(--font);
}
.breadcrumb a { color: rgba(255,255,255,0.85); }
.breadcrumb a:hover { color: var(--red-glow); }
.breadcrumb .sep { margin: 0 12px; opacity: 0.4; }
.page-header .desc {
    margin-top: 18px;
    color: rgba(255,255,255,0.7);
    font-size: 15.5px;
    max-width: 640px;
}

/* ============================================================
   FEATURE CARDS (3-card grid: Tecrübe/İhracat/Üretim)
   ============================================================ */
.feature-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    border-top: 1px solid var(--pearl);
    border-bottom: 1px solid var(--pearl);
}
.feat-card {
    padding: 50px 38px;
    border-left: 1px solid var(--pearl);
    transition: var(--transition);
    position: relative;
}
.feat-card:first-child { border-left: 0; }
.feat-card::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -1px;
    width: 0;
    height: 2px;
    background: var(--red);
    transition: width 0.4s ease;
}
.feat-card:hover { background: var(--paper); }
.feat-card:hover::after { width: 100%; }
.feat-card .feat-num {
    font-family: var(--font-disp);
    font-size: 13px;
    letter-spacing: 0.3em;
    color: var(--slate-2);
    margin-bottom: 28px;
    font-weight: 600;
}
.feat-card .feat-icon {
    width: 58px;
    height: 58px;
    background: var(--ink);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    margin-bottom: 24px;
    transition: var(--transition-fast);
}
.feat-card:hover .feat-icon { background: var(--red); }
.feat-card h3 { font-size: 22px; margin-bottom: 14px; }
.feat-card p { color: var(--slate); font-size: 14.5px; line-height: 1.7; margin: 0; }

/* ============================================================
   CONTACT CARDS
   ============================================================ */
.contact-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    border-top: 1px solid var(--pearl);
    border-bottom: 1px solid var(--pearl);
}
.contact-card {
    background: var(--white);
    padding: 52px 36px;
    text-align: center;
    border-left: 1px solid var(--pearl);
    position: relative;
    transition: var(--transition);
}
.contact-card:first-child { border-left: 0; }
.contact-card::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -1px;
    width: 0;
    height: 2px;
    background: var(--red);
    transition: width 0.4s ease;
}
.contact-card:hover { background: var(--paper); }
.contact-card:hover::after { width: 100%; }
.contact-card .icon {
    width: 64px;
    height: 64px;
    background: var(--ink);
    color: var(--white);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 22px;
    font-size: 22px;
    transition: var(--transition-fast);
}
.contact-card:hover .icon { background: var(--red); }
.contact-card h3 {
    font-size: 14px;
    letter-spacing: 0.22em;
    color: var(--slate-2);
    margin-bottom: 18px;
    font-weight: 600;
}
.contact-card p, .contact-card a {
    color: var(--ink);
    font-size: 16px;
    line-height: 1.7;
    font-weight: 500;
}
.contact-card a { display: block; }
.contact-card a:hover { color: var(--red); }

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
    background: var(--ink);
    color: rgba(255,255,255,0.6);
    padding: 80px 0 0;
    position: relative;
    overflow: hidden;
}
.footer::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,0.018) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.018) 1px, transparent 1px);
    background-size: 60px 60px;
    pointer-events: none;
}
.footer > * { position: relative; z-index: 1; }
.footer h4 {
    color: var(--white);
    font-size: 13px;
    letter-spacing: 0.22em;
    margin-bottom: 26px;
    padding-bottom: 16px;
    position: relative;
    font-weight: 500;
}
.footer h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 36px;
    height: 2px;
    background: var(--red);
}
.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 56px;
    padding-bottom: 60px;
}
.footer-logo { max-height: 46px; margin-bottom: 22px; }
.footer a { color: rgba(255,255,255,0.6); transition: var(--transition-fast); }
.footer a:hover { color: var(--white); padding-left: 6px; }
.footer ul { list-style: none; padding: 0; margin: 0; }
.footer ul li { padding: 5px 0; font-size: 14px; }
.footer .info-row {
    display: flex;
    gap: 14px;
    margin-bottom: 18px;
    align-items: flex-start;
    font-size: 14px;
    line-height: 1.65;
}
.footer .info-row > i {
    color: var(--red);
    margin-top: 4px;
    font-size: 13px;
    width: 16px;
}
.footer .info-row strong {
    color: var(--white);
    display: block;
    font-size: 11px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    margin-bottom: 4px;
    font-weight: 600;
}

.footer-copy {
    border-top: 1px solid rgba(255,255,255,0.06);
    padding: 26px 0;
    margin-top: 24px;
    font-size: 12.5px;
    color: rgba(255,255,255,0.45);
    letter-spacing: 0.04em;
}
.footer-copy .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
}
.footer-copy strong { color: var(--white); font-weight: 600; }
.footer-social {
    display: flex;
    gap: 6px;
    list-style: none;
    padding: 0;
    margin: 0;
}
.footer-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background: rgba(255,255,255,0.06);
    font-size: 12px;
}
.footer-social a:hover {
    background: var(--red);
    color: var(--white) !important;
    padding-left: 0;
}

/* ============================================================
   PRODUCTS PAGE
   ============================================================ */
.products-layout {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 36px;
    padding: 50px 0 100px;
}

/* === Sidebar === */
.sidebar {
    background: var(--white);
    border: 1px solid var(--pearl);
    position: sticky;
    top: 110px;
    align-self: start;
    max-height: calc(100vh - 130px);
    overflow-y: auto;
}
.sidebar::-webkit-scrollbar { width: 6px; }
.sidebar::-webkit-scrollbar-track { background: var(--bone); }
.sidebar::-webkit-scrollbar-thumb { background: var(--silver); }

.sidebar-head {
    padding: 22px 24px 18px;
    border-bottom: 1px solid var(--pearl);
    background: var(--ink);
    color: var(--white);
}
.sidebar-head h3 {
    font-size: 12.5px;
    letter-spacing: 0.24em;
    color: var(--white);
    margin: 0;
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 500;
}
.sidebar-head h3 i {
    color: var(--red-glow);
    font-size: 12px;
    width: 18px;
    height: 18px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,0.08);
}
.sidebar-list { list-style: none; padding: 0; margin: 0; }
.sidebar-list li a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 13px 24px;
    color: var(--ink);
    font-size: 13.5px;
    font-weight: 500;
    letter-spacing: 0.04em;
    border-left: 3px solid transparent;
    border-bottom: 1px solid var(--bone);
    transition: var(--transition-fast);
    text-transform: uppercase;
}
.sidebar-list li:last-child a { border-bottom: 0; }
.sidebar-list li a:hover {
    background: var(--paper);
    color: var(--red);
    border-left-color: var(--red);
    padding-left: 30px;
}
.sidebar-list li a.active {
    background: var(--red-soft);
    color: var(--red);
    border-left-color: var(--red);
    font-weight: 600;
}

/* === Main content === */
.products-main { min-width: 0; }

/* === OEM Search === */
.oem-search {
    background: var(--ink);
    color: var(--white);
    padding: 22px 24px;
    margin-bottom: 22px;
    display: flex;
    align-items: center;
    gap: 16px;
    position: relative;
    overflow: hidden;
}
.oem-search::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
    background-size: 36px 36px;
    pointer-events: none;
}
.oem-search > * { position: relative; z-index: 1; }
.oem-search .icon-box {
    width: 44px;
    height: 44px;
    background: var(--red);
    color: var(--white);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 16px;
}
.oem-search .label {
    font-family: var(--font-disp);
    font-size: 13px;
    letter-spacing: 0.22em;
    color: rgba(255,255,255,0.75);
    margin-right: 4px;
}
.oem-search form {
    flex: 1;
    display: flex;
    gap: 10px;
    align-items: center;
    flex-wrap: wrap;
}
.oem-search input[type="text"] {
    flex: 1;
    min-width: 220px;
    border: 1px solid rgba(255,255,255,0.18);
    background: rgba(255,255,255,0.06);
    color: var(--white);
    padding: 13px 18px;
    font-size: 14.5px;
    font-family: var(--font-mono);
    letter-spacing: 0.02em;
    transition: var(--transition-fast);
    font-weight: 500;
}
.oem-search input[type="text"]:focus {
    outline: 0;
    border-color: var(--red);
    background: rgba(255,255,255,0.08);
}
.oem-search input[type="text"]::placeholder { color: rgba(255,255,255,0.4); }
.oem-search .btn {
    padding: 13px 24px;
    background: var(--red);
    color: var(--white);
    border-color: var(--red);
}
.oem-search .btn:hover { background: var(--red-deep); }
.oem-search .btn-cancel {
    background: transparent;
    color: rgba(255,255,255,0.7);
    border-color: rgba(255,255,255,0.18);
}
.oem-search .btn-cancel:hover {
    background: rgba(255,255,255,0.08);
    color: var(--white);
}

/* === Toolbar / Filter === */
.toolbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: var(--white);
    border: 1px solid var(--pearl);
    padding: 16px 22px;
    margin-bottom: 22px;
    gap: 16px;
    flex-wrap: wrap;
}
.toolbar-info {
    color: var(--slate);
    font-size: 13.5px;
    font-family: var(--font);
}
.toolbar-info b {
    color: var(--ink);
    font-weight: 700;
    font-family: var(--font-disp);
    font-size: 18px;
    margin-right: 4px;
}
.toolbar-info i { font-style: normal; color: var(--ink); font-weight: 500; }

.filter-tabs {
    display: inline-flex;
    background: var(--bone);
    border: 1px solid var(--pearl);
    padding: 3px;
    gap: 0;
}
.filter-tabs a {
    padding: 9px 20px;
    font-family: var(--font-disp);
    font-size: 12.5px;
    font-weight: 500;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--slate);
    transition: var(--transition-fast);
}
.filter-tabs a:hover { color: var(--ink); }
.filter-tabs a.active {
    background: var(--ink);
    color: var(--white);
}

/* === Crumbs (mode breadcrumb) === */
.crumbs {
    display: flex;
    align-items: center;
    gap: 0;
    margin-bottom: 22px;
    font-size: 12px;
    color: var(--slate-2);
    flex-wrap: wrap;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    font-family: var(--font-disp);
    font-weight: 500;
}
.crumbs a { color: var(--slate); }
.crumbs a:hover { color: var(--red); }
.crumbs .sep { color: var(--silver); margin: 0 12px; font-size: 9px; }
.crumbs .now { color: var(--red); font-weight: 600; }

/* === Card Grids (3-up) === */
.card-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

/* === Group Card === */
.group-card {
    background: var(--white);
    border: 1px solid var(--pearl);
    padding: 28px 22px 26px;
    text-align: center;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    align-items: center;
    min-height: 300px;
    justify-content: flex-start;
    position: relative;
    overflow: hidden;
}
.group-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--red);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}
.group-card:hover {
    border-color: var(--ink);
    box-shadow: var(--shadow-lg);
    transform: translateY(-3px);
}
.group-card:hover::before { transform: scaleX(1); }
.group-card .ico-wrap {
    width: 100%;
    height: 180px;
    background: var(--bone);
    border: 1px solid var(--pearl);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 22px;
    transition: var(--transition-fast);
    overflow: hidden;
    padding: 14px;
}
.group-card:hover .ico-wrap {
    border-color: var(--ink);
}
.group-card .ico-wrap img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
    transition: transform 0.5s cubic-bezier(.2,.8,.2,1);
    mix-blend-mode: multiply;
}
.group-card:hover .ico-wrap img { transform: scale(1.06); }
.group-card .ico-wrap .placeholder {
    font-family: var(--font-disp);
    font-size: 78px;
    color: var(--ink);
    font-weight: 600;
    transition: var(--transition-fast);
    line-height: 1;
}
.group-card:hover .ico-wrap .placeholder { color: var(--red); }
.group-card .name {
    font-family: var(--font-disp);
    font-size: 17px;
    font-weight: 500;
    color: var(--ink);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    line-height: 1.25;
    margin-top: auto;
}
.group-card .sub {
    font-size: 11.5px;
    color: var(--slate-2);
    margin-top: 8px;
    letter-spacing: 0.04em;
    font-weight: 500;
}

/* === Subcategory Filter Pills (üstte küçük etiketler) === */
.subcat-filter {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 26px;
    padding-bottom: 22px;
    border-bottom: 1px solid var(--pearl);
}
.subcat-pill {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 6px 14px 6px 6px;
    background: var(--white);
    border: 1px solid var(--pearl);
    transition: var(--transition-fast);
    color: var(--ink);
    line-height: 1;
    text-decoration: none;
}
.subcat-pill:hover {
    border-color: var(--ink);
    box-shadow: var(--shadow-sm);
    transform: translateY(-1px);
    color: var(--ink);
}
.subcat-pill .pill-img {
    width: 38px;
    height: 38px;
    background: var(--bone);
    border: 1px solid var(--pearl);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    flex-shrink: 0;
    padding: 3px;
}
.subcat-pill .pill-img img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    mix-blend-mode: multiply;
}
.subcat-pill .pill-img .placeholder {
    font-family: var(--font-disp);
    font-size: 16px;
    color: var(--ink);
    font-weight: 600;
}
.subcat-pill .pill-text {
    display: flex;
    flex-direction: column;
    gap: 3px;
    min-width: 0;
}
.subcat-pill .pill-name {
    font-family: var(--font-disp);
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--ink);
    font-weight: 500;
    line-height: 1.1;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 220px;
}
.subcat-pill .pill-count {
    font-family: var(--font-mono);
    font-size: 11px;
    color: var(--slate-2);
    font-weight: 500;
    letter-spacing: 0.03em;
    line-height: 1;
}
.subcat-pill.all-pill {
    background: var(--ink);
    border-color: var(--ink);
    cursor: default;
}
.subcat-pill.all-pill:hover { transform: none; box-shadow: none; }
.subcat-pill.all-pill .pill-img {
    background: rgba(255,255,255,0.08);
    border-color: rgba(255,255,255,0.18);
    color: var(--white);
}
.subcat-pill.all-pill .pill-img i { color: var(--white); font-size: 16px; }
.subcat-pill.all-pill .pill-name { color: var(--white); }
.subcat-pill.all-pill .pill-count { color: rgba(255,255,255,0.7); }

@media (max-width: 768px) {
    .subcat-pill .pill-name { max-width: 140px; font-size: 12px; }
    .subcat-pill .pill-img { width: 32px; height: 32px; }
}

/* === Tümü Card (alt kategori listesinin başında) === */
.group-card.all-card {
    background: linear-gradient(135deg, var(--ink) 0%, var(--ink-2) 100%);
    border-color: var(--ink);
    color: var(--white);
}
.group-card.all-card::before {
    background: var(--red-glow);
    transform: scaleX(1);
}
.group-card.all-card:hover {
    background: linear-gradient(135deg, var(--red) 0%, var(--red-deep) 100%);
    border-color: var(--red);
}
.group-card.all-card .ico-wrap {
    background: rgba(255,255,255,0.06);
    border-color: rgba(255,255,255,0.15);
    color: var(--white);
}
.group-card.all-card:hover .ico-wrap {
    background: rgba(255,255,255,0.12);
    border-color: rgba(255,255,255,0.25);
}
.group-card.all-card .ico-wrap .placeholder {
    color: var(--white);
    font-size: 64px;
}
.group-card.all-card .ico-wrap i {
    font-size: 72px;
    color: var(--white);
    opacity: 0.95;
}
.group-card.all-card .name { color: var(--white); }
.group-card.all-card .sub { color: rgba(255,255,255,0.65); }

/* === Brand Tile === */
.brand-tile {
    background: var(--white);
    border: 1px solid var(--pearl);
    padding: 32px 22px;
    text-align: center;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 200px;
    position: relative;
    overflow: hidden;
}
.brand-tile::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--red);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}
.brand-tile:hover {
    border-color: var(--ink);
    box-shadow: var(--shadow-lg);
    transform: translateY(-3px);
}
.brand-tile:hover::before { transform: scaleX(1); }
.brand-tile img {
    max-height: 56px;
    max-width: 140px;
    object-fit: contain;
    margin-bottom: 14px;
    filter: grayscale(0.5);
    transition: var(--transition);
}
.brand-tile:hover img { filter: grayscale(0); }
.brand-tile .name {
    font-family: var(--font-disp);
    font-size: 17px;
    font-weight: 600;
    color: var(--ink);
    text-transform: uppercase;
    letter-spacing: 0.08em;
}
.brand-tile .sub {
    font-size: 11.5px;
    color: var(--slate-2);
    margin-top: 8px;
    letter-spacing: 0.04em;
    font-weight: 500;
}

/* === Product Card === */
.product-card {
    background: var(--white);
    border: 1px solid var(--pearl);
    overflow: hidden;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    position: relative;
}
.product-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--red);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
    z-index: 3;
}
.product-card:hover {
    border-color: var(--ink);
    box-shadow: var(--shadow-lg);
    transform: translateY(-3px);
}
.product-card:hover::before { transform: scaleX(1); }
.product-card .pimg {
    aspect-ratio: 1 / 1;
    background: linear-gradient(135deg, var(--bone) 0%, #eef0f3 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    position: relative;
    border-bottom: 1px solid var(--pearl);
}
.product-card .pimg img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 16px;
    transition: transform 0.5s cubic-bezier(.2,.8,.2,1);
    mix-blend-mode: multiply;
}
.product-card:hover .pimg img { transform: scale(1.07); }
.product-card .ptag {
    position: absolute;
    top: 12px;
    left: 12px;
    font-family: var(--font-disp);
    font-size: 10px;
    padding: 5px 11px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    font-weight: 500;
    background: var(--ink);
    color: var(--white);
}
.product-card .ptag.aftermarket { background: var(--red); }
.product-card .ptag.orijinal { background: var(--green); }
.product-card .pbody {
    padding: 16px 18px 20px;
    text-align: center;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 10px;
}
.product-card .pbrand {
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-bottom: 1px solid var(--bone);
    padding-bottom: 10px;
    margin-bottom: 2px;
}
.product-card .pbrand img {
    max-height: 26px;
    max-width: 120px;
    object-fit: contain;
    filter: grayscale(0.4);
    transition: var(--transition-fast);
}
.product-card:hover .pbrand img { filter: grayscale(0); }
.product-card .pbrand .name-fallback {
    font-family: var(--font-disp);
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--slate);
}
.product-card .pname {
    font-family: var(--font-disp);
    font-size: 14px;
    font-weight: 500;
    color: var(--ink);
    line-height: 1.3;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    min-height: 38px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.product-card .pcode {
    font-family: var(--font-mono);
    font-size: 12px;
    color: var(--ink);
    font-weight: 600;
    letter-spacing: 0.04em;
    background: var(--bone);
    border: 1px solid var(--pearl);
    padding: 7px 12px;
    display: inline-block;
    margin: 0 auto;
}
.product-card:hover .pcode {
    background: var(--ink);
    color: var(--white);
    border-color: var(--ink);
}

/* === Empty state === */
.empty-state {
    text-align: center;
    padding: 100px 20px;
    color: var(--slate);
    background: var(--white);
    border: 1px solid var(--pearl);
    border-style: dashed;
}
.empty-state h3 {
    color: var(--ink);
    margin-bottom: 10px;
    font-size: 24px;
}
.empty-state i {
    font-size: 40px;
    color: var(--silver);
    margin-bottom: 18px;
    display: block;
}

/* === Pagination === */
.pagination {
    display: flex;
    justify-content: center;
    gap: 4px;
    margin-top: 48px;
    flex-wrap: wrap;
}
.pagination a, .pagination span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 42px;
    height: 42px;
    padding: 0 14px;
    border: 1px solid var(--pearl);
    background: var(--white);
    color: var(--ink);
    font-family: var(--font-disp);
    font-weight: 500;
    font-size: 14px;
    letter-spacing: 0.04em;
    transition: var(--transition-fast);
}
.pagination a:hover {
    border-color: var(--ink);
    background: var(--ink);
    color: var(--white);
}
.pagination .current {
    background: var(--red);
    color: var(--white);
    border-color: var(--red);
}
.pagination .disabled { color: var(--silver); pointer-events: none; background: var(--bone); }

/* ============================================================
   MAP CONTAINER
   ============================================================ */
.map-wrap {
    border: 1px solid var(--pearl);
    overflow: hidden;
    box-shadow: var(--shadow);
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1100px) {
    .hero h1 { font-size: 64px; }
    .showcase-content h2 { font-size: 44px; }
    .page-header h1 { font-size: 48px; }
    .about-block { gap: 50px; }
}

@media (max-width: 991px) {
    .products-layout { grid-template-columns: 1fr; }
    .sidebar { position: static; max-height: none; }
    .stats-strip { grid-template-columns: repeat(2, 1fr); }
    .stat-cell:nth-child(3) { border-left: 0; border-top: 1px solid var(--pearl); }
    .feature-grid, .brand-strip, .contact-grid { grid-template-columns: repeat(2, 1fr); }
    .feat-card:nth-child(3) { border-left: 0; border-top: 1px solid var(--pearl); grid-column: 1 / -1; }
    .contact-card:nth-child(3) { border-left: 0; border-top: 1px solid var(--pearl); grid-column: 1 / -1; }
    .about-block { grid-template-columns: 1fr; gap: 70px; }
    .footer-grid { grid-template-columns: repeat(2, 1fr); gap: 40px; }
    .card-grid { grid-template-columns: repeat(2, 1fr); }
    .hero { min-height: 600px; }
    .hero h1 { font-size: 52px; }
    .hero-grid { grid-template-columns: 1fr; gap: 40px; }
    .hero-img { max-height: 360px; }
    .cta .container { grid-template-columns: 1fr; }
    .cta h2 { font-size: 30px; }
    .showcase, .showcase-track { min-height: 460px; height: 460px; }
    .showcase-content { padding: 60px 50px; }
    .showcase-content h2 { font-size: 38px; }
    .hero-meta .container { grid-template-columns: repeat(2, 1fr); gap: 20px 0; }
    .hero-meta-item:nth-child(3) { border-left: 0; padding-left: 0; }
    .nav-cta { display: none; }
}

@media (max-width: 768px) {
    .topbar .contact-list span { padding: 0 12px; }
    .topbar .contact-list span:first-child { padding-left: 12px; }
    .mobile-toggle { display: block; }
    .navbar .container { height: 76px; position: relative; }
    .nav-links {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--white);
        flex-direction: column;
        padding: 12px 0;
        box-shadow: var(--shadow);
        border-bottom: 1px solid var(--pearl);
        display: none;
        gap: 0;
        align-items: stretch;
    }
    .nav-links.open { display: flex; }
    .nav-links > li > a {
        padding: 14px 24px;
        border-bottom: 1px solid var(--pearl);
    }
    .nav-links > li:last-child > a { border-bottom: 0; }
    .nav-links > li > a::after { display: none; }
    .hero { min-height: 540px; }
    .hero h1 { font-size: 40px; }
    .hero-meta { display: none; }
    .hero-visual { display: none; }
    .page-header { padding: 70px 0 60px; }
    .page-header h1 { font-size: 36px; }
    .section { padding: 70px 0; }
    .section-head { margin-bottom: 44px; }
    h2 { font-size: 28px; }
    .footer-grid { grid-template-columns: 1fr; }
    .toolbar { flex-direction: column; align-items: stretch; }
    .filter-tabs { justify-content: center; }
    .filter-tabs a { padding: 9px 14px; font-size: 11.5px; }
    .oem-search { flex-direction: column; align-items: stretch; }
    .oem-search .label { display: none; }
    .feature-grid, .brand-strip, .contact-grid { grid-template-columns: 1fr; }
    .feat-card, .contact-card, .brand-card { border-left: 0; border-top: 1px solid var(--pearl); }
    .feat-card:first-child, .contact-card:first-child, .brand-card:first-child { border-top: 0; }
}

@media (max-width: 560px) {
    .card-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
    .group-card { min-height: 230px; padding: 16px 12px 16px; }
    .group-card .ico-wrap { height: 120px; margin-bottom: 14px; padding: 10px; }
    .group-card .ico-wrap .placeholder { font-size: 52px; }
    .group-card.all-card .ico-wrap i { font-size: 52px; }
    .group-card .name { font-size: 13.5px; }
    .product-card .pname { font-size: 13px; }
    .product-card .pcode { font-size: 11px; padding: 6px 10px; }
    .showcase-content { padding: 50px 30px; }
    .showcase-content h2 { font-size: 30px; }
    .cta h2 { font-size: 24px; }
    .stats-strip { grid-template-columns: 1fr; }
    .stat-cell { border-left: 0 !important; border-top: 1px solid var(--pearl); }
    .stat-cell:first-child { border-top: 0; }
    .about-imagery .accent-block { right: 0; bottom: -20px; padding: 22px; max-width: 240px; }
    .about-imagery .accent-block .v { font-size: 44px; }
    .footer-copy .container { flex-direction: column; text-align: center; }
}
