/* ============================================================
   RheinNusa - styles.css
   Umsetzung des finalen Claude Design (RheinNusa Wireframe).
   Statische One-Page-Website. Keine Frameworks, kein Build-Tool.
   Inhalt:
     01 Design-Tokens
     02 Basis und Reset
     03 Buttons
     04 Header und Navigation
     05 Hero
     06 Fakten-Laufband
     07 Drei Sorgen
     08 Prozess
     10 Video und Gruender
     11 Leitfaden
     12 Team
     13 Staerken
     14 FAQ Accordion
     15 Indonesien-Check
     16 Footer
     17 Unterseiten (Impressum, Datenschutz, 404)
   ============================================================ */

/* ---------- 01 Design-Tokens ---------- */

:root {
  --blue: #1257e5;
  --blue-hover: #0f4ac4;
  --blue-deep: #163d8c;
  --text: #1a1a1a;
  --text-strong: #1f1f1f;
  --text-body: #4f4f4f;
  --text-soft: #5f5f5f;
  --text-nav: #4a4a4a;
  --text-list: #3d3d3d;
  --muted: #8a8a8a;
  --muted-2: #9a9a9a;
  --muted-3: #7d7d7d;
  --step-label: #93a3b8;
  --card-kicker: #8194ae;
  --line: #e6e6e6;
  --line-soft: #ececec;
  --line-card: #e4ebf7;
  --shadow-card: 0 1px 2px rgba(16, 40, 80, .04), 0 10px 28px rgba(16, 40, 80, .055);
  --shadow-faq: 0 1px 2px rgba(16, 40, 80, .04), 0 8px 22px rgba(16, 40, 80, .045);
  --shadow-panel: 0 1px 2px rgba(16, 40, 80, .04), 0 18px 44px rgba(16, 40, 80, .08);
  --content: 1280px;
  --pad-x: clamp(20px, 5vw, 64px);
  --sec-y: clamp(56px, 8vw, 104px);
  --radius: 10px;
  --radius-lg: 16px;
  --dur: .18s;
  --font: 'Helvetica Neue', Helvetica, Arial, sans-serif;
}

/* ---------- 02 Basis und Reset ---------- */

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

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: #fff;
  color: var(--text);
  font-family: var(--font);
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; }

a { color: var(--text); text-decoration: none; }
a:hover { color: var(--blue); }

ul { margin: 0; padding: 0; }

h1, h2, h3, p { margin: 0; }

#prozess, #ueber-uns, #leitfaden, #leistungen, #faq, #check { scroll-margin-top: 96px; }

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

.skip-link {
  position: absolute;
  top: -60px;
  left: 16px;
  z-index: 100;
  padding: 10px 16px;
  background: var(--blue);
  color: #fff;
  border-radius: 4px;
  font-size: 15px;
}
.skip-link:focus { top: 10px; color: #fff; }

:focus-visible {
  outline: 2px solid var(--blue);
  outline-offset: 2px;
}

.icon {
  display: block;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.icon-14 { width: 14px; height: 14px; }
.icon-17 { width: 17px; height: 17px; }
.icon-18 { width: 18px; height: 18px; }
.icon-19 { width: 19px; height: 19px; }
.icon-26 { width: 26px; height: 26px; }
.icon-28 { width: 28px; height: 28px; }
.icon-30 { width: 30px; height: 30px; }

.container {
  max-width: var(--content);
  margin: 0 auto;
  padding-left: var(--pad-x);
  padding-right: var(--pad-x);
}

.section {
  padding-top: var(--sec-y);
  padding-bottom: var(--sec-y);
}

.section-title {
  font-size: clamp(25px, 2.7vw, 36px);
  line-height: 1.2;
  font-weight: 700;
  letter-spacing: -.015em;
  text-align: center;
}

.section-head { text-align: center; }

.section-subtitle {
  margin: 18px auto 0;
  max-width: 52ch;
  font-size: 17px;
  line-height: 1.6;
  color: var(--text-soft);
}

/* ---------- 03 Buttons ---------- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  font-weight: 600;
  white-space: nowrap;
  cursor: pointer;
  transition: background var(--dur) ease, border-color var(--dur) ease;
}

.btn-primary {
  height: 46px;
  padding: 0 20px;
  background: var(--blue);
  border: 1px solid var(--blue);
  color: #fff;
  font-size: 15px;
}
.btn-primary:hover { background: var(--blue-hover); border-color: var(--blue-hover); color: #fff; }

.btn-lg {
  height: 56px;
  padding: 0 30px;
  font-size: 16px;
}

.btn-secondary {
  padding-left: 26px;
  padding-right: 26px;
  background: #fff;
  border: 1px solid #cfd6e2;
  color: #1a2637;
}
.btn-secondary:hover { border-color: var(--blue); color: var(--blue); }

@media (max-width: 760px) {
  .btn-fullbtn {
    width: 100%;
    white-space: normal;
    height: auto;
    min-height: 56px;
    padding-top: 10px;
    padding-bottom: 10px;
    text-align: center;
  }
}

/* ---------- 04 Header und Navigation ---------- */

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: #fff;
  border-bottom: 1px solid var(--line);
  padding-left: var(--pad-x);
  padding-right: var(--pad-x);
}

.header-inner {
  max-width: var(--content);
  margin: 0 auto;
  height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
}

.brand-logo,
.brand img {
  display: block;
  width: 52px;
  height: 52px;
  margin: -9px 0;
  object-fit: contain;
}

.brand-name {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -.01em;
  color: var(--text);
}

.nav-desktop {
  display: flex;
  align-items: center;
  gap: 34px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 30px;
  font-size: 16px;
  white-space: nowrap;
}
.nav-links a { color: var(--text-nav); }
.nav-links a:hover { color: var(--blue); }

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 10px;
  background: none;
  border: 1px solid var(--line);
  border-radius: 6px;
  cursor: pointer;
}

