/* ===== PA Creations — Rebuild ===== */

@import url('https://fonts.googleapis.com/css2?family=Figtree:wght@400;500;600;700;800&family=Inter:wght@400;500;600;700;800&display=swap');

:root {
  --bg: #0a0a0a;
  --bg-soft: rgba(255, 255, 255, 0.05);
  --border: #222222;
  --text: #ffffff;
  --text-muted: #a0a0a0;
  --text-dim: #6b6b6b;
  --accent: #0a3d62;
  --accent-soft: rgba(10, 61, 98, 0.5);
  --accent-glow: rgba(10, 61, 97, 0.5);
  --radius-sm: 6px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --font-display: "Figtree", "Figtree Placeholder", sans-serif;
  --font-body: "Inter", "Inter Placeholder", sans-serif;
  --container: 1180px;
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }

a { color: inherit; text-decoration: none; }

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

.eyebrow {
  display: inline-block;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 12px;
}

h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.1;
}

.section {
  padding: 120px 0;
  position: relative;
}

.section-head {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 64px;
}

.section-head h2 {
  font-size: clamp(28px, 4vw, 42px);
  margin-bottom: 16px;
}

.section-head p {
  color: var(--text-muted);
  font-size: 17px;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 26px;
  border-radius: 100px;
  font-weight: 600;
  font-size: 15px;
  font-family: var(--font-body);
  white-space: nowrap;
  transition: transform 0.2s ease, opacity 0.2s ease;
  cursor: pointer;
  border: none;
}

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

.btn-primary {
  background: #ffffff;
  color: #0a0a0a;
}

.btn-center {
  display: flex;
  justify-content: center;
  margin-top: 40px;
}

/* ===== Header ===== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 18px 0;
  background: linear-gradient(rgba(10, 10, 10, 0.85), rgba(10, 10, 10, 0));
  backdrop-filter: blur(6px);
}

.header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.logo img { height: 48px; width: auto; }

.header nav {
  flex: 1;
  min-width: 0;
  display: flex;
  justify-content: center;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}

.nav-links a {
  font-size: 15px;
  color: var(--text);
  opacity: 0.9;
  transition: opacity 0.2s ease;
}

.nav-links a:hover { opacity: 1; }

.nav-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--text);
  font-size: 26px;
  cursor: pointer;
}

/* Badge pill (also used as mobile nav pill background) */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 18px 8px 10px;
  border-radius: 100px;
  background: linear-gradient(rgba(34, 34, 34, 0.5), var(--accent));
  border: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 14px;
  font-weight: 600;
}

.badge img { width: 18px; height: 18px; }

.section-head .badge,
.cta-box .badge {
  margin-bottom: 16px;
}

/* ===== Hero ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  padding: 140px 24px 80px;
}

.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.5);
  z-index: 0;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(rgba(10, 10, 10, 0.35) 0%, rgb(10, 10, 10) 100%);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero h1 {
  font-size: clamp(36px, 6vw, 68px);
  margin: 24px 0 20px;
}

.hero p.lead {
  font-size: clamp(16px, 2vw, 19px);
  color: var(--text-muted);
  max-width: 640px;
  margin-bottom: 40px;
}

.play-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--text);
}

.play-circles {
  position: relative;
  width: 80px;
  height: 80px;
}

.play-circle {
  position: absolute;
  top: 50%;
  left: 50%;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: width 0.25s ease, height 0.25s ease;
}

.circle-1 {
  width: 60%;
  height: 60%;
  background: #ffffff;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: center;
}

.circle-2 {
  width: 75%;
  height: 75%;
  background: rgba(255, 255, 255, 0.6);
  z-index: 2;
}

.circle-3 {
  width: 90%;
  height: 90%;
  background: rgba(255, 255, 255, 0.3);
  z-index: 1;
}

.play-btn:hover .circle-2 { width: 80%; height: 80%; }
.play-btn:hover .circle-3 { width: 100%; height: 100%; }

.circle-2, .circle-3 {
  animation: circle-breathe 3s ease-in-out infinite;
}

@keyframes circle-breathe {
  0%, 100% { transform: translate(-50%, -50%) scale(1); }
  50% { transform: translate(-50%, -50%) scale(1.05); }
}

.play-triangle {
  width: 0;
  height: 0;
  border-top: 12px solid transparent;
  border-bottom: 12px solid transparent;
  border-left: 20px solid #0a0a0a;
  margin-left: 3px;
}

.play-text {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
}

.play-title { font-weight: 700; font-size: 16px; color: var(--text); }
.play-duration { font-size: 13px; color: var(--text-muted); }

/* ===== Problems ===== */
.problems-section {
  position: relative;
  overflow: hidden;
}

