/*
Theme Name: innopark24
Theme URI: https://www.innopark24.de
Author: innopark24 GmbH & Co. KG
Author URI: https://www.innopark24.de
Description: Modernes WordPress-Theme für professionelle Parkraumüberwachung – Kontrollteam, Kameraerfassung & App-Lösung.
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.9
Requires PHP: 8.0
License: Proprietary
Text Domain: innopark24
Tags: business, one-page, custom-colors, full-width-template
*/

/* ===== CSS CUSTOM PROPERTIES ===== */
:root {
  --ip-blue:         #19A0F9;
  --ip-blue-dark:    #001E5E;
  --ip-blue-deep:    #001245;
  --ip-blue-light:   #D1ECFE;
  --ip-blue-bright:  #6EC5FB;
  --ip-dark:         #001E5E;
  --ip-dark-2:       #001245;
  --ip-gray-bg:      #E5E4E2;
  --ip-border:       #c8c7c5;
  --ip-text:         #001E5E;
  --ip-muted:        #4a5a7a;
  --ip-white:        #ffffff;
  --ip-radius-sm:    6px;
  --ip-radius:       10px;
  --ip-radius-lg:    16px;
  --ip-radius-xl:    22px;
  --ip-shadow:       0 4px 24px rgba(0,0,0,0.07);
  --ip-shadow-lg:    0 12px 48px rgba(0,0,0,0.10);
  --ip-font-head:    'Fira Sans', sans-serif;
  --ip-font-body:    'Fira Sans', sans-serif;
  --ip-transition:   all 0.22s ease;
}

/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--ip-font-body);
  color: var(--ip-text);
  background: var(--ip-white);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { cursor: pointer; font-family: var(--ip-font-body); }

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4, h5 {
  font-family: var(--ip-font-head);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--ip-dark);
}
h1 { font-size: clamp(2.2rem, 5vw, 3.4rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.6rem); }
h3 { font-size: 1.25rem; font-weight: 700; }
h4 { font-size: 1rem; font-weight: 600; }
p  { line-height: 1.7; color: var(--ip-muted); font-weight: 300; }

/* ===== LAYOUT HELPERS ===== */
.ip-container {
  max-width: 1160px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 2rem;
  padding-right: 2rem;
}
.ip-section {
  padding-top: 5rem;
  padding-bottom: 5rem;
}
.ip-section--dark  { background: var(--ip-dark); }
.ip-section--gray  { background: var(--ip-gray-bg); }
.ip-section--white { background: var(--ip-white); }

.ip-section-label {
  display: block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ip-blue);
  margin-bottom: 0.75rem;
}
.ip-section-label--light { color: var(--ip-blue-bright); }

.ip-section-header { margin-bottom: 3.5rem; }
.ip-section-header--center { text-align: center; }
.ip-section-header--center .ip-section-sub { margin-left: auto; margin-right: auto; }

.ip-section-title { margin-bottom: 0.75rem; }
.ip-section-title em { color: var(--ip-blue); font-style: normal; }
.ip-section-title--light { color: var(--ip-white); }

.ip-section-sub {
  max-width: 520px;
  font-size: 1rem;
  color: var(--ip-muted);
}
.ip-section-sub--light { color: rgba(255,255,255,0.55); }

/* ===== BUTTONS ===== */
.ip-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.72rem 1.6rem;
  border-radius: var(--ip-radius);
  font-size: 0.9rem;
  font-weight: 500;
  font-family: var(--ip-font-body);
  border: 1.5px solid transparent;
  transition: var(--ip-transition);
  white-space: nowrap;
}
.ip-btn--primary {
  background: var(--ip-blue);
  color: var(--ip-white);
  border-color: var(--ip-blue);
}
.ip-btn--primary:hover {
  background: var(--ip-blue-dark);
  border-color: var(--ip-blue-dark);
  transform: translateY(-1px);
}
.ip-btn--outline {
  background: transparent;
  color: var(--ip-text);
  border-color: var(--ip-border);
}
.ip-btn--outline:hover {
  border-color: var(--ip-blue);
  color: var(--ip-blue);
}
.ip-btn--outline-light {
  background: transparent;
  color: var(--ip-white);
  border-color: rgba(255,255,255,0.3);
}
.ip-btn--outline-light:hover {
  border-color: var(--ip-white);
}
.ip-btn-group {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}

/* ===== BADGE ===== */
.ip-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.3rem 0.85rem;
  border-radius: 100px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}
