:root {
    --red: #c30f0f;
    --ink: #111;
    --muted: #54595f;
    --line: #e6e6e6;
    --soft: #f7f7f7;
    --max: 1140px;
}

* {
    box-sizing: border-box;
}

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

a {
    color: inherit;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    min-height: 100px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    padding: 0 30px;
    background: #fff;
    box-shadow: 0 2px 18px rgba(0, 0, 0, .05);
}

.brand img {
    display: block;
    width: 205px;
}

.site-nav {
    display: flex;
    align-items: center;
    gap: 2px;
    font-size: 14px;
    font-weight: 800;
    text-transform: uppercase;
}

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

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

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

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

.site-nav .login-link {
    margin-left: 22px;
    padding: 16px 34px;
    border-radius: 3px;
    background: var(--red);
    color: #fff;
}

.site-nav .login-link::after {
    display: none;
}

.nav-toggle {
    display: none;
    min-width: 62px;
    height: 44px;
    border: 1px solid var(--line);
    border-radius: 3px;
    background: #fff;
    color: #111;
    font: inherit;
    font-size: 13px;
    font-weight: 800;
    text-transform: uppercase;
}

.hero {
    position: relative;
    min-height: calc(100vh - 100px);
    display: grid;
    place-items: center;
    padding: 110px 20px;
    color: #fff;
    text-align: center;
    background: #000;
    overflow: hidden;
    isolation: isolate;
}

.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    background:
        linear-gradient(rgba(0, 0, 0, .16), rgba(0, 0, 0, .28)),
        url("/assets/images/homeslide.jpg") center / cover;
    transform: scale(1.08);
    animation: heroKenBurnsOut 12s ease-out forwards;
}

.hero-content {
    position: relative;
    z-index: 1;
    width: min(760px, 100%);
    transform: translateY(62px);
    animation: heroContentZoomIn .75s ease-out .35s both;
}

.hero h1 {
    margin: 0;
    color: rgba(255, 255, 255, .58);
    font-family: Raleway, Arial, sans-serif;
    font-size: clamp(34px, 3.5vw, 43px);
    font-weight: 800;
    line-height: 1.15;
}

.hero p {
    max-width: 620px;
    margin: 14px auto 0;
    color: rgba(255, 255, 255, .48);
    font-size: 14px;
    line-height: 1.45;
}

.hero .button {
    min-height: 31px;
    margin-top: 24px;
    padding: 0 22px;
    background: #0f5d88;
    font-size: 10px;
}

.hero .button:hover {
    background: var(--red);
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    min-height: 46px;
    margin-top: 26px;
    padding: 0 28px;
    border: 0;
    border-radius: 3px;
    background: var(--red);
    color: #fff;
    font-size: 12px;
    font-weight: 800;
    text-decoration: none;
    text-transform: uppercase;
}

.button:hover {
    background: #111;
}

.button-dark {
    background: #111;
}

.button-dark:hover {
    background: var(--red);
}

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

#start,
#how-to-use,
#vehicle-catalogue,
#footer-contact,
#footer-links {
    scroll-margin-top: 115px;
}

.two-col {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 46px;
    align-items: center;
}

.powered {
    padding: 95px 0 80px;
    background:
        linear-gradient(rgba(140, 0, 0, .76), rgba(120, 0, 0, .82)),
        url("/assets/images/sedox-red-abstract-01.jpg") center / cover;
}

.powered .two-col > img,
.powered .two-col > div {
    opacity: 0;
    transition: opacity .75s ease, transform .75s ease;
}

.powered .two-col > img {
    transform: translateX(-42px);
}

.powered .two-col > div {
    transform: translateX(42px);
}

.powered.is-visible .two-col > img,
.powered.is-visible .two-col > div {
    opacity: 1;
    transform: translateX(0);
}

.powered img {
    width: 100%;
    max-height: 500px;
    object-fit: contain;
}

.powered h2,
.powered p {
    color: #fff;
}

@keyframes heroKenBurnsOut {
    from {
        transform: scale(1.08);
    }
    to {
        transform: scale(1);
    }
}

