/* =========================================================================
   CaRD Posting Connector – Modernisierungs-Layer (2026)
   Additiv ueber style.css geladen. Behaelt das BizLand-Layout bei,
   frischt Farben, Typografie, Karten, Buttons und neue Sektionen auf.
   Keine externen Ressourcen.
   ========================================================================= */

:root {
  --pc-primary: #106eea;
  --pc-primary-dark: #0a52b5;
  --pc-primary-light: #3b8bef;
  --pc-accent: #00b4d8;
  --pc-navy: #1b2a4a;
  --pc-ink: #2c3a52;
  --pc-muted: #5b6b85;
  --pc-bg-soft: #f5f9ff;
  --pc-bg-soft2: #eef4ff;
  --pc-border: #e3ecf7;
  --pc-shadow: 0 .5rem 1.75rem rgba(16, 110, 234, .10);
  --pc-shadow-lg: 0 1.25rem 2.75rem rgba(16, 110, 234, .16);
  --pc-radius: 16px;
  --pc-gradient: linear-gradient(135deg, #106eea 0%, #3b8bef 100%);
  --pc-gradient-accent: linear-gradient(135deg, #106eea 0%, #00b4d8 100%);
}

html { scroll-behavior: smooth; }

body {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  color: var(--pc-ink);
}

/* ---------- Header / Navigation ---------- */
#header {
  transition: all .35s ease;
  background: rgba(255, 255, 255, .96);
}
#header.header-scrolled,
#header.header-inner-pages {
  box-shadow: 0 .35rem 1.25rem rgba(27, 42, 74, .08);
  background: rgba(255, 255, 255, .98);
  backdrop-filter: saturate(180%) blur(8px);
}
#topbar {
  background: var(--pc-navy);
}
.navbar a, .navbar a:focus {
  font-family: "Roboto", sans-serif;
  font-weight: 600;
  letter-spacing: .2px;
}
.navbar .getstarted, .navbar a.active { color: var(--pc-primary); }
.navbar a:hover::before { display: none; }

/* ---------- Buttons ---------- */
.btn-get-started,
.btn-buy,
.php-email-form .btn-primary,
.btn-pc {
  border-radius: 50px;
  font-family: "Roboto", sans-serif;
  font-weight: 600;
  letter-spacing: .4px;
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease;
}
.btn-get-started {
  background: var(--pc-gradient);
  box-shadow: 0 .5rem 1.25rem rgba(16, 110, 234, .35);
  border: 0;
}
.btn-get-started:hover,
.btn-buy:hover,
.php-email-form .btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: var(--pc-shadow-lg);
}
.php-email-form .btn-primary {
  background: var(--pc-gradient);
  border: 0;
  padding: 12px 38px;
}
.btn-buy {
  border: 2px solid var(--pc-primary);
}
.btn-buy:hover { background: var(--pc-primary); color: #fff; }

/* ---------- Hero ---------- */
#hero {
  position: relative;
}
#hero::before {
  content: "";
  position: absolute; inset: 0;
  /* Heller Schleier ueber dem eigenen ADT-Screenshot: das Bild bleibt subtil
     sichtbar, der Inhalt kommt klar zur Geltung (kein dunkles Overlay mehr) */
  background: linear-gradient(135deg, rgba(248, 251, 255, .90) 0%, rgba(231, 241, 255, .80) 100%);
  z-index: 1;
}
#hero .container { position: relative; z-index: 2; }
/* Dunkle, klar lesbare Headline auf hellem Hintergrund */
#hero h1 { font-weight: 700; color: var(--pc-navy); text-shadow: 0 1px 0 rgba(255, 255, 255, .6); }
#hero h1 span { color: var(--pc-primary); border-bottom: 3px solid var(--pc-accent); }
#hero h2 { color: #44556f; }

/* Vertrauens-Badges unter dem Hero-Text */
.hero-badges {
  display: flex; flex-wrap: wrap; gap: 10px 22px;
  margin-top: 26px;
}
.hero-badges span {
  display: inline-flex; align-items: center; gap: 8px;
  color: var(--pc-navy); font-size: 15px; font-weight: 600;
}
.hero-badges i { color: var(--pc-primary); font-size: 20px; }

