/* =========================================================
   Harald Digital – styles.css
   Statische Onepager-Website
   Stil: Executive Boutique / professionelle Digitalberatung
   Keine externen Fonts, keine externen Abhängigkeiten
   ========================================================= */

:root {
  --navy-950: #04111f;
  --navy-900: #061a2d;
  --navy-800: #0a2742;
  --navy-700: #103a5f;

  --blue-700: #1557b0;
  --blue-600: #2269c9;
  --blue-500: #2d7fea;
  --blue-100: #eaf4ff;

  --violet-500: #6f5df6;
  --cyan-300: #8bdcff;
  --green-400: #37d68a;

  --text: #0f172a;
  --text-soft: #273449;
  --muted: #5d687a;
  --muted-light: #7b8698;

  --surface: #ffffff;
  --surface-soft: #f6f8fb;
  --surface-blue: #eef6ff;

  --line: #e5ebf3;
  --line-strong: #d7e0ec;

  --shadow-soft: 0 14px 36px rgba(10, 26, 45, 0.08);
  --shadow: 0 24px 70px rgba(10, 26, 45, 0.14);
  --shadow-strong: 0 34px 90px rgba(6, 26, 45, 0.22);

  --radius-sm: 12px;
  --radius-md: 18px;
  --radius-lg: 28px;
  --radius-xl: 36px;

  --container: 1160px;
}

/* =========================================================
   Base
   ========================================================= */

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  text-size-adjust: 100%;
}

body {
  margin: 0;
  font-family:
    Inter,
    ui-sans-serif,
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    Roboto,
    Arial,
    sans-serif;
  color: var(--text);
  background: #ffffff;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

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

button,
input,
textarea,
select {
  font: inherit;
}

img,
svg {
  display: block;
  max-width: 100%;
  height: auto;
}

::selection {
  color: #ffffff;
  background: var(--blue-600);
}

.container {
  width: min(var(--container), calc(100% - 40px));
  margin-inline: auto;
}

.section {
  padding: 92px 0;
}

.skip-link,
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip-path: inset(50%);
  white-space: nowrap;
}

.skip-link:focus {
  position: fixed;
  left: 16px;
  top: 16px;
  z-index: 9999;
  width: auto;
  height: auto;
  clip-path: none;
  padding: 12px 16px;
  border-radius: 999px;
  color: #ffffff;
  background: var(--navy-900);
  box-shadow: var(--shadow);
}

/* =========================================================
   Typography
   ========================================================= */

h1,
h2,
h3 {
  margin: 0;
  color: var(--navy-950);
  line-height: 1.08;
  letter-spacing: -0.038em;
}

h1 {
  max-width: 780px;
  font-size: clamp(42px, 7vw, 72px);
}

h2 {
  font-size: clamp(32px, 4.6vw, 52px);
}

h3 {
  font-size: 21px;
}

p {
  margin: 0;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--blue-600);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.small-note {
  margin-top: 18px;
  font-size: 13px !important;
  opacity: 0.78;
}

/* =========================================================
   Header
   ========================================================= */

.site-header {
  position: sticky;
  top: 0;
  z-index: 60;
  border-bottom: 1px solid rgba(229, 235, 243, 0.9);
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.header-inner {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--navy-950);
}

.brand-mark {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 15px;
  color: #ffffff;
  background:
    radial-gradient(circle at 30% 20%, rgba(139, 220, 255, 0.45), transparent 35%),
    linear-gradient(135deg, var(--navy-900), var(--blue-600));
  box-shadow: 0 10px 26px rgba(34, 105, 201, 0.22);
  font-weight: 900;
  letter-spacing: -0.05em;
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.brand-text strong {
  font-size: 18px;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.brand-text span {
  margin-top: 5px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.28em;
  text-transform: uppercase;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  color: var(--text-soft);
  font-size: 14px;
  font-weight: 750;
}

.main-nav a {
  position: relative;
  opacity: 0.88;
  transition: color 0.2s ease, opacity 0.2s ease;
}

.main-nav a:hover {
  color: var(--blue-600);
  opacity: 1;
}

.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 0;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--blue-600), var(--violet-500));
  transition: width 0.2s ease;
}

