/* ============================================
   GUANTARA – Eigene Stile (Bootstrap-Erweiterung)
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&family=Fraunces:ital,wght@0,400;0,700;0,900;1,700&display=swap');

/* --- Variablen --- */
:root {
  --g-navy:       #0f2150;
  --g-navy-mid:   #1a3270;
  --g-orange:     #f97316;
  --g-orange-lt:  #fff4ed;
  --g-orange-dim: rgba(249,115,22,.12);
  --g-blue-lt:    #eef2ff;
  --g-text:       #1e293b;
  --g-muted:      #64748b;
  --g-border:     #e2e8f0;
  --g-bg:         #f8fafc;
  --g-white:      #ffffff;
  --g-radius:     12px;
  --g-radius-lg:  20px;
  --g-shadow-sm:  0 1px 4px rgba(15,33,80,.08);
  --g-shadow:     0 6px 24px rgba(15,33,80,.10);
  --g-shadow-lg:  0 16px 48px rgba(15,33,80,.14);
  --g-trans:      .25s ease;
  --font-head:    'Fraunces', serif;
  --font-body:    'Plus Jakarta Sans', sans-serif;
}

/* --- Global --- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  font-size: 17px;
  color: var(--g-text);
  background: var(--g-white);
  overflow-x: hidden;
  line-height: 1.7;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }

/* Scrollbar */
::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--g-bg); }
::-webkit-scrollbar-thumb { background: var(--g-orange); border-radius: 4px; }

/* ============================================
   TYPOGRAPHY
   ============================================ */
.g-label {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  color: var(--g-orange);
  background: var(--g-orange-dim);
  padding: 5px 14px;
  border-radius: 30px;
  margin-bottom: 14px;
}
.g-title {
  font-family: var(--font-head);
  font-size: clamp(28px, 4vw, 46px);
  font-weight: 900;
  color: var(--g-navy);
  line-height: 1.15;
  margin-bottom: 16px;
}
.g-sub {
  font-size: 17px;
  color: var(--g-muted);
  max-width: 580px;
}
.g-title em {
  font-style: italic;
  color: var(--g-orange);
}

/* ============================================
   BUTTONS
   ============================================ */
.g-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 26px;
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 700;
  border-radius: 8px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: var(--g-trans);
  text-decoration: none;
}
.g-btn-primary {
  background: var(--g-orange);
  color: #fff;
  border-color: var(--g-orange);
}
.g-btn-primary:hover {
  background: #ea6a07;
  border-color: #ea6a07;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(249,115,22,.35);
}
.g-btn-navy {
  background: var(--g-navy);
  color: #fff;
  border-color: var(--g-navy);
}
.g-btn-navy:hover {
  background: var(--g-navy-mid);
  border-color: var(--g-navy-mid);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(15,33,80,.28);
}
.g-btn-outline {
  background: transparent;
  color: var(--g-navy);
  border-color: var(--g-navy);
}
.g-btn-outline:hover {
  background: var(--g-navy);
  color: #fff;
  transform: translateY(-2px);
}
.g-btn-outline-orange {
  background: transparent;
  color: var(--g-orange);
  border-color: var(--g-orange);
}
.g-btn-outline-orange:hover {
  background: var(--g-orange);
  color: #fff;
  transform: translateY(-2px);
}

/* ============================================
   NAVBAR
   ============================================ */
