/* ============================================================
   PROCON IT Security Solutions GmbH
   Hauptstylesheet – style.css
   ============================================================ */

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

:root {
  --navy:       #0F2240;
  --blue:       #1E5FA8;
  --blue-light: #2B7DD4;
  --red:        #D81E1E;
  --red-dark:   #B81818;
  --orange:     #D81E1E;
  --gray-bg:    #F5F7FA;
  --gray-mid:   #8A95A3;
  --gray-border:#D8DDE4;
  --text-dark:  #0F2240;
  --text-mid:   #3D4F63;
  --white:      #FFFFFF;
  --radius:     8px;
  --shadow:     0 2px 16px rgba(15,34,64,0.10);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Segoe UI', Arial, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  color: var(--text-dark);
  background: var(--white);
}

img { max-width: 100%; height: auto; display: block; }
a   { color: var(--blue); text-decoration: none; }
a:hover { text-decoration: underline; }

.container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ── Typografie ── */
h1 { font-size: clamp(28px, 4vw, 44px); font-weight: 700; line-height: 1.15; letter-spacing: -0.5px; }
h2 { font-size: clamp(22px, 3vw, 32px); font-weight: 700; line-height: 1.2; }
h3 { font-size: 18px; font-weight: 700; }

.eyebrow {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2.5px;
  color: var(--blue);
  margin-bottom: 12px;
}

/* ── Buttons ── */
.btn {
  display: inline-block;
  padding: 13px 28px;
  border-radius: 5px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  border: none;
  font-family: inherit;
  transition: opacity 0.15s, transform 0.1s;
  text-decoration: none;
}
.btn:hover { opacity: 0.9; transform: translateY(-1px); text-decoration: none; }
.btn-primary   { background: var(--orange); color: var(--white); }
.btn-secondary { background: transparent; color: var(--white); border: 1.5px solid rgba(255,255,255,0.35); }
.btn-blue      { background: var(--blue); color: var(--white); }

/* ============================================================
   NAVIGATION
   ============================================================ */
#nav {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--navy);
  height: 64px;
  display: flex;
  align-items: center;
}

#nav .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}
.nav-logo-img {
  height: 30px;
  width: auto;
  display: block;
}
.nav-logo-mark {
  width: 34px; height: 34px;
  background: var(--orange);
  border-radius: 5px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.nav-logo-mark svg { width: 18px; height: 18px; fill: white; }
.nav-logo-text  { color: white; font-weight: 700; font-size: 16px; line-height: 1.1; }
.nav-logo-sub   { color: #7AAAD4; font-size: 10px; letter-spacing: 1.5px; text-transform: uppercase; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 2px;
  list-style: none;
}
.nav-links > li { position: relative; }
.nav-links > li > a {
  color: #B8CCE4;
  padding: 8px 14px;
  border-radius: 4px;
  font-size: 14px;
  display: block;
  transition: color 0.15s, background 0.15s;
}
.nav-links > li > a:hover,
.nav-links > li.active > a { color: white; background: rgba(255,255,255,0.08); text-decoration: none; }

/* Dropdown */
.nav-links .dropdown { display: none; position: absolute; top: 100%; left: 0; background: var(--navy); border: 1px solid rgba(255,255,255,0.1); border-radius: 6px; min-width: 220px; padding: 8px 0; list-style: none; z-index: 200; }
.nav-links > li:hover .dropdown { display: block; }
.nav-links .dropdown li a { color: #B8CCE4; padding: 9px 18px; font-size: 13.5px; display: block; transition: color 0.15s; }
.nav-links .dropdown li a:hover { color: white; background: rgba(255,255,255,0.06); text-decoration: none; }

.nav-cta { margin-left: 16px; }
.nav-mobile-only { display: none; }

/* Hamburger */
.nav-hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 6px; }
.nav-hamburger span { display: block; width: 24px; height: 2px; background: white; border-radius: 2px; transition: 0.2s; }

/* ============================================================
   HERO
   ============================================================ */
#hero {
  background: var(--navy);
  padding: 80px 0 90px;
  position: relative;
  overflow: hidden;
}

