/* =========================
   RESET
========================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Montserrat", Arial, sans-serif;
    color: #171717;
    background: #fff;
    line-height: 1.5;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
}

button,
input,
select {
    font-family: inherit;
}

.container {
    width: min(1180px, calc(100% - 40px));
    margin: 0 auto;
}


/* =========================
   HEADER
========================= */

.header {
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 100;
    color: #fff;
    background: rgba(31, 38, 40, .97);
    box-shadow: 0 1px 0 rgba(255,255,255,.1);
}

html { scroll-padding-top: 106px; }
@media (max-width: 760px) { html { scroll-padding-top: 90px; } }

.header-inner {
    height: 90px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    font-size: 29px;
    font-weight: 800;
    letter-spacing: -1.5px;
}

.header-logo { display: flex; align-items: center; flex-shrink: 0; }
.header-logo img { display: block; width: clamp(130px, 16vw, 190px); height: auto; }

.logo-e {
    color: #ea5b0c;
}

.logo-dot {
    color: #ea5b0c;
}

.nav {
    display: flex;
    gap: 32px;
    margin-left: auto;
    margin-right: 35px;
}

.nav a {
    font-size: 13px;
    font-weight: 500;
    opacity: .8;
    transition: .3s;
}

.nav a:hover {
    opacity: 1;
    color: #ea5b0c;
}

.header-button {
    background: #ea5b0c;
    padding: 13px 21px;
    border-radius: 5px;
    font-size: 13px;
    font-weight: 700;
    transition: .3s;
}

.header-button:hover {
    transform: translateY(-2px);
    background: #ff7b3c;
}

.burger {
    display: none;
    border: 0;
    background: transparent;
    width: 30px;
    cursor: pointer;
}

.burger span {
    display: block;
    height: 2px;
    background: #fff;
    margin: 6px 0;
}


/* =========================
   HERO
========================= */

.hero {
    min-height: 760px;
    background: #1f2628;
    color: #fff;
    position: relative;
    overflow: hidden;
}

