:root {
  --blue: #353a90;
  --blue-dark: #2f367f;
  --orange: #ff914d;
  --ink: #22242a;
  --muted: #666b76;
  --line: rgba(34, 36, 42, 0.12);
  --line-soft: rgba(34, 36, 42, 0.08);
  --bg: #fbfaf7;
  --soft: #f3f0ea;
  --white: #ffffff;
  --radius: 24px;
  --shadow: 0 12px 36px rgba(38, 42, 78, 0.08);
  --shadow-strong: 0 24px 80px rgba(30, 34, 66, 0.18);
  --max: 1180px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

body.newsletter-open { overflow: hidden; }

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

a { color: inherit; }

strong { font-weight: 700; }

a:focus-visible,
button:focus-visible {
  outline: 3px solid var(--orange);
  outline-offset: 3px;
}

.skip-link {
  position: absolute;
  left: -9999px;
}

.skip-link:focus {
  left: 1rem;
  top: 1rem;
  background: var(--blue);
  color: white;
  padding: .75rem 1rem;
  z-index: 1000;
}

.site-header {
  position: sticky;
  top: 8px;
  z-index: 50;
  width: min(calc(100% - 24px), 1220px);
  margin: 10px auto 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: .65rem .75rem;
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 999px;
  box-shadow: 0 10px 40px rgba(30, 34, 66, 0.08);
  backdrop-filter: blur(10px);
}

.brand {
  display: flex;
  align-items: center;
  gap: .7rem;
  text-decoration: none;
  font-weight: 750;
  letter-spacing: -0.02em;
}

.brand img {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  object-fit: cover;
  background: white;
}

.brand span { font-size: .96rem; }

.site-nav {
  display: flex;
  align-items: center;
  gap: .25rem;
}

.site-nav a {
  text-decoration: none;
  color: var(--muted);
  padding: .75rem .9rem;
  border-radius: 999px;
  font-size: .94rem;
  transition: .2s ease;
}

.site-nav a:hover {
  color: var(--blue);
  background: rgba(53, 58, 144, .07);
}

.menu-toggle {
  display: none;
  border: 0;
  background: var(--blue);
  color: white;
  border-radius: 999px;
  padding: .65rem .9rem;
}

.hero {
  width: min(calc(100% - 32px), var(--max));
  margin: 64px auto 0;
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(300px, .75fr);
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
  min-height: calc(100vh - 120px);
}

.eyebrow,
.section-label {
  color: var(--blue);
  text-transform: uppercase;
  letter-spacing: .16em;
  font-weight: 800;
  font-size: .76rem;
}

h1,
h2,
h3 {
  font-family: "General Sans", Inter, ui-sans-serif, system-ui, sans-serif;
  line-height: 1.02;
  letter-spacing: -0.055em;
  margin: 0;
}

h1 {
  font-size: clamp(2.9rem, 7.8vw, 6.2rem);
  max-width: 980px;
}

h2 {
  font-size: clamp(2rem, 4.4vw, 4.1rem);
  max-width: 900px;
}

h3 {
  font-size: clamp(1.35rem, 2vw, 1.9rem);
  letter-spacing: -0.04em;
}

.hero__lead {
  font-size: clamp(1.25rem, 2.5vw, 2.2rem);
  line-height: 1.14;
  letter-spacing: -0.04em;
  margin: 1.65rem 0 1rem;
  max-width: 760px;
}

.hero__copy {
  font-size: 1.08rem;
  color: var(--muted);
  max-width: 680px;
}

.positioning-statement {
  max-width: 680px;
  margin: 1.2rem 0 0;
  padding-left: 1rem;
  border-left: 4px solid var(--orange);
  color: var(--ink);
  font-weight: 750;
}

.hero__actions,
.contact-links,
.people__links {
  display: flex;
  flex-wrap: wrap;
  gap: .75rem;
  align-items: center;
  margin-top: 1.6rem;
}

.btn,
.contact-links a,
.people__links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: .85rem 1.15rem;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 750;
  border: 1px solid var(--line);
  transition: transform .2s ease, background .2s ease, border-color .2s ease;
}

.btn:hover,
.contact-links a:hover,
.people__links a:hover { transform: translateY(-2px); }