.ip-badge--blue     { background: var(--ip-blue-light); color: var(--ip-blue-dark); }
.ip-badge--accent   { background: #001E5E; color: #D1ECFE; }
.ip-badge--featured {
  background: var(--ip-blue-light);
  color: var(--ip-blue-dark);
  font-size: 0.68rem;
}

/* ===== HERO ===== */
.ip-hero {
  background: var(--ip-dark);
  position: relative;
  overflow: hidden;
}
.ip-hero::before {
  content: '';
  position: absolute;
  top: -120px;
  right: -120px;
  width: 520px;
  height: 520px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(25,160,249,0.12) 0%, transparent 70%);
  pointer-events: none;
}
.ip-hero__inner {
  padding: 5rem 0 5.5rem;
  position: relative;
  z-index: 1;
}
.ip-hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ip-blue-bright);
  margin-bottom: 1.75rem;
}
.ip-hero__dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--ip-blue);
  display: inline-block;
  animation: ip-pulse 2s ease-in-out infinite;
}
@keyframes ip-pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.5; transform: scale(1.4); }
}
.ip-hero__title {
  font-family: var(--ip-font-head);
  font-weight: 700;
  font-size: clamp(2.8rem, 6vw, 4.5rem);
  line-height: 1.06;
  letter-spacing: -0.03em;
  color: var(--ip-white);
  margin-bottom: 1.5rem;
}
.ip-hero__title-accent {
  color: var(--ip-blue);
}
.ip-hero__sub {
  font-size: 1.05rem;
  font-weight: 300;
  color: rgba(255,255,255,0.62);
  max-width: 560px;
  line-height: 1.7;
  margin-bottom: 2.5rem;
}
.ip-btn--hero-primary {
  background: var(--ip-blue);
  color: var(--ip-white);
  border-color: var(--ip-blue);
  padding: 0.85rem 1.85rem;
  font-size: 0.95rem;
  font-weight: 500;
  gap: 0.6rem;
}
.ip-btn--hero-primary:hover {
  background: #0e8fe0;
  border-color: #0e8fe0;
  transform: translateY(-2px);
}
.ip-btn--hero-outline {
  background: transparent;
  color: rgba(255,255,255,0.85);
  border: 1.5px solid rgba(255,255,255,0.2);
  padding: 0.85rem 1.85rem;
  font-size: 0.95rem;
  font-weight: 400;
  gap: 0.6rem;
}
.ip-btn--hero-outline:hover {
  border-color: rgba(255,255,255,0.5);
  color: var(--ip-white);
}
.ip-hero__btns { margin-bottom: 4rem; }

/* Solution strips */
.ip-hero__solutions {
  display: flex;
  align-items: center;
  gap: 0;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--ip-radius-lg);
  background: rgba(255,255,255,0.04);
  overflow: hidden;
  max-width: 680px;
}
.ip-hero__sol-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.25rem 1.75rem;
  flex: 1;
  transition: background 0.2s;
}
.ip-hero__sol-item:hover {
  background: rgba(25,160,249,0.08);
}
.ip-hero__sol-icon {
  width: 40px;
  height: 40px;
  border-radius: var(--ip-radius);
  background: rgba(25,160,249,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.ip-hero__sol-icon svg {
  width: 20px;
  height: 20px;
  stroke: var(--ip-blue);
}
.ip-hero__sol-name {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--ip-white);
  line-height: 1.2;
}
.ip-hero__sol-hint {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.4);
  margin-top: 0.2rem;
  font-weight: 300;
}
.ip-hero__sol-divider {
  width: 1px;
  height: 52px;
  background: rgba(255,255,255,0.1);
  flex-shrink: 0;
}

/* Wave divider */
.ip-hero__wave {
  display: block;
  line-height: 0;
  margin-bottom: -1px;
}
.ip-hero__wave svg {
  width: 100%;
  height: 72px;
  display: block;
}

