/* ════════════════════════════════════════════
   style-about.css – MyStudy "Über uns"
   Setzt style-main.css voraus
   ════════════════════════════════════════════ */

/* ─── NAVBAR aktiver Link ─── */
.nav-active {
  background: rgba(117, 208, 43, 0.1) !important;
  color: var(--g3) !important;
}

/* ─── ABOUT HERO ─── */
#about-hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: var(--nav-h);
  position: relative;
  overflow: hidden;
  background: var(--bg);
}

.ah-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}
.ah-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  opacity: 0.28;
}
.ah-blob-1 {
  width: clamp(300px, 55vw, 700px);
  height: clamp(300px, 55vw, 700px);
  background: radial-gradient(var(--g1), transparent);
  top: -10%;
  left: -5%;
}
.ah-blob-2 {
  width: clamp(200px, 35vw, 480px);
  height: clamp(200px, 35vw, 480px);
  background: radial-gradient(var(--g2), transparent);
  bottom: -8%;
  right: -3%;
  opacity: 0.16;
}
.ah-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(76, 169, 17, 0.1) 1px, transparent 1px);
  background-size: 32px 32px;
}

.ah-inner {
  position: relative;
  z-index: 1;
  max-width: 820px;
  padding: clamp(80px, 10vw, 120px) 0;
  text-align: center;
  margin: 0 auto;
}

.ah-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(117, 208, 43, 0.12);
  border: 1px solid rgba(117, 208, 43, 0.3);
  padding: 6px 16px;
  border-radius: var(--radius-btn);
  font-family: "Syne", sans-serif;
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.05em;
  color: var(--g4);
  margin-bottom: 24px;
}
.ah-badge-dot {
  width: 7px;
  height: 7px;
  background: var(--g2);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

.ah-title {
  font-family: "Syne", sans-serif;
  font-weight: 800;
  font-size: clamp(38px, 6vw, 72px);
  letter-spacing: -2.5px;
  line-height: 1;
  margin-bottom: 22px;
  animation: fadeUp 0.55s 0.08s both;
}
.ah-title .hl {
  color: var(--g3);
  position: relative;
  display: inline-block;
}
.ah-title .hl::after {
  content: "";
  position: absolute;
  bottom: 2px;
  left: 0;
  right: 0;
  height: 5px;
  background: var(--g1);
  border-radius: 3px;
  z-index: -1;
  opacity: 0.65;
}

.ah-desc {
  font-size: clamp(15px, 2vw, 18px);
  color: var(--muted);
  line-height: 1.75;
  font-weight: 300;
  max-width: 640px;
  margin: 0 auto 52px;
  animation: fadeUp 0.55s 0.16s both;
}

/* ─── Pillars ─── */
.ah-pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  animation: fadeUp 0.55s 0.24s both;
}
.ah-pillar {
  background: var(--white);
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: var(--radius-card);
  padding: clamp(22px, 3vw, 32px) clamp(18px, 2.5vw, 28px);
  text-align: left;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}
.ah-pillar::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--g1), var(--g2));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
}
.ah-pillar:hover::before { transform: scaleX(1); }
.ah-pillar:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-hover);
  border-color: rgba(117, 208, 43, 0.18);
}
.ah-pillar-icon {
  width: 46px;
  height: 46px;
  background: linear-gradient(135deg, var(--g1), var(--g2));
  border-radius: 13px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin-bottom: 16px;
}
.ah-pillar-icon svg {
  width: 24px;
  height: 24px;
  stroke: #256800;
}
.ah-pillar-title {
  font-family: "Syne", sans-serif;
  font-weight: 700;
  font-size: 17px;
  margin-bottom: 8px;
}
.ah-pillar-desc {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.65;
}

/* ─── STORY ─── */
#about-story {
  background: var(--bg);
}
.story-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 7vw, 90px);
  align-items: center;
}

.story-facts {
  display: flex;
  gap: clamp(20px, 3vw, 36px);
  flex-wrap: wrap;
  margin-top: 36px;
  padding-top: 28px;
  border-top: 1px solid rgba(0, 0, 0, 0.07);
}
.story-fact-n {
  font-family: "Syne", sans-serif;
  font-weight: 800;
  font-size: 28px;
  color: var(--g3);
  line-height: 1;
}
.story-fact-l {
  font-size: 12px;
  color: var(--muted);
  margin-top: 4px;
  line-height: 1.4;
}

.story-quote-card {
  background: var(--ink);
  border-radius: var(--radius-card);
  padding: clamp(28px, 4vw, 44px);
  position: relative;
  overflow: hidden;
}
.story-quote-card::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--g1), var(--g2));
}
.story-quote-card::after {
  content: "\201D";
  position: absolute;
  bottom: clamp(12px, 3vw, 24px);
  right: clamp(16px, 3vw, 32px);
  font-family: "Syne", sans-serif;
  font-size: 80px;
  font-weight: 800;
  color: var(--g3);
  line-height: 0.8;
  opacity: 0.6;
  pointer-events: none;
}
.story-quote-mark {
  font-family: "Syne", sans-serif;
  font-size: 80px;
  font-weight: 800;
  color: var(--g3);
  line-height: 0.8;
  margin-bottom: 16px;
  opacity: 0.6;
}
.story-quote-card blockquote {
  font-size: clamp(15px, 2vw, 17px);
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.75;
  font-weight: 300;
  font-style: italic;
  margin-bottom: 28px;
  border: none;
  padding: 0;
}
.story-quote-author {
  display: flex;
  align-items: center;
  gap: 14px;
}
.story-quote-av {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--g1), var(--g2));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Syne", sans-serif;
  font-weight: 800;
  font-size: 14px;
  color: var(--g4);
  flex-shrink: 0;
}
.story-quote-name {
  font-family: "Syne", sans-serif;
  font-weight: 700;
  font-size: 14px;
  color: #fff;
}
.story-quote-role {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.4);
  margin-top: 2px;
}

/* ─── CTA SECTION ─── */
#about-cta {
  background: linear-gradient(135deg, var(--g3) 0%, var(--g4) 100%);
  padding: clamp(70px, 9vw, 100px) 0;
  position: relative;
  overflow: hidden;
}
#about-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 80% at 80% 50%, rgba(255,255,255,0.07), transparent);
}
#about-cta::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,0.07) 1px, transparent 1px);
  background-size: 28px 28px;
  pointer-events: none;
}
.about-cta-inner {
  position: relative;
  z-index: 1;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}
.about-cta-btns {
  display: flex;
  gap: 16px;
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 8px;
}
.about-cta-link {
  font-family: "Syne", sans-serif;
  font-weight: 700;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.8);
  transition: color var(--transition);
}
.about-cta-link:hover { color: #fff; }

/* ─── RESPONSIVE ─── */
@media (max-width: 900px) {
  .ah-pillars { grid-template-columns: 1fr; max-width: 420px; margin: 0 auto; }
  .story-inner { grid-template-columns: 1fr; }
}
@media (max-width: 1090px) {
  #about-hero { min-height: unset; align-items: flex-start; }
  .ah-inner { padding: 36px 0 28px; }
}
@media (max-width: 600px) {
  .ah-inner { text-align: left; }
  .ah-desc { margin-left: 0; margin-right: 0; }
}
