:root {
    --red: #c30f0f;
    --ink: #101010;
    --muted: #696969;
    --line: #e7e7e7;
    --soft: #f6f6f6;
    --max: 1140px;
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    color: var(--ink);
    font-family: "Nunito Sans", Montserrat, Arial, sans-serif;
    font-weight: 300;
    background: #fff;
}

a {
    color: inherit;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 3000;
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 80px;
    padding: 0 30px;
    background: #000;
    box-shadow: none;
}

.brand img {
    display: block;
    width: 150px;
    max-width: 54vw;
}

.site-nav {
    display: flex;
    align-items: center;
    gap: 0;
    font-family: "Nunito Sans", Arial, sans-serif;
    font-size: 15px;
    font-weight: 700;
    text-transform: none;
}

.site-nav a,
.nav-item > a {
    text-decoration: none;
    color: #fff;
    padding: 40px 15px;
    position: relative;
}

.site-nav a:hover,
.site-nav a.is-active,
.nav-item:hover > a {
    color: var(--red);
}

.site-nav > a::after,
.nav-item > a::after {
    content: "";
    position: absolute;
    left: 15px;
    right: 15px;
    bottom: 22px;
    height: 4px;
    background: var(--red);
    transform: scaleX(0);
    transform-origin: center;
    transition: transform .18s ease;
}

.site-nav > a:hover::after,
.site-nav > a.is-active::after,
.nav-item:hover > a::after,
.nav-item > a.is-active::after {
    transform: scaleX(1);
}

.nav-item {
    position: relative;
}

.nav-item > a {
    display: inline-flex;
    align-items: center;
    gap: 9px;
}

.nav-item > a span {
    width: 0;
    height: 0;
    border-left: 4px solid transparent;
    border-right: 4px solid transparent;
    border-top: 5px solid currentColor;
    transform: translateY(1px);
}

.nav-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 210px;
    padding: 9px 0;
    background: #111;
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: opacity .16s ease, transform .16s ease, visibility .16s ease;
}

.nav-item:hover .nav-dropdown,
.nav-item:focus-within .nav-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.nav-dropdown a {
    display: block;
    padding: 12px 18px;
    color: #fff;
    white-space: nowrap;
}

.nav-dropdown a::after {
    display: none;
}

.nav-dropdown a:hover,
.nav-dropdown a.is-active {
    color: var(--red);
}

.nav-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border: 0;
    background: transparent;
    color: #fff;
    padding: 0;
    cursor: pointer;
}

.nav-toggle svg {
    display: block;
    width: 30px;
    height: 30px;
    stroke: currentColor;
    stroke-width: 2.4;
    stroke-linecap: round;
    fill: none;
}

@media (min-width: 1051px) {
    .nav-toggle {
        display: none;
    }
}

.hero {
    position: relative;
    min-height: 595px;
    display: grid;
    align-items: center;
    border-bottom: 5px solid var(--red);
    background: #000 url('/assets/images/revslider-main-2.jpg') 43% center / cover;
    overflow: hidden;
}

.hero-media {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity .75s ease;
}

.hero-media.is-active {
    opacity: 1;
}

.hero-media-image {
    background-position: center;
    background-size: cover;
}

.hero-media-truck {
    background-image: url('/assets/images/homeslider_truck.jpg');
    background-position: 100% 100%;
}

.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    background: rgba(2, 2, 2, .6);
    pointer-events: none;
}

.hero::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -5px;
    z-index: 2;
    height: 42px;
    background: linear-gradient(182deg, rgba(84,89,95,.85) 0 48%, transparent 49% 100%);
    opacity: .65;
}

.hero-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 43% center;
    transform: scale(1.01);
}

.hero-content {
    position: absolute;
    left: 50%;
    top: 50%;
    z-index: 3;
    width: min(var(--max), calc(100% - 40px));
    margin: 0;
    padding: 70px 0 0 52px;
    color: #fff;
    opacity: 0;
    pointer-events: none;
    transform: translate(-50%, -50%);
    transition: opacity .35s ease;
}

.hero-content.is-active {
    opacity: 1;
    pointer-events: auto;
}

.hero-arrow {
    position: absolute;
    top: 50%;
    z-index: 4;
    width: 40px;
    height: 40px;
    border: 0;
    background: rgba(0,0,0,.5);
    color: #fff;
    cursor: pointer;
    transform: translateY(-50%);
    opacity: 0;
    transition: opacity .18s ease, background .18s ease;
}

.hero:hover .hero-arrow,
.hero-arrow:focus-visible {
    opacity: 1;
}

.hero-arrow:hover {
    background: #000;
}

.hero-arrow::before {
    position: absolute;
    inset: 0;
    display: grid;
    place-items: center;
    font-size: 24px;
    line-height: 1;
}

.hero-arrow-prev {
    left: 20px;
}

.hero-arrow-next {
    right: 20px;
}

.hero-arrow-prev::before {
    content: "\2039";
}

.hero-arrow-next::before {
    content: "\203a";
}

.eyebrow {
    margin: 0 0 12px;
    color: #fff;
    font-family: Raleway, Montserrat, sans-serif;
    font-size: clamp(38px, 5.2vw, 64px);
    font-weight: 300;
    line-height: 1;
}

.hero h1,
.subhero h1,
.plain-hero h1 {
    margin: 0;
    font-family: Raleway, Montserrat, sans-serif;
}