.main-nav a:hover::after {
  width: 100%;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #ffffff;
  cursor: pointer;
  box-shadow: var(--shadow-soft);
}

.nav-toggle span:not(.sr-only) {
  display: block;
  width: 20px;
  height: 2px;
  margin: 4px auto;
  border-radius: 999px;
  background: var(--navy-900);
}

/* =========================================================
   Hero
   ========================================================= */

.hero {
  position: relative;
  overflow: hidden;
  padding: 78px 0 92px;
  background:
    radial-gradient(circle at 86% 10%, rgba(45, 127, 234, 0.18), transparent 34%),
    radial-gradient(circle at 10% 8%, rgba(139, 220, 255, 0.18), transparent 28%),
    linear-gradient(135deg, #ffffff 0%, #f8fbff 48%, #edf6ff 100%);
}

.hero::before {
  content: "";
  position: absolute;
  inset: auto -120px -260px auto;
  width: 560px;
  height: 560px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(111, 93, 246, 0.16), transparent 68%);
  pointer-events: none;
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.04fr 0.96fr;
  align-items: center;
  gap: 58px;
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero-text {
  max-width: 650px;
  margin: 24px 0 32px;
  color: var(--muted);
  font-size: 19px;
  line-height: 1.72;
}

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

.hero-actions.centered {
  justify-content: center;
}

/* Buttons */

.btn {
  min-height: 49px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 13px 19px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 850;
  line-height: 1;
  cursor: pointer;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    background 0.2s ease,
    border-color 0.2s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  color: #ffffff;
  background: linear-gradient(135deg, var(--blue-600), var(--violet-500));
  box-shadow: 0 14px 32px rgba(45, 127, 234, 0.26);
}

.btn-primary:hover {
  box-shadow: 0 18px 42px rgba(45, 127, 234, 0.32);
}

.btn-secondary {
  color: var(--navy-900);
  background: rgba(255, 255, 255, 0.92);
  border-color: var(--line);
  box-shadow: var(--shadow-soft);
}

.btn-on-dark {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.28);
  box-shadow: none;
}

/* Trust row */

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 34px;
}

.trust-row span,
.pill-row span {
  min-height: 36px;
  display: inline-flex;
  align-items: center;
  padding: 8px 13px;
  border: 1px solid rgba(34, 105, 201, 0.16);
  border-radius: 999px;
  color: #253145;
  background: rgba(255, 255, 255, 0.74);
  font-size: 13px;
  font-weight: 800;
}

/* Hero visual */

.hero-card {
  position: relative;
  min-height: 545px;
}

.profile-card {
  position: relative;
  z-index: 2;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.9);
  border-radius: var(--radius-lg);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(255, 255, 255, 0.86)),
    radial-gradient(circle at 50% 0%, rgba(45, 127, 234, 0.16), transparent 44%);
  box-shadow: var(--shadow);
}

.photo-placeholder {
  height: 330px;
  display: grid;
  place-items: center;
  border-radius: 22px;
  color: rgba(255, 255, 255, 0.76);
  text-align: center;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background:
    radial-gradient(circle at 32% 20%, rgba(139, 220, 255, 0.18), transparent 34%),
    linear-gradient(145deg, rgba(4, 17, 31, 0.88), rgba(9, 38, 63, 0.96));
}

.profile-info {
  padding: 22px 2px 10px;
}

.profile-name {
  color: var(--navy-950);
  font-size: 22px;
  font-weight: 900;
  letter-spacing: -0.03em;
}

.profile-role {
  margin-top: 4px;
  color: var(--muted);
}

.floating-card {
  position: absolute;
  z-index: 3;
  max-width: 270px;
  padding: 16px 18px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 18px;
  color: #ffffff;
  background: rgba(6, 26, 45, 0.94);
  box-shadow: var(--shadow-strong);
}

