/* =========================================================
   GRUENDUNG.CSS
   Erweiterungen & Überschreibungen auf Basis von funnel.css
   Thema: Unternehmensgründung – Ein Ansprechpartner für alles
   Farbakzent: Tiefes Blaugrün / Teal-Smaragd statt Gold
   ========================================================= */

/* ─── GRÜNDUNG FARB-VARIABLEN ───────────────────────────── */
:root {
  --gr-accent:        #0f6b6b;   /* Tiefes Teal/Smaragd */
  --gr-accent-dark:   #094f4f;
  --gr-accent-light:  #2aacac;
  --gr-accent-xlight: #c0e8e8;
  --gr-gold:          #c8a96e;   /* Goldakzent für Highlights */
  --gr-gold-dark:     #a0813e;
  --gr-hero-from:     #030f1a;
  --gr-hero-mid:      #071e2e;
  --gr-hero-to:       #0a2a3a;

  --gr-surface-dark:  #061420;
  --gr-surface-mid:   #0d2535;
  --gr-glow:          rgba(15, 107, 107, 0.35);
  --gr-glow-gold:     rgba(200, 169, 110, 0.3);
}

.pakete__icon {
  color: #fff;
}

/* ─── HERO ──────────────────────────────────────────────── */
.gr-hero {
  background: linear-gradient(160deg, rgba(10,10,10,.82) 0%, rgba(18,18,18,.75) 45%, rgba(12,12,12,.80) 100%),
    url('../images/hero-sourceweb-bg.jpg') center center / cover no-repeat;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

/*.gr-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 55% 50% at 10% 40%, rgba(15, 107, 107, 0.28) 0%, transparent 65%),
    radial-gradient(ellipse 35% 40% at 88% 60%, rgba(200, 169, 110, 0.12) 0%, transparent 65%);
  pointer-events: none;
}*/

.gr-hero .hero__badge {
  background: rgba(15, 107, 107, 0.22);
  border: 1px solid rgba(42, 172, 172, 0.45);
  color: var(--gr-accent-light);
}

/* ─── HERO TEXT ─────────────────────────────────────────── */
.gr-hero .sw-hero__title,
.gr-hero .hero__headline {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.4rem, 5vw, 2.8rem);
  font-weight: 700;
  color: #ffffff;
  line-height: 1.15;
  margin-bottom: 1rem;
}

.gr-hero .sw-hero__title-accent,
.gr-hero .hero__headline--accent {
  color: var(--gr-accent-light);
}

.gr-hero .hero__headline--legal {
  display: block;
  font-size: clamp(1rem, 2vw, 1.3rem);
  font-weight: 400;
  color: rgba(255,255,255,0.72);
  font-style: italic;
  margin-top: 0.5rem;
  font-family: 'Inter', sans-serif;
}

.gr-hero .sw-hero__subtitle1,
.gr-hero .hero__sub {
  font-size: clamp(1.05rem, 2vw, 1.3rem);
  color: rgba(255, 255, 255, 0.85);
  font-weight: 500;
  margin-bottom: 0.6rem;
}

.gr-hero__body {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.75);
  max-width: 700px;
  line-height: 1.7;
  margin-bottom: 1rem;
}

