 :root {
   --ink: #12172B;
   --panel: #1B2242;
   --surface: #F4F6F4;
   --surface-2: #FFFFFF;
   --business: #2FB6A6;
   --business-dim: #1F8577;
   --private: #F2A33B;
   --private-dim: #C97F1E;
   --line: rgba(18, 23, 43, 0.12);
   --line-dark: rgba(244, 246, 244, 0.14);
   --ink-soft: rgba(18, 23, 43, 0.62);
 }

 * {
   box-sizing: border-box;
   margin: 0;
   padding: 0;
 }

 html {
   scroll-behavior: smooth;
 }

 body {
   font-family: -apple-system, "Inter", "Segoe UI", Arial, sans-serif;
   background: var(--surface);
   color: var(--ink);
   line-height: 1.6;
   -webkit-font-smoothing: antialiased;
 }

 h1,
 h2,
 h3 {
   font-family: Georgia, "Zilla Slab", serif;
   font-weight: 600;
   letter-spacing: -0.01em;
 }

 a {
   color: inherit;
   text-decoration: none;
 }

 section {
   padding: 84px 24px;
 }

 .inner {
   max-width: 1080px;
   margin: 0 auto;
 }

 /* ---------- HERO ---------- */
 .hero {
   background: var(--ink);
   color: #F4F6F4;
   padding: 100px 24px 90px;
   position: relative;
   overflow: hidden;
 }

 .hero::before {
   content: '';
   position: absolute;
   top: -160px;
   left: -160px;
   width: 460px;
   height: 460px;
   border-radius: 50%;
   background: radial-gradient(circle, rgba(242, 163, 59, 0.16), transparent 70%);
 }

 .hero-inner {
   max-width: 760px;
   margin: 0 auto;
   text-align: center;
   position: relative;
 }

 .logo {
   display: inline-flex;
   align-items: center;
   gap: 9px;
   font-size: 20px;
   font-weight: 700;
   margin-bottom: 26px;
   font-family: Georgia, "Zilla Slab", serif;
 }

 .logo-mark {
   width: 20px;
   height: 20px;
   border-radius: 6px;
   background: linear-gradient(135deg, var(--business) 0%, var(--private) 100%);
   display: inline-block;
 }

 .eyebrow {
   font-family: "IBM Plex Mono", Consolas, monospace;
   font-size: 12px;
   letter-spacing: 0.14em;
   text-transform: uppercase;
   color: var(--private);
   display: inline-flex;
   align-items: center;
   gap: 8px;
   margin-bottom: 22px;
 }

 .eyebrow::before {
   content: '';
   width: 7px;
   height: 7px;
   border-radius: 50%;
   background: var(--private);
   box-shadow: 0 0 0 4px rgba(242, 163, 59, 0.18);
 }

 .hero h1 {
   font-size: 42px;
   line-height: 1.14;
   color: #F4F6F4;
 }

 .hero h1 em {
   font-style: normal;
   background: linear-gradient(100deg, var(--private), var(--business));
   -webkit-background-clip: text;
   background-clip: text;
   color: transparent;
 }

 .hero p.lede {
   margin: 20px auto 0;
   font-size: 17px;
   color: rgba(244, 246, 244, 0.68);
   max-width: 560px;
 }

 .hero-note {
   margin-top: 22px;
   font-size: 13.5px;
   color: rgba(244, 246, 244, 0.5);
 }

 .hero-actions {
   margin-top: 30px;
   display: flex;
   gap: 14px;
   justify-content: center;
   flex-wrap: wrap;
 }

 .btn {
   padding: 13px 24px;
   border-radius: 8px;
   font-weight: 600;
   font-size: 14.5px;
   border: 1px solid transparent;
   cursor: pointer;
   display: inline-flex;
   transition: transform .15s ease, box-shadow .15s ease;
 }

 .btn:hover {
   transform: translateY(-1px);
 }

 .btn-private {
   background: var(--private);
   color: #1a1204;
 }

 .btn-private:hover {
   box-shadow: 0 8px 22px rgba(242, 163, 59, 0.28);
 }

 .btn-outline {
   background: transparent;
   color: #F4F6F4;
   border-color: rgba(244, 246, 244, 0.28);
 }

 .btn-outline:hover {
   border-color: rgba(244, 246, 244, 0.55);
 }

 .btn-dark {
   background: var(--ink);
   color: #F4F6F4;
 }

 .btn-dark:hover {
   box-shadow: 0 8px 22px rgba(18, 23, 43, 0.28);
 }

 /* ---------- USE CASES ---------- */
 .cases {
   background: var(--surface);
 }

 .section-head {
   max-width: 640px;
   margin: 0 auto 50px;
   text-align: center;
 }

 .section-head h2 {
   font-size: 29px;
   margin-bottom: 12px;
 }

 .section-head p {
   color: var(--ink-soft);
   font-size: 15.5px;
 }

 .section-head .eyebrow {
   justify-content: center;
   color: var(--private-dim);
 }

 .section-head .eyebrow::before {
   background: var(--private-dim);
   box-shadow: 0 0 0 4px rgba(201, 127, 30, 0.14);
 }

 .case-grid {
   display: grid;
   grid-template-columns: repeat(3, 1fr);
   gap: 20px;
 }

 .case-card {
   background: var(--surface-2);
   border: 1px solid var(--line);
   border-radius: 14px;
   padding: 28px;
   display: flex;
   flex-direction: column;
 }

 .case-card .icwrap {
   width: 42px;
   height: 42px;
   border-radius: 11px;
   background: rgba(242, 163, 59, 0.12);
   color: var(--private-dim);
   display: flex;
   align-items: center;
   justify-content: center;
   margin-bottom: 18px;
 }

 .case-card h3 {
   font-size: 17px;
   margin-bottom: 8px;
 }

 .case-card p {
   font-size: 14px;
   color: var(--ink-soft);
   line-height: 1.6;
   flex-grow: 1;
 }

 .case-card .example {
   margin-top: 14px;
   font-family: "IBM Plex Mono", Consolas, monospace;
   font-size: 11.5px;
   color: var(--business-dim);
   background: rgba(47, 182, 166, 0.08);
   padding: 6px 9px;
   border-radius: 6px;
   display: inline-block;
   align-self: flex-start;
 }

 @media (max-width: 900px) {
   .case-grid {
     grid-template-columns: 1fr 1fr;
   }
 }

 @media (max-width: 600px) {
   .case-grid {
     grid-template-columns: 1fr;
   }
 }

 /* ---------- SO FUNKTIONIERTS ---------- */
 .how {
   background: var(--ink);
   color: #F4F6F4;
 }

 .how .section-head h2 {
   color: #F4F6F4;
 }

 .how .section-head p {
   color: rgba(244, 246, 244, 0.6);
 }

 .how .eyebrow {
   color: var(--business);
   justify-content: center;
 }

 .how .eyebrow::before {
   background: var(--business);
   box-shadow: 0 0 0 4px rgba(47, 182, 166, 0.18);
 }

 .step-row {
   display: grid;
   grid-template-columns: repeat(3, 1fr);
   gap: 32px;
 }

 .step {
   padding: 26px 0 0;
   border-top: 2px solid rgba(244, 246, 244, 0.3);
 }

 .step-num {
   font-family: "IBM Plex Mono", Consolas, monospace;
   font-size: 13px;
   color: rgba(244, 246, 244, 0.5);
   margin-bottom: 12px;
   display: block;
 }

 .step h3 {
   font-size: 18px;
   margin-bottom: 8px;
   color: #F4F6F4;
 }

 .step p {
   font-size: 14.5px;
   color: rgba(244, 246, 244, 0.62);
   line-height: 1.6;
 }

 @media (max-width: 720px) {
   .step-row {
     grid-template-columns: 1fr;
   }
 }

 /* ---------- KOSTEN-HINWEIS ---------- */
 .pricing-note {
   background: var(--surface-2);
 }

 .pricing-note .inner {
   max-width: 700px;
   text-align: center;
 }

 .pricing-note h2 {
   font-size: 25px;
   margin-bottom: 16px;
 }

 .pricing-note p {
   color: var(--ink-soft);
   font-size: 15.5px;
   margin-bottom: 10px;
 }

 .pricing-note .cards {
   display: grid;
   grid-template-columns: 1fr 1fr;
   gap: 16px;
   margin-top: 28px;
   text-align: left;
 }

 .pricing-card {
   border: 1px solid var(--line);
   border-radius: 12px;
   padding: 22px;
 }

 .pricing-card.free {
   border-color: rgba(47, 182, 166, 0.3);
   background: rgba(47, 182, 166, 0.05);
 }

 .pricing-card .ptag {
   font-family: "IBM Plex Mono", Consolas, monospace;
   font-size: 11px;
   text-transform: uppercase;
   letter-spacing: 0.08em;
   margin-bottom: 8px;
   display: block;
 }

 .pricing-card.free .ptag {
   color: var(--business-dim);
 }

 .pricing-card h3 {
   font-size: 17px;
   margin-bottom: 8px;
 }

 .pricing-card p {
   font-size: 13.5px;
   color: var(--ink-soft);
 }

 @media (max-width: 640px) {
   .pricing-note .cards {
     grid-template-columns: 1fr;
   }
 }

 /* ---------- FAQ ---------- */
 .faq {
   background: var(--surface);
 }

 .faq .inner {
   max-width: 720px;
 }

 .faq-item {
   border-top: 1px solid var(--line);
   padding: 22px 0;
 }

 .faq-item:last-child {
   border-bottom: 1px solid var(--line);
 }

 .faq-item h3 {
   font-size: 16px;
   margin-bottom: 8px;
 }

 .faq-item p {
   font-size: 14.5px;
   color: var(--ink-soft);
 }

 /* ---------- CTA ---------- */
 .cta-section {
   background: var(--surface-2);
   text-align: center;
   padding: 96px 24px;
 }

 .cta-section h2 {
   font-size: 32px;
   max-width: 560px;
   margin: 0 auto 14px;
 }

 .cta-section p {
   color: var(--ink-soft);
   font-size: 15.5px;
   margin-bottom: 30px;
 }

 .cta-actions {
   display: flex;
   gap: 14px;
   justify-content: center;
   flex-wrap: wrap;
 }

 footer {
   background: var(--ink);
   color: rgba(244, 246, 244, 0.45);
   text-align: center;
   padding: 30px 24px;
   font-size: 13px;
 }

 footer strong {
   color: rgba(244, 246, 244, 0.75);
 }

 @media (max-width: 640px) {
   .hero h1 {
     font-size: 28px;
   }

   section {
     padding: 60px 20px;
   }
 }