/* =========================================================
   INTERTEILE – GLOBAL STYLES
   Wird von index.html und b2b-shop-vorstellung.html genutzt
   ========================================================= */

:root {
  --blue: #16458f;
  --blue-dark: #0f2d5f;
  --blue-soft: #eaf2ff;
  --orange: #f59a00;
  --orange-dark: #dc8500;
  --green: #16a34a;
  --bg: #f3f6fb;
  --card: #ffffff;
  --text: #172033;
  --muted: #64748b;
  --border: #e2e8f0;
  --shadow: 0 14px 34px rgba(15, 23, 42, 0.08);
  --shadow-soft: 0 8px 22px rgba(15, 23, 42, 0.06);
  --radius: 22px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  color: var(--text);
  background:
    radial-gradient(900px 500px at 10% 0%, rgba(22, 69, 143, 0.10), transparent 55%),
    radial-gradient(700px 420px at 90% 10%, rgba(245, 154, 0, 0.10), transparent 55%),
    var(--bg);
  line-height: 1.5;
}

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

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

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

.siteHeader {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}

.headerInner {
  min-height: 86px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}

.logoLink {
  display: inline-flex;
  align-items: center;
  min-width: 240px;
}

.logo {
  height: 62px;
  width: auto;
  display: block;
  object-fit: contain;
}

.mainNav {
  display: flex;
  align-items: center;
  gap: 18px;
  font-size: 14px;
  font-weight: 800;
  color: #334155;
}

.mainNav a:hover {
  color: var(--blue);
}

.headerActions {
  display: flex;
  align-items: center;
  gap: 10px;
  white-space: nowrap;
}

/* =========================================================
   BUTTONS
   ========================================================= */

.btn,
.btnPrimary,
.btnSecondary,
.btnBlue {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: 999px;
  padding: 11px 16px;
  font-weight: 900;
  font-size: 14px;
  cursor: pointer;
  border: 1px solid var(--border);
  transition: transform .15s ease, background .15s ease, border-color .15s ease, box-shadow .15s ease;
}

.btn {
  background: #ffffff;
  color: var(--text);
}

.btn:hover {
  transform: translateY(-1px);
  background: #f8fafc;
  border-color: #cbd5e1;
}

.btnPrimary {
  background: var(--orange);
  border-color: var(--orange);
  color: #ffffff;
  box-shadow: 0 12px 24px rgba(245, 154, 0, .22);
}

.btnPrimary:hover {
  transform: translateY(-2px);
  background: var(--orange-dark);
  border-color: var(--orange-dark);
}

.btnBlue {
  background: var(--blue);
  border-color: var(--blue);
  color: #ffffff;
  box-shadow: 0 12px 24px rgba(22, 69, 143, .18);
}

.btnBlue:hover {
  transform: translateY(-2px);
  background: var(--blue-dark);
  border-color: var(--blue-dark);
}

.btnSecondary {
  border: 1px solid rgba(255,255,255,.3);
  color: #ffffff;
  background: transparent;
}

.btnSecondary:hover {
  transform: translateY(-2px);
  background: rgba(255,255,255,.08);
}

.btnSocial {
  padding: 10px 14px;
}

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

.section {
  padding: 70px 0;
}