.gr-hero .hero__cta-group,
.gr-hero .sw-hero__cta-group {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

/* CTA Buttons teal */
.gr-hero .btn--ghost-gold,
.btn--ghost-teal {
  background: var(--gr-accent);
  border-color: var(--gr-accent-light);
  color: #fff;
  transition: background 0.2s, box-shadow 0.2s;
}

.gr-hero .btn--ghost-gold:hover,
.btn--ghost-teal:hover {
  background: var(--gr-accent-dark);
  box-shadow: 0 4px 18px var(--gr-glow);
}

/* ─── SOFORT-BENEFITS ───────────────────────────────────── */
.gr-benefits .wf-benefit__icon {
  background: linear-gradient(135deg, var(--gr-accent) 0%, var(--gr-accent-light) 100%);
  color: #fff;
}

/* ─── PROBLEM / RISIKO SECTION ──────────────────────────── */
.gr-problem .problem__list {
  list-style: none;
  padding: 0;
  margin: 0 0 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.gr-problem .problem__list li {
  display: flex;
  align-items: flex-start;
  gap: 0.55rem;
  font-size: 0.87rem;
  color: var(--clr-text);
  line-height: 1.5;
}

.gr-problem .problem__list li::before {
  content: '→';
  color: var(--gr-accent);
  flex-shrink: 0;
  font-weight: 700;
  margin-top: 0.05em;
}

/* ─── "WARUM ICH" PILLARS ───────────────────────────────── */
.problem__why {
  background: linear-gradient(135deg, rgba(15,107,107,.08) 0%, rgba(200,169,110,.05) 100%);
  border: 1px solid rgba(15,107,107,.18);
  border-radius: 16px;
  padding: 2rem 2.5rem;
  margin-top: 2.5rem;
}

.problem__why-label {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gr-accent-light);
  margin-bottom: 0.8rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.problem__why-headline {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--clr-text);
  margin-bottom: 1.4rem;
  line-height: 1.55;
}

.problem__why-pillars {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.6rem;
}

.problem__why-pillar {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.35rem;
  background: #fff;
  border: 1.5px solid rgba(15,107,107,.18);
  border-radius: 10px;
  padding: 0.65rem 1.1rem;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--gr-accent);
  min-width: 72px;
  text-align: center;
  transition: border-color .2s, box-shadow .2s;
}

.problem__why-pillar i {
  font-size: 1.15rem;
  color: var(--gr-accent-light);
}

.problem__why-pillar--result {
  background: var(--gr-accent);
  border-color: var(--gr-accent-dark);
  color: #fff;
}

.problem__why-pillar--result i {
  color: var(--gr-accent-xlight);
}

.problem__why-connector {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--gr-accent-light);
  flex-shrink: 0;
}

/* Problem Conclusion box */
.problem__conclusion {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  background: rgba(15,107,107,.06);
  border-radius: 10px;
  padding: 1.2rem 1.5rem;
  margin-top: 2rem;
  font-size: 0.95rem;
  color: var(--clr-text);
  line-height: 1.6;
}

.problem__conclusion > i {
  color: var(--gr-accent);
  font-size: 1.3rem;
  flex-shrink: 0;
  margin-top: 2px;
}

.problem__conclusion-text strong {
  color: var(--gr-accent-dark);
}

/* ─── CTA INTERSTITIAL (teal) ────────────────────────────*/
.gr-cta-interstitial,
.cta-interstitial.gr-cta-interstitial {
  background: linear-gradient(100deg, var(--gr-accent-dark) 0%, var(--gr-accent) 100%);
}

.gr-cta-interstitial .btn--white {
  color: var(--gr-accent-dark);
}

.gr-cta-interstitial .btn--white:hover {
  background: var(--gr-accent-xlight);
  color: var(--gr-accent-dark);
}

/* ─── LEISTUNGEN GRID ───────────────────────────────────── */
.gr-leistungen__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.6rem;
  margin-top: 2.5rem;
}

.gr-leistung-card {
  background: var(--clr-surface);
  border: 1.5px solid rgba(15,107,107,.12);
  border-radius: 16px;
  padding: 2rem 1.8rem 1.5rem;
  transition: box-shadow 0.25s, transform 0.25s, border-color 0.25s;
  position: relative;
  display: flex;
  flex-direction: column;
}

.gr-leistung-card:hover {
  box-shadow: 0 8px 32px rgba(15,107,107,.13);
  transform: translateY(-3px);
  border-color: var(--gr-accent-light);
}

.gr-leistung-card--featured {
  border-color: var(--gr-accent);
  background: linear-gradient(145deg, #eef8f8 0%, #fff 100%);
  box-shadow: 0 4px 24px rgba(15,107,107,.12);
}

.gr-leistung-card__icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--gr-accent) 0%, var(--gr-accent-light) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.3rem;
  margin-bottom: 1.1rem;
  flex-shrink: 0;
}