.g-navbar {
  background: var(--g-white);
  border-bottom: 1px solid var(--g-border);
  padding: 0;
  position: sticky;
  top: 0;
  z-index: 900;
  box-shadow: var(--g-shadow-sm);
}
.g-navbar .container-xl {
  display: flex;
    align-items: center;
    height: 70px;
    gap: 32px;
    justify-content: space-between;
}
.g-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-head);
  font-size: 22px;
  font-weight: 900;
  color: var(--g-navy);
  flex-shrink: 0;
}
.g-logo img { width: 38px; height: 38px; border-radius: 9px; }
.g-logo span { color: var(--g-orange); }
.g-nav-links {
  display: flex;
  gap: 4px;
  list-style: none;
  margin: 0; padding: 0;
  flex: 1;
}
.g-nav-links a {
  display: block;
  padding: 8px 14px;
  font-size: 15px;
  font-weight: 600;
  color: var(--g-muted);
  border-radius: 7px;
  transition: color var(--g-trans), background var(--g-trans);
}
.g-nav-links a:hover,
.g-nav-links a.active {
  color: var(--g-navy);
  background: var(--g-blue-lt);
}
.g-nav-links a.active { color: var(--g-orange); background: var(--g-orange-dim); }
.g-nav-right { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.g-toggler {
  display: none;
  background: none;
  border: 1.5px solid var(--g-border);
  border-radius: 7px;
  padding: 7px 10px;
  cursor: pointer;
  flex-direction: column;
  gap: 5px;
}
.g-toggler span {
  display: block; width: 20px; height: 2px;
  background: var(--g-navy); border-radius: 2px;
  transition: transform .3s, opacity .3s;
}
.g-toggler.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.g-toggler.open span:nth-child(2) { opacity: 0; }
.g-toggler.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile Dropdown */
.g-mobile-menu {
  display: none;
  position: absolute;
  top: 70px; left: 0; right: 0;
  background: var(--g-white);
  border-bottom: 1px solid var(--g-border);
  box-shadow: var(--g-shadow);
  z-index: 850;
  padding: 12px 16px 20px;
}
.g-mobile-menu.open { display: block; }
.g-mobile-menu a {
  display: block;
  padding: 12px 16px;
  font-size: 16px;
  font-weight: 600;
  color: var(--g-text);
  border-radius: 8px;
  border-left: 3px solid transparent;
  transition: background var(--g-trans), border-color var(--g-trans), color var(--g-trans);
}
.g-mobile-menu a:hover,
.g-mobile-menu a.active {
  background: var(--g-orange-dim);
  border-left-color: var(--g-orange);
  color: var(--g-orange);
}
.g-mobile-menu .g-btn { width: 100%; justify-content: center; margin-top: 12px; }

/* ============================================
   HERO
   ============================================ */
.g-hero {
  background: var(--g-navy);
  position: relative;
  overflow: hidden;
  padding: 100px 0 80px;
  min-height: 90vh;
  display: flex;
  align-items: center;
}
.g-hero-pattern {
  position: absolute; inset: 0;
  background-image:
    radial-gradient(circle 1px at center, rgba(255,255,255,.12) 1px, transparent 0);
  background-size: 36px 36px;
  pointer-events: none;
}
.g-hero-glow {
  position: absolute;
  top: -120px; right: -120px;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(249,115,22,.18) 0%, transparent 68%);
  pointer-events: none;
}
.g-hero-glow2 {
  position: absolute;
  bottom: -80px; left: -80px;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(99,102,241,.14) 0%, transparent 68%);
  pointer-events: none;
}
.g-hero-content { position: relative; z-index: 2; }
.g-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 16px;
  border: 1px solid rgba(249,115,22,.4);
  border-radius: 30px;
  font-size: 13px;
  font-weight: 700;
  color: var(--g-orange);
  background: rgba(249,115,22,.08);
  margin-bottom: 24px;
}
.g-hero h1 {
  font-family: var(--font-head);
  font-size: clamp(38px, 5.5vw, 70px);
  font-weight: 900;
  color: #fff;
  line-height: 1.08;
  margin-bottom: 22px;
}
.g-hero h1 em {
  font-style: italic;
  color: var(--g-orange);
}
.g-hero-lead {
  font-size: 18px;
  color: rgba(255,255,255,.7);
  margin-bottom: 38px;
  max-width: 540px;
}
.g-hero-btns { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 60px; }
.g-hero-stats {
  display: flex; gap: 40px; flex-wrap: wrap;
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,.1);
}
.g-hero-stat-num {
  font-family: var(--font-head);
  font-size: 34px; font-weight: 900;
  color: #fff; line-height: 1;
}
.g-hero-stat-num span { color: var(--g-orange); }
.g-hero-stat-lbl { font-size: 13px; color: rgba(255,255,255,.55); margin-top: 4px; font-weight: 600; text-transform: uppercase; letter-spacing: 1px; }
.g-hero-img-wrap {
  position: relative;
  border-radius: var(--g-radius-lg);
  overflow: hidden;
  box-shadow: 0 24px 80px rgba(0,0,0,.4);
  border: 1px solid rgba(255,255,255,.1);
}
.g-hero-img-wrap img { width: 100%; aspect-ratio: 4/3; object-fit: cover; }
.g-hero-img-badge {
  position: absolute;
  bottom: 20px; left: 20px;
  background: rgba(15,33,80,.92);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 12px;
  padding: 12px 16px;
  display: flex; align-items: center; gap: 10px;
  color: #fff;
}
.g-hero-img-badge i { color: var(--g-orange); font-size: 20px; }
.g-hero-img-badge strong { display: block; font-size: 15px; font-weight: 700; }
.g-hero-img-badge span { font-size: 12px; color: rgba(255,255,255,.6); }

/* ============================================
   SEKTION: VERTRAUEN (LOGOS)
   ============================================ */
