/* Augmentoring vertical landing pages — shared styles */

:root {
  --bg: #ffffff;
  --paper: #f8fafc;
  --dark: #0f172a;
  --dark2: #1e293b;
  --text: #1e293b;
  --muted: #64748b;
  --line: #e2e8f0;
  --accent: #f97316;
  --accent-hover: #ea580c;
  --accent-soft: #fff7ed;
  --green: #059669;
  --green-soft: #d1fae5;
  --red-soft: #fee2e2;
  --blue-soft: #dbeafe;
  --amber-soft: #fef3c7;
  --primary: #1e40af;
  --primary-glow: #3b82f6;
  --mono: 'JetBrains Mono', monospace;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', -apple-system, sans-serif;
  color: var(--text); background: var(--bg);
  line-height: 1.55; font-size: 16px;
  -webkit-font-smoothing: antialiased;
}

.container { max-width: 1100px; margin: 0 auto; padding: 0 2rem; }
.container-narrow { max-width: 800px; margin: 0 auto; padding: 0 2rem; }

/* NAV */
nav.site {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,255,255,0.85); backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--line);
  padding: 0.9rem 0;
}
nav.site .container { display: flex; justify-content: space-between; align-items: center; }
.logo { font-size: 1.3rem; font-weight: 800; color: var(--dark); text-decoration: none; display: flex; align-items: center; }
.logo-mark { width: 28px; height: 28px; border: 2px solid var(--dark); border-radius: 6px; position: relative; display: flex; align-items: center; justify-content: center; font-size: 0.8rem; margin-right: 8px; }
.logo-mark::after { content: ''; position: absolute; inset: 4px; border: 2px solid var(--accent); border-radius: 3px; opacity: 0.7; }
.logo span { color: var(--accent); }
nav.site .nav-links { display: flex; gap: 1.5rem; align-items: center; }
nav.site .nav-links a { text-decoration: none; color: var(--text); font-weight: 600; font-size: 0.9rem; }
nav.site .nav-links a:hover { color: var(--accent); }