/* ===== SOLUTIONS ===== */
.ip-solutions__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.ip-sol-card {
  background: var(--ip-white);
  border: 1px solid var(--ip-border);
  border-radius: var(--ip-radius-lg);
  overflow: hidden;
  transition: var(--ip-transition);
}
.ip-sol-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--ip-shadow-lg);
}
.ip-sol-card--featured {
  border: 2px solid var(--ip-blue);
}
.ip-sol-card__top {
  padding: 2rem 1.75rem 1.5rem;
  border-bottom: 1px solid var(--ip-border);
}
.ip-sol-card__icon {
  width: 50px;
  height: 50px;
  background: var(--ip-blue-light);
  border-radius: var(--ip-radius);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  overflow: hidden;
  flex-shrink: 0;
}
.ip-sol-card__icon svg {
  width: 24px !important;
  height: 24px !important;
  max-width: 24px;
  max-height: 24px;
  color: var(--ip-blue-dark);
  stroke: currentColor;
  fill: none;
  stroke-width: 1.75;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.ip-sol-card__badges {
  display: flex;
  gap: 0.4rem;
  flex-wrap: wrap;
  margin-bottom: 0.85rem;
}
.ip-sol-card__title { margin-bottom: 0.5rem; }
.ip-sol-card__desc { font-size: 0.875rem; }
.ip-sol-card__bottom { padding: 1.5rem 1.75rem; }
.ip-sol-feature {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  margin-bottom: 0.8rem;
  font-size: 0.875rem;
  color: var(--ip-text);
}
.ip-sol-feature:last-of-type { margin-bottom: 0; }
.ip-sol-feature__check {
  width: 18px;
  height: 18px;
  background: var(--ip-blue-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
}
.ip-sol-feature__check svg {
  width: 10px;
  height: 10px;
  stroke: var(--ip-blue-dark);
  stroke-width: 2;
  fill: none;
  stroke-linecap: round;
}
.ip-sol-threshold {
  margin-top: 1.25rem;
  padding: 0.7rem 1rem;
  border-radius: var(--ip-radius-sm);
  font-size: 0.8rem;
  color: var(--ip-muted);
  background: var(--ip-gray-bg);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  line-height: 1.4;
}
.ip-sol-threshold svg {
  flex-shrink: 0;
  width: 16px;
  height: 16px;
  stroke: var(--ip-muted);
  fill: none;
  stroke-width: 1.75;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.ip-sol-threshold--blue {
  background: var(--ip-blue-light);
  color: var(--ip-blue-dark);
}
.ip-sol-threshold--blue svg { stroke: var(--ip-blue); }
.ip-sol-threshold strong { color: var(--ip-text); }
.ip-sol-threshold--blue strong { color: var(--ip-blue-dark); }

/* ===== HOW IT WORKS ===== */
.ip-how__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
}
.ip-steps { display: flex; flex-direction: column; }
.ip-step {
  display: flex;
  gap: 1.25rem;
  padding: 1.5rem 0;
  border-bottom: 1px solid var(--ip-border);
}
.ip-step:last-child { border-bottom: none; }
.ip-step__num {
  width: 36px;
  height: 36px;
  background: var(--ip-dark);
  color: var(--ip-white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--ip-font-head);
  font-weight: 700;
  font-size: 0.875rem;
  flex-shrink: 0;
  margin-top: 2px;
}
.ip-step h4 { margin-bottom: 0.3rem; color: var(--ip-dark); }
.ip-step p { font-size: 0.875rem; }

/* ===== EARN CARD ===== */
.ip-earn-card {
  background: var(--ip-dark);
  border-radius: var(--ip-radius-xl);
  padding: 2.25rem;
}
.ip-earn-card__title {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  margin-bottom: 1.5rem;
}
.ip-earn-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.9rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.ip-earn-row:last-of-type { border-bottom: none; }
.ip-earn-row__label { font-size: 0.875rem; color: rgba(255,255,255,0.55); }
.ip-earn-row__val {
  font-family: var(--ip-font-head);
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--ip-blue-bright);
}
.ip-earn-total {
  margin-top: 1.25rem;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(255,255,255,0.15);
}
.ip-earn-total__label {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.4);
  margin-bottom: 0.25rem;
}
.ip-earn-total__val {
  font-family: var(--ip-font-head);
  font-weight: 700;
  font-size: 2.5rem;
  color: var(--ip-white);
  line-height: 1;
}
.ip-earn-note {
  margin-top: 1.5rem;
  padding: 1rem;
  background: rgba(255,255,255,0.05);
  border-radius: var(--ip-radius);
  font-size: 0.78rem;
  color: rgba(255,255,255,0.35);
  line-height: 1.6;
}

/* ===== REVIEWS ===== */
.ip-reviews__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-top: 3rem;
}
.ip-review-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--ip-radius-lg);
  padding: 1.5rem;
}
.ip-review-stars {
  color: var(--ip-blue-bright);
  font-size: 0.875rem;
  margin-bottom: 0.85rem;
  letter-spacing: 0.05em;
}
.ip-review-text {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.65;
  font-style: italic;
  font-weight: 300;
}
.ip-review-author {
  margin-top: 1rem;
  font-size: 0.8rem;
  font-weight: 500;
  color: rgba(255,255,255,0.35);
}

/* ===== CTA ===== */
.ip-cta {
  padding: 5rem 0;
  text-align: center;
}
.ip-cta__inner { max-width: 640px; margin: 0 auto; }
.ip-cta__note {
  margin-top: 1.25rem;
  font-size: 0.8rem;
  color: var(--ip-muted);
}

/* ===== FOOTER ===== */
.ip-footer {
  background: var(--ip-dark);
  padding: 3rem 0;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.ip-footer__inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 2rem;
  flex-wrap: wrap;
}
.ip-footer__brand {}
.ip-footer__logo {
  font-family: var(--ip-font-head);
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--ip-white);
  margin-bottom: 0.5rem;
}
.ip-footer__logo span { color: var(--ip-blue-bright); }
.ip-footer__tagline { font-size: 0.8rem; color: rgba(255,255,255,0.35); max-width: 260px; }
.ip-footer__links { display: flex; gap: 3rem; flex-wrap: wrap; }
.ip-footer__col h5 {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  margin-bottom: 1rem;
}
.ip-footer__col a {
  display: block;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.5);
  margin-bottom: 0.6rem;
  transition: var(--ip-transition);
}
.ip-footer__col a:hover { color: var(--ip-white); }
.ip-footer__bottom {
  margin-top: 3rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255,255,255,0.07);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.3);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .ip-how__grid { grid-template-columns: 1fr; gap: 3rem; }
  .ip-solutions__grid,
  .ip-reviews__grid { grid-template-columns: 1fr; }
  .ip-nav__links,
  .ip-nav__cta { display: none; }
  .ip-nav__toggle { display: flex; }
  .ip-nav__links.is-open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 68px;
    left: 0;
    right: 0;
    background: var(--ip-white);
    padding: 1.5rem 2rem;
    border-bottom: 1px solid var(--ip-border);
    gap: 1.25rem;
    box-shadow: 0 8px 24px rgba(0,0,0,0.08);
  }
  .ip-footer__inner { flex-direction: column; }
  .ip-footer__links { gap: 2rem; }
  .ip-hero__solutions {
    flex-direction: column;
    max-width: 100%;
  }
  .ip-hero__sol-divider {
    width: 100%;
    height: 1px;
  }
  .ip-hero__sol-item { width: 100%; }
}

