/* ============================================
   NETLINE ERP Website – Main Stylesheet
   ============================================ */

:root {
  --bg: #0a0a0a;
  --bg-card: #111111;
  --bg-card2: #161616;
  --border: #222222;
  --accent: #ab9d78;
  --accent-light: #cabfa0;
  --accent-dark: #877a55;
  --secondary: #4a7fa5;
  --text: #e8e8e8;
  --text-muted: #888888;
  --text-light: #bbbbbb;
  --white: #ffffff;
  --radius: 8px;
  --transition: all 0.3s ease;
  --shadow: 0 4px 24px rgba(0,0,0,0.4);
  --shadow-hover: 0 8px 40px rgba(171,157,120,0.2);
}

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

html {
  scroll-behavior: smooth;
}

body {
  background-color: var(--bg);
  color: var(--text);
  font-family: 'Inter', 'Segoe UI', system-ui, -apple-system, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

img {
  max-width: 100%;
  height: auto;
}

/* ── Typography ── */
h1, h2, h3, h4 {
  font-weight: 900;
  letter-spacing: -0.03em;
  line-height: 1.1;
  text-transform: uppercase;
}

h1 { font-size: clamp(2.2rem, 6vw, 5rem); }
h2 { font-size: clamp(1.6rem, 4vw, 3rem); }
h3 { font-size: clamp(1.1rem, 2.5vw, 1.5rem); }

p { color: var(--text-light); line-height: 1.7; }

/* ── Layout ── */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

section {
  padding: 80px 0;
}

/* ── Navbar ── */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(10, 10, 10, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  transition: var(--transition);
}

.navbar.scrolled {
  background: rgba(10, 10, 10, 0.97);
}

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

.nav-logo img {
  height: 44px;
  width: auto;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
}

.nav-links a {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-light);
  transition: var(--transition);
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--accent);
  transform: scaleX(0);
  transition: var(--transition);
}

.nav-links a:hover {
  color: var(--white);
}

.nav-links a:hover::after {
  transform: scaleX(1);
}

.nav-links a.active {
  color: var(--accent);
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.65rem 1.4rem;
  border-radius: var(--radius);
  font-size: 0.9rem;
  font-weight: 700;
  cursor: pointer;
  transition: var(--transition);
  border: 2px solid transparent;
  text-decoration: none;
  white-space: nowrap;
}

.btn-primary {
  background: var(--accent);
  color: #000;
  border-color: var(--accent);
}

.btn-primary:hover {
  background: var(--accent-light);
  border-color: var(--accent-light);
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(171,157,120,0.3);
}

.btn-outline {
  background: transparent;
  color: var(--text);
  border-color: var(--border);
}

.btn-outline:hover {
  border-color: var(--accent);
  color: var(--accent);
  transform: translateY(-1px);
}

.btn-lg {
  padding: 0.85rem 2rem;
  font-size: 1rem;
}

/* hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 0.5rem;
}

.nav-toggle span {
  width: 24px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: var(--transition);
  display: block;
}

.nav-toggle.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* Mobile nav */
.mobile-menu {
  display: none;
  flex-direction: column;
  gap: 0.25rem;
  background: var(--bg);
  padding: 1rem 1.5rem 1.5rem;
  border-top: 1px solid var(--border);
}

.mobile-menu a {
  padding: 0.85rem 1rem;
  border-radius: var(--radius);
  font-weight: 600;
  color: var(--text-light);
  transition: var(--transition);
  display: block;
}

.mobile-menu a:hover {
  background: rgba(171,157,120,0.1);
  color: var(--accent);
}

.mobile-menu .btn-primary {
  margin-top: 0.5rem;
  text-align: center;
  justify-content: center;
}

/* ── Hero ── */
.hero {
  padding-top: 130px;
  padding-bottom: 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 50% 30%, rgba(171,157,120,0.06) 0%, transparent 70%);
  pointer-events: none;
}

.hero-badge {
  display: inline-block;
  padding: 0.35rem 1rem;
  border-radius: 999px;
  border: 1px solid var(--accent);
  color: var(--accent);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}

.hero h1 {
  margin-bottom: 1.25rem;
}

.hero h1 .highlight {
  color: var(--accent);
}

