
    @import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&family=Space+Grotesk:wght@500;700;800&family=JetBrains+Mono:wght@500;700&display=swap');
    
    :root {
      --brand-teal: #50B2B2;
      --brand-teal-light: #F0FAFA;
      --brand-teal-dark: #205E5E;
      --brand-orange: #ff7a1a;
      --brand-orange-light: #FFF5EE;
      --brand-orange-dark: #C65200;
      --slate-50: #f8fafc;
      --slate-100: #f1f5f9;
      --slate-200: #e2e8f0;
      --slate-300: #cbd5e1;
      --slate-550: #64748b;
      --slate-600: #475569;
      --slate-800: #1e293b;
      --slate-900: #0f172a;
    }

    * {
      box-sizing: border-box;
    }

    body {
      background-color: #fafbfc;
      margin: 0;
      padding: 0;
      font-family: 'Inter', system-ui, -apple-system, sans-serif;
      color: var(--slate-800);
    }

    .kontactix-amp {
      font-family: 'Inter', system-ui, -apple-system, sans-serif;
      font-weight: 700;
    }

    .kontactix-container {
      max-width: 1000px;
      margin: 40px auto;
      padding: 0 20px;
    }

    .kontactix-article {
      color: var(--slate-600);
      line-height: 1.5;
      background-color: #ffffff;
      border: 1px solid var(--slate-100);
      border-radius: 24px;
      padding: 48px;
      box-shadow: 0 4px 30px rgba(15, 23, 42, 0.02);
    }

    @media (max-width: 640px) {
      .kontactix-article {
        padding: 24px;
      }
    }

    h1, h2, h3, h4 {
      font-family: 'Space Grotesk', sans-serif;
      color: var(--slate-900);
      margin-top: 0;
    }

    .score-banner {
      background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
      color: #ffffff;
      border-radius: 20px;
      padding: 32px;
      margin-bottom: 32px;
      position: relative;
      overflow: hidden;
    }

    .score-display {
      display: flex;
      align-items: baseline;
      gap: 12px;
    }

    .score-number {
      font-family: 'Space Grotesk', sans-serif;
      font-size: 52px;
      font-weight: 900;
      color: var(--brand-teal);
    }

    .score-max {
      font-size: 20px;
      color: #94a3b8;
      font-weight: 700;
    }

    .badge {
      display: inline-block;
      padding: 6px 14px;
      border-radius: 8px;
      font-size: 12px;
      font-weight: 800;
      text-transform: uppercase;
      letter-spacing: 0.05em;
    }

    .badge-growth { background: #e2e8f0; color: #1e293b; }
    .badge-ready { background: #ccfbf1; color: #0f766e; }
    .badge-strong { background: #dbeafe; color: #1e40af; }
    .badge-candidate { background: #ffedd5; color: #c2410c; }

    .question-card {
      background: #ffffff;
      border: 1px solid var(--slate-200);
      border-radius: 16px;
      padding: 24px;
      margin-bottom: 24px;
      transition: all 0.2s ease;
    }

    .question-card:hover {
      border-color: var(--slate-300);
    }

    .question-title {
      font-size: 18px;
      font-weight: 800;
      color: var(--slate-900);
      margin-bottom: 16px;
      display: flex;
      justify-content: space-between;
      align-items: flex-start;
      gap: 12px;
    }

    .question-step {
      font-size: 12px;
      background: var(--slate-100);
      color: var(--slate-550);
      padding: 4px 10px;
      border-radius: 6px;
      font-weight: 700;
      white-space: nowrap;
    }

    .options-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 12px;
    }

    .option-btn {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 14px 18px;
      border-radius: 12px;
      border: 1px solid var(--slate-200);
      background: #ffffff;
      cursor: pointer;
      font-size: 14px;
      font-weight: 600;
      color: var(--slate-800);
      transition: all 0.2s ease;
      text-align: left;
    }

    .option-btn:hover {
      border-color: var(--brand-teal);
      background: var(--brand-teal-light);
    }

    .option-btn.selected {
      border-color: var(--brand-teal);
      background: var(--brand-teal-light);
      box-shadow: 0 0 0 2px rgba(80, 178, 178, 0.2);
      color: var(--slate-900);
    }

    .option-points {
      font-size: 11px;
      font-weight: 700;
      background: var(--slate-100);
      color: var(--slate-600);
      padding: 2px 8px;
      border-radius: 4px;
      white-space: nowrap;
    }

    .option-btn.selected .option-points {
      background: var(--brand-teal);
      color: #ffffff;
    }

    .checklist-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 12px;
      margin-top: 16px;
    }

    .checklist-item {
      display: flex;
      align-items: center;
      gap: 12px;
      padding: 14px 18px;
      border-radius: 12px;
      border: 1px solid var(--slate-200);
      background: #ffffff;
      cursor: pointer;
      font-size: 14px;
      font-weight: 500;
      user-select: none;
      transition: all 0.2s ease;
    }

    .checklist-item:hover {
      border-color: var(--brand-teal);
      background: var(--slate-50);
    }

    .checklist-item.checked {
      border-color: var(--brand-teal);
      background: var(--brand-teal-light);
      font-weight: 700;
      color: var(--slate-900);
    }

    .checklist-item.checked:hover {
      background: var(--brand-teal-light);
    }

    .checkbox-box {
      width: 18px;
      height: 18px;
      border-radius: 4px;
      border: 2px solid var(--slate-300);
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
      color: transparent;
      transition: all 0.2s ease;
      background: #ffffff;
    }

    .checklist-item.checked .checkbox-box {
      background: var(--brand-teal);
      border-color: var(--brand-teal);
      color: #ffffff;
    }

    /* Result Card (Dark Background) */
    .result-card {
      background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
      color: #ffffff;
      border: 1px solid #334155;
      border-radius: 20px;
      padding: 32px;
      margin-top: 32px;
      box-shadow: 0 12px 30px rgba(15, 23, 42, 0.25);
    }

    .contact-cta-section {
      margin-top: 48px;
      padding-top: 48px;
      padding-bottom: 40px;
      border-top: 1px solid var(--slate-100);
      background-color: var(--slate-50);
      margin-left: -48px;
      margin-right: -48px;
      margin-bottom: -48px;
      padding-left: 48px;
      padding-right: 48px;
      border-bottom-left-radius: 24px;
      border-bottom-right-radius: 24px;
      text-align: center;
    }

    @media (max-width: 640px) {
      .contact-cta-section {
        margin-left: -24px;
        margin-right: -24px;
        margin-bottom: -24px;
        padding-left: 24px;
        padding-right: 24px;
      }
    }

    .cta-button-box {
      display: block;
      background-color: #ff7a1a;
      color: #ffffff;
      padding: 32px 40px;
      border-radius: 16px;
      box-shadow: 0 12px 24px rgba(255, 122, 26, 0.22);
      text-decoration: none;
      margin: 0 auto;
      max-width: 280px;
      transition: transform 0.3s ease;
    }

    .cta-button-box:hover {
      transform: scale(1.02);
    }

    .cta-kicker {
      font-family: 'Space Grotesk', sans-serif;
      font-size: 11px;
      font-weight: 800;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      line-height: 1;
    }

    .cta-main-text {
      font-family: 'Space Grotesk', sans-serif;
      font-size: 20px;
      font-weight: 700;
      margin-top: 6px;
      line-height: 1.2;
    }

    .footer-links {
      display: flex;
      justify-content: center;
      gap: 24px;
      margin-top: 32px;
      font-family: 'JetBrains Mono', monospace;
      font-weight: 700;
      font-size: 13px;
      color: var(--slate-550);
    }

    .footer-links a {
      color: var(--slate-550);
      text-decoration: none;
      display: flex;
      align-items: center;
      gap: 8px;
    }

    .footer-links a:hover {
      color: var(--brand-orange);
    }

    .dot-orange { width: 8px; height: 8px; border-radius: 50%; background: #ff7a1a; }
    .dot-teal { width: 8px; height: 8px; border-radius: 50%; background: #50B2B2; }
  