.problems-section::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 700px;
  height: 400px;
  transform: translate(-50%, -50%);
  background: radial-gradient(ellipse closest-side, var(--accent-glow) 0%, rgba(10, 10, 10, 0) 100%);
  opacity: 0.5;
  z-index: -1;
  pointer-events: none;
  animation: problems-glow-pulse 4.5s ease-in-out infinite;
}

@keyframes problems-glow-pulse {
  0%, 100% { transform: translate(-50%, -50%) scale(1); }
  50% { transform: translate(-50%, -50%) scale(1.04); }
}

.problems-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.problem-card {
  border-radius: var(--radius-lg);
  padding: 36px 30px;
}

.problem-card-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 24px;
}

.problem-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 62px;
  height: 62px;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--border);
}

.problem-icon img {
  width: 32px;
  height: 32px;
  animation: problem-icon-loop 3s ease-in-out infinite;
}

@keyframes problem-icon-loop {
  0%, 100% { transform: scale(1) rotate(0deg); }
  50% { transform: scale(1.1) rotate(5deg); }
}

.problem-card .num {
  font-family: var(--font-display);
  font-size: 19px;
  font-weight: 700;
  color: var(--text);
}

.problem-card h3 {
  font-size: 23px;
  margin-bottom: 14px;
}

.problem-card p {
  color: var(--text-muted);
  font-size: 15px;
}

/* ===== Process (Vorgehensweise) ===== */
.process-list {
  position: relative;
  max-width: 820px;
  margin: 0 auto;
}

.process-list::before {
  content: "";
  position: absolute;
  left: 27px;
  top: 8px;
  bottom: 8px;
  width: 1px;
  background: linear-gradient(var(--bg) 0%, var(--accent) 15%, var(--accent) 85%, var(--bg) 100%);
  opacity: 0.6;
}

.process-line-fill {
  position: absolute;
  left: 26px;
  top: 8px;
  width: 3px;
  height: 0px;
  background: var(--accent);
  border-radius: 2px;
  box-shadow: 0 0 10px 2px rgba(10, 61, 98, 0.8), 0 0 20px 4px rgba(10, 61, 98, 0.5);
  z-index: 1;
}

.process-step {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 24px;
  padding: 28px 0;
  position: relative;
}

.process-step .num {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--bg);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 18px;
  color: var(--text);
  z-index: 1;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.process-step .num.line-reached {
  transform: scale(1.12);
  box-shadow: 0 0 14px 3px rgba(10, 61, 98, 0.7), 0 0 26px 6px rgba(10, 61, 98, 0.4);
}

.process-step .num svg,
.process-step .num img {
  width: 24px;
  height: 24px;
}

.process-step h3 {
  font-size: 19px;
  margin-bottom: 8px;
}

.process-step p {
  color: var(--text-muted);
  font-size: 15px;
}

/* ===== Team ===== */
.team-stack {
  display: flex;
  flex-direction: column;
  gap: 80px;
}

.team-row {
  display: flex;
  align-items: center;
  gap: 60px;
}

.team-row-reverse { flex-direction: row-reverse; }

.team-info {
  position: relative;
  overflow: hidden;
  flex: 1;
}

.team-info::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse closest-side, var(--accent-glow) 0%, rgba(10, 10, 10, 0) 100%);
  opacity: 0.5;
  z-index: -1;
  pointer-events: none;
  animation: team-glow-pulse 4.5s ease-in-out infinite;
}

@keyframes team-glow-pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.04); }
}

.team-photo {
  flex: 1;
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.team-photo img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  display: block;
}

@media (min-width: 901px) {
  .team-photo {
    animation: team-photo-float 6s ease-in-out infinite;
  }
  .team-row:nth-child(2) .team-photo { animation-delay: -2s; }
  .team-row:nth-child(3) .team-photo { animation-delay: -4s; }
}