@media (max-width: 600px) {
  .ip-hero__inner { padding: 3.5rem 0 4rem; }
  .ip-section { padding-top: 3rem; padding-bottom: 3rem; }
  .ip-earn-total__val { font-size: 2rem; }
  .ip-hero__title { font-size: 2.6rem; }
}

/* ===== LEGAL PAGES (Impressum / Datenschutz) ===== */

/* Page Hero */
.ip-page-hero {
  background: var(--ip-dark);
  padding: 2rem 0 2rem;
  position: relative;
  overflow: hidden;
}
.ip-page-hero::before {
  content: '';
  position: absolute;
  top: -80px;
  right: -80px;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(25,160,249,0.08) 0%, transparent 70%);
  pointer-events: none;
}
.ip-page-hero__inner { position: relative; z-index: 1; }
.ip-page-hero__back {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  font-weight: 500;
  color: rgba(255,255,255,0.45);
  margin-bottom: 1rem;
  transition: color 0.2s;
  text-decoration: none;
}
.ip-page-hero__back:hover { color: var(--ip-blue); }
.ip-page-hero__back svg { stroke: currentColor; }
.ip-page-hero__title {
  font-family: var(--ip-font-head);
  font-weight: 700;
  font-size: 32px;
  color: var(--ip-white);
  margin-bottom: 0.5rem;
  letter-spacing: -0.02em;
}
.ip-page-hero__sub {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.5);
  font-weight: 300;
  max-width: 520px;
}

/* TOC */
.ip-legal-toc-wrap {
  background: var(--ip-blue-light);
  border-bottom: 1px solid rgba(25,160,249,0.2);
  padding: 1.5rem 0;
}
.ip-legal-toc {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
  flex-wrap: wrap;
}
.ip-legal-toc__title {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ip-dark);
  white-space: nowrap;
  padding-top: 0.1rem;
}
.ip-legal-toc__list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem 1.5rem;
  list-style: decimal;
  padding-left: 1.25rem;
  margin: 0;
}
.ip-legal-toc__list li { font-size: 0.82rem; }
.ip-legal-toc__list a {
  color: var(--ip-blue-dark);
  text-decoration: none;
  font-weight: 400;
  transition: color 0.15s;
}
.ip-legal-toc__list a:hover { color: var(--ip-blue); text-decoration: underline; }

/* Legal body */
.ip-legal-wrap { padding: 4rem 0 5rem; }
.ip-legal-body {
  max-width: 780px;
}

/* Section */
.ip-legal-section {
  padding-bottom: 2.5rem;
  margin-bottom: 2.5rem;
  border-bottom: 1px solid var(--ip-border);
}
.ip-legal-section:last-child { border-bottom: none; margin-bottom: 0; padding-bottom: 0; }

.ip-legal-section h2 {
  font-family: var(--ip-font-head);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--ip-dark);
  margin-bottom: 1rem;
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
  letter-spacing: -0.01em;
}
.ip-legal-section h3 {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--ip-dark);
  margin: 1.5rem 0 0.5rem;
}
.ip-legal-section p {
  font-size: 0.9rem;
  color: #374151;
  line-height: 1.75;
  margin-bottom: 0.75rem;
  font-weight: 400;
}
.ip-legal-section p:last-child { margin-bottom: 0; }
.ip-legal-section a { color: var(--ip-blue); text-decoration: none; }
.ip-legal-section a:hover { text-decoration: underline; }

.ip-legal-num {
  color: var(--ip-blue);
  font-weight: 700;
  font-size: 0.9em;
  flex-shrink: 0;
}

/* Contact card */
.ip-legal-card {
  background: var(--ip-gray-bg);
  border: 1px solid var(--ip-border);
  border-radius: var(--ip-radius-lg);
  padding: 1.5rem 1.75rem;
  margin-top: 1rem;
}
.ip-legal-card__name {
  font-weight: 700;
  font-size: 1rem;
  color: var(--ip-dark);
  margin-bottom: 1rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid var(--ip-border);
}
.ip-legal-card__grid { display: flex; flex-direction: column; gap: 0.65rem; }
.ip-legal-card__row {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 0.875rem;
}
.ip-legal-card__label {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--ip-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  min-width: 100px;
  flex-shrink: 0;
}
.ip-legal-card__label svg {
  width: 13px;
  height: 13px;
  stroke: var(--ip-muted);
  flex-shrink: 0;
}
.ip-legal-card__row a { color: var(--ip-blue); }
.ip-legal-card__row a:hover { text-decoration: underline; }

