/* ========================================
   Brand Tokens
   ======================================== */
:root {
  --lime: #D0F03F;
  --lime-soft: #E5F58A;
  --cream: #F8F5F0;
  --ink: #1A1A1A;
  --ink-soft: #4A4A4A;
  --line: #E6E0D6;

  --font-sans: 'DM Sans', system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  --font-mark: 'Shadows Into Light Two', cursive;

  --container-width: 1180px;
  --space-xs: 0.5rem;
  --space-s: 1rem;
  --space-m: 2rem;
  --space-l: 4rem;
  --space-xl: 6rem;
}

/* ========================================
   Reset & Base
   ======================================== */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: var(--font-sans);
  font-size: 18px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

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

ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

/* ========================================
   Layout
   ======================================== */
.container {
  width: 100%;
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 var(--space-m);
}

.section {
  padding: var(--space-xl) 0;
  position: relative;
}

.section-alt {
  background: #FFFFFF;
}

/* ========================================
   Header
   ======================================== */
.site-header {
  padding: var(--space-l) 0;
  background: var(--cream);
}

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-l);
}

.wordmark {
  font-family: var(--font-mark);
  font-size: 2.9rem;
  line-height: 1.2;
  color: var(--ink);
  letter-spacing: 0;
}

.nav {
  display: flex;
  gap: var(--space-m);
  font-size: 1.15rem;
  font-weight: 500;
}

.nav a {
  position: relative;
  padding: 0.25rem 0.1rem;
  transition: background 0.2s ease;
}

.nav a:hover {
  background: linear-gradient(180deg, transparent 65%, var(--lime) 65%, var(--lime) 95%, transparent 95%);
}

/* ========================================
   Hero (ohne Visual, etwas mehr Atem)
   ======================================== */
.hero {
  padding: var(--space-m) 0 var(--space-l);
  background: var(--cream);
}

.hero-slim .tagline {
  font-size: clamp(2.5rem, 6.2vw, 4.6rem);
  line-height: 1.05;
  margin-bottom: var(--space-m);
}

.tagline {
  font-size: clamp(2.75rem, 7vw, 5.5rem);
  font-weight: 700;
  line-height: 1.0;
  letter-spacing: -0.025em;
  margin: 0 0 var(--space-m);
}

.tagline .multiply {
  color: var(--lime);
  font-weight: 700;
  display: inline-block;
  margin: 0 0.05em;
  font-size: 1em;
}

.marker {
  background: linear-gradient(180deg, transparent 55%, var(--lime) 55%, var(--lime) 92%, transparent 92%);
  padding: 0 0.05em;
  display: inline;
}

.hero-sub {
  font-size: clamp(1.15rem, 1.6vw, 1.3rem);
  max-width: 70ch;
  color: var(--ink);
  margin: 0;
  line-height: 1.55;
}

/* ========================================
   Section Headlines
   ======================================== */
h2 {
  font-size: clamp(1.85rem, 3.5vw, 2.75rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.015em;
  margin: 0 0 var(--space-m);
}

.lead {
  font-size: 1.2rem;
  max-width: 60ch;
  color: var(--ink);
  margin: 0 0 var(--space-l);
  line-height: 1.6;
}

/* ========================================
   Proof Section (Stats)
   ======================================== */
.proof-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-m);
  margin-bottom: var(--space-m);
}

@media (min-width: 768px) {
  .proof-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.stat {
  padding: var(--space-m);
  border: 2px solid var(--ink);
  background: var(--cream);
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 180px;
}

.stat-lime {
  background: var(--lime);
}

.stat-number {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  line-height: 1.05;
  margin: 0 0 var(--space-s);
  letter-spacing: -0.02em;
}

.stat-label {
  font-size: 1rem;
  color: var(--ink-soft);
  line-height: 1.4;
}

.stat-lime .stat-label {
  color: var(--ink);
}

.proof-note {
  font-size: 0.9rem;
  color: var(--ink-soft);
  font-style: italic;
  margin: 0;
}

.proof-lead {
  max-width: none;
}

.philosophy-lead {
  max-width: 75ch;
  font-size: 1.25rem;
  line-height: 1.6;
  margin-bottom: var(--space-l);
}

.pillar-lead {
  font-size: 1.05rem;
  color: var(--ink-soft);
  margin: 0 0 var(--space-m);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 700;
}

/* ========================================
   Pillar List (Was du hier findest)
   ======================================== */
h3 {
  font-size: 1.3rem;
  font-weight: 700;
  line-height: 1.25;
  margin: 0 0 var(--space-xs);
}

.pillar-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-m);
}