.floating-card span {
  display: block;
  margin-bottom: 4px;
  color: var(--cyan-300);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.floating-card strong {
  display: block;
  line-height: 1.18;
}

.floating-card-one {
  top: 24px;
  right: -10px;
}

.floating-card-two {
  left: -24px;
  bottom: 62px;
}

/* Check lists */

.check-list {
  display: grid;
  gap: 12px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 30px;
  color: var(--muted);
  text-wrap: pretty; /* Verhindert automatisch einsame Wörter am Zeilenende mobil */
}

.check-list.light li {
  color: rgba(255, 255, 255, 0.8);
}

.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 2px;
  width: 20px;
  height: 20px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #ffffff;
  background: linear-gradient(135deg, var(--blue-600), var(--green-400));
  font-size: 12px;
  font-weight: 950;
}

/* =========================================================
   Intro strip
   ========================================================= */

.intro-strip {
  padding: 30px 0;
  color: #ffffff;
  background: var(--navy-900);
}

.intro-strip p {
  margin-bottom: 18px;
  color: rgba(255, 255, 255, 0.74);
  font-weight: 700;
  text-align: center;
}

.pill-row {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
}

.pill-row span {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.13);
}

/* =========================================================
   Section heads
   ========================================================= */

.section-head {
  max-width: 830px;
  margin: 0 auto 44px;
  text-align: center;
}

.section-head p:not(.eyebrow) {
  margin-top: 16px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.72;
}

.section-head.narrow {
  max-width: 730px;
}

/* =========================================================
   Services
   ========================================================= */

.services {
  background: #ffffff;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.service-card {
  min-height: 236px;
  padding: 27px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: #ffffff;
  box-shadow: var(--shadow-soft);
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    border-color 0.2s ease;
}

.service-card:hover {
  transform: translateY(-4px);
  border-color: rgba(34, 105, 201, 0.28);
  box-shadow: var(--shadow);
}

.service-icon {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  margin-bottom: 20px;
  border-radius: 15px;
  color: var(--blue-600);
  background: var(--surface-blue);
  font-size: 24px;
  font-weight: 900;
}

.service-card p {
  margin-top: 12px;
  color: var(--muted);
}

/* =========================================================
   Audience
   ========================================================= */

.audience,
.about {
  background: var(--surface-soft);
}

.split-grid,
.why-grid,
.about-grid {
  display: grid;
  align-items: center;
  gap: 42px;
}

.split-grid {
  grid-template-columns: 0.92fr 1.08fr;
}

.split-copy p:not(.eyebrow),
.about-copy p {
  margin-top: 18px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.75;
}

.audience-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.audience-card {
  min-height: 142px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: #ffffff;
  box-shadow: var(--shadow-soft);
}

.audience-card strong {
  display: block;
  margin-bottom: 6px;
  color: var(--navy-950);
  font-size: 18px;
  line-height: 1.2;
}

.audience-card span {
  color: var(--muted);
}

/* =========================================================
   Why
   ========================================================= */

.why {
  background: #ffffff;
}

.why-grid {
  grid-template-columns: 1.05fr 0.95fr;
}

.why-panel {
  padding: 44px;
  border-radius: var(--radius-lg);
  color: #ffffff;
  background:
    radial-gradient(circle at 92% 8%, rgba(45, 127, 234, 0.36), transparent 32%),
    linear-gradient(135deg, var(--navy-950), var(--navy-800));
  box-shadow: var(--shadow);
}

.why-panel h2 {
  color: #ffffff;
}

.why-panel p:not(.eyebrow) {
  margin-top: 18px;
  color: rgba(255, 255, 255, 0.74);
  font-size: 18px;
  line-height: 1.76;
}

.dashboard-card {
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at 72% 14%, rgba(34, 105, 201, 0.11), transparent 34%),
    linear-gradient(145deg, #f9fcff, #edf6ff);
  box-shadow: var(--shadow-soft);
}

.dashboard-header {
  height: 58px;
  margin-bottom: 24px;
  border-radius: 16px;
  background:
    radial-gradient(circle at 18% 20%, rgba(139, 220, 255, 0.32), transparent 30%),
    linear-gradient(135deg, var(--navy-900), var(--blue-600));
}