/* Register table */
.ip-legal-table {
  border: 1px solid var(--ip-border);
  border-radius: var(--ip-radius);
  overflow: hidden;
  margin-top: 1rem;
}
.ip-legal-table__row {
  display: flex;
  gap: 1rem;
  padding: 0.75rem 1.25rem;
  font-size: 0.875rem;
  border-bottom: 1px solid var(--ip-border);
}
.ip-legal-table__row:last-child { border-bottom: none; }
.ip-legal-table__row:nth-child(odd) { background: var(--ip-gray-bg); }
.ip-legal-table__row span:first-child {
  font-weight: 600;
  color: var(--ip-dark);
  min-width: 200px;
  flex-shrink: 0;
}

/* Legal list */
.ip-legal-list {
  list-style: none;
  padding: 0;
  margin: 1rem 0;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}
.ip-legal-list li {
  font-size: 0.9rem;
  color: #374151;
  line-height: 1.65;
  padding-left: 1.25rem;
  position: relative;
}
.ip-legal-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.5em;
  width: 6px;
  height: 6px;
  background: var(--ip-blue);
  border-radius: 50%;
}

/* Rights grid */
.ip-legal-rights-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin: 1.25rem 0;
}
.ip-legal-right-card {
  background: var(--ip-white);
  border: 1px solid var(--ip-border);
  border-radius: var(--ip-radius);
  padding: 1.1rem 1.25rem;
  transition: border-color 0.2s;
}
.ip-legal-right-card:hover { border-color: var(--ip-blue); }
.ip-legal-right-art {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ip-blue);
  margin-bottom: 0.3rem;
}
.ip-legal-right-title {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--ip-dark);
  margin-bottom: 0.4rem;
}
.ip-legal-right-card p {
  font-size: 0.8rem;
  margin-bottom: 0;
  color: var(--ip-muted);
  line-height: 1.55;
}

/* Authority box */
.ip-legal-authority {
  background: var(--ip-blue-light);
  border: 1px solid rgba(25,160,249,0.25);
  border-radius: var(--ip-radius);
  padding: 1.25rem 1.5rem;
  margin-top: 1.25rem;
}
.ip-legal-authority__title {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ip-blue-dark);
  margin-bottom: 0.6rem;
}
.ip-legal-authority p {
  font-size: 0.875rem;
  color: var(--ip-dark);
  line-height: 1.7;
  margin-bottom: 0;
}

/* Note box */
.ip-legal-note {
  background: var(--ip-gray-bg);
  border-left: 3px solid var(--ip-blue);
  border-radius: 0 var(--ip-radius-sm) var(--ip-radius-sm) 0;
  padding: 1rem 1.25rem;
  margin-top: 1rem;
  font-size: 0.875rem;
  color: #374151;
  line-height: 1.65;
}
.ip-legal-note a { color: var(--ip-blue); display: inline-block; margin-top: 0.35rem; }

/* Responsive legal */
@media (max-width: 700px) {
  .ip-legal-rights-grid { grid-template-columns: 1fr; }
  .ip-legal-toc { flex-direction: column; gap: 0.75rem; }
  .ip-legal-card__row { flex-direction: column; gap: 0.25rem; align-items: flex-start; }
  .ip-legal-card__label { min-width: unset; }
  .ip-legal-table__row { flex-direction: column; gap: 0.2rem; }
  .ip-legal-table__row span:first-child { min-width: unset; }
}

/* ── Sol card link & featured tag ── */
.ip-sol-card__link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin-top: 1.25rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--ip-blue);
  text-decoration: none;
  transition: gap 0.2s;
}
.ip-sol-card__link:hover { gap: 0.7rem; }
.ip-sol-card__link svg { stroke: currentColor; }

.ip-sol-card__featured-tag {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: var(--ip-blue);
  margin-bottom: 0.5rem;
}

/* ===== SOLUTION SUBPAGES ===== */

.ip-page-hero--solution { padding-bottom: 0; }

.ip-sol-page-hero {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 3rem;
  align-items: center;
  padding: 2rem 0 2.5rem;
  position: relative;
  z-index: 1;
}
.ip-sol-page-hero__content {}
.ip-sol-page-hero__icon {
  width: 48px;
  height: 48px;
  background: rgba(25,160,249,0.15);
  border-radius: var(--ip-radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-bottom: 0.875rem;
  overflow: hidden;
}
.ip-sol-page-hero__icon svg {
  width: 24px !important;
  height: 24px !important;
  min-width: 24px;
  min-height: 24px;
  max-width: 24px;
  max-height: 24px;
  stroke: var(--ip-blue);
  fill: none;
  stroke-width: 1.75;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.ip-sol-page-hero__tag {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--ip-blue-bright);
  margin-bottom: 0.75rem;
}

/* Stats box on hero */
.ip-sol-page-hero__stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--ip-radius-xl);
  padding: 2rem;
  min-width: 260px;
}
.ip-sol-stat {}
.ip-sol-stat__num {
  font-family: var(--ip-font-head);
  font-weight: 700;
  font-size: 1.8rem;
  color: var(--ip-blue-bright);
  line-height: 1;
  margin-bottom: 0.3rem;
}
.ip-sol-stat__label {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.45);
}