.hero h1 {
    max-width: 760px;
    font-size: clamp(30px, 4vw, 38px);
    line-height: 1.25;
    font-weight: 700;
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 55px;
    margin-top: 34px;
    padding: 0 35px;
    background: var(--red);
    color: #fff;
    text-decoration: none;
    border: 0;
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
    cursor: pointer;
}

.button:hover {
    background: #111;
}

.button-dark {
    background: #111;
}

.category-strip {
    position: relative;
    z-index: 2;
    width: min(var(--max), calc(100% - 40px));
    margin: -100px auto 0;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    padding: 20px 0;
}

.category-card {
    position: relative;
    min-height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 6px;
    padding: 24px;
    background: linear-gradient(180deg, rgba(0,0,0,.15), rgba(0,0,0,.48)), var(--bg) center / cover;
    color: #fff;
    text-decoration: none;
    overflow: hidden;
}

.category-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(37, 40, 62, .56);
    transition: background .2s ease;
}

.category-card:hover::before {
    background: rgba(37, 40, 62, .38);
}

.category-card::after {
    content: "";
    position: absolute;
    left: -4%;
    right: -4%;
    bottom: -24px;
    height: 70px;
    background: rgba(255,255,255,.55);
    transform: skewY(-4deg);
}

.category-card span {
    position: relative;
    z-index: 1;
    font-family: Raleway, Montserrat, sans-serif;
    font-size: 24px;
    font-weight: 700;
    text-align: center;
}

.intro-section,
.feature-grid,
.content-layout,
.split-band,
.tool-grid,
.plain-hero,
.dealer-shell,
.contact-grid,
.catalogue-frame-wrap {
    width: min(var(--max), calc(100% - 40px));
    margin: 0 auto;
}

.intro-section {
    padding: 50px 0 58px;
    text-align: center;
}

.intro-section h2,
.plain-hero h1 {
    font-family: Raleway, Montserrat, sans-serif;
    font-size: clamp(28px, 3.2vw, 37px);
    line-height: 1.35;
    font-weight: 400;
}

.intro-headline h2 {
    max-width: 1120px;
    margin: 0 auto;
}

.intro-headline span {
    position: relative;
    display: inline-block;
    color: #000;
    font-weight: 700;
}

.intro-headline span::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -7px;
    height: 5px;
    border-top: 2px solid var(--red);
    border-bottom: 2px solid var(--red);
}

.intro-section p,
.plain-hero p {
    max-width: 820px;
    margin: 18px auto 0;
    color: var(--muted);
    line-height: 1.8;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 52px 72px;
    padding: 10px 0 70px;
}

.feature-grid-light {
    padding-bottom: 128px;
}

.feature-grid article,
.tool-grid article {
    border-top: 0;
    padding: 0;
    background: transparent;
}

h2 {
    margin: 0 0 16px;
    font-family: Raleway, Montserrat, sans-serif;
    font-size: 28px;
    line-height: 1.25;
}

li {
    margin: 10px 0;
}

.feature-grid ul {
    margin: 20px 0 0;
    padding: 0;
    list-style: none;
}

.feature-grid h2 {
    max-width: 450px;
}

.feature-grid li {
    position: relative;
    padding-left: 28px;
    color: #94999f;
    font-size: 18px;
    line-height: 1.65;
    font-weight: 400;
}

.feature-grid li::before {
    content: "›";
    position: absolute;
    left: 3px;
    top: -1px;
    width: auto;
    height: auto;
    border: 0;
    color: var(--red);
    font-size: 24px;
    font-weight: 700;
    transform: none;
}

.feature-grid li::before {
    content: "\203a";
}

.text-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 50px;
    margin-top: 24px;
    padding: 0 34px;
    background: var(--red);
    color: #fff;
    font-weight: 700;
    text-transform: uppercase;
    text-decoration: none;
}

.text-link:hover {
    background: #232323;
    color: #fff;
}

.home-parallax {
    position: relative;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 70px;
    padding: 150px max(20px, calc((100vw - var(--max)) / 2)) 150px;
    color: #fff;
    background: linear-gradient(rgba(0,0,0,.5), rgba(0,0,0,.5)), url('/assets/images/bg_parallax_find_your_vehicle.jpg') center / cover fixed;
    overflow: hidden;
}

.home-parallax::before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    height: 78px;
    pointer-events: none;
    opacity: .75;
}