.nav-toggle-bar {
  display: block;
  height: 2px;
  width: 100%;
  background: var(--text);
  border-radius: 1px;
  transition: transform var(--dur) ease, opacity var(--dur) ease;
}

.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-nav {
  flex-direction: column;
  gap: 4px;
  max-width: var(--content);
  margin: 0 auto;
  padding: 10px 0 20px;
  border-top: 1px solid var(--line);
}
.mobile-nav:not([hidden]) { display: flex; }
.mobile-nav a {
  padding: 12px 4px;
  font-size: 17px;
  color: var(--text-nav);
}
.mobile-nav .btn { margin-top: 10px; color: #fff; }

@media (max-width: 1060px) {
  .nav-desktop { display: none; }
  .nav-toggle { display: flex; }
}

/* ---------- 05 Hero ---------- */

.hero {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  align-items: stretch;
}

.hero-copy {
  position: relative;
  z-index: 1;
  padding-top: clamp(64px, 8.4vw, 124px);
  padding-bottom: clamp(64px, 8.4vw, 124px);
  padding-right: clamp(20px, 3vw, 40px);
  padding-left: max(clamp(20px, 5vw, 64px), calc((100vw - 1280px) / 2 + 64px));
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}

.hero-kicker {
  font-size: 15px;
  letter-spacing: .06em;
  color: var(--blue);
  font-weight: 600;
}

.hero h1 {
  margin-top: 18px;
  font-size: clamp(28px, 3.5vw, 50px);
  line-height: 1.12;
  font-weight: 700;
  letter-spacing: -.02em;
}

.hero-points {
  list-style: none;
  margin-top: 22px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-size: 17px;
  line-height: 1.5;
  color: #3a3a3a;
}

.hero-points li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.hero-point-icon {
  flex: 0 0 auto;
  display: flex;
  color: var(--blue);
}
.hero-point-icon .icon { margin-top: 4px; }

.hero-actions {
  margin-top: 36px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
}

.hero-microcopy {
  margin-top: 16px;
  font-size: 15px;
  line-height: 1.55;
  color: var(--muted-3);
}

.hero-media {
  position: relative;
  z-index: 0;
  margin-left: -15vw;
  width: calc(100% + 15vw);
  min-height: clamp(380px, 48vw, 740px);
  overflow: hidden;
}

.hero-media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: right center;
}

.hero-fade {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, #fff 0%, rgba(255, 255, 255, .82) 10%, rgba(255, 255, 255, .5) 24%, rgba(255, 255, 255, .2) 38%, rgba(255, 255, 255, 0) 52%);
}

@media (max-width: 900px) {
  .hero { grid-template-columns: 1fr; }
  .hero-media { margin-left: 0; width: 100%; }
}