.hero p {
  font-size: clamp(1rem, 2vw, 1.2rem);
  max-width: 680px;
  margin: 0 auto 2.5rem;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.hero-checks {
  display: flex;
  gap: 2rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 3rem;
  color: var(--text-muted);
  font-size: 0.875rem;
}

.hero-checks span {
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.hero-checks svg {
  color: var(--accent);
  flex-shrink: 0;
}

/* microtech Partner-Logo: Schutzzone – ausreichend Freiraum ringsum */
.hero-partner-logo {
  margin-bottom: 2.75rem;
  padding-top: 0.5rem;
}

.hero-partner-logo img {
  height: 90px;
  width: auto;
}

/* ── Stats ── */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
}

.stat-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem 1.5rem;
  text-align: center;
  transition: var(--transition);
}

.stat-card:hover {
  border-color: var(--accent);
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
}

.stat-icon {
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(171,157,120,0.1);
  color: var(--accent);
  border-radius: var(--radius);
  margin: 0 auto 1rem;
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 0.4rem;
}

.stat-label {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 0.3rem;
}

.stat-desc {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* ── Section header ── */
.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-badge {
  display: inline-block;
  padding: 0.35rem 1rem;
  background: rgba(171,157,120,0.15);
  color: var(--accent);
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.section-header h2 {
  margin-bottom: 1rem;
}

.section-header p {
  max-width: 680px;
  margin: 0 auto;
}

/* ── Cards grid ── */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}

.cards-grid-3 {
  grid-template-columns: repeat(3, 1fr);
}

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

.card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.75rem;
  transition: var(--transition);
}

.card:hover {
  border-color: var(--accent);
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
}

.card.card-secondary:hover {
  border-color: var(--secondary);
  box-shadow: 0 8px 40px rgba(74,127,165,0.2);
}

.card-icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius);
  margin-bottom: 1.25rem;
  transition: var(--transition);
  flex-shrink: 0;
}

.card-icon.accent-icon {
  background: rgba(171,157,120,0.1);
  color: var(--accent);
}

.card-icon.secondary-icon {
  background: rgba(74,127,165,0.1);
  color: var(--secondary);
}

.card:hover .card-icon.accent-icon {
  background: var(--accent);
  color: #000;
}

.card:hover .card-icon.secondary-icon {
  background: var(--secondary);
  color: #fff;
}

.card h3 {
  margin-bottom: 0.6rem;
  color: var(--text);
  text-transform: none;
  letter-spacing: -0.02em;
}

.card p {
  font-size: 0.9rem;
}

/* ── About Microtech section ── */
/* microtech-Logo: Schutzzone einhalten, Logo nicht verändern (kein Filter/Recolor) */
.about-logo {
  display: flex;
  justify-content: center;
  margin-bottom: 2.5rem;
  padding: 1.5rem 0;
}

.about-logo img {
  height: 120px;
  width: auto;
}

/* ── ERP Modules ── */
.modules-section {
  background: linear-gradient(135deg, #0d0d0d 0%, #111111 100%);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.modules-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}

.modules-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.module-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.25rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  cursor: pointer;
  transition: var(--transition);
  text-align: left;
  width: 100%;
}

.module-item:hover,
.module-item.active {
  border-color: var(--accent);
  background: rgba(171,157,120,0.05);
}

.module-item.active .module-dot {
  background: var(--accent);
  box-shadow: 0 0 12px rgba(171,157,120,0.5);
}

.module-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--border);
  flex-shrink: 0;
  transition: var(--transition);
}

.module-icon-wrap {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  flex-shrink: 0;
  transition: var(--transition);
}

.module-item:hover .module-icon-wrap,
.module-item.active .module-icon-wrap {
  background: rgba(171,157,120,0.15);
  color: var(--accent);
}

.module-item-text {
  min-width: 0;
  flex: 1;
}

.module-item-text h4 {
  font-size: 1rem;
  font-weight: 700;
  text-transform: none;
  letter-spacing: -0.01em;
  color: var(--text);
  overflow-wrap: break-word;
  word-break: break-word;
}

.module-detail {
  position: sticky;
  top: 100px;
}

.module-detail-card {
  background: var(--bg-card);
  border: 1px solid var(--accent);
  border-radius: 12px;
  padding: 2.5rem;
  min-height: 280px;
}

.module-detail-card h3 {
  font-size: 1.6rem;
  margin-bottom: 1rem;
  color: var(--accent);
  text-transform: none;
  overflow-wrap: break-word;
  word-break: break-word;
}

.module-detail-card p {
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.module-detail-card a {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--accent);
  font-weight: 600;
  font-size: 0.9rem;
  transition: var(--transition);
}

.module-detail-card a:hover {
  gap: 0.7rem;
}

/* ── Process Flow ── */
.process-grid {
  display: grid;
  grid-template-columns: 420px 1fr;
  gap: 3rem;
  align-items: start;
}

