/* Agentur-Branchen Landing-Pages — geteiltes Stylesheet
   Look identisch zur Hauptseite, aber als statisches HTML
   für maximale SEO-Crawlbarkeit + Performance. */

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

:root {
  --bg: #050a14;
  --bg2: #0a1222;
  --bg3: #06111f;
  --text: #f1f5f9;
  --text-2: #94a3b8;
  --text-3: #cbd5e1;
  --cyan: #22d3ee;
  --cyan-b: #67e8f9;
  --banana: #facc15;
  --font: 'Space Grotesk', system-ui, -apple-system, sans-serif;
}

html, body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  scroll-behavior: smooth;
}

body {
  background-image:
    radial-gradient(circle at 20% 10%, rgba(34,211,238,0.06) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(34,211,238,0.04) 0%, transparent 50%);
  background-attachment: fixed;
  min-height: 100vh;
}

a { color: var(--cyan-b); text-decoration: none; }
a:hover { text-decoration: underline; }

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

/* === HEADER === */
.aa-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(5,10,20,0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(34,211,238,0.15);
  padding: 12px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.aa-header img {
  height: 48px;
  width: auto;
}

.aa-header-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 20px;
  background: linear-gradient(135deg, #22d3ee, #06b6d4);
  color: #050a14;
  font-weight: 700;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  border-radius: 999px;
  white-space: nowrap;
  transition: transform 0.2s, box-shadow 0.2s;
  text-decoration: none;
}

.aa-header-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(34,211,238,0.4);
  text-decoration: none;
}

@media (max-width: 520px) {
  .aa-header { padding: 10px 14px; }
  .aa-header img { height: 40px; }
  .aa-header-cta { font-size: 11px; padding: 8px 14px; }
}

/* === HERO === */
.aa-hero {
  max-width: 920px;
  margin: 0 auto;
  padding: 80px 24px 60px;
  text-align: center;
  position: relative;
}

.aa-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 16px;
  background: rgba(34,211,238,0.08);
  border: 1px solid rgba(34,211,238,0.22);
  border-radius: 999px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--cyan);
  margin-bottom: 24px;
}

.aa-eyebrow::before {
  content: '';
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 10px rgba(34,211,238,0.6);
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 0.7; transform: scale(0.95); }
  50% { opacity: 1; transform: scale(1.1); }
}

.aa-hero h1 {
  font-size: clamp(36px, 7vw, 68px);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.03em;
  text-transform: uppercase;
  margin-bottom: 24px;
}

.aa-hero h1 .aa-mark {
  display: inline-block;
  color: var(--cyan);
  text-shadow: 0 0 28px rgba(34,211,238,0.55), 0 0 60px rgba(34,211,238,0.25);
  letter-spacing: -0.04em;
}

.aa-hero h1 .aa-mark-banana {
  color: var(--banana);
  text-shadow: 0 0 28px rgba(250,204,21,0.55), 0 0 60px rgba(250,204,21,0.25);
}

.aa-hero-sub {
  font-size: clamp(16px, 1.6vw, 20px);
  color: var(--text-3);
  max-width: 680px;
  margin: 0 auto 36px;
  line-height: 1.5;
}

.aa-hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 16px 32px;
  background: linear-gradient(135deg, #22d3ee, #06b6d4, #67e8f9);
  color: #050a14;
  font-weight: 700;
  font-size: 15px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border-radius: 999px;
  box-shadow: 0 0 0 1px rgba(34,211,238,0.45), 0 0 30px rgba(34,211,238,0.25), 0 12px 32px rgba(2,6,23,0.5);
  transition: transform 0.2s, box-shadow 0.2s;
  text-decoration: none;
}

.aa-hero-cta:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 0 0 1px rgba(34,211,238,0.65), 0 0 50px rgba(34,211,238,0.35), 0 18px 40px rgba(2,6,23,0.55);
  text-decoration: none;
}

/* === SECTION-WRAPPER === */
.aa-section {
  max-width: 980px;
  margin: 0 auto;
  padding: 60px 24px;
}

.aa-section-title {
  font-size: clamp(28px, 3.5vw, 42px);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
  line-height: 1.15;
}

.aa-section-title .aa-mark { color: var(--cyan); }

.aa-section-lead {
  font-size: clamp(15px, 1.3vw, 18px);
  color: var(--text-3);
  max-width: 720px;
  margin-bottom: 32px;
  line-height: 1.65;
}

/* === PAIN-LIST (Bullet-Cards) === */
.aa-pains {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 14px;
  margin-bottom: 16px;
}

.aa-pain {
  background: rgba(6,17,31,0.65);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 14px;
  padding: 22px;
  position: relative;
  transition: border-color 0.3s, transform 0.3s;
}

.aa-pain:hover { border-color: rgba(34,211,238,0.3); transform: translateY(-2px); }

.aa-pain-num {
  font-size: 12px;
  font-weight: 700;
  color: var(--cyan);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.aa-pain-num::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 8px rgba(34,211,238,0.7);
}

.aa-pain-title {
  font-size: 17px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 8px;
  line-height: 1.25;
}