@keyframes team-photo-float {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-12px) rotate(0.6deg); }
}

.team-info h3 { font-size: 30px; margin-bottom: 8px; }

.team-info .role {
  color: var(--text-muted);
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 16px;
}

.team-info p.bio {
  color: var(--text-muted);
  font-size: 16px;
  line-height: 1.65;
}

/* ===== FAQ ===== */
.faq-list {
  position: relative;
  max-width: 760px;
  margin: 0 auto;
  overflow: hidden;
}

.faq-list::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 837px;
  height: 300px;
  background: radial-gradient(ellipse at center, var(--accent-glow) 0%, rgba(10, 10, 10, 0.15) 55%, rgba(10, 10, 10, 0) 100%);
  transform: translate(-50%, -50%) rotate(-24.7deg);
  opacity: 0.3;
  pointer-events: none;
}

.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.05);
  margin-bottom: 10px;
  overflow: hidden;
}

.faq-item:last-child {
  margin-bottom: 0;
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 24px;
  background: none;
  border: none;
  color: var(--text);
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 16px;
  text-align: left;
  cursor: pointer;
}

.faq-question .icon {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text);
}

.faq-question .icon svg {
  width: 18px;
  height: 18px;
  transition: transform 0.3s ease;
}

.faq-item.open .icon svg { transform: rotate(180deg); }

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.faq-answer p {
  padding: 0 24px 22px;
  color: var(--text-muted);
  font-size: 15px;
}

/* ===== CTA box ===== */
.cta-box {
  position: relative;
  overflow: hidden;
  max-width: 900px;
  margin: 0 auto;
  background: linear-gradient(149deg, var(--accent) 0%, rgba(13, 13, 13, 0.8) 29%, rgba(13, 13, 13, 0.8) 74%, var(--accent) 100%);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  padding: 56px;
  text-align: center;
}

.cta-box::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 560px;
  height: 560px;
  background: url('../assets/icon-mark.png') no-repeat center / contain;
  transform: translate(-50%, -50%) rotate(15deg);
  opacity: 0.08;
  z-index: -1;
  pointer-events: none;
}

.cta-box h2 { font-size: clamp(24px, 3.5vw, 32px); margin-bottom: 40px; }
.cta-box .sub { color: var(--text-muted); margin-bottom: 40px; }

.cta-benefits {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  text-align: center;
  margin-bottom: 40px;
}

.benefit-icon {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background: rgba(10, 61, 98, 0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}

.benefit-icon-inner {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  animation: benefit-icon-pulse 2.8s ease-in-out infinite;
}

@keyframes benefit-icon-pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.0625); }
}

.benefit-icon-inner svg { width: 16px; height: 16px; }

.cta-benefits .benefit h3 { font-size: 18px; margin-bottom: 6px; }
.cta-benefits .benefit p { font-size: 14px; color: var(--text-muted); }

.cta-host {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  width: fit-content;
  margin: 0 auto 24px;
  background: rgba(255, 255, 255, 0.08);
  padding: 10px 22px 10px 10px;
  border-radius: var(--radius-lg);
}

.cta-host img {
  width: 38px; height: 38px; border-radius: 10px; object-fit: cover;
}

.cta-host .who { text-align: left; }
.cta-host .who .name { font-weight: 600; font-size: 14px; }
.cta-host .who .meta { font-size: 12.5px; color: var(--text-muted); }

/* ===== Footer ===== */
.footer {
  padding: 64px 0 32px;
}

.footer-top {
  position: relative;
  padding-bottom: 24px;
  margin-bottom: 40px;
}

.footer-top::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.4) 0%, rgba(255, 255, 255, 0.4) 14%, var(--accent) 34%, var(--accent) 100%);
}

.footer-logo { height: 44px; }

.footer-cols {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 24px;
  margin-bottom: 48px;
}

.footer-col-contact {
  flex: 1;
  min-width: 220px;
  padding-left: 24px;
  padding-right: 48px;
  border-left: 1px solid var(--border);
  border-right: 1px solid var(--border);
}

.footer-col-legal {
  flex: 1;
  min-width: 160px;
}

.footer-cols h4 {
  font-size: 20px;
  color: var(--text);
  margin-bottom: 16px;
}