@keyframes heroContentZoomIn {
    from {
        opacity: 0;
        transform: translateY(62px) scale(.92);
    }
    to {
        opacity: 1;
        transform: translateY(62px) scale(1);
    }
}

@media (prefers-reduced-motion: reduce) {
    .hero::before,
    .hero-content {
        animation: none;
    }

    .powered .two-col > img,
    .powered .two-col > div {
        opacity: 1;
        transform: none;
        transition: none;
    }
}

h2 {
    margin: 0;
    font-family: Raleway, Arial, sans-serif;
    font-size: clamp(32px, 4vw, 48px);
    font-weight: 300;
    line-height: 1.16;
}

h2 strong,
h2 b {
    font-weight: 800;
}

h3 {
    margin: 0 0 10px;
    font-family: Raleway, Arial, sans-serif;
    font-size: 24px;
    line-height: 1.22;
}

p {
    color: var(--muted);
    font-size: 17px;
    line-height: 1.78;
}

.steps {
    min-height: 760px;
    padding: 95px 0;
    background:
        linear-gradient(90deg, rgba(255,255,255,.96) 0 50%, rgba(0,0,0,.2) 50% 100%),
        url("/assets/images/hero-bg-01.jpg") right center / cover;
}

.how-layout {
    display: grid;
    grid-template-columns: minmax(0, .92fr) minmax(300px, 1fr);
    gap: 52px;
}

.how-copy h2 {
    margin-bottom: 42px;
}

.step-list {
    display: grid;
    gap: 28px;
}

.step-list article {
    display: grid;
    grid-template-columns: 88px minmax(0, 1fr);
    gap: 20px;
    align-items: start;
}

.step-list i,
.benefit-grid i {
    display: inline-grid;
    width: 70px;
    height: 70px;
    place-items: center;
    border: 2px solid var(--red);
    border-radius: 50%;
    color: var(--red);
    font-size: 28px;
}

.step-list p {
    margin: 0;
    font-size: 16px;
}

.step-list a {
    color: var(--red);
    font-weight: 800;
    text-decoration: none;
}

.step-list span {
    color: var(--red);
    font-weight: 800;
}

.button-row {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 36px;
}

.how-visual {
    min-height: 100%;
}

.catalogue-intro {
    padding: 72px 0 22px;
    text-align: center;
}

.section-divider {
    width: 100%;
    height: 1px;
    margin-bottom: 48px;
    background: #ddd;
}

.catalogue-intro p {
    max-width: 970px;
    margin: 20px auto 0;
}

.catalogue-widget {
    padding: 20px 0 72px;
}

.catalogue-frame-wrap {
    width: 100%;
    background: #fff;
}

.catalogue-frame {
    display: block;
    width: 100%;
    min-height: 720px;
    border: 0;
}

.catalogue-shell {
    border: 1px solid #ddd;
    background: #fff;
    box-shadow: 0 8px 28px rgba(0, 0, 0, .08);
}

.catalogue-head {
    position: relative;
    padding: 36px 36px 24px;
    border-bottom: 1px solid #eee;
    text-align: center;
}

.catalogue-head h2 {
    color: var(--red);
    font-size: 34px;
    font-weight: 700;
}

.catalogue-head ul {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0;
    margin: 24px 0 0;
    padding: 0;
    list-style: none;
}

.catalogue-head li {
    min-width: 116px;
    padding: 13px 18px;
    border: 1px solid #ddd;
    background: #f7f7f7;
    color: #555;
    font-weight: 700;
}

.catalogue-head li.selected {
    background: var(--red);
    color: #fff;
    border-color: var(--red);
}

.catalogue-head img {
    position: absolute;
    right: 30px;
    top: 30px;
    width: 150px;
}

.catalogue-selects {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 14px;
    padding: 28px;
    align-items: end;
}

.catalogue-selects label {
    display: grid;
    gap: 8px;
    color: #333;
    font-weight: 700;
}

.catalogue-selects select,
.catalogue-selects button {
    min-height: 44px;
    border: 1px solid #ccc;
    padding: 0 12px;
    font: inherit;
}

.catalogue-selects button {
    background: var(--red);
    color: #fff;
    font-weight: 800;
}