/* Two-column page grid */
.ip-sol-page-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
}

/* Feature box (right column) */
.ip-sol-features-box {
  background: var(--ip-dark);
  border-radius: var(--ip-radius-xl);
  padding: 2rem;
}
.ip-sol-features-box__title {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  margin-bottom: 1.25rem;
}
.ip-sol-features-box .ip-sol-feature { color: rgba(255,255,255,0.8); }
.ip-sol-features-box .ip-sol-feature__check { background: rgba(25,160,249,0.2); }
.ip-sol-features-box .ip-sol-feature__check svg { stroke: var(--ip-blue-bright); }

/* Target grid */
.ip-target-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-top: 3rem;
}
.ip-target-card {
  background: var(--ip-white);
  border: 1px solid var(--ip-border);
  border-radius: var(--ip-radius-lg);
  padding: 1.5rem;
  transition: var(--ip-transition);
}
.ip-target-card:hover {
  border-color: var(--ip-blue);
  transform: translateY(-3px);
  box-shadow: var(--ip-shadow);
}
.ip-target-card__icon {
  width: 40px;
  height: 40px;
  background: var(--ip-blue-light);
  border-radius: var(--ip-radius);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}
.ip-target-card__icon svg {
  width: 20px;
  height: 20px;
  stroke: var(--ip-blue-dark);
  fill: none;
  stroke-width: 1.75;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.ip-target-card h4 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--ip-dark);
  margin-bottom: 0.4rem;
  letter-spacing: -0.01em;
}
.ip-target-card p {
  font-size: 0.845rem;
  line-height: 1.6;
  color: var(--ip-muted);
  margin: 0;
}

/* Responsive subpages */
@media (max-width: 900px) {
  .ip-sol-page-hero { grid-template-columns: 1fr; }
  .ip-sol-page-hero__stats { grid-template-columns: repeat(4,1fr); min-width: unset; }
  .ip-sol-page-grid { grid-template-columns: 1fr; gap: 3rem; }
  .ip-target-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
  .ip-target-grid { grid-template-columns: 1fr; }
  .ip-sol-page-hero__stats { grid-template-columns: 1fr 1fr; }
}

/* ===== TYPOGRAPHY UPDATE ===== */
body    { font-size: 18px; }
h1      { font-size: 32px; }
h2      { font-size: 27px; }