.home-parallax::before {
    top: 0;
    background: linear-gradient(177deg, #fff 0 48%, transparent 49% 100%);
}

.home-parallax article {
    position: relative;
    z-index: 1;
}

.home-parallax h2 {
    color: #fff;
}

.home-parallax p,
.home-parallax li {
    color: #fff;
}

.home-parallax ul {
    margin: 20px 0 0;
    padding: 0;
    list-style: none;
}

.home-parallax li {
    position: relative;
    padding-left: 28px;
    line-height: 1.75;
}

.home-parallax li::before {
    content: "›";
    position: absolute;
    left: 3px;
    top: -1px;
    color: #fff;
    font-size: 24px;
    font-weight: 700;
}

.home-parallax li::before {
    content: "\203a";
}

.home-parallax .text-link {
    color: #fff;
}

.latest-news {
    width: min(var(--max), calc(100% - 40px));
    margin: 0 auto;
    padding: 64px 0 96px;
}

.latest-news > h2 {
    margin-bottom: 34px;
    font-size: 32px;
    font-weight: 700;
}

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

.news-grid img {
    width: 100%;
    aspect-ratio: .66 / .44;
    object-fit: cover;
    margin-bottom: 18px;
}

.news-grid h3 {
    margin: 0 0 10px;
    color: #3b3b3b;
    font-family: Raleway, Montserrat, sans-serif;
    font-size: 22px;
    line-height: 1.25;
}

.news-grid p {
    color: var(--muted);
    line-height: 1.65;
}

.news-grid a {
    color: var(--red);
    font-family: Raleway, Montserrat, sans-serif;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
}

.subhero {
    min-height: 420px;
    display: grid;
    align-items: center;
    background: linear-gradient(90deg, rgba(0,0,0,.75), rgba(0,0,0,.22)), var(--bg) center / cover;
    color: #fff;
}

.subhero > div {
    width: min(var(--max), calc(100% - 40px));
    margin: 0 auto;
}

.subhero h1 {
    font-size: clamp(44px, 6vw, 76px);
    font-weight: 300;
}

.content-layout {
    display: grid;
    grid-template-columns: .95fr 1.35fr;
    gap: 60px;
    padding: 72px 0;
}

.copy-block {
    color: var(--muted);
    font-size: 18px;
    line-height: 1.8;
}

.process-list {
    display: grid;
    gap: 18px;
}

.process-list article {
    display: grid;
    grid-template-columns: 58px 1fr;
    gap: 18px;
    padding: 24px;
    border: 1px solid var(--line);
}

.process-list span {
    color: var(--red);
    font-size: 34px;
    font-weight: 700;
}

.process-list h2,
.process-list p {
    grid-column: 2;
    margin: 0;
}

.process-list p {
    color: var(--muted);
    line-height: 1.7;
}

.split-band {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-bottom: 86px;
    background: #111;
    color: #fff;
}

.split-band > div {
    padding: 46px;
}

.split-band > div:first-child {
    background: var(--red);
}

.split-band p {
    line-height: 1.75;
}

.about-page-bg {
    background: url("/assets/images/sedox_panamera_03.jpg") center top / cover fixed no-repeat #050505;
    padding-bottom: 70px;
}

.about-hero {
    min-height: 600px;
    background: transparent;
}

.about-intro {
    position: relative;
    z-index: 1;
    width: min(var(--max), calc(100% - 40px));
    margin: -530px auto 0;
    padding: 50px 30px;
    background: rgba(0, 0, 0, .75);
    color: #ccc;
}

.about-intro h1 {
    margin: 0 0 18px;
    color: #fff;
    font-family: Raleway, Montserrat, sans-serif;
    font-size: clamp(38px, 4vw, 44px);
    font-weight: 700;
    line-height: 1.12;
    text-shadow: 2px 2px 5px rgba(0, 0, 0, .62);
}

.about-intro p {
    max-width: 860px;
    margin: 0;
    font-size: 14px;
    font-weight: 700;
    line-height: 1.68;
}

.about-content {
    width: min(var(--max), calc(100% - 40px));
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0;
    padding: 40px 30px 100px;
    background: #fff;
}

.about-copy {
    max-width: 510px;
    color: #54595f;
    font-size: 14px;
    line-height: 1.55;
}

.about-copy p {
    margin: 0 0 18px;
}

.about-copy a {
    color: var(--red);
    font-weight: 700;
    text-decoration: none;
}

.about-copy a:hover {
    text-decoration: underline;
}

.about-logo {
    width: min(300px, 62vw);
    margin: 0 0 30px;
}

.about-gallery {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    align-self: start;
    gap: 8px;
    margin-top: 10px;
    padding-left: 30px;
}

.about-gallery a {
    position: relative;
    display: block;
    overflow: hidden;
    background: #111;
    aspect-ratio: 3 / 2;
}

.about-gallery img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: .94;
    transition: transform .45s ease, opacity .45s ease;
}

.about-gallery a:hover img {
    transform: scale(1.045);
    opacity: .78;
}

.chip-hero {
    min-height: 600px;
    background: url("/assets/images/bg_parallax_chiptuning.jpg") center center / cover fixed no-repeat;
}

.chip-intro {
    position: relative;
    z-index: 1;
    width: min(var(--max), calc(100% - 40px));
    margin: -530px auto 0;
    padding: 50px 30px;
    background: rgba(0, 0, 0, .75);
    color: #ccc;
}

.chip-intro h1 {
    margin: 0 0 18px;
    color: #fff;
    font-family: Raleway, Montserrat, sans-serif;
    font-size: clamp(38px, 4vw, 44px);
    font-weight: 700;
    line-height: 1.12;
    text-shadow: 2px 2px 5px rgba(0, 0, 0, .62);
}

.chip-intro p {
    max-width: 1040px;
    margin: 0;
    font-size: 16px;
    font-weight: 700;
    line-height: 1.68;
}

.chip-process {
    width: min(var(--max), calc(100% - 40px));
    margin: 0 auto;
    padding: 10px 30px 260px;
    background: #fff;
}

.chip-process h2 {
    margin: 0;
    padding: 20px 0 40px;
    color: var(--red);
    font-family: Raleway, Montserrat, sans-serif;
    font-size: clamp(28px, 3vw, 32px);
    font-weight: 700;
    line-height: 1.18;
    text-align: center;
}

.chip-process-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 28px;
}

.chip-process-card {
    padding: 25px;
    border: 1px solid #dbdbdb;
    background: #fff;
    box-shadow: 0 0 10px rgba(0, 0, 0, .5);
    text-align: center;
}