.footer-cols a, .footer-cols p {
  display: block;
  font-size: 14.5px;
  color: var(--text-muted);
}

.footer-cols a:hover { color: var(--text); }
.footer-col-legal a { margin-bottom: 16px; }
.footer-col-legal a:last-child { margin-bottom: 0; }

.footer-row {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 16px;
}

.footer-row:last-child { margin-bottom: 0; }

.footer-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  border-radius: 8px;
  border: 1px solid var(--accent);
  background: rgba(10, 61, 98, 0.15);
  flex-shrink: 0;
}

.footer-icon img { width: 19px; height: 19px; }

.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 24px;
  font-size: 13px;
  color: var(--text-dim);
  text-align: center;
}

/* ===== Reveal-on-scroll ===== */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

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

/* ===== Video modal ===== */
.video-modal {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.9);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  padding: 24px;
}

.video-modal.open { display: flex; }

.video-modal .modal-inner {
  position: relative;
  width: 100%;
  max-width: 960px;
}

.video-modal video { width: 100%; border-radius: 12px; }

.video-modal .close-btn {
  position: absolute;
  top: -44px;
  right: 0;
  background: none;
  border: none;
  color: #fff;
  font-size: 28px;
  cursor: pointer;
}

/* ===== Impressum ===== */
.legal {
  padding: 160px 24px 100px;
  max-width: 760px;
  margin: 0 auto;
}

.legal h1 { font-size: 32px; margin-bottom: 32px; }
.legal h2 { font-size: 19px; margin: 32px 0 12px; }
.legal p { color: var(--text-muted); font-size: 15px; margin-bottom: 10px; }
.legal a { color: #fff; text-decoration: underline; }

/* ===== Cookie Banner ===== */
.cookie-banner {
  display: none;
  position: fixed;
  left: 24px;
  right: 24px;
  bottom: 24px;
  z-index: 2000;
  background: #0f0f0f;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 22px 26px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.45);
}

.cookie-banner.visible { display: block; }

.cookie-banner-inner {
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.cookie-banner p {
  flex: 1;
  min-width: 240px;
  margin: 0;
  color: var(--text-muted);
  font-size: 14px;
}

.cookie-banner a { color: var(--text); text-decoration: underline; }

.cookie-banner-actions {
  display: flex;
  gap: 12px;
  flex-shrink: 0;
}

.btn-secondary {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--border);
}

/* ===== Responsive ===== */
@media (max-width: 900px) {
  .problems-grid, .cta-benefits { grid-template-columns: 1fr; }
  .section { padding: 80px 0; }
  .cta-box { padding: 36px 24px; }
  .footer-col-contact { border-left: none; border-right: none; padding-left: 0; padding-right: 0; }
  .team-row, .team-row-reverse { flex-direction: column-reverse; }
  .team-stack { gap: 48px; }
  .team-photo { margin: 0 24px; }
  .problem-card {
    position: relative;
    overflow: hidden;
    isolation: isolate;
  }
  .problem-card::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 260px;
    height: 200px;
    transform: translate(-50%, -50%);
    background: radial-gradient(ellipse closest-side, var(--accent-glow) 0%, rgba(10, 10, 10, 0) 100%);
    opacity: 0.5;
    z-index: -1;
    pointer-events: none;
  }
  .problems-section::before {
    display: none;
  }
}

@media (max-width: 760px) {
  .nav-links {
    position: fixed;
    top: 76px;
    left: 16px;
    right: 16px;
    flex-direction: column;
    align-items: flex-start;
    background: #0f0f0f;
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 20px;
    transform: none;
    display: none;
    gap: 16px;
  }
  .nav-links.open { display: flex; }
  .nav-toggle { display: block; }
  .header .btn-primary { display: none; }
  .nav-links .btn-primary { display: inline-flex; margin-top: 8px; }
  .footer-cols { flex-direction: column; }
  .hero { min-height: auto; padding-top: 110px; }
  .hero h1 { font-size: 44px; }
  .cookie-banner { left: 12px; right: 12px; bottom: 12px; padding: 20px; }
  .cookie-banner-inner { flex-direction: column; align-items: stretch; }
  .cookie-banner-actions { justify-content: stretch; }
  .cookie-banner-actions .btn { flex: 1; }
}