/* ===== CONTACT PAGES ===== */
.ip-contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 5rem;
  align-items: start;
}
.ip-contact-items { display: flex; flex-direction: column; gap: 1.5rem; margin-top: 2.5rem; }
.ip-contact-item  { display: flex; gap: 1rem; align-items: flex-start; }
.ip-contact-item__icon {
  width: 44px; height: 44px;
  background: var(--ip-blue-light);
  border-radius: var(--ip-radius);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.ip-contact-item__icon svg { width: 20px; height: 20px; stroke: var(--ip-blue-dark); }
.ip-contact-item__label {
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.08em;
  text-transform: uppercase; color: var(--ip-muted); margin-bottom: 0.2rem;
}
.ip-contact-item__value { font-size: 0.95rem; font-weight: 600; color: var(--ip-dark); display: block; }
a.ip-contact-item__value { color: var(--ip-blue); text-decoration: none; }
a.ip-contact-item__value:hover { text-decoration: underline; }
.ip-contact-item__hint { font-size: 0.78rem; color: var(--ip-muted); margin-top: 0.2rem; }

/* Form box */
.ip-contact-form-box {
  background: var(--ip-white);
  border: 1px solid var(--ip-border);
  border-radius: var(--ip-radius-xl);
  padding: 2.25rem;
  box-shadow: var(--ip-shadow);
}
.ip-contact-form-box__title {
  font-size: 1.1rem; font-weight: 700; color: var(--ip-dark);
  margin-bottom: 1.75rem; padding-bottom: 1rem;
  border-bottom: 1px solid var(--ip-border);
}

/* Form elements */
.ip-form { display: flex; flex-direction: column; gap: 1.1rem; }
.ip-form__row--2 { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.ip-form__field { display: flex; flex-direction: column; gap: 0.4rem; }
.ip-form__field label {
  font-size: 0.85rem; font-weight: 600; color: var(--ip-dark);
}
.ip-form__field label span { color: var(--ip-blue); }
.ip-form__field input,
.ip-form__field textarea,
.ip-form__field select {
  font-family: var(--ip-font-body);
  font-size: 0.9rem;
  color: var(--ip-text);
  background: var(--ip-white);
  border: 1.5px solid var(--ip-border);
  border-radius: var(--ip-radius);
  padding: 0.7rem 1rem;
  width: 100%;
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
}
.ip-form__field input:focus,
.ip-form__field textarea:focus {
  border-color: var(--ip-blue);
  box-shadow: 0 0 0 3px rgba(25,160,249,0.12);
}
.ip-form__field textarea { resize: vertical; min-height: 130px; }
.ip-form__field--check { margin-top: 0.5rem; }
.ip-form__checkbox {
  display: flex; gap: 0.75rem; align-items: flex-start;
  font-size: 0.85rem; color: var(--ip-muted); cursor: pointer; line-height: 1.5;
}
.ip-form__checkbox input[type="checkbox"] {
  width: 18px; height: 18px; flex-shrink: 0; margin-top: 2px;
  accent-color: var(--ip-blue); cursor: pointer;
}
.ip-form__checkbox a { color: var(--ip-blue); }
.ip-form__submit { margin-top: 0.5rem; width: 100%; justify-content: center; padding: 0.9rem; font-size: 1rem; }

/* File upload */
.ip-form__file-wrap { position: relative; }
.ip-form__field input[type="file"] {
  padding: 0.5rem;
  background: var(--ip-gray-bg);
  cursor: pointer;
  font-size: 0.85rem;
}
.ip-form__file-hint { font-size: 0.78rem; color: var(--ip-muted); margin-top: 0.3rem; }

/* Success message */
.ip-form-success {
  background: var(--ip-blue-light);
  border: 1px solid var(--ip-blue);
  border-radius: var(--ip-radius-lg);
  padding: 1.5rem;
  display: flex; gap: 1rem; align-items: flex-start;
  margin-bottom: 1.5rem;
}
.ip-form-success svg { stroke: var(--ip-blue); width: 24px; height: 24px; flex-shrink: 0; }
.ip-form-success p { color: var(--ip-dark); font-size: 0.9rem; margin: 0; font-weight: 500; }

/* Autofahrer hint cards */
.ip-af-hint-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  gap: 1.5rem;
  max-width: 900px;
  margin: 0 auto;
}
.ip-af-hint-card {
  background: var(--ip-white);
  border: 1px solid var(--ip-border);
  border-radius: var(--ip-radius-lg);
  padding: 2rem;
}
.ip-af-hint-card--featured {
  border-color: var(--ip-blue);
  background: var(--ip-blue-light);
}
.ip-af-hint-card__icon {
  width: 44px; height: 44px;
  background: rgba(25,160,249,0.15);
  border-radius: var(--ip-radius);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1rem;
}
.ip-af-hint-card__icon svg { width: 22px; height: 22px; stroke: var(--ip-blue-dark); }
.ip-af-hint-card h3 { font-size: 1.1rem; margin-bottom: 0.5rem; }
.ip-af-hint-card p  { font-size: 0.9rem; margin: 0; }
.ip-af-hint-card__note {
  margin-top: 1rem; font-size: 0.78rem; color: var(--ip-muted);
  border-top: 1px solid rgba(25,160,249,0.2); padding-top: 0.75rem;
}
.ip-af-hint-card__phone { display: block; font-size: 1.3rem; font-weight: 700; color: var(--ip-dark); margin-top: 1rem; text-decoration: none; }
.ip-af-hint-card__phone:hover { color: var(--ip-blue); }
.ip-af-hint-card__mail { display: block; font-size: 0.9rem; color: var(--ip-blue); margin-top: 0.4rem; text-decoration: none; }
.ip-af-hint-card__mail:hover { text-decoration: underline; }

/* ===== FAQ PAGE ===== */
.ip-faq-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 3rem;
}
.ip-faq-tab {
  padding: 0.5rem 1.25rem;
  border-radius: 100px;
  border: 1.5px solid var(--ip-border);
  background: var(--ip-white);
  font-family: var(--ip-font-body);
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--ip-muted);
  cursor: pointer;
  transition: var(--ip-transition);
}
.ip-faq-tab:hover     { border-color: var(--ip-blue); color: var(--ip-blue); }
.ip-faq-tab.is-active { background: var(--ip-blue); border-color: var(--ip-blue); color: #fff; font-weight: 600; }

.ip-faq-group { margin-bottom: 3rem; }
.ip-faq-group.is-hidden { display: none; }
.ip-faq-group__title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--ip-blue);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  font-size: 0.8rem;
  margin-bottom: 1rem;
  padding-bottom: 0.75rem;
  border-bottom: 2px solid var(--ip-blue-light);
}

.ip-faq-list { display: flex; flex-direction: column; gap: 0; }

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

.ip-faq-item__q {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 1.25rem 0;
  background: none;
  border: none;
  text-align: left;
  font-family: var(--ip-font-body);
  font-size: 1rem;
  font-weight: 600;
  color: var(--ip-dark);
  cursor: pointer;
  transition: color 0.2s;
}
.ip-faq-item__q:hover { color: var(--ip-blue); }
.ip-faq-item__q[aria-expanded="true"] { color: var(--ip-blue); }
.ip-faq-item__q[aria-expanded="true"] .ip-faq-item__icon { transform: rotate(180deg); stroke: var(--ip-blue); }

.ip-faq-item__icon {
  flex-shrink: 0;
  stroke: var(--ip-muted);
  transition: transform 0.25s ease, stroke 0.2s;
}

.ip-faq-item__a { overflow: hidden; }
.ip-faq-item__a[hidden] { display: none; }
.ip-faq-item__a-inner {
  padding: 0 0 1.25rem;
  font-size: 0.95rem;
  color: var(--ip-muted);
  line-height: 1.75;
}
.ip-faq-item__a-inner p { margin-bottom: 0.75rem; }
.ip-faq-item__a-inner p:last-child { margin-bottom: 0; }
.ip-faq-item__a-inner a { color: var(--ip-blue); }