.dashboard-chart {
  height: 210px;
  display: flex;
  align-items: end;
  gap: 15px;
  padding: 20px;
  border-radius: 20px;
  background: #ffffff;
  border: 1px solid rgba(229, 235, 243, 0.9);
}

.dashboard-chart span {
  flex: 1;
  min-height: 30px;
  border-radius: 999px 999px 8px 8px;
  background: linear-gradient(180deg, var(--blue-500), var(--violet-500));
  box-shadow: 0 12px 24px rgba(45, 127, 234, 0.18);
}

.dashboard-lines {
  display: grid;
  gap: 10px;
  margin-top: 20px;
}

.dashboard-lines span {
  height: 11px;
  border-radius: 999px;
  background: #e8eef7;
}

.dashboard-lines span:nth-child(2) {
  width: 78%;
}

.dashboard-lines span:nth-child(3) {
  width: 56%;
}

/* =========================================================
   Process
   ========================================================= */

.process {
  background: linear-gradient(180deg, #ffffff 0%, #f7fbff 100%);
}

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

.process-grid article {
  padding: 27px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: #ffffff;
  box-shadow: var(--shadow-soft);
}

.process-grid article > span {
  display: inline-flex;
  margin-bottom: 18px;
  color: var(--blue-600);
  font-weight: 950;
  letter-spacing: 0.12em;
}

.process-grid p {
  margin-top: 12px;
  color: var(--muted);
}

/* =========================================================
   About
   ========================================================= */

.about-grid {
  grid-template-columns: 0.95fr 1.05fr;
}

.quote-card {
  padding: 40px;
  border-radius: var(--radius-lg);
  color: #ffffff;
  background:
    radial-gradient(circle at 18% 8%, rgba(139, 220, 255, 0.22), transparent 28%),
    linear-gradient(135deg, var(--navy-900), var(--blue-600));
  box-shadow: var(--shadow);
}

.quote-card p {
  color: #ffffff;
  font-size: clamp(24px, 3vw, 34px);
  line-height: 1.2;
  letter-spacing: -0.035em;
}

.quote-card strong {
  display: inline-block;
  margin-top: 22px;
  color: rgba(255, 255, 255, 0.74);
}

/* =========================================================
   CTA
   ========================================================= */

.cta {
  color: #ffffff;
  background:
    radial-gradient(circle at 82% 10%, rgba(111, 93, 246, 0.22), transparent 34%),
    radial-gradient(circle at 18% 86%, rgba(139, 220, 255, 0.16), transparent 28%),
    linear-gradient(135deg, var(--navy-950), var(--navy-800));
}

.cta-card {
  max-width: 880px;
  text-align: center;
}

.cta-card h2 {
  color: #ffffff;
}

.cta-card p:not(.eyebrow) {
  max-width: 680px;
  margin: 18px auto 30px;
  color: rgba(255, 255, 255, 0.74);
  font-size: 18px;
  line-height: 1.72;
}

/* =========================================================
   Footer
   ========================================================= */

.site-footer {
  padding: 25px 0;
  color: rgba(255, 255, 255, 0.72);
  background: var(--navy-950);
  font-size: 14px;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}

.footer-inner nav {
  display: flex;
  gap: 20px;
}

.footer-inner a {
  transition: color 0.2s ease;
}

.footer-inner a:hover {
  color: #ffffff;
}

/* =========================================================
   Legal pages support
   ========================================================= */

.legal-page {
  background: var(--surface-soft);
}

.legal-content {
  padding-top: 62px;
}

.legal-container {
  max-width: 880px;
  padding: 46px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: #ffffff;
  box-shadow: var(--shadow-soft);
}

.legal-container h1 {
  font-size: clamp(36px, 5vw, 56px);
}

.legal-container h2 {
  margin-top: 36px;
  font-size: 24px;
}

.legal-container p,
.legal-container li {
  margin-top: 12px;
  color: var(--muted);
}

.legal-container a {
  color: var(--blue-600);
  font-weight: 750;
}

.legal-note {
  padding: 18px;
  border: 1px solid #f3db9d;
  border-radius: 16px;
  background: #fff7e6;
}

.updated {
  margin-top: 42px !important;
  color: var(--muted-light) !important;
  font-size: 14px;
}

.centered-text {
  text-align: center;
}

/* =========================================================
   Responsive
   ========================================================= */

@media (max-width: 980px) {
  .section {
    padding: 52px 0; /* Von 76px auf 52px gekürzt für knackigere Tablet-Ansichten */
  }

  .hero-grid,
  .split-grid,
  .why-grid,
  .about-grid {
    grid-template-columns: 1fr;
  }

  .hero-card {
    min-height: auto;
  }

  .floating-card {
    position: static;
    margin-top: 14px;
  }

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

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

  .dashboard-card {
    max-width: 620px;
  }
}

@media (max-width: 760px) {
  .container {
    width: min(100% - 28px, var(--container));
  }

  .header-inner {
    min-height: 70px;
  }

  .brand-mark {
    width: 40px;
    height: 40px;
  }

  .brand-text strong {
    font-size: 16px;
  }

  .brand-text span {
    font-size: 11px;
    letter-spacing: 0.24em;
  }

  .nav-toggle {
    display: inline-grid;
    place-items: center;
  }

  .main-nav {
    position: absolute;
    top: 70px;
    left: 14px;
    right: 14px;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
    padding: 22px;
    border: 1px solid var(--line);
    border-radius: 18px;
    background: #ffffff;
    box-shadow: var(--shadow);
  }

  .main-nav.is-open {
    display: flex;
  }

  .main-nav a::after {
    display: none;
  }

  .hero {
    padding: 56px 0 74px;
  }

  h1 {
    font-size: clamp(38px, 12vw, 54px);
  }

  .hero-text {
    font-size: 17px;
  }

  .hero-actions,
  .hero-actions.centered {
    align-items: stretch;
    flex-direction: column;
  }

  .btn {
    width: 100%;
  }

  .trust-row {
    margin-top: 28px;
  }

  .profile-card {
    padding: 18px;
  }

  .photo-placeholder {
    height: 250px;
  }

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

  .why-panel,
  .quote-card,
  .legal-container {
    padding: 28px;
  }

  .dashboard-chart {
    height: 170px;
    gap: 10px;
  }

  .footer-inner {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 430px) {
  .section {
    padding: 38px 0; /* Von 62px auf 38px gekürzt – perfekt eng & lesbar für Smartphones */
  }

  .hero {
    padding-top: 46px;
  }

  .service-card,
  .audience-card,
  .process-grid article {
    padding: 22px;
  }

  .photo-placeholder {
    height: 220px;
  }
}

/* =========================================================
   Reduced motion
   ========================================================= */

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition: none !important;
  }
}