.pageStack {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.pageStack .section {
  flex: 1;
}

.sectionSoft {
  background: #ffffff;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.sectionHeader {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: end;
  margin-bottom: 30px;
}

.sectionKicker {
  font-size: 13px;
  font-weight: 950;
  color: var(--orange-dark);
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-bottom: 8px;
}

.sectionKickerLight {
  color: #fbbf24;
}

.section h2 {
  margin: 0;
  font-size: clamp(28px, 3vw, 46px);
  letter-spacing: -1.2px;
  line-height: 1.08;
  color: #0f172a;
}

.sectionIntro {
  max-width: 620px;
  color: var(--muted);
  font-size: 17px;
  margin: 0;
}

.sectionIntroSpaced,
.textBlockSpaced {
  margin-top: 18px;
}

.textBlockSpaced {
  margin-top: 22px;
}

.card,
.trustCard,
.featureCard {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
  padding: 22px;
}

.cardSpaced {
  margin-top: 40px;
}

.card h3,
.trustCard h3,
.featureCard h3 {
  margin: 8px 0 8px;
  font-size: 18px;
  color: #0f172a;
}

.card h4,
.trustCard h4,
.featureCard h4 {
  margin: 8px 0 8px;
  font-size: 16px;
  color: #64748b;
}

.card p,
.trustCard p,
.featureCard p {
  margin: 0;
  color: var(--muted);
}

/* =========================================================
   STARTSEITE – HERO
   ========================================================= */

.hero {
  position: relative;
  min-height: 680px;
  display: flex;
  align-items: center;
  padding: 100px 0;
  background:
    linear-gradient(
      rgba(6,15,40,0.72),
      rgba(6,15,40,0.82)
    ),
    url("../images/Gemini_Generated_Image_ttebitttebittteb.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: #ffffff;
  overflow: hidden;
}

.heroContent {
  max-width: 760px;
  position: relative;
  z-index: 2;
}

.hero .heroBadge {
  display: inline-block;
  background: rgba(255,255,255,0.12);
  padding: 10px 18px;
  border-radius: 999px;
  margin-bottom: 25px;
  font-size: .9rem;
  backdrop-filter: blur(8px);
}

.hero h1 {
  font-size: clamp(42px, 5vw, 64px);
  line-height: 1.1;
  margin: 0 0 30px;
  font-weight: 800;
  letter-spacing: -1.8px;
}

.hero p {
  font-size: 1.2rem;
  line-height: 1.8;
  color: rgba(255,255,255,.92);
  margin: 0 0 35px;
}

.heroButtons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* =========================================================
   STARTSEITE – CONTENT
   ========================================================= */

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

.trustIcon {
  width: 44px;
  height: 44px;
  border-radius: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #eff6ff;
  color: var(--blue);
  font-size: 22px;
  margin-bottom: 14px;
}

.aboutGrid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, .82fr);
  gap: 28px;
  align-items: start;
}

.textBlock {
  display: grid;
  gap: 16px;
  color: #334155;
  font-size: 17px;
}

.textBlock p {
  margin: 0;
}

.businessImage {
  min-height: 260px;
  border-radius: 18px;
  margin-bottom: 18px;
  background-image:
    linear-gradient(
      rgba(0,0,0,.15),
      rgba(0,0,0,.15)
    ),
    url("../images/2026-03-16.webp");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden;
}

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

.factBox {
  padding: 18px;
  border: 1px solid var(--border);
  background: #ffffff;
  border-radius: 18px;
}

.factLabel {
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .06em;
}

.factValue {
  margin-top: 4px;
  color: #0f172a;
  font-size: 17px;
  font-weight: 900;
}

/* Sortiment */

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

.categoryCard {
  overflow: hidden;
  padding: 0;
}

.categoryImage {
  min-height: 220px;
  display: grid;
  place-items: center;
  background: #f1f5f9;
  border-bottom: 1px solid var(--border);
  color: var(--muted);
  font-weight: 900;
  text-align: center;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transition: transform .3s ease, filter .3s ease;
}

.categoryCard:hover .categoryImage {
  transform: scale(1.04);
  filter: brightness(1.05);
}

.brakesImage {
  background-image:
    linear-gradient(rgba(0,0,0,.15), rgba(0,0,0,.15)),
    url("../images/jozwikp_Brake_pads_and_a_brake_disc_are_lying_on_a_workshop_tab_e737c3c1-0a10-4e99-8ba3-4e60a679e0c9.png");
}

.filterImage {
  background-image:
    linear-gradient(rgba(0,0,0,.15), rgba(0,0,0,.15)),
    url("../images/jozwikp_Heavy_construction_machinery_engine_bay_partially_opene_53ace1b8-6c69-46a5-8e18-d42a0365f23e.png");
}

