@charset "utf-8";
/* CSS Document */

    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }



    /* ─── SECTION ─────────────────────────────────────────── */
    section.datasheet-cta {
      background: #fff;
      border-top: 1px solid #e2dfd8;
      border-bottom: 1px solid #e2dfd8;
      overflow: hidden;
      position: relative;
    }

    /* subtle ruled-paper texture via repeating gradient */
    section.datasheet-cta::before {
      content: '';
      position: absolute;
      inset: 0;
      background-image: repeating-linear-gradient(
        0deg,
        transparent,
        transparent 39px,
        #f0ede7 39px,
        #f0ede7 40px
      );
      opacity: 0.45;
      pointer-events: none;
    }

    .cta-inner {
      position: relative;
      max-width: 1400px;
      margin: 0 auto;
      padding: 5rem 2.5rem;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 4rem;
      align-items: center;
    }

    /* ─── LEFT COLUMN ─────────────────────────────────────── */
    .cta-left {}

    .cta-eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      font-size: 10px;
      font-weight: 500;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      color: #9a8e7e;
      margin-bottom: 1.5rem;
    }

    .cta-eyebrow::before {
      content: '';
      display: block;
      width: 28px;
      height: 1px;
      background: #9a8e7e;
    }

    .cta-heading {

      font-size: clamp(36px, 4vw, 52px);
      font-weight: 500;
      line-height: 1.1;
      color: #1a1814;
      letter-spacing: -0.01em;
      margin-bottom: 1.5rem;
    }

    .cta-heading em {
      font-style: italic;
      color: #7a6e5f;
    }

    .cta-body {
      font-size: 15px;
      font-weight: 300;
      line-height: 1.75;
      color: #5a5448;
      max-width: 420px;
      margin-bottom: 2.5rem;
    }

    .cta-actions {
      display: flex;
      align-items: center;
      gap: 1.25rem;
      flex-wrap: wrap;
    }

    .btn-primary {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      padding: 13px 28px;
      background: #1a1814;
      color: #f4f2ee;

      font-size: 13px;
      font-weight: 500;
      letter-spacing: 0.06em;
      text-transform: uppercase;
      text-decoration: none;
      border-radius: 2px;
      transition: background 0.2s, transform 0.15s;
    }

    .btn-primary:hover {
      background: #3a3530;
      transform: translateY(-1px);
    }

    .btn-primary svg {
      width: 16px;
      height: 16px;
      flex-shrink: 0;
    }

    .btn-secondary {
      font-size: 13px;
      font-weight: 400;
      color: #7a6e5f;
      text-decoration: none;
      letter-spacing: 0.04em;
      border-bottom: 1px solid #c8c0b4;
      padding-bottom: 2px;
      transition: color 0.15s, border-color 0.15s;
    }

    .btn-secondary:hover {
      color: #1a1814;
      border-color: #1a1814;
    }

    /* ─── RIGHT COLUMN ────────────────────────────────────── */
    .cta-right {
      display: flex;
      flex-direction: column;
      gap: 12px;
    }

    /* stat strip */
    .stat-strip {
      display: flex;
      gap: 0;
      border: 1px solid #e2dfd8;
      border-radius: 4px;
      overflow: hidden;
      margin-bottom: 8px;
    }

    .stat {
      flex: 1;
      padding: 1.1rem 1.25rem;
      background: #faf9f6;
      border-right: 1px solid #e2dfd8;
      text-align: center;
    }

    .stat:last-child { border-right: none; }

    .stat-num {

      font-size: 28px;
      font-weight: 600;
      color: #1a1814;
      line-height: 1;
      display: block;
    }

    .stat-label {
      font-size: 10px;
      font-weight: 400;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: #9a8e7e;
      margin-top: 4px;
      display: block;
    }

    /* series cards */
    .series-list {
      display: flex;
      flex-direction: column;
      gap: 0;
      border: 1px solid #e2dfd8;
      border-radius: 4px;
      overflow: hidden;
    }

    .series-row {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 0.85rem 1.25rem;
      background: #fff;
      border-bottom: 1px solid #f0ede7;
      transition: background 0.12s;
      text-decoration: none;
      color: inherit;
    }

    .series-row:last-child { border-bottom: none; }
    .series-row:hover { background: #faf9f6; }

    .series-row:hover .series-arrow { transform: translateX(3px); }

    .series-left {
      display: flex;
      align-items: center;
      gap: 14px;
    }

    .series-icon {
      width: 34px;
      height: 40px;
      background: #f4f2ee;
      border: 1px solid #e2dfd8;
      border-radius: 3px;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
      position: relative;
    }

    .series-icon::after {
      content: '';
      position: absolute;
      top: 0; right: 0;
      border-left: 8px solid transparent;
      border-bottom: 8px solid #e2dfd8;
      border-radius: 0 2px 0 0;
    }

    .series-icon svg {
      width: 14px;
      height: 14px;
      color: #b0a898;
    }

    .series-name {
      font-size: 13px;
      font-weight: 500;
      color: #1a1814;
    }

    .series-range {
      font-size: 11px;
      color: #b0a898;
      margin-top: 1px;
      font-weight: 300;
    }

    .series-right {
      display: flex;
      align-items: center;
      gap: 12px;
    }

    .series-count {
      font-size: 11px;
      color: #b0a898;
      letter-spacing: 0.04em;
    }

    .series-arrow {
      width: 16px;
      height: 16px;
      color: #c8c0b4;
      transition: transform 0.15s;
    }

    /* ─── RESPONSIVE ──────────────────────────────────────── */
    @media (max-width: 768px) {
      .cta-inner {
        grid-template-columns: 1fr;
        gap: 2.5rem;
        padding: 3rem 1.5rem;
      }

      .stat-strip { display: grid; grid-template-columns: 1fr 1fr; }
      .stat:nth-child(2) { border-right: none; }
      .stat:nth-child(3), .stat:nth-child(4) { border-top: 1px solid #e2dfd8; }
    }

