/* Intent-Landings — 3 klar unterscheidbare Skins */

.calc-intent {
  --intent-ease: cubic-bezier(0.22, 1, 0.36, 1);
}

.calc-intent .intent-hero {
  padding: 1rem 0 0.5rem;
  overflow: hidden;
}

.calc-intent .intent-hero-inner {
  max-width: 920px;
  position: relative;
}

.calc-intent .intent-kicker {
  margin: 0.25rem 0 0.35rem;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.calc-intent .intent-hero h1 {
  margin: 0 0 0.4rem;
  font-size: clamp(1.75rem, 4.6vw, 2.6rem);
  line-height: 1.12;
}

.calc-intent .intent-lead {
  margin: 0 0 0.85rem;
  max-width: 38rem;
  font-size: 1.02rem;
  line-height: 1.45;
  color: var(--muted);
}

.calc-intent .intent-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-bottom: 0.75rem;
}

.calc-intent .intent-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem 0.9rem;
  list-style: none;
  margin: 0 0 0.5rem;
  padding: 0;
  font-size: 0.86rem;
  font-weight: 600;
  color: var(--ink-soft);
}

.calc-intent .intent-trust li {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
}

.calc-intent .intent-points {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.65rem;
  margin: 0.85rem 0 0;
  padding: 0;
  list-style: none;
}

.calc-intent .intent-points li {
  margin: 0;
  padding: 0.7rem 0.8rem;
  border-radius: 12px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.72);
  font-size: 0.9rem;
  line-height: 1.35;
  color: var(--ink-soft);
  transform: translateY(8px);
  opacity: 0;
  animation: intentRise 0.55s var(--intent-ease) forwards;
}

.calc-intent .intent-points li:nth-child(2) { animation-delay: 0.08s; }
.calc-intent .intent-points li:nth-child(3) { animation-delay: 0.16s; }

.calc-intent .intent-points strong {
  display: block;
  color: var(--ink);
  margin-bottom: 0.15rem;
  font-size: 0.92rem;
}

@keyframes intentRise {
  to { transform: translateY(0); opacity: 1; }
}

.calc-intent .intent-calc {
  padding: 0.35rem 0 0;
}

.calc-intent .calc-frame {
  display: block;
  width: 100%;
  height: 640px;
  min-height: 0;
  border: 0;
  border-radius: 14px;
  background: transparent;
}

.calc-intent .intent-more {
  padding: 1.25rem 0 2rem;
}

.calc-intent .intent-more h2 {
  font-size: 1.15rem;
  margin-bottom: 0.65rem;
}

.calc-intent .intent-faq {
  margin-top: 1.25rem;
  max-width: 920px;
}

.calc-intent .intent-faq details {
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 0.7rem 0.9rem;
  margin-bottom: 0.5rem;
  background: #fff;
}

.calc-intent .intent-faq summary {
  cursor: pointer;
  font-weight: 700;
}

.calc-intent .intent-faq p {
  margin: 0.45rem 0 0;
  color: var(--muted);
  font-size: 0.95rem;
}

/* ========== SKIN A: classic (Marken-Teal, ruhig) ========== */
.skin-classic {
  --accent: #0e6b5c;
  --accent-deep: #0a5247;
}

.skin-classic .intent-kicker { color: var(--accent-deep); }

.skin-classic .intent-trust li::before {
  content: "";
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 50%;
  background: var(--accent);
}

.skin-classic .intent-hero h1 {
  animation: intentRise 0.5s var(--intent-ease) both;
}

.skin-classic .calc-frame {
  box-shadow: 0 10px 28px rgba(14, 40, 36, 0.07);
  border: 1px solid rgba(14, 107, 92, 0.14);
}

/* ========== SKIN B: compact (Anthrazit / scharf / toolartig) ========== */
.skin-compact {
  --accent: #1c2b33;
  --accent-deep: #101820;
  background:
    linear-gradient(180deg, #f3f5f6 0%, #eef1f3 100%);
}

.skin-compact .site-header {
  background: #101820;
  border-bottom: none;
}

.skin-compact .site-header .brand-trust-text,
.skin-compact .site-header .nav-links a {
  color: rgba(255, 255, 255, 0.86);
}

.skin-compact .site-header .nav-links a.active,
.skin-compact .site-header .nav-links a:hover {
  color: #fff;
}

.skin-compact .intent-hero {
  padding: 0.55rem 0 0.2rem;
}

.skin-compact .intent-kicker {
  color: #5b6b75;
  letter-spacing: 0.12em;
  font-family: ui-monospace, "Cascadia Code", monospace;
}

.skin-compact .intent-hero h1 {
  font-family: ui-sans-serif, Figtree, system-ui, sans-serif;
  font-weight: 800;
  letter-spacing: -0.03em;
  max-width: none;
}

.skin-compact .intent-lead {
  font-size: 0.95rem;
  max-width: 34rem;
}

.skin-compact .intent-trust { display: none; }

.skin-compact .intent-actions .btn-primary {
  background: #101820;
  border-color: #101820;
  border-radius: 8px;
}

.skin-compact .intent-actions .btn-ghost { display: none; }

.skin-compact .intent-points {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.4rem;
}

.skin-compact .intent-points li {
  border-radius: 8px;
  border-color: #d7dde2;
  background: #fff;
  padding: 0.55rem 0.65rem;
  font-size: 0.84rem;
}

.skin-compact .calc-frame {
  border-radius: 8px;
  border: 2px solid #101820;
  box-shadow: 4px 4px 0 #101820;
}

.skin-compact .intent-faq details {
  border-radius: 8px;
  border-width: 2px;
}

/* ========== SKIN C: situation (warm, interaktiv, Story) ========== */
.skin-situation {
  --accent: #b45309;
  --accent-deep: #9a3412;
  background:
    radial-gradient(900px 420px at 85% -10%, rgba(180, 83, 9, 0.16), transparent 55%),
    radial-gradient(700px 360px at 0% 20%, rgba(15, 118, 110, 0.1), transparent 50%),
    #faf7f2;
}

.skin-situation .intent-hero {
  padding: 1.4rem 0 1.1rem;
  margin-bottom: 0.5rem;
  border-bottom: 1px solid rgba(154, 52, 18, 0.12);
}

.skin-situation .intent-kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.28rem 0.7rem;
  border-radius: 999px;
  background: #9a3412;
  color: #fff7ed;
  animation: intentPulse 2.4s ease-in-out infinite;
}