.suspensionImage {
  background-image:
    linear-gradient(rgba(0,0,0,.15), rgba(0,0,0,.15)),
    url("../images/NFTimmy.eth__t420.eth_Capture_a_dramatic_shot_of_a_luxury_SUV_c_e97b9bb5-2cbe-482c-a91d-de3470ef8c66 (1).png");
}

.electricImage {
  background-image:
    linear-gradient(rgba(0,0,0,.15), rgba(0,0,0,.15)),
    url("../images/arthandgo_Close-up_of_a_modern_car_LED_headlight_the_complex_st_39ae4e9c-82cc-4726-b797-15efdd870f26.png");
}

.categoryBody {
  padding: 20px;
}

.categoryBody h3 {
  margin: 0 0 8px;
  color: #0f172a;
}

.categoryBody p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

/* Hersteller */

.brandLogoGrid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 14px;
}

.brandLogoBox {
  min-height: 82px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  border: 1px solid var(--border);
  background: #ffffff;
  color: #334155;
  font-weight: 900;
  box-shadow: var(--shadow-soft);
  padding: 12px;
}

.brandLogoBox a:hover {
  color: var(--blue);
  text-decoration: underline;
}

.dLink a:hover {
  color: var(--blue);
  text-decoration: underline;
}

/* Startseiten B2B Teaser */

.portalBox {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(360px, 1.1fr);
  gap: 28px;
  align-items: center;
  background: linear-gradient(135deg, var(--blue-dark), var(--blue));
  color: #ffffff;
  border-radius: 30px;
  padding: 34px;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.portalBox h2,
.portalBox h3 {
  color: #ffffff;
}

.portalBox p {
  color: rgba(255,255,255,.82);
}

.portalList {
  display: grid;
  gap: 12px;
  margin-top: 20px;
}

.portalItem {
  display: flex;
  gap: 10px;
  align-items: center;
  font-weight: 800;
  color: rgba(255,255,255,.92);
}

.portalMockup {
  background: rgba(255,255,255,.10);
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 24px;
  padding: 18px;
}

.mockupCard {
  background: #ffffff;
  color: var(--text);
  border-radius: 18px;
  padding: 18px;
  display: grid;
  gap: 12px;
}

.mockupTop {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: center;
}

.mockupPill {
  display: inline-flex;
  padding: 6px 10px;
  border-radius: 999px;
  background: #eff6ff;
  color: var(--blue);
  font-weight: 900;
  font-size: 12px;
}

.mockupRows {
  display: grid;
  gap: 8px;
}

.mockupRow {
  min-height: 44px;
  border-radius: 12px;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 12px;
  color: #475569;
  font-weight: 800;
  font-size: 13px;
}

/* =========================================================
   B2B-SEITE
   ========================================================= */

.heroPortal {
  position: relative;
  overflow: hidden;
  padding: 88px 0 72px;
  color: #ffffff;
  background:
    linear-gradient(135deg, rgba(15,45,95,.94), rgba(22,69,143,.88)),
    radial-gradient(700px 340px at 85% 10%, rgba(245,154,0,.38), transparent 60%),
    #0f2d5f;
}

.heroPortal::after {
  content: "";
  position: absolute;
  inset: auto -120px -180px auto;
  width: 520px;
  height: 520px;
  border-radius: 999px;
  background: rgba(255,255,255,.08);
  pointer-events: none;
}

.portalHeroGrid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, .88fr) minmax(420px, 1.12fr);
  gap: 42px;
  align-items: center;
}

.heroPortal .heroBadge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.18);
  padding: 10px 18px;
  border-radius: 999px;
  margin-bottom: 22px;
  font-size: .92rem;
  font-weight: 900;
  backdrop-filter: blur(8px);
}

.heroPortal h1 {
  margin: 0;
  font-size: clamp(42px, 5vw, 72px);
  line-height: 1.02;
  letter-spacing: -2.4px;
}