/* =========================================================
   v14 Reparatur: Layout wiederherstellen, H1 kleiner lassen
   ========================================================= */

/* H1 bleibt technisch eine echte H1 und optisch kleiner */
.hero h1 {
  font-size: clamp(34px, 3.1vw, 48px);
  line-height: 1.12;
  letter-spacing: -0.035em;
  max-width: 760px;
}

/* Hero wieder großzügig und sauber zweispaltig */
.hero {
  padding: 78px 0 92px;
}

.hero-grid {
  grid-template-columns: minmax(0, 1.18fr) minmax(430px, 0.82fr);
  gap: clamp(56px, 6vw, 92px);
  align-items: center;
}

.hero-content {
  padding-top: 0;
}

.hero-text {
  max-width: 720px;
  margin: 24px 0 32px;
  font-size: clamp(18px, 1.25vw, 20px);
  line-height: 1.68;
}

.hero-actions {
  margin-top: 0;
}

/* Themenwolke bleibt Textfläche, aber nicht winzig */
.topic-cloud,
.topic-cloud-equal {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px 20px;
  max-width: 850px;
  margin-top: 34px;
  padding-top: 2px;
}

.topic-cloud-equal span,
.topic-cloud span {
  display: inline-block;
  color: var(--navy-950);
  font-size: clamp(15px, 1.08vw, 17px);
  font-weight: 650;
  line-height: 1.25;
  white-space: nowrap;
}

.topic::after {
  display: none;
}

/* Rechte Profilkarte wieder groß und präsent */
.hero-card {
  min-height: auto;
}

