/* ============================================================
   TIPPGEBER – Stylesheet
   Aligned with main Gecko site style
   Font: Noto Sans Extra Condensed | Brand: #49a5a2
   ============================================================ */

:root {
  --tg-brand: #49a5a2;
  --tg-brand-dark: #2f7b79;
  --tg-ink: #1a1f24;
  --tg-ink-soft: #5a6370;
  --tg-line: rgba(0, 0, 0, 0.1);
  --tg-soft: #f7f8f9;
  --tg-radius: 14px;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}

body.tippgeber-page {
  background: #ffffff;
  color: var(--tg-ink);
  font-family: "Noto Sans Extra Condensed", "Segoe UI", Arial, sans-serif;
  line-height: 1.6;
  font-size: clamp(1rem, 0.95rem + 0.2vw, 1.05rem);
}

.tippgeber-page main {
  overflow: clip;
}

/* ============================================================
   LAYOUT
   ============================================================ */
.tg-wrap {
  width: min(1080px, 92vw);
  margin: 0 auto;
}

/* ============================================================
   TYPOGRAPHY
   ============================================================ */
.tg-eyebrow {
  margin: 0;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--tg-brand);
  font-size: 0.82rem;
  font-weight: 600;
}

.tg-head {
  max-width: 70ch;
  margin: 0 auto;
  text-align: center;
}

.tg-head--left {
  margin: 0;
  text-align: left;
}

.tg-head h2 {
  margin: 10px 0 0;
  font-size: clamp(1.9rem, 3.5vw, 2.8rem);
  line-height: 1.1;
  font-weight: 300;
  letter-spacing: -0.01em;
  color: var(--tg-ink);
  font-family: "Noto Sans Extra Condensed", sans-serif;
}

.tg-head p {
  margin: 14px 0 0;
  color: var(--tg-ink-soft);
  font-size: clamp(1rem, 1.3vw, 1.1rem);
  font-weight: 300;
}

/* ============================================================
   SECTIONS
   ============================================================ */
.tg-section {
  padding: clamp(72px, 10vw, 120px) 0;
}

.tg-section--soft {
  background: var(--tg-soft);
}

/* ============================================================
   HERO
   ============================================================ */
.tg-hero {
  position: relative;
  min-height: min(90vh, 820px);
  padding: clamp(140px, 18vw, 200px) 0 clamp(80px, 10vw, 120px);
  background: #0d1318;
  isolation: isolate;
  overflow: hidden;
}

.tg-hero__media {
  position: absolute;
  inset: 0;
  margin: 0;
  z-index: -2;
}

.tg-hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  transform: scale(1.04);
}

.tg-hero__overlay {
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(90deg,
      rgba(5, 10, 14, 0.80) 0%,
      rgba(5, 10, 14, 0.55) 45%,
      rgba(5, 10, 14, 0.10) 100%);
}

.tg-hero__content {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 20px;
  max-width: min(620px, 85vw);
  margin-left: clamp(20px, 8vw, 120px);
}

.tg-hero h1 {
  margin: 0;
  color: #ffffff;
  font-size: clamp(2.4rem, 5.5vw, 4rem);
  line-height: 1.06;
  font-weight: 300;
  letter-spacing: -0.015em;
  font-family: "Noto Sans Extra Condensed", sans-serif;
}

.tg-hero__lead {
  margin: 0;
  color: rgba(230, 238, 242, 0.92);
  font-size: clamp(1.03rem, 1.3vw, 1.14rem);
  font-weight: 300;
  max-width: 56ch;
}

.tg-hero__list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 8px;
}

.tg-hero__list li {
  color: rgba(220, 232, 238, 0.9);
  font-size: 1rem;
  font-weight: 300;
  padding-left: 22px;
  position: relative;
}

.tg-hero__list li::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--tg-brand);
  position: absolute;
  left: 2px;
  top: 9px;
}

.tg-hero__actions {
  margin-top: 6px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

/* ============================================================
   BUTTONS
   ============================================================ */
.tg-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 46px;
  padding: 10px 28px;
  border-radius: 999px;
  font-size: 0.98rem;
  font-weight: 400;
  font-family: "Noto Sans Extra Condensed", sans-serif;
  text-decoration: none;
  transition: transform 0.18s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.tg-btn:hover {
  transform: translateY(-2px);
}

.tg-btn--primary {
  background: var(--tg-brand);
  color: #ffffff;
  box-shadow: 0 8px 22px rgba(73, 165, 162, 0.32);
}

.tg-btn--primary:hover {
  background: var(--tg-brand-dark);
  box-shadow: 0 12px 28px rgba(73, 165, 162, 0.42);
}

.tg-btn--ghost {
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.35);
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(6px);
}

.tg-btn--ghost:hover {
  background: rgba(255, 255, 255, 0.16);
}

/* Arrow icon in buttons */
.tg-btn .btn-arrow {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}



/* ============================================================
   TIMELINE (Ablauf)
   ============================================================ */
.tg-timeline {
  margin: clamp(36px, 5vw, 56px) 0 0;
  padding: 0;
  list-style: none;
}

