  .download-choice-entry-box .completed-product-teaser { margin-top: 10px; }
  .completed-product-teaser {
    display: grid;
    grid-template-columns: 58px minmax(0, 1fr) 24px;
    gap: 10px;
    align-items: center;
    min-height: 82px;
    padding: 10px;
    border: 1px solid var(--warning-border);
    border-radius: var(--radius);
    background: var(--warning-soft);
    text-decoration: none;
  }
  .completed-product-teaser:hover {
    border-color: var(--accent);
    background: #fff4b8;
    text-decoration: none;
  }
  .completed-product-teaser__image {
    display: block;
    width: 58px;
    aspect-ratio: 1;
    border: 1px solid var(--border);
    border-radius: 7px;
    background: #fff;
    object-fit: contain;
  }
  .completed-product-teaser__copy { min-width: 0; }
  .completed-product-teaser__copy strong,
  .completed-product-teaser__copy span { display: block; }
  .completed-product-teaser__copy strong {
    color: var(--text);
    font-size: 13px;
    line-height: 1.45;
  }
  .completed-product-teaser__copy span {
    margin-top: 3px;
    color: var(--muted);
    font-size: 10px;
    line-height: 1.4;
  }
  .completed-product-teaser__arrow {
    color: var(--accent);
    font-size: 22px;
    font-weight: 800;
    line-height: 1;
  }

  .download-choice-page .page-panel {
    width: 100%;
    max-width: 1120px;
    margin: 0 auto;
  }
  .download-choice-page .page-title { margin-bottom: 8px; }
  .download-method-lead {
    max-width: 720px;
    margin: 0 0 22px;
    color: var(--muted);
    font-size: 14px;
  }
  .download-method-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
    align-items: stretch;
  }
  .download-method-card {
    display: flex;
    min-width: 0;
    min-height: 100%;
    flex-direction: column;
    padding: 20px;
    border: 1px solid var(--border-strong);
    border-radius: var(--radius);
    background: #fff;
  }
  .download-method-card--product {
    border-color: var(--warning-border);
    background: #fffdf3;
  }
  .download-method-card__eyebrow {
    align-self: flex-start;
    margin-bottom: 13px;
    padding: 4px 8px;
    border: 1px solid var(--border);
    border-radius: 999px;
    color: var(--muted);
    background: #f5f5f4;
    font-size: 10px;
    font-weight: 800;
    line-height: 1.3;
  }
  .download-method-card--product .download-method-card__eyebrow {
    border-color: var(--warning-border);
    color: var(--text);
    background: var(--warning);
  }
  .download-method-card__format {
    display: grid;
    place-items: center;
    width: 88px;
    height: 88px;
    margin-bottom: 18px;
    border: 2px solid var(--accent);
    border-radius: 18px;
    color: var(--accent);
    background: #fff;
    font-size: 22px;
    font-weight: 900;
    letter-spacing: .04em;
  }
  .download-method-card__format--pdf {
    color: #fff;
    background: var(--accent);
  }
  .download-method-card h2 {
    margin: 0;
    color: var(--text);
    font-size: 19px;
    line-height: 1.45;
  }
  .download-method-card__description {
    margin: 8px 0 18px;
    color: var(--muted);
    font-size: 13px;
    line-height: 1.65;
  }
  .download-method-card .download-method-card__button {
    width: 100%;
    justify-content: center;
    min-height: 52px;
    margin-top: auto;
    text-align: center;
  }
  .download-method-product__image-link {
    display: block;
    margin-bottom: 16px;
  }
  .download-method-product__image {
    display: block;
    width: 100%;
    aspect-ratio: 1;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    background: #fff;
    object-fit: contain;
  }
  .download-method-product__image-link:hover .download-method-product__image {
    border-color: var(--accent);
  }
  .download-method-product__name {
    margin: 7px 0 0;
    color: var(--text);
    font-size: 13px;
    font-weight: 700;
    line-height: 1.5;
  }
  .download-method-product__price {
    margin: 8px 0 0;
    color: var(--text);
    font-size: 21px;
    font-weight: 900;
    line-height: 1.3;
  }
  .download-method-product__price small {
    color: var(--muted);
    font-size: 10px;
    font-weight: 500;
  }
  .download-method-product__spec {
    margin: 6px 0 18px;
    color: var(--muted);
    font-size: 12px;
    line-height: 1.55;
  }
  .download-method-product__benefit {
    margin: 0 0 16px;
    padding: 10px 12px;
    border-left: 4px solid var(--warning);
    color: var(--text);
    background: #fff;
    font-size: 12px;
    font-weight: 700;
    line-height: 1.55;
  }
  .download-method-note {
    margin: 18px 0 0;
    color: var(--muted);
    font-size: 11px;
    line-height: 1.7;
    text-align: center;
  }
  .download-method-note a,
  .download-method-back { text-decoration: underline; text-underline-offset: 3px; }
  .download-method-back {
    display: block;
    width: fit-content;
    margin: 14px auto 0;
    color: var(--muted);
    font-size: 12px;
  }

  @media (max-width: 760px) {
    .download-method-grid { grid-template-columns: 1fr; }
    .download-method-card { padding: 18px; }
    .download-method-card__format { width: 76px; height: 76px; margin-bottom: 14px; border-radius: 15px; font-size: 19px; }
    .download-method-product__image { max-height: 72vw; }
  }