/* ===========================
   realTim(e) Coaching — Global Styles
   =========================== */

:root {
  --navy:   #1F3A6E;
  --terra:  #A04123;
  --cream:  #F5F0EB;
  --dark:   #12233F;
  --muted:  rgba(245,240,235,0.55);
  --border: rgba(245,240,235,0.12);
  --font:   -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  background: #fff;
  color: #1a1a1a;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }

/* ── NAV ── */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(0,0,0,0.06);
  padding: 0 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  font-weight: 600;
  color: var(--terra);
  letter-spacing: -0.01em;
}
.nav-logo svg { width: 28px; height: 28px; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}
.nav-links a {
  font-size: 14px;
  color: #444;
  font-weight: 450;
  transition: color .2s;
}
.nav-links a:hover,
.nav-links a.active { color: var(--navy); font-weight: 500; }

.nav-cta {
  background: var(--terra);
  color: var(--cream) !important;
  padding: 9px 20px;
  border-radius: 8px;
  font-size: 13px !important;
  font-weight: 500 !important;
  transition: opacity .2s !important;
}
.nav-cta:hover { opacity: 0.88; color: var(--cream) !important; }

.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}
.nav-hamburger span {
  width: 22px; height: 2px;
  background: #444;
  border-radius: 2px;
  display: block;
  transition: .2s;
}

/* ── HERO ── */
.hero {
  background: var(--navy);
  padding: 88px 40px 80px;
}
.hero-inner {
  max-width: 1080px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 64px;
  align-items: center;
}

/* Left */
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(160,65,35,0.18);
  border: 0.5px solid rgba(160,65,35,0.45);
  border-radius: 20px;
  padding: 5px 14px;
  margin-bottom: 28px;
}
.hero-badge-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--terra);
}
.hero-badge-text {
  font-size: 12px;
  color: var(--cream);
  opacity: .85;
  letter-spacing: .04em;
}

.hero-h1 {
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 500;
  color: var(--cream);
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
}
.hero-h1 em { color: var(--terra); font-style: normal; }

.hero-sub {
  font-size: 17px;
  color: var(--cream);
  opacity: .65;
  line-height: 1.75;
  margin-bottom: 36px;
  max-width: 480px;
}

.hero-ctas {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--terra);
  color: var(--cream);
  padding: 15px 28px;
  border-radius: 12px;
  font-size: 15px;
  font-weight: 500;
  transition: opacity .2s, transform .15s;
}
.btn-primary:hover { opacity: .88; transform: translateY(-1px); }
.btn-primary svg { width: 17px; height: 17px; }

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--cream);
  opacity: .5;
  font-size: 14px;
  transition: opacity .2s;
}
.btn-ghost:hover { opacity: .8; }
.btn-ghost svg { width: 14px; height: 14px; }

/* Right — portrait card */
.hero-card {
  background: rgba(255,255,255,0.07);
  border: 0.5px solid var(--border);
  border-radius: 20px;
  padding: 32px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
}
.hero-photo-wrap {
  position: relative;
  width: 180px;
  height: 180px;
  margin-bottom: 20px;
}
.hero-photo {
  width: 180px;
  height: 180px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center top;
  border: 3px solid rgba(245,240,235,0.15);
}
.hero-badge-icon {
  position: absolute;
  bottom: 6px; right: 6px;
  width: 48px; height: 48px;
  background: var(--cream);
  border-radius: 50%;
  padding: 6px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.3);
}
.hero-badge-icon svg { width: 36px; height: 36px; display: block; }

.hero-card-name {
  font-size: 19px;
  font-weight: 500;
  color: var(--cream);
  margin-bottom: 4px;
}
.hero-card-title {
  font-size: 12px;
  color: var(--cream);
  opacity: .45;
  margin-bottom: 24px;
}

.hero-stats {
  display: flex;
  width: 100%;
  border-top: 0.5px solid var(--border);
  padding-top: 20px;
  gap: 0;
}
.hero-stat {
  flex: 1;
  text-align: center;
}
.hero-stat-val {
  font-size: 20px;
  font-weight: 500;
  color: var(--cream);
  line-height: 1;
}
.hero-stat-val.terra { color: var(--terra); }
.hero-stat-lbl {
  font-size: 10px;
  color: var(--cream);
  opacity: .4;
  margin-top: 4px;
  line-height: 1.4;
}
.hero-stat-div {
  width: 0.5px;
  background: var(--border);
  margin: 4px 0;
}

/* ── SECTION UTILS ── */
.section { padding: 88px 40px; }
.section-inner { max-width: 1080px; margin: 0 auto; }

.section-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--terra);
  opacity: .8;
  margin-bottom: 12px;
}
.section-h2 {
  font-size: clamp(26px, 3vw, 38px);
  font-weight: 500;
  color: var(--navy);
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}
.section-h2 em { color: var(--terra); font-style: normal; }
.section-sub {
  font-size: 16px;
  color: #555;
  line-height: 1.75;
  max-width: 560px;
}

/* ── FÜR DICH ── */
.fuer-dich { background: #fafaf9; }
.fuer-dich-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.fuer-dich-img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  border-radius: 16px;
}
.fuer-dich-items {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 32px;
}
.fuer-dich-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 16px;
  color: #333;
  line-height: 1.55;
}
.fuer-dich-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--terra);
  flex-shrink: 0;
  margin-top: 8px;
}

