  .kt-section {
    max-width: 760px;
    margin: 0 auto;
    padding: 96px 24px 80px;
    font-family: 'Inter', system-ui, sans-serif;
    color: #1f2937;
    line-height: 1.7;
  }

  .kt-eyebrow {
    display: inline-block;
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.8rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #b45309;
    margin-bottom: 16px;
  }

  .kt-section h1 {
    font-family: 'Fraunces', serif;
    font-size: clamp(2rem, 4vw, 2.75rem);
    color: #111827;
    margin: 0 0 24px;
    line-height: 1.2;
  }

  .kt-lede {
    font-size: 1.15rem;
    color: #374151;
    margin-bottom: 40px;
  }

  .kt-figure {
    margin: 0 0 40px;
  }

  .kt-figure img {
    width: 100%;
    height: auto;
    border-radius: 16px;
    display: block;
  }

  .kt-section h2 {
    font-family: 'Fraunces', serif;
    font-size: 1.5rem;
    color: #111827;
    margin: 48px 0 16px;
  }

  .kt-section p {
    margin: 0 0 16px;
  }

  .kt-steps {
    list-style: none;
    counter-reset: kt-step;
    padding: 0;
    margin: 24px 0;
  }

  .kt-steps li {
    counter-increment: kt-step;
    position: relative;
    padding: 0 0 20px 44px;
    border-left: 2px solid #e5e7eb;
    margin-left: 15px;
  }

  .kt-steps li:last-child {
    border-left-color: transparent;
    padding-bottom: 0;
  }

  .kt-steps li::before {
    content: counter(kt-step);
    position: absolute;
    left: -16px;
    top: 0;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: #111827;
    color: #fff;
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .kt-steps strong {
    display: block;
    color: #111827;
    margin-bottom: 4px;
  }

  .kt-box {
    background: #fef3e7;
    border: 1px solid #fcd9a8;
    border-radius: 12px;
    padding: 24px;
    margin: 32px 0;
  }

  .kt-box strong {
    color: #92400e;
  }

  .kt-contact {
    background: #f3f4f6;
    border-radius: 12px;
    padding: 24px;
    margin-top: 40px;
  }

  .kt-contact a {
    color: #b45309;
    font-weight: 600;
  }