.gr-leistung-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--clr-text);
  margin-bottom: 0.6rem;
}

.gr-leistung-card p {
  font-size: 0.88rem;
  color: var(--clr-text-muted);
  line-height: 1.6;
  margin-bottom: 1rem;
}

.gr-leistung-card__list {
  list-style: none;
  margin: 0 0 1.2rem;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  flex: 1;
}

.gr-leistung-card__list li {
  display: flex;
  align-items: flex-start;
  gap: 0.55rem;
  font-size: 0.84rem;
  color: var(--clr-text);
  line-height: 1.5;
}

.gr-leistung-card__list li i {
  color: var(--gr-accent);
  margin-top: 2px;
  flex-shrink: 0;
}

/* ─── LEISTUNGSKARTE TAG (unten, volle Breite) ─────────── */
.gr-leistung-card__tag {
  display: block;
  width: calc(100% + 3.6rem);
  margin: auto -1.8rem -1.5rem;
  background: var(--gr-accent);
  color: #fff;
  border-radius: 0 0 14px 14px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.45rem 1.2rem;
  text-align: center;
}

.gr-leistung-card--featured .gr-leistung-card__tag {
  background: var(--gr-accent-dark);
}

/* ─── VORTEILE ──────────────────────────────────────────── */
.gr-vorteil .vorteil__icon,
.gr-vorteil__icon--teal {
  background: linear-gradient(135deg, var(--gr-accent) 0%, var(--gr-accent-light) 100%) !important;
  color: #fff !important;
}

.gr-vorteil .vorteil__badge {
  background: rgba(15,107,107,.08);
  color: var(--gr-accent);
  border: 1px solid rgba(15,107,107,.2);
}

