/* ============================================================
   DON Logistik GmbH – Global Stylesheet
   ============================================================ */

/* Google Fonts are loaded via <link> tags in each HTML file for better performance */


/* ── CSS Variables ── */
:root {
  --black:          #0a0a0a;
  --black-light:    #111111;
  --black-card:     #161616;
  --black-card-2:   #1c1c1c;
  --gold-primary:   #d0a560;
  --gold-secondary: #b58141;
  --gold-accent:    #bd8e4f;
  --gold-dim:       rgba(208, 165, 96, 0.12);
  --gold-border:    rgba(208, 165, 96, 0.25);
  --white:          #ffffff;
  --gray-light:     #cccccc;
  --gray-mid:       #888888;
  --gray-dark:      #444444;
  --transition:     0.35s cubic-bezier(0.4, 0, 0.2, 1);
  --radius:         4px;
  --radius-lg:      8px;
  --shadow-gold:    0 0 40px rgba(208, 165, 96, 0.08);
}

/* ── Reset & Base ── */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  scrollbar-width: none; /* Firefox */
  -ms-overflow-style: none; /* IE/Edge */
}

html::-webkit-scrollbar {
  display: none; /* Chrome, Safari */
}

body {
  background-color: var(--black);
  color: var(--white);
  font-family: 'Montserrat', sans-serif;
  font-weight: 400;
  line-height: 1.7;
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: inherit;
  transition: color var(--transition);
}

ul { list-style: none; }

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

/* ── Skip Navigation Link (Barrierefreiheit) ── */
.skip-link {
  position: absolute;
  top: -48px;
  left: 8px;
  background: var(--gold-primary);
  color: var(--black);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 10px 20px;
  border-radius: var(--radius);
  z-index: 99999;
  transition: top 0.2s ease;
  text-decoration: none;
}

.skip-link:focus {
  top: 8px;
}

/* ── Typography ── */
h1, h2, h3, h4, h5 {
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
}

h1 { font-size: clamp(2.4rem, 6vw, 5rem); }
h2 { font-size: clamp(1.8rem, 4vw, 3rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.6rem); }

p { color: var(--gray-light); line-height: 1.8; }

.gold { color: var(--gold-primary); }
.uppercase { text-transform: uppercase; letter-spacing: 0.12em; }

/* ── Utility ── */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 100px 0;
}

.section-tag {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-primary);
  background: var(--gold-dim);
  border: 1px solid var(--gold-border);
  padding: 6px 16px;
  border-radius: 2px;
  margin-bottom: 20px;
}

.section-title {
  margin-bottom: 16px;
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--gray-mid);
  max-width: 560px;
  margin-bottom: 56px;
}

.divider {
  width: 48px;
  height: 2px;
  background: linear-gradient(to right, var(--gold-primary), var(--gold-accent));
  margin: 20px 0 40px;
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 36px;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  border-radius: var(--radius);
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: linear-gradient(135deg, var(--gold-primary), var(--gold-secondary));
  color: var(--black);
}

.btn-primary:hover {
  background: linear-gradient(135deg, var(--gold-accent), var(--gold-primary));
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(208, 165, 96, 0.3);
}

.btn-outline {
  background: transparent;
  color: var(--gold-primary);
  border: 1.5px solid var(--gold-border);
}

.btn-outline:hover {
  background: var(--gold-dim);
  border-color: var(--gold-primary);
  transform: translateY(-2px);
}

/* ── Navbar ── */
#navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  height: 91px;
  transition: all var(--transition);
  background: transparent;
}

#navbar.scrolled {
  background: rgba(10, 10, 10, 0.96);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  height: 91px;
  border-bottom: 1px solid var(--gold-border);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  height: 100%;
}

.nav-logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.nav-logo img {
  height: 65px;
  width: auto;
  max-height: 65px;
  object-fit: contain;
}

/* SVG logo fallback */
.logo-svg-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 48px;
}

.logo-svg-wrap svg {
  height: 48px;
  width: 48px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
}

.nav-links a {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gray-light);
  position: relative;
  padding-bottom: 4px;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1.5px;
  background: var(--gold-primary);
  transition: width var(--transition);
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--gold-primary);
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