/* Buttons */
.btn {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.75rem 1.6rem; border-radius: 10px;
  font-size: 0.95rem; font-weight: 600; text-decoration: none;
  transition: all 0.2s; border: none; cursor: pointer;
  font-family: inherit;
}
.btn-primary { background: var(--dark); color: #fff; }
.btn-primary:hover { background: var(--primary); transform: translateY(-1px); box-shadow: 0 8px 24px rgba(15,23,42,0.2); }
.btn-accent { background: var(--accent); color: #fff; }
.btn-accent:hover { background: var(--accent-hover); transform: translateY(-1px); box-shadow: 0 8px 24px rgba(249,115,22,0.3); }
.btn-lg { padding: 1.1rem 2.5rem; font-size: 1.05rem; }
.btn-outline { background: transparent; color: var(--dark); border: 2px solid var(--line); }
.btn-outline:hover { border-color: var(--accent); color: var(--accent); }

/* Featured CTA card (matches the main landing's style) */
.cta-card {
  display: inline-flex; flex-direction: column; align-items: stretch; gap: 0.4rem;
  background: var(--dark); padding: 0.65rem 0.65rem 0.5rem;
  border-radius: 14px;
  box-shadow: 0 12px 32px rgba(15,23,42,0.16);
}
.btn-cta {
  padding: 0.85rem 1.6rem; font-size: 0.92rem;
  text-transform: uppercase; letter-spacing: 0.05em;
  justify-content: center; gap: 0.55rem;
  box-shadow: 0 0 22px rgba(249,115,22,0.5), 0 5px 16px rgba(249,115,22,0.3);
}
.btn-cta svg { width: 17px; height: 17px; }
.btn-cta:hover { box-shadow: 0 0 30px rgba(249,115,22,0.65), 0 8px 22px rgba(249,115,22,0.4); }
.cta-card-note {
  text-align: center; color: rgba(255,255,255,0.78);
  font-size: 0.82rem; font-style: italic; font-weight: 500;
  margin: 0; padding: 0 0.5rem 0.15rem;
}

/* HERO */
.hero {
  background: var(--paper);
  padding: 5rem 0 4rem;
  position: relative; overflow: hidden;
}
.hero::before {
  content: ''; position: absolute; top: -10%; right: -5%;
  width: 600px; height: 600px; border-radius: 50%;
  background: radial-gradient(circle, rgba(249,115,22,0.08) 0%, transparent 70%);
  pointer-events: none;
}
.hero .container { position: relative; }
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.4rem 1rem; border-radius: 50px;
  background: var(--amber-soft); border: 1px solid rgba(249,115,22,0.2);
  font-size: 0.8rem; font-weight: 700; color: var(--accent-hover);
  margin-bottom: 1.4rem; text-transform: uppercase; letter-spacing: 0.05em;
}
.hero h1 {
  font-size: clamp(2.2rem, 5vw, 3.4rem); font-weight: 900;
  line-height: 1.1; letter-spacing: -0.02em;
  margin-bottom: 1.25rem; color: var(--dark);
}
.hero h1 span { color: var(--accent); }
.hero-sub {
  font-size: 1.2rem; color: var(--muted);
  max-width: 620px; margin-bottom: 2rem; line-height: 1.55;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 1.2rem; align-items: flex-start; margin-bottom: 2.5rem; }
.trust-pills { display: flex; gap: 1.5rem; flex-wrap: wrap; }
.pill { display: flex; align-items: center; gap: 0.5rem; font-size: 0.85rem; font-weight: 600; color: var(--muted); }
.pill::before { content: '✦'; color: var(--accent); }

/* Sections */
section { padding: 5rem 0; }
.sec-alt { background: var(--paper); }
.sec-dark { background: var(--dark); color: #fff; }
.sec-header { text-align: center; max-width: 760px; margin: 0 auto 3rem; }
.sec-label {
  display: inline-block; font-size: 0.78rem; font-weight: 800;
  text-transform: uppercase; letter-spacing: 0.15em; color: var(--accent);
  margin-bottom: 1rem;
}
.sec-title {
  font-size: clamp(1.8rem, 3.5vw, 2.5rem); font-weight: 900;
  letter-spacing: -0.02em; margin-bottom: 1.1rem;
}
.sec-sub { font-size: 1.1rem; color: var(--muted); }
.sec-dark .sec-sub { color: rgba(255,255,255,0.65); }

/* Pain-point grid */
.pain-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.pain-card {
  padding: 2rem; border-radius: 16px; background: #fff;
  border: 1px solid var(--line); transition: all 0.3s;
  position: relative; overflow: hidden;
}
.pain-card:hover { transform: translateY(-4px); box-shadow: 0 18px 36px rgba(0,0,0,0.06); }
.pain-card::after { content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 4px; background: var(--accent); }
.pain-icon { font-size: 1.8rem; margin-bottom: 1rem; display: block; }
.pain-card h3 { font-size: 1.15rem; font-weight: 800; margin-bottom: 0.5rem; }
.pain-card p { font-size: 0.95rem; color: var(--muted); line-height: 1.55; }

/* Use-case cards */
.use-cases { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
.use-case {
  padding: 2rem; border-radius: 16px; background: #fff;
  border: 1px solid var(--line);
}
.use-case-tag {
  display: inline-block; padding: 3px 10px; border-radius: 999px;
  background: var(--accent-soft); color: var(--accent-hover);
  font-size: 0.72rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.05em; margin-bottom: 0.85rem;
}
.use-case h3 { font-size: 1.2rem; font-weight: 800; margin-bottom: 0.5rem; color: var(--dark); }
.use-case p { font-size: 0.95rem; color: var(--muted); margin-bottom: 1rem; line-height: 1.55; }
.use-case ul { padding-left: 1.2rem; font-size: 0.9rem; color: var(--text); }
.use-case ul li { margin-bottom: 0.3rem; }
.use-case .savings {
  margin-top: 1rem; padding-top: 0.85rem; border-top: 1px solid var(--line);
  display: flex; align-items: baseline; gap: 6px;
  font-size: 0.85rem; color: var(--muted);
}
.use-case .savings strong { color: var(--green); font-size: 1rem; }

/* How it works (3 step) */
.how-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.how-step { text-align: center; padding: 0 0.5rem; }
.how-num {
  width: 60px; height: 60px; border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--accent-hover));
  color: #fff; font-size: 1.5rem; font-weight: 900;
  display: inline-flex; align-items: center; justify-content: center;
  margin-bottom: 1.2rem; box-shadow: 0 8px 22px rgba(249,115,22,0.3);
}
.how-step h3 { font-size: 1.2rem; margin-bottom: 0.6rem; color: var(--dark); }
.sec-dark .how-step h3 { color: #fff; }
.how-step p { color: var(--muted); font-size: 0.95rem; }
.sec-dark .how-step p { color: rgba(255,255,255,0.65); }

/* Tool integrations row */
.tools {
  display: flex; flex-wrap: wrap; gap: 1rem;
  justify-content: center; margin-top: 2rem;
}
.tool-chip {
  padding: 0.55rem 1rem; border-radius: 999px;
  background: #fff; border: 1px solid var(--line);
  font-size: 0.88rem; font-weight: 600; color: var(--text);
}

/* Pricing */
.pricing-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem;
  align-items: stretch;
}
.price-card {
  padding: 2rem 1.75rem; border-radius: 16px; background: #fff;
  border: 1.5px solid var(--line);
  display: flex; flex-direction: column;
}
.price-card.highlight {
  border-color: var(--accent);
  box-shadow: 0 18px 36px rgba(249,115,22,0.15);
  position: relative;
}
.price-card.highlight::before {
  content: 'AM BELIEBTESTEN'; position: absolute;
  top: -10px; left: 50%; transform: translateX(-50%);
  background: var(--accent); color: #fff;
  padding: 4px 12px; border-radius: 999px;
  font-size: 0.7rem; font-weight: 700; letter-spacing: 0.05em;
}
.price-card h3 { font-size: 1.2rem; font-weight: 800; margin-bottom: 0.4rem; }
.price-card .price-amount {
  font-size: 2rem; font-weight: 900; color: var(--dark);
  margin: 0.6rem 0 0.2rem;
}
.price-card .price-amount small { font-size: 0.85rem; font-weight: 600; color: var(--muted); }
.price-card .price-desc { font-size: 0.9rem; color: var(--muted); margin-bottom: 1.2rem; }
.price-card ul { list-style: none; padding: 0; margin-bottom: 1.5rem; flex-grow: 1; }
.price-card li {
  font-size: 0.92rem; padding: 0.45rem 0;
  border-bottom: 1px solid var(--line);
  display: flex; align-items: flex-start; gap: 0.5rem;
}
.price-card li:last-child { border-bottom: none; }
.price-card li::before { content: '✓'; color: var(--green); font-weight: 700; flex-shrink: 0; }
.price-card .btn { justify-content: center; }

/* Förderung callout */
.foerder {
  background: linear-gradient(135deg, #fff7ed, #ffedd5);
  border: 2px solid var(--accent); border-radius: 20px;
  padding: 2.5rem; text-align: center;
  max-width: 760px; margin: 0 auto;
}
.foerder-badge {
  font-family: var(--mono); font-size: 0.85rem; font-weight: 700;
  color: var(--accent); margin-bottom: 0.5rem;
}
.foerder h2 {
  font-size: clamp(2rem, 4vw, 2.8rem); font-weight: 900;
  line-height: 1; margin: 0.6rem 0; color: var(--dark);
}
.foerder p { font-size: 1.05rem; margin-bottom: 1.2rem; color: var(--text); }
.foerder p:last-child { margin-bottom: 0; }
.foerder-warn {
  display: inline-block;
  background: #fff; padding: 0.7rem 1.2rem; border-radius: 10px;
  border: 2px solid #ef4444; color: #ef4444;
  font-size: 0.95rem; font-weight: 800; margin: 0.8rem 0;
}

/* FAQ */
.faq-list { max-width: 800px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--line); padding: 1.4rem 0; }
.faq-q {
  font-size: 1.05rem; font-weight: 800; margin-bottom: 0.6rem;
  color: var(--dark); cursor: pointer; display: flex; justify-content: space-between;
}
.faq-q::after { content: '+'; color: var(--accent); font-size: 1.4rem; line-height: 1; }
.faq-a { font-size: 0.98rem; color: var(--muted); line-height: 1.6; }

/* Final CTA */
section.final-cta { background: var(--dark); color: #fff; text-align: center; }
section.final-cta h2 {
  font-size: clamp(2rem, 4vw, 3rem); font-weight: 900;
  margin-bottom: 1.25rem;
}
section.final-cta h2 span { color: var(--accent); }
section.final-cta p {
  font-size: 1.15rem; opacity: 0.8; margin-bottom: 2.5rem;
  max-width: 600px; margin-left: auto; margin-right: auto;
}

/* Branchen overview cards */
.branchen-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem; margin-top: 3rem;
}
.branche-card {
  display: flex; flex-direction: column;
  padding: 2rem; border-radius: 16px; background: #fff;
  border: 1px solid var(--line);
  text-decoration: none; color: var(--text);
  transition: all 0.3s;
}
.branche-card:hover {
  transform: translateY(-4px); border-color: var(--accent);
  box-shadow: 0 20px 40px rgba(249,115,22,0.1);
}
.branche-card .branche-icon { font-size: 2rem; margin-bottom: 0.85rem; }
.branche-card h3 { font-size: 1.2rem; font-weight: 800; margin-bottom: 0.5rem; color: var(--dark); }
.branche-card p { font-size: 0.92rem; color: var(--muted); flex-grow: 1; }
.branche-card .arrow {
  margin-top: 1rem; color: var(--accent); font-weight: 700; font-size: 0.9rem;
}

/* Footer */
footer.site {
  background: var(--dark); color: rgba(255,255,255,0.5);
  padding: 3rem 0 1.5rem;
}
footer.site .footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr;
  gap: 3rem; margin-bottom: 2rem;
}
footer.site .footer-logo {
  color: #fff; font-size: 1.4rem; font-weight: 800; margin-bottom: 0.85rem;
  display: flex; align-items: center;
}
footer.site h4 { color: #fff; margin-bottom: 0.85rem; font-size: 0.95rem; }
footer.site ul { list-style: none; line-height: 2; }
footer.site ul a { color: rgba(255,255,255,0.5); text-decoration: none; }
footer.site ul a:hover { color: #fff; }
footer.site .footer-copy {
  border-top: 1px solid rgba(255,255,255,0.1); padding-top: 1.5rem;
  text-align: center; font-size: 0.85rem;
}

/* Responsive */
@media (max-width: 900px) {
  .pain-grid, .use-cases, .how-grid, .pricing-grid { grid-template-columns: 1fr; }
  footer.site .footer-grid { grid-template-columns: 1fr; gap: 1.75rem; }
  section { padding: 3.5rem 0; }
  .hero { padding: 3.5rem 0 3rem; }
  .sec-header { margin-bottom: 2.25rem; }
  nav.site .nav-links a:not(.btn) { display: none; }
  .container, .container-narrow { padding: 0 1.25rem; }
}

@media (max-width: 500px) {
  .hero h1 { font-size: 1.85rem; }
  .hero-sub { font-size: 1rem; }
  .foerder { padding: 1.75rem 1.25rem; }
  .pain-card, .use-case, .price-card { padding: 1.5rem; }
}

/* ── Additive enhancements (do not override existing selectors) ── */

/* Second hero ornament for visual depth */
.hero::after {
  content: ''; position: absolute; bottom: -30%; left: -10%;
  width: 520px; height: 520px; border-radius: 50%;
  background: radial-gradient(circle, rgba(15,23,42,0.05) 0%, transparent 70%);
  pointer-events: none; z-index: 0;
}

/* Workflow before/after blocks for use-case cards (optional) */
.workflow {
  display: grid; grid-template-columns: 1fr auto 1fr;
  gap: 0.6rem; align-items: stretch;
  margin: 0.75rem 0 1rem;
  font-family: var(--mono);
  font-size: 0.78rem;
}
.workflow .step {
  padding: 0.55rem 0.7rem; border-radius: 8px;
  background: var(--paper); border: 1px solid var(--line);
  color: var(--muted); line-height: 1.35;
}
.workflow .step.before { background: #fef2f2; border-color: #fecaca; color: #991b1b; }
.workflow .step.after { background: #ecfdf5; border-color: #a7f3d0; color: #065f46; }
.workflow .arrow { display: flex; align-items: center; color: var(--accent); font-weight: 700; font-size: 1rem; }
@media (max-width: 600px) {
  .workflow { grid-template-columns: 1fr; }
  .workflow .arrow { transform: rotate(90deg); justify-content: center; }
}

/* ROI table (alternative to pricing-grid where appropriate) */
.roi-table {
  width: 100%; max-width: 760px; margin: 0 auto;
  border-collapse: separate; border-spacing: 0;
  border: 1px solid var(--line); border-radius: 16px; overflow: hidden;
  background: #fff; font-size: 0.95rem;
}
.roi-table th, .roi-table td {
  padding: 0.95rem 1.1rem; text-align: left;
  border-bottom: 1px solid var(--line);
}
.roi-table th {
  background: var(--paper); font-weight: 700;
  color: var(--dark); font-size: 0.85rem;
  text-transform: uppercase; letter-spacing: 0.04em;
}
.roi-table tr:last-child td { border-bottom: none; }
.roi-table td.num { font-family: var(--mono); font-weight: 700; color: var(--accent); text-align: right; }
.roi-table tr.total td {
  background: var(--accent-soft); font-weight: 800; color: var(--dark);
  border-top: 2px solid var(--accent);
}
@media (max-width: 600px) {
  .roi-table th, .roi-table td { padding: 0.7rem 0.8rem; font-size: 0.88rem; }
}

/* Compact stat row inside use-cases */
.use-case .uc-stats {
  display: flex; gap: 1.25rem; flex-wrap: wrap;
  margin: 0.5rem 0 0.85rem;
  padding: 0.7rem 0.9rem; border-radius: 10px;
  background: var(--paper); border: 1px solid var(--line);
}
.use-case .uc-stats div { display: flex; flex-direction: column; }
.use-case .uc-stats .lbl { font-size: 0.7rem; text-transform: uppercase; letter-spacing: 0.06em; color: var(--muted); font-weight: 700; }
.use-case .uc-stats .val { font-family: var(--mono); font-weight: 700; color: var(--dark); font-size: 0.95rem; }

/* Tool-chip variant in light sections */
.tools-light .tool-chip {
  background: #fff; border: 1px solid var(--line);
}

/* ── Hero split-grid + dashboard widget (matches main index.html goldstandard) ── */

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 4rem;
  align-items: center;
}
.hero-grid .hero-actions { margin-bottom: 1.75rem; }
.hero-grid .trust-pills { margin-top: 0; }

.hero-dash {
  background: var(--dark);
  border-radius: 20px;
  padding: 1.5rem;
  box-shadow: 0 25px 60px rgba(0,0,0,0.18);
  position: relative;
  overflow: hidden;
}
.hero-dash::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 40px;
  background: var(--dark2);
  border-radius: 20px 20px 0 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.dash-dots {
  display: flex; gap: 6px;
  position: relative; z-index: 1;
  margin-bottom: 1.2rem; padding: 0.3rem 0;
}
.dash-dots span { width: 10px; height: 10px; border-radius: 50%; }
.dash-dots span:nth-child(1) { background: #ef4444; }
.dash-dots span:nth-child(2) { background: #f59e0b; }
.dash-dots span:nth-child(3) { background: #22c55e; }

.dash-rows { display: flex; flex-direction: column; gap: 0.6rem; }
.dash-row {
  display: grid;
  grid-template-columns: 110px 1fr auto;
  gap: 1rem; align-items: center;
  padding: 0.7rem 1rem;
  background: rgba(255,255,255,0.04);
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,0.06);
  transition: all 0.3s;
}
.dash-row:hover { background: rgba(255,255,255,0.07); border-color: var(--accent); }
.dash-dept {
  font-size: 0.78rem; font-weight: 600;
  color: rgba(255,255,255,0.72);
  font-family: var(--mono);
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.dash-bar-bg {
  height: 8px; background: rgba(255,255,255,0.08);
  border-radius: 4px; overflow: hidden;
}
.dash-bar { height: 100%; border-radius: 4px; }
.dash-bar.bar-orange { background: linear-gradient(90deg, var(--accent), #fb923c); }
.dash-bar.bar-blue   { background: linear-gradient(90deg, var(--primary-glow), #60a5fa); }
.dash-bar.bar-green  { background: linear-gradient(90deg, #22c55e, #4ade80); }
.dash-bar.bar-purple { background: linear-gradient(90deg, #a78bfa, #c084fc); }
.dash-bar.bar-pink   { background: linear-gradient(90deg, #ec4899, #f472b6); }

.dash-stat {
  font-family: var(--mono);
  font-size: 0.74rem; font-weight: 600;
  white-space: nowrap;
}
.dash-stat.stat-orange { color: var(--accent); }
.dash-stat.stat-blue   { color: var(--primary-glow); }
.dash-stat.stat-green  { color: #22c55e; }
.dash-stat.stat-purple { color: #a78bfa; }
.dash-stat.stat-pink   { color: #f472b6; }

.dash-footer {
  margin-top: 1rem; padding-top: 0.8rem;
  border-top: 1px solid rgba(255,255,255,0.06);
  display: flex; justify-content: space-between; align-items: center;
}
.dash-footer span {
  font-size: 0.7rem; color: rgba(255,255,255,0.32);
  font-family: var(--mono); letter-spacing: 0.04em;
}
.dash-live {
  display: flex; align-items: center; gap: 6px;
  font-size: 0.7rem; color: #22c55e; font-weight: 600;
}
.dash-live::before {
  content: ''; width: 6px; height: 6px; border-radius: 50%; background: #22c55e;
  box-shadow: 0 0 8px #22c55e;
  animation: dashPulse 1.6s ease-in-out infinite;
}
@keyframes dashPulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; gap: 2.5rem; }
}
@media (max-width: 500px) {
  .hero-dash { padding: 1rem; border-radius: 16px; }
  .dash-row { grid-template-columns: 90px 1fr auto; gap: 0.6rem; padding: 0.55rem 0.7rem; }
  .dash-dept { font-size: 0.7rem; }
  .dash-stat { font-size: 0.65rem; }
  .dash-footer span, .dash-live { font-size: 0.6rem; }
}