.chip-icon {
    display: inline-grid;
    width: 100px;
    height: 100px;
    margin-bottom: 15px;
    place-items: center;
    border-radius: 50%;
    background: var(--red);
    color: #fff;
}

.chip-icon svg {
    display: block;
    width: 54px;
    height: 54px;
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 1.8;
}

.chip-process-card h3 {
    margin: 0 0 15px;
    color: #000;
    font-family: Montserrat, Arial, sans-serif;
    font-size: 24px;
    font-weight: 700;
    line-height: 1.25;
}

.chip-process-card p {
    margin: 0;
    color: var(--muted);
    font-size: 16px;
    line-height: 1.65;
}

.chip-feature {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    min-height: 620px;
    overflow: hidden;
    background: #fff;
}

.chip-feature-card {
    position: relative;
    z-index: 2;
    align-self: center;
    margin: 100px;
    padding: 50px;
    background: #fff;
    color: #232323;
}

.chip-feature-advantages .chip-feature-card {
    text-align: right;
}

.chip-feature-card h3,
.chip-feature-card h2 {
    margin: 0;
    color: #000;
}

.chip-feature-card h3 {
    font-family: Montserrat, Arial, sans-serif;
    font-size: 22px;
    font-weight: 700;
    line-height: 1.3;
}

.chip-feature-card h2 {
    margin-bottom: 24px;
    font-family: Raleway, Montserrat, sans-serif;
    font-size: 45px;
    font-weight: 200;
    line-height: 1.12;
}

.chip-feature-card p {
    margin: 0 0 20px;
    font-size: 16px;
    line-height: 1.75;
}

.chip-feature-image {
    min-height: 620px;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}

.chip-feature-image-advantages {
    background-image: url("/assets/images/sedoxboschmdg1.jpg");
}

.chip-feature-image-price {
    background-image: url("/assets/images/newsg30obdbig.jpg");
}

.wtb-page-bg {
    background: url("/assets/images/bg_parallax_wtb.jpg") center top / cover fixed no-repeat #020608;
}

.wtb-hero {
    min-height: 600px;
    background: transparent;
}

.wtb-page-body {
    background: transparent;
    padding-bottom: 70px;
}

.wtb-intro {
    position: relative;
    z-index: 1;
    width: min(var(--max), calc(100% - 40px));
    margin: -530px auto 0;
    padding: 50px 30px;
    background: rgba(0, 0, 0, .55);
    color: #ccc;
}

.wtb-intro h1 {
    margin: 0 0 24px;
    color: #fff;
    font-family: Raleway, Montserrat, sans-serif;
    font-size: clamp(38px, 4vw, 44px);
    font-weight: 700;
    line-height: 1.12;
    text-shadow: 2px 2px 5px rgba(0, 0, 0, .62);
}

.wtb-intro p {
    margin: 0;
    color: #ccc;
    font-size: 16px;
    font-weight: 700;
    line-height: 1.68;
}

.wtb-map-section {
    width: min(var(--max), calc(100% - 40px));
    margin: 0 auto;
    padding: 0 0 90px;
    background: rgba(0, 0, 0, .55);
}

.wtb-dealer-shell {
    width: 100%;
    padding: 0;
}

.tools-page-bg {
    background: #fff;
}

.tools-hero {
    min-height: 600px;
    background-color: #fff;
    background-image:
        linear-gradient(rgba(255, 255, 255, .12), rgba(255, 255, 255, .12)),
        url("/assets/images/KESS3_OBD_Bench_Boot_programming_SuiteCase_Opened.png");
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

.tools-intro {
    position: relative;
    z-index: 1;
    width: min(var(--max), calc(100% - 40px));
    margin: -530px auto 0;
    padding: 50px 30px;
    background: rgba(0, 0, 0, .75);
    color: #ccc;
}

.tools-intro h1 {
    margin: 0 0 24px;
    color: #fff;
    font-family: Raleway, Montserrat, sans-serif;
    font-size: clamp(38px, 4vw, 44px);
    font-weight: 800;
    line-height: 1.12;
    text-shadow: 2px 2px 5px rgba(0, 0, 0, .62);
}

.tools-intro p {
    max-width: 1060px;
    margin: 0 0 16px;
    color: #ccc;
    font-size: 15px;
    font-weight: 700;
    line-height: 1.62;
}

.tools-intro p:last-child {
    margin-bottom: 0;
}

.tools-content {
    background: #fff;
    padding: 70px 0 1px;
}

.tools-section-heading {
    width: min(var(--max), calc(100% - 40px));
    margin: 0 auto;
}

.tools-section-heading h2 {
    margin-bottom: 44px;
    padding-bottom: 14px;
    border-bottom: 1px dotted #aaa;
    font-family: Raleway, Montserrat, sans-serif;
    font-size: clamp(32px, 3.8vw, 44px);
    font-weight: 300;
    line-height: 1.2;
}

.tools-section-heading h2 strong {
    font-weight: 800;
}

.tools-section-heading + .product-section {
    padding-top: 0;
    border-top: 0;
}

.tool-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 24px;
    padding-bottom: 90px;
}

.tool-grid img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    margin-bottom: 18px;
    background: #fff;
}

.tools-title {
    text-align: center;
}

.red {
    color: var(--red);
    font-family: Montserrat, Arial, sans-serif;
    font-size: 15px;
    font-weight: 700;
    text-transform: none;
}