.nav-cta {
  padding: 10px 24px;
  font-size: 0.72rem;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
}

.hamburger span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--gold-primary);
  transition: all var(--transition);
  transform-origin: center;
}

.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile menu */
.nav-mobile {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: rgba(10, 10, 10, 0.98);
  backdrop-filter: blur(20px);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 36px;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition);
}

.nav-mobile.open {
  display: flex;
  opacity: 1;
  pointer-events: all;
}

.nav-mobile a {
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--white);
  transition: color var(--transition);
}

.nav-mobile a:hover { color: var(--gold-primary); }

/* ── Footer ── */
#footer {
  background: var(--black-light);
  border-top: 1px solid var(--gold-border);
  padding: 64px 0 32px;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.footer-brand .logo-svg-wrap svg,
.footer-brand img {
  height: 44px;
  width: auto;
  margin-bottom: 20px;
}

.footer-brand p {
  font-size: 0.9rem;
  color: var(--gray-mid);
  max-width: 300px;
  line-height: 1.7;
}

.footer-col h4 {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-primary);
  margin-bottom: 20px;
}

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

.footer-col ul a {
  font-size: 0.88rem;
  color: var(--gray-mid);
  transition: color var(--transition);
}

.footer-col ul a:hover { color: var(--gold-primary); }

.footer-bottom {
  padding-top: 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-bottom p {
  font-size: 0.78rem;
  color: var(--gray-dark);
}

.footer-legal {
  display: flex;
  gap: 24px;
}

.footer-legal a {
  font-size: 0.78rem;
  color: var(--gray-dark);
  transition: color var(--transition);
}

.footer-legal a:hover { color: var(--gold-primary); }

/* ── Hero ── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: 90px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 70% 50%, rgba(181, 129, 65, 0.06) 0%, transparent 65%),
    radial-gradient(ellipse 50% 80% at 20% 80%, rgba(181, 129, 65, 0.04) 0%, transparent 60%),
    var(--black);
  z-index: 0;
}

.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(208,165,96,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(208,165,96,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  z-index: 0;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 30%, transparent 80%);
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 760px;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-primary);
  margin-bottom: 28px;
}

.hero-tag::before {
  content: '';
  display: inline-block;
  width: 32px;
  height: 1.5px;
  background: var(--gold-primary);
}

.hero h1 {
  margin-bottom: 24px;
  font-weight: 800;
}

.hero h1 .line-gold {
  color: var(--gold-primary);
  display: block;
}

.hero-sub {
  font-size: 1.05rem;
  color: var(--gray-mid);
  max-width: 520px;
  margin-bottom: 44px;
  line-height: 1.8;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 72px;
}

.hero-stats {
  display: flex;
  gap: 48px;
  flex-wrap: wrap;
  padding-top: 40px;
  border-top: 1px solid var(--gold-border);
}

.stat-item {}
.stat-number {
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--gold-primary);
  line-height: 1;
  margin-bottom: 6px;
}

.stat-label {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gray-mid);
}

/* ── Feature Cards ── */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.card {
  background: var(--black-card);
  border: 1px solid var(--gold-border);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}

.card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(to right, var(--gold-secondary), var(--gold-primary));
  opacity: 0;
  transition: opacity var(--transition);
}

.card:hover {
  border-color: rgba(208,165,96,0.5);
  transform: translateY(-6px);
  box-shadow: 0 24px 60px rgba(0,0,0,0.4), 0 0 40px rgba(208,165,96,0.06);
}

.card:hover::before { opacity: 1; }

.card-icon {
  width: 52px;
  height: 52px;
  background: var(--gold-dim);
  border: 1px solid var(--gold-border);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  font-size: 1.4rem;
}

.card h3 {
  font-size: 1.1rem;
  margin-bottom: 12px;
  color: var(--white);
}

.card p {
  font-size: 0.9rem;
  color: var(--gray-mid);
  line-height: 1.75;
}

/* ── CTA Banner ── */
.cta-banner {
  background: var(--black-card);
  border: 1px solid var(--gold-border);
  border-radius: var(--radius-lg);
  padding: 72px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 80% at 50% 50%, rgba(208,165,96,0.05) 0%, transparent 70%);
  pointer-events: none;
}