.benefits {
    padding: 95px 0;
    color: #fff;
    background:
        linear-gradient(rgba(0,0,0,.78), rgba(0,0,0,.78)),
        url("/assets/images/sedox-red-abstract-01.jpg") center / cover fixed;
}

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

.benefit-grid article {
    text-align: center;
}

.benefit-grid i {
    margin-bottom: 24px;
    border-color: #fff;
    color: #fff;
}

.benefit-grid h3,
.benefit-grid a,
.benefit-grid p {
    color: #fff;
}

.benefit-grid a {
    text-decoration: none;
}

.benefit-grid p {
    margin: 0 auto;
    max-width: 300px;
}

.page-hero {
    min-height: 240px;
    display: grid;
    align-items: center;
    color: #fff;
    text-align: center;
    background:
        linear-gradient(rgba(0, 0, 0, .68), rgba(0, 0, 0, .76)),
        url("/assets/images/homeslide.jpg") center / cover;
}

.page-hero h1 {
    margin: 0;
    font-family: Raleway, Arial, sans-serif;
    font-size: clamp(30px, 4vw, 39px);
    font-weight: 800;
    line-height: 1;
}

.page-hero-files {
    background:
        linear-gradient(rgba(255, 255, 255, .2), rgba(255, 255, 255, .2)),
        url("/assets/images/sedox-header-bg.jpg") center / cover;
    background-blend-mode: screen, normal;
}

.page-hero-api {
    background: url("/assets/images/tuningfiles-header-bg.jpg") center / cover;
}

.page-hero-tools {
    background:
        linear-gradient(rgba(255, 255, 255, .14), rgba(255, 255, 255, .18)),
        url("/assets/images/sedox-header-bg.jpg") center / cover;
    background-blend-mode: screen, normal;
}

.page-hero-contact {
    background:
        linear-gradient(rgba(0, 0, 0, .62), rgba(0, 0, 0, .76)),
        url("/assets/images/sedox-red-abstract-01.jpg") center / cover;
}

.page-hero-plain {
    background:
        linear-gradient(rgba(0, 0, 0, .66), rgba(0, 0, 0, .78)),
        url("/assets/images/hero-bg-02.jpg") center / cover;
}

.content-block,
.product-section,
.contact-overview,
.contact-forms {
    padding: 72px 0;
}

.intro-section {
    padding: 72px 0 45px;
}

.starter-options {
    padding: 0 0 40px;
}

.center-heading {
    text-align: left;
}

.eyebrow {
    margin: 0 0 10px;
    color: var(--red);
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0;
    text-transform: uppercase;
}

.soft-band {
    background: var(--soft);
}

.narrow {
    max-width: 850px;
}

.content-image {
    width: 100%;
    min-height: 330px;
    object-fit: cover;
    box-shadow: 0 12px 35px rgba(0, 0, 0, .13);
}

.api-screen {
    min-height: 0;
    object-fit: contain;
    box-shadow: none;
}

.api-presentation {
    padding: 30px 0 60px;
}

.api-presentation img {
    display: block;
    width: 100%;
    height: auto;
}

.feature-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px 22px;
    margin: 18px 0 0;
    padding-left: 20px;
    color: var(--muted);
    font-size: 17px;
    line-height: 1.6;
}

.split-cards {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}

.split-cards article,
.compact-products article,
.form-panel {
    background: #f5f5f5;
    padding: 0 0 22px;
}

.split-cards img {
    width: 100%;
    aspect-ratio: 2079 / 1032;
    object-fit: cover;
    margin-bottom: 22px;
}

.icon-title {
    display: grid;
    grid-template-columns: 88px minmax(0, 1fr);
    gap: 14px;
    align-items: start;
    padding: 0 20px;
}

.icon-title i {
    display: inline-grid;
    width: 70px;
    height: 70px;
    place-items: center;
    border: 2px solid var(--red);
    border-radius: 50%;
    color: var(--red);
    font-size: 34px;
}

.icon-title h2 {
    margin-top: 0;
    font-size: 24px;
    font-weight: 800;
}

.split-cards p {
    margin: -38px 22px 0 108px;
    color: #000;
    font-size: 16px;
    line-height: 1.52;
}

