
    @import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&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: #FF780F;
      --brand-orange-light: #FFF5EE;
      --brand-orange-dark: #C65200;
      --slate-50: #f8fafc;
      --slate-100: #f1f5f9;
      --slate-200: #e2e8f0;
      --slate-300: #cbd5e1;
      --slate-500: #64748b;
      --slate-650: #475569;
      --slate-700: #334155;
      --slate-800: #1e293b;
      --slate-900: #0f172a;
    }

    body {
      background-color: #fafbfc;
      margin: 0;
      padding: 0;
      font-family: 'Inter', system-ui, -apple-system, sans-serif;
      -webkit-font-smoothing: antialiased;
    }

    .kontactix-amp {
      font-family: 'Inter', system-ui, -apple-system, sans-serif;
      font-weight: 700;
    }

    .kontactix-container {
      max-width: 1000px;
      margin: 40px auto;
      padding: 0 24px;
      box-sizing: border-box;
    }

    .kontactix-article {
      color: var(--slate-650);
      line-height: 1.8;
      background-color: #ffffff;
      border: 1px solid var(--slate-100);
      border-radius: 24px;
      padding: 56px;
      box-shadow: 0 4px 30px rgba(15, 23, 42, 0.02);
      box-sizing: border-box;
    }

    @media (max-width: 768px) {
      .kontactix-article {
        padding: 32px 20px;
        border-radius: 16px;
      }
      .kontactix-container {
        margin: 16px auto;
        padding: 0 12px;
      }
    }

    .kontactix-header {
      text-align: center;
      margin-bottom: 36px;
    }

    .kontactix-tag {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      border-radius: 9999px;
      background-color: var(--brand-teal-light);
      border: 1px solid rgba(80, 178, 178, 0.15);
      padding: 6px 16px;
      font-size: 11px;
      font-weight: 700;
      color: var(--brand-teal-dark);
      margin-bottom: 24px;
      font-family: 'JetBrains Mono', monospace;
      text-transform: uppercase;
      letter-spacing: 0.06em;
    }

    .kontactix-tag-dot {
      height: 6px;
      width: 6px;
      border-radius: 50%;
      background-color: var(--brand-orange);
    }

    .kontactix-title {
      font-family: 'Space Grotesk', system-ui, sans-serif;
      font-size: 34px;
      line-height: 1.28;
      font-weight: 800;
      color: var(--slate-900);
      margin: 0 auto 16px auto;
      letter-spacing: -0.03em;
      max-width: 950px;
    }

    .kontactix-subtitle {
      font-family: 'Space Grotesk', system-ui, sans-serif;
      font-size: 18px;
      line-height: 1.45;
      font-weight: 600;
      color: var(--brand-teal-dark);
      margin: 0 auto 24px auto;
      max-width: 850px;
    }

    @media (max-width: 640px) {
      .kontactix-title {
        font-size: 24px;
      }
      .kontactix-subtitle {
        font-size: 15px;
      }
    }

    .kontactix-meta {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 16px;
      font-size: 13px;
      color: var(--slate-500);
      font-weight: 500;
      flex-wrap: wrap;
    }

    /* Customer & Industry Info Card */
    .kontactix-info-card {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 16px;
      background-color: var(--slate-50);
      border: 1px solid var(--slate-200);
      border-radius: 16px;
      padding: 22px 24px;
      margin: 28px 0 36px 0;
    }

    @media (max-width: 768px) {
      .kontactix-info-card {
        grid-template-columns: repeat(2, 1fr);
      }
    }

    @media (max-width: 480px) {
      .kontactix-info-card {
        grid-template-columns: 1fr;
      }
    }

    .kontactix-info-item-label {
      font-family: 'JetBrains Mono', monospace;
      font-size: 11px;
      font-weight: 700;
      color: var(--brand-teal-dark);
      text-transform: uppercase;
      letter-spacing: 0.08em;
      margin-bottom: 4px;
    }

    .kontactix-info-item-value {
      font-size: 14.5px;
      font-weight: 700;
      color: var(--slate-900);
      line-height: 1.4;
    }

    /* Article Banner & Images */
    .kontactix-cover {
      border-radius: 20px;
      overflow: hidden;
      margin: 28px 0 10px 0;
      border: 1px solid var(--slate-100);
      box-shadow: 0 10px 30px -10px rgba(15, 23, 42, 0.06);
    }

    .kontactix-cover img {
      width: 100%;
      height: 420px;
      object-fit: cover;
      display: block;
    }

    .kontactix-embedded-image {
      border-radius: 16px;
      overflow: hidden;
      margin: 28px 0 10px 0;
      border: 1px solid var(--slate-100);
      box-shadow: 0 8px 24px rgba(15, 23, 42, 0.04);
    }

    .kontactix-embedded-image img {
      width: 100%;
      height: 340px;
      object-fit: cover;
      display: block;
    }

    @media (max-width: 640px) {
      .kontactix-cover img {
        height: 220px;
      }
      .kontactix-embedded-image img {
        height: 200px;
      }
    }

    .kontactix-caption {
      text-align: center;
      font-size: 12.5px;
      color: var(--slate-500);
      font-style: italic;
      margin-bottom: 32px;
      font-weight: 500;
    }

    /* Section Headings with Graphical Icons */
    .kontactix-section-heading {
      font-family: 'Space Grotesk', system-ui, sans-serif;
      font-size: 23px;
      font-weight: 700;
      color: var(--slate-900);
      margin-top: 48px;
      margin-bottom: 20px;
      border-bottom: 1px solid var(--slate-100);
      padding-bottom: 12px;
      display: flex;
      align-items: center;
      gap: 14px;
    }

    .kontactix-sub-heading {
      font-family: 'Space Grotesk', system-ui, sans-serif;
      font-size: 18px;
      font-weight: 700;
      color: var(--slate-900);
      margin-top: 28px;
      margin-bottom: 12px;
      display: flex;
      align-items: center;
      gap: 10px;
    }

    .kontactix-icon-badge {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      background: linear-gradient(135deg, var(--brand-teal) 0%, var(--brand-teal-dark) 100%);
      color: #ffffff;
      width: 36px;
      height: 36px;
      border-radius: 10px;
      flex-shrink: 0;
      box-shadow: 0 4px 12px rgba(80, 178, 178, 0.25);
    }

    .kontactix-icon-badge svg {
      width: 18px;
      height: 18px;
      stroke-width: 2;
      stroke: currentColor;
      fill: none;
    }

    .kontactix-sub-icon {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      background-color: var(--brand-teal-light);
      color: var(--brand-teal-dark);
      width: 28px;
      height: 28px;
      border-radius: 8px;
      flex-shrink: 0;
      border: 1px solid rgba(80, 178, 178, 0.2);
    }

    .kontactix-sub-icon svg {
      width: 15px;
      height: 15px;
      stroke-width: 2;
      stroke: currentColor;
      fill: none;
    }

    .kontactix-paragraph {
      font-size: 16px;
      margin-bottom: 16px;
      color: var(--slate-650);
      line-height: 1.75;
    }

    .kontactix-bullet-list {
      margin: 16px 0 24px 0;
      padding-left: 24px;
    }

    .kontactix-bullet-list li {
      margin-bottom: 10px;
      font-size: 15.5px;
      color: var(--slate-650);
      line-height: 1.7;
    }

    .kontactix-bullet-list li strong {
      color: var(--slate-900);
    }

    .kontactix-callout {
      border-left: 4px solid var(--brand-orange);
      background-color: var(--brand-orange-light);
      border-radius: 0 16px 16px 0;
      padding: 24px 28px;
      margin: 28px 0;
    }

    .kontactix-callout-teal {
      border-left: 4px solid var(--brand-teal);
      background-color: var(--brand-teal-light);
      border-radius: 0 16px 16px 0;
      padding: 24px 28px;
      margin: 28px 0;
    }

    .kontactix-callout-text {
      margin: 0;
      font-size: 16px;
      font-weight: 600;
      color: var(--slate-900);
      line-height: 1.65;
    }

    /* Flow Banner */
    .kontactix-flow-banner {
      background: linear-gradient(135deg, var(--slate-900) 0%, var(--brand-teal-dark) 100%);
      color: #ffffff;
      border-radius: 14px;
      padding: 18px 24px;
      margin: 20px 0 24px 0;
      font-size: 14.5px;
      line-height: 1.7;
      font-family: 'JetBrains Mono', monospace;
      font-weight: 600;
      box-shadow: 0 8px 24px rgba(15, 23, 42, 0.12);
      overflow-x: auto;
    }

    /* Vertical Flow Box */
    .kontactix-vertical-flow {
      background-color: var(--slate-50);
      border: 1px solid var(--slate-200);
      border-radius: 14px;
      padding: 20px 24px;
      margin: 20px 0 24px 0;
      font-family: 'JetBrains Mono', monospace;
      font-size: 14px;
      font-weight: 700;
      color: var(--brand-teal-dark);
      line-height: 1.9;
    }

    /* Speech / Dialog Bubble */
    .kontactix-dialog-block {
      background: linear-gradient(to right, var(--brand-teal-light), #ffffff);
      border: 1px solid var(--slate-200);
      border-left: 4px solid var(--brand-teal);
      border-radius: 0 14px 14px 0;
      padding: 16px 20px;
      margin: 14px 0;
      font-size: 15px;
      font-style: italic;
      color: var(--slate-800);
      font-weight: 500;
    }

    .kontactix-dialog-response {
      background: linear-gradient(to right, var(--brand-orange-light), #ffffff);
      border: 1px solid var(--slate-200);
      border-left: 4px solid var(--brand-orange);
      border-radius: 0 14px 14px 0;
      padding: 16px 20px;
      margin: 14px 0;
      font-size: 15px;
      font-style: italic;
      color: var(--slate-900);
      font-weight: 600;
    }

    /* Lead Card & Data Card */
    .kontactix-lead-profile-card {
      background: #ffffff;
      border: 2px solid var(--brand-teal);
      border-radius: 16px;
      padding: 24px 28px;
      margin: 20px 0 28px 0;
      box-shadow: 0 6px 20px rgba(80, 178, 178, 0.08);
    }

    .kontactix-lead-profile-title {
      font-family: 'Space Grotesk', system-ui, sans-serif;
      font-size: 16px;
      font-weight: 700;
      color: var(--brand-teal-dark);
      text-transform: uppercase;
      letter-spacing: 0.05em;
      margin-bottom: 14px;
      padding-bottom: 8px;
      border-bottom: 1px solid var(--slate-100);
      display: flex;
      align-items: center;
      gap: 8px;
    }

    .kontactix-lead-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 12px 20px;
    }

    @media (max-width: 640px) {
      .kontactix-lead-grid {
        grid-template-columns: 1fr;
      }
    }

    .kontactix-lead-item {
      font-size: 14px;
      line-height: 1.5;
    }

    .kontactix-lead-label {
      font-weight: 700;
      color: var(--slate-700);
    }

    .kontactix-lead-val {
      color: var(--slate-900);
      font-weight: 600;
    }

    /* Feature & Division of Labor Grid */
    .kontactix-division-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 20px;
      margin: 24px 0 32px 0;
    }

    @media (max-width: 768px) {
      .kontactix-division-grid {
        grid-template-columns: 1fr;
      }
    }

    .kontactix-division-card {
      background: #ffffff;
      border: 1px solid var(--slate-200);
      border-radius: 16px;
      padding: 24px;
      box-sizing: border-box;
    }

    .kontactix-division-card.ai-card {
      border-top: 4px solid var(--brand-teal);
    }

    .kontactix-division-card.human-card {
      border-top: 4px solid var(--brand-orange);
    }

    .kontactix-division-title {
      font-family: 'Space Grotesk', system-ui, sans-serif;
      font-size: 17px;
      font-weight: 700;
      color: var(--slate-900);
      margin-bottom: 14px;
      display: flex;
      align-items: center;
      gap: 8px;
    }

    /* Key Solution Highlights */
    .kontactix-highlights-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 16px;
      margin: 24px 0 32px 0;
    }

    @media (max-width: 768px) {
      .kontactix-highlights-grid {
        grid-template-columns: 1fr;
      }
    }

    .kontactix-highlight-card {
      background: var(--slate-50);
      border: 1px solid var(--slate-200);
      border-radius: 14px;
      padding: 18px 20px;
    }

    .kontactix-highlight-badge-row {
      display: flex;
      align-items: center;
      gap: 8px;
      margin-bottom: 6px;
    }

    .kontactix-highlight-title {
      font-family: 'Space Grotesk', system-ui, sans-serif;
      font-size: 16px;
      font-weight: 700;
      color: var(--slate-900);
      margin-bottom: 6px;
    }

    .kontactix-highlight-desc {
      font-size: 14px;
      color: var(--slate-650);
      margin: 0;
      line-height: 1.6;
    }

    /* Table Styling */
    .kontactix-table-wrapper {
      width: 100%;
      overflow-x: auto;
      margin: 24px 0 32px 0;
      border: 1px solid var(--slate-200);
      border-radius: 14px;
      box-shadow: 0 2px 10px rgba(15, 23, 42, 0.02);
    }

    .kontactix-table {
      width: 100%;
      border-collapse: collapse;
      text-align: left;
      font-size: 14.5px;
    }

    .kontactix-table th {
      background-color: var(--slate-100);
      color: var(--slate-900);
      font-family: 'Space Grotesk', system-ui, sans-serif;
      font-weight: 700;
      padding: 14px 18px;
      border-bottom: 1px solid var(--slate-200);
    }

    .kontactix-table td {
      padding: 14px 18px;
      border-bottom: 1px solid var(--slate-200);
      color: var(--slate-700);
      line-height: 1.6;
    }

    .kontactix-table tr:last-child td {
      border-bottom: none;
    }

    .kontactix-table tr:nth-child(even) {
      background-color: var(--slate-50);
    }

    .kontactix-table .kpi-num {
      font-family: 'JetBrains Mono', monospace;
      font-weight: 700;
      color: var(--brand-teal-dark);
    }

    .kontactix-table .kpi-highlight {
      font-family: 'JetBrains Mono', monospace;
      font-weight: 800;
      color: var(--brand-orange-dark);
      background-color: var(--brand-orange-light);
      padding: 2px 8px;
      border-radius: 6px;
    }
  