.tg-timeline li {
  display: grid;
  grid-template-columns: 56px minmax(0, 1fr);
  gap: 20px;
  padding: clamp(20px, 2.5vw, 28px) 0;
  border-bottom: 1px solid var(--tg-line);
  align-items: start;
}

.tg-timeline li:first-child {
  border-top: 1px solid var(--tg-line);
}

.tg-step-no {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(73, 165, 162, 0.12);
  border: 1px solid rgba(73, 165, 162, 0.3);
  color: var(--tg-brand-dark);
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  flex-shrink: 0;
}

.tg-timeline h3 {
  margin: 0;
  color: var(--tg-ink);
  font-size: clamp(1.15rem, 1.8vw, 1.4rem);
  font-weight: 400;
  font-family: "Noto Sans Extra Condensed", sans-serif;
}

.tg-timeline p {
  margin: 6px 0 0;
  color: var(--tg-ink-soft);
  font-size: clamp(0.96rem, 1.05vw, 1.02rem);
  font-weight: 300;
}

/* ============================================================
   CRITERIA (Kriterien)
   ============================================================ */
.tg-two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(28px, 4vw, 56px);
  align-items: start;
}

.tg-checks {
  display: grid;
  gap: 16px;
}

.tg-checkblock {
  padding: 22px 24px;
  border-radius: var(--tg-radius);
  background: #ffffff;
  border: 1px solid var(--tg-line);
}

.tg-checkblock--good {
  border-left: 3px solid var(--tg-brand);
}

.tg-checkblock--bad {
  border-left: 3px solid rgba(180, 35, 35, 0.5);
}

.tg-checkblock h3 {
  margin: 0;
  color: var(--tg-ink);
  font-size: clamp(1.1rem, 1.6vw, 1.28rem);
  font-weight: 500;
  font-family: "Noto Sans Extra Condensed", sans-serif;
}

.tg-checkblock ul {
  margin: 12px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 8px;
}

.tg-checkblock li {
  color: var(--tg-ink-soft);
  font-size: 0.98rem;
  font-weight: 300;
  padding-left: 20px;
  position: relative;
}

.tg-checkblock--good li::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--tg-brand);
  position: absolute;
  left: 0;
  top: 9px;
}

.tg-checkblock--bad li::before {
  content: "×";
  position: absolute;
  left: 0;
  top: 0;
  color: rgba(180, 35, 35, 0.7);
  font-size: 1rem;
  line-height: 1.5;
}

/* ============================================================
   PROVISION
   ============================================================ */
.tg-provision {
  margin-top: clamp(28px, 4vw, 44px);
}

.tg-formula {
  margin: 0;
  color: var(--tg-ink);
  font-size: clamp(1.05rem, 1.6vw, 1.22rem);
  font-weight: 400;
  padding: 16px 20px;
  background: rgba(73, 165, 162, 0.08);
  border-left: 3px solid var(--tg-brand);
  border-radius: 0 8px 8px 0;
}

.tg-example {
  margin-top: 20px;
  border: 1px solid var(--tg-line);
  border-radius: var(--tg-radius);
  overflow: hidden;
  max-width: 680px;
}

.tg-example__row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 12px;
  padding: 14px 20px;
  border-bottom: 1px solid var(--tg-line);
}

.tg-example__row:last-child {
  border-bottom: none;
}

.tg-example__row strong {
  color: var(--tg-ink);
  font-weight: 500;
}

.tg-example__row span {
  color: var(--tg-ink-soft);
  font-weight: 300;
}

.tg-example__row--highlight {
  background: rgba(73, 165, 162, 0.07);
}

.tg-example__row--highlight span,
.tg-example__row--highlight strong {
  color: var(--tg-brand-dark);
  font-weight: 600;
}

.tg-note {
  margin: 14px 0 0;
  color: var(--tg-ink-soft);
  font-size: 0.9rem;
  font-weight: 300;
}

/* ============================================================
   FAQ
   ============================================================ */
.tg-faq-wrap {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(28px, 4vw, 56px);
  align-items: start;
}

.tg-faq {
  border-top: 1px solid var(--tg-line);
}

.tg-faq__item {
  border-bottom: 1px solid var(--tg-line);
}

.tg-faq__item summary {
  cursor: pointer;
  list-style: none;
  padding: 16px 32px 16px 0;
  color: var(--tg-ink);
  font-size: clamp(1rem, 1.2vw, 1.1rem);
  font-weight: 400;
  position: relative;
  transition: color 0.2s ease;
}

.tg-faq__item summary::-webkit-details-marker {
  display: none;
}

.tg-faq__item summary::after {
  content: "+";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  color: var(--tg-brand);
  font-size: 1.3rem;
  line-height: 1;
  font-weight: 300;
  transition: transform 0.2s ease;
}

.tg-faq__item[open] summary::after {
  content: "−";
}

.tg-faq__item p {
  margin: 0 0 16px;
  color: var(--tg-ink-soft);
  font-size: 0.97rem;
  font-weight: 300;
  line-height: 1.65;
}

/* ============================================================
   CTA BANNER
   ============================================================ */