@media (min-width: 768px) {
  .pillar-list {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-l) var(--space-m);
  }
}

.pillar-list li {
  position: relative;
  padding-left: 2.5rem;
}

.pillar-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.3em;
  width: 1.75rem;
  height: 1rem;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 12'%3E%3Cpath d='M0 6h20m-5-5 5 5-5 5' fill='none' stroke='%23D0F03F' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: left center;
  background-size: contain;
}

.pillar-list li p {
  margin: 0;
  font-size: 1.05rem;
  color: var(--ink-soft);
  line-height: 1.55;
}

/* ========================================
   Two-Column Layout (Über mich)
   ======================================== */
.two-col {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-l);
  align-items: start;
}

.col-text p {
  margin: 0 0 var(--space-s);
  font-size: 1.1rem;
  max-width: 60ch;
  line-height: 1.65;
}

.col-text p:last-child {
  margin-bottom: 0;
}

.portrait-frame {
  margin: 0;
  aspect-ratio: 4 / 5;
  position: relative;
  overflow: hidden;
  border: 3px solid var(--lime);
  background: var(--cream);
}

.portrait-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 25%;
  display: block;
}

@media (min-width: 768px) {
  .two-col {
    grid-template-columns: 1.4fr 1fr;
  }
}

/* ========================================
   Produkt-Sektion (KI-Ghostwriting, Cowork)
   ======================================== */
.product-section {
  max-width: 760px;
}

.product-eyebrow {
  font-family: var(--font-mark);
  font-size: 1.4rem;
  line-height: 1;
  color: var(--ink-soft);
  margin: 0 0 var(--space-xs);
}

.product-section h2 {
  margin: 0 0 var(--space-xs);
}

.product-subline {
  font-size: 1.15rem !important;
  color: var(--ink-soft) !important;
  margin: 0 0 var(--space-m) !important;
  line-height: 1.4 !important;
}

.product-pain {
  font-size: 1.2rem !important;
  line-height: 1.55 !important;
  font-weight: 500 !important;
  margin: 0 0 var(--space-m) !important;
  border-left: 4px solid var(--lime);
  padding-left: var(--space-s);
}

.product-section p {
  font-size: 1.1rem;
  line-height: 1.65;
  margin: 0 0 var(--space-s);
}

.product-section-title {
  font-size: 1.15rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin: var(--space-l) 0 var(--space-s);
}

.product-features {
  display: grid;
  gap: 0.55rem;
  margin: 0 0 var(--space-m);
  padding: 0;
  list-style: none;
}

.product-features li {
  position: relative;
  padding-left: 2rem;
  font-size: 1.1rem;
  line-height: 1.5;
}

.product-features li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.4em;
  width: 1.4rem;
  height: 0.85rem;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 12'%3E%3Cpath d='M0 6h20m-5-5 5 5-5 5' fill='none' stroke='%23D0F03F' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-size: contain;
}

.product-price-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-m);
  margin: var(--space-l) 0 0;
  padding: var(--space-m) 0;
  border-top: 2px solid var(--ink);
  border-bottom: 2px solid var(--ink);
  flex-wrap: wrap;
}

.product-price {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.price-label {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 700;
  color: var(--ink-soft);
}

.price-value {
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.02em;
}

.product-faq .faq-title {
  font-size: 1.2rem;
  margin: 0 0 var(--space-s);
  font-weight: 700;
}

.product-faq .faq-item {
  border-top: 1px solid var(--line);
}

.product-faq .faq-item:last-of-type {
  border-bottom: 1px solid var(--line);
}

.product-tag {
  display: inline-block;
  background: var(--lime);
  color: var(--ink);
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 0.3rem 0.7rem;
}

.product-card p {
  font-size: 1.1rem;
  max-width: 60ch;
  margin: 0 0 var(--space-s);
  line-height: 1.6;
}

.product-meta {
  font-size: 0.95rem !important;
  color: var(--ink-soft);
  margin-bottom: var(--space-m) !important;
}

/* ========================================
   Freebie Section
   ======================================== */
/* ========================================
   Freebie Callout — Lime-Box mit Ink-Akzent oben rechts
   ======================================== */
.freebie-callout {
  background: var(--lime-soft);
  border: 2px solid var(--ink);
  padding: var(--space-m) var(--space-l);
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-m);
  align-items: center;
  max-width: 880px;
  margin: 0 auto;
  position: relative;
}

@media (min-width: 720px) {
  .freebie-callout {
    grid-template-columns: 1fr auto;
    gap: var(--space-l);
  }
}

