/* ============================================================
   INNOX-E.COM — Global Stylesheet
   innox-e.com | Geschäftsführer: Özgür Kılıç
   ============================================================ */

:root {
  --navy: #0F1923;
  --navy-light: #1A2B3C;
  --accent: #E8A020;
  --accent-light: #F5B942;
  --accent-pale: #FDF3E0;
  --text-dark: #1A2333;
  --text-muted: #8A9AB0;
  --white: #FFFFFF;
  --gray-50: #F8F9FA;
  --gray-100: #EEF0F3;
  --gray-200: #D8DCE4;
  --green: #16a34a;
  --green-pale: #f0fdf4;
  --border: rgba(255,255,255,0.1);
  --radius-sm: 6px;
  --radius: 10px;
  --radius-lg: 16px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Inter', 'Segoe UI', system-ui, -apple-system, sans-serif;
  background: var(--white);
  color: var(--text-dark);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

/* ── NAV ── */
nav { position: sticky; top: 0; z-index: 100; background: var(--navy); border-bottom: 1px solid var(--border); }
.nav-inner { max-width: 1200px; margin: 0 auto; padding: 0 2rem; display: flex; align-items: center; justify-content: space-between; height: 64px; }
.logo { font-size: 1.2rem; font-weight: 700; color: var(--white); letter-spacing: -0.02em; }
.logo span { color: var(--accent); }
.nav-links { display: flex; gap: 1.5rem; list-style: none; }
.nav-links a { color: rgba(255,255,255,0.75); font-size: 0.875rem; transition: color 0.2s; }
.nav-links a:hover, .nav-links a.active { color: var(--white); }
.nav-right { display: flex; align-items: center; gap: 1.25rem; }
.nav-langs { display: flex; gap: 0.4rem; }
.nav-langs a { color: rgba(255,255,255,0.5); font-size: 0.75rem; padding: 2px 6px; border-radius: 4px; border: 1px solid rgba(255,255,255,0.15); transition: all 0.2s; }
.nav-langs a:hover, .nav-langs a.active { color: var(--white); border-color: rgba(255,255,255,0.4); }
.nav-cta { background: var(--accent); color: var(--navy) !important; padding: 0.5rem 1.25rem; border-radius: var(--radius-sm); font-size: 0.875rem; font-weight: 700; transition: background 0.2s; }
.nav-cta:hover { background: var(--accent-light); }
.hamburger { display: none; cursor: pointer; background: none; border: none; padding: 4px; }
.hamburger span { display: block; width: 22px; height: 2px; background: var(--white); margin: 5px 0; transition: all 0.3s; }

/* ── TRUST BAR ── */
.trust-bar { background: var(--navy-light); border-bottom: 1px solid var(--border); padding: 0.625rem 2rem; }
.trust-bar-inner { max-width: 1200px; margin: 0 auto; display: flex; align-items: center; justify-content: center; gap: 2.5rem; flex-wrap: wrap; }
.trust-item { display: flex; align-items: center; gap: 0.5rem; font-size: 0.78rem; color: rgba(255,255,255,0.65); }
.trust-item strong { color: var(--accent); }

/* ── BREADCRUMB ── */
.breadcrumb { background: var(--gray-50); border-bottom: 1px solid var(--gray-200); padding: 0.75rem 2rem; }
.breadcrumb-inner { max-width: 1200px; margin: 0 auto; font-size: 0.8125rem; color: #5A6A7E; display: flex; align-items: center; gap: 0.5rem; flex-wrap: wrap; }
.breadcrumb a { color: var(--accent); }
.breadcrumb span.sep { color: var(--gray-200); }

/* ── HERO (Ana Sayfa) ── */
.hero { background: var(--navy); padding: 4.5rem 2rem 3.5rem; text-align: center; position: relative; overflow: hidden; }
.hero::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse at 65% 0%, rgba(232,160,32,0.07) 0%, transparent 60%); pointer-events: none; }
.hero-badge { display: inline-flex; align-items: center; gap: 0.5rem; background: rgba(232,160,32,0.12); border: 1px solid rgba(232,160,32,0.3); color: var(--accent); padding: 0.375rem 1rem; border-radius: 100px; font-size: 0.8125rem; font-weight: 500; margin-bottom: 1.75rem; }
.hero h1 { font-size: clamp(1.875rem, 4.5vw, 3.25rem); font-weight: 800; color: var(--white); line-height: 1.15; letter-spacing: -0.03em; margin-bottom: 1.125rem; max-width: 780px; margin-left: auto; margin-right: auto; }
.hero h1 em { color: var(--accent); font-style: normal; }
.hero-sub { font-size: 1.0625rem; color: rgba(255,255,255,0.62); max-width: 560px; margin: 0 auto 2.25rem; line-height: 1.75; }
.hero-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; margin-bottom: 3rem; }
.hero-stats { display: grid; grid-template-columns: repeat(4,1fr); gap: 1px; background: var(--border); border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; max-width: 640px; margin: 0 auto; }
.hero-stat { background: rgba(255,255,255,0.04); padding: 1.25rem 1rem; text-align: center; }
.hero-stat-value { font-size: 1.75rem; font-weight: 800; color: var(--white); letter-spacing: -0.04em; line-height: 1; }
.hero-stat-label { font-size: 0.72rem; color: var(--text-muted); margin-top: 0.25rem; }