.g-trust {
  background: var(--g-bg);
  padding: 48px 0;
  border-bottom: 1px solid var(--g-border);
}
.g-trust-label {
  text-align: center;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--g-muted);
  margin-bottom: 28px;
}
.g-trust-logos {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
}
.g-trust-logo {
  display: flex; align-items: center; gap: 9px;
  font-family: var(--font-head);
  font-size: 17px; font-weight: 700;
  color: var(--g-muted);
  opacity: .5;
  transition: opacity var(--g-trans);
}
.g-trust-logo:hover { opacity: 1; color: var(--g-navy); }
.g-trust-logo i { font-size: 20px; color: var(--g-orange); }

/* ============================================
   SEKTION: KI ERKLÄRT
   ============================================ */
.g-erklaert { padding: 96px 0; }
.g-erklaert-img {
  border-radius: var(--g-radius-lg);
  overflow: hidden;
  box-shadow: var(--g-shadow-lg);
  position: relative;
}
.g-erklaert-img img { width: 100%; aspect-ratio: 4/3; object-fit: cover; }
.g-erklaert-badge {
  position: absolute;
  top: 20px; right: 20px;
  background: var(--g-orange);
  color: #fff;
  border-radius: 10px;
  padding: 10px 14px;
  font-size: 13px; font-weight: 700;
  text-align: center;
  line-height: 1.3;
}
.g-check-list { list-style: none; padding: 0; margin: 24px 0 0; }
.g-check-list li {
  display: flex; gap: 12px; align-items: flex-start;
  padding: 13px 0;
  border-bottom: 1px solid var(--g-border);
  font-size: 16px;
  color: var(--g-text);
}
.g-check-list li:last-child { border-bottom: none; }
.g-check-list li i { color: var(--g-orange); margin-top: 3px; flex-shrink: 0; font-size: 16px; }

/* ============================================
   SEKTION: FEATURES (WARUM GUANTARA)
   ============================================ */
.g-features { padding: 96px 0; background: var(--g-navy); }
.g-feature-card {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--g-radius-lg);
  padding: 32px 28px;
  height: 100%;
  transition: background var(--g-trans), transform var(--g-trans);
}
.g-feature-card:hover {
  background: rgba(249,115,22,.1);
  border-color: rgba(249,115,22,.25);
  transform: translateY(-5px);
}
.g-feature-icon {
  width: 52px; height: 52px;
  background: rgba(249,115,22,.15);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 22px;
  color: var(--g-orange);
  margin-bottom: 18px;
}
.g-feature-card h4 {
  font-family: var(--font-head);
  font-size: 19px; font-weight: 700;
  color: #fff; margin-bottom: 10px;
}
.g-feature-card p { font-size: 15px; color: rgba(255,255,255,.6); line-height: 1.65; }

/* ============================================
   SEKTION: THEMENBEREICHE
   ============================================ */
.g-themen { padding: 96px 0; background: var(--g-bg); }
.g-thema-card {
  background: var(--g-white);
  border: 1px solid var(--g-border);
  border-radius: var(--g-radius-lg);
  overflow: hidden;
  transition: transform var(--g-trans), box-shadow var(--g-trans);
  height: 100%;
}
.g-thema-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--g-shadow-lg);
}
.g-thema-img { height: 190px; overflow: hidden; position: relative; }
.g-thema-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.g-thema-card:hover .g-thema-img img { transform: scale(1.06); }
.g-thema-cat {
  position: absolute; bottom: 12px; left: 12px;
  background: var(--g-orange); color: #fff;
  font-size: 11px; font-weight: 800; letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 4px 10px; border-radius: 20px;
}
.g-thema-body { padding: 22px 24px 26px; }
.g-thema-body h3 {
  font-family: var(--font-head);
  font-size: 19px; font-weight: 700;
  color: var(--g-navy); margin-bottom: 10px;
}
.g-thema-body p { font-size: 15px; color: var(--g-muted); line-height: 1.65; margin-bottom: 16px; }
.g-thema-footer {
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 14px; border-top: 1px solid var(--g-border);
  font-size: 13px; color: var(--g-muted);
}
.g-thema-footer i { margin-right: 4px; color: var(--g-orange); }

/* ============================================
   SEKTION: STATISTIKEN
   ============================================ */
.g-stats { padding: 80px 0; background: var(--g-orange); }
.g-stat-item { text-align: center; }
.g-stat-num {
  font-family: var(--font-head);
  font-size: 52px; font-weight: 900;
  color: #fff; line-height: 1;
  margin-bottom: 8px;
}
.g-stat-num .g-unit { font-size: 36px; }
.g-stat-lbl { font-size: 16px; font-weight: 700; color: rgba(255,255,255,.85); margin-bottom: 4px; }
.g-stat-desc { font-size: 13px; color: rgba(255,255,255,.6); }
.g-stat-divider {
  width: 1px; background: rgba(255,255,255,.2);
  align-self: stretch; margin: 8px 0;
}