@media (max-width: 430px) {
  .hero h1 { font-size: 23px; }
}

/* ---------- 06 Fakten-Laufband ---------- */

.facts {
  position: relative;
  background: #fff;
  padding: clamp(34px, 4vw, 52px) 0 clamp(24px, 2.6vw, 34px);
  overflow: hidden;
}

.facts-glow {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 78%;
  background: linear-gradient(180deg, rgba(18, 87, 229, .055) 0%, rgba(18, 87, 229, .022) 45%, rgba(255, 255, 255, 0) 100%);
  pointer-events: none;
}

.facts-marquee {
  position: relative;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 96px, #000 calc(100% - 96px), transparent 100%);
  mask-image: linear-gradient(90deg, transparent 0, #000 96px, #000 calc(100% - 96px), transparent 100%);
}

@keyframes rn-marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.facts-track {
  display: flex;
  align-items: stretch;
  width: max-content;
  animation: rn-marquee 150s linear infinite;
  will-change: transform;
}

.facts-marquee:hover .facts-track { animation-play-state: paused; }

.facts-group {
  display: flex;
  align-items: stretch;
}

.fact {
  flex: 0 0 auto;
  min-width: 212px;
  max-width: 290px;
  min-height: 118px;
  padding: 0 clamp(26px, 2.8vw, 44px);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  gap: 9px;
}

.fact-value {
  font-size: clamp(26px, 2.1vw, 31px);
  line-height: 1.05;
  font-weight: 600;
  letter-spacing: -.02em;
  color: var(--blue);
  white-space: nowrap;
}

.fact-label {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 45px;
  font-size: 16px;
  line-height: 1.4;
  color: var(--text-list);
}

.fact-note {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  min-height: 42px;
  font-size: 15px;
  line-height: 1.4;
  color: var(--muted-2);
}

.fact-sep {
  flex: 0 0 1px;
  align-self: center;
  width: 1px;
  height: 56px;
  background: linear-gradient(180deg, transparent 0, #dedede 22%, #dedede 78%, transparent 100%);
}

.facts-source-wrap {
  position: relative;
  max-width: var(--content);
  margin: 0 auto;
  padding-left: var(--pad-x);
  padding-right: var(--pad-x);
}

.facts-source {
  margin-top: 18px;
  text-align: right;
  font-size: 14px;
  color: #a2a2a2;
}

@media (max-width: 1040px) {
  .facts-track { animation-duration: 112s; }
}

@media (max-width: 760px) {
  .facts-track { animation-duration: 132s; }
  .facts-marquee { overflow-x: auto; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .facts-track { animation: none; transform: none; }
  .facts-marquee {
    overflow-x: auto;
    -webkit-mask-image: none;
    mask-image: none;
  }
  .faq-plus, .nav-toggle-bar, .check-progress-bar { transition: none; }
}

/* ---------- 07 Drei Sorgen ---------- */

.card {
  border: 1px solid var(--line-card);
  border-radius: var(--radius);
  background: linear-gradient(180deg, #f8fbff 0%, #ffffff 60%);
  box-shadow: var(--shadow-card);
}

.problems-grid {
  margin-top: clamp(32px, 4vw, 48px);
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(280px, 100%), 1fr));
  gap: clamp(20px, 2.4vw, 30px);
  align-items: stretch;
}

.problems-title { font-size: clamp(22px, 2.7vw, 35px); }

.problem-card {
  background: linear-gradient(180deg, #f8fbff 0%, #ffffff 62%);
  padding: clamp(26px, 2.8vw, 34px);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 12px;
}

.card-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 30px;
  color: var(--blue-deep);
}

.card-kicker {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .09em;
  text-transform: uppercase;
  color: var(--card-kicker);
}

.problem-card h3 {
  font-size: clamp(17px, 1.45vw, 19px);
  line-height: 1.3;
  font-weight: 600;
  letter-spacing: -.01em;
  white-space: nowrap;
}

.card-text {
  margin-top: 2px;
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-soft);
  max-width: 30ch;
  margin-inline: auto;
  text-wrap: balance;
}

@media (max-width: 1040px) {
  .problems-grid { grid-template-columns: repeat(3, 1fr); }
  .problem-card h3 { white-space: normal; }
  .card-text { max-width: none; }
}

@media (max-width: 700px) {
  .problems-grid { grid-template-columns: 1fr; }
}

/* ---------- 08 Prozess ---------- */

.section-process {
  position: relative;
  background: linear-gradient(180deg, #ffffff 0%, #f1f6ff 16%, #eaf1fd 52%, #f4f9ff 82%, #ffffff 100%);
}

.process-badge {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  justify-content: center;
  transform: translateY(-50%);
}

.process-badge span {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 999px;
  background: #fff;
  box-shadow: 0 1px 2px rgba(16, 40, 80, .06), 0 8px 22px rgba(16, 40, 80, .08);
  color: var(--blue);
}

.process-title { font-size: clamp(23px, 2.7vw, 36px); }

.process-subtitle {
  margin-top: 14px;
  max-width: none;
  font-size: clamp(15px, 1.35vw, 17px);
  color: var(--text-body);
}

.steps {
  margin-top: clamp(32px, 4vw, 48px);
  display: flex;
  flex-wrap: nowrap;
  align-items: stretch;
  gap: 12px;
}

.step-card {
  flex: 1 1 0;
  min-width: 0;
  background: linear-gradient(180deg, #f8fbff 0%, #ffffff 58%);
  box-shadow: 0 1px 2px rgba(16, 40, 80, .04), 0 10px 28px rgba(16, 40, 80, .05);
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.step-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.step-icon {
  display: flex;
  color: var(--blue-deep);
}

.step-number {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .1em;
  color: var(--step-label);
}

.step-card h3 {
  margin-top: 2px;
  font-size: 19px;
  line-height: 1.3;
  font-weight: 600;
  letter-spacing: -.01em;
  white-space: nowrap;
}

.check-list {
  list-style: none;
  margin-top: 4px;
  display: flex;
  flex-direction: column;
  gap: 9px;
}

.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 14px;
  line-height: 1.45;
  color: #46505f;
}

.check-list .icon {
  flex: 0 0 auto;
  margin-top: 2px;
  color: var(--blue);
}

.step-conn {
  flex: 0 0 14px;
  align-self: center;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3px;
}

.step-conn-line {
  display: block;
  width: 6px;
  border-top: 1px dashed #c2c2c2;
}

.step-conn-arrow {
  display: block;
  width: 0;
  height: 0;
  border-left: 5px solid #c2c2c2;
  border-top: 4px solid transparent;
  border-bottom: 4px solid transparent;
}

.steps-cta {
  margin-top: clamp(34px, 4vw, 48px);
  display: flex;
  justify-content: center;
}

@media (max-width: 1180px) {
  .step-conn { display: none; }
  .steps {
    display: grid;
    grid-template-columns: minmax(0, 560px);
    justify-content: center;
    gap: 20px;
  }
  .step-card { flex: none; position: relative; }
  .step-card:not(:last-of-type)::after {
    content: "";
    position: absolute;
    left: calc(50% - 1px);
    bottom: -19px;
    width: 0;
    height: 18px;
    border-left: 1px dashed #c4c4c4;
  }
}

@media (max-width: 760px) {
  .steps { grid-template-columns: 1fr; justify-content: stretch; }
}

/* ---------- 10 Video und Gruender ---------- */

.section-video {
  padding-top: clamp(56px, 7vw, 88px);
  padding-bottom: clamp(56px, 7vw, 88px);
}

.video-row {
  display: grid;
  grid-template-columns: 1.85fr 1fr;
  gap: clamp(40px, 3.6vw, 56px);
  align-items: center;
}

.video-thumb {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  border: 0;
  padding: 0;
  border-radius: var(--radius);
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: #0c1628;
  cursor: pointer;
}

.video-thumb img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.video-scrim {
  position: absolute;
  inset: 0;
  background: rgba(12, 22, 40, .22);
}

.play-button {
  position: relative;
  width: 74px;
  height: 74px;
  border-radius: 999px;
  background: rgba(255, 255, 255, .94);
  display: flex;
  align-items: center;
  justify-content: center;
}

.play-button::after {
  content: "";
  display: block;
  width: 0;
  height: 0;
  margin-left: 5px;
  border-left: 18px solid var(--blue);
  border-top: 11px solid transparent;
  border-bottom: 11px solid transparent;
}

.video-title {
  margin-top: 20px;
  font-size: 17px;
  line-height: 1.5;
  color: #2e2e2e;
}

.video-duration {
  margin-top: 6px;
  font-size: 15px;
  color: var(--muted);
}

.founder-col {
  border-left: 1px solid var(--line-soft);
  padding-left: clamp(28px, 3vw, 40px);
}

.founder-head {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
}

.founder-portrait {
  flex: 0 0 auto;
  display: block;
  width: 132px;
  height: 132px;
  border-radius: 999px;
  overflow: hidden;
  background: #e4e4e4;
}

.founder-portrait img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 22%;
}

.founder-name {
  font-size: 19px;
  font-weight: 600;
  letter-spacing: -.01em;
}

.founder-role {
  margin-top: 4px;
  font-size: 16px;
  color: #6b6b6b;
}

.founder-points {
  list-style: none;
  margin-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 13px;
  font-size: 16px;
  line-height: 1.45;
  color: var(--text-list);
}

.founder-points li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.founder-points .icon {
  flex: 0 0 auto;
  margin-top: 2px;
  color: var(--blue-deep);
}

@media (max-width: 900px) {
  .video-row { grid-template-columns: 1fr; gap: 40px; }
  .founder-col { border-left: 0; padding-left: 0; }
  .founder-head { flex-direction: row; align-items: center; }
  .founder-portrait { width: 88px; height: 88px; }
}

/* ---------- 11 Leitfaden ---------- */

.section-guide {
  padding-top: clamp(44px, 6vw, 84px);
  padding-bottom: clamp(44px, 6vw, 84px);
}

.guide-card {
  border: 1px solid var(--line-card);
  border-radius: var(--radius-lg);
  background: linear-gradient(180deg, #f6faff 0%, #ffffff 66%);
  box-shadow: 0 1px 2px rgba(16, 40, 80, .04), 0 16px 40px rgba(16, 40, 80, .06);
  padding: clamp(24px, 3vw, 44px);
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: clamp(28px, 3.4vw, 52px);
  align-items: center;
}

.guide-mockup {
  display: block;
  width: 100%;
  height: auto;
}

.guide-kicker {
  font-size: 14px;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--blue);
}

.guide-copy h2 {
  margin-top: 14px;
  font-size: clamp(21px, 2.1vw, 29px);
  line-height: 1.2;
  font-weight: 700;
  letter-spacing: -.015em;
}

.guide-text {
  margin-top: 14px;
  max-width: 52ch;
  font-size: 17px;
  line-height: 1.6;
  color: var(--text-soft);
  text-wrap: pretty;
}

.guide-form-wrap {
  margin-top: clamp(22px, 2.4vw, 30px);
  max-width: 440px;
}

.email-capture {
  display: flex;
  align-items: center;
  gap: 8px;
  height: 60px;
  padding: 0 8px 0 18px;
  border: 1px solid #d7e1f2;
  border-radius: var(--radius);
  background: #fff;
}

.email-capture input {
  flex: 1 1 auto;
  min-width: 0;
  height: 100%;
  border: 0;
  background: transparent;
  font-family: inherit;
  font-size: 16px;
  color: var(--text);
  outline: none;
}

.email-capture input::placeholder { color: var(--muted-2); }

.send-btn {
  flex: 0 0 auto;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--blue);
  color: #fff;
  border: 0;
  border-radius: 8px;
  cursor: pointer;
  transition: background var(--dur) ease;
}
.send-btn:hover { background: var(--blue-hover); }

.guide-note {
  margin-top: 12px;
  font-size: 14px;
  color: var(--muted);
}

.form-feedback {
  margin-top: 10px;
  font-size: 15px;
}
.form-feedback:empty { display: none; }
.form-feedback.is-success { color: #1b7a3d; }
.form-feedback.is-error { color: #b3261e; }

@media (max-width: 900px) {
  .guide-card {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: left;
  }
  .guide-mockup { max-width: 260px; }
  .guide-copy { width: 100%; }
}

/* ---------- 12 Team ---------- */

.section-team {
  padding-top: clamp(56px, 7vw, 96px);
  padding-bottom: clamp(56px, 7vw, 96px);
}

.team-grid {
  margin-top: clamp(32px, 4vw, 48px);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(20px, 2.4vw, 30px);
  align-items: stretch;
}

.team-card {
  border-radius: 12px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.team-photo {
  display: block;
  border-radius: 8px;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: #e4e4e4;
}

.team-photo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 18%;
}

.team-photo-joshua img { object-position: center 20%; }

.team-meta { padding: 0 4px 4px; }

.team-note {
  margin: clamp(24px, 3vw, 34px) auto 0;
  max-width: 64ch;
  text-align: center;
  font-size: 16px;
  line-height: 1.6;
  color: #6b6b6b;
  text-wrap: pretty;
}

.team-name {
  font-size: 18px;
  font-weight: 600;
  letter-spacing: -.01em;
}

.team-role {
  margin-top: 5px;
  font-size: 16px;
  color: #6b6b6b;
}

@media (max-width: 700px) {
  .team-grid { grid-template-columns: 1fr; }
}

/* ---------- 13 Staerken ---------- */

.section-strengths {
  padding-top: clamp(44px, 6vw, 88px);
  padding-bottom: clamp(44px, 6vw, 88px);
}

.strengths-subtitle {
  white-space: nowrap;
  font-size: clamp(15px, 1.4vw, 17px);
  max-width: none;
}

.strengths-grid {
  margin-top: clamp(34px, 4vw, 50px);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(28px, 3vw, 42px) clamp(24px, 2.6vw, 34px);
  align-items: start;
}

.strength {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.strength .icon-28 { color: var(--blue-deep); }

.strength h3 {
  font-size: 18px;
  font-weight: 600;
  line-height: 1.3;
  letter-spacing: -.01em;
}

.strength p {
  font-size: 16px;
  line-height: 1.55;
  color: var(--text-soft);
  text-wrap: pretty;
}

@media (max-width: 1040px) {
  .strengths-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 760px) {
  .strengths-subtitle { white-space: normal; }
}

@media (max-width: 640px) {
  .strengths-grid { grid-template-columns: 1fr; }
}

/* ---------- 14 FAQ Accordion ---------- */

.faq-columns {
  margin-top: clamp(32px, 4vw, 44px);
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 16px clamp(20px, 2.4vw, 30px);
}

.faq-col {
  flex: 1 1 340px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq-item {
  border: 1px solid var(--line-card);
  border-radius: 12px;
  background: linear-gradient(180deg, #f8fbff 0%, #ffffff 60%);
  box-shadow: var(--shadow-faq);
  padding: 0 22px;
}

.faq-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 20px 0;
  cursor: pointer;
  list-style: none;
}
.faq-item summary::-webkit-details-marker { display: none; }

.faq-question {
  font-size: 17px;
  line-height: 1.4;
  font-weight: 500;
  color: var(--text-strong);
}

.faq-plus {
  flex: 0 0 auto;
  display: flex;
  color: var(--blue);
  transition: transform var(--dur) ease;
}

.faq-item[open] .faq-plus { transform: rotate(45deg); }

.faq-item > p {
  padding: 0 0 22px;
  max-width: 52ch;
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-soft);
  text-wrap: pretty;
}

/* ---------- 15 Indonesien-Check ---------- */

.section-check {
  background: linear-gradient(180deg, #f3f8ff 0%, #eef4fe 58%, #f9fbff 100%);
  padding: clamp(72px, 10vw, 140px) var(--pad-x);
}

.check-grid {
  max-width: var(--content);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(28px, 3.5vw, 56px);
  align-items: center;
}

.check-kicker {
  font-size: 14px;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--blue);
}

.check-intro h2 {
  margin-top: 16px;
  font-size: clamp(30px, 3.6vw, 50px);
  line-height: 1.12;
  font-weight: 700;
  letter-spacing: -.02em;
}

.check-lead {
  margin-top: 20px;
  max-width: 48ch;
  font-size: 18px;
  line-height: 1.65;
  color: var(--text-body);
  text-wrap: pretty;
}

.check-points { margin-top: 26px; gap: 12px; }
.check-points .icon { color: var(--blue-deep); }

.check-widget {
  border: 1px solid #e0e9f8;
  border-radius: var(--radius-lg);
  background: #fff;
  box-shadow: var(--shadow-panel);
  padding: clamp(24px, 2.8vw, 34px);
}

.check-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.check-step-label {
  font-size: 14px;
  font-weight: 600;
  letter-spacing: .06em;
  color: var(--blue);
}

.check-time {
  font-size: 14px;
  color: var(--muted-2);
}

.check-progress {
  margin-top: 12px;
  height: 5px;
  border-radius: 999px;
  background: #e8eefb;
  overflow: hidden;
}

.check-progress-bar {
  height: 100%;
  background: var(--blue);
  border-radius: 999px;
  transition: width .25s ease;
}

.check-question {
  margin-top: 24px;
  font-size: 21px;
  line-height: 1.35;
  font-weight: 600;
  letter-spacing: -.01em;
}

.check-options {
  margin-top: 22px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.check-option {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 14px;
  min-height: 60px;
  padding: 14px 18px;
  border: 1px solid #e2e9f6;
  border-radius: var(--radius);
  background: #fafcff;
  font-family: inherit;
  font-size: 16px;
  line-height: 1.4;
  color: #2b2b2b;
  text-align: left;
  cursor: pointer;
  transition: border-color .15s ease, background .15s ease;
}

.check-option:hover {
  border-color: var(--blue);
  background: #f2f7ff;
}

.check-option-dot {
  flex: 0 0 auto;
  width: 18px;
  height: 18px;
  border: 1px solid #c4d3ec;
  border-radius: 999px;
  background: #fff;
}

.check-back {
  margin-top: 18px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0;
  border: 0;
  background: none;
  font-family: inherit;
  font-size: 15px;
  color: #7a869a;
  cursor: pointer;
}
.check-back:hover { color: var(--blue); }

.check-form-lead {
  margin-top: 12px;
  font-size: 16px;
  line-height: 1.55;
  color: var(--text-soft);
}

.check-widget .email-capture { margin-top: 22px; }

.check-result {
  margin-top: 26px;
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.check-result-icon {
  flex: 0 0 auto;
  display: flex;
  color: var(--blue);
}
.check-result-icon .icon { width: 30px; height: 30px; }

.check-result-title {
  font-size: 19px;
  font-weight: 600;
  letter-spacing: -.01em;
}

.check-result-text {
  margin-top: 10px;
  font-size: 16px;
  line-height: 1.55;
  color: var(--text-soft);
}

@media (max-width: 900px) {
  .check-grid { grid-template-columns: 1fr; }
}

/* ---------- 16 Footer ---------- */

.site-footer {
  padding: clamp(44px, 6vw, 76px) 0 32px;
}

.footer-cols {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(220px, 100%), 1fr));
  gap: clamp(28px, 3vw, 40px);
  align-items: start;
}

.footer-brand {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -.01em;
}

.footer-tagline {
  margin-top: 16px;
  max-width: 34ch;
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-soft);
  text-wrap: pretty;
}

.footer-heading {
  font-size: 14px;
  letter-spacing: .1em;
  color: var(--muted);
}

.footer-list {
  margin-top: 16px;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: 16px;
}
.footer-list a { color: var(--text-nav); }
.footer-list a:hover { color: var(--blue); }

.footer-bottom {
  margin-top: clamp(36px, 4vw, 56px);
  padding-top: 28px;
  border-top: 1px solid var(--line);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.footer-legal-lines {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 15px;
  color: var(--muted);
}

.footer-brandmark {
  display: flex;
  align-items: center;
  gap: 12px;
}

.footer-brandmark img {
  display: block;
  width: 64px;
  height: 64px;
  object-fit: contain;
}

.footer-brandmark span {
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -.01em;
  color: var(--text-nav);
}

@media (max-width: 1040px) {
  .footer-cols { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 560px) {
  .footer-cols { grid-template-columns: 1fr; }
}

/* ---------- 17 Unterseiten (Impressum, Datenschutz, 404) ---------- */

.legal-page {
  padding: clamp(48px, 7vw, 88px) 0;
  min-height: 50vh;
}

.legal-page h1 {
  margin-top: 18px;
  font-size: clamp(26px, 3vw, 38px);
  line-height: 1.2;
  font-weight: 700;
  letter-spacing: -.02em;
}

.legal-page p { margin-top: 16px; color: var(--text-body); }

.back-link {
  display: inline-block;
  font-size: 15px;
  color: var(--blue);
}

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

.footer-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}

.footer-legal {
  font-size: 15px;
  color: var(--muted);
}

.footer-nav {
  display: flex;
  gap: 20px;
  font-size: 15px;
}
.footer-nav a { color: var(--text-nav); }