.profile-card {
  max-width: 460px;
  margin-left: auto;
  padding: 30px;
  border-radius: 32px;
}

.profile-photo-wrap {
  height: 340px;
  border-radius: 26px;
  overflow: hidden;
}

.profile-photo {
  width: 100%;
  height: 100%;
  border-radius: 26px;
  object-fit: cover;
  object-position: center 28%;
  transform: none;
}

.profile-info {
  padding-top: 22px;
}

.profile-name {
  font-size: 24px;
  line-height: 1.18;
  margin-bottom: 8px;
}

.profile-focus {
  margin-top: 6px;
  color: var(--navy-950);
  font-size: 16px;
  line-height: 1.55;
  max-width: 390px;
}

.profile-card .check-list {
  margin-top: 24px;
  gap: 11px;
}

.profile-card .check-list li {
  font-size: 15px;
  line-height: 1.45;
  padding-left: 30px;
}

/* Proof Strip absichern, falls alte Regeln überschrieben wurden */
.proof-strip {
  padding: 34px 0;
  color: #ffffff;
  background:
    radial-gradient(circle at 76% 10%, rgba(45,127,234,.24), transparent 35%),
    linear-gradient(135deg, var(--navy-950), var(--navy-800));
}

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

.proof-item {
  padding: 20px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 20px;
  background: rgba(255,255,255,.06);
}

.proof-item strong {
  display: block;
  margin-bottom: 6px;
  color: #fff;
  font-size: clamp(26px, 3vw, 38px);
  line-height: 1;
  letter-spacing: -0.05em;
}

.proof-item span {
  color: rgba(255,255,255,.72);
  font-size: 14px;
  font-weight: 650;
}

/* Tablet */
@media (max-width: 1180px) {
  .hero-grid {
    grid-template-columns: minmax(0, 1fr) minmax(390px, 430px);
    gap: 46px;
  }

  .profile-card {
    max-width: 430px;
  }

  .profile-photo-wrap {
    height: 320px;
  }
}