.product-section,
.dealer-kit-section,
.cta-band {
    width: min(var(--max), calc(100% - 40px));
    margin: 0 auto;
}

.product-section {
    display: grid;
    grid-template-columns: 1fr 1.08fr;
    gap: 54px;
    align-items: center;
    padding: 54px 0;
    border-top: 1px solid var(--line);
}

.product-section-alt {
    grid-template-columns: 1.08fr 1fr;
}

.product-copy h2 {
    font-size: clamp(34px, 4.2vw, 52px);
    font-weight: 300;
}

.product-copy h2 span {
    font-weight: 700;
}

.product-copy h3 {
    margin: 0 0 18px;
    font-family: Raleway, Montserrat, sans-serif;
    font-size: clamp(26px, 3vw, 36px);
    font-weight: 300;
}

.product-copy p {
    color: var(--muted);
    line-height: 1.8;
}

.main-product-image {
    display: block;
    width: 100%;
    max-height: 460px;
    object-fit: contain;
}

.thumb-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
    margin-top: 14px;
}

.thumb-row img {
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
    border: 1px solid var(--line);
}

.product-buy-button {
    width: min(100%, 380px);
    min-height: 66px;
    gap: 14px;
    margin-top: 58px;
    font-size: 16px;
}

.product-buy-button svg {
    width: 24px;
    height: 24px;
    fill: currentColor;
    flex: 0 0 auto;
}

.mini-columns {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 22px;
    margin-top: 28px;
}

.mini-columns h4 {
    margin: 0 0 8px;
    color: var(--red);
    font-size: 16px;
}

.mini-columns p {
    margin: 0;
    font-size: 14px;
}

.dealer-kit-section {
    padding: 70px 0;
    text-align: center;
    border-top: 1px solid var(--line);
}

.dealer-kit-section p {
    max-width: 780px;
    margin: 0 auto 30px;
    color: var(--muted);
    line-height: 1.8;
}

.dealer-kit-copy {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 46px;
    margin-bottom: 26px;
    text-align: left;
}

.dealer-kit-copy p {
    margin-bottom: 0;
}

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

.kit-grid a {
    display: block;
}

.kit-grid img {
    display: block;
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
}

.cta-band {
    margin-bottom: 90px;
    padding: 56px;
    background: #111;
    color: #fff;
    text-align: center;
}

.cta-band h2 {
    max-width: 820px;
    margin: 0 auto;
    font-size: clamp(28px, 4vw, 46px);
    font-weight: 300;
}

.plain-hero {
    padding: 72px 0 34px;
}

.plain-hero h1 {
    font-weight: 300;
}

.catalogue-frame-wrap {
    padding: 40px 0 80px;
    background:
        linear-gradient(90deg, transparent 0%, rgba(0,0,0,.70) 8%, rgba(0,0,0,.70) 92%, transparent 100%),
        linear-gradient(180deg, transparent 0%, rgba(0,0,0,.18) 44px, rgba(0,0,0,.62) 118px, rgba(0,0,0,.62) 100%);
    box-shadow:
        0 -46px 72px -54px rgba(0,0,0,.95),
        -42px 0 58px -34px rgba(0,0,0,.95),
        42px 0 58px -34px rgba(0,0,0,.95);
}

.catalogue-page-body {
    background: linear-gradient(rgba(0,0,0,.42), rgba(0,0,0,.42)), url('/assets/images/sedox_panamera_04.jpg') center center / cover fixed;
    padding: 30px 0 70px;
}

.catalogue-intro {
    position: relative;
    z-index: 1;
    width: min(var(--max), calc(100% - 40px));
    margin: 0 auto;
    padding: 50px 30px 34px;
    background: transparent;
    color: #ccc;
}

.catalogue-intro h1 {
    margin: 0 0 20px;
    color: #fff;
    font-family: Raleway, Montserrat, sans-serif;
    font-size: clamp(36px, 5vw, 56px);
    font-weight: 700;
    text-shadow: 2px 2px 5px rgba(0,0,0,.62);
}

.catalogue-intro p {
    max-width: 980px;
    margin: 0;
    color: #ccc;
    font-size: 18px;
    font-weight: 700;
    line-height: 1.65;
}

.catalogue-frame {
    width: 100%;
    min-height: 760px;
    border: 0;
    background: transparent;
}

.dealer-shell {
    display: grid;
    grid-template-columns: 320px 1fr;
    gap: 0;
    padding-bottom: 90px;
}

.dealer-panel {
    min-height: 680px;
    padding: 24px 18px;
    background: rgba(17, 17, 17, .48);
    color: #fff;
    backdrop-filter: blur(2px);
}

.dealer-panel label {
    display: block;
    margin: 16px 0 8px;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
}

.dealer-panel input,
.dealer-panel select {
    width: 100%;
    min-height: 46px;
    border: 0;
    padding: 0 12px;
    font: inherit;
}

.dealer-count {
    margin: 20px 0;
    color: #ddd;
}

.dealer-list {
    max-height: 470px;
    overflow: auto;
    padding-right: 4px;
}

.dealer-item {
    width: 100%;
    border: 0;
    border-left: 3px solid transparent;
    margin-bottom: 10px;
    padding: 14px;
    background: rgba(32, 32, 32, .52);
    color: #fff;
    text-align: left;
    cursor: pointer;
}

.dealer-item:hover,
.dealer-item.is-active {
    border-left-color: var(--red);
    background: rgba(45, 45, 45, .72);
}

.dealer-item strong {
    display: block;
}

