:root {
  --bg: #eef3f9;
  --text: #101828;
  --muted: #475467;
  --primary: #0f56d9;
  --primary-dark: #0b2b6e;
  --green: #25d366;
  --green-dark: #18b956;
  --shadow: 0 12px 30px rgba(15, 23, 42, 0.12);
  --radius-lg: 22px;
  --max: 1180px;
}

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

html {
  scroll-behavior: smooth;
}

body {
    font-family: Arial, sans-serif;
  background:
    radial-gradient(circle at top left, rgba(15, 86, 217, 0.1), transparent 28%),
    linear-gradient(180deg, #f7f9fc 0%, var(--bg) 100%);
  color: var(--text);
  line-height: 1.55;
}

img {
  max-width: 100%;
  display: block;
}

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

.container {
  width: min(calc(100% - 28px), var(--max));
  margin: 0 auto;
}

.section {
  padding: 34px 0;
}

.section-title {
  font-size: clamp(1.85rem, 4vw, 2.6rem);
  line-height: 1.08;
  margin-bottom: 12px;
  letter-spacing: -0.03em;
}

.section-subtitle {
  color: var(--muted);
  max-width: 720px;
  font-size: 1rem;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: #fff;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 18px;
  backdrop-filter: blur(8px);
}

.nav-wrap {
  position: sticky;
  top: 0;
  z-index: 1000;
  backdrop-filter: blur(12px);
  background: rgba(247, 249, 252, 0.8);
  border-bottom: 1px solid rgba(16, 24, 40, 0.06);
}

.nav {
  min-height: 100px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.brand img {
  max-width: 100%;
  height: auto;
  max-height: 80px; /* optional für Desktop */
  object-fit: contain;
}

.brand-text strong {
  display: block;
  font-size: 1rem;
  letter-spacing: -0.02em;
}

.brand-text span {
  display: block;
  color: var(--muted);
  font-size: 0.86rem;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 18px;
  font-weight: 600;
  color: #344054;
}

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

.nav-cta,
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.nav-cta {
  padding: 13px 18px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--green), var(--green-dark));
  color: #fff;
  font-weight: 700;
  box-shadow: 0 12px 24px rgba(37, 211, 102, 0.24);
  white-space: nowrap;
}

.hero {
  padding: 28px 0;
}

.hero-shell {
  position: relative;
  overflow: hidden;
  border-radius: 36px;
  background:
    radial-gradient(circle at top left, rgba(77, 156, 255, 0.32), transparent 20%),
    radial-gradient(circle at bottom right, rgba(37, 211, 102, 0.18), transparent 22%),
    linear-gradient(135deg, #06152f 0%, #0c2d73 42%, #123a93 100%);
  box-shadow: 0 28px 60px rgba(10, 22, 60, 0.26);
  color: #fff;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
  gap: 28px;
  align-items: center;
  padding: 34px;
}

.hero-copy h1 {
  font-size: clamp(2.3rem, 5vw, 4.5rem);
  line-height: 0.98;
  letter-spacing: -0.045em;
  margin-bottom: 16px;
  max-width: 720px;
}

.hero-copy p {
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(1rem, 1.7vw, 1.18rem);
  max-width: 640px;
  margin-bottom: 22px;
}

.hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 26px;
}

.hero-points span {
  padding: 10px 14px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.08);
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.92rem;
}

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

.btn {
  padding: 15px 22px;
  border-radius: 16px;
  font-weight: 700;
}

.btn-primary {
  background: linear-gradient(135deg, var(--green), var(--green-dark));
  color: #fff;
  box-shadow: 0 14px 28px rgba(37, 211, 102, 0.26);
}

.btn-secondary {
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.08);
}

.hero-note {
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.95rem;
}

.hero-profile {
  position: relative;
  width: 100%;
  max-width: 430px;
  justify-self: end;
}

.profile-card {
  border-radius: 28px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: 0 24px 50px rgba(8, 17, 48, 0.28);
}

.profile-card img {
  aspect-ratio: 4 / 4.4;
  width: 100%;
  object-fit: cover;
  object-position: center top;
}

.profile-info {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  padding: 18px;
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(255,255,255,0.94), rgba(255,255,255,0.88));
  color: var(--text);
  box-shadow: 0 16px 30px rgba(15, 23, 42, 0.15);
}

.profile-info strong {
  display: block;
  font-size: 1.35rem;
  line-height: 1.1;
  margin-bottom: 6px;
}

.profile-info span {
  display: block;
  color: var(--muted);
  font-size: 0.98rem;
}

.intro-band,
.targets-grid,
.steps-grid {
  display: grid;
  gap: 18px;
}