.split-cards strong {
    color: #000;
}

.file-steps {
    padding: 20px 0 72px;
}

.file-steps h2 {
    margin-bottom: 46px;
    font-size: 38px;
    line-height: 1.18;
}

.intro-section h2 {
    font-size: 38px;
    line-height: 1.18;
}

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

.how-card-grid article {
    display: grid;
    grid-template-columns: 84px minmax(0, 1fr);
    gap: 18px;
    min-height: 216px;
    padding: 34px 20px 20px;
    border-radius: 8px;
    background: #f5f5f5;
}

.how-card-grid > article > i {
    display: inline-grid;
    width: 70px;
    height: 70px;
    place-items: center;
    border: 2px solid var(--red);
    border-radius: 50%;
    color: var(--red);
    font-size: 31px;
}

.how-card-grid h3 {
    margin-bottom: 4px;
    color: #000;
    font-size: 23px;
    font-weight: 800;
    text-transform: uppercase;
}

.how-card-grid p {
    margin: 0;
    color: #000;
    font-size: 16px;
    line-height: 1.45;
}

.how-card-grid a {
    color: var(--red);
    font-weight: 800;
    text-decoration: none;
}

.how-card-grid .button-row {
    margin-top: 48px;
}

.how-card-grid .button {
    margin-top: 0;
    color: #fff;
}

.green-button {
    background: #39a949;
}

.blue-button {
    background: #308fd8;
}

.catalogue-cta {
    color: #fff;
    background:
        linear-gradient(rgba(0,0,0,.72), rgba(0,0,0,.72)),
        url("/assets/images/hero-bg-02.jpg") center / cover fixed;
}

.catalogue-cta h2,
.catalogue-cta p {
    color: #fff;
}

.closing-cta {
    padding: 95px 0;
    color: #fff;
    text-align: center;
    background:
        linear-gradient(rgba(0,0,0,.78), rgba(0,0,0,.78)),
        url("/assets/images/sedox-red-abstract-01.jpg") center / cover fixed;
}

.closing-cta h2 {
    color: #fff;
}

.product-list {
    display: grid;
    gap: 62px;
    margin-top: 44px;
}

.tool-intro {
    padding-top: 60px;
    padding-bottom: 28px;
}

.tool-intro p {
    margin: 0;
}

.tools-section {
    padding-top: 42px;
}

.tool-heading h2 {
    padding-bottom: 12px;
    border-bottom: 1px dotted #aaa;
    font-size: 36px;
    line-height: 1.2;
}

.tool-detail {
    padding: 24px 0 32px;
    border-bottom: 1px dotted #b1b1b1;
}

.tool-detail:last-child {
    border-bottom: 0;
}

.tool-detail h3 {
    margin-bottom: 28px;
    font-size: 24px;
    font-weight: 400;
}

.tool-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 42px;
    align-items: start;
}

.tool-main-image {
    display: block;
    width: 100%;
    height: auto;
}

.tool-gallery {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 21px;
    margin-top: 21px;
}

.tool-gallery img {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    border: 1px solid #ded5d5;
}

.tool-gallery img:first-child,
.tool-gallery img:nth-child(3),
.tool-gallery img:nth-child(6) {
    aspect-ratio: 3 / 2;
}

.square-gallery img {
    aspect-ratio: 1 / 1;
}

.tool-copy h4 {
    margin: 22px 0 8px;
    font-family: Raleway, Arial, sans-serif;
    font-size: 18px;
    font-weight: 800;
}

.tool-copy p {
    margin: 0 0 16px;
    font-size: 17px;
    line-height: 1.68;
}

.dealer-kits {
    padding-top: 48px;
}

.dealer-copy {
    padding-top: 22px;
}

.dealer-copy p {
    margin-top: 0;
}

.dealer-kit-list {
    margin: 0;
    padding-left: 20px;
    color: var(--muted);
    font-size: 17px;
    line-height: 1.68;
}

.dealer-kit-list li + li {
    margin-top: 10px;
}

.dealer-kit-list strong {
    color: #111;
}