.cta-banner h2 {
  margin-bottom: 16px;
}

.cta-banner p {
  margin-bottom: 36px;
  font-size: 1rem;
}

.cta-banner .btn-group {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ── Page Hero (inner pages) ── */
.page-hero {
  padding: 160px 0 80px;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 80% at 80% 50%, rgba(181,129,65,0.05) 0%, transparent 65%);
}

.page-hero .section-tag { margin-bottom: 16px; }
.page-hero h1 { margin-bottom: 20px; }
.page-hero p {
  font-size: 1.05rem;
  max-width: 560px;
  color: var(--gray-mid);
}

/* ── About Page ── */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-values {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 36px;
}

.value-item {
  background: var(--black-card);
  border: 1px solid var(--gold-border);
  border-radius: var(--radius);
  padding: 24px 20px;
}

.value-item .value-icon {
  font-size: 1.5rem;
  margin-bottom: 10px;
}

.value-item h4 {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--gold-primary);
  margin-bottom: 6px;
}

.value-item p {
  font-size: 0.82rem;
  color: var(--gray-mid);
  line-height: 1.6;
}

.about-visual {
  position: relative;
}

.about-img-box {
  aspect-ratio: 4/5;
  background: var(--black-card);
  border: 1px solid var(--gold-border);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
}

.about-img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-badge {
  position: absolute;
  bottom: -24px;
  left: -24px;
  background: linear-gradient(135deg, var(--gold-primary), var(--gold-secondary));
  color: var(--black);
  border-radius: var(--radius);
  padding: 20px 24px;
  font-weight: 800;
  font-size: 0.8rem;
  letter-spacing: 0.05em;
}

.about-badge span {
  display: block;
  font-size: 2rem;
  font-weight: 900;
  line-height: 1;
}

/* ── Leistungen ── */
.leistungen-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.leistung-card {
  background: var(--black-card);
  border: 1px solid var(--gold-border);
  border-radius: var(--radius-lg);
  padding: 40px;
  display: flex;
  gap: 28px;
  transition: all var(--transition);
}

.leistung-card:hover {
  border-color: rgba(208,165,96,0.5);
  transform: translateY(-4px);
  box-shadow: var(--shadow-gold);
}

.leistung-icon {
  flex-shrink: 0;
  width: 56px;
  height: 56px;
  background: var(--gold-dim);
  border: 1px solid var(--gold-border);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
}

.leistung-card h3 {
  font-size: 1rem;
  margin-bottom: 10px;
}

.leistung-card p {
  font-size: 0.88rem;
  color: var(--gray-mid);
  line-height: 1.75;
}

.amazon-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--gold-dim);
  border: 1px solid var(--gold-border);
  border-radius: var(--radius);
  padding: 16px 24px;
  margin-top: 48px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--gold-primary);
  letter-spacing: 0.06em;
}

/* ── Flotte ── */
.flotte-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.flotte-card {
  background: var(--black-card);
  border: 1px solid var(--gold-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--transition);
}

.flotte-card:hover {
  border-color: rgba(208,165,96,0.5);
  transform: translateY(-4px);
}

.flotte-img {
  aspect-ratio: 16/9;
  background: var(--black-card-2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  color: var(--gold-border);
  border-bottom: 1px solid var(--gold-border);
}

.flotte-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.flotte-info {
  padding: 24px;
}

.flotte-info h3 {
  font-size: 1rem;
  margin-bottom: 4px;
}

.flotte-info .flotte-type {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-primary);
  margin-bottom: 16px;
}

.flotte-specs {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.spec-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8rem;
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(255,255,255,0.04);
}

.spec-row:last-child { border-bottom: none; }

.spec-row .spec-key { color: var(--gray-mid); }
.spec-row .spec-val { color: var(--white); font-weight: 600; }

/* ── Jobs ── */
.job-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 64px;
}

.job-card {
  background: var(--black-card);
  border: 1px solid var(--gold-border);
  border-radius: var(--radius-lg);
  padding: 32px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  transition: all var(--transition);
  cursor: pointer;
}

.job-card:hover {
  border-color: rgba(208,165,96,0.5);
  background: var(--black-card-2);
}

.job-card-left h3 {
  font-size: 1.05rem;
  margin-bottom: 8px;
}