.dealer-item span {
    display: block;
    margin-top: 5px;
    color: #bdbdbd;
    font-size: 13px;
    line-height: 1.45;
}

.dealer-map {
    min-height: 680px;
    background: var(--soft);
}

.leaflet-popup-content {
    min-width: 220px;
}

.leaflet-popup-content strong {
    display: block;
    margin-bottom: 8px;
}

.leaflet-container {
    position: relative;
    overflow: hidden;
}

.leaflet-pane,
.leaflet-tile,
.leaflet-marker-icon,
.leaflet-marker-shadow,
.leaflet-tile-container,
.leaflet-pane > svg,
.leaflet-pane > canvas,
.leaflet-zoom-box,
.leaflet-image-layer,
.leaflet-layer {
    position: absolute;
    left: 0;
    top: 0;
}

.leaflet-container img {
    max-width: none !important;
    max-height: none !important;
}

.leaflet-map-pane {
    z-index: 400;
}

.leaflet-tile-pane {
    z-index: 200;
}

.leaflet-overlay-pane {
    z-index: 400;
}

.leaflet-shadow-pane {
    z-index: 500;
}

.leaflet-marker-pane {
    z-index: 600;
}

.leaflet-tooltip-pane {
    z-index: 650;
}

.leaflet-popup-pane {
    z-index: 700;
}

.leaflet-popup {
    position: absolute;
    margin-bottom: 20px;
    text-align: center;
}

.leaflet-popup-content-wrapper {
    padding: 1px;
    border-radius: 4px;
    background: #fff;
    color: #232323;
    box-shadow: 0 3px 14px rgba(0, 0, 0, .35);
}

.leaflet-popup-content {
    margin: 14px 18px;
    line-height: 1.45;
    text-align: left;
}

.leaflet-popup-tip-container {
    position: absolute;
    left: 50%;
    width: 40px;
    height: 20px;
    margin-left: -20px;
    overflow: hidden;
    pointer-events: none;
}

.leaflet-popup-tip {
    width: 17px;
    height: 17px;
    margin: -10px auto 0;
    background: #fff;
    box-shadow: 0 3px 14px rgba(0, 0, 0, .25);
    transform: rotate(45deg);
}

.leaflet-popup-close-button {
    position: absolute;
    top: 4px;
    right: 6px;
    color: #333;
    text-decoration: none;
}

.leaflet-tile {
    user-select: none;
}

.leaflet-top,
.leaflet-bottom {
    position: absolute;
    z-index: 1000;
    pointer-events: none;
}

.leaflet-top {
    top: 0;
}

.leaflet-bottom {
    bottom: 0;
}

.leaflet-left {
    left: 0;
}

.leaflet-right {
    right: 0;
}

.leaflet-control {
    float: left;
    clear: both;
    pointer-events: auto;
    margin: 10px 0 0 10px;
}

.leaflet-right .leaflet-control {
    float: right;
    margin-right: 10px;
    margin-left: 0;
}

.leaflet-bottom .leaflet-control {
    margin-top: 0;
    margin-bottom: 10px;
}

.leaflet-control-attribution {
    padding: 2px 6px;
    background: rgba(255, 255, 255, .8);
    font-size: 11px;
}

.leaflet-control-zoom a {
    display: block;
    width: 26px;
    height: 26px;
    margin: 0;
    background: #fff;
    border-bottom: 1px solid #ccc;
    color: #000;
    line-height: 26px;
    text-align: center;
    text-decoration: none;
    transition: background .16s ease, color .16s ease, transform .16s ease, box-shadow .16s ease;
}

.leaflet-control-zoom a:hover,
.leaflet-location-control button:hover {
    background: var(--red);
    color: #fff;
}

.leaflet-control-zoom a:active,
.leaflet-location-control button:active {
    box-shadow: 0 0 0 7px rgba(195, 15, 15, .22);
    transform: scale(.88);
}

.leaflet-control-zoom a.is-click-animating,
.leaflet-location-control button.is-click-animating {
    animation: controlClick .34s ease-out;
}

.dealer-marker {
    position: relative;
    cursor: pointer;
}

.dealer-marker span {
    position: absolute;
    left: 50%;
    top: 0;
    width: 22px;
    height: 22px;
    border: 3px solid #fff;
    border-radius: 50% 50% 50% 0;
    background: var(--red);
    box-shadow: 0 2px 8px rgba(0, 0, 0, .35);
    transform: translateX(-50%) rotate(-45deg);
    transition: background .16s ease, box-shadow .16s ease, transform .16s ease;
}

.dealer-marker:hover span,
.dealer-marker-active span {
    background: #ff1e1e;
    box-shadow: 0 0 0 6px rgba(195, 15, 15, .22), 0 4px 14px rgba(0, 0, 0, .45);
    transform: translateX(-50%) rotate(-45deg) scale(1.12);
}

.dealer-marker span::after {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #fff;
    transform: translate(-50%, -50%);
}

.leaflet-location-control button {
    display: grid;
    width: 32px;
    height: 32px;
    padding: 0;
    place-items: center;
    border: 0;
    background: #fff;
    color: #111;
    cursor: pointer;
    transition: background .16s ease, color .16s ease, transform .16s ease, box-shadow .16s ease;
}

.leaflet-location-control button span {
    position: relative;
    width: 16px;
    height: 16px;
    border: 2px solid currentColor;
    border-radius: 50%;
}