@keyframes intentPulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.03); }
}

.skin-situation .intent-hero h1 {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 600;
  max-width: 16ch;
  color: #1c1917;
}

.skin-situation .intent-lead {
  color: #57534e;
  font-size: 1.08rem;
}

.skin-situation .intent-actions .btn-primary {
  background: #9a3412;
  border-color: #9a3412;
  border-radius: 999px;
  padding-inline: 1.25rem;
  box-shadow: 0 8px 24px rgba(154, 52, 18, 0.25);
  transition: transform 0.2s var(--intent-ease), box-shadow 0.2s;
}

.skin-situation .intent-actions .btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(154, 52, 18, 0.32);
}

.skin-situation .intent-actions .btn-ghost {
  border-radius: 999px;
  border-color: rgba(154, 52, 18, 0.35);
  color: #9a3412;
}

.skin-situation .intent-trust li::before {
  content: "→ ";
  color: #b45309;
}

.skin-situation .intent-points li {
  background: rgba(255, 255, 255, 0.8);
  border-color: rgba(154, 52, 18, 0.14);
  backdrop-filter: blur(6px);
}

.skin-situation .intent-points li:hover {
  transform: translateY(-2px);
  border-color: rgba(154, 52, 18, 0.35);
  transition: transform 0.2s var(--intent-ease), border-color 0.2s;
}

.skin-situation .calc-frame {
  border-radius: 20px;
  border: 1px solid rgba(154, 52, 18, 0.18);
  box-shadow: 0 18px 50px rgba(28, 25, 23, 0.1);
}

/* Steps rail (situation + classic) */
.intent-steps {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin: 0 0 0.85rem;
  padding: 0;
  list-style: none;
}

.intent-steps li {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.35rem 0.7rem;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 700;
  background: rgba(255, 255, 255, 0.75);
  border: 1px solid var(--line);
  color: var(--ink-soft);
}

.intent-steps li span {
  width: 1.2rem;
  height: 1.2rem;
  border-radius: 50%;
  display: inline-grid;
  place-items: center;
  font-size: 0.72rem;
  background: var(--accent, #0e6b5c);
  color: #fff;
}

.skin-compact .intent-steps {
  gap: 0.3rem;
}

.skin-compact .intent-steps li {
  border-radius: 6px;
  font-family: ui-monospace, monospace;
  font-size: 0.75rem;
  letter-spacing: 0.02em;
}

/* Embed mode inside iframe */
html.calc-embed,
html.calc-embed body {
  background: transparent !important;
  min-height: 0 !important;
}

html.calc-embed .site-header,
html.calc-embed .site-footer,
html.calc-embed .sticky-cta,
html.calc-embed .breadcrumb,
html.calc-embed .fin-faq,
html.calc-embed .kv-longcopy,
html.calc-embed .kv-seo {
  display: none !important;
}

html.calc-embed main,
html.calc-embed .section {
  padding: 0 !important;
  margin: 0 !important;
}

html.calc-embed .fin-wrap,
html.calc-embed .kv-wrap,
html.calc-embed .wrap {
  max-width: none !important;
  margin: 0 !important;
  padding: 0.15rem 0.1rem 0.35rem !important;
}

html.calc-embed .fin-hero,
html.calc-embed .kv-hero {
  margin-bottom: 0.45rem !important;
}

html.calc-embed .fin-hero h1,
html.calc-embed .kv-hero h1 {
  font-size: 1.2rem !important;
  margin-bottom: 0.2rem !important;
}

html.calc-embed .fin-hero p,
html.calc-embed .kv-hero-cta,
html.calc-embed .kv-hero-lead {
  font-size: 0.9rem !important;
  margin-bottom: 0.35rem !important;
}

html.calc-embed.skin-compact .fin-hero p,
html.calc-embed.skin-compact .kv-hero-cta,
html.calc-embed.skin-compact .kv-hero-lead {
  display: none !important;
}

html.calc-embed .fin-card {
  margin-bottom: 0.75rem !important;
}

@media (max-width: 800px) {
  .calc-intent .intent-points {
    grid-template-columns: 1fr;
  }
}