/* ── PAGE HERO (Alt Sayfalar) ── */
.page-hero { background: var(--navy); padding: 3.5rem 2rem 3rem; position: relative; overflow: hidden; }
.page-hero::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse at 70% 0%, rgba(232,160,32,0.07) 0%, transparent 60%); pointer-events: none; }
.page-hero-inner { max-width: 1200px; margin: 0 auto; }
.page-eyebrow { font-size: 0.75rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--accent); margin-bottom: 0.75rem; }
.page-hero h1 { font-size: clamp(1.75rem, 3.5vw, 2.75rem); font-weight: 800; color: var(--white); line-height: 1.2; letter-spacing: -0.03em; margin-bottom: 1rem; max-width: 700px; }
.page-hero h1 em { color: var(--accent); font-style: normal; }
.page-hero-sub { font-size: 1.0625rem; color: rgba(255,255,255,0.62); max-width: 580px; line-height: 1.75; margin-bottom: 2rem; }
.page-hero-stats { display: flex; gap: 2rem; flex-wrap: wrap; }
.page-hero-stat-value { font-size: 1.625rem; font-weight: 800; color: var(--white); letter-spacing: -0.04em; line-height: 1; }
.page-hero-stat-label { font-size: 0.72rem; color: var(--text-muted); margin-top: 0.2rem; }
.page-hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; margin-top: 2rem; }

/* ── BUTTONS ── */
.btn-primary { background: var(--accent); color: var(--navy); padding: 0.875rem 2rem; border-radius: var(--radius-sm); font-weight: 700; font-size: 0.9375rem; transition: background 0.2s, transform 0.1s; border: none; cursor: pointer; display: inline-block; }
.btn-primary:hover { background: var(--accent-light); transform: translateY(-1px); }
.btn-secondary { background: rgba(255,255,255,0.08); color: var(--white); padding: 0.875rem 2rem; border-radius: var(--radius-sm); font-weight: 600; font-size: 0.9375rem; border: 1px solid rgba(255,255,255,0.2); transition: background 0.2s; display: inline-block; }
.btn-secondary:hover { background: rgba(255,255,255,0.14); }