/* ============================================
   SEKTION: LERNPFADE
   ============================================ */
.g-lernpfade { padding: 96px 0; }
.g-kurs-card {
  background: var(--g-white);
  border: 1px solid var(--g-border);
  border-radius: var(--g-radius-lg);
  overflow: hidden;
  transition: transform var(--g-trans), box-shadow var(--g-trans);
  height: 100%;
  display: flex; flex-direction: column;
}
.g-kurs-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--g-shadow-lg);
}
.g-kurs-header {
  padding: 24px 26px 20px;
  border-bottom: 1px solid var(--g-border);
}
.g-kurs-level {
  display: inline-block;
  font-size: 11px; font-weight: 800;
  letter-spacing: 1.5px; text-transform: uppercase;
  padding: 4px 12px; border-radius: 20px;
  margin-bottom: 14px;
}
.level-start   { background: #dcfce7; color: #15803d; }
.level-mittel  { background: #dbeafe; color: #1d4ed8; }
.level-profi   { background: #fde8d8; color: #c2410c; }
.g-kurs-header h3 {
  font-family: var(--font-head);
  font-size: 18px; font-weight: 700;
  color: var(--g-navy); margin-bottom: 8px;
}
.g-kurs-header p { font-size: 14px; color: var(--g-muted); line-height: 1.6; }
.g-kurs-body { padding: 20px 26px 24px; flex: 1; }
.g-kurs-meta {
  display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 18px;
}
.g-kurs-meta span {
  display: flex; align-items: center; gap: 5px;
  font-size: 13px; color: var(--g-muted);
}
.g-kurs-meta i { color: var(--g-orange); }
.g-progress { height: 6px; background: var(--g-bg); border-radius: 3px; margin-bottom: 20px; overflow: hidden; }
.g-progress-bar { height: 100%; background: linear-gradient(90deg, var(--g-orange), #fb923c); border-radius: 3px; }
.g-tag {
  display: inline-block;
  font-size: 12px; font-weight: 600;
  color: var(--g-navy);
  background: var(--g-blue-lt);
  padding: 3px 10px; border-radius: 20px;
  margin: 0 4px 4px 0;
}

/* ============================================
   SEKTION: BLOG / AKTUELLES
   ============================================ */
.g-blog { padding: 96px 0; background: var(--g-bg); }
.g-blog-card {
  background: var(--g-white);
  border: 1px solid var(--g-border);
  border-radius: var(--g-radius-lg);
  overflow: hidden;
  transition: transform var(--g-trans), box-shadow var(--g-trans);
  height: 100%;
  display: flex; flex-direction: column;
}
.g-blog-card:hover { transform: translateY(-5px); box-shadow: var(--g-shadow-lg); }
.g-blog-img { height: 210px; overflow: hidden; position: relative; }
.g-blog-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s; }
.g-blog-card:hover .g-blog-img img { transform: scale(1.05); }
.g-blog-tag {
  position: absolute; top: 14px; left: 14px;
  background: var(--g-navy); color: #fff;
  font-size: 11px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase;
  padding: 4px 10px; border-radius: 20px;
}
.g-blog-body { padding: 22px 24px; flex: 1; display: flex; flex-direction: column; }
.g-blog-meta {
  display: flex; gap: 14px; margin-bottom: 12px;
}
.g-blog-meta span { font-size: 13px; color: var(--g-muted); display: flex; align-items: center; gap: 5px; }
.g-blog-meta i { color: var(--g-orange); }
.g-blog-body h3 {
  font-family: var(--font-head);
  font-size: 17px; font-weight: 700;
  color: var(--g-navy); margin-bottom: 10px; line-height: 1.4;
}
.g-blog-body p { font-size: 14px; color: var(--g-muted); line-height: 1.65; flex: 1; }
.g-blog-link {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 14px; font-weight: 700; color: var(--g-orange);
  margin-top: 16px; transition: gap var(--g-trans);
}
.g-blog-link:hover { gap: 10px; color: var(--g-orange); }

/* ============================================
   SEKTION: NEWSLETTER
   ============================================ */
.g-newsletter {
  padding: 96px 0;
  background: linear-gradient(135deg, var(--g-navy) 0%, var(--g-navy-mid) 100%);
  position: relative; overflow: hidden;
}
.g-newsletter::before {
  content: '';
  position: absolute;
  top: -100px; right: -100px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(249,115,22,.15) 0%, transparent 65%);
  pointer-events: none;
}
.g-newsletter-box {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--g-radius-lg);
  padding: 64px 56px;
  text-align: center;
  backdrop-filter: blur(8px);
  position: relative; z-index: 1;
}
.g-newsletter-box .g-title { color: #fff; }
.g-newsletter-box .g-label { background: rgba(249,115,22,.15); color: #ffb38a; }
.g-nl-form {
  display: flex; gap: 10px; max-width: 480px; margin: 0 auto 24px;
}
.g-nl-input {
  flex: 1;
  padding: 13px 18px;
  background: rgba(255,255,255,.08);
  border: 1.5px solid rgba(255,255,255,.15);
  border-radius: 8px;
  color: #fff;
  font-family: var(--font-body);
  font-size: 16px;
  outline: none;
  transition: border-color var(--g-trans);
}
.g-nl-input::placeholder { color: rgba(255,255,255,.4); }
.g-nl-input:focus { border-color: var(--g-orange); background: rgba(249,115,22,.06); }
.g-nl-perks {
  display: flex; gap: 28px; justify-content: center;
  flex-wrap: wrap;
}
.g-nl-perk {
  display: flex; align-items: center; gap: 7px;
  font-size: 14px; color: rgba(255,255,255,.65);
}
.g-nl-perk i { color: #6ee7b7; }

/* ============================================
   SEKTION: TEAM
   ============================================ */
.g-team { padding: 96px 0; }
.g-team-card {
  background: var(--g-white);
  border: 1px solid var(--g-border);
  border-radius: var(--g-radius-lg);
  overflow: hidden;
  transition: transform var(--g-trans), box-shadow var(--g-trans);
  text-align: center;
}
.g-team-card:hover { transform: translateY(-5px); box-shadow: var(--g-shadow-lg); }
.g-team-img { height: 210px; overflow: hidden; }
.g-team-img img { width: 100%; height: 100%; object-fit: cover; object-position: top; transition: transform .5s; }
.g-team-card:hover .g-team-img img { transform: scale(1.05); }
.g-team-body { padding: 20px 18px 24px; }
.g-team-body h4 {
  font-family: var(--font-head);
  font-size: 17px; font-weight: 700;
  color: var(--g-navy); margin-bottom: 4px;
}
.g-team-role { font-size: 13px; font-weight: 700; color: var(--g-orange); margin-bottom: 12px; letter-spacing: .5px; text-transform: uppercase; }
.g-team-body p { font-size: 13px; color: var(--g-muted); line-height: 1.65; margin-bottom: 16px; }
.g-team-socials { display: flex; gap: 8px; justify-content: center; }
.g-team-socials a {
  width: 32px; height: 32px;
  border: 1.5px solid var(--g-border);
  border-radius: 7px;
  display: flex; align-items: center; justify-content: center;
  font-size: 13px; color: var(--g-muted);
  transition: var(--g-trans);
}
.g-team-socials a:hover { border-color: var(--g-orange); color: var(--g-orange); background: var(--g-orange-dim); }

/* ============================================
   SEKTION: TESTIMONIALS
   ============================================ */
.g-testimonials { padding: 96px 0; background: var(--g-bg); }
.g-testi-card {
  background: var(--g-white);
  border: 1px solid var(--g-border);
  border-radius: var(--g-radius-lg);
  padding: 30px 28px;
  height: 100%;
}
.g-testi-stars { color: #fbbf24; margin-bottom: 14px; font-size: 15px; letter-spacing: 2px; }
.g-testi-text { font-size: 16px; color: var(--g-text); line-height: 1.7; margin-bottom: 22px; font-style: italic; }
.g-testi-author { display: flex; align-items: center; gap: 12px; }
.g-testi-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid var(--g-border);
  flex-shrink: 0;
}
.g-testi-avatar img { width: 100%; height: 100%; object-fit: cover; }
.g-testi-name { font-size: 14px; font-weight: 700; color: var(--g-navy); }
.g-testi-job  { font-size: 13px; color: var(--g-muted); }

/* ============================================
   FOOTER
   ============================================ */
.g-footer {
  background: var(--g-navy);
  padding: 72px 0 0;
  color: rgba(255,255,255,.7);
}
.g-footer-brand .g-logo { color: #fff; margin-bottom: 16px; }
.g-footer-brand .g-logo span { color: var(--g-orange); }
.g-footer-brand p { font-size: 15px; color: rgba(255,255,255,.55); line-height: 1.7; max-width: 280px; margin-bottom: 22px; }
.g-footer-social { display: flex; gap: 8px; }
.g-footer-social a {
  width: 36px; height: 36px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-size: 15px; color: rgba(255,255,255,.5);
  transition: var(--g-trans);
}
.g-footer-social a:hover { border-color: var(--g-orange); color: var(--g-orange); background: rgba(249,115,22,.1); }
.g-footer-col h5 {
  font-family: var(--font-head);
  font-size: 16px; font-weight: 700;
  color: #fff; margin-bottom: 18px;
}
.g-footer-col ul { list-style: none; padding: 0; margin: 0; }
.g-footer-col ul li { margin-bottom: 10px; }
.g-footer-col ul li a {
  font-size: 14px; color: rgba(255,255,255,.5);
  transition: color var(--g-trans);
  display: flex; align-items: center; gap: 6px;
}
.g-footer-col ul li a i { font-size: 10px; color: var(--g-orange); opacity: 0; transition: opacity var(--g-trans); }
.g-footer-col ul li a:hover { color: #fff; }
.g-footer-col ul li a:hover i { opacity: 1; }
.g-footer-contact { font-size: 14px; color: rgba(255,255,255,.5); margin-bottom: 12px; display: flex; gap: 10px; }
.g-footer-contact i { color: var(--g-orange); margin-top: 3px; width: 14px; flex-shrink: 0; }
.g-footer-contact a { color: rgba(255,255,255,.5); transition: color var(--g-trans); }
.g-footer-contact a:hover { color: #fff; }
.g-footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding: 22px 0;
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 10px;
}
.g-footer-bottom p { font-size: 14px; color: rgba(255,255,255,.4); margin: 0; }
.g-footer-bottom-links { display: flex; gap: 22px; }
.g-footer-bottom-links a { font-size: 14px; color: rgba(255,255,255,.4); transition: color var(--g-trans); }
.g-footer-bottom-links a:hover { color: #fff; }

/* ============================================
   COOKIE BANNER
   ============================================ */
.g-cookie {
  position: fixed;
  bottom: 24px; left: 50%; transform: translateX(-50%);
  width: calc(100% - 48px); max-width: 820px;
  background: var(--g-navy);
  border: 1px solid rgba(249,115,22,.3);
  border-radius: var(--g-radius-lg);
  padding: 22px 28px;
  z-index: 9999;
  box-shadow: 0 16px 60px rgba(0,0,0,.25);
  display: flex; align-items: center; gap: 18px; flex-wrap: wrap;
  animation: slideUp .4s ease forwards;
}
.g-cookie.hidden { display: none; }
.g-cookie-icon {
  width: 46px; height: 46px;
  background: rgba(249,115,22,.15);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  color: var(--g-orange); font-size: 22px; flex-shrink: 0;
}
.g-cookie-text { flex: 1; min-width: 200px; }
.g-cookie-text h5 { color: #fff; font-size: 15px; font-weight: 700; margin: 0 0 4px; }
.g-cookie-text p { font-size: 14px; color: rgba(255,255,255,.6); margin: 0; line-height: 1.5; }
.g-cookie-text a { color: var(--g-orange); text-decoration: underline; }
.g-cookie-btns { display: flex; gap: 8px; flex-wrap: wrap; }
.g-cookie-btn {
  padding: 9px 18px; border-radius: 7px;
  font-family: var(--font-body); font-size: 14px; font-weight: 700;
  cursor: pointer; border: none; transition: var(--g-trans);
}
.g-cookie-accept { background: var(--g-orange); color: #fff; }
.g-cookie-accept:hover { background: #ea6a07; }
.g-cookie-decline {
  background: rgba(255,255,255,.07);
  color: rgba(255,255,255,.65);
  border: 1px solid rgba(255,255,255,.12);
}
.g-cookie-decline:hover { background: rgba(255,255,255,.12); color: #fff; }

/* ============================================
   POPUP / MODAL
   ============================================ */
.g-overlay {
  position: fixed; inset: 0;
  background: rgba(15,33,80,.7);
  backdrop-filter: blur(6px);
  z-index: 9990;
  display: flex; align-items: center; justify-content: center;
  opacity: 0; pointer-events: none;
  transition: opacity .3s ease;
}
.g-overlay.show { opacity: 1; pointer-events: all; }
.g-popup {
  background: var(--g-white);
  border-radius: var(--g-radius-lg);
  padding: 52px 48px;
  max-width: 460px; width: 90%;
  text-align: center;
  transform: scale(.92) translateY(12px);
  transition: transform .3s ease;
  box-shadow: var(--g-shadow-lg);
}
.g-overlay.show .g-popup { transform: scale(1) translateY(0); }
.g-popup-check {
  width: 72px; height: 72px;
  background: #dcfce7;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 30px; color: #16a34a;
  margin: 0 auto 22px;
}
.g-popup h3 {
  font-family: var(--font-head);
  font-size: 24px; font-weight: 900;
  color: var(--g-navy); margin-bottom: 12px;
}
.g-popup p { font-size: 16px; color: var(--g-muted); line-height: 1.65; margin-bottom: 28px; }
.g-popup-close {
  background: var(--g-orange); color: #fff;
  border: none; padding: 13px 34px;
  border-radius: 8px; font-family: var(--font-body);
  font-size: 16px; font-weight: 700; cursor: pointer;
  transition: background var(--g-trans);
}
.g-popup-close:hover { background: #ea6a07; }

/* ============================================
   SEITEN-HERO (Unterseiten)
   ============================================ */
.g-page-hero {
  background: var(--g-bg);
  border-bottom: 1px solid var(--g-border);
  padding: 64px 0 52px;
}
.g-breadcrumb {
  display: flex; align-items: center; gap: 8px;
  font-size: 14px; color: var(--g-muted); margin-bottom: 14px;
}
.g-breadcrumb a { color: var(--g-muted); transition: color var(--g-trans); }
.g-breadcrumb a:hover { color: var(--g-orange); }
.g-breadcrumb i { font-size: 9px; }
.g-page-hero h1 {
  font-family: var(--font-head);
  font-size: clamp(30px, 4vw, 50px);
  font-weight: 900; color: var(--g-navy);
  margin-bottom: 12px;
}
.g-page-hero p { font-size: 18px; color: var(--g-muted); max-width: 560px; }

/* ============================================
   KONTAKT SEITE
   ============================================ */
.g-contact-section { padding: 80px 0; }
.g-contact-info-card {
  display: flex; gap: 16px; align-items: flex-start;
  background: var(--g-white);
  border: 1px solid var(--g-border);
  border-radius: var(--g-radius);
  padding: 20px 22px;
  margin-bottom: 16px;
  transition: border-color var(--g-trans), box-shadow var(--g-trans);
}
.g-contact-info-card:hover { border-color: var(--g-orange); box-shadow: var(--g-shadow-sm); }
.g-contact-info-icon {
  width: 44px; height: 44px;
  background: var(--g-orange-dim);
  border-radius: 11px;
  display: flex; align-items: center; justify-content: center;
  color: var(--g-orange); font-size: 18px; flex-shrink: 0;
}
.g-contact-info-text h5 { font-size: 14px; font-weight: 700; color: var(--g-navy); margin: 0 0 4px; }
.g-contact-info-text a, .g-contact-info-text p { font-size: 15px; color: var(--g-muted); margin: 0; transition: color var(--g-trans); }
.g-contact-info-text a:hover { color: var(--g-orange); }
.g-form-wrap {
  background: var(--g-white);
  border: 1px solid var(--g-border);
  border-radius: var(--g-radius-lg);
  padding: 40px 44px;
  box-shadow: var(--g-shadow);
}
.g-form-wrap h3 { font-family: var(--font-head); font-size: 22px; font-weight: 700; color: var(--g-navy); margin-bottom: 28px; }
.g-form-label { font-size: 14px; font-weight: 700; color: var(--g-text); margin-bottom: 7px; }
.g-form-control {
  width: 100%; padding: 12px 16px;
  background: var(--g-bg);
  border: 1.5px solid var(--g-border);
  border-radius: 8px;
  color: var(--g-text);
  font-family: var(--font-body);
  font-size: 16px;
  outline: none;
  transition: border-color var(--g-trans);
  appearance: none;
}
.g-form-control:focus { border-color: var(--g-orange); background: #fff; box-shadow: 0 0 0 3px rgba(249,115,22,.1); }
.g-form-control::placeholder { color: var(--g-muted); }
textarea.g-form-control { resize: vertical; min-height: 130px; }

/* ============================================
   POLICY SEITEN
   ============================================ */
.g-policy { padding: 80px 0; }
.g-policy-content { max-width: 820px; margin: 0 auto; }
.g-policy-intro {
  background: var(--g-orange-lt);
  border-left: 4px solid var(--g-orange);
  border-radius: 0 var(--g-radius) var(--g-radius) 0;
  padding: 18px 22px;
  font-size: 16px; color: var(--g-text);
  line-height: 1.7; margin-bottom: 48px;
}
.g-policy-block { margin-bottom: 40px; }
.g-policy-block h2 {
  font-family: var(--font-head);
  font-size: 22px; font-weight: 700;
  color: var(--g-navy); margin-bottom: 14px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--g-border);
}
.g-policy-block h3 { font-family: var(--font-head); font-size: 17px; font-weight: 700; color: var(--g-orange); margin: 18px 0 8px; }
.g-policy-block p { font-size: 16px; color: var(--g-muted); line-height: 1.8; margin-bottom: 12px; }
.g-policy-block ul { padding-left: 22px; margin-bottom: 12px; }
.g-policy-block ul li { font-size: 16px; color: var(--g-muted); line-height: 1.75; margin-bottom: 6px; }
.g-policy-block ul li::marker { color: var(--g-orange); }
.g-policy-block a { color: var(--g-orange); text-decoration: underline; }

/* ============================================
   ANIMATIONEN & UTILITIES
   ============================================ */
@keyframes slideUp {
  from { opacity: 0; transform: translate(-50%, 16px); }
  to   { opacity: 1; transform: translate(-50%, 0); }
}
.g-fade {
  opacity: 0; transform: translateY(24px);
  transition: opacity .55s ease, transform .55s ease;
}
.g-fade.visible { opacity: 1; transform: translateY(0); }
.text-orange { color: var(--g-orange) !important; }
.text-navy   { color: var(--g-navy)   !important; }
.bg-navy     { background: var(--g-navy) !important; }
.section-divider { height: 1px; background: var(--g-border); margin: 0; }

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 991px) {
  .g-nav-links, .g-nav-right .g-btn { display: none; }
  .g-toggler { display: flex; }
  .g-hero { min-height: auto; padding: 80px 0 60px; }
}
@media (max-width: 767px) {
  .g-newsletter-box { padding: 36px 24px; }
  .g-nl-form { flex-direction: column; }
  .g-form-wrap { padding: 28px 22px; }
  .g-footer-bottom { flex-direction: column; text-align: center; }
  .g-hero-stats { gap: 24px; }
}

/* ============================================
   MOBILE FIXES (≤ 575px)
   ============================================ */
@media (max-width: 575px) {

  /* --- Hero --- */
  .g-hero { padding: 64px 0 48px; }

  .g-hero h1 { font-size: 34px; line-height: 1.12; }

  .g-hero-lead { font-size: 16px; margin-bottom: 28px; }

  .g-hero-btns { gap: 10px; margin-bottom: 36px; }
  .g-hero-btns .g-btn { width: 100%; justify-content: center; padding: 13px 20px; }

  /* Статистика: 3 равные колонки в одну строку */
  .g-hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    padding-top: 24px;
    text-align: center;
  }
  .g-hero-stats > div {
    padding: 0 4px;
    border-right: 1px solid rgba(255,255,255,.1);
  }
  .g-hero-stats > div:last-child { border-right: none; }

  .g-hero-stat-num { font-size: 24px; }
  .g-hero-stat-lbl { font-size: 10px; letter-spacing: .5px; }

  /* --- Trust logos --- */
  .g-trust-logos { gap: 20px; }
  .g-trust-logo  { font-size: 14px; }

  /* --- Feature cards --- */
  .g-feature-card { padding: 22px 18px; }

  /* --- Thema cards grid: 1 col --- */
  .g-thema-img  { height: 160px; }

  /* --- Statistiken: 2×2 --- */
  .g-stat-num  { font-size: 38px; }
  .g-stat-num .g-unit { font-size: 26px; }

  /* --- Kurs cards --- */
  .g-kurs-header, .g-kurs-body { padding-left: 18px; padding-right: 18px; }

  /* --- Blog cards --- */
  .g-blog-img { height: 170px; }

  /* --- Team cards: 1 col --- */
  .g-team-img { height: 200px; }

  /* --- Testimonials --- */
  .g-testi-text { font-size: 15px; }

  /* --- Newsletter box --- */
  .g-newsletter-box { padding: 32px 18px; }
  .g-newsletter-box .g-title { font-size: 26px; }
  .g-nl-perks { gap: 14px; }

  /* --- Page hero (Unterseiten) --- */
  .g-page-hero { padding: 44px 0 36px; }
  .g-page-hero h1 { font-size: 28px; }
  .g-page-hero p  { font-size: 16px; }

  /* --- Contact form --- */
  .g-form-wrap { padding: 24px 18px; }

  /* --- Footer --- */
  .g-footer { padding: 48px 0 0; }
  .g-footer-bottom-links { gap: 14px; flex-wrap: wrap; justify-content: center; }

  /* --- Cookie banner --- */
  .g-cookie { flex-direction: column; align-items: flex-start; padding: 18px 18px; bottom: 0; border-radius: 16px 16px 0 0; width: 100%; left: 0; transform: none; }
  @keyframes slideUp {
    from { opacity: 0; transform: translateY(20px); }
    to   { opacity: 1; transform: translateY(0); }
  }
  .g-cookie-btns { width: 100%; }
  .g-cookie-btn  { flex: 1; text-align: center; }

  /* --- Popup --- */
  .g-popup { padding: 36px 24px; }
  .g-popup h3 { font-size: 20px; }
}

/* Tablet 576–767px */
@media (min-width: 576px) and (max-width: 767px) {
  .g-hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    text-align: center;
  }
  .g-hero-stats > div {
    padding: 0 8px;
    border-right: 1px solid rgba(255,255,255,.1);
  }
  .g-hero-stats > div:last-child { border-right: none; }
  .g-hero-stat-num { font-size: 28px; }

  .g-hero-btns .g-btn { flex: 1 1 calc(50% - 7px); justify-content: center; }
}