.intro-band {
  margin-top: 18px;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.trust-card,
.service-card,
.target-card,
.step-card,
.why-card,
.contact-card {
  background: linear-gradient(180deg, rgba(255,255,255,0.92), rgba(255,255,255,0.84));
  border: 1px solid rgba(15, 23, 42, 0.06);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.trust-card,
.service-card,
.target-card,
.step-card,
.why-card,
.contact-card,
.dark-panel {
  padding: 24px;
}

.trust-card strong {
  display: block;
  margin-bottom: 6px;
  font-size: 1rem;
}

.trust-card p,
.service-card p,
.target-card p,
.step-card p,
.contact-card p,
.section-subtitle,
.profile-info span {
  color: var(--muted);
}

.services-grid {
  margin-top: 24px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.service-card,
.target-card,
.step-card,
.why-card {
  position: relative;
  overflow: hidden;
}

.service-card::before,
.target-card::before,
.step-card::before,
.why-card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 20px;
  bottom: 20px;
  width: 5px;
  border-radius: 999px;
  background: linear-gradient(180deg, #0f56d9, #48a3ff);
}

.icon,
.step-number {
  width: 54px;
  height: 54px;
  border-radius: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  background: linear-gradient(180deg, #eff5ff, #dbe8ff);
  color: var(--primary-dark);
  margin-bottom: 18px;
}

.service-card h3,
.target-card h3,
.step-card h3,
.why-card h3,
.contact-card h3 {
  font-size: 1.35rem;
  line-height: 1.12;
  margin-bottom: 10px;
  letter-spacing: -0.03em;
}

.service-card ul,
.target-card ul,
.why-list,
.contact-list {
  list-style: none;
  display: grid;
  gap: 10px;
  color: #1d2939;
}

.service-card li,
.target-card li,
.why-list li,
.contact-list li {
  position: relative;
  padding-left: 18px;
}

.service-card li::before,
.target-card li::before,
.why-list li::before,
.contact-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--green), var(--primary));
}

.split-section,
.contact-grid {
  display: grid;
  gap: 22px;
}

.split-section {
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  margin-top: 22px;
}

.dark-panel {
  border-radius: 30px;
  background:
    radial-gradient(circle at top left, rgba(80, 150, 255, 0.18), transparent 24%),
    linear-gradient(135deg, #08162f 0%, #0a2459 55%, #0d2d72 100%);
  color: #fff;
  box-shadow: 0 22px 50px rgba(8, 22, 47, 0.22);
}

.dark-panel p,
.dark-panel li {
  color: rgba(255,255,255,0.86);
}

.why-list {
  margin-top: 20px;
  gap: 12px;
}

.targets-grid,
.steps-grid {
  margin-top: 24px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.step-number {
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.cta-banner {
  margin-top: 26px;
  border-radius: 28px;
  overflow: hidden;
  background: linear-gradient(120deg, #0d317b 0%, #0a57e8 60%, #167dff 100%);
  padding: 28px;
  box-shadow: 0 24px 60px rgba(15, 86, 217, 0.24);
  color: #fff;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 16px;
  align-items: center;
}

.cta-banner h3 {
  font-size: clamp(1.5rem, 2.7vw, 2.2rem);
  line-height: 1.05;
  margin-bottom: 8px;
  letter-spacing: -0.03em;
}

.cta-banner p {
  max-width: 640px;
  color: rgba(255,255,255,0.9);
}

.contact-grid {
  grid-template-columns: 1.1fr 0.9fr;
  margin-top: 24px;
}

.contact-card .btn {
  margin-top: 18px;
}

footer {
  padding: 30px 0 90px;
  color: #667085;
  text-align: center;
  font-size: 0.95rem;
}

.wa-float {
  position: fixed;
  right: 18px;
  bottom: 18px;
  width: 68px;
  height: 68px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--green), var(--green-dark));
  color: #fff;
  font-size: 1.7rem;
  box-shadow: 0 18px 34px rgba(37, 211, 102, 0.3);
  z-index: 1000;
  border: 4px solid rgba(255,255,255,0.86);
}

@media (max-width: 1120px) {
  .hero-grid,
  .split-section,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .hero-profile {
    max-width: 520px;
    justify-self: stretch;
  }

  .intro-band,
  .targets-grid,
  .steps-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .cta-banner {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 820px) {
  .nav {
    flex-wrap: wrap;
    justify-content: center;
    padding: 12px 0;
  }

  .brand {
    width: 100%;
    justify-content: center;
  }

  .nav-links {
    order: 3;
    width: 100%;
    justify-content: center;
    flex-wrap: wrap;
    font-size: 0.95rem;
  }

  .nav-cta {
    order: 2;
  }

  .hero-grid {
    padding: 24px;
  }

  .profile-card img {
    aspect-ratio: 4 / 3.6;
  }
}

@media (max-width: 640px) {
  .container {
    width: min(calc(100% - 20px), var(--max));
  }

  .section {
    padding: 26px 0;
  }

  .hero {
    padding-top: 18px;
  }

  .hero-shell {
    border-radius: 26px;
  }

  .hero-grid {
    gap: 18px;
    padding: 18px;
  }

  .hero-copy h1 {
    font-size: 2rem;
  }

  .hero-copy p {
    font-size: 1rem;
  }

  .hero-actions,
  .btn,
  .nav-cta {
    width: 100%;
  }

  .btn {
    padding: 15px 18px;
  }

  .profile-info {
    position: static;
    border-radius: 0 0 20px 20px;
    box-shadow: none;
  }

  .intro-band,
  .targets-grid,
  .steps-grid {
    grid-template-columns: 1fr;
  }

  .trust-card,
  .service-card,
  .target-card,
  .step-card,
  .why-card,
  .contact-card,
  .dark-panel,
  .cta-banner {
    border-radius: 22px;
  }

  .section-title {
    font-size: 1.9rem;
  }

  .wa-float {
    width: 62px;
    height: 62px;
    right: 14px;
    bottom: 14px;
  }
}
a[href^="tel"],
a[href^="mailto"] {
  color: #0f56d9;
  font-weight: 600;
  text-decoration: underline;
}

a[href^="tel"]:hover,
a[href^="mailto"]:hover {
  color: #0b2b6e;
}