.btn--primary {
  background: var(--blue);
  color: white;
  border-color: var(--blue);
  box-shadow: 0 14px 40px rgba(53,58,144,.18);
}

.btn--primary:hover { background: var(--blue-dark); }

.btn--ghost {
  background: white;
  color: var(--blue);
}

.hero__panel {
  display: grid;
  gap: .9rem;
}

.signal-card {
  border-radius: var(--radius);
  background: rgba(255,255,255,.86);
  border: 1px solid var(--line-soft);
  padding: 1.25rem;
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}

.signal-card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 6px;
  background: rgba(53, 58, 144, .28);
}

.signal-card:nth-child(3)::before { background: var(--orange); }

.signal-card span {
  display: block;
  color: var(--muted);
  font-size: .84rem;
  margin-bottom: .35rem;
}

.signal-card strong {
  display: block;
  font-size: clamp(1.25rem, 2vw, 1.75rem);
  line-height: 1.08;
  letter-spacing: -0.04em;
}

.section {
  width: min(calc(100% - 32px), var(--max));
  margin: 0 auto;
  padding: clamp(64px, 9vw, 110px) 0;
}

.section.compact { padding-top: 64px; }

.section__intro {
  display: grid;
  gap: 1rem;
  margin-bottom: 2rem;
}

.section__intro p {
  max-width: 780px;
  font-size: 1.08rem;
  color: var(--muted);
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 1rem;
}

.service-card,
.audience-grid article {
  background: rgba(255,255,255,.86);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  padding: 1.25rem;
  min-height: 230px;
  box-shadow: 0 10px 30px rgba(38, 42, 78, 0.05);
}

.service-card h3,
.audience-grid h3 {
  font-size: clamp(1.3rem, 1.55vw, 1.7rem);
  margin-bottom: .75rem;
}

.service-card p,
.audience-grid p {
  color: var(--muted);
  margin: 0;
  font-size: .98rem;
}

.audience-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 1rem;
}

.proof {
  display: grid;
  grid-template-columns: 1fr .82fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
  background: var(--blue);
  color: white;
  border-radius: 34px;
  padding: clamp(2rem, 5vw, 4.25rem);
  margin-top: 32px;
}

.proof .section-label { color: rgba(255,255,255,.7); }

.proof__text p {
  color: rgba(255,255,255,.78);
  font-size: 1.03rem;
  max-width: 660px;
}

.proof__facts {
  display: grid;
  gap: 1rem;
}

.proof__facts div {
  background: rgba(255,255,255,.10);
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 22px;
  padding: 1.1rem;
}

.proof__facts strong {
  display: block;
  color: var(--orange);
  font-size: clamp(2rem, 3.6vw, 3.4rem);
  line-height: .95;
  letter-spacing: -0.06em;
}

.proof__facts span { color: rgba(255,255,255,.8); }

.logo-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 2rem;
}

.logo-card {
  background: white;
  border: 1px solid var(--line-soft);
  border-radius: 24px;
  padding: 1.35rem;
  min-height: 140px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 30px rgba(38,42,78,.05);
}

.logo-card img {
  max-width: 150px;
  max-height: 88px;
  width: auto;
  height: auto;
  object-fit: contain;
}

.principles__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 1rem;
}

.principles__grid article {
  border-top: 3px solid var(--orange);
  background: rgba(255,255,255,.86);
  border-radius: 0 0 var(--radius) var(--radius);
  padding: 1.25rem;
  min-height: 250px;
}

.principles__grid span {
  color: var(--blue);
  font-weight: 800;
}

.principles__grid h3 {
  margin: .8rem 0;
  font-size: 1.65rem;
}

.principles__grid p { color: var(--muted); }

.cta-strip {
  margin-top: 1rem;
  background: var(--soft);
  border-radius: 24px;
  padding: 1rem;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: center;
}

.cta-strip p {
  margin: 0;
  font-weight: 700;
}

.entdeckerei-card {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 2rem;
  background: linear-gradient(135deg, rgba(53,58,144,.04), rgba(255,145,77,.06));
  border: 1px solid var(--line-soft);
  border-radius: 34px;
  padding: clamp(2rem, 5vw, 4rem);
}