.hero-grid {
    position: absolute;
    inset: 0;
    opacity: .12;

    background-image:
        linear-gradient(#fff 1px, transparent 1px),
        linear-gradient(90deg, #fff 1px, transparent 1px);

    background-size: 70px 70px;

    mask-image: linear-gradient(
        to right,
        transparent,
        black 40%,
        transparent
    );
}

.hero-inner {
    min-height: 760px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-content {
    padding-top: 80px;
    padding-bottom: 48px;
    max-width: 650px;
}

.eyebrow {
    display: flex;
    align-items: center;
    gap: 10px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-size: 11px;
    font-weight: 700;
    color: #ea5b0c;
    margin-bottom: 22px;
}

.eyebrow span {
    width: 30px;
    height: 2px;
    background: #ea5b0c;
}

.eyebrow.light {
    color: #ea5b0c;
}

.hero h1 {
    font-size: clamp(42px, 5vw, 72px);
    line-height: .98;
    letter-spacing: -3px;
    max-width: 720px;
    margin-bottom: 28px;
}

.hero h1 strong {
    display: block;
    color: #ea5b0c;
    font-weight: 800;
}

.hero-subtitle {
    font-size: clamp(20px, 2vw, 25px);
    line-height: 1.35;
    font-weight: 600;
    margin-bottom: 20px;
    max-width: 560px;
}

.hero-summary {
    max-width: 560px;
    font-size: 16px;
    line-height: 1.6;
    color: #ffffff;
    margin-bottom: 28px;
}

.hero-text {
    max-width: 560px;
    color: #c3c3c3;
    font-size: 17px;
    line-height: 1.7;
    margin-bottom: 20px;
}

.hero-buttons {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
    border-radius: 5px;
    padding: 16px 25px;
    font-size: 13px;
    font-weight: 700;
    border: 1px solid transparent;
    transition: .3s;
    cursor: pointer;
}

.btn-primary {
    background: #ea5b0c;
    color: #fff;
}

.btn-primary:hover {
    background: #ff7c3c;
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(255,104,31,.2);
}

.btn-outline {
    color: #fff;
    border-color: #555;
}

.btn-outline:hover {
    border-color: #ea5b0c;
    color: #ea5b0c;
}

.btn-dark {
    background: #1f2628;
    color: #fff;
}

.btn-dark:hover {
    background: #ea5b0c;
}

.hero-note {
    margin-top: 30px;
    color: #999;
    font-size: 11px;
}

.hero-visual {
    height: 600px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-circle {
    width: 470px;
    height: 470px;
    border: 1px solid rgba(255,255,255,.12);
    border-radius: 50%;
    position: absolute;
}

.hero-circle::before {
    content: "";
    position: absolute;
    inset: 45px;
    border: 1px solid rgba(255,104,31,.25);
    border-radius: 50%;
}

.tool-image {
    width: 400px;
    height: 400px;
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: rotate(-12deg);
}

.tool-placeholder {
    width: 260px;
    height: 380px;
    border-radius: 20px;
    background:
        linear-gradient(135deg, #454545, #151515);
    box-shadow:
        30px 40px 70px rgba(0,0,0,.5),
        inset 0 0 30px rgba(255,255,255,.05);

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    color: #888;
}

.tool-icon {
    font-size: 80px;
    color: #ea5b0c;
    margin-bottom: 20px;
}

.tool-placeholder span {
    font-weight: 800;
    font-size: 25px;
    line-height: .9;
    text-align: center;
    letter-spacing: 3px;
}

.floating-card {
    position: absolute;
    z-index: 5;
    background: rgba(255,255,255,.96);
    color: #1f2628;
    padding: 18px 20px;
    box-shadow: 0 20px 50px rgba(0,0,0,.3);
    min-width: 160px;
}

.floating-card strong {
    display: block;
    font-size: 24px;
}

.floating-card span {
    display: block;
    color: #777;
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.card-top {
    top: 120px;
    right: 20px;
}

.card-bottom {
    bottom: 110px;
    left: 30px;
}

.card-bottom strong {
    color: #ea5b0c;
}


/* =========================
   NUMBERS
========================= */

.numbers {
    background: #ea5b0c;
    color: #fff;
}

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

.number-item {
    padding: 34px 20px;
    border-right: 1px solid rgba(255,255,255,.25);
}

.number-item:last-child {
    border: 0;
}

.number-item strong {
    display: block;
    font-size: 31px;
    font-weight: 800;
}

.number-item span {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: .8;
}


/* =========================
   SECTIONS
========================= */

.section {
    padding: 120px 0;
}

.section-heading {
    max-width: 720px;
    margin-bottom: 60px;
}

.section-heading.center {
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

.section-heading.center .eyebrow {
    justify-content: center;
}

.section-heading h2 {
    font-size: clamp(38px, 4.5vw, 60px);
    line-height: 1;
    letter-spacing: -2.5px;
    margin-bottom: 24px;
}

.section-heading h2 span {
    color: #ea5b0c;
}

.section-heading p {
    color: #777;
    font-size: 16px;
    line-height: 1.7;
}


/* =========================
   BENEFITS
========================= */

.benefits {
    background: #f7f7f5;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: #ddd;
}

.benefit-card {
    background: #f7f7f5;
    min-height: 300px;
    padding: 38px;
    position: relative;
    transition: .35s;
}

.benefit-card:hover {
    background: #fff;
    transform: translateY(-5px);
    z-index: 2;
    box-shadow: 0 20px 40px rgba(0,0,0,.08);
}

.benefit-number {
    position: absolute;
    right: 25px;
    top: 20px;
    font-size: 11px;
    color: #aaa;
}

.benefit-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #ddd;
    color: #ea5b0c;
    font-size: 22px;
    margin-bottom: 40px;
}

.benefit-card h3 {
    font-size: 19px;
    margin-bottom: 13px;
}

.benefit-card p {
    font-size: 13px;
    color: #777;
    line-height: 1.7;
}


/* =========================
   AUDIENCE
========================= */

.audience {
    background: #1f2628;
    color: #fff;
    padding: 120px 0;
}

.audience-inner {
    display: grid;
    grid-template-columns: .8fr 1.2fr;
    gap: 100px;
    align-items: center;
}

.audience-content h2 {
    font-size: clamp(40px, 5vw, 62px);
    line-height: 1;
    letter-spacing: -2px;
    margin-bottom: 25px;
}

.audience-content h2 strong {
    display: block;
    color: #ea5b0c;
}

.audience-content p {
    color: #999;
    line-height: 1.7;
    max-width: 450px;
    margin-bottom: 35px;
}

.audience-list {
    border-top: 1px solid #444;
}

.audience-item {
    padding: 28px 0;
    display: grid;
    grid-template-columns: 50px 1fr;
    gap: 10px;
    border-bottom: 1px solid #444;
}

.audience-item > span {
    color: #ea5b0c;
    font-size: 11px;
}

.audience-item strong {
    font-size: 19px;
}

.audience-item small {
    grid-column: 2;
    color: #888;
}


/* =========================
   HOEGERT
========================= */

.brand-block {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 600px;
    background: #f2f2f0;
}

.brand-content {
    padding: 75px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
}

.brand-logo {
    font-size: 45px;
    font-weight: 900;
    letter-spacing: 2px;
    margin-bottom: 30px;
}

.brand-content h2 {
    font-size: 44px;
    line-height: 1.05;
    letter-spacing: -2px;
    margin-bottom: 25px;
}

.brand-content h2 span {
    color: #ea5b0c;
}

.brand-content p {
    color: #666;
    font-size: 14px;
    line-height: 1.8;
    max-width: 480px;
    margin-bottom: 12px;
}

.brand-content .btn {
    margin-top: 25px;
}

.brand-visual {
    background: #1b1b1b;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-box {
    width: 280px;
    height: 380px;
    background: linear-gradient(135deg,#333,#111);
    transform: rotate(8deg);
    box-shadow: 30px 30px 80px rgba(0,0,0,.5);
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-tool {
    width: 70px;
    height: 260px;
    border-radius: 35px;
    background: linear-gradient(#ea5b0c,#a93308);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: 900;
    font-size: 30px;
}

.brand-tag {
    position: absolute;
    bottom: 35px;
    right: 35px;
    color: #fff;
    font-size: 11px;
    letter-spacing: 2px;
    line-height: 1.5;
}


/* =========================
   CONDITIONS
========================= */

.conditions {
    background: #1f2628;
    color: #ffffff;
}

.conditions .section-heading p { color: #c1c8ca; }
.conditions .condition-card { background: #293134; border-color: #4a5559; border-radius: 5px; }
.conditions .condition-card.featured { border-color: #ea5b0c; background: linear-gradient(145deg, #ea5b0c14, transparent 65%), #293134; }
.conditions .condition-card:hover { border-color: #ea5b0c; box-shadow: 0 20px 40px #0003; }
.conditions .condition-top small { color: #c1c8ca; font-size: 12px; }
.conditions .condition-card p { color: #d0d5d7; font-size: 16px; }
.conditions .discount { color: #ffffff; }
.conditions .featured .discount { color: #ea5b0c; }

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

.condition-card {
    background: #fff;
    border: 1px solid #e5e5e5;
    padding: 35px;
    min-height: 340px;
    transition: .3s;
}

.condition-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0,0,0,.08);
}

.condition-card.featured {
    border: 2px solid #ea5b0c;
}

.condition-top {
    display: flex;
    justify-content: space-between;
    margin-bottom: 50px;
}

.condition-top span {
    color: #ea5b0c;
    font-size: 12px;
    font-weight: 700;
}

.condition-top small {
    color: #999;
    text-transform: uppercase;
    font-size: 9px;
    letter-spacing: 1px;
}

.discount {
    font-size: 68px;
    line-height: 1;
    font-weight: 800;
    letter-spacing: -4px;
}

.condition-card h3 {
    margin-top: 10px;
    font-size: 14px;
    color: #ea5b0c;
}

.condition-card p {
    margin-top: 20px;
    color: #777;
    font-size: 13px;
    line-height: 1.7;
}


/* =========================
   PORTAL
========================= */

.portal {
    background: #1f2628;
    color: #fff;
    padding: 120px 0;
    overflow: hidden;
}

.portal-inner {
    display: grid;
    grid-template-columns: .9fr 1.1fr;
    gap: 90px;
    align-items: center;
}

.portal-content h2 {
    font-size: clamp(40px,5vw,62px);
    line-height: 1;
    letter-spacing: -2px;
    margin-bottom: 25px;
}

.portal-content h2 strong {
    display: block;
    color: #ea5b0c;
}

.portal-content > p {
    color: #999;
    line-height: 1.7;
    margin-bottom: 35px;
}

.portal-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 35px;
}

.portal-features div {
    font-size: 12px;
    color: #ccc;
}

.portal-features span {
    color: #ea5b0c;
    margin-right: 7px;
}

.browser {
    background: #fff;
    color: #222;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 40px 100px rgba(0,0,0,.4);
    transform: perspective(1000px) rotateY(-5deg) rotateX(3deg);
}

.browser-bar {
    height: 38px;
    background: #eee;
    display: flex;
    align-items: center;
    gap: 6px;
    padding-left: 15px;
}

.browser-bar span {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #bbb;
}

.browser-content {
    padding: 35px;
}

.fake-logo {
    font-weight: 900;
    font-size: 24px;
}

.fake-logo span {
    color: #ea5b0c;
}

.fake-search {
    margin: 30px 0;
    padding: 13px;
    border: 1px solid #ddd;
    color: #aaa;
    font-size: 12px;
}

.fake-products {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 12px;
}

.fake-product {
    border: 1px solid #eee;
    padding: 12px;
}

.fake-product > div {
    height: 100px;
    background: #eee;
    margin-bottom: 12px;
}

.fake-product span {
    display: block;
    font-size: 10px;
    color: #777;
}

.fake-product b {
    display: block;
    margin-top: 7px;
    font-size: 12px;
}


/* =========================
   PROCESS
========================= */

.process-grid {
    border-top: 1px solid #ddd;
}

.process-item {
    display: grid;
    grid-template-columns: 100px 1fr;
    padding: 35px 0;
    border-bottom: 1px solid #ddd;
    align-items: center;
}

.process-item > span {
    color: #ea5b0c;
    font-size: 12px;
    font-weight: 700;
}

.process-item h3 {
    font-size: 20px;
    margin-bottom: 5px;
}

.process-item p {
    color: #888;
    font-size: 13px;
}


/* =========================
   CTA
========================= */

.cta {
    position: relative;
    background: #f7f7f5;
    padding: 120px 0;
    overflow: hidden;
}

.cta::before {
    content: "";
    position: absolute;
    width: 500px;
    height: 500px;
    background: #ea5b0c;
    border-radius: 50%;
    right: -300px;
    top: -200px;
    opacity: .1;
}

.cta-inner {
    display: grid;
    grid-template-columns: 1fr 450px;
    gap: 100px;
    align-items: center;
}

.cta-content h2 {
    font-size: clamp(45px,5vw,70px);
    line-height: .95;
    letter-spacing: -3px;
    margin-bottom: 25px;
}

.cta-content h2 strong {
    color: #ea5b0c;
    display: block;
}

.cta-content p {
    max-width: 500px;
    color: #777;
    line-height: 1.7;
}

.contact-form {
    background: #1f2628;
    padding: 40px;
    color: #fff;
    box-shadow: 0 30px 70px rgba(0,0,0,.15);
}

.form-group {
    margin-bottom: 18px;
}

.form-group label {
    display: block;
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #999;
    margin-bottom: 7px;
}

.form-group input,
.form-group select {
    width: 100%;
    border: 1px solid #444;
    background: #242424;
    color: #fff;
    padding: 14px;
    outline: none;
    border-radius: 3px;
    font-size: 13px;
}

.form-group input:focus,
.form-group select:focus {
    border-color: #ea5b0c;
}

.form-group select option {
    background: #222;
}

.form-button {
    width: 100%;
    margin-top: 5px;
}

.contact-form small {
    display: block;
    color: #777;
    font-size: 9px;
    margin-top: 15px;
    line-height: 1.5;
}


/* =========================
   FAQ
========================= */

.faq {
    background: #fff;
}

.faq-list {
    max-width: 850px;
    margin: auto;
}

.faq-item {
    border-top: 1px solid #ddd;
}

.faq-item:last-child {
    border-bottom: 1px solid #ddd;
}

.faq-question {
    width: 100%;
    border: 0;
    background: transparent;
    padding: 25px 0;
    display: flex;
    justify-content: space-between;
    text-align: left;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
}

.faq-question span {
    color: #ea5b0c;
    font-size: 25px;
    font-weight: 400;
    transition: .3s;
}

.faq-item.active .faq-question span {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height .4s ease;
}

.faq-answer p {
    padding: 0 50px 25px 0;
    color: #777;
    font-size: 13px;
    line-height: 1.7;
}


/* =========================
   FOOTER
========================= */

.footer {
    background: #111;
    color: #fff;
    padding: 70px 0 25px;
}

.footer-inner {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 50px;
    padding-bottom: 60px;
}

.footer-brand p {
    margin-top: 15px;
    color: #777;
    font-size: 12px;
    max-width: 200px;
}

.footer-column {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-column h4 {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #ea5b0c;
    margin-bottom: 8px;
}

.footer-column a {
    color: #888;
    font-size: 12px;
    transition: .2s;
}

.footer-column a:hover {
    color: #fff;
}

.footer-bottom {
    border-top: 1px solid #292929;
    padding-top: 25px;
    display: flex;
    justify-content: space-between;
    color: #555;
    font-size: 10px;
}


/* =========================
   MODAL
========================= */

.success-modal {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,.75);
    z-index: 1000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.success-modal.active {
    display: flex;
}

.success-box {
    position: relative;
    background: #fff;
    color: #1f2628;
    max-width: 430px;
    width: 100%;
    padding: 50px;
    text-align: center;
}

.modal-close {
    position: absolute;
    top: 15px;
    right: 20px;
    background: transparent;
    border: 0;
    font-size: 28px;
    cursor: pointer;
}

.success-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #ea5b0c;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 25px;
}

.success-box h3 {
    font-size: 25px;
    margin-bottom: 10px;
}

.success-box p {
    color: #777;
    font-size: 13px;
    margin-bottom: 25px;
}


/* =========================
   ANIMATION
========================= */

.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition:
        opacity .7s ease,
        transform .7s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}


/* =========================
   RESPONSIVE
========================= */

@media (max-width: 1000px) {

    .nav {
        gap: 15px;
        margin-right: 15px;
    }

    .hero-inner,
    .audience-inner,
    .portal-inner,
    .cta-inner {
        gap: 50px;
    }

    .brand-content {
        padding: 50px;
    }

    .benefits-grid {
        grid-template-columns: repeat(2,1fr);
    }

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

    .condition-card {
        min-height: auto;
    }

    .footer-inner {
        grid-template-columns: 1.5fr 1fr 1fr;
    }

    .footer-column:last-child {
        grid-column: 2;
    }
}


@media (max-width: 760px) {

    .container {
        width: min(100% - 30px, 600px);
    }

    .header-inner {
        height: 75px;
    }

    .nav,
    .header-button {
        display: none;
    }

    .burger {
        display: block;
    }

    .nav.mobile-open {
        position: absolute;
        display: flex;
        flex-direction: column;
        top: 75px;
        left: 15px;
        right: 15px;
        background: #1f2628;
        padding: 25px;
        gap: 20px;
    }

    .hero {
        min-height: auto;
    }

    .hero-inner {
        min-height: auto;
        padding-top: 150px;
        padding-bottom: 80px;
        grid-template-columns: 1fr;
    }

    .hero h1 {
        font-size: 43px;
        letter-spacing: -2px;
    }

    .hero-text {
        font-size: 14px;
    }

    .hero-visual {
        height: 400px;
    }

    .hero-circle {
        width: 300px;
        height: 300px;
    }

    .tool-image {
        transform: rotate(-8deg) scale(.75);
    }

    .card-top {
        top: 25px;
        right: 0;
    }

    .card-bottom {
        bottom: 25px;
        left: 0;
    }

    .numbers-grid {
        grid-template-columns: repeat(2,1fr);
    }

    .number-item:nth-child(2) {
        border-right: 0;
    }

    .number-item:nth-child(3) {
        border-top: 1px solid rgba(255,255,255,.25);
    }

    .number-item:nth-child(4) {
        border-top: 1px solid rgba(255,255,255,.25);
    }

    .section {
        padding: 80px 0;
    }

    .section-heading {
        margin-bottom: 40px;
    }

    .section-heading h2 {
        font-size: 40px;
    }

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

    .benefit-card {
        min-height: 260px;
    }

    .audience {
        padding: 80px 0;
    }

    .audience-inner {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .brand-block {
        grid-template-columns: 1fr;
    }

    .brand-content {
        padding: 45px 30px;
    }

    .brand-content h2 {
        font-size: 38px;
    }

    .brand-visual {
        min-height: 450px;
    }

    .portal {
        padding: 80px 0;
    }

    .portal-inner {
        grid-template-columns: 1fr;
    }

    .portal-features {
        grid-template-columns: 1fr;
    }

    .browser {
        transform: none;
    }

    .fake-products {
        grid-template-columns: 1fr;
    }

    .fake-product:not(:first-child) {
        display: none;
    }

    .cta-inner {
        grid-template-columns: 1fr;
    }

    .cta {
        padding: 80px 0;
    }

    .contact-form {
        padding: 30px 20px;
    }

    .footer-inner {
        grid-template-columns: 1fr 1fr;
    }

    .footer-column:last-child {
        grid-column: auto;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 8px;
    }

}


@media (max-width: 430px) {

    .hero h1 {
        font-size: 38px;
    }

    .hero-note {
        line-height: 2;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: stretch;
    }

    .btn {
        width: 100%;
    }

    .discount {
        font-size: 55px;
    }

    .footer-inner {
        grid-template-columns: 1fr;
    }

}
/* Dealer benefits: four equal rectangular cards, then two and one. */
.dealer-benefits { background: #1f2628; color: #ffffff; }
.dealer-benefits .section-heading { max-width: 940px; }
.dealer-benefits .section-heading h2 { line-height: 1.1; letter-spacing: -1.5px; }
.dealer-benefits .section-heading p { color: #c1c8ca; font-size: 16px; }
.dealer-benefits .benefits-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 16px; background: transparent; }
.dealer-benefits .benefit-card { min-width: 0; padding: 28px 22px 32px; background: #293134; border: 1px solid #465155; border-top: 3px solid #ea5b0c; }
.dealer-benefits .benefit-card:hover { background: #303b3f; }
.dealer-card-number { display: block; color: #c1c8ca; font-size: 14px; font-weight: 600; margin-bottom: 32px; }
.dealer-benefits .benefit-card h3 { font-size: 21px; line-height: 1.3; min-height: 82px; margin-bottom: 18px; }
.dealer-benefits .benefit-card p { font-size: 16px; line-height: 1.65; color: #d0d6d8; }
@media (max-width: 1100px) { .dealer-benefits .benefits-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); } .dealer-benefits .benefit-card h3 { min-height: 0; } }
@media (max-width: 600px) { .dealer-benefits .benefits-grid { grid-template-columns: minmax(0, 1fr); } .dealer-benefits .section-heading h2 { font-size: 34px; letter-spacing: -1px; } }

/* Business formats */
.business-formats { position: relative; background: #1f2628; overflow: hidden; }
.business-formats::before { content: ''; position: absolute; width: 520px; height: 520px; border: 1px solid #ffffff0b; border-radius: 50%; top: -310px; right: -90px; pointer-events: none; }
.formats-heading { position: relative; display: flex; justify-content: space-between; align-items: flex-end; gap: 40px; margin-bottom: 54px; }
.formats-heading h2 { max-width: 780px; font-size: clamp(36px, 4.5vw, 60px); line-height: 1.08; letter-spacing: -1.8px; }
.formats-heading h2 strong { display: block; color: #ea5b0c; }
.formats-cta { display: inline-flex; align-items: center; gap: 20px; flex-shrink: 0; font-size: 14px; padding: 14px 0; border-bottom: 1px solid #ea5b0c; }
.formats-cta span { color: #ea5b0c; font-size: 24px; }
.formats-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 20px; }
.format-card { position: relative; min-width: 0; padding: 36px 38px 40px; border: 1px solid #ffffff20; background: linear-gradient(125deg, #ffffff05, transparent); border-radius: 4px; transition: border-color .2s ease, background-color .2s ease; }
.format-card::after { content: ''; position: absolute; bottom: -1px; left: 38px; width: 48px; height: 2px; background: #ea5b0c; }
.format-card:hover { border-color: #ea5b0c80; background-color: #ffffff04; }
.format-card-top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 28px; }
.format-card-top svg { color: #ea5b0c; }
.format-index { font-size: 14px; letter-spacing: 2px; color: #a7afb2; font-variant-numeric: tabular-nums; }
.format-card h3 { color: #ffffff; font-size: clamp(22px, 2.2vw, 28px); line-height: 1.25; margin-bottom: 16px; font-weight: 600; }
.format-card p { max-width: 480px; color: #c1c8ca; font-size: 16px; line-height: 1.7; }
.formats-cta:focus-visible { outline: 2px solid #ea5b0c; outline-offset: 6px; }
@media (max-width: 900px) { .formats-heading { align-items: flex-start; flex-direction: column; gap: 20px; } }
@media (max-width: 600px) { .formats-grid { grid-template-columns: minmax(0, 1fr); gap: 16px; } .formats-heading { margin-bottom: 32px; } .formats-heading h2 { letter-spacing: -1px; } .format-card { padding: 26px; } .format-card::after { left: 26px; } }
@media (prefers-reduced-motion: reduce) { .format-card { transition: none; } }

/* Warehouse photography on the first screen. */
.header .nav { margin-right: 0; }
.warehouse-visual { position: relative; isolation: isolate; min-width: 0; height: 580px; margin: 75px 0 35px 30px; }
.warehouse-orbit { position: absolute; width: 94%; aspect-ratio: 1; top: 50%; left: 50%; transform: translate(-50%, -50%); border: 1px solid #ffffff18; border-radius: 50%; background: radial-gradient(circle, #ea5b0c18, transparent 68%); }
.warehouse-orbit::before { content: ''; position: absolute; inset: 9%; border: 1px solid #ea5b0c45; border-radius: 50%; }
.warehouse-orbit::after { content: ''; position: absolute; width: 10px; height: 10px; background: #ea5b0c; border-radius: 50%; top: 16%; right: 12%; box-shadow: 0 0 28px #ea5b0c70; }
.warehouse-photo-frame { position: absolute; width: 83%; height: 65%; top: 15%; left: 7%; transform: rotate(-6deg); border: 7px solid #30383a; border-radius: 18px; overflow: hidden; box-shadow: 20px 32px 65px #0007; }
.warehouse-photo-frame::after { content: ''; position: absolute; inset: 0; background: linear-gradient(180deg, #1f262805 45%, #1f26287a); pointer-events: none; }
.warehouse-main { display: block; width: 100%; height: 100%; object-fit: cover; object-position: 52% center; }
.warehouse-detail-frame { position: absolute; z-index: 2; right: 1%; bottom: 11%; width: 43%; aspect-ratio: 3 / 2; transform: rotate(7deg); border: 5px solid #384143; border-radius: 10px; overflow: hidden; box-shadow: 12px 20px 35px #0006; }
.warehouse-detail { display: block; width: 100%; height: 100%; object-fit: cover; }
.warehouse-aisle-frame { position: absolute; z-index: 2; left: 0; top: 40%; width: 27%; aspect-ratio: 3 / 4; transform: rotate(-10deg); border: 5px solid #384143; border-radius: 10px; overflow: hidden; box-shadow: 12px 20px 35px #0006; }
.warehouse-aisle-frame img { display: block; width: 100%; height: 100%; object-fit: cover; }
.warehouse-label, .warehouse-dispatch { position: absolute; z-index: 3; padding: 17px 22px; box-shadow: 0 16px 40px #0004; border-radius: 5px; }
.warehouse-label { top: 10%; right: 0; background: #ffffff; color: #1f2628; border-top: 3px solid #ea5b0c; }
.warehouse-label span, .warehouse-dispatch span { display: block; font-size: 13px; margin-bottom: 4px; }
.warehouse-label strong { display: block; font-size: 25px; line-height: 1.2; }
.warehouse-dispatch { bottom: 7%; left: 1%; background: #1f2628; color: #ffffff; border: 1px solid #ffffff25; border-left: 3px solid #ea5b0c; }
.warehouse-dispatch span { color: #c3c9cb; }
.warehouse-dispatch strong { display: block; font-size: 18px; }
@media (max-width: 1000px) and (min-width: 761px) { .warehouse-visual { margin-left: 0; height: 490px; } .warehouse-label, .warehouse-dispatch { padding: 13px 15px; } .warehouse-dispatch strong { font-size: 16px; } }
@media (max-width: 760px) { .warehouse-visual { margin: 0; height: auto; aspect-ratio: 1; } .warehouse-photo-frame { border-width: 5px; } .warehouse-label, .warehouse-dispatch { padding: 12px 15px; } .warehouse-label strong { font-size: 21px; } .warehouse-dispatch strong { font-size: 16px; } .warehouse-detail-frame { right: 2%; bottom: 17%; } .warehouse-dispatch { bottom: 2%; } }

/* Högert importer and partner brands */
.section.hoegert { padding: 0; background: #f2f2f0; }
.hoegert > .container { width: 100%; max-width: none; }
.hoegert .brand-block { min-height: 100svh; }
.hoegert .brand-block .brand-content { padding: 80px max(40px, calc((100vw - 1180px) / 2)); padding-right: clamp(36px, 5vw, 90px); }
.hoegert .brand-block .brand-visual { position: relative; }
.hoegert .brand-block .hoegert-action { position: absolute; inset: 0; min-height: 0; height: 100%; }
.hoegert .other-brands { width: min(1180px, calc(100% - 40px)); margin: 0 auto; padding: 36px 0; border-top: 0; }
@media(max-width: 760px) {
    .hoegert .brand-block { min-height: 100svh; }
    .hoegert .brand-block .brand-content { padding: 60px 25px; }
    .hoegert .brand-block .hoegert-action { position: static; height: auto; }
}
.hoegert .brand-logo { width: 100%; max-width: 330px; margin-bottom: 34px; }
.hoegert .brand-logo img { display: block; width: 100%; height: auto; }
.hoegert .brand-content { padding: clamp(30px, 4vw, 64px); }
.hoegert .brand-content p { font-size: 16px; line-height: 1.7; }
.hoegert .brand-visual { min-width: 0; background: #1f2628; }
.hoegert-action { display: block; width: 100%; height: 100%; min-height: 600px; object-fit: cover; object-position: center; }
.other-brands { display: flex; align-items: center; justify-content: space-between; gap: 40px; padding: 34px 0 0; margin-top: 32px; border-top: 1px solid #dce0e1; }
.other-brands h3 { color: #1f2628; font-size: 24px; line-height: 1.3; margin-bottom: 12px; }
.other-brands p { max-width: 730px; font-size: 16px; line-height: 1.7; color: #505a5e; }
.other-brands-link { flex-shrink: 0; display: inline-flex; align-items: center; gap: 16px; padding: 14px 0; border-bottom: 2px solid #ea5b0c; font-size: 16px; font-weight: 600; }
.other-brands-link span { color: #ea5b0c; font-size: 24px; }
.other-brands-link:focus-visible { outline: 2px solid #ea5b0c; outline-offset: 6px; }
@media(max-width: 900px) { .other-brands { align-items: flex-start; flex-direction: column; gap: 20px; } }
@media(max-width: 760px) { .hoegert-action { min-height: 0; height: auto; aspect-ratio: 1; } .hoegert .brand-visual { min-height: 0; } }

.portal-preview-link { display: block; }
.portal-screenshot { display: block; width: 100%; height: auto; }
.portal-preview-link:focus-visible { outline: 3px solid #ea5b0c; outline-offset: -3px; }

/* Dealer application */
.cta-inner { grid-template-columns: .85fr 1.15fr; gap: 70px; }
.dealer-form { background: #1f2628; border-top: 3px solid #ea5b0c; border-radius: 5px; }
.dealer-form h3 { font-size: 25px; line-height: 1.25; margin-bottom: 14px; }
.dealer-form .form-intro { color: #c1c8ca; font-size: 14px; line-height: 1.6; margin-bottom: 26px; }
.dealer-fields { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 0 18px; }
.field-wide { grid-column: 1 / -1; }
.dealer-form .form-group { min-width: 0; }
.dealer-form label { font-size: 14px; text-transform: none; letter-spacing: 0; color: #e2e6e7; }
.dealer-form input, .dealer-form select, .dealer-form textarea { font: inherit; font-size: 16px; width: 100%; min-height: 48px; padding: 13px; border: 1px solid #596367; background: #293134; color: #fff; border-radius: 4px; }
.dealer-form textarea { resize: vertical; }
.dealer-form input::placeholder, .dealer-form textarea::placeholder { color: #aeb8bc; }
.dealer-form :is(input,select,textarea,button):focus-visible { outline: 2px solid #ea5b0c; outline-offset: 3px; }
.dealer-form small { font-size: 12px; color: #bdc6c9; }
.dealer-form .form-status { font-size: 13px; line-height: 1.5; color: #d1d9dc; margin-top: 18px; padding-top: 16px; border-top: 1px solid #ffffff20; }
@media(max-width: 900px) { .cta-inner { grid-template-columns: 1fr; gap: 35px; } }
@media(max-width: 480px) { .dealer-fields { grid-template-columns: 1fr; } }

/* Two warehouse views: portrait main image and landscape detail. */
.warehouse-photo-frame { width: 58%; height: auto; aspect-ratio: 3 / 4; top: 10%; left: 12%; }
.warehouse-detail-frame { width: 49%; right: 0; bottom: 13%; }
@media (max-width: 760px) { .warehouse-photo-frame { width: 55%; top: 3%; left: 13%; } .warehouse-detail-frame { width: 47%; bottom: 13%; } }

/* Footer navigation and verified contact details. */
.footer { background: #1f2628; }
.footer-inner { grid-template-columns: 1.1fr 1fr 1.15fr 1.15fr; gap: 28px; }
.footer-hours ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 12px; color: #d1d8da; font-size: 16px; line-height: 1.6; }
.footer-logo { display: block; max-width: 230px; }
.footer-logo img { display: block; width: 100%; height: auto; }
.footer-brand p { font-size: 14px; color: #b9c2c5; max-width: 240px; }
.footer-column a { font-size: 14px; color: #d1d8da; line-height: 1.5; }
.footer-column h4 { font-size: 14px; }
.footer-contact-label { font-size: 14px; color: #b9c2c5; }
.footer-column a[href^="tel:"] { white-space: nowrap; }
.footer-column a:focus-visible, .footer-logo:focus-visible { outline: 2px solid #ea5b0c; outline-offset: 5px; }
.footer-bottom { font-size: 12px; color: #b9c2c5; border-color: #ffffff20; }
@media(max-width: 1000px) { .footer-inner { grid-template-columns: repeat(2, minmax(0, 1fr)); } .footer-column:last-child { grid-column: auto; } }
@media(max-width: 500px) { .footer-inner { grid-template-columns: 1fr; } }

/* About Eopt: second slide. */
.about-company { min-height: 100svh; display: flex; align-items: center; padding: 90px 0; background: #f3f5f5; color: #1f2628; }
.about-company h2 { max-width: 960px; font-size: clamp(34px, 4.2vw, 58px); line-height: 1.1; letter-spacing: -1.8px; margin-bottom: 44px; }
.about-company h2 span { color: #c94b06; }
.about-metrics { display: grid; grid-template-columns: repeat(4, minmax(0,1fr)); border-top: 1px solid #cdd4d6; border-bottom: 1px solid #cdd4d6; margin-bottom: 44px; }
.about-metrics > div { padding: 25px 22px; border-right: 1px solid #cdd4d6; }
.about-metrics > div:first-child { padding-left: 0; }
.about-metrics > div:last-child { border-right: 0; }
.about-metrics strong { display: block; font-size: clamp(38px,4.2vw,60px); line-height: 1.1; letter-spacing: -2px; margin-bottom: 12px; }
.about-metrics span { display: block; max-width: 180px; font-size: 15px; line-height: 1.5; color: #505a5e; }
.about-story { display: grid; grid-template-columns: .85fr 1.15fr; gap: 65px; }
.about-lead { font-size: clamp(22px,2.3vw,30px); line-height: 1.45; font-weight: 600; }
.about-description p { font-size: 16px; line-height: 1.75; color: #505a5e; margin-bottom: 18px; }
.about-description strong { color: #1f2628; font-weight: 600; }
.about-purpose { margin-top: 26px; padding: 25px 30px; border-left: 3px solid #ea5b0c; background: #ffffff; }
.about-purpose p { font-size: 16px; line-height: 1.6; color: #505a5e; margin-bottom: 9px; }
.about-purpose > strong { display: block; font-size: clamp(20px,2vw,26px); line-height: 1.4; }
@media(max-width: 900px) { .about-story { grid-template-columns: 1fr; gap: 25px; } .about-metrics { grid-template-columns: repeat(2,minmax(0,1fr)); } .about-metrics > div { padding: 22px; border-right: 0; } .about-metrics > div:first-child { padding-left: 22px; } }
@media(max-width: 600px) { .about-company { padding: 65px 0; } .about-company h2 { letter-spacing: -1px; } .about-metrics { grid-template-columns: repeat(2,minmax(0,1fr)); } .about-metrics > div { padding: 20px 12px; } .about-metrics > div:first-child { padding-left: 12px; } .about-purpose { padding: 22px; } }

/* Branded logistics photograph in the company story. */
.about-story { grid-template-columns: 1.05fr 1fr; align-items: center; gap: 48px; }
.about-logistics { position: relative; min-width: 0; margin: 0; padding: 0 12px 12px 0; }
.about-logistics::before { content: ''; position: absolute; inset: 24px 0 0 24px; background: #ea5b0c; border-radius: 6px; }
.about-logistics img { position: relative; display: block; width: 100%; height: auto; border-radius: 6px; box-shadow: 0 18px 35px #1f262820; }
.about-description .about-lead { color: #1f2628; font-size: clamp(21px,2vw,27px); line-height: 1.4; font-weight: 600; margin-bottom: 22px; }
@media(max-width: 900px) { .about-story { grid-template-columns: 1fr; gap: 32px; } .about-logistics { max-width: 640px; width: 100%; } }

/* Larger Högert content panel. */
.hoegert .brand-block .brand-content { padding: 80px clamp(32px, 5vw, 100px); }
.hoegert .brand-logo { max-width: 410px; margin-bottom: 38px; }
.hoegert .brand-content h2 { font-size: clamp(42px, 3.4vw, 66px); line-height: 1.08; letter-spacing: -1.5px; max-width: 680px; margin-bottom: 30px; }
.hoegert .brand-content p { font-size: 19px; line-height: 1.7; max-width: 640px; margin-bottom: 18px; }
.hoegert .brand-content .btn { font-size: 16px; padding: 20px 28px; margin-top: 24px; }
.hoegert .brand-content .eyebrow { font-size: 13px; }
@media(max-width: 1000px) { .hoegert .brand-block .brand-content { padding: 60px 32px; } .hoegert .brand-content h2 { font-size: 42px; } .hoegert .brand-content p { font-size: 17px; } }
@media(max-width: 760px) { .hoegert .brand-block .brand-content { padding: 60px 25px; } .hoegert .brand-content h2 { font-size: clamp(34px, 7vw, 48px); } .hoegert .brand-content .btn { max-width: 100%; padding: 18px 20px; } }
.hero-b { min-height: 100svh; background: #1f2628; }
.hero-b-photo { position: absolute; inset: 0 0 0 40%; }
.hero-b-photo img { display: block; width: 100%; height: 100%; object-fit: cover; object-position: 60% center; }
.hero-b-photo::after { content: ''; position: absolute; inset: 0; background: linear-gradient(90deg,#1f2628 0%,#1f2628b0 24%,#1f262825 65%),linear-gradient(0deg,#1f2628 0%,transparent 40%,#1f262870 100%); }
.hero-b-layout { position: relative; z-index: 1; min-height: 100svh; display: flex; flex-direction: column; justify-content: center; padding-top: 150px; padding-bottom: 45px; }
.hero-b-copy { max-width: 710px; padding-bottom: 65px; }
.hero-b h1 { font-size: clamp(44px,5vw,76px); line-height: 1.07; letter-spacing: -2.5px; margin-bottom: 28px; }
.hero-b-intro { max-width: 540px; font-size: 19px; line-height: 1.7; color: #e0e4e5; margin-bottom: 34px; }
.hero-b-more { display: inline-flex; align-items: center; padding: 15px 5px; gap: 18px; font-size: 16px; border-bottom: 1px solid #ffffff60; }
.hero-b-facts { display: grid; grid-template-columns: repeat(3,1fr); gap: 30px; border-top: 1px solid #ffffff40; padding-top: 26px; }
.hero-b-facts div { font-size: 16px; display: flex; align-items: center; gap: 16px; }
.hero-b-facts span { font-size: 12px; color: #ea5b0c; }
@media(max-width:760px) { .hero-b-layout { min-height: auto; padding-top: 135px; padding-bottom: 35px; } .hero-b-copy { padding-bottom: 35px; } .hero-b h1 { font-size: clamp(38px,7vw,54px); letter-spacing: -1.5px; } .hero-b-intro { font-size: 17px; } .hero-b-photo { position: relative; inset: auto; height: 310px; margin-top: 25px; order: 2; } .hero-b { display: flex; flex-direction: column; } .hero-b-photo::after { background: linear-gradient(180deg,#1f2628,transparent 40%); } .hero-b-facts { grid-template-columns: 1fr; gap: 16px; } .design-compare { bottom: 10px; gap: 6px; font-size: 12px; } .design-compare > span { display:none; } }


/* Readability across the landing page. */
body { font-size: 17px; line-height: 1.65; }
.header .nav a { font-size: 16px; font-weight: 600; opacity: 1; }
.header .nav { gap: clamp(18px, 2.2vw, 32px); }
.hero-b h1, .section-heading h2, .dealer-benefits .section-heading h2,
.about-company h2, .formats-heading h2, .hoegert .brand-content h2,
.portal-content h2, .cta-content h2 { line-height: 1.16; letter-spacing: -.025em; }
.btn { font-size: 16px; line-height: 1.4; }
.eyebrow, .hoegert .brand-content .eyebrow { font-size: 14px; letter-spacing: .07em; }
.section-heading p, .cta-content p, .process-item p, .faq-answer p { font-size: 17px; line-height: 1.75; color: #505a5e; }
.dealer-benefits .benefit-card p, .format-card p, .about-description p, .other-brands p { font-size: 17px; line-height: 1.75; }
.about-description .about-lead { font-size: clamp(22px,2vw,28px); line-height: 1.45; }
.dealer-benefits .benefit-card h3 { min-height: 0; line-height: 1.4; }
.portal-content > p { color: #d1d8da; font-size: 18px; line-height: 1.75; }
.portal-features div { font-size: 16px; line-height: 1.6; color: #e2e7e9; }
.conditions .section-heading p, .conditions .condition-card p { color: #d0d5d7; font-size: 17px; }
.conditions .condition-top small, .conditions .condition-top span { font-size: 14px; }
.conditions .condition-card h3 { font-size: 17px; }
.process-item h3 { font-size: 23px; line-height: 1.4; }
.process-item > span { font-size: 15px; }
.faq-question { font-size: 19px; line-height: 1.5; align-items: center; gap: 20px; color: #1f2628; }
.dealer-form label, .dealer-form .form-intro { font-size: 16px; line-height: 1.5; }
.dealer-form small, .dealer-form .form-status { font-size: 14px; line-height: 1.65; }
.footer-column a, .footer-contact-label { font-size: 16px; line-height: 1.6; }
.footer-bottom { font-size: 14px; }
.about-metrics span { font-size: 16px; }
@media(max-width: 900px) and (min-width: 761px) { .header-logo img { width: 145px; } .header .nav { gap: 16px; } .header .nav a { font-size: 15px; } }
@media(max-width: 600px) { .dealer-benefits .benefit-card { padding: 28px; } .process-item { grid-template-columns: 45px minmax(0,1fr); } .faq-answer p { padding-right: 0; } .condition-top { gap: 16px; flex-wrap: wrap; } }

/* Align the other-brands text with the Högert content above. */
.hoegert .other-brands { width: 100%; margin: 0; padding: 36px clamp(32px, 5vw, 100px); }
@media(max-width: 1000px) { .hoegert .other-brands { padding-left: 32px; padding-right: 32px; } }
@media(max-width: 760px) { .hoegert .other-brands { padding-left: 25px; padding-right: 25px; } }

/* Larger first-slide typography. */
.hero-b-copy { max-width: 820px; }
.hero-b h1 { font-size: clamp(52px, 5.8vw, 88px); max-width: 820px; line-height: 1.12; }
.hero-b-intro { max-width: 630px; font-size: 22px; line-height: 1.65; }
@media(max-width: 760px) { .hero-b h1 { font-size: clamp(42px, 8vw, 62px); } .hero-b-intro { font-size: 19px; } }


/* Unified Montserrat typography and viewport-sized sections. */
:root { --header-height: 90px; --slide-height: calc(100svh - var(--header-height)); }
body { font-family: "Montserrat", Arial, sans-serif; font-size: 1.0625rem; line-height: 1.7; font-weight: 400; }
button, input, select, textarea { font-family: inherit; }
h1, h2, h3 { overflow-wrap: break-word; }
.hero-b h1, .section-heading h2, .dealer-benefits .section-heading h2, .about-company h2,
.formats-heading h2, .hoegert .brand-content h2, .portal-content h2, .cta-content h2 { line-height: 1.2; letter-spacing: -.02em; font-weight: 700; }
.section-heading h2, .dealer-benefits .section-heading h2, .about-company h2,
.formats-heading h2, .hoegert .brand-content h2, .portal-content h2, .cta-content h2 { font-size: clamp(2rem, 3.4vw, 3.5rem); }
.dealer-benefits .benefit-card p, .format-card p, .about-description p, .other-brands p,
.conditions .condition-card p, .faq-answer p, .process-item p { font-size: 1.0625rem; line-height: 1.75; }
.dealer-benefits .section-heading p, .section-heading p, .cta-content p { color: #465155; }
.conditions .section-heading p { color: #d0d5d7; }
.hero-b-intro { color: #f0f2f3; }
.btn { font-size: 1rem; font-weight: 700; }
.btn-primary { color: #172023; }
.eyebrow { color: #b74405; }
.hero .eyebrow, .audience .eyebrow, .conditions .eyebrow, .portal .eyebrow { color: #ff965c; }
.header .nav a { font-size: 1rem; line-height: 1.5; }
.footer-column a, .footer-contact-label, .footer-hours ul { font-size: 1rem; }
section.section, section.about-company, section.audience, section.portal, section.cta { min-height: var(--slide-height); box-sizing: border-box; padding-block: clamp(48px, 6vh, 80px); display: flex; align-items: center; }
section.hero-b { min-height: 100svh; }
.hero-b-layout { min-height: 100svh; padding-top: calc(var(--header-height) + 55px); padding-bottom: 55px; }
.hero-b-copy { padding-bottom: 0; }
section.hoegert { padding: 0; }
.hoegert > .container { min-height: var(--slide-height); display: flex; flex-direction: column; }
.hoegert .brand-block { min-height: 0; flex: 1; }
.hoegert .brand-block .brand-content { padding-block: 48px; }
.hoegert .other-brands { padding-block: 28px; }
.about-company h2, .section-heading, .formats-heading { margin-bottom: 36px; }
.about-metrics { margin-bottom: 32px; }
.about-metrics > div { padding-block: 20px; }
.about-logistics { max-width: 520px; }
@media(max-width: 1050px) and (min-width: 761px) { .header .nav { gap: 14px; } .header .nav a { font-size: .875rem; } }
@media(max-width: 760px) {
    :root { --header-height: 75px; }
    section.section, section.about-company, section.audience, section.portal, section.cta { padding-block: 48px; }
    section.hoegert { padding: 0; }
    .hero-b-layout { min-height: auto; padding-top: 120px; padding-bottom: 36px; }
    .hero-b h1 { font-size: clamp(2.25rem, 7.8vw, 3.5rem); }
    .hero-b-intro { font-size: 1.125rem; }
    .hoegert .brand-block .brand-content { padding-block: 48px; }
    .about-company h2, .section-heading, .formats-heading { margin-bottom: 28px; }
}

/* Approved content and card refinements. */
.dealer-benefits .section-heading p { color: #ffffff; background: #1f2628; border-left: 4px solid #ea5b0c; padding: 22px 26px; border-radius: 4px; line-height: 1.75; }
.formats-cta { background: #ea5b0c; color: #172023; padding: 20px 26px; border: 1px solid #ea5b0c; border-radius: 5px; font-size: 18px; font-weight: 700; line-height: 1.4; white-space: normal; box-shadow: 0 8px 24px #0002; }
.formats-cta span { color: inherit; font-size: 28px; }
.formats-cta:hover { background: #ff803d; }
.conditions .condition-top { justify-content: flex-end; }
@media(max-width: 600px) { .formats-cta { font-size: 16px; padding: 18px 20px; } }

/* Högert: consistent slide container and undistorted square photo. */
section.section.hoegert { padding-block: clamp(48px, 6vh, 80px); }
.hoegert > .container { width: min(1180px, calc(100% - 40px)); min-height: 0; display: block; }
.hoegert .brand-block { min-height: 0; display: grid; grid-template-columns: 1fr 1fr; align-items: center; gap: 48px; background: transparent; }
.hoegert .brand-block .brand-content { padding: 0; }
.hoegert .brand-logo { max-width: 330px; margin-bottom: 26px; }
.hoegert .brand-content h2 { font-size: clamp(2rem, 3vw, 3rem); margin-bottom: 22px; }
.hoegert .brand-content p { font-size: 1.0625rem; line-height: 1.7; margin-bottom: 14px; }
.hoegert .brand-block .brand-visual { min-height: 0; width: 100%; max-width: 540px; justify-self: end; aspect-ratio: 1; border-radius: 6px; overflow: hidden; }
.hoegert .brand-block .hoegert-action { position: static; display: block; width: 100%; height: auto; min-height: 0; aspect-ratio: 1; object-fit: contain; }
.hoegert .other-brands { width: 100%; margin: 30px 0 0; padding: 26px 0 0; border-top: 1px solid #cdd4d6; gap: 30px; }
@media(max-width: 760px) { section.section.hoegert { padding-block: 48px; } .hoegert .brand-block { grid-template-columns: 1fr; gap: 30px; } .hoegert .brand-block .brand-content { padding: 0; } .hoegert .brand-block .brand-visual { justify-self: center; max-width: 480px; } .hoegert .other-brands { padding-inline: 0; } }

/* Reference-inspired light hero with diagonal warehouse photograph. */
.hero.hero-b { background: #f5f6f6; color: #1f2628; }
.hero-b .hero-b-photo { position: absolute; inset: 0 0 0 48%; height: auto; margin: 0; clip-path: polygon(28% 0,100% 0,100% 100%,0 100%); }
.hero-b .hero-b-photo img { object-position: 60% center; }
.hero-b .hero-b-photo::after { background: linear-gradient(90deg,#1f262825,transparent 40%); }
.hero.hero-b::after { content: ''; position: absolute; z-index: 1; top: 17%; bottom: 16%; left: 45%; width: 17%; background: #ea5b0c; clip-path: polygon(80% 0,100% 0,20% 100%,0 100%); pointer-events: none; }
.hero-b .hero-b-layout { padding-top: calc(var(--header-height) + 45px); padding-bottom: 55px; }
.hero-b .hero-b-copy { width: 52%; max-width: 690px; padding-right: 28px; position: relative; z-index: 2; }
.hero-b .hero-b-copy .eyebrow { display: none; }
.hero-b h1 { color: #1f2628; font-size: clamp(38px,4vw,64px); line-height: 1.12; letter-spacing: -.025em; font-weight: 800; margin-bottom: 24px; }
.hero-b h1 strong { color: #ea5b0c; font-weight: 800; }
.hero-b .hero-b-intro { color: #465155; font-size: clamp(17px,1.4vw,20px); line-height: 1.6; max-width: 500px; margin-bottom: 30px; }
.hero-b .btn-primary { color: #172023; padding: 18px 26px; }
@media(max-width:760px) {
 .hero.hero-b { display: flex; flex-direction: column; }
 .hero-b .hero-b-copy { width: 100%; max-width: 600px; padding-right: 0; }
 .hero-b h1 { font-size: clamp(36px,7.5vw,54px); }
 .hero-b .hero-b-layout { min-height: auto; padding-top: 115px; padding-bottom: 20px; }
 .hero-b .hero-b-photo { position: relative; inset: auto; height: 320px; width: 100%; clip-path: polygon(12% 0,100% 0,100% 100%,0 100%); order: 2; }
 .hero.hero-b::after { display: none; }
 .hero-b .hero-b-photo::after { background: none; border-top: 6px solid #ea5b0c; }
}

/* Dark hero with a seamless photographic transition. */
.hero.hero-b { background: #1f2628; color: #ffffff; }
.hero-b .hero-b-photo { inset: 0 0 0 40%; clip-path: none; }
.hero-b .hero-b-photo::after { border: 0; background: linear-gradient(90deg,#1f2628 0%,rgba(31,38,40,.88) 18%,rgba(31,38,40,.35) 48%,rgba(31,38,40,.08) 100%),linear-gradient(0deg,rgba(31,38,40,.65),transparent 38%); }
.hero.hero-b::after { display: none; }
.hero-b h1 { color: #ffffff; }
.hero-b .hero-b-intro { color: #e1e6e8; }
@media(max-width:760px) {
 .hero-b .hero-b-photo { inset: auto; clip-path: none; }
 .hero-b .hero-b-photo::after { background: linear-gradient(180deg,#1f2628 0%,rgba(31,38,40,.45) 24%,transparent 65%); border: 0; }
}

/* Larger text in the selected dark hero. */
.hero-b .hero-b-copy { width: 62%; max-width: 790px; }
.hero-b h1 { font-size: clamp(48px, 5vw, 80px); line-height: 1.14; }
.hero-b .hero-b-intro { font-size: 22px; line-height: 1.65; max-width: 590px; }
@media(max-width:760px) { .hero-b .hero-b-copy { width: 100%; } .hero-b h1 { font-size: clamp(40px, 8.2vw, 60px); } .hero-b .hero-b-intro { font-size: 20px; } }

/* Larger logo in the fixed header. */
.header-logo img { width: clamp(200px, 21vw, 260px); height: auto; }
@media(min-width:761px) and (max-width:1050px) { .header-logo img { width: 190px; } }
@media(max-width:760px) { .header-logo img { width: 210px; max-width: 65vw; } }


/* Permanent matching borders on dealer-condition cards. */
.conditions .condition-card,
.conditions .condition-card.featured,
.conditions .condition-card:hover { border: 1px solid #ea5b0c; }

/* Uppercase headings throughout the landing page. */
h1, h2, h3, h4, h5, h6 { text-transform: uppercase; }

/* Approved heading emphasis. */
body :is(h1,h2,h3,h4,h5,h6), body :is(h1,h2,h3,h4,h5,h6) * { font-weight: 800; }
.formats-heading .heading-accent { color: #ea5b0c; }
.conditions .section-heading h2 .heading-nowrap { white-space: nowrap; color: inherit; }

/* Purposeful motion: one entrance, subtle hover, clear button feedback. */
.reveal { opacity: 1; transform: none; }
.motion-pending { opacity: 0; }
.motion-enter { animation: card-arrive 550ms cubic-bezier(.2,.7,.2,1) var(--entrance-delay, 0ms) both; }
@keyframes card-arrive { from { opacity: 0; translate: 0 18px; } to { opacity: 1; translate: 0 0; } }
.benefit-card, .format-card, .condition-card { transition: transform 220ms ease, box-shadow 220ms ease, background-color 220ms ease; }
@media(hover: hover) and (pointer: fine) {
 .dealer-benefits .benefit-card:hover, .format-card:hover, .conditions .condition-card:hover { transform: translateY(-4px); box-shadow: 0 14px 28px #0002; }
 .format-card:focus-within, .condition-card:focus-within { box-shadow: 0 14px 28px #0002; }
 .formats-cta:hover { transform: translateY(-2px); }
}
.btn, .formats-cta { transition: transform 180ms ease, background-color 180ms ease, box-shadow 180ms ease; }
.btn:active, .formats-cta:active { transform: translateY(1px) scale(.98); }
@media(prefers-reduced-motion: reduce) {
 html { scroll-behavior: auto; }
 *, *::before, *::after { animation: none !important; transition: none !important; }
 .motion-pending, .reveal { opacity: 1; transform: none; }
 .benefit-card:hover, .format-card:hover, .conditions .condition-card:hover, .btn:active, .formats-cta:hover, .formats-cta:active { transform: none; }
}

/* Static portal screenshot and aligned feature rows. */
.portal-preview { display: block; }
.portal-features { grid-auto-rows: 1fr; column-gap: 24px; row-gap: 18px; align-items: stretch; }
.portal-features > div { display: grid; grid-template-columns: 16px minmax(0, 1fr); column-gap: 10px; align-content: start; line-height: 1.6; }
.portal-features > div > span { margin: 0; line-height: inherit; }
@media(max-width:760px) { .portal-features { grid-auto-rows: auto; } }

/* Portal story and functionality: two readable slides. */
.portal-benefits h2 { max-width: 1000px; font-size: clamp(2rem,3.4vw,3.5rem); line-height: 1.2; letter-spacing: -.02em; margin-bottom: 40px; }
.portal-benefits h2 span { color: #ea5b0c; }
.portal-benefits-layout { display: grid; grid-template-columns: 1fr 1.1fr; align-items: center; gap: 48px; }
.portal-benefits-copy p { font-size: 17px; line-height: 1.75; color: #e1e6e8; margin-bottom: 24px; }
.portal-benefits-copy .portal-key-message { padding: 18px 22px; border-left: 3px solid #ea5b0c; background: #ffffff06; color: #ffffff; }
.portal-key-message em { font-style: normal; font-weight: 600; }
.portal-benefits .browser { transform: none; border: 1px solid #ffffff25; box-shadow: 0 24px 60px #0005; }
.portal-capabilities { background: #f3f5f5; color: #1f2628; }
.portal-capability-grid { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 16px; padding: 0; margin: 0; list-style: none; }
.portal-capability-grid li { display: grid; grid-template-columns: 24px minmax(0,1fr); align-items: start; gap: 14px; background: #ffffff; border: 1px solid #d6dddf; border-radius: 5px; padding: 23px 26px; font-size: 17px; line-height: 1.6; transition: transform .2s ease, box-shadow .2s ease; }
.portal-capability-grid li > span { color: #b74405; font-weight: 700; }
.portal-closing { margin-top: 32px; border-left: 3px solid #ea5b0c; padding-left: 22px; font-size: clamp(20px,2vw,26px); line-height: 1.5; }
@media(hover:hover) and (pointer:fine) { .portal-capability-grid li:hover { transform: translateY(-3px); box-shadow: 0 10px 24px #1f262810; } }
@media(max-width:900px) { .portal-benefits-layout { grid-template-columns: 1fr; gap: 30px; } }
@media(max-width:600px) { .portal-capability-grid { grid-template-columns: 1fr; } .portal-capability-grid li { padding: 20px; } }
@media(prefers-reduced-motion:reduce) { .portal-capability-grid li:hover { transform: none; } }

/* Dark portal functionality slide. */
.portal-capabilities { background: #1f2628; color: #ffffff; }
.portal-capabilities .section-heading p { color: #d1d8da; }
.portal-capabilities .eyebrow { color: #ff965c; }
.portal-capabilities .portal-capability-grid li { background: #293134; color: #f0f3f4; border-color: #4a5559; }
.portal-capabilities .portal-capability-grid li > span { color: #ff965c; }
.portal-capabilities .portal-closing { color: #e1e6e8; }
.portal-capabilities .portal-closing strong { color: #ffffff; }

/* Orange dealer-conditions slide. */
section.conditions { background: #ea5b0c; color: #1f2628; }
.conditions .section-heading h2, .conditions .section-heading h2 span { color: #1f2628; }
.conditions .section-heading p { color: #172023; }
.conditions .condition-card, .conditions .condition-card.featured, .conditions .condition-card:hover { background: #1f2628; color: #ffffff; border: 1px solid #ffffff80; }
.conditions .condition-card p { color: #e1e6e8; }
.conditions .condition-card h3, .conditions .featured .discount { color: #ff965c; }

/* White heading on the orange dealer-conditions slide. */
.conditions .section-heading h2,
.conditions .section-heading h2 span { color: #ffffff; }

/* Assortment: linked categories on a light slide. */
.assortment { background: #f3f5f5; color: #1f2628; }
.assortment .section-heading { max-width: 960px; }
.assortment-grid { display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); gap: 18px; }
.assortment-card { min-width: 0; padding: 28px; background: #ffffff; border: 1px solid #d6dddf; border-top: 3px solid #ea5b0c; border-radius: 5px; transition: transform .2s ease, box-shadow .2s ease; }
.assortment-card h3 { font-size: 20px; line-height: 1.4; margin-bottom: 14px; }
.assortment-card h3 a { display: flex; align-items: flex-start; justify-content: space-between; gap: 14px; }
.assortment-card h3 a span { flex-shrink: 0; color: #b74405; }
.assortment-card h3 a:hover { color: #b74405; }
.assortment-card h3 a:focus-visible { outline: 2px solid #b74405; outline-offset: 6px; }
.assortment-card p { font-size: 17px; line-height: 1.7; color: #465155; }
.assortment-card-wide { grid-column: 1 / -1; display: grid; grid-template-columns: 1fr 2fr; align-items: center; gap: 32px; }
.assortment-card-wide h3 { margin-bottom: 0; }
@media(hover:hover) and (pointer:fine) { .assortment-card:hover { transform: translateY(-3px); box-shadow: 0 12px 28px #1f262810; } }
@media(max-width:1000px) { .assortment-grid { grid-template-columns: repeat(2,minmax(0,1fr)); } }
@media(max-width:600px) { .assortment-grid { grid-template-columns: 1fr; } .assortment-card-wide { display: block; } .assortment-card-wide h3 { margin-bottom: 14px; } }
@media(prefers-reduced-motion:reduce) { .assortment-card:hover { transform: none; } }