.dealer-kit-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
    margin-top: 20px;
}

.dealer-kit-grid img {
    display: block;
    width: 100%;
    height: auto;
}

.product-row {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 44px;
    align-items: center;
}

.product-row img {
    width: 100%;
    aspect-ratio: 16 / 10;
    object-fit: cover;
}

.product-row h4 {
    margin: 22px 0 0;
    color: var(--red);
    font-family: Raleway, Arial, sans-serif;
    font-size: 19px;
}

.compact-products {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 34px;
}

.compact-products img {
    width: 100%;
    aspect-ratio: 16 / 10;
    object-fit: cover;
    margin-bottom: 22px;
}

.contact-details h2 {
    margin-top: 22px;
    font-size: 24px;
    font-weight: 700;
}

.contact-details h2:first-child {
    margin-top: 0;
}

.map-frame {
    width: 100%;
    min-height: 460px;
    border: 0;
}

.form-panel h2 {
    font-size: 30px;
    font-weight: 700;
}

.form-panel form {
    display: grid;
    gap: 14px;
    margin-top: 24px;
}

.form-panel input,
.form-panel select,
.form-panel textarea {
    width: 100%;
    min-height: 46px;
    border: 1px solid #d7d7d7;
    padding: 12px 14px;
    color: #333;
    font: inherit;
}

.legal-content h2,
.guide-content h3 {
    margin: 34px 0 12px;
    color: #111;
    font-family: Raleway, Arial, sans-serif;
    font-size: 24px;
    font-weight: 800;
}

.legal-content h3,
.guide-content h4 {
    margin: 24px 0 8px;
    color: #111;
    font-size: 18px;
    font-weight: 800;
}

.guide-content h2 {
    color: var(--red);
}

.guide-content table {
    width: 100%;
    margin: 20px 0;
    border-collapse: collapse;
    font-size: 15px;
}

.guide-content th,
.guide-content td {
    border: 1px solid #ddd;
    padding: 12px;
    text-align: left;
}

.guide-content th {
    color: var(--red);
    font-weight: 800;
}

.guide-content ul {
    color: var(--muted);
    font-size: 17px;
    line-height: 1.7;
}

.guide-image {
    display: block;
    width: 100%;
    height: auto;
    margin: 28px 0;
}

.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, Arial, 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: Raleway, Arial, sans-serif;
    font-size: 26px;
    font-weight: 800;
}

.contact-overview-sedox .section-inner > h2 {
    margin: 0 0 28px;
    color: #232323;
    font-family: Raleway, 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, Arial, sans-serif;
    font-size: 24px;
    font-weight: 300;
    line-height: 1.3;
}

.contact-info-card p {
    margin: 0 0 16px;
    color: #54595f;
    font-size: 14px;
    line-height: 1.55;
}

.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;
}

.not-found {
    width: min(var(--max), calc(100% - 40px));
    min-height: 55vh;
    margin: 0 auto;
    padding: 80px 0;
}

.site-footer {
    background: #111;
    color: #aaa;
}

.footer-inner {
    width: min(var(--max), calc(100% - 40px));
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.2fr .3fr 1.1fr .8fr;
    gap: 42px;
    padding: 58px 0;
}

.footer-inner img {
    width: 260px;
    max-width: 100%;
    margin-bottom: 24px;
}

.site-footer h2 {
    margin: 0 0 14px;
    color: #fff;
    font-size: 18px;
    font-weight: 700;
}

.site-footer ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.site-footer li,
.site-footer a {
    color: #aaa;
    text-decoration: none;
}

.site-footer a {
    display: block;
    margin: 10px 0;
}

.contact-list li {
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 10px 0;
}

.contact-list a {
    display: inline;
    margin: 0;
}

.contact-list i {
    flex: 0 0 20px;
}

.site-footer i {
    width: 20px;
    color: var(--red);
    margin-right: 8px;
}

.contact-list i {
    margin-right: 0;
}