.freebie-callout::before {
  content: '';
  position: absolute;
  top: -2px;
  right: -2px;
  width: 80px;
  height: 14px;
  background: var(--ink);
}

.callout-body {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

.callout-eyebrow {
  font-size: 0.75rem !important;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 700;
  margin: 0 !important;
  color: var(--ink) !important;
  line-height: 1 !important;
}

.callout-body h3 {
  font-size: 1.5rem;
  margin: 0;
  line-height: 1.15;
  font-weight: 700;
  letter-spacing: -0.015em;
  white-space: nowrap;
}

.callout-body p {
  margin: 0;
  font-size: 0.95rem;
  color: var(--ink);
  line-height: 1.4;
  max-width: 56ch;
}

.callout-list {
  display: grid;
  gap: 0.3rem;
  margin: 0.6rem 0 0;
  padding: 0;
  list-style: none;
}

.callout-list li {
  position: relative;
  padding-left: 1.75rem;
  font-size: 1rem;
  line-height: 1.5;
  color: var(--ink);
}

.callout-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.45em;
  width: 1rem;
  height: 0.6rem;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 12'%3E%3Cpath d='M0 6h20m-5-5 5 5-5 5' fill='none' stroke='%231A1A1A' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-size: contain;
}

.callout-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  align-self: flex-start;
  background: var(--ink);
  color: var(--cream);
  border: 2px solid var(--ink);
  padding: 0.8rem 1.4rem;
  font-weight: 500;
  font-size: 1rem;
  white-space: nowrap;
  margin-top: var(--space-xs);
  transition: background 0.2s ease, color 0.2s ease, gap 0.2s ease;
}

.callout-cta:hover {
  gap: 1rem;
  background: var(--cream);
  color: var(--ink);
}

.callout-cta .arrow path {
  stroke: currentColor;
}

.callout-cta[aria-disabled="true"] {
  opacity: 0.55;
  cursor: not-allowed;
  pointer-events: none;
}

.freebie-form {
  margin-top: var(--space-m);
}

.freebie-label {
  display: block;
  font-weight: 500;
  margin-bottom: var(--space-s);
  font-size: 1rem;
}

.freebie-form-row {
  display: flex;
  gap: var(--space-s);
  flex-wrap: wrap;
}

.freebie-form input[type="email"] {
  flex: 1 1 240px;
  font-family: inherit;
  font-size: 1rem;
  padding: 0.85rem 1rem;
  border: 2px solid var(--ink);
  background: var(--cream);
  color: var(--ink);
  min-width: 0;
}

.freebie-form input[type="email"]:focus {
  outline: 2px solid var(--ink);
  outline-offset: 2px;
}

.freebie-form button {
  background: var(--ink);
  color: var(--cream);
  border: 2px solid var(--ink);
  padding: 0.85rem 1.5rem;
  font-size: 1.05rem;
  font-weight: 500;
  font-family: inherit;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease;
}

.freebie-form button:hover {
  background: transparent;
  color: var(--ink);
}

.freebie-note {
  font-size: 0.9rem;
  color: var(--ink-soft);
  margin: var(--space-s) 0 0;
}

/* ========================================
   FAQ (Items werden auch innerhalb .product-faq genutzt)
   ======================================== */
.faq-title {
  font-size: 1.3rem;
  font-weight: 700;
  margin: 0 0 var(--space-s);
}

.faq-item {
  border-top: 1px solid var(--line);
}

.faq-item:last-of-type {
  border-bottom: 1px solid var(--line);
}

.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: var(--space-s) 0;
  font-weight: 500;
  font-size: 1.1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--space-s);
}

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

.faq-item summary::after {
  content: '+';
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 1;
  flex-shrink: 0;
}

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

.faq-item p {
  margin: 0 0 var(--space-m);
  color: var(--ink-soft);
  font-size: 1.05rem;
  line-height: 1.6;
  max-width: 60ch;
}

/* ========================================
   Section centered (Kontakt)
   ======================================== */
.section-centered .container {
  text-align: center;
}

.section-centered h2 {
  text-align: center;
}

.section-centered .lead {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

/* ========================================
   Contact Form (Kontakt)
   ======================================== */
.contact-form {
  display: grid;
  gap: var(--space-m);
  max-width: 640px;
  margin: 0 auto;
  text-align: left;
}

.form-row {
  display: grid;
  gap: var(--space-xs);
}

.form-label {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--ink);
}

.form-input {
  font-family: inherit;
  font-size: 1rem;
  padding: 0.85rem 1rem;
  border: 2px solid var(--ink);
  background: var(--cream);
  color: var(--ink);
  width: 100%;
}