.entdeckerei-copy p {
  color: var(--muted);
  max-width: 620px;
}

.entdeckerei-quote {
  display: flex;
  align-items: end;
  justify-content: end;
}

.entdeckerei-quote p {
  font-size: clamp(1.4rem, 3vw, 2.4rem);
  line-height: 1.08;
  letter-spacing: -0.05em;
  font-weight: 800;
  max-width: 380px;
}

.image-grid {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 1rem;
  align-items: stretch;
}

.image-card {
  position: relative;
  overflow: hidden;
  margin: 0;
  border-radius: 28px;
  min-height: 360px;
  background: #ddd;
}

.image-card--large {
  grid-row: span 2;
  min-height: 620px;
}

.image-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.image-card::after {
  content:"";
  position:absolute;
  inset:0;
  background: linear-gradient(to top, rgba(0,0,0,.55), rgba(0,0,0,0) 55%);
}

.image-card figcaption {
  position:absolute;
  z-index:2;
  left:1.1rem;
  right:1.1rem;
  bottom:1rem;
  color:white;
  font-weight:800;
  line-height:1.15;
}

.people {
  width: min(calc(100% - 32px), var(--max));
  margin: 0 auto;
  padding: clamp(52px, 8vw, 96px) 0;
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

.people__image img {
  border-radius: 34px;
  box-shadow: var(--shadow);
}

.people__text p {
  color: var(--muted);
  max-width: 700px;
}

.people__links a { background: white; }

.contact {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
  padding-bottom: 80px;
}

.contact__intro p {
  color: var(--muted);
  max-width: 560px;
}

.contact-links a { background: white; }

.hubspot-card {
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid var(--line-soft);
  box-shadow: 0 18px 60px rgba(38, 42, 78, 0.08);
  border-radius: 30px;
  padding: clamp(1.3rem, 2.6vw, 2rem);
}

.hubspot-card h3 {
  font-size: clamp(1.9rem, 2.6vw, 2.75rem);
  letter-spacing: -0.055em;
  margin-bottom: .65rem;
}

.hubspot-card > p {
  color: var(--muted);
  font-size: 1.03rem;
  max-width: 620px;
  margin: 0 0 1.5rem;
}

#hubspot-form { min-height: 280px; }

#hubspot-form .hs-form { display: grid; gap: .85rem; }

#hubspot-form .hs-form-field { margin-bottom: .85rem !important; }

#hubspot-form label {
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif !important;
  font-size: 0.92rem !important;
  font-weight: 700 !important;
  color: var(--ink) !important;
  margin-bottom: 0.3rem !important;
}

#hubspot-form input,
#hubspot-form textarea,
#hubspot-form select {
  width: 100% !important;
  min-height: 48px !important;
  border: 1px solid #d1d5db !important;
  border-radius: 10px !important;
  background: var(--white) !important;
  color: var(--ink) !important;
  font-size: .98rem !important;
  padding: 0.75rem .9rem !important;
  box-shadow: none !important;
  outline: none !important;
}

#hubspot-form input:focus,
#hubspot-form textarea:focus,
#hubspot-form select:focus {
  border-color: var(--blue) !important;
  box-shadow: 0 0 0 3px rgba(53, 58, 144, 0.12) !important;
}

#hubspot-form .hs-button,
#hubspot-form input[type="submit"] {
  display: inline-flex !important;
  width: auto !important;
  min-height: 48px !important;
  padding: 0.85rem 1.25rem !important;
  border-radius: 999px !important;
  border: 1px solid var(--blue) !important;
  background: var(--blue) !important;
  color: #ffffff !important;
  font-weight: 800 !important;
  font-size: 0.95rem !important;
  cursor: pointer !important;
  box-shadow: 0 14px 36px rgba(53, 58, 144, 0.16) !important;
}

#hubspot-form .hs-button:hover,
#hubspot-form input[type="submit"]:hover {
  background: var(--blue-dark) !important;
  border-color: var(--blue-dark) !important;
}

#hubspot-form .hs-error-msg,
#hubspot-form .hs-error-msgs label {
  color: #b42318 !important;
  font-size: 0.88rem !important;
  font-weight: 600 !important;
}