.leaflet-location-control button span::before,
.leaflet-location-control button span::after {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    background: currentColor;
    transform: translate(-50%, -50%);
}

.leaflet-location-control button span::before {
    width: 2px;
    height: 22px;
}

.leaflet-location-control button span::after {
    width: 22px;
    height: 2px;
}

.dealer-map.is-locating .leaflet-location-control button {
    animation: controlPulse 1s ease-in-out infinite;
}

.user-location-marker span {
    display: block;
    width: 22px;
    height: 22px;
    border: 4px solid #fff;
    border-radius: 50%;
    background: #4383ad;
    box-shadow: 0 0 0 7px rgba(67, 131, 173, .25), 0 2px 10px rgba(0, 0, 0, .45);
}

.dealer-distance,
.popup-distance {
    color: #d7d7d7;
    font-weight: 700;
}

@keyframes controlPulse {
    0% {
        box-shadow: 0 0 0 0 rgba(195, 15, 15, .35);
    }
    70% {
        box-shadow: 0 0 0 9px rgba(195, 15, 15, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(195, 15, 15, 0);
    }
}

@keyframes controlClick {
    0% {
        box-shadow: 0 0 0 0 rgba(195, 15, 15, .35);
        transform: scale(.88);
    }
    55% {
        box-shadow: 0 0 0 8px rgba(195, 15, 15, .18);
        transform: scale(1.08);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(195, 15, 15, 0);
        transform: scale(1);
    }
}

.contact-grid {
    display: grid;
    grid-template-columns: .85fr 1.15fr;
    gap: 48px;
    padding-bottom: 90px;
}

.contact-page-bg {
    background: url("/assets/images/bg_parallax_contact.jpg") center top / cover fixed no-repeat #050505;
    padding-bottom: 70px;
}

.contact-hero {
    min-height: 600px;
    background: transparent;
}

.contact-intro {
    position: relative;
    z-index: 1;
    width: min(var(--max), calc(100% - 40px));
    margin: -530px auto 0;
    padding: 50px 30px;
    background: rgba(0, 0, 0, .75);
    color: #fff;
}

.contact-intro h1 {
    margin: 0;
    color: #fff;
    font-family: Raleway, Montserrat, sans-serif;
    font-size: clamp(38px, 4vw, 44px);
    font-weight: 700;
    line-height: 1.12;
    text-shadow: 2px 2px 5px rgba(0, 0, 0, .62);
}

.contact-content {
    width: min(var(--max), calc(100% - 40px));
    margin: 0 auto;
    padding: 40px 30px 90px;
    background: #fff;
}

.contact-content > h2 {
    margin: 0 0 28px;
    color: #232323;
    font-family: Montserrat, Arial, sans-serif;
    font-size: 26px;
    font-weight: 800;
}

.contact-main-grid {
    display: grid;
    grid-template-columns: 1.25fr .9fr;
    gap: 30px;
    align-items: start;
}

.contact-info-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0;
}

.contact-info-card {
    padding: 10px 30px;
    background: #fff;
    color: #54595f;
    font-size: 14px;
    line-height: 1.55;
}

.contact-card-head {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 18px;
}

.contact-card-head svg {
    flex: 0 0 32px;
    width: 32px;
    height: 32px;
    fill: var(--red);
}

.contact-card-head h3 {
    margin: 0;
    color: #232323;
    font-family: Raleway, Montserrat, sans-serif;
    font-size: 24px;
    font-weight: 300;
    line-height: 1.3;
}

.contact-info-card p {
    margin: 0 0 16px;
}

.contact-info-card a,
.contact-card-link {
    color: var(--red);
    font-weight: 700;
    text-decoration: none;
}

.contact-info-card a:hover,
.contact-card-link:hover {
    text-decoration: underline;
}

.contact-help {
    margin: 0;
    padding: 30px;
    background: #efefef;
    color: #000;
}

.contact-help h2 {
    margin: 0 0 12px;
    color: #232323;
}

.contact-help p {
    margin: 0;
    color: #232323;
}

.contact-help-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 24px;
}

.contact-help-actions .button {
    margin-top: 0;
}

.contact-form {
    display: grid;
    gap: 18px;
}

.contact-form label {
    display: grid;
    gap: 8px;
    font-weight: 700;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    border: 1px solid var(--line);
    padding: 13px 14px;
    font: inherit;
}

.contact-form button {
    min-height: 52px;
    border: 0;
    background: var(--red);
    color: #fff;
    font-weight: 700;
    text-transform: uppercase;
    cursor: pointer;
}

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

.stat-grid div {
    padding: 28px;
    background: var(--soft);
    text-align: center;
}

.stat-grid strong {
    display: block;
    color: var(--red);
    font-size: 42px;
}

.stat-grid span {
    color: var(--muted);
}

.site-footer {
    background: #151515;
    color: #fff;
}

.footer-inner {
    width: min(var(--max), calc(100% - 40px));
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.35fr 1fr 1fr;
    gap: 70px;
    padding: 50px 0;
}

.footer-logo {
    width: 75%;
    max-width: 100%;
}

.site-footer p {
    color: #9c9c9c;
    line-height: 1.7;
}

.site-footer a {
    display: block;
    color: #9c9c9c;
    margin: 10px 0;
    text-decoration: none;
}

.footer-bottom {
    width: min(var(--max), calc(100% - 40px));
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 22px 0;
    border-top: 1px solid rgba(255,255,255,.14);
    color: #cfcfcf;
    font-size: 13px;
}