.job-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.job-tag {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold-primary);
  background: var(--gold-dim);
  border: 1px solid var(--gold-border);
  padding: 4px 12px;
  border-radius: 2px;
}

.job-arrow {
  font-size: 1.2rem;
  color: var(--gold-primary);
  flex-shrink: 0;
  transition: transform var(--transition);
}

.job-card:hover .job-arrow { transform: translateX(6px); }

.why-work {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

/* ── Kontakt ── */
.kontakt-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 64px;
  align-items: start;
}

.kontakt-info {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.info-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.info-icon {
  width: 44px;
  height: 44px;
  background: var(--gold-dim);
  border: 1px solid var(--gold-border);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.info-item h4 {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold-primary);
  margin-bottom: 4px;
}

.info-item p {
  font-size: 0.9rem;
  color: var(--gray-light);
}

/* ── Form ── */
.contact-form {
  background: var(--black-card);
  border: 1px solid var(--gold-border);
  border-radius: var(--radius-lg);
  padding: 48px;
}

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

.form-group label {
  display: block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-primary);
  margin-bottom: 10px;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  background: var(--black-light);
  border: 1px solid var(--gold-border);
  border-radius: var(--radius);
  padding: 14px 18px;
  color: var(--white);
  font-family: 'Montserrat', sans-serif;
  font-size: 0.9rem;
  transition: border-color var(--transition);
  outline: none;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--gold-primary);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--gray-dark);
}

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

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-submit {
  width: 100%;
  justify-content: center;
  margin-top: 8px;
}

/* ── Legal Pages ── */
.legal-content {
  max-width: 800px;
}

.legal-content h2 {
  font-size: 1.3rem;
  margin: 48px 0 16px;
  color: var(--gold-primary);
}

.legal-content h2:first-child { margin-top: 0; }

.legal-content p {
  font-size: 0.92rem;
  color: var(--gray-light);
  margin-bottom: 16px;
}

.legal-content a {
  color: var(--gold-primary);
}

.legal-content a:hover {
  text-decoration: underline;
}

/* ── Phosphor Icons ── */
.card-icon i,
.leistung-icon i,
.info-icon i,
.value-icon i,
.flotte-img i {
  font-size: 1.5rem;
  color: var(--gold-primary);
  display: flex;
  align-items: center;
  justify-content: center;
}

.job-arrow i {
  font-size: 1.2rem;
  color: var(--gold-primary);
  transition: transform var(--transition);
}

.job-card:hover .job-arrow i {
  transform: translateX(6px);
}

.amazon-badge i {
  font-size: 1.3rem;
  color: var(--gold-primary);
}

/* ── Scroll Animations ── */
.reveal {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

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

.reveal-delay-1 { transition-delay: 0.05s; }
.reveal-delay-2 { transition-delay: 0.1s; }
.reveal-delay-3 { transition-delay: 0.15s; }
.reveal-delay-4 { transition-delay: 0.2s; }

/* ── Responsive ── */
@media (max-width: 1024px) {
  .cards-grid       { grid-template-columns: repeat(2, 1fr); }
  .leistungen-grid  { grid-template-columns: 1fr; }
  .flotte-grid      { grid-template-columns: repeat(2, 1fr); }
  .about-grid       { grid-template-columns: 1fr; gap: 48px; }
  .about-visual     { order: -1; }
  .about-badge      { bottom: 16px; left: 16px; }
  .footer-inner     { grid-template-columns: 1fr 1fr; }
  .kontakt-grid     { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .section { padding: 72px 0; }
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .cards-grid       { grid-template-columns: 1fr; }
  .flotte-grid      { grid-template-columns: 1fr; }
  .why-work         { grid-template-columns: 1fr; }
  .hero-stats       { gap: 28px; }
  .cta-banner       { padding: 40px 24px; }
  .footer-inner     { grid-template-columns: 1fr; }
  .about-values     { grid-template-columns: 1fr; }
  .form-row         { grid-template-columns: 1fr; }
  .contact-form     { padding: 32px 24px; }
  .job-card         { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 480px) {
  .hero-actions { flex-direction: column; }
  .btn { width: 100%; justify-content: center; }
}