.form-input:focus {
  outline: 2px solid var(--lime);
  outline-offset: 2px;
}

.form-textarea {
  resize: vertical;
  min-height: 8rem;
  line-height: 1.5;
}

.form-submit {
  justify-self: center;
  font-family: inherit;
  cursor: pointer;
}

/* ========================================
   CTA
   ======================================== */
.cta {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-weight: 500;
  padding: 0.75rem 0;
  border-bottom: 2px solid var(--ink);
  transition: gap 0.2s ease;
}

.cta:hover {
  gap: 1rem;
}

.cta-primary {
  background: var(--lime);
  border: 2px solid var(--ink);
  padding: 0.85rem 1.5rem;
  font-size: 1.05rem;
}

.cta-primary:hover {
  background: var(--ink);
  color: var(--cream);
}

.cta-primary:hover .arrow path {
  stroke: var(--cream);
}

.arrow {
  width: 1.4rem;
  height: 0.9rem;
  flex-shrink: 0;
}

.arrow path {
  stroke: currentColor;
  transition: stroke 0.2s ease;
}

/* ========================================
   Footer
   ======================================== */
.site-footer {
  padding: var(--space-l) 0 var(--space-m);
  margin-top: 0;
  background: var(--ink);
  color: var(--cream);
}

.site-footer .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-m);
  flex-wrap: wrap;
}

.signature {
  font-family: var(--font-mark);
  font-size: 1.6rem;
  margin: 0;
  color: var(--lime);
  line-height: 1.2;
}

.footer-nav {
  display: flex;
  gap: var(--space-m);
  font-size: 0.95rem;
  color: var(--cream);
}

.footer-nav a:hover {
  color: var(--lime);
}

.footer-nav a[aria-disabled="true"] {
  pointer-events: none;
  opacity: 0.5;
}

/* ========================================
   CTA disabled state
   ======================================== */
.cta-primary[aria-disabled="true"] {
  opacity: 0.55;
  cursor: not-allowed;
  pointer-events: none;
}

/* ========================================
   Legal Pages (Impressum, Datenschutz)
   ======================================== */
.legal-page {
  padding: var(--space-l) 0 var(--space-xl);
  background: var(--cream);
}

.legal-page .container {
  max-width: 780px;
}

.legal-back {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin-bottom: var(--space-m);
  font-size: 0.95rem;
  color: var(--ink-soft);
}

.legal-back:hover {
  color: var(--ink);
}

.legal-page h1 {
  font-size: clamp(2rem, 5vw, 2.8rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin: 0 0 var(--space-m);
  line-height: 1.1;
}

.legal-page h2 {
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  margin: var(--space-l) 0 var(--space-s);
  line-height: 1.2;
}

.legal-page h2:first-of-type {
  margin-top: var(--space-m);
}

.legal-page h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin: var(--space-m) 0 var(--space-xs);
  line-height: 1.3;
}

.legal-page p {
  font-size: 1rem;
  line-height: 1.65;
  margin: 0 0 1rem;
}

.legal-page ul {
  margin: 0 0 1rem;
  padding-left: 1.5rem;
  list-style: disc;
}

.legal-page ul li {
  font-size: 1rem;
  line-height: 1.65;
  margin-bottom: 0.3rem;
}

.legal-page a {
  color: var(--ink);
  text-decoration: underline;
  text-decoration-color: var(--lime);
  text-decoration-thickness: 2px;
  text-underline-offset: 3px;
}

.legal-meta {
  font-size: 0.9rem;
  color: var(--ink-soft);
  margin-top: var(--space-l);
  padding-top: var(--space-m);
  border-top: 1px solid var(--line);
}

.legal-page .placeholder {
  background: var(--lime);
  padding: 0.05em 0.3em;
  font-weight: 500;
}

/* ========================================
   Responsive Adjustments
   ======================================== */
@media (max-width: 640px) {
  .site-header .container {
    flex-direction: column;
    align-items: flex-start;
    gap: var(--space-s);
  }

  .nav {
    flex-wrap: wrap;
    gap: var(--space-s);
  }

  .section {
    padding: var(--space-l) 0;
  }

  .hero {
    padding: var(--space-s) 0 var(--space-l);
  }

  .product-card {
    padding: var(--space-m);
  }

  .pillar-list li {
    padding-left: 2.25rem;
  }

  .freebie-callout {
    padding: var(--space-m);
  }

  .freebie-form-row {
    flex-direction: column;
  }

  .freebie-form button {
    width: 100%;
  }
}