.social-links {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.social-links a {
    display: inline-grid;
    width: 40px;
    height: 40px;
    place-items: center;
    margin: 0;
    background: #222;
}

.social-links i {
    margin: 0;
    width: auto;
    color: #fff;
    font-size: 22px;
}

.footer-bottom {
    width: min(var(--max), calc(100% - 40px));
    margin: 0 auto;
    padding: 22px 0;
    border-top: 1px solid rgba(255,255,255,.12);
    color: #ccc;
    font-size: 13px;
}

.page-hero-partner {
    background:
        linear-gradient(rgba(0, 0, 0, .62), rgba(0, 0, 0, .76)),
        url("/assets/images/sedox-header-bg.jpg") center / cover;
}

.partner-page {
    padding: 72px 0 32px;
}

.partner-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 300px;
    gap: 54px;
    align-items: start;
}

.partner-main h2 {
    margin: 0 0 44px;
    color: #1a1a1a;
    font-size: clamp(30px, 4vw, 36px);
}

.partner-main h2 strong {
    color: var(--red);
}

.partner-main p {
    margin: 0 0 18px;
    color: #4d5664;
    font-size: 15px;
    line-height: 1.75;
}

.partner-feature-image {
    display: block;
    width: 100%;
    margin: 64px 0 62px;
    aspect-ratio: 16 / 9;
    object-fit: cover;
}

.partner-offer h3 {
    margin: 56px 0 22px;
    color: var(--red);
    font-size: 22px;
    font-weight: 800;
}

.partner-sidebar {
    display: grid;
    gap: 58px;
}

.partner-side-block h3 {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 12px;
    margin: 0 0 24px;
    color: var(--red);
    font-size: 20px;
    font-weight: 400;
    text-align: right;
}

.partner-side-block h3::before {
    content: "";
    height: 1px;
    flex: 1 1 auto;
    background: var(--red);
}

.partner-side-block img {
    display: block;
    width: 100%;
    height: auto;
    margin: 0 0 20px;
}

.partner-side-block .button {
    width: fit-content;
    min-height: 42px;
    margin: 14px auto 0;
    padding: 0 24px;
    font-size: 11px;
}

.partner-cta-section {
    padding: 80px 0 18px;
}

.partner-cta-panel {
    width: min(980px, 100%);
    margin: 0 auto;
    padding: 48px 30px;
    background: #f1f1f1;
}

.partner-cta-panel h2 {
    margin: 0 0 30px;
    color: var(--red);
    font-size: 26px;
    font-weight: 800;
}

.partner-cta-panel p {
    max-width: 760px;
    margin: 0 0 30px;
    color: #303844;
    font-size: 16px;
}

.partner-cta-panel .button {
    width: fit-content;
    min-height: 44px;
    margin-top: 8px;
    padding: 0 24px;
    font-size: 11px;
}