/* Subtile Hintergrund-Gitterlinien */
#hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(30,95,168,0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(30,95,168,0.08) 1px, transparent 1px);
  background-size: 48px 48px;
  pointer-events: none;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 56px;
  align-items: center;
  position: relative;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px 14px;
  background: rgba(30,95,168,0.25);
  border: 1px solid rgba(30,95,168,0.45);
  color: #8AAFD4;
  font-size: 12px;
  font-weight: 600;
  padding: 7px 16px;
  border-radius: 20px;
  margin-bottom: 24px;
  letter-spacing: 0.3px;
}
.brand-label { color: #8AAFD4; }
.brand-item { display: inline-flex; align-items: center; gap: 6px; color: #C5D8EC; }
.hero-badge-dot { width: 7px; height: 7px; background: #4CAF7D; border-radius: 50%; flex-shrink: 0; }

#hero h1 { color: white; margin-bottom: 20px; }
#hero h1 span { color: var(--orange); }
.hero-sub { color: #8AAFD4; font-size: 17px; line-height: 1.65; margin-bottom: 32px; max-width: 520px; }

.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }

.hero-stats {
  display: flex;
  gap: 32px;
  margin-top: 44px;
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.1);
}
.hero-stat-num   { color: white; font-size: 28px; font-weight: 800; line-height: 1; }
.hero-stat-label { color: #5F7F9C; font-size: 11px; text-transform: uppercase; letter-spacing: 0.8px; margin-top: 4px; }

/* Hero-Panel rechts */
.hero-panel {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 12px;
  padding: 24px;
}
.hero-panel-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
}
.panel-title { color: #8AAFD4; }
.panel-status { display: flex; align-items: center; gap: 6px; color: #4CAF7D; }
.panel-status-dot { width: 7px; height: 7px; background: #4CAF7D; border-radius: 50%; }

.panel-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 13px 0;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.panel-item:last-child { border-bottom: none; padding-bottom: 0; }

.panel-icon {
  width: 38px; height: 38px;
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.panel-icon.blue   { background: rgba(30,95,168,0.3); }
.panel-icon.orange { background: rgba(232,98,10,0.2); }
.panel-icon svg    { width: 18px; height: 18px; }

.panel-item-name { color: white; font-size: 13.5px; font-weight: 600; margin-bottom: 2px; }
.panel-item-desc { color: #6B87A8; font-size: 12px; }

.panel-badge {
  font-size: 11px;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 12px;
  white-space: nowrap;
  margin-left: auto;
}
.badge-green { background: rgba(76,175,61,0.15); color: #4CAF7D; }
.badge-blue  { background: rgba(30,95,168,0.25); color: #6BAEE8; }

/* ============================================================
   TRUST BAR
   ============================================================ */
#trust {
  background: var(--gray-bg);
  border-top: 1px solid var(--gray-border);
  border-bottom: 1px solid var(--gray-border);
  padding: 18px 0;
}
.trust-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 13.5px;
  color: var(--text-mid);
}
.trust-item svg { color: var(--blue); flex-shrink: 0; }

/* ============================================================
   LEISTUNGEN
   ============================================================ */
#leistungen { padding: 72px 0; background: var(--white); }

.section-header { margin-bottom: 48px; }
.section-header h2 { color: var(--navy); margin-bottom: 12px; }
.section-header p  { color: var(--text-mid); font-size: 16px; max-width: 540px; }

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

.service-card {
  background: white;
  border: 1px solid var(--gray-border);
  border-radius: 10px;
  padding: 28px 22px;
  transition: border-color 0.2s, box-shadow 0.2s;
  position: relative;
  display: flex;
  flex-direction: column;
}
.service-card:hover {
  border-color: var(--blue);
  box-shadow: 0 4px 24px rgba(30,95,168,0.12);
}

.card-icon {
  width: 48px; height: 48px;
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 18px;
  flex-shrink: 0;
}
.card-icon.navy-bg   { background: rgba(15,34,64,0.08); }
.card-icon.blue-bg   { background: rgba(30,95,168,0.1); }
.card-icon.orange-bg { background: rgba(232,98,10,0.1); }
.card-icon svg { width: 24px; height: 24px; }

.service-card h3 { color: var(--navy); margin-bottom: 8px; font-size: 16px; }
.service-card p  { color: var(--text-mid); font-size: 13.5px; line-height: 1.6; flex: 1; }

.card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 18px;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--blue);
}
.card-link:hover { text-decoration: none; opacity: 0.8; }

/* ============================================================
   USP BAND
   ============================================================ */
#usp {
  background: var(--navy);
  padding: 56px 0;
}
.usp-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  text-align: center;
}
.usp-item { padding: 8px; }
.usp-num   { font-size: 40px; font-weight: 800; color: var(--orange); line-height: 1; margin-bottom: 8px; }
.usp-label { color: #8AAFD4; font-size: 13px; line-height: 1.4; }

/* ============================================================
   WARUM PROCON
   ============================================================ */
#warum {
  padding: 72px 0;
  background: var(--gray-bg);
}
.warum-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}
.warum-left h2  { color: var(--navy); margin-bottom: 12px; }
.warum-left > p { color: var(--text-mid); font-size: 16px; margin-bottom: 32px; }

.why-points { display: flex; flex-direction: column; gap: 24px; }
.why-point  { display: flex; gap: 16px; align-items: flex-start; }
.why-point-icon {
  width: 40px; height: 40px;
  background: rgba(30,95,168,0.1);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}
.why-point-icon svg { width: 20px; height: 20px; color: var(--blue); }
.why-point h3 { font-size: 15px; color: var(--navy); margin-bottom: 4px; }
.why-point p  { font-size: 13.5px; color: var(--text-mid); line-height: 1.6; }

/* Referenzkarte */
.ref-card {
  background: white;
  border: 1px solid var(--gray-border);
  border-radius: 12px;
  padding: 28px;
}
.ref-card-title {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--gray-mid);
  font-weight: 700;
  margin-bottom: 20px;
}
.ref-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 12px 0;
  border-bottom: 1px solid var(--gray-border);
}
.ref-item:last-child { border-bottom: none; padding-bottom: 0; }
.ref-dot { width: 10px; height: 10px; border-radius: 50%; flex-shrink: 0; }
.ref-name { font-size: 14px; font-weight: 600; color: var(--navy); }
.ref-type { font-size: 12px; color: var(--gray-mid); margin-top: 2px; }
.ref-tag  {
  margin-left: auto;
  font-size: 11px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 12px;
  white-space: nowrap;
}

