/* pilot.teamwerk.ag — Akquise-Landingpage
 * Sprint 2026-05-20.
 *
 * Brand-Farben aus Produktblatt:
 *   Petrol-Blau:    #0c4263
 *   Türkis-Grün:    #28a690
 *   Background:     #f7f8f5
 *   Ink-Dunkel:     #1d1d1b
 *   Ink-Mittel:     #4a4a47
 *   Light-Grey:     #f1f1ee
 */

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Source Sans Pro', 'Open Sans', Arial, sans-serif;
  font-size: 16px;
  line-height: 1.5;
  color: #1d1d1b;
  background: #f7f8f5;
  -webkit-font-smoothing: antialiased;
}

a {
  color: #0c4263;
  text-decoration: none;
}

a:hover {
  color: #28a690;
}

/* ─────────── Top-Bar (Logo + Tagline) ─────────── */
.topbar {
  background: #fff;
  border-bottom: 1px solid #e5e5e0;
  padding: 16px 0;
}

.topbar-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.topbar-logo {
  height: 40px;
}

.topbar-tagline {
  font-size: 14px;
  color: #4a4a47;
  text-align: right;
  line-height: 1.3;
}

.topbar-tagline strong {
  color: #0c4263;
  display: block;
}

/* ─────────── Hero (volle Breite) ─────────── */
.hero {
  background: linear-gradient(135deg, #0c4263 0%, #1a5a85 100%);
  color: #fff;
  padding: 60px 24px 80px;
  text-align: center;
}

.hero-inner {
  max-width: 920px;
  margin: 0 auto;
}

.hero-eyebrow {
  display: inline-block;
  background: rgba(40, 166, 144, 0.2);
  color: #5ec9b0;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin-bottom: 24px;
}

.hero h1 {
  font-size: 42px;
  font-weight: 400;
  line-height: 1.15;
  margin-bottom: 20px;
  letter-spacing: -0.5px;
}

.hero h1 strong {
  font-weight: 700;
}

.hero-sub {
  font-size: 19px;
  font-weight: 300;
  color: #cfdfeb;
  max-width: 680px;
  margin: 0 auto 36px;
  line-height: 1.5;
}

.hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  color: #0c4263;
  padding: 14px 28px;
  border-radius: 6px;
  font-weight: 700;
  font-size: 17px;
  text-decoration: none;
  transition: all 0.15s;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.12);
}

.hero-cta:hover {
  background: #f1f6fa;
  color: #0c4263;
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.18);
}

.hero-cta::after {
  content: "↓";
  font-weight: 400;
}

/* ─────────── Bot-Demo-Bereich ─────────── */
.bot-section {
  max-width: 1200px;
  margin: -40px auto 0;
  padding: 0 24px 80px;
}

.bot-card {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 6px 30px rgba(12, 66, 99, 0.12);
  overflow: hidden;
  display: grid;
  grid-template-columns: 320px 1fr;
}

@media (max-width: 880px) {
  .bot-card {
    grid-template-columns: 1fr;
  }
}

.bot-sidebar {
  background: #f7f8f5;
  padding: 32px 24px;
  border-right: 1px solid #e5e5e0;
}

@media (max-width: 880px) {
  .bot-sidebar {
    border-right: none;
    border-bottom: 1px solid #e5e5e0;
  }
}

.bot-sidebar-headline {
  font-size: 14px;
  font-weight: 700;
  color: #0c4263;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 12px;
}

.bot-sidebar-hint {
  font-size: 14px;
  color: #4a4a47;
  margin-bottom: 18px;
  line-height: 1.5;
}

.quick-hints {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.quick-hint {
  background: #fff;
  border: 1px solid #d6dae3;
  border-radius: 8px;
  padding: 10px 14px;
  font-size: 14px;
  color: #1d1d1b;
  cursor: pointer;
  text-align: left;
  transition: all 0.15s;
  display: flex;
  align-items: center;
  gap: 10px;
  line-height: 1.3;
}

.quick-hint:hover {
  border-color: #0c4263;
  background: #f1f6fa;
  color: #0c4263;
  box-shadow: 0 2px 6px rgba(12, 66, 99, 0.08);
}

.quick-hint-icon {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #0c4263;
}

.quick-hint-icon svg {
  width: 22px;
  height: 22px;
  display: block;
}

.quick-hint:hover .quick-hint-icon {
  color: #0c4263;
}

.bot-iframe-wrap {
  position: relative;
  min-height: 600px;
}

.bot-iframe {
  width: 100%;
  height: 100%;
  min-height: 600px;
  border: none;
  display: block;
}

/* ─────────── Trust-Signale-Reihe ─────────── */
.trust-row {
  background: #fff;
  border-top: 1px solid #e5e5e0;
  border-bottom: 1px solid #e5e5e0;
  padding: 32px 24px;
}

.trust-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

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

.trust-item {
  text-align: center;
}

.trust-icon {
  font-size: 28px;
  margin-bottom: 8px;
}

.trust-title {
  font-size: 14px;
  font-weight: 700;
  color: #0c4263;
  margin-bottom: 4px;
}

.trust-sub {
  font-size: 13px;
  color: #4a4a47;
  line-height: 1.4;
}

/* ─────────── How-it-Works ─────────── */
.how-section {
  padding: 80px 24px;
  max-width: 1200px;
  margin: 0 auto;
}

.section-title {
  font-size: 32px;
  font-weight: 400;
  color: #0c4263;
  text-align: center;
  margin-bottom: 12px;
  letter-spacing: -0.3px;
}

.section-sub {
  font-size: 16px;
  color: #4a4a47;
  text-align: center;
  max-width: 640px;
  margin: 0 auto 48px;
  line-height: 1.5;
}

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

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

.step {
  background: #fff;
  padding: 32px 24px;
  border-radius: 12px;
  text-align: center;
  border: 1px solid #e5e5e0;
}

.step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background: #28a690;
  color: #fff;
  border-radius: 50%;
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 16px;
}

.step-title {
  font-size: 18px;
  font-weight: 700;
  color: #0c4263;
  margin-bottom: 8px;
}

.step-sub {
  font-size: 14px;
  color: #4a4a47;
  line-height: 1.5;
}

/* ─────────── CTA-Section ─────────── */
.cta-section {
  background: #0c4263;
  color: #fff;
  padding: 80px 24px;
  text-align: center;
}

.cta-inner {
  max-width: 720px;
  margin: 0 auto;
}

.cta-section h2 {
  font-size: 30px;
  font-weight: 400;
  margin-bottom: 16px;
}

.cta-section p {
  font-size: 17px;
  color: #cfdfeb;
  margin-bottom: 32px;
  line-height: 1.5;
}

.cta-buttons {
  display: inline-flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
}

.cta-primary {
  background: #28a690;
  color: #fff;
  padding: 14px 28px;
  border-radius: 6px;
  font-weight: 700;
  text-decoration: none;
  font-size: 16px;
}

.cta-primary:hover {
  background: #229079;
  color: #fff;
}

.cta-secondary {
  background: transparent;
  color: #fff;
  padding: 14px 28px;
  border-radius: 6px;
  font-weight: 600;
  text-decoration: none;
  font-size: 16px;
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.cta-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
}

/* ─────────── Footer ─────────── */
.footer {
  background: #1d1d1b;
  color: #cfd2cd;
  padding: 40px 24px;
  font-size: 14px;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-left strong {
  color: #fff;
  display: block;
  margin-bottom: 4px;
}

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

.footer-right a {
  color: #cfd2cd;
}

.footer-right a:hover {
  color: #28a690;
}