.process-intro-card {
  background: var(--accent);
  color: #000;
  border-radius: 12px;
  padding: 2.5rem;
}

.process-intro-card .badge {
  display: inline-block;
  background: rgba(0,0,0,0.15);
  color: #000;
  padding: 0.3rem 0.8rem;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.process-intro-card h3 {
  font-size: 1.8rem;
  font-weight: 900;
  text-transform: none;
  line-height: 1.2;
  margin-bottom: 1rem;
  color: #000;
}

.process-intro-card p {
  color: rgba(0,0,0,0.75);
  font-size: 0.95rem;
}

.timeline {
  position: relative;
  padding-left: 2rem;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 7px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: rgba(171,157,120,0.2);
}

.timeline-item {
  position: relative;
  padding-bottom: 2.5rem;
}

.timeline-item:last-child {
  padding-bottom: 0;
}

.timeline-dot {
  position: absolute;
  left: -2rem;
  top: 4px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--accent);
  border: 3px solid var(--bg);
  box-shadow: 0 0 0 2px var(--accent);
}

.timeline-item h4 {
  font-size: 1.2rem;
  font-weight: 800;
  text-transform: none;
  letter-spacing: -0.01em;
  margin-bottom: 0.4rem;
  color: var(--text);
}

.timeline-item p {
  font-size: 0.9rem;
  color: var(--text-muted);
}

/* ── Why NETLINE / Split section ── */
.split-section {
  background: linear-gradient(to bottom, rgba(171,157,120,0.03) 0%, transparent 100%);
  border-top: 1px solid var(--border);
}

.split-grid {
  display: grid;
  grid-template-columns: 1fr 1px 1fr;
  gap: 4rem;
  align-items: start;
}

.split-divider {
  background: var(--border);
  align-self: stretch;
  min-height: 400px;
}

.split-col .badge-label {
  display: inline-block;
  background: var(--accent);
  color: #000;
  padding: 0.4rem 1rem;
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 1.5rem;
}

.split-col .badge-secondary {
  background: var(--secondary);
  color: #fff;
}

.split-col h2 {
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  margin-bottom: 1.25rem;
}

.split-col > p {
  margin-bottom: 2rem;
  font-size: 1rem;
}

.checklist {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.checklist li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.95rem;
  color: var(--text-light);
}

.checklist svg {
  color: var(--accent);
  flex-shrink: 0;
  margin-top: 2px;
}

.mini-cards {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.mini-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.25rem 1.5rem;
  transition: var(--transition);
}

.mini-card:hover {
  border-color: var(--accent);
}

.mini-card h4 {
  font-size: 1rem;
  font-weight: 700;
  text-transform: none;
  letter-spacing: -0.01em;
  margin-bottom: 0.35rem;
  color: var(--text);
}

.mini-card p {
  font-size: 0.85rem;
}

/* ── Individuelle Entwicklung ── */
.dev-section {
  background: linear-gradient(to bottom, rgba(171,157,120,0.03) 0%, transparent 100%);
  border-top: 1px solid var(--border);
}

.dev-logo {
  text-align: center;
  margin-bottom: 2rem;
  padding-top: 0.5rem;
}

.dev-logo img {
  height: 56px;
  width: auto;
}

/* Verfeinerte Karten in der Entwicklungs-Sektion */
.dev-section .cards-grid-4 {
  gap: 1.25rem;
}

.dev-section .card {
  display: flex;
  flex-direction: column;
  padding: 2rem 1.6rem;
  border-radius: 14px;
  position: relative;
  overflow: hidden;
}

.dev-section .card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent), transparent);
  opacity: 0;
  transition: var(--transition);
}

.dev-section .card.card-secondary::before {
  background: linear-gradient(90deg, var(--secondary), transparent);
}

.dev-section .card:hover::before {
  opacity: 1;
}

.dev-section .card-icon {
  width: 54px;
  height: 54px;
  border-radius: 14px;
  margin-bottom: 1.75rem;
}

.dev-section .card h3 {
  font-size: 1.1rem;
  line-height: 1.25;
  min-height: 2.5em;
  display: flex;
  align-items: flex-end;
  margin-bottom: 0.75rem;
  hyphens: none;
}

.dev-section .card p {
  font-size: 0.9rem;
  line-height: 1.6;
  color: var(--text-muted);
  margin: 0;
}

.ki-feature {
  display: flex;
  align-items: center;
  gap: 2rem;
  max-width: 960px;
  margin: 2.5rem auto 0;
  padding: 2rem 2.25rem;
  background: linear-gradient(135deg, rgba(171,157,120,0.10), rgba(171,157,120,0.02));
  border: 1px solid var(--accent-dark);
  border-radius: var(--radius);
}