/* ---------- Section Titles ---------- */
.section-title h2 {
  color: var(--pc-primary);
  font-weight: 700;
}
.section-title h2::after { background: var(--pc-accent); }
.section-title h3 { color: var(--pc-navy); font-weight: 700; }
.section-title h3 span { color: var(--pc-primary); }

/* ---------- Featured Services (oben) ---------- */
.featured-services .icon-box {
  border-radius: var(--pc-radius);
  border: 1px solid var(--pc-border);
  box-shadow: var(--pc-shadow);
  padding: 34px 30px;
  transition: transform .3s ease, box-shadow .3s ease;
  background: #fff;
}
.featured-services .icon-box::before { display: none; }
.featured-services .icon-box:hover {
  transform: translateY(-8px);
  box-shadow: var(--pc-shadow-lg);
}
.featured-services .icon i,
.services .icon-box .icon i {
  color: var(--pc-primary);
}
.featured-services .icon {
  width: 64px; height: 64px; border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  background: var(--pc-bg-soft2);
  margin-bottom: 18px;
}
.featured-services .icon i { font-size: 30px; line-height: 1; }
.featured-services .title a { color: var(--pc-navy); font-weight: 600; }
.featured-services .icon-box:hover .title a { color: var(--pc-primary); }

/* ---------- About ---------- */
.about .content ul i { color: var(--pc-primary); }
.about .content h3 { color: var(--pc-navy); }
.about img { border-radius: var(--pc-radius); box-shadow: var(--pc-shadow); }

/* ---------- Services (Vorteile) ---------- */
.services .icon-box {
  border-radius: var(--pc-radius);
  border: 1px solid var(--pc-border);
  box-shadow: var(--pc-shadow);
  transition: transform .3s ease, box-shadow .3s ease;
}
.services .icon-box:hover {
  transform: translateY(-6px);
  box-shadow: var(--pc-shadow-lg);
  border-color: #c9defa;
}
.services .icon-box .icon {
  width: 56px; height: 56px; border-radius: 12px;
  background: var(--pc-bg-soft2);
  display: flex; align-items: center; justify-content: center;
}
.services .icon-box .icon i { font-size: 26px; }
.services .icon-box h4 a { color: var(--pc-navy); }
.services .icon-box:hover h4 a { color: var(--pc-primary); }

/* =========================================================================
   NEU: Integrations- & Dienstleistungs-Sektion
   ========================================================================= */