.heroLead {
  margin: 24px 0 0;
  max-width: 720px;
  font-size: 19px;
  line-height: 1.8;
  color: rgba(255,255,255,.88);
}

.heroProof {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 32px;
  max-width: 680px;
}

.proofItem {
  padding: 14px;
  border-radius: 18px;
  background: rgba(255,255,255,.10);
  border: 1px solid rgba(255,255,255,.16);
}

.proofValue {
  font-size: 22px;
  font-weight: 950;
  color: #ffffff;
}

.proofLabel {
  margin-top: 3px;
  font-size: 13px;
  color: rgba(255,255,255,.75);
  font-weight: 800;
}

.screenStack {
  position: relative;
  min-height: 520px;
}

.screenCard {
  position: absolute;
  overflow: hidden;
  border-radius: 28px;
  border: 1px solid rgba(255,255,255,.22);
  background: #ffffff;
  box-shadow: 0 30px 70px rgba(0,0,0,.28);
}

.screenCard img {
  width: 100%;
  display: block;
}

.screenMain {
  inset: 32px 0 auto 34px;
  width: 92%;
  transform: rotate(1.2deg);
}

.screenSmall {
  left: -10px;
  bottom: 0;
  width: 48%;
  transform: rotate(-4deg);
  box-shadow: 0 24px 58px rgba(0,0,0,.25);
}

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

.featureIcon {
  width: 48px;
  height: 48px;
  border-radius: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #eff6ff;
  color: var(--blue);
  font-size: 22px;
  margin-bottom: 14px;
}

.splitGrid {
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(400px, 1.05fr);
  gap: 34px;
  align-items: center;
}

.imageFrame {
  overflow: hidden;
  border-radius: 28px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  background: #ffffff;
}

.imageFrame img {
  width: 100%;
  display: block;
}

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

.checkItem {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  font-weight: 800;
  color: #334155;
}

.checkItem span {
  flex: 0 0 auto;
  width: 26px;
  height: 26px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: #dcfce7;
  color: #166534;
  font-size: 14px;
}

.tourHighlightBox {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, .9fr);
  gap: 28px;
  align-items: center;
  background: linear-gradient(135deg, #ffffff, #f8fbff);
  border: 1px solid var(--border);
  border-radius: 32px;
  padding: 34px;
  box-shadow: var(--shadow-soft);
}

.tourHighlightBox p {
  color: var(--muted);
  font-size: 17px;
  margin: 18px 0 0;
}

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

.tourStat {
  min-height: 120px;
  display: grid;
  align-content: center;
  gap: 8px;
  padding: 20px;
  border-radius: 22px;
  background: #eff6ff;
  border: 1px solid #bfdbfe;
}

.tourStat strong {
  font-size: 34px;
  color: var(--blue);
  line-height: 1;
}

.tourStat span {
  font-weight: 900;
  color: #334155;
}

.workflowGrid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  counter-reset: steps;
}

.stepCard {
  position: relative;
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: var(--shadow-soft);
}

.stepCard::before {
  counter-increment: steps;
  content: counter(steps);
  display: inline-flex;
  width: 38px;
  height: 38px;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  background: var(--blue);
  color: #ffffff;
  font-weight: 950;
  margin-bottom: 16px;
}

.stepCard h3 {
  margin: 0 0 8px;
  color: #0f172a;
}

.stepCard p {
  margin: 0;
  color: var(--muted);
}

.bluePanel {
  overflow: hidden;
  background: linear-gradient(135deg, var(--blue-dark), var(--blue));
  color: #ffffff;
  border-radius: 32px;
  box-shadow: var(--shadow);
  padding: 38px;
}

.bluePanel h2,
.bluePanel h3 {
  color: #ffffff;
}

.bluePanel p {
  color: rgba(255,255,255,.82);
}

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

.moduleCard {
  padding: 18px;
  border-radius: 20px;
  background: rgba(255,255,255,.11);
  border: 1px solid rgba(255,255,255,.18);
}