#hubspot-form .legal-consent-container,
#hubspot-form .hs-richtext {
  color: var(--muted) !important;
  font-size: 0.86rem !important;
  line-height: 1.45 !important;
}

#hubspot-form .legal-consent-container a,
#hubspot-form .hs-richtext a {
  color: var(--blue) !important;
  font-weight: 700 !important;
}

.whatsapp-float {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 45;
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: white;
  text-decoration: none;
  box-shadow: 0 16px 40px rgba(20, 45, 36, .22);
  border: 1px solid rgba(255,255,255,.75);
  overflow: hidden;
  transition: transform .2s ease, box-shadow .2s ease;
}

.whatsapp-float:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 45px rgba(20,45,36,.28);
}

.whatsapp-float img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.sr-only {
  position:absolute;
  width:1px;
  height:1px;
  padding:0;
  margin:-1px;
  overflow:hidden;
  clip:rect(0,0,0,0);
  white-space:nowrap;
  border:0;
}

.site-footer {
  width: min(calc(100% - 32px), var(--max));
  margin: 0 auto;
  padding: 2rem 0 3rem;
  border-top: 1px solid var(--line);
  display:flex;
  justify-content:space-between;
  gap:1rem;
  color: var(--muted);
}

.site-footer nav {
  display:flex;
  gap:1rem;
}

.site-footer a {
  color: var(--muted);
  text-decoration:none;
}

.legal-page {
  width: min(calc(100% - 32px), 860px);
  margin: 80px auto;
  background: white;
  border-radius: 30px;
  padding: clamp(1.5rem, 5vw, 3rem);
  box-shadow: var(--shadow);
}

.legal-page h1 {
  font-size: clamp(2.5rem, 6vw, 5rem);
}

.legal-page h2 {
  font-size: 1.7rem;
  margin-top: 2rem;
}

.legal-page p,
.legal-page li { color: var(--muted); }

.back-link {
  color: var(--blue);
  font-weight: 800;
  text-decoration: none;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .7s ease, transform .7s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 { transition-delay: .12s; }

.footer-button {
  border: 0;
  background: transparent;
  color: var(--muted);
  font: inherit;
  padding: 0;
  cursor: pointer;
}

.footer-button:hover { color: var(--blue); }

.hubspot-placeholder {
  display: grid;
  gap: 1rem;
  align-content: center;
  min-height: 280px;
  padding: 1.2rem;
  border-radius: 22px;
  background: var(--soft);
}

.hubspot-placeholder p { margin: 0; }

.newsletter-popup {
  position: fixed;
  inset: 0;
  z-index: 900;
  display: grid;
  place-items: center;
  padding: 18px;
}

.newsletter-popup[hidden] { display: none !important; }

.newsletter-popup__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(34, 36, 42, 0.30);
  backdrop-filter: blur(4px);
}

.newsletter-popup__panel {
  position: relative;
  z-index: 1;
  width: min(100%, 660px);
  max-height: min(680px, calc(100vh - 36px));
  overflow: auto;
  display: grid;
  gap: .9rem;
  background: rgba(255, 255, 255, 0.98);
  border: 1px solid rgba(255, 255, 255, 0.75);
  border-radius: 30px;
  box-shadow: var(--shadow-strong);
  padding: clamp(1.1rem, 3vw, 1.5rem);
}

.newsletter-popup__close {
  position: absolute;
  right: 14px;
  top: 12px;
  width: 38px;
  height: 38px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: var(--white);
  color: var(--ink);
  font-size: 1.45rem;
  line-height: 1;
  cursor: pointer;
}

.newsletter-popup__copy {
  display: grid;
  gap: .7rem;
  padding-right: 2.4rem;
}

.newsletter-popup__copy h2 {
  font-size: clamp(1.8rem, 4vw, 3rem);
}

.newsletter-popup__copy p:not(.section-label) {
  margin: 0;
  color: var(--muted);
  font-size: .98rem;
  max-width: 560px;
}

.newsletter-popup__form {
  max-height: 360px;
  overflow: auto;
  padding: .8rem;
  border-radius: 22px;
  background: var(--bg);
  border: 1px solid var(--line-soft);
}

.consent-banner {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: grid;
  align-items: end;
  padding: 16px;
  background: rgba(34,36,42,.22);
  backdrop-filter: blur(2px);
}