/* FAQ empty state */
.ip-faq-empty {
  text-align: center;
  padding: 4rem 2rem;
  color: var(--ip-muted);
}
.ip-faq-empty svg { stroke: var(--ip-border); margin: 0 auto 1rem; display: block; }
.ip-faq-empty p { max-width: 420px; margin: 0 auto; }

/* FAQ CTA */
.ip-faq-cta {
  margin-top: 4rem;
  padding-top: 2.5rem;
  border-top: 1px solid var(--ip-border);
  text-align: center;
}
.ip-faq-cta p { font-size: 1rem; font-weight: 600; color: var(--ip-dark); margin-bottom: 1.25rem; }

/* Responsive */
@media (max-width: 900px) {
  .ip-contact-layout { grid-template-columns: 1fr; gap: 3rem; }
  .ip-af-hint-grid   { grid-template-columns: 1fr; }
  .ip-form__row--2   { grid-template-columns: 1fr; }
}

/* ===== NAVIGATION ===== */
.ip-nav {
  position: sticky;
  top: 0;
  z-index: 999;
  background: #fff;
  border-bottom: 1px solid var(--ip-border);
}
.ip-nav__inner {
  display: flex;
  align-items: center;
  height: 68px;
  gap: 2.5rem;
}
.ip-nav__logo {
  font-family: var(--ip-font-head);
  font-weight: 700;
  font-size: 1.35rem;
  letter-spacing: -0.02em;
  color: var(--ip-dark);
  text-decoration: none;
  flex-shrink: 0;
}
.ip-nav__logo span { color: var(--ip-blue); }

/* Main link list */
.ip-nav__links {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  list-style: none;
  margin: 0;
  padding: 0;
  flex: 1;
}
.ip-nav__links li { list-style: none; position: relative; }

/* Every nav link */
.ip-nav-a {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  padding: 0.45rem 0.75rem;
  font-size: 1rem;
  font-weight: 500;
  color: var(--ip-muted);
  text-decoration: none;
  border-radius: var(--ip-radius);
  white-space: nowrap;
  transition: color 0.15s, background 0.15s;
}
.ip-nav-a svg { stroke: currentColor; flex-shrink: 0; transition: transform 0.2s; }
.ip-nav-a:hover { color: var(--ip-blue); background: var(--ip-blue-light); }

/* Dropdown */
.ip-sub {
  display: none;
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  min-width: 180px;
  background: #fff;
  border: 1px solid var(--ip-border);
  border-radius: var(--ip-radius-lg);
  box-shadow: 0 6px 24px rgba(0,30,94,0.12);
  padding: 0.4rem;
  list-style: none;
  z-index: 100;
}
.ip-sub li { list-style: none; }
.ip-sub a {
  display: block;
  padding: 0.5rem 0.85rem;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--ip-text);
  text-decoration: none;
  border-radius: var(--ip-radius);
  white-space: nowrap;
  transition: background 0.12s, color 0.12s;
}
.ip-sub a:hover { background: var(--ip-blue-light); color: var(--ip-blue-dark); }

/* Show on hover – desktop only */
.ip-has-sub:hover > .ip-sub { display: block; }
.ip-has-sub:hover > .ip-nav-a { color: var(--ip-blue); }
.ip-has-sub:hover > .ip-nav-a svg { transform: rotate(180deg); }

/* CTA */
.ip-nav__cta { margin-left: auto; flex-shrink: 0; white-space: nowrap; }

/* Burger */
#ip-burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  margin-left: auto;
}
#ip-burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--ip-dark);
  border-radius: 2px;
  transition: all 0.2s;
}

/* Mobile */
@media (max-width: 900px) {
  .ip-nav__links, .ip-nav__cta { display: none; }
  #ip-burger { display: flex; }

  .ip-nav__links.is-open {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    position: fixed;
    top: 68px;
    left: 0; right: 0;
    background: #fff;
    border-bottom: 1px solid var(--ip-border);
    padding: 1rem 1.5rem 1.5rem;
    box-shadow: 0 8px 24px rgba(0,0,0,0.08);
    z-index: 998;
  }
  .ip-nav__links.is-open li { width: 100%; }
  .ip-nav-a { width: 100%; padding: 0.6rem 0; font-size: 1rem; background: none !important; }
  .ip-nav-a:hover { background: none !important; }

  /* Mobile sub always visible when parent is open */
  .ip-sub {
    display: none;
    position: static;
    box-shadow: none;
    border: none;
    border-left: 2px solid var(--ip-blue-light);
    border-radius: 0;
    padding: 0.25rem 0 0.25rem 1rem;
    margin-bottom: 0.5rem;
    background: transparent;
  }
  .ip-has-sub.mob-open > .ip-sub { display: block; }
  .ip-sub a { font-size: 0.95rem; padding: 0.35rem 0; border-radius: 0; }
  .ip-sub a:hover { background: none; color: var(--ip-blue); }
}
