 :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: 1040px;
   margin: 0 auto;
 }

 code,
 .mono {
   font-family: "IBM Plex Mono", Consolas, monospace;
   font-size: 0.85em;
 }

 /* ---------- HERO ---------- */
 .hero {
   background: var(--ink);
   color: #F4F6F4;
   padding: 100px 24px 90px;
   position: relative;
   overflow: hidden;
 }

 .hero::before {
   content: '';
   position: absolute;
   top: -180px;
   right: -180px;
   width: 480px;
   height: 480px;
   border-radius: 50%;
   background: radial-gradient(circle, rgba(47, 182, 166, 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(--business), var(--private));
   -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: 580px;
 }

 .hero-actions {
   margin-top: 34px;
   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);
 }

 /* ---------- INTRO ---------- */
 .intro {
   background: var(--surface-2);
 }

 .intro .inner {
   max-width: 740px;
   text-align: center;
 }

 .intro h2 {
   font-size: 26px;
   margin-bottom: 16px;
 }

 .intro p {
   color: var(--ink-soft);
   font-size: 16px;
 }

 .intro .highlight {
   display: inline-block;
   margin-top: 20px;
   padding: 10px 16px;
   background: rgba(47, 182, 166, 0.08);
   border: 1px solid rgba(47, 182, 166, 0.22);
   border-radius: 9px;
   font-size: 14px;
   color: var(--business-dim);
 }

 /* ---------- OPTIONEN ---------- */
 .options {
   background: var(--surface);
 }

 .section-head {
   max-width: 640px;
   margin: 0 auto 46px;
   text-align: center;
 }

 .section-head h2 {
   font-size: 29px;
   margin-bottom: 12px;
 }

 .section-head p {
   color: var(--ink-soft);
   font-size: 15.5px;
 }

 .option-grid {
   display: grid;
   grid-template-columns: 1fr 1fr 1fr;
   gap: 0;
   border: 1px solid var(--line);
   border-radius: 16px;
   overflow: hidden;
   background: var(--surface-2);
 }

 .option-col {
   padding: 32px 26px;
   position: relative;
 }

 .option-col+.option-col {
   border-left: 1px solid var(--line);
 }

 .option-col.featured {
   background: rgba(47, 182, 166, 0.035);
 }

 .option-col .tag {
   font-family: "IBM Plex Mono", Consolas, monospace;
   font-size: 10.5px;
   letter-spacing: 0.08em;
   text-transform: uppercase;
   padding: 5px 9px;
   border-radius: 5px;
   display: inline-block;
   margin-bottom: 16px;
 }

 .col-hetzner .tag {
   background: rgba(47, 182, 166, 0.14);
   color: var(--business-dim);
 }

 .col-nas .tag {
   background: rgba(242, 163, 59, 0.16);
   color: var(--private-dim);
 }

 .col-other .tag {
   background: rgba(18, 23, 43, 0.06);
   color: var(--ink-soft);
 }

 .option-col h3 {
   font-size: 19px;
   margin-bottom: 6px;
 }

 .option-col .sub {
   color: var(--ink-soft);
   font-size: 13.5px;
   margin-bottom: 20px;
 }

 .option-col ul {
   list-style: none;
   display: grid;
   gap: 11px;
 }

 .option-col li {
   display: flex;
   gap: 8px;
   font-size: 13.5px;
   color: var(--ink);
   padding-top: 11px;
   border-top: 1px solid var(--line);
 }

 .option-col li:first-of-type {
   border-top: none;
   padding-top: 0;
 }

 .option-col li .ic {
   flex-shrink: 0;
   width: 16px;
   height: 16px;
   margin-top: 1px;
 }

 .col-hetzner .ic {
   color: var(--business-dim);
 }

 .col-nas .ic {
   color: var(--private-dim);
 }

 .col-other .ic {
   color: var(--ink-soft);
 }

 @media (max-width: 960px) {
   .option-grid {
     grid-template-columns: 1fr;
   }

   .option-col+.option-col {
     border-left: none;
     border-top: 1px solid var(--line);
   }
 }

 /* ---------- WIE 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);
 }

 .how .eyebrow::before {
   background: var(--business);
   box-shadow: 0 0 0 4px rgba(47, 182, 166, 0.18);
 }

 .step-grid {
   display: grid;
   grid-template-columns: repeat(2, 1fr);
   gap: 1px;
   background: rgba(255, 255, 255, 0.10);
   border-radius: 14px;
   overflow: hidden;
 }

 .step-card {
   background: var(--panel);
   padding: 30px;
 }

 .step-card .n {
   display: inline-flex;
   align-items: center;
   justify-content: center;
   width: 34px;
   height: 34px;
   border-radius: 9px;
   background: var(--business);
   color: #08211d;
   font-family: "IBM Plex Mono", Consolas, monospace;
   font-weight: 700;
   font-size: 13px;
   margin-bottom: 18px;
 }

 .step-card h3 {
   font-size: 17px;
   margin-bottom: 8px;
   color: #F4F6F4;
 }

 .step-card p {
   font-size: 14.5px;
   color: rgba(244, 246, 244, 0.62);
   line-height: 1.65;
 }

 .step-card .mono {
   display: inline-block;
   margin-top: 10px;
   background: rgba(255, 255, 255, 0.06);
   padding: 4px 8px;
   border-radius: 5px;
   color: #9fe8db;
   font-size: 12px;
 }

 @media (max-width: 720px) {
   .step-grid {
     grid-template-columns: 1fr;
   }
 }

 /* ---------- WAS BLEIBT GLEICH / WAS ÄNDERT SICH ---------- */
 .split {
   background: var(--surface-2);
 }

 .split-grid {
   display: grid;
   grid-template-columns: 1fr 1fr;
   gap: 20px;
 }

 .split-card {
   padding: 28px;
   border-radius: 12px;
   border: 1px solid var(--line);
 }

 .split-card.same {
   background: rgba(47, 182, 166, 0.05);
   border-color: rgba(47, 182, 166, 0.2);
 }

 .split-card.differs {
   background: rgba(242, 163, 59, 0.05);
   border-color: rgba(242, 163, 59, 0.22);
 }

 .split-card h3 {
   font-size: 16.5px;
   margin-bottom: 14px;
 }

 .split-card.same h3 {
   color: var(--business-dim);
 }

 .split-card.differs h3 {
   color: var(--private-dim);
 }

 .split-card ul {
   list-style: none;
   display: grid;
   gap: 10px;
 }

 .split-card li {
   font-size: 14px;
   color: var(--ink);
   display: flex;
   gap: 8px;
 }

 @media (max-width: 720px) {
   .split-grid {
     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;
   }
 }