.ki-feature-icon {
  width: 72px;
  height: 72px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--accent);
  color: #000;
  border-radius: 50%;
}

.ki-feature-text .section-badge {
  margin-bottom: 0.75rem;
}

.ki-feature-text h3 {
  text-transform: none;
  letter-spacing: -0.02em;
  margin-bottom: 0.5rem;
}

.ki-feature-text p {
  font-size: 0.95rem;
  color: var(--text-light);
  margin: 0;
}

.dev-highlight {
  display: flex;
  align-items: center;
  gap: 1rem;
  max-width: 860px;
  margin: 2.5rem auto 0;
  padding: 1.5rem 1.75rem;
  background: rgba(171,157,120,0.06);
  border: 1px solid var(--accent-dark);
  border-radius: var(--radius);
}

.dev-highlight svg {
  color: var(--accent);
  flex-shrink: 0;
}

.dev-highlight p {
  font-size: 0.95rem;
  color: var(--text-light);
  margin: 0;
}

.dev-highlight strong {
  color: var(--text);
}

.dev-cta {
  text-align: center;
  margin-top: 2.5rem;
}

/* ── Gen.24 section ── */
/* microtech Gen.24-Logo: Schutzzone – kein Element direkt daneben/darunter */
.gen24-logo {
  margin: 1rem 0 2rem;
}

.gen24-logo img {
  height: 48px;
  width: auto;
  display: block;
}

/* ── FAQ ── */
.faq-wrap {
  max-width: 860px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid var(--border);
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.3rem 0;
  cursor: pointer;
  font-size: 1rem;
  font-weight: 700;
  color: var(--text);
  gap: 1rem;
  transition: var(--transition);
}

.faq-question:hover {
  color: var(--accent);
}

.faq-icon {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  transition: transform 0.3s ease;
  color: var(--accent);
}

.faq-item.open .faq-icon {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.25s ease;
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.7;
  padding-bottom: 0;
}

.faq-item.open .faq-answer {
  max-height: 400px;
  padding-bottom: 1.25rem;
}

/* ── CTA Section ── */
.cta-section {
  background: linear-gradient(135deg, rgba(171,157,120,0.08) 0%, rgba(10,10,10,1) 60%);
  border-top: 1px solid var(--border);
  text-align: center;
}

.cta-section h2 {
  margin-bottom: 1.25rem;
}

.cta-section p {
  max-width: 560px;
  margin: 0 auto 2.5rem;
}

.cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* ── Footer ── */
footer {
  background: #050505;
  border-top: 1px solid var(--border);
  padding: 3rem 0 1.5rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-brand img {
  height: 40px;
  margin-bottom: 1rem;
}

.footer-brand p {
  font-size: 0.85rem;
  max-width: 280px;
}

.footer-col h4 {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  margin-bottom: 1rem;
}

.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.footer-col ul li a {
  font-size: 0.875rem;
  color: var(--text-muted);
  transition: var(--transition);
}

.footer-col ul li a:hover {
  color: var(--accent);
}

.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  font-size: 0.8rem;
  color: var(--text-muted);
}

.footer-bottom a {
  color: var(--text-muted);
  transition: var(--transition);
}

.footer-bottom a:hover {
  color: var(--accent);
}

/* ── Scroll to top ── */
.scroll-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 44px;
  height: 44px;
  background: var(--accent);
  color: #000;
  border: none;
  border-radius: var(--radius);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: translateY(10px);
  transition: var(--transition);
  z-index: 999;
  box-shadow: var(--shadow);
}

.scroll-top.visible {
  opacity: 1;
  transform: translateY(0);
}

.scroll-top:hover {
  background: var(--accent-light);
}

/* ── Cookie Banner ── */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--bg-card);
  border-top: 1px solid var(--border);
  z-index: 9999;
  padding: 1.25rem 1.5rem;
  display: flex;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
  justify-content: space-between;
  transform: translateY(100%);
  transition: transform 0.4s ease;
}

.cookie-banner.show {
  transform: translateY(0);
}

.cookie-banner p {
  font-size: 0.85rem;
  margin: 0;
  flex: 1;
}

.cookie-banner p a {
  color: var(--accent);
  text-decoration: underline;
}

.cookie-buttons {
  display: flex;
  gap: 0.75rem;
  flex-shrink: 0;
}

/* ── Contact Page ── */
.contact-hero {
  padding-top: 130px;
  padding-bottom: 60px;
  text-align: center;
}