/* ============================================================
   KONTAKT
   ============================================================ */
#kontakt { padding: 72px 0; background: white; }
.kontakt-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}
.kontakt-left h2  { color: var(--navy); margin-bottom: 12px; }
.kontakt-left > p { color: var(--text-mid); font-size: 15px; margin-bottom: 32px; }

.contact-rows { display: flex; flex-direction: column; gap: 20px; }
.contact-row  { display: flex; align-items: center; gap: 14px; }
.contact-icon {
  width: 40px; height: 40px;
  background: rgba(30,95,168,0.08);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.contact-icon svg { width: 18px; height: 18px; color: var(--blue); }
.contact-label { font-size: 11px; color: var(--gray-mid); text-transform: uppercase; letter-spacing: 0.8px; font-weight: 700; margin-bottom: 2px; }
.contact-value { font-size: 15px; color: var(--navy); font-weight: 500; }
.contact-value a { color: var(--navy); }
.contact-sub-emails { font-size: 13px; color: var(--gray-mid); margin-top: 6px; line-height: 1.7; }
.contact-sub-emails a { color: var(--blue); font-weight: 500; }

/* Formular */
.contact-form {
  background: white;
  border: 1px solid var(--gray-border);
  border-radius: 12px;
  padding: 32px;
  box-shadow: var(--shadow);
}
.contact-form h3 { font-size: 18px; color: var(--navy); margin-bottom: 6px; }
.contact-form > p { font-size: 13.5px; color: var(--text-mid); margin-bottom: 24px; }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-group { display: flex; flex-direction: column; gap: 6px; margin-bottom: 14px; }
.form-group label {
  font-size: 11.5px;
  font-weight: 700;
  color: var(--text-mid);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.form-group input,
.form-group textarea,
.form-group select {
  border: 1px solid var(--gray-border);
  border-radius: 6px;
  padding: 10px 14px;
  font-size: 14px;
  font-family: inherit;
  color: var(--text-dark);
  background: var(--gray-bg);
  outline: none;
  transition: border-color 0.15s, background 0.15s;
  width: 100%;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--blue);
  background: white;
}
.form-group textarea { resize: vertical; min-height: 110px; }

.form-submit { width: 100%; margin-top: 4px; font-size: 15px; padding: 14px; }
.form-hint { font-size: 12px; color: var(--gray-mid); margin-top: 10px; text-align: center; }

.form-success {
  display: none;
  background: rgba(76,175,61,0.1);
  border: 1px solid rgba(76,175,61,0.3);
  border-radius: 8px;
  padding: 16px;
  color: #2D7A1F;
  font-size: 14px;
  margin-top: 12px;
  text-align: center;
}

/* ============================================================
   FOOTER
   ============================================================ */
#footer {
  background: var(--navy);
  color: #8AAFD4;
  padding: 52px 0 28px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 40px;
}
.footer-brand { font-size: 15px; font-weight: 700; color: white; margin-bottom: 10px; }
.footer-desc  { font-size: 13.5px; line-height: 1.7; max-width: 280px; }
.footer-col-title {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: white;
  margin-bottom: 14px;
}
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 9px; }
.footer-links a { color: #8AAFD4; font-size: 13.5px; transition: color 0.15s; }
.footer-links a:hover { color: white; text-decoration: none; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12.5px;
  flex-wrap: wrap;
  gap: 8px;
}
.footer-bottom a { color: #8AAFD4; }
.footer-bottom a:hover { color: white; text-decoration: none; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-panel { margin-top: 8px; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .usp-grid { grid-template-columns: repeat(2, 1fr); gap: 24px; }
  .warum-inner { grid-template-columns: 1fr; }
  .kontakt-inner { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .trust-inner { gap: 20px; }
}

@media (max-width: 600px) {
  .services-grid { grid-template-columns: 1fr; }
  .nav-links { display: none; }
  .nav-links.open { display: flex; flex-direction: column; position: absolute; top: 64px; left: 0; right: 0; background: var(--navy); padding: 16px; gap: 4px; border-top: 1px solid rgba(255,255,255,0.1); }
  .nav-cta { display: none; }
  .nav-mobile-only { display: block; }
  .nav-hamburger { display: flex; }
  .hero-stats { flex-wrap: wrap; gap: 20px; }
  .form-row { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
}

/* ============================================================
   UNTERSEITEN (Subpages)
   ============================================================ */
.subpage-hero {
  background: var(--navy);
  padding: 64px 0 56px;
  position: relative;
  overflow: hidden;
}
.subpage-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(30,95,168,0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(30,95,168,0.08) 1px, transparent 1px);
  background-size: 48px 48px;
  pointer-events: none;
}
.subpage-hero .container { position: relative; }
.breadcrumb { font-size: 13px; color: #5F7F9C; margin-bottom: 16px; }
.breadcrumb a { color: #8AAFD4; }
.breadcrumb a:hover { color: white; text-decoration: none; }
.subpage-hero h1 { color: white; max-width: 760px; margin-bottom: 16px; }
.subpage-hero .lead { color: #8AAFD4; font-size: 17px; line-height: 1.65; max-width: 680px; }

.subpage-section { padding: 64px 0; }
.subpage-section.alt { background: var(--gray-bg); }
.subpage-section h2 { color: var(--navy); margin-bottom: 16px; }
.subpage-section .section-lead { color: var(--text-mid); font-size: 16px; max-width: 720px; margin-bottom: 40px; }

.prose { max-width: 760px; }
.prose p { color: var(--text-mid); font-size: 16px; margin-bottom: 16px; }
.prose strong { color: var(--navy); }

/* Bildplatz / Image placeholder */
.img-placeholder {
  background: linear-gradient(135deg, #E8EDF3, #F5F7FA);
  border: 2px dashed var(--gray-border);
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 40px 24px;
  color: var(--gray-mid);
  min-height: 240px;
}
.img-placeholder svg { width: 40px; height: 40px; margin-bottom: 12px; opacity: 0.5; }
.img-placeholder .ph-title { font-weight: 700; font-size: 14px; color: var(--text-mid); margin-bottom: 4px; }
.img-placeholder .ph-hint { font-size: 12.5px; }
.img-placeholder img { border-radius: 10px; }

/* Anwendungsbereiche Grid */
.usecase-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.usecase-card {
  background: white;
  border: 1px solid var(--gray-border);
  border-radius: 12px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.2s, transform 0.2s;
}
.usecase-card:hover { box-shadow: 0 8px 28px rgba(15,34,64,0.1); transform: translateY(-3px); }
.usecase-card .uc-img {
  height: 160px;
  background: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.usecase-card .uc-img img { width: 100%; height: 100%; object-fit: cover; }
.usecase-card .uc-body { padding: 22px; flex: 1; }
.usecase-card h3 { color: var(--navy); font-size: 16px; margin-bottom: 8px; }
.usecase-card p { color: var(--text-mid); font-size: 13.5px; line-height: 1.6; }

/* Feature-Liste mit Häkchen */
.feature-list { list-style: none; display: flex; flex-direction: column; gap: 14px; margin: 24px 0; }
.feature-list li { display: flex; gap: 12px; align-items: flex-start; font-size: 15px; color: var(--text-mid); }
.feature-list .fl-icon {
  width: 24px; height: 24px; border-radius: 50%;
  background: rgba(45,138,78,0.12);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; margin-top: 1px;
}
.feature-list .fl-icon svg { width: 14px; height: 14px; color: #2D8A4E; }

/* Produkt-/Kategorie-Grid */
.cat-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.cat-card {
  background: white;
  border: 1px solid var(--gray-border);
  border-radius: 10px;
  padding: 24px;
  text-decoration: none;
  display: block;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.cat-card:hover { border-color: var(--blue); box-shadow: 0 4px 20px rgba(30,95,168,0.1); text-decoration: none; }
.cat-card .cat-icon {
  width: 44px; height: 44px; border-radius: 10px;
  background: rgba(30,95,168,0.1);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 16px;
}
.cat-card .cat-icon svg { width: 22px; height: 22px; color: var(--blue); }
.cat-card h3 { color: var(--navy); font-size: 15.5px; margin-bottom: 6px; }
.cat-card p { color: var(--text-mid); font-size: 13px; line-height: 1.55; }

/* CTA-Band */
.cta-band {
  background: var(--navy);
  border-radius: 16px;
  padding: 48px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-band h2 { color: white; margin-bottom: 12px; }
.cta-band p { color: #8AAFD4; font-size: 16px; margin-bottom: 28px; max-width: 520px; margin-left: auto; margin-right: auto; }

.two-col-text {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

@media (max-width: 900px) {
  .usecase-grid { grid-template-columns: repeat(2, 1fr); }
  .cat-grid { grid-template-columns: repeat(2, 1fr); }
  .two-col-text { grid-template-columns: 1fr; gap: 32px; }
}
@media (max-width: 600px) {
  .usecase-grid { grid-template-columns: 1fr; }
  .cat-grid { grid-template-columns: 1fr; }
  .cta-band { padding: 32px 24px; }
}

/* ── Team-Karten ── */
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.team-card {
  background: white;
  border: 1px solid var(--gray-border);
  border-radius: 12px;
  padding: 32px 24px;
  text-align: center;
  transition: box-shadow 0.2s, transform 0.2s;
}
.team-card:hover { box-shadow: 0 8px 28px rgba(15,34,64,0.1); transform: translateY(-3px); }
.team-avatar {
  width: 96px; height: 96px;
  border-radius: 50%;
  margin: 0 auto 18px;
  display: flex; align-items: center; justify-content: center;
  font-size: 32px; font-weight: 700; letter-spacing: 1px;
}
.team-card h3 { color: var(--navy); font-size: 17px; margin-bottom: 6px; }
.team-role { color: var(--text-mid); font-size: 13.5px; line-height: 1.5; margin-bottom: 14px; min-height: 40px; }
.team-mail { font-size: 13px; font-weight: 600; color: var(--blue); }
.team-mail:hover { opacity: 0.8; text-decoration: none; }

@media (max-width: 900px) { .team-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .team-grid { grid-template-columns: 1fr; } .team-role { min-height: 0; } }

/* ── Downloads ── */
.download-hero-card {
  background: white;
  border: 1px solid var(--gray-border);
  border-radius: 14px;
  padding: 32px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 28px;
  align-items: center;
  box-shadow: var(--shadow);
}
.download-logo {
  width: 72px; height: 72px;
  border-radius: 16px;
  background: linear-gradient(135deg, #EE2E2E, #C8102E);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.download-logo svg { width: 38px; height: 38px; color: white; }
.download-hero-card h2 { color: var(--navy); font-size: 21px; margin-bottom: 6px; }
.download-hero-card p { color: var(--text-mid); font-size: 14.5px; line-height: 1.6; }
.download-meta { font-size: 12.5px; color: var(--gray-mid); margin-top: 8px; }

.platform-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
  margin-top: 28px;
}
.platform-card {
  background: white;
  border: 1px solid var(--gray-border);
  border-radius: 10px;
  padding: 22px 14px;
  text-align: center;
  text-decoration: none;
  transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}
.platform-card:hover { border-color: var(--blue); box-shadow: 0 4px 18px rgba(30,95,168,0.12); transform: translateY(-2px); text-decoration: none; }
.platform-card svg { width: 16px; height: 16px; color: var(--navy); }
.platform-card .pf-name { font-size: 14px; font-weight: 700; color: var(--navy); }
.platform-card .pf-sub { font-size: 11.5px; color: var(--gray-mid); }

/* Anleitung Schritte */
.steps-list { counter-reset: step; list-style: none; margin-top: 8px; }
.steps-list li {
  position: relative;
  padding: 0 0 22px 56px;
  border-left: 2px solid var(--gray-border);
  margin-left: 18px;
}
.steps-list li:last-child { border-left: 2px solid transparent; padding-bottom: 0; }
.steps-list li::before {
  counter-increment: step;
  content: counter(step);
  position: absolute;
  left: -18px; top: -2px;
  width: 36px; height: 36px;
  background: var(--blue);
  color: white;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 15px;
}
.steps-list li h3 { color: var(--navy); font-size: 16px; margin-bottom: 4px; }
.steps-list li p { color: var(--text-mid); font-size: 14.5px; line-height: 1.6; }

.info-box {
  background: #EBF3FB;
  border-left: 4px solid var(--blue);
  border-radius: 0 10px 10px 0;
  padding: 20px 24px;
  margin-top: 8px;
}
.info-box h3 { color: var(--navy); font-size: 15px; margin-bottom: 6px; }
.info-box p { color: var(--text-mid); font-size: 14px; line-height: 1.6; }

@media (max-width: 900px) {
  .download-hero-card { grid-template-columns: auto 1fr; }
  .download-hero-card .btn { grid-column: 1 / -1; }
  .platform-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 600px) {
  .platform-grid { grid-template-columns: repeat(2, 1fr); }
  .download-hero-card { grid-template-columns: 1fr; text-align: center; }
  .download-logo { margin: 0 auto; }
}

/* ── Produkt-Illustrationen ── */
.product-illu {
  border-radius: 14px;
  overflow: hidden;
  background: linear-gradient(150deg, #0F2240 0%, #16335c 60%, #1E5FA8 140%);
  position: relative;
  aspect-ratio: 4 / 3;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow);
}
.product-illu svg { width: 100%; height: 100%; display: block; }
.product-illu .illu-caption {
  position: absolute;
  left: 18px; bottom: 16px;
  color: rgba(255,255,255,0.85);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  z-index: 2;
}

/* ── Refurbished Apple ── */
.refurb-intro {
  max-width: 760px;
  margin: 0 auto 8px;
  text-align: center;
}
.refurb-benefits {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin: 40px 0 8px;
}
.refurb-benefit {
  text-align: center;
  padding: 8px;
}
.refurb-benefit-icon {
  width: 52px; height: 52px;
  margin: 0 auto 14px;
  border-radius: 14px;
  background: rgba(30,95,168,0.1);
  display: flex; align-items: center; justify-content: center;
}
.refurb-benefit-icon svg { width: 26px; height: 26px; color: var(--blue); }
.refurb-benefit h3 { font-size: 15px; color: var(--navy); margin-bottom: 5px; }
.refurb-benefit p { font-size: 13px; color: var(--text-mid); line-height: 1.5; }

.device-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.device-card {
  background: #fff;
  border: 1px solid var(--gray-border);
  border-radius: 16px;
  padding: 32px 28px;
  text-align: center;
  transition: box-shadow 0.25s, transform 0.25s;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.device-card:hover { box-shadow: 0 12px 40px rgba(15,34,64,0.12); transform: translateY(-4px); }
.device-visual {
  width: 100%;
  height: 150px;
  border-radius: 12px;
  background: linear-gradient(160deg, #F5F7FA, #E9EEF4);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 22px;
}
.device-visual svg { width: 88px; height: 88px; color: var(--navy); opacity: 0.92; }
.device-card h3 { font-size: 18px; color: var(--navy); margin-bottom: 8px; font-weight: 700; }
.device-card p { font-size: 13.5px; color: var(--text-mid); line-height: 1.6; }
.device-tag {
  display: inline-block;
  margin-top: 16px;
  font-size: 12px;
  font-weight: 600;
  color: var(--blue);
  background: rgba(30,95,168,0.08);
  padding: 5px 14px;
  border-radius: 20px;
}

@media (max-width: 900px) {
  .refurb-benefits { grid-template-columns: repeat(2, 1fr); gap: 24px; }
  .device-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .refurb-benefits { grid-template-columns: 1fr; }
  .device-grid { grid-template-columns: 1fr; }
}

/* ── Team-Foto-Avatar ── */
.team-avatar-photo { padding: 0; overflow: hidden; background: var(--navy); border: 3px solid rgba(30,95,168,0.55); box-shadow: 0 4px 14px rgba(15,34,64,0.18); }
.team-avatar-photo img { width: 100%; height: 100%; object-fit: cover; display: block; }

/* ── Team-Sektion: dezentes Procon-Wasserzeichen ── */
.team-watermark { position: relative; overflow: hidden; }
.team-watermark::before {
  content: "";
  position: absolute;
  top: 46%; left: 50%;
  transform: translate(-50%, -50%);
  width: min(820px, 88%);
  aspect-ratio: 944 / 92;
  background: url("../images/logo.png") center/contain no-repeat;
  opacity: 0.13;
  pointer-events: none;
  z-index: 0;
}
.team-watermark .container { position: relative; z-index: 1; }

/* ── Ratgeber / Blog ── */
.article-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; margin-top: 8px; }
.article-card {
  background: #fff; border: 1px solid var(--gray-border); border-radius: 14px;
  overflow: hidden; display: flex; flex-direction: column;
  transition: box-shadow .25s, transform .25s;
}
.article-card:hover { box-shadow: 0 12px 40px rgba(15,34,64,0.12); transform: translateY(-4px); }
.article-card .ac-top { height: 120px; background: linear-gradient(150deg,#0F2240,#16335c 60%,#1E5FA8 140%); display:flex; align-items:center; justify-content:center; }
.article-card .ac-top svg { width: 46px; height: 46px; color: #8AAFD4; }
.article-card .ac-body { padding: 22px 22px 24px; display:flex; flex-direction:column; flex:1; }
.article-card .ac-cat { font-size: 11px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; color: var(--blue); margin-bottom: 8px; }
.article-card h3 { font-size: 17px; color: var(--navy); line-height: 1.35; margin-bottom: 10px; }
.article-card p { font-size: 14px; color: var(--text-mid); line-height: 1.6; flex:1; }
.article-card .ac-more { margin-top: 16px; font-weight: 600; color: var(--blue); font-size: 14px; }

.article-meta { color: var(--muted, #64748B); font-size: 14px; margin-top: 6px; }
.article-body { max-width: 760px; }
.article-body h2 { font-size: 24px; margin: 34px 0 12px; }
.article-body h3 { font-size: 19px; margin: 24px 0 8px; color: var(--navy); }
.article-body p, .article-body li { font-size: 16px; line-height: 1.75; color: #2b3a4f; }
.article-body ul { margin: 12px 0 12px 22px; }
.article-body li { margin-bottom: 8px; }
.article-back { display:inline-block; margin-bottom: 10px; color: var(--blue); font-size: 14px; font-weight: 600; }

@media (max-width: 900px){ .article-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px){ .article-grid { grid-template-columns: 1fr; } }