.consent-banner[hidden] { display: none; }

.consent-panel {
  width: min(100%, 980px);
  margin: 0 auto;
  background: rgba(255,255,255,.96);
  border: 1px solid rgba(255,255,255,.75);
  border-radius: 30px;
  box-shadow: 0 24px 80px rgba(30,34,66,.22);
  padding: clamp(1rem, 3vw, 1.6rem);
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 1.2rem;
  align-items: center;
}

.consent-copy h2 {
  font-size: clamp(1.7rem, 4vw, 3rem);
  margin: .2rem 0 .6rem;
  letter-spacing: -0.06em;
}

.consent-copy p:not(.section-label) {
  color: var(--muted);
  margin: 0;
}

.consent-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: .6rem;
}

.consent-settings {
  grid-column: 1 / -1;
  display: grid;
  gap: .7rem;
  padding-top: .8rem;
  border-top: 1px solid var(--line);
}

.consent-settings[hidden] { display: none; }

.consent-settings label {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: .55rem .7rem;
  align-items: start;
  padding: .75rem;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--bg);
  font-weight: 800;
}

.consent-settings label span {
  grid-column: 2;
  display: block;
  color: var(--muted);
  font-weight: 400;
  font-size: .92rem;
}

.consent-settings input {
  margin-top: .25rem;
  accent-color: var(--blue);
}

.consent-actions--settings { justify-content: flex-start; }

@media (max-width: 1100px) {
  .service-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .logo-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}

@media (max-width: 980px) {
  .site-header {
    top: 8px;
    align-items: flex-start;
    border-radius: 26px;
  }

  .menu-toggle { display: inline-flex; }

  .site-nav {
    display: none;
    position: absolute;
    top: 62px;
    right: 0;
    left: 0;
    background: white;
    border-radius: 24px;
    box-shadow: var(--shadow);
    padding: .75rem;
    flex-direction: column;
    align-items: stretch;
  }

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

  .hero,
  .proof,
  .people,
  .contact,
  .entdeckerei-card {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    margin-top: 52px;
  }

  h1 { font-size: clamp(3rem, 14vw, 5.2rem); }

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

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

  .logo-card {
    min-height: 112px;
    padding: 1rem;
  }

  .logo-card img {
    max-width: 118px;
    max-height: 72px;
  }

  .image-card,
  .image-card--large {
    min-height: 400px;
  }

  .entdeckerei-quote { justify-content: flex-start; }

  .cta-strip,
  .site-footer {
    flex-direction: column;
    align-items: flex-start;
  }

  .consent-panel { grid-template-columns: 1fr; }

  .consent-actions { justify-content: flex-start; }
}

@media (max-width: 640px) {
  .hero,
  .section,
  .people {
    width: min(calc(100% - 24px), var(--max));
  }

  .site-header { width: min(calc(100% - 16px), 1220px); }

  .brand span { font-size: .88rem; }

  .hero { margin-top: 42px; }

  h1 { font-size: clamp(2.75rem, 13vw, 4.8rem); }

  h2 { font-size: clamp(1.9rem, 9vw, 3.1rem); }

  .hero__copy,
  .section__intro p,
  .proof__text p,
  .contact__intro p,
  .hubspot-card > p {
    font-size: 1rem;
  }

  .proof {
    border-radius: 26px;
    padding: 1.35rem;
  }

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

  .newsletter-popup {
    padding: 10px;
    align-items: end;
  }

  .newsletter-popup__panel {
    width: 100%;
    max-height: 82vh;
    border-radius: 26px 26px 0 0;
    padding: 1rem;
  }

  .newsletter-popup__copy h2 {
    font-size: clamp(1.65rem, 9vw, 2.35rem);
  }

  .newsletter-popup__form { max-height: 42vh; }

  .whatsapp-float {
    width: 54px;
    height: 54px;
    right: 14px;
    bottom: 14px;
  }
}

@media (min-width: 981px) {
  .image-grid {
    max-width: 1080px;
    margin: 0 auto;
  }

  .image-card {
    min-height: 360px;
    max-height: 430px;
  }

  .image-card--large {
    min-height: 560px;
    max-height: 560px;
  }
}