/* Untereinander (Tablet-Querformat/Portrait) */
@media (max-width: 980px) {
  .hero-grid {
    grid-template-columns: 1fr;
  }

  .profile-card {
    max-width: 560px;
    margin-left: 0;
  }

  .profile-photo-wrap {
    height: 360px;
  }

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

/* =========================================================
   Spezifische Mobile-Anpassungen (Abstände & H1-Größe reduzieren)
   ========================================================= */
@media (max-width: 760px) {
  .hero {
    /* Strafferer oberer Abstand zum Logo (von 56px auf 26px reduziert) */
    padding: 26px 0 64px; 
  }

  .hero h1 {
    /* Überschrift mobil kompakter gestaltet (vorher bis zu 42px) */
    font-size: clamp(26px, 6.5vw, 33px);
    line-height: 1.15;
    max-width: 100%;
  }

  .hero-text {
    font-size: 16px;
    /* Margins verringert, um Inhalte enger zusammenzurücken */
    margin: 16px 0 24px; 
  }

  .topic-cloud,
  .topic-cloud-equal {
    gap: 10px 15px;
    margin-top: 24px;
  }

  .topic-cloud-equal span,
  .topic-cloud span {
    font-size: 14px;
    white-space: normal;
  }

  .profile-card {
    padding: 20px;
  }

  /* Zentriert den unsichtbaren Listenblock mobil exakt in der Mitte der weißen Karte */
  .profile-card .check-list {
    max-width: max-content;
    margin-inline: auto;
    text-align: left;
  }

  .profile-photo-wrap {
    height: 300px;
  }

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

@media (max-width: 430px) {
  .hero h1 {
    /* Extrem knackig für schmale Smartphones, damit dein Bild hochwandert */
    font-size: 26px;
  }

  .profile-photo-wrap {
    height: 250px;
  }
}

/* =========================================================
   Finale Reparatur: Profilbild füllt Karte wirklich
   ========================================================= */

.profile-card {
  max-width: 470px;
  padding: 30px;
}

.profile-photo-wrap {
  display: block;
  width: 100%;
  height: 340px;
  margin: 0;
  padding: 0;
  border-radius: 26px;
  overflow: hidden;
}

.profile-photo {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 26px;
  object-fit: cover;
  object-position: center 28%;
  transform: none;
}

/* Tablet */
@media (max-width: 1180px) {
  .profile-photo-wrap {
    height: 320px;
  }
}

/* Mobile Image Anpassung */
@media (max-width: 760px) {
  .profile-card {
    padding: 20px;
  }

  .profile-photo-wrap {
    height: 300px;
  }
}

@media (max-width: 430px) {
  .profile-photo-wrap {
    height: 260px;
  }
}

/* Bereich "Wobei ich helfe" */
.experience {
  padding: 68px 0;
}

.services {
  padding-bottom: 68px;
}

.experience-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  align-items: start;
  gap: 72px;
}

.experience-copy p:not(.eyebrow) {
  margin-top: 18px;
  max-width: 100%;
}

.experience-note {
  margin-top: 24px;
}

.skills-panel {
  display: grid;
  gap: 18px;
  align-self: start;
}

.skill-row {
  padding: 18px 22px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #fff;
  box-shadow: var(--shadow-soft);
}

.skill-row span {
  display: block;
  margin-bottom: 6px;
  color: var(--blue-600);
  font-size: 13px;
  font-weight: 800;
}

.skill-row strong {
  display: block;
  color: var(--navy-950);
  line-height: 1.45;
}

@media (max-width: 980px) {
  .experience {
    padding: 52px 0; /* Gekürzt anlog zu .section */
  }

  .services {
    padding-bottom: 52px;
  }

  .experience-grid {
    grid-template-columns: 1fr;
    gap: 34px;
  }
}

/* Ablauf rechts */
.process-mini-card {
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at 82% 12%, rgba(34, 105, 201, 0.12), transparent 34%),
    linear-gradient(145deg, #ffffff, #edf6ff);
  box-shadow: var(--shadow-soft);
}

.process-mini-card .eyebrow {
  margin-bottom: 10px;
}

.process-mini-card h3 {
  margin: 0 0 22px;
  color: var(--navy-950);
  font-size: 28px;
  line-height: 1.15;
  letter-spacing: -0.035em;
}

.process-mini-list {
  display: grid;
  gap: 14px;
}

.process-mini-list > div {
  padding: 16px;
  border: 1px solid rgba(34, 105, 201, 0.14);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.78);
}

.process-mini-list span {
  display: inline-flex;
  margin-bottom: 6px;
  color: var(--blue-600);
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 0.12em;
}

.process-mini-list strong {
  display: block;
  color: var(--navy-950);
  font-size: 17px;
  line-height: 1.2;
}

.process-mini-list p {
  margin-top: 6px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.5;
}

@media (max-width: 980px) {
  .process-mini-card {
    max-width: 620px;
  }
}

@media (max-width: 760px) {
  .process-mini-card {
    padding: 24px;
  }

  .process-mini-card h3 {
    font-size: 24px;
  }

  .process-mini-list > div {
    padding: 14px;
  }
}

/* LOGO Header – Desktop / Mobile */
.brand {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.logo-desktop {
  display: block;
  width: auto;
  height: 84px;
  max-width: none;
  object-fit: contain;
}

.logo-mobile {
  display: none;
  width: auto;
  height: 58px;
  max-width: none;
  object-fit: contain;
}

@media (max-width: 980px) {
  .logo-desktop {
    height: 58px;
  }
}

@media (max-width: 760px) {
  .header-inner {
    min-height: 74px;
  }

  .logo-desktop {
    display: none;
  }

  .logo-mobile {
    display: block;
  }
}

/* Mobile Profile Card Einblendung & Abstand nach oben gestrafft */
.mobile-profile-card {
  display: none;
}

@media (max-width: 980px) {
  .desktop-profile-card {
    display: none !important;
  }
  
  .mobile-profile-card {
    display: block;
    /* Von 40px auf 24px reduziert, um das Profilbild optimal hochzuziehen */
    margin-top: 24px; 
    margin-bottom: 10px;
  }
}