/* ── ERP-Spezialisten ── */
.team-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  max-width: 860px;
  margin: 0 auto;
}

.team-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  transition: var(--transition);
}

.team-card:hover {
  border-color: var(--accent);
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
}

.team-photo {
  width: 96px;
  height: 96px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  background: var(--bg-card2) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='44' height='44' viewBox='0 0 24 24' fill='none' stroke='%23555' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 21v-2a4 4 0 0 0-4-4H8a4 4 0 0 0-4 4v2'/%3E%3Ccircle cx='12' cy='7' r='4'/%3E%3C/svg%3E") center/44px no-repeat;
  border: 2px solid var(--accent-dark);
}

.team-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.team-info h3 {
  text-transform: none;
  letter-spacing: -0.02em;
  margin-bottom: 0.2rem;
}

.team-role {
  display: block;
  font-size: 0.85rem;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 0.9rem;
}

.team-contact {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.team-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  color: var(--text-light);
  transition: var(--transition);
}

.team-link svg {
  color: var(--accent);
  flex-shrink: 0;
}

.team-link:hover {
  color: var(--accent);
}

/* ── Direktkontakt ── */
.contact-direct {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  max-width: 860px;
  margin: 0 auto;
}

.contact-option {
  display: block;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
  text-align: center;
  transition: var(--transition);
}

.contact-option:hover {
  border-color: var(--accent);
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
}

.contact-option-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 1.25rem;
  background: rgba(171,157,120,0.1);
  color: var(--accent);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.contact-option:hover .contact-option-icon {
  background: var(--accent);
  color: #000;
}

.contact-option h3 {
  text-transform: none;
  letter-spacing: -0.02em;
  margin-bottom: 0.5rem;
}

.contact-option p {
  font-size: 0.9rem;
  margin-bottom: 1rem;
}

.contact-option-value {
  display: inline-block;
  font-weight: 700;
  color: var(--accent);
  font-size: 1.05rem;
}

/* ── Utility ── */
.text-accent { color: var(--accent); }
.text-center { text-align: center; }
.mt-1 { margin-top: 0.5rem; }
.mb-1 { margin-bottom: 1rem; }
.mb-2 { margin-bottom: 2rem; }
.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── Responsive ── */
@media (max-width: 1024px) {
  .cards-grid-3,
  .cards-grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .split-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .split-divider {
    display: none;
  }

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

  .module-detail {
    position: static;
  }
}

@media (max-width: 768px) {
  body { overflow-x: hidden; }

  section { padding: 60px 0; }

  .nav-links { display: none; }
  .nav-toggle { display: flex; }

  .section-header { margin-bottom: 2.5rem; }

  .cards-grid-3,
  .cards-grid-4 { grid-template-columns: 1fr; }

  /* In Einspaltigkeit keine erzwungene Titelhöhe */
  .dev-section .card h3 {
    min-height: 0;
    display: block;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .team-grid,
  .contact-direct {
    grid-template-columns: 1fr;
  }

  .ki-feature,
  .dev-highlight {
    flex-direction: column;
    text-align: center;
  }

  .ki-feature { padding: 1.75rem 1.5rem; gap: 1.25rem; }

  .process-intro-card,
  .module-detail-card { padding: 1.75rem; }

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

  .stat-card { padding: 1.5rem 1rem; }
  .stat-number { font-size: 2rem; }
  .stat-icon { width: 52px; height: 52px; margin-bottom: 0.75rem; }

  .hero-checks {
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
  }

  /* Volle Breite für bessere Tap-Targets */
  .hero-buttons,
  .cta-buttons { flex-direction: column; align-items: stretch; }

  .hero-buttons .btn,
  .cta-buttons .btn { width: 100%; justify-content: center; }
}

@media (max-width: 480px) {
  .container { padding: 0 1.1rem; }
  section { padding: 52px 0; }

  .stats-grid { grid-template-columns: 1fr 1fr; gap: 0.75rem; }
  .stat-card { padding: 1.25rem 0.6rem; }
  .stat-number { font-size: 1.7rem; }
  .stat-label { font-size: 0.9rem; }
  .stat-desc { font-size: 0.75rem; }
  .stat-icon { width: 46px; height: 46px; }

  .btn-lg { padding: 0.8rem 1.25rem; font-size: 0.95rem; }
  .hero { padding-top: 110px; }

  /* Team-Karten gestapelt und zentriert */
  .team-card {
    flex-direction: column;
    text-align: center;
    gap: 1rem;
  }

  .team-contact { align-items: center; }

  .contact-option { padding: 1.75rem 1.25rem; }
}