.tg-cta {
  padding: clamp(72px, 10vw, 120px) 0;
  background: var(--tg-ink);
  position: relative;
  overflow: hidden;
}

.tg-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 60% 50%, rgba(73, 165, 162, 0.18) 0%, transparent 65%);
  pointer-events: none;
}

.tg-cta__inner {
  text-align: center;
  position: relative;
  z-index: 1;
}

.tg-cta h2 {
  margin: 0;
  color: #ffffff;
  font-size: clamp(1.9rem, 3.2vw, 2.7rem);
  line-height: 1.1;
  font-weight: 300;
  font-family: "Noto Sans Extra Condensed", sans-serif;
}

.tg-cta p {
  margin: 14px auto 28px;
  max-width: 58ch;
  color: rgba(220, 232, 238, 0.82);
  font-size: clamp(1rem, 1.2vw, 1.08rem);
  font-weight: 300;
}

/* ============================================================
   CONTACT FORM
   ============================================================ */
.tg-contact {
  scroll-margin-top: 100px;
}

.tg-contact__grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(24px, 4vw, 54px);
  align-items: start;
}

.contact-form {
  border: 1px solid var(--tg-line);
  border-radius: var(--tg-radius);
  background: #ffffff;
  padding: clamp(20px, 2.8vw, 32px);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.06);
}

.contact-header h3 {
  margin: 0;
  color: var(--tg-ink);
  font-size: clamp(1.3rem, 2vw, 1.6rem);
  font-weight: 400;
  font-family: "Noto Sans Extra Condensed", sans-serif;
}

.contact-header p {
  margin: 8px 0 0;
  color: var(--tg-ink-soft);
  font-size: 0.93rem;
  font-weight: 300;
}

.grid {
  display: grid;
  gap: 12px;
}

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

.field {
  margin-top: 14px;
}

.field label {
  display: block;
  margin-bottom: 6px;
  color: var(--tg-ink);
  font-size: 0.88rem;
  font-weight: 500;
  letter-spacing: 0.02em;
}

.req {
  color: #c03636;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  border: 1px solid rgba(0, 0, 0, 0.15);
  border-radius: 10px;
  background: #fafafa;
  padding: 11px 14px;
  color: var(--tg-ink);
  font-size: 0.95rem;
  font-family: "Noto Sans Extra Condensed", sans-serif;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.field textarea {
  min-height: 130px;
  resize: vertical;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--tg-brand);
  box-shadow: 0 0 0 3px rgba(73, 165, 162, 0.15);
  background: #ffffff;
}

.field input.is-invalid,
.field select.is-invalid,
.field textarea.is-invalid {
  border-color: #c03636;
}

.checkbox-group {
  margin-top: 14px;
}

.checkbox {
  display: grid;
  grid-template-columns: 18px 1fr;
  align-items: start;
  gap: 10px;
}

.checkbox input {
  margin-top: 3px;
}

.label-text {
  color: var(--tg-ink-soft);
  font-size: 0.86rem;
  line-height: 1.55;
  font-weight: 300;
}

.label-text a,
.note a {
  color: var(--tg-brand-dark);
  text-decoration: underline;
}

.note {
  margin: 10px 0 0;
  color: var(--tg-ink-soft);
  font-size: 0.83rem;
  font-weight: 300;
}

.btn-primary {
  width: 100%;
  min-height: 48px;
  margin-top: 18px;
  border: 0;
  border-radius: 999px;
  background: var(--tg-brand);
  color: #ffffff;
  font-size: 1rem;
  font-weight: 500;
  font-family: "Noto Sans Extra Condensed", sans-serif;
  cursor: pointer;
  transition: transform 0.16s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.btn-primary:hover {
  transform: translateY(-2px);
  background: var(--tg-brand-dark);
  box-shadow: 0 10px 24px rgba(73, 165, 162, 0.3);
}

.btn-primary:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

.status {
  display: none;
  margin: 10px 0 0;
  font-size: 0.92rem;
}

.status.success {
  color: #0f766e;
}

.status.error {
  color: #b42318;
}

/* ============================================================
   REVEAL ANIMATIONS
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

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

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

.reveal-delay-2 {
  transition-delay: 0.2s;
}

.reveal-delay-3 {
  transition-delay: 0.3s;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 980px) {

  .tg-facts__grid,
  .tg-two-col,
  .tg-faq-wrap,
  .tg-contact__grid {
    grid-template-columns: 1fr;
  }

  .tg-facts__grid article {
    border-right: 0;
    border-bottom: 1px solid var(--tg-line);
  }

  .tg-facts__grid article:last-child {
    border-bottom: 0;
  }
}

@media (max-width: 720px) {
  .tg-hero {
    min-height: initial;
    padding-top: clamp(120px, 30vw, 160px);
  }

  .tg-hero__actions {
    flex-direction: column;
    align-items: flex-start;
  }

  .tg-btn {
    min-width: min(260px, 100%);
  }

  .tg-timeline li {
    grid-template-columns: 1fr;
    gap: 10px;
  }

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

@media (max-width: 460px) {
  .tg-section {
    padding: 60px 0;
  }

  .tg-cta {
    padding: 60px 0;
  }
}