/* ── ANSATZ ── */
.ansatz-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 52px;
}
.ansatz-step {
  background: #fafaf9;
  border: 1px solid rgba(0,0,0,0.05);
  border-radius: 16px;
  padding: 28px 24px;
}
.ansatz-num {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .1em;
  color: var(--terra);
  opacity: .7;
  margin-bottom: 12px;
}
.ansatz-step h3 {
  font-size: 17px;
  font-weight: 500;
  color: var(--navy);
  margin-bottom: 10px;
  line-height: 1.3;
}
.ansatz-step p {
  font-size: 14px;
  color: #555;
  line-height: 1.7;
}

/* ── STATS BAND ── */
.stats-band {
  background: var(--navy);
  padding: 56px 40px;
}
.stats-band-inner {
  max-width: 1080px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
}
.stats-item {
  text-align: center;
  padding: 0 40px;
  border-right: 0.5px solid var(--border);
}
.stats-item:last-child { border-right: none; }
.stats-val {
  font-size: 44px;
  font-weight: 500;
  color: var(--cream);
  line-height: 1;
  margin-bottom: 8px;
}
.stats-val.terra { color: var(--terra); }
.stats-desc {
  font-size: 14px;
  color: var(--cream);
  opacity: .5;
  line-height: 1.5;
}

/* ── CTA BANNER ── */
.cta-banner {
  background: var(--terra);
  padding: 72px 40px;
  text-align: center;
}
.cta-banner h2 {
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 500;
  color: var(--cream);
  line-height: 1.25;
  margin-bottom: 12px;
  letter-spacing: -0.02em;
}
.cta-banner p {
  font-size: 16px;
  color: var(--cream);
  opacity: .75;
  margin-bottom: 32px;
}
.btn-cream {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--cream);
  color: var(--terra);
  padding: 16px 32px;
  border-radius: 12px;
  font-size: 15px;
  font-weight: 600;
  transition: opacity .2s, transform .15s;
}
.btn-cream:hover { opacity: .9; transform: translateY(-1px); }
.btn-cream svg { width: 17px; height: 17px; }

/* ── FOOTER ── */
.footer {
  background: var(--dark);
  padding: 48px 40px 32px;
}
.footer-inner {
  max-width: 1080px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 24px;
}
.footer-logo {
  font-size: 14px;
  font-weight: 600;
  color: var(--cream);
  opacity: .8;
}
.footer-links {
  display: flex;
  gap: 24px;
  list-style: none;
}
.footer-links a {
  font-size: 13px;
  color: var(--cream);
  opacity: .45;
  transition: opacity .2s;
}
.footer-links a:hover { opacity: .75; }
.footer-copy {
  width: 100%;
  font-size: 12px;
  color: var(--cream);
  opacity: .25;
  text-align: center;
  margin-top: 24px;
  padding-top: 24px;
  border-top: 0.5px solid var(--border);
}

/* ── PAGE HERO (inner pages) ── */
.page-hero {
  background: var(--navy);
  padding: 72px 40px 64px;
}
.page-hero-inner {
  max-width: 1080px;
  margin: 0 auto;
}
.page-hero h1 {
  font-size: clamp(30px, 4vw, 44px);
  font-weight: 500;
  color: var(--cream);
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}
.page-hero h1 em { color: var(--terra); font-style: normal; }
.page-hero p {
  font-size: 17px;
  color: var(--cream);
  opacity: .6;
  max-width: 540px;
  line-height: 1.75;
}

/* ── KONTAKT FORM ── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 20px;
}
.form-group label {
  font-size: 13px;
  font-weight: 500;
  color: #333;
}
.form-group input,
.form-group textarea,
.form-group select {
  font-family: var(--font);
  font-size: 15px;
  color: #1a1a1a;
  border: 1px solid #ddd;
  border-radius: 8px;
  padding: 12px 14px;
  background: #fff;
  transition: border-color .2s;
  outline: none;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--navy);
}
.form-group textarea { min-height: 120px; resize: vertical; }
.form-submit {
  width: 100%;
  background: var(--terra);
  color: var(--cream);
  border: none;
  padding: 15px 28px;
  border-radius: 12px;
  font-family: var(--font);
  font-size: 15px;
  font-weight: 500;
  cursor: pointer;
  transition: opacity .2s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.form-submit:hover { opacity: .88; }

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 64px;
    left: 0; right: 0;
    background: #fff;
    padding: 16px 24px 24px;
    border-bottom: 1px solid rgba(0,0,0,0.07);
    gap: 16px;
  }

  .hero { padding: 56px 24px 48px; }
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .hero-card { max-width: 320px; margin: 0 auto; }

  .fuer-dich-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .fuer-dich-img { aspect-ratio: 16/9; }

  .ansatz-steps { grid-template-columns: 1fr; }

  .stats-band-inner { grid-template-columns: 1fr; gap: 32px; }
  .stats-item { border-right: none; border-bottom: 0.5px solid var(--border); padding-bottom: 32px; }
  .stats-item:last-child { border-bottom: none; }

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

  .section { padding: 64px 24px; }
  .stats-band { padding: 48px 24px; }
  .cta-banner { padding: 56px 24px; }
  .footer { padding: 40px 24px 28px; }
  .footer-inner { flex-direction: column; align-items: flex-start; gap: 16px; }
  .page-hero { padding: 56px 24px 48px; }
}