/* Vorteil Farbvarianten */
.vorteil__icon--blue   { background: linear-gradient(135deg, var(--gr-accent) 0%, var(--gr-accent-light) 100%); }
.vorteil__icon--teal   { background: linear-gradient(135deg, #1a6b77 0%, #2a9faf 100%); }
.vorteil__icon--orange { background: linear-gradient(135deg, #c07020 0%, #e09040 100%); }
.vorteil__icon--purple { background: linear-gradient(135deg, #5a3585 0%, #8b70c8 100%); }
.vorteil__icon--green  { background: linear-gradient(135deg, #1a7a3a 0%, #2eaa5a 100%); }
.vorteil__icon--gold   { background: linear-gradient(135deg, var(--gr-gold-dark) 0%, var(--gr-gold) 100%); }
.vorteil__icon--white  { background: rgba(255,255,255,.18); border: 1.5px solid rgba(255,255,255,.4); }

/* ─── PAKETE: teal Featured-Karte ───────────────────────── */
.gr-pakete .pakete__card--featured {
  background: linear-gradient(145deg, var(--gr-accent) 0%, var(--gr-accent-dark) 100%);
  border-color: var(--gr-accent-light);
}

.gr-pakete .pakete__card--featured .pakete__featured-label {
  background: var(--gr-gold-dark);
  color: #fff;
}

.gr-pakete .pakete__card--featured h3,
.gr-pakete .pakete__card--featured .pakete__for,
.gr-pakete .pakete__card--featured .pakete__price,
.gr-pakete .pakete__card--featured .pakete__features li {
  color: #fff;
}

.gr-pakete .pakete__card--featured .pakete__features li i {
  color: var(--gr-accent-xlight);
}

.gr-pakete .pakete__card--featured .btn--primary {
  background: #fff;
  color: var(--gr-accent-dark);
  border: none;
}

.gr-pakete .pakete__card--featured .btn--primary:hover {
  background: var(--gr-accent-xlight);
}

.gr-pakete .btn--pakete {
  border-color: var(--gr-accent);
  color: var(--gr-accent);
}

.gr-pakete .btn--pakete:hover {
  background: var(--gr-accent);
  color: #fff;
}

/* ─── TRUST SECTION ─────────────────────────────────────── */
.gr-trust .wf-trust-card {
  border-color: rgba(15,107,107,.2);
}

.gr-trust .wf-trust-half--sw {
  background: linear-gradient(145deg, rgba(15,107,107,.06) 0%, rgba(15,107,107,.02) 100%);
  border-right: none;
}

.gr-trust .wf-trust-half--pw {
  background: #fff;
}

.gr-trust .wf-trust-divider {
  background: linear-gradient(to bottom, transparent 5%, rgba(15,107,107,.25) 30%, rgba(15,107,107,.25) 70%, transparent 95%);
}

.gr-trust .wf-trust-cred-list li i {
  color: var(--gr-accent);
  background: rgba(15,107,107,.1);
}

.gr-trust .wf-trust-cred-list li i:hover {
  background: var(--gr-accent);
}

.gr-trust .wf-trust-links a {
  color: var(--gr-accent);
  border-color: rgba(15,107,107,.2);
}

/* ─── SECTION-LABEL teal ─────────────────────────────────── */
.section-label {
  color: var(--gr-accent);
  border-color: rgba(15,107,107,.25);
  background: rgba(15,107,107,.07);
}

/* ─── ABLAUF ─────────────────────────────────────────────── */
.ablauf__step-num {
  background: linear-gradient(135deg, var(--gr-accent) 0%, var(--gr-accent-light) 100%);
}

/* ─── FORM: Focus-States teal ───────────────────────────── */
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--gr-accent-light);
  box-shadow: 0 0 0 3px rgba(15,107,107,.15);
  outline: none;
}

/* ─── KONTAKT BTN ────────────────────────────────────────── */
.gr-kontakt .btn--primary,
.kontakt .btn--primary {
  border-color: transparent;
}

.gr-kontakt .btn--primary:hover,
.kontakt .btn--primary:hover {
  box-shadow: 0 4px 18px var(--gr-glow);
}

/* ─── FOOTER teal ────────────────────────────────────────── */
.footer a:hover {
  color: var(--gr-accent-light);
}

/* ─── HEADLINE AKZENT ────────────────────────────────────── */
.gr-headline-accent {
  color: var(--gr-accent);
}

/* ─── KOSTENLOS-CHECK SECTION ────────────────────────────── */
.pg-gruendungscheck-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--gr-accent) 0%, var(--gr-accent-light) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.4rem;
  flex-shrink: 0;
}

.gr-check-btn {
  background: linear-gradient(135deg, var(--gr-accent) 0%, var(--gr-accent-light) 100%);
  border: none;
  color: #fff;
  width: 100%;
}

.gr-check-btn:hover {
  background: linear-gradient(135deg, var(--gr-accent-dark) 0%, var(--gr-accent) 100%);
  box-shadow: 0 4px 18px var(--gr-glow);
}

.gr-check-form-box {
  background: linear-gradient(145deg, #eef8f8 0%, #fff 100%);
  border: 1.5px solid rgba(15,107,107,.18);
  border-radius: 18px;
  padding: 2rem;
  box-shadow: 0 4px 24px rgba(15,107,107,.08);
}

.gr-check-form-box h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--gr-accent-dark);
  margin-bottom: 0.3rem;
}

.gr-check-form-box .form-group label {
  color: var(--gr-accent-dark);
  font-weight: 600;
}

/* ─── PRIVACY NOTE ───────────────────────────────────────── */
.pg-privacy-note {
  font-size: 0.78rem;
  color: var(--clr-text-muted);
  margin-top: 0.8rem;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.pg-privacy-note i {
  color: var(--gr-accent-light);
}

/* ─── SCROLL-ANIMATIONS ─────────────────────────────────── */
.fade-up {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

.fade-up.visible {
  opacity: 1;
  transform: none;
}

/* ─── RESPONSIVE ─────────────────────────────────────────── */
@media (max-width: 860px) {
  .gr-leistungen__grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 680px) {
  .gr-hero .sw-hero__title,
  .gr-hero .hero__headline { font-size: 2rem; }
  .gr-leistungen__grid { grid-template-columns: 1fr; }
  .problem__why-pillars { gap: 0.4rem; }
  .problem__why-pillar { min-width: 60px; padding: 0.5rem 0.75rem; }
}