.integration {
  padding: 60px 0;
  background: linear-gradient(180deg, #ffffff 0%, var(--pc-bg-soft) 100%);
}
.integration .lead-row { margin-bottom: 14px; }
.integration .lead-text {
  font-size: 18px; line-height: 1.7; color: var(--pc-ink);
  max-width: 920px; margin: 0 auto 10px; text-align: center;
}
.use-case-card {
  height: 100%;
  background: #fff;
  border: 1px solid var(--pc-border);
  border-radius: var(--pc-radius);
  padding: 30px 28px;
  box-shadow: var(--pc-shadow);
  transition: transform .3s ease, box-shadow .3s ease;
}
.use-case-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--pc-shadow-lg);
}
.use-case-card .uc-icon {
  width: 60px; height: 60px; border-radius: 14px;
  background: var(--pc-gradient-accent);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
}
.use-case-card .uc-icon i { font-size: 30px; color: #fff; line-height: 1; }
.use-case-card h4 {
  font-family: "Poppins", sans-serif;
  font-size: 20px; font-weight: 600; color: var(--pc-navy);
  margin-bottom: 12px;
}
.use-case-card p { font-size: 15.5px; color: var(--pc-muted); margin: 0; line-height: 1.65; }

/* Dienstleistungs-Band "Wir machen das fuer Sie" */
.service-band {
  margin-top: 50px;
  border-radius: 22px;
  background: var(--pc-gradient);
  color: #fff;
  padding: 50px 46px;
  box-shadow: var(--pc-shadow-lg);
  position: relative;
  overflow: hidden;
}
.service-band::after {
  content: "";
  position: absolute; right: -60px; top: -60px;
  width: 240px; height: 240px; border-radius: 50%;
  background: rgba(255,255,255,.08);
}
.service-band h3 {
  font-family: "Poppins", sans-serif;
  font-weight: 700; font-size: 28px; color: #fff; margin-bottom: 16px;
}
.service-band p { font-size: 17px; line-height: 1.7; color: #eaf2ff; max-width: 760px; }
.service-band .band-cta {
  display: inline-block; margin-top: 14px;
  background: #fff; color: var(--pc-primary);
  font-family: "Roboto", sans-serif; font-weight: 700;
  padding: 13px 34px; border-radius: 50px;
  transition: transform .25s ease, box-shadow .25s ease;
}
.service-band .band-cta:hover { transform: translateY(-3px); box-shadow: 0 1rem 2rem rgba(0,0,0,.25); }

.service-band .band-points {
  list-style: none; padding: 0; margin: 22px 0 0;
  display: flex; flex-wrap: wrap; gap: 12px 28px;
}
.service-band .band-points li {
  display: flex; align-items: center; gap: 10px;
  color: #fff; font-weight: 500; font-size: 15.5px;
}
.service-band .band-points i { color: #9fe6ff; font-size: 22px; }

/* Wettbewerbsvorteil-Callout */
.advantage-callout {
  margin-top: 40px; text-align: center;
  max-width: 820px; margin-left: auto; margin-right: auto;
}
.advantage-callout h3 {
  font-family: "Poppins", sans-serif; font-weight: 700;
  color: var(--pc-navy); font-size: 24px; margin-bottom: 12px;
}
.advantage-callout p { color: var(--pc-muted); font-size: 16.5px; line-height: 1.7; }

/* ---------- Pricing ---------- */
.pricing .box {
  border-radius: var(--pc-radius);
  box-shadow: var(--pc-shadow);
  border: 1px solid var(--pc-border);
  transition: transform .3s ease, box-shadow .3s ease;
}
.pricing .box:hover { transform: translateY(-6px); box-shadow: var(--pc-shadow-lg); }
.pricing .box h4 { color: var(--pc-primary); }
.pricing .box.featured {
  border: 2px solid var(--pc-primary);
  transform: scale(1.04);
}
.pricing .box.featured:hover { transform: scale(1.04) translateY(-6px); }
.pricing .advanced { background: var(--pc-accent); }

/* ---------- FAQ ---------- */
.faq .faq-list li {
  border-radius: 12px;
  border: 1px solid var(--pc-border);
  box-shadow: var(--pc-shadow);
  padding: 6px 28px;
  margin-bottom: 16px;
  background: #fff;
}
.faq .faq-list a { color: var(--pc-navy); font-weight: 600; }
.faq .faq-list i { color: var(--pc-primary); }

/* ---------- Contact ---------- */
.contact .info-box {
  border-radius: var(--pc-radius);
  box-shadow: var(--pc-shadow);
  border: 1px solid var(--pc-border);
}
.contact .info-box i { background: var(--pc-bg-soft2); color: var(--pc-primary); }
.php-email-form {
  border-radius: var(--pc-radius);
  box-shadow: var(--pc-shadow);
  border: 1px solid var(--pc-border);
  padding: 28px;
  background: #fff;
}
.php-email-form .form-control { border-radius: 10px; padding: 12px 14px; }
.php-email-form .form-control:focus {
  border-color: var(--pc-primary);
  box-shadow: 0 0 0 .2rem rgba(16,110,234,.15);
}

/* Lokale Standortkarte (ersetzt Google-Maps-iframe) */
.location-card {
  height: 100%;
  border-radius: var(--pc-radius);
  overflow: hidden;
  box-shadow: var(--pc-shadow);
  border: 1px solid var(--pc-border);
  background: #fff;
  display: flex; flex-direction: column;
}
.location-card .map-visual {
  position: relative;
  min-height: 250px; flex: 1 1 auto;
  background:
    linear-gradient(135deg, rgba(16,110,234,.10), rgba(0,180,216,.10)),
    repeating-linear-gradient(0deg, #e8f0fb 0, #e8f0fb 1px, transparent 1px, transparent 38px),
    repeating-linear-gradient(90deg, #e8f0fb 0, #e8f0fb 1px, transparent 1px, transparent 38px),
    #f3f8ff;
  display: flex; align-items: center; justify-content: center;
}
.location-card .map-pin {
  text-align: center; color: var(--pc-primary);
}
.location-card .map-pin i { font-size: 56px; }
.location-card .map-pin span {
  display: block; font-family: "Poppins", sans-serif; font-weight: 600;
  color: var(--pc-navy); margin-top: 4px;
}
.location-card .map-foot {
  padding: 18px 22px; border-top: 1px solid var(--pc-border);
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
  flex-wrap: wrap;
}
.location-card .map-foot address { margin: 0; font-style: normal; color: var(--pc-ink); line-height: 1.5; }
.location-card .map-foot a {
  white-space: nowrap;
  background: var(--pc-primary); color: #fff;
  padding: 10px 18px; border-radius: 50px; font-weight: 600; font-size: 14px;
  transition: background .25s ease;
}
.location-card .map-foot a:hover { background: var(--pc-primary-dark); }

/* Lokales Captcha (ersetzt Google reCAPTCHA) */
.pc-captcha {
  display: flex; align-items: center; gap: 12px; flex-wrap: wrap;
  background: var(--pc-bg-soft); border: 1px solid var(--pc-border);
  border-radius: 12px; padding: 14px 16px; margin: 6px 0 4px;
}
.pc-captcha label { font-weight: 600; color: var(--pc-navy); margin: 0; }
.pc-captcha input {
  width: 90px; border-radius: 8px; border: 1px solid var(--pc-border);
  padding: 8px 10px; text-align: center; font-weight: 600;
}
.pc-consent { display: flex; align-items: flex-start; gap: 10px; margin: 14px 0; }
.pc-consent input { margin-top: 4px; }
.pc-consent label { color: var(--pc-muted); font-size: 14.5px; }
.pc-alert {
  border-radius: 10px; padding: 12px 16px; margin-bottom: 16px;
  font-weight: 500;
}
.pc-alert-error { background: #fdecec; color: #b32020; border: 1px solid #f5c2c2; }
.pc-alert-success { background: #e9f9ef; color: #1c7a43; border: 1px solid #b8e6c8; }

/* Honeypot - fuer Menschen unsichtbar */
.pc-hp { position: absolute !important; left: -9999px !important; top: -9999px !important; height: 0; width: 0; overflow: hidden; }

/* ---------- Footer ---------- */
#footer { background: var(--pc-navy); color: #d7e1f2; }
#footer .footer-top { background: var(--pc-navy); border-top: 4px solid var(--pc-primary); }
#footer .footer-contact h3 { color: #fff; font-weight: 700; }
#footer .footer-links h4 { color: #fff; }
#footer .footer-links ul a { color: #cdd9ec; transition: color .2s ease, padding-left .2s ease; }
#footer .footer-links ul a:hover { color: #fff; padding-left: 4px; }
#footer .footer-links i { color: var(--pc-accent); }
#footer .copyright { color: #aebcd4; }
#footer .credits a, #footer .credits { color: #8fa2c4; }

/* Popups (Impressum / Datenschutz) lesbarer */
.white-popup {
  border-radius: var(--pc-radius);
  max-width: 880px;
}
.white-popup h1 { color: var(--pc-primary); font-family: "Poppins", sans-serif; }
.white-popup h2, .white-popup h3 { color: var(--pc-navy); }

/* ---------- Back to top ---------- */
.back-to-top { background: var(--pc-primary) !important; }
.back-to-top:hover { background: var(--pc-primary-dark) !important; }

/* ---------- Responsive ---------- */
@media (max-width: 768px) {
  .service-band { padding: 36px 26px; }
  .service-band h3 { font-size: 23px; }
  .pricing .box.featured { transform: none; }
  .pricing .box.featured:hover { transform: translateY(-6px); }
}

/* ---------- Barrierefreiheit: Bewegung reduzieren ---------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { transition: none !important; animation: none !important; }
}