.aa-pain-text {
  font-size: 14px;
  color: var(--text-2);
  line-height: 1.55;
}

/* === SOLUTION-STEPS === */
.aa-steps {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.aa-step {
  background: rgba(6,17,31,0.65);
  border: 1px solid rgba(34,211,238,0.15);
  border-radius: 16px;
  padding: 24px;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 20px;
  align-items: start;
}

.aa-step-num {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(34,211,238,0.2), rgba(34,211,238,0.05));
  border: 2px solid rgba(34,211,238,0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 800;
  color: var(--cyan);
  flex-shrink: 0;
}

.aa-step h3 {
  font-size: 19px;
  font-weight: 700;
  margin-bottom: 6px;
  color: var(--text);
}

.aa-step p {
  font-size: 14.5px;
  color: var(--text-2);
  line-height: 1.6;
}

/* === STATS-STRIP === */
.aa-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 14px;
  margin: 40px 0;
}

.aa-stat {
  background: rgba(6,17,31,0.65);
  border: 1px solid rgba(34,211,238,0.18);
  border-radius: 14px;
  padding: 24px 18px;
  text-align: center;
}

.aa-stat-value {
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 800;
  color: var(--cyan);
  text-shadow: 0 0 24px rgba(34,211,238,0.4);
  line-height: 1;
  margin-bottom: 8px;
  letter-spacing: -0.03em;
}

.aa-stat-label {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-2);
  font-weight: 600;
}

/* === FAQ === */
.aa-faq {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.aa-faq details {
  background: rgba(6,17,31,0.65);
  border: 1px solid rgba(34,211,238,0.15);
  border-radius: 12px;
  padding: 0;
  overflow: hidden;
  transition: border-color 0.3s;
}

.aa-faq details[open] { border-color: rgba(34,211,238,0.4); }

.aa-faq summary {
  padding: 18px 20px;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  list-style: none;
  color: var(--text);
}

.aa-faq summary::-webkit-details-marker { display: none; }

.aa-faq summary::after {
  content: '+';
  font-size: 22px;
  color: var(--cyan);
  flex-shrink: 0;
  transition: transform 0.3s;
}

.aa-faq details[open] summary::after { content: '−'; }

.aa-faq-answer {
  padding: 0 20px 18px;
  color: var(--text-2);
  font-size: 14.5px;
  line-height: 1.65;
}

/* === FINAL CTA === */
.aa-cta-box {
  margin: 80px auto 60px;
  max-width: 720px;
  padding: 48px 32px;
  text-align: center;
  background:
    radial-gradient(circle at 50% 0%, rgba(34,211,238,0.15) 0%, transparent 70%),
    linear-gradient(135deg, rgba(34,211,238,0.06) 0%, rgba(6,17,31,0.8) 100%);
  border: 1px solid rgba(34,211,238,0.3);
  border-radius: 24px;
  box-shadow: 0 20px 60px rgba(34,211,238,0.08);
}

.aa-cta-box h2 {
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 800;
  margin-bottom: 12px;
  line-height: 1.15;
}

.aa-cta-box p {
  color: var(--text-3);
  margin-bottom: 28px;
  font-size: 16px;
}

.aa-cta-box-trust {
  margin-top: 16px;
  font-size: 12px;
  color: var(--text-2);
  letter-spacing: 0.04em;
}

/* === RELATED-NAV (Cross-link zu anderen Branchen) === */
.aa-related {
  margin: 60px auto;
  max-width: 980px;
  padding: 0 24px;
}

.aa-related h3 {
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--text-2);
  margin-bottom: 18px;
  text-align: center;
}

.aa-related-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 10px;
}

.aa-related-link {
  display: block;
  padding: 14px 16px;
  background: rgba(6,17,31,0.5);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 10px;
  color: var(--text);
  font-size: 13px;
  font-weight: 600;
  text-align: center;
  transition: all 0.2s;
  text-decoration: none;
}

.aa-related-link:hover {
  border-color: rgba(34,211,238,0.4);
  background: rgba(34,211,238,0.08);
  color: var(--cyan-b);
  text-decoration: none;
}

/* === FOOTER === */
.aa-footer {
  border-top: 1px solid rgba(34,211,238,0.1);
  padding: 32px 24px 40px;
  text-align: center;
  color: var(--text-2);
  font-size: 13px;
}

.aa-footer a { color: var(--text-2); margin: 0 10px; }
.aa-footer a:hover { color: var(--cyan); text-decoration: none; }

.aa-footer-brand {
  margin-bottom: 12px;
  font-size: 14px;
}

.aa-footer-brand a {
  color: var(--cyan);
  font-weight: 700;
}

@media (max-width: 600px) {
  .aa-hero { padding: 60px 20px 40px; }
  .aa-section { padding: 40px 20px; }
  .aa-step { grid-template-columns: 1fr; gap: 12px; }
  .aa-step-num { width: 40px; height: 40px; font-size: 16px; }
  .aa-cta-box { padding: 32px 22px; margin: 50px auto 40px; }
}