.moduleCard strong {
  display: block;
  margin-bottom: 6px;
  color: #ffffff;
}

.moduleCard span {
  color: rgba(255,255,255,.75);
  font-size: 14px;
}

/* =========================================================
   FORMULAR
   ========================================================= */

.contactGrid {
  display: grid;
  grid-template-columns: minmax(0, .85fr) minmax(360px, 1.15fr);
  gap: 28px;
  align-items: start;
}

.contactActions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
}

.contactForm {
  display: grid;
  gap: 14px;
}

.input,
textarea,
select {
  width: 100%;
  border: 1px solid #cbd5e1;
  background: #ffffff;
  color: var(--text);
  padding: 13px 14px;
  border-radius: 14px;
  font: inherit;
  outline: none;
}

textarea {
  min-height: 130px;
  resize: vertical;
}

label {
  display: grid;
  gap: 6px;
  color: #334155;
  font-weight: 800;
  font-size: 13px;
}

.privacyConsent {
  display: flex;
  flex-direction: row;
  gap: 10px;
  align-items: flex-start;
  font-weight: 600;
  color: var(--muted);
}

.privacyCheckbox {
  width: auto;
  margin-top: 4px;
}

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

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

.footer {
  padding: 28px 0;
  background: #0f172a;
  color: rgba(255,255,255,.72);
  font-size: 13px;
}

.footerInner {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
}

.footerLinks {
  display: flex;
  gap: 18px;
}

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

@media (max-width: 980px) {
  .headerInner {
    flex-wrap: wrap;
    padding: 12px 0;
  }

  .mainNav {
    order: 3;
    width: 100%;
    justify-content: center;
    flex-wrap: wrap;
  }

  .aboutGrid,
  .portalBox,
  .contactGrid,
  .portalHeroGrid,
  .splitGrid,
  .tourHighlightBox {
    grid-template-columns: 1fr;
  }

  .trustGrid,
  .sortimentGrid,
  .featureGrid,
  .workflowGrid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .brandLogoGrid,
  .portalModules {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .screenStack {
    min-height: 440px;
  }
}

@media (max-width: 900px) {
  .hero {
    min-height: 560px;
    padding: 80px 0;
  }

  .hero h1 {
    font-size: 2.6rem;
  }

  .hero p {
    font-size: 1rem;
  }
}

@media (max-width: 640px) {
  .container {
    width: min(100% - 24px, 1180px);
  }

  .logo {
    height: 52px;
  }

  .logoLink {
    min-width: 0;
  }

  .headerActions {
    width: 100%;
    flex-wrap: wrap;
  }

  .headerActions .btn,
  .headerActions .btnPrimary,
  .headerActions .btnBlue {
    flex: 1;
  }

  .hero {
    padding: 46px 0;
  }

  .heroPortal {
    padding: 56px 0 46px;
  }

  .hero h1,
  .heroPortal h1 {
    letter-spacing: -1px;
  }

  .section {
    padding: 48px 0;
  }

  .sectionHeader {
    display: grid;
  }

  .trustGrid,
  .sortimentGrid,
  .factGrid,
  .formGrid2,
  .featureGrid,
  .workflowGrid,
  .portalModules,
  .heroProof,
  .tourStatsGrid {
    grid-template-columns: 1fr;
  }

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

  .portalBox,
  .bluePanel,
  .tourHighlightBox {
    padding: 24px;
    border-radius: 24px;
  }

  .screenStack {
    min-height: 330px;
  }

  .screenMain {
    left: 0;
    width: 100%;
  }

  .screenSmall {
    width: 56%;
  }
}



.formMessage {

  padding: 14px 16px;

  border-radius: 14px;

  margin-bottom: 18px;

  font-weight: 700;

}

.formMessage.success {

  background: #dcfce7;

  color: #166534;

  border: 1px solid #86efac;

}

.formMessage.error {

  background: #fee2e2;

  color: #991b1b;

  border: 1px solid #fca5a5;

}