@media (max-width: 980px) {
    .site-header {
        min-height: 82px;
    }

    .nav-toggle {
        display: block;
        margin-left: auto;
    }

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

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

    .site-nav a,
    .site-nav .login-link {
        margin: 0;
        padding: 15px 0;
        background: transparent;
        color: #111;
        border-bottom: 1px solid var(--line);
    }

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

    .hero {
        min-height: 680px;
    }

    .two-col,
    .how-layout,
    .footer-inner,
    .split-cards,
    .how-card-grid,
    .product-row,
    .compact-products,
    .tool-layout,
    .dealer-kit-grid,
    .contact-main-grid,
    .contact-info-grid {
        grid-template-columns: 1fr;
    }

    .steps {
        background: #fff;
    }

    .catalogue-selects {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .catalogue-head img {
        position: static;
        display: block;
        margin: 24px auto 0;
    }

    .feature-list {
        grid-template-columns: 1fr;
    }

    .benefit-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 700px) {
    .site-header {
        position: sticky;
        width: 100vw;
        max-width: 100vw;
        gap: 0;
        padding: 0 20px;
    }

    .nav-toggle {
        position: absolute;
        left: min(300px, calc(100vw - 82px));
        top: 19px;
        display: block !important;
    }

    .brand img {
        width: 170px;
    }

    .hero {
        width: 100vw;
        max-width: 100vw;
        min-height: 650px;
        padding: 80px 20px;
        overflow: hidden;
    }

    .hero-content {
        width: min(300px, 100%);
        transform: none;
    }

    .hero h1 {
        max-width: 300px;
        margin-left: auto;
        margin-right: auto;
        font-size: 30px;
        overflow-wrap: anywhere;
    }

    .hero p {
        max-width: 300px;
        overflow-wrap: anywhere;
    }

    main,
    .powered,
    .steps,
    .catalogue-intro,
    .catalogue-widget,
    .benefits,
    .intro-section,
    .content-block,
    .product-section,
    .partner-page,
    .partner-cta-section,
    .contact-overview,
    .contact-forms,
    .starter-options,
    .closing-cta,
    .site-footer {
        width: 100vw;
        max-width: 100vw;
        overflow: hidden;
    }

    .section-inner,
    .footer-inner,
    .footer-bottom {
        width: min(300px, calc(100vw - 40px));
        max-width: calc(100vw - 40px);
        margin-left: auto;
        margin-right: auto;
    }

    .two-col > *,
    .how-layout > *,
    .step-list > *,
    .benefit-grid > *,
    .footer-inner > * {
        min-width: 0;
    }

    h2,
    h3,
    p {
        overflow-wrap: anywhere;
    }

    .powered,
    .steps,
    .catalogue-intro,
    .catalogue-widget,
    .benefits,
    .intro-section,
    .content-block,
    .product-section,
    .contact-overview,
    .contact-forms,
    .starter-options,
    .closing-cta {
        padding-top: 58px;
        padding-bottom: 58px;
    }

    .page-hero {
        min-height: 260px;
    }

    .page-hero h1 {
        max-width: 300px;
        font-size: 38px;
        overflow-wrap: anywhere;
    }

    .split-cards article,
    .compact-products article,
    .form-panel {
        padding: 20px;
    }

    .icon-title {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .icon-title i {
        margin: 0 auto;
    }

    .split-cards p {
        margin: 14px 20px 0;
        text-align: center;
    }

    .how-card-grid article {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .how-card-grid > article > i {
        margin: 0 auto;
    }

    .how-card-grid .button-row {
        margin-top: 26px;
    }

    .product-row {
        gap: 24px;
    }

    .step-list article {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .step-list h3,
    .step-list p {
        max-width: 280px;
        margin-left: auto;
        margin-right: auto;
    }

    .step-list p span {
        display: block;
        max-width: 260px;
        margin: 10px auto 0;
    }

    .step-list i {
        margin: 0 auto;
    }

    .button-row {
        flex-direction: column;
    }

    .catalogue-selects {
        grid-template-columns: 1fr;
    }

    .catalogue-head {
        padding: 28px 18px;
    }

    .catalogue-head ul {
        display: grid;
        grid-template-columns: 1fr;
    }

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

    .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-card {
        padding: 18px 0;
        border-bottom: 1px solid var(--line);
    }

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

    .partner-layout {
        grid-template-columns: 1fr;
    }

    .partner-sidebar {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 34px;
    }

}

@media (max-width: 700px) {
    .partner-page,
    .partner-cta-section {
        padding-top: 58px;
        padding-bottom: 58px;
    }

    .partner-page .section-inner,
    .partner-cta-section .section-inner {
        width: min(340px, calc(100vw - 40px));
    }

    .partner-layout,
    .partner-main,
    .partner-sidebar,
    .partner-cta-panel {
        min-width: 0;
    }

    .partner-main h2 {
        margin-bottom: 28px;
        font-size: 26px;
        line-height: 1.15;
    }

    .partner-main p {
        font-size: 15px;
    }

    .partner-feature-image {
        max-width: 100%;
        margin: 38px 0 46px;
    }

    .partner-offer h3 {
        margin-top: 38px;
    }

    .partner-sidebar {
        grid-template-columns: 1fr;
    }

    .partner-side-block h3 {
        justify-content: flex-start;
        text-align: left;
    }

    .partner-side-block h3::before {
        flex: 0 0 64px;
    }

    .partner-side-block img {
        max-width: 100%;
    }

    .partner-cta-panel {
        padding: 28px 22px;
    }

    .partner-cta-panel h2 {
        font-size: 24px;
        line-height: 1.15;
    }
}