.footer-social {
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-social a {
    display: inline-grid;
    place-items: center;
    width: 34px;
    height: 34px;
    margin: 0;
    color: #fff;
    background: #2a2a2a;
    text-decoration: none;
    transition: background .18s ease, transform .18s ease;
}

.footer-social a:hover {
    background: var(--red);
    transform: translateY(-1px);
}

.footer-social svg {
    width: 18px;
    height: 18px;
    fill: currentColor;
}

@media (max-width: 1050px) {
    .nav-toggle {
        display: inline-flex !important;
        position: absolute;
        top: 50%;
        right: 20px;
        transform: translateY(-50%);
    }

    .site-nav {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        display: none;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        padding: 12px 20px 24px;
        background: #f2f2f2;
        box-shadow: 0 12px 18px rgba(0,0,0,.08);
    }

    .site-nav.is-open {
        display: flex;
    }

    .site-nav a {
        color: #000;
        padding: 14px 0;
        border-bottom: 1px solid var(--line);
    }

    .site-nav a::after {
        display: none;
    }

    .nav-item > a {
        display: flex;
        color: #000;
        padding: 14px 0;
        border-bottom: 1px solid var(--line);
    }

    .nav-dropdown {
        position: static;
        min-width: 0;
        padding: 0 0 0 18px;
        background: transparent;
        opacity: 1;
        visibility: visible;
        transform: none;
    }

    .nav-dropdown a {
        color: #000;
    }

    .category-strip,
    .home-parallax,
    .news-grid,
    .tool-grid,
    .product-section,
    .product-section-alt,
    .footer-inner {
        grid-template-columns: repeat(2, 1fr);
    }

    .dealer-shell,
    .content-layout,
    .about-content,
    .contact-grid,
    .contact-main-grid,
    .contact-info-grid,
    .chip-process-grid,
    .chip-feature {
        grid-template-columns: 1fr;
    }

    .chip-hero {
        background-attachment: scroll;
    }

    .about-page-bg {
        background-attachment: scroll;
    }

    .contact-page-bg {
        background-attachment: scroll;
    }

    .tools-hero {
        background-attachment: scroll;
    }

    .about-gallery {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        padding-left: 0;
    }

    .wtb-hero {
        background-attachment: scroll;
    }

    .wtb-page-bg {
        background-attachment: scroll;
    }

    .chip-feature-advantages .chip-feature-card {
        text-align: left;
    }

    .chip-feature-card {
        margin: 50px;
    }

    .chip-feature-price .chip-feature-image {
        order: 2;
    }

    .chip-feature-price .chip-feature-card {
        order: 1;
    }

    .dealer-panel {
        min-height: 0;
    }
}

@media (max-width: 680px) {
    .site-header {
        min-height: 76px;
        padding: 20px;
    }

    .hero {
        min-height: 560px;
    }

    .hero-content {
        padding-left: 0;
    }

    .hero-arrow {
        display: none;
    }

    .category-strip,
    .feature-grid,
    .home-parallax,
    .news-grid,
    .split-band,
    .tool-grid,
    .product-section,
    .product-section-alt,
    .dealer-kit-copy,
    .mini-columns,
    .kit-grid,
    .footer-inner,
    .stat-grid {
        grid-template-columns: 1fr;
    }

    .category-card {
        min-height: 170px;
    }

    .dealer-map {
        min-height: 520px;
    }

    .chip-hero {
        min-height: 460px;
    }

    .chip-intro {
        width: 100%;
        margin-top: -380px;
        padding: 38px 22px;
    }

    .chip-process {
        width: 100%;
        padding: 10px 20px 60px;
    }

    .about-hero {
        min-height: 460px;
    }

    .about-intro {
        width: 100%;
        margin-top: -380px;
        padding: 38px 22px;
    }

    .about-content {
        width: 100%;
        padding: 34px 22px 70px;
    }

    .about-gallery {
        grid-template-columns: 1fr;
        gap: 8px;
    }

    .contact-hero {
        min-height: 460px;
    }

    .contact-intro {
        width: 100%;
        margin-top: -380px;
        padding: 38px 22px;
    }

    .contact-content {
        width: 100%;
        padding: 34px 22px 70px;
    }

    .contact-info-grid {
        grid-template-columns: 1fr;
    }

    .contact-info-card {
        padding: 18px 0;
        border-bottom: 1px solid var(--line);
    }

    .contact-help {
        margin: 28px 0 40px;
        padding: 24px;
    }

    .tools-hero {
        min-height: 460px;
    }

    .tools-intro {
        width: 100%;
        margin-top: -380px;
        padding: 38px 22px;
    }

    .tools-content {
        padding-top: 44px;
    }

    .wtb-hero {
        min-height: 460px;
    }

    .wtb-intro {
        width: 100%;
        margin-top: -380px;
        padding: 38px 22px;
    }

    .wtb-map-section {
        width: 100%;
        padding: 10px 20px 60px;
    }

    .chip-feature {
        min-height: 0;
    }

    .chip-feature-card {
        margin: 0;
        padding: 44px 24px;
    }

    .chip-feature-card h2 {
        font-size: 38px;
    }

    .chip-feature-image {
        min-height: 340px;
    }

    .footer-bottom {
        flex-direction: column;
    }
}

@media (prefers-reduced-motion: reduce) {
    .hero-media:not(:first-child) {
        display: none;
    }

    .hero-media:first-child {
        opacity: 1;
    }
}