/* ── SECTIONS ── */
section { padding: 4.5rem 2rem; }
.container { max-width: 1200px; margin: 0 auto; }
.section-eyebrow { font-size: 0.75rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--accent); margin-bottom: 0.75rem; }
.section-title { font-size: clamp(1.5rem, 3vw, 2.25rem); font-weight: 800; letter-spacing: -0.03em; color: var(--text-dark); margin-bottom: 1rem; line-height: 1.2; }
.section-sub { font-size: 0.9375rem; color: #5A6A7E; max-width: 560px; line-height: 1.75; margin-bottom: 2.75rem; }
.section-dark .section-title { color: var(--white); }
.section-dark .section-eyebrow { color: var(--accent); }
.section-dark .section-sub { color: rgba(255,255,255,0.55); }
.bg-gray { background: var(--gray-50); }
.bg-navy { background: var(--navy); }

/* ── VORTEIL BANNER ── */
.vorteil-banner { background: var(--green-pale); border-top: 1px solid #bbf7d0; border-bottom: 1px solid #bbf7d0; padding: 1rem 2rem; }
.vorteil-inner { max-width: 1200px; margin: 0 auto; display: flex; align-items: center; justify-content: center; gap: 1rem; flex-wrap: wrap; text-align: center; }
.vorteil-badge { background: var(--green); color: #fff; font-size: 0.7rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; padding: 3px 8px; border-radius: 4px; }
.vorteil-text { font-size: 0.875rem; color: #166534; font-weight: 500; }

/* ── STANDORTE ── */
.standorte-band { background: var(--gray-50); border-top: 1px solid var(--gray-200); border-bottom: 1px solid var(--gray-200); padding: 1.875rem 2rem; }
.standorte-inner { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; gap: 2rem; }
.standort-card { display: flex; align-items: flex-start; gap: 1rem; }
.standort-flag { font-size: 2rem; line-height: 1; }
.standort-label { font-size: 0.7rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-muted); }
.standort-name { font-size: 1rem; font-weight: 700; color: var(--text-dark); margin: 0.125rem 0; }
.standort-addr { font-size: 0.8rem; color: #5A6A7E; }
.standort-tel { font-size: 0.8125rem; color: var(--accent); font-weight: 600; margin-top: 0.25rem; }
.standort-divider { width: 1px; height: 60px; background: var(--gray-200); }
.standort-right { text-align: right; }
.standort-right .standort-card { flex-direction: row-reverse; }

/* ── LOGOS ── */
.logos-section { background: var(--white); padding: 2.5rem 2rem; border-bottom: 1px solid var(--gray-100); }
.logos-inner { max-width: 1000px; margin: 0 auto; text-align: center; }
.logos-label { font-size: 0.75rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-muted); margin-bottom: 1.5rem; }
.logos-row { display: flex; align-items: center; justify-content: center; gap: 2.5rem; flex-wrap: wrap; }
.logo-pill { background: var(--gray-50); border: 1px solid var(--gray-200); border-radius: var(--radius-sm); padding: 0.5rem 1.25rem; font-size: 0.875rem; font-weight: 700; color: #5A6A7E; }

/* ── USP GRID ── */
.usp-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem; }
.usp-card { background: var(--white); border: 1px solid var(--gray-200); border-radius: var(--radius-lg); padding: 2rem 1.75rem; }
.usp-num { font-size: 2.5rem; font-weight: 900; color: var(--gray-100); letter-spacing: -0.06em; line-height: 1; margin-bottom: 0.875rem; }
.usp-card h3 { font-size: 1.0625rem; font-weight: 700; margin-bottom: 0.5rem; }
.usp-card p { font-size: 0.875rem; color: #5A6A7E; line-height: 1.7; }
.usp-highlight { color: var(--accent); font-weight: 700; }

/* ── SERVICE CARDS ── */
.service-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 1rem; }
.service-card { border: 1px solid var(--gray-200); border-radius: var(--radius-lg); padding: 1.625rem 1.375rem; background: var(--white); transition: border-color 0.2s, box-shadow 0.2s; }
.service-card:hover { border-color: var(--accent); box-shadow: 0 4px 20px rgba(232,160,32,0.1); }
.service-card.featured { background: var(--navy); border-color: var(--navy); }
.service-tag { display: inline-block; font-size: 0.6875rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; padding: 0.25rem 0.625rem; border-radius: 4px; margin-bottom: 0.875rem; }
.service-tag.tag-express-plus { background: var(--accent); color: var(--navy); }
.service-tag.tag-express { background: #FEF3C7; color: #92400E; }
.service-tag.tag-standard { background: #E8F4FD; color: #0A558C; }
.service-tag.tag-economy { background: #E8F5E9; color: #1B5E20; }
.service-card h3 { font-size: 1.0625rem; font-weight: 700; margin-bottom: 0.3rem; }
.service-card.featured h3 { color: var(--white); }
.service-time { font-size: 0.8125rem; color: var(--accent); font-weight: 600; margin-bottom: 0.625rem; }
.service-desc { font-size: 0.84rem; color: #5A6A7E; line-height: 1.6; }
.service-card.featured .service-desc { color: rgba(255,255,255,0.58); }
.service-transport { margin-top: 0.875rem; padding-top: 0.875rem; border-top: 1px solid var(--gray-100); font-size: 0.72rem; color: var(--text-muted); }
.service-card.featured .service-transport { border-color: rgba(255,255,255,0.1); color: rgba(255,255,255,0.38); }
.service-price-note { margin-top: 0.5rem; font-size: 0.72rem; color: var(--green); font-weight: 600; }

/* ── KAP CARDS ── */
.kap-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.25rem; margin-bottom: 2.5rem; }
.kap-card { background: var(--gray-50); border: 1px solid var(--gray-200); border-radius: var(--radius-lg); padding: 1.625rem; transition: border-color 0.2s; }
.kap-card:hover { border-color: var(--accent); }
.kap-icon { width: 42px; height: 42px; border-radius: var(--radius-sm); background: var(--accent-pale); display: flex; align-items: center; justify-content: center; font-size: 1.25rem; margin-bottom: 1.125rem; }
.kap-card h3 { font-size: 1rem; font-weight: 700; margin-bottom: 0.4rem; }
.kap-card h3 a { color: inherit; }
.kap-card h3 a:hover { color: var(--accent); }
.kap-card p { font-size: 0.84rem; color: #5A6A7E; line-height: 1.6; }
.kap-spec { margin-top: 0.875rem; font-size: 0.78rem; font-weight: 700; color: var(--accent); }

/* ── SPEC TABLE ── */
.spec-table-wrap { background: var(--white); border: 1px solid var(--gray-200); border-radius: var(--radius-lg); overflow: hidden; margin-bottom: 2.5rem; }
.spec-table { width: 100%; border-collapse: collapse; font-size: 0.875rem; }
.spec-table th { background: var(--navy); color: var(--white); padding: 0.875rem 1.25rem; text-align: left; font-size: 0.72rem; letter-spacing: 0.08em; text-transform: uppercase; }
.spec-table td { padding: 0.75rem 1.25rem; border-bottom: 1px solid var(--gray-100); color: #3D4D5C; }
.spec-table tr:last-child td { border-bottom: none; }
.spec-table tr:nth-child(even) td { background: var(--gray-50); }
.spec-bold { font-weight: 700; color: var(--text-dark); }

/* ── PERSÖNLICH ── */
.persoenlich-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: center; }
.vcard { background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.12); border-radius: var(--radius-lg); padding: 2rem; }
.vcard-avatar { width: 72px; height: 72px; border-radius: 50%; background: var(--accent); display: flex; align-items: center; justify-content: center; font-size: 1.5rem; font-weight: 800; color: var(--navy); margin-bottom: 1.25rem; }
.vcard-name { font-size: 1.25rem; font-weight: 800; color: var(--white); margin-bottom: 0.25rem; }
.vcard-title { font-size: 0.8125rem; color: var(--accent); font-weight: 600; margin-bottom: 1.25rem; }
.vcard-detail { display: flex; align-items: center; gap: 0.625rem; font-size: 0.84rem; color: rgba(255,255,255,0.6); margin-bottom: 0.5rem; }
.vcard-detail a { color: rgba(255,255,255,0.75); }
.persoenlich-points { display: flex; flex-direction: column; gap: 1.25rem; }
.pp-item { display: flex; align-items: flex-start; gap: 1rem; }
.pp-icon { width: 40px; height: 40px; border-radius: var(--radius-sm); background: rgba(232,160,32,0.12); border: 1px solid rgba(232,160,32,0.25); flex-shrink: 0; display: flex; align-items: center; justify-content: center; font-size: 1.125rem; }
.pp-title { font-size: 0.9375rem; font-weight: 700; color: var(--white); margin-bottom: 0.25rem; }
.pp-desc { font-size: 0.84rem; color: rgba(255,255,255,0.5); line-height: 1.6; }

/* ── VERGLEICH ── */
.vergleich-table-wrap { background: var(--white); border: 1px solid var(--gray-200); border-radius: var(--radius-lg); overflow: hidden; max-width: 900px; margin: 0 auto; }
.vt { width: 100%; border-collapse: collapse; }
.vt thead th { padding: 1.125rem 1.5rem; font-size: 0.875rem; font-weight: 700; }
.vt thead th:first-child { text-align: left; background: var(--gray-50); color: #5A6A7E; border-bottom: 1px solid var(--gray-200); }
.vt thead th.col-us { background: var(--navy); color: var(--white); text-align: center; }
.vt thead th.col-them { background: var(--gray-100); color: #5A6A7E; text-align: center; border-bottom: 1px solid var(--gray-200); }
.vt tbody td { padding: 0.875rem 1.5rem; border-bottom: 1px solid var(--gray-100); font-size: 0.875rem; }
.vt tbody tr:last-child td { border-bottom: none; }
.vt tbody td:first-child { font-weight: 500; color: #3D4D5C; }
.vt tbody td:not(:first-child) { text-align: center; font-weight: 600; }
.vt tbody tr:nth-child(even) td { background: var(--gray-50); }
.c-green { color: var(--green); }
.c-red { color: #dc2626; }
.c-yellow { color: #d97706; }

/* ── WERKSTOFFE ── */
.mat-grid { display: flex; gap: 0.75rem; flex-wrap: wrap; }
.mat-chip { background: var(--white); border: 1px solid var(--gray-200); border-radius: 100px; padding: 0.5rem 1.125rem; font-size: 0.875rem; font-weight: 500; display: flex; align-items: center; gap: 0.5rem; transition: border-color 0.2s, background 0.2s; }
.mat-chip:hover { border-color: var(--accent); background: var(--accent-pale); }
.mat-dot { width: 8px; height: 8px; border-radius: 50%; flex-shrink: 0; }

/* ── BRANCHEN ── */
.branchen-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 0.875rem; }
.branchen-card { border: 1px solid var(--gray-200); border-radius: var(--radius); padding: 1.125rem 1.375rem; display: flex; align-items: center; gap: 0.875rem; transition: border-color 0.2s, background 0.2s; }
.branchen-card:hover { border-color: var(--accent); background: var(--accent-pale); }
.branchen-icon { font-size: 1.375rem; }
.branchen-name { font-size: 0.9rem; font-weight: 600; }

/* ── ABLAUF ── */
.ablauf-grid { display: grid; grid-template-columns: repeat(5,1fr); position: relative; }
.ablauf-grid::before { content: ''; position: absolute; top: 32px; left: 10%; right: 10%; height: 1px; background: var(--gray-200); }
.ablauf-step { text-align: center; padding: 0 0.75rem; }
.ablauf-num { width: 64px; height: 64px; border-radius: 50%; background: var(--accent-pale); border: 2px solid var(--accent); display: flex; align-items: center; justify-content: center; margin: 0 auto 1.125rem; font-size: 1.125rem; font-weight: 800; color: var(--accent); position: relative; z-index: 1; }
.ablauf-step h4 { font-size: 0.875rem; font-weight: 700; color: var(--text-dark); margin-bottom: 0.375rem; }
.ablauf-step p { font-size: 0.78rem; color: #5A6A7E; line-height: 1.6; }

/* ── FAQ ── */
.faq-list { max-width: 780px; }
.faq-item { border: 1px solid var(--gray-200); border-radius: var(--radius); margin-bottom: 0.625rem; overflow: hidden; }
.faq-q { padding: 1.0625rem 1.5rem; font-weight: 600; font-size: 0.9375rem; cursor: pointer; user-select: none; display: flex; justify-content: space-between; align-items: center; list-style: none; background: var(--white); transition: background 0.2s; }
.faq-q:hover { background: var(--gray-50); }
.faq-q::after { content: '+'; font-size: 1.25rem; color: var(--accent); font-weight: 300; flex-shrink: 0; margin-left: 1rem; transition: transform 0.2s; }
details[open] .faq-q::after { transform: rotate(45deg); }
.faq-a { padding: 0 1.5rem 1.125rem; font-size: 0.875rem; color: #5A6A7E; line-height: 1.8; }

/* ── KONTAKT ── */
.kontakt-grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: 4rem; align-items: start; }
.kontakt-detail { display: flex; align-items: flex-start; gap: 0.875rem; padding: 0.875rem 0; border-bottom: 1px solid var(--gray-200); }
.kontakt-detail:last-of-type { border-bottom: none; }
.kontakt-detail-icon { width: 36px; height: 36px; border-radius: var(--radius-sm); background: var(--accent-pale); flex-shrink: 0; display: flex; align-items: center; justify-content: center; font-size: 1rem; }
.kontakt-detail-label { font-size: 0.7rem; color: var(--text-muted); font-weight: 700; letter-spacing: 0.05em; text-transform: uppercase; }
.kontakt-detail-val { font-size: 0.9375rem; color: var(--text-dark); font-weight: 500; margin-top: 0.125rem; }
.kontakt-detail-val a { color: var(--accent); }

/* ── FORM ── */
.form-card { background: var(--white); border: 1px solid var(--gray-200); border-radius: var(--radius-lg); padding: 2.25rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { margin-bottom: 1.125rem; }
.form-group label { display: block; font-size: 0.8125rem; font-weight: 600; color: #3D4D5C; margin-bottom: 0.35rem; }
.form-group input, .form-group select, .form-group textarea { width: 100%; padding: 0.75rem 1rem; border: 1px solid var(--gray-200); border-radius: var(--radius-sm); font-size: 0.875rem; font-family: inherit; color: var(--text-dark); background: var(--white); transition: border-color 0.2s; outline: none; }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: var(--accent); box-shadow: 0 0 0 3px rgba(232,160,32,0.12); }
.form-group textarea { resize: vertical; min-height: 100px; }
.form-submit { width: 100%; padding: 1rem; background: var(--navy); color: var(--white); font-size: 0.9375rem; font-weight: 700; border: none; border-radius: var(--radius-sm); cursor: pointer; transition: background 0.2s; }
.form-submit:hover { background: var(--navy-light); }
.form-note { font-size: 0.75rem; color: var(--text-muted); margin-top: 0.625rem; text-align: center; }
.form-secure { display: flex; align-items: center; justify-content: center; gap: 0.5rem; font-size: 0.75rem; color: var(--green); font-weight: 600; margin-top: 0.5rem; }

/* ── CTA SECTION ── */
.cta-section { background: var(--navy); padding: 4rem 2rem; text-align: center; }
.cta-section h2 { font-size: clamp(1.5rem, 3vw, 2.25rem); font-weight: 800; color: var(--white); margin-bottom: 1rem; letter-spacing: -0.03em; }
.cta-section p { color: rgba(255,255,255,0.6); font-size: 1rem; margin-bottom: 2rem; max-width: 480px; margin-left: auto; margin-right: auto; }
.cta-tel { font-size: 1.5rem; font-weight: 800; color: var(--accent); display: block; margin-bottom: 1.5rem; letter-spacing: -0.02em; }
.cta-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ── HIGHLIGHT BOX ── */
.highlight-box { background: var(--accent-pale); border: 1px solid rgba(232,160,32,0.3); border-radius: var(--radius-lg); padding: 1.75rem 2rem; margin-bottom: 2rem; display: flex; align-items: flex-start; gap: 1rem; }
.highlight-icon { font-size: 1.5rem; flex-shrink: 0; }
.highlight-box h3 { font-size: 1rem; font-weight: 700; color: var(--text-dark); margin-bottom: 0.375rem; }
.highlight-box p { font-size: 0.875rem; color: #5A6A7E; line-height: 1.7; }

/* ── VERFAHREN ── */
.verfahren-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 1.25rem; margin-bottom: 2.5rem; }
.verfahren-card { background: var(--gray-50); border: 1px solid var(--gray-200); border-radius: var(--radius-lg); padding: 1.5rem; }
.verfahren-card h3 { font-size: 1rem; font-weight: 700; margin-bottom: 0.5rem; display: flex; align-items: center; gap: 0.5rem; flex-wrap: wrap; }
.verfahren-badge { font-size: 0.65rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; background: var(--accent); color: var(--navy); padding: 2px 6px; border-radius: 3px; }
.verfahren-card p { font-size: 0.84rem; color: #5A6A7E; line-height: 1.7; }

/* ── PROZESS ── */
.prozess-grid { display: grid; grid-template-columns: repeat(5,1fr); position: relative; gap: 1rem; }
.prozess-grid::before { content: ''; position: absolute; top: 30px; left: 10%; right: 10%; height: 1px; background: var(--gray-200); }
.prozess-step { text-align: center; }
.prozess-num { width: 60px; height: 60px; border-radius: 50%; background: var(--accent-pale); border: 2px solid var(--accent); display: flex; align-items: center; justify-content: center; margin: 0 auto 1rem; font-size: 1rem; font-weight: 800; color: var(--accent); position: relative; z-index: 1; }
.prozess-step h4 { font-size: 0.875rem; font-weight: 700; margin-bottom: 0.375rem; }
.prozess-step p { font-size: 0.78rem; color: #5A6A7E; line-height: 1.6; }

/* ── EXPRESS TIMELINE ── */
.express-timeline { background: var(--navy); border-radius: var(--radius-lg); padding: 2rem; margin-bottom: 2.5rem; }
.express-timeline h3 { color: var(--white); font-size: 1rem; font-weight: 700; margin-bottom: 1.25rem; }
.timeline-item { display: flex; align-items: flex-start; gap: 1rem; margin-bottom: 1rem; }
.timeline-item:last-child { margin-bottom: 0; }
.timeline-time { font-size: 0.78rem; font-weight: 700; color: var(--accent); min-width: 90px; flex-shrink: 0; padding-top: 2px; }
.timeline-desc { font-size: 0.84rem; color: rgba(255,255,255,0.7); line-height: 1.6; }

/* ── FOOTER ── */
footer { background: var(--navy); border-top: 1px solid var(--border); padding: 3rem 2rem 2rem; }
.footer-inner { max-width: 1200px; margin: 0 auto; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 2.5rem; margin-bottom: 2.5rem; }
.footer-brand p { font-size: 0.8rem; color: rgba(255,255,255,0.42); margin-top: 0.75rem; line-height: 1.75; }
.footer-social { display: flex; gap: 0.875rem; margin-top: 1rem; }
.footer-social a { font-size: 0.78rem; color: rgba(255,255,255,0.45); border: 1px solid rgba(255,255,255,0.15); padding: 4px 10px; border-radius: 4px; transition: all 0.2s; }
.footer-social a:hover { color: var(--white); border-color: rgba(255,255,255,0.4); }
.footer-col h5 { font-size: 0.7rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(255,255,255,0.38); margin-bottom: 0.875rem; }
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 0.45rem; }
.footer-col a { font-size: 0.8125rem; color: rgba(255,255,255,0.58); transition: color 0.2s; }
.footer-col a:hover { color: var(--white); }
.footer-bottom { border-top: 1px solid var(--border); padding-top: 1.5rem; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1rem; }
.footer-copy { font-size: 0.75rem; color: rgba(255,255,255,0.28); }
.footer-legal { display: flex; gap: 1.5rem; }
.footer-legal a { font-size: 0.75rem; color: rgba(255,255,255,0.38); }
.footer-legal a:hover { color: var(--white); }

/* ── IMPRESSUM ── */
.impressum-section { background: rgba(0,0,0,0.2); padding: 2rem; border-top: 1px solid var(--border); }
.impressum-inner { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; }
.impressum-block h4 { font-size: 0.7rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(255,255,255,0.28); margin-bottom: 0.75rem; }
.impressum-block p { font-size: 0.78rem; color: rgba(255,255,255,0.42); line-height: 1.9; }
.impressum-block a { color: rgba(255,255,255,0.58); }
.impressum-warn { font-size: 0.7rem; color: rgba(255,255,255,0.25); margin-top: 0.5rem; font-style: italic; }

/* ── RESPONSIVE ── */
@media(max-width:1024px) {
  .usp-grid { grid-template-columns: 1fr 1fr; }
  .service-grid { grid-template-columns: repeat(2,1fr); }
  .kap-grid { grid-template-columns: repeat(2,1fr); }
  .branchen-grid { grid-template-columns: repeat(2,1fr); }
  .ablauf-grid { grid-template-columns: repeat(3,1fr); }
  .ablauf-grid::before { display: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .kontakt-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .hero-stats { grid-template-columns: repeat(2,1fr); }
  .standorte-inner { grid-template-columns: 1fr; gap: 1rem; }
  .standort-divider { width: 100%; height: 1px; }
  .standort-right { text-align: left; }
  .standort-right .standort-card { flex-direction: row; }
  .impressum-inner { grid-template-columns: 1fr; gap: 1.5rem; }
  .persoenlich-grid { grid-template-columns: 1fr; }
  .prozess-grid { grid-template-columns: repeat(3,1fr); }
  .prozess-grid::before { display: none; }
  .verfahren-grid { grid-template-columns: 1fr; }
}
@media(max-width:768px) {
  section { padding: 3rem 1.25rem; }
  .nav-links, .nav-right { display: none; }
  .hamburger { display: block; }
  .service-grid { grid-template-columns: 1fr; }
  .kap-grid { grid-template-columns: 1fr; }
  .usp-grid { grid-template-columns: 1fr; }
  .branchen-grid { grid-template-columns: 1fr 1fr; }
  .ablauf-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .form-row { grid-template-columns: 1fr; }
  .hero { padding: 3rem 1.25rem 2.5rem; }
  .trust-bar-inner { gap: 1.25rem; }
  .prozess-grid { grid-template-columns: 1fr 1fr; }
}
@media(max-width:480px) {
  .branchen-grid { grid-template-columns: 1fr; }
  .ablauf-grid { grid-template-columns: 1fr; }
  .hero-stats { grid-template-columns: 1fr 1fr; }
  .logos-row { gap: 1rem; }
  .prozess-grid { grid-template-columns: 1fr; }
}
@media(prefers-reduced-motion:reduce) {
  * { transition: none !important; scroll-behavior: auto !important; }
}
