.ticket-wrap {
      padding: 2.2rem 0 3rem;
    }
    .ticket-card {
      background: #fff;
      border: 1px solid rgba(148, 163, 184, 0.35);
      border-radius: 20px;
      box-shadow: 0 14px 30px rgba(15, 23, 42, 0.06);
      padding: 1.35rem;
      max-width: 920px;
      margin-inline: auto;
    }
    .ticket-card h1 {
      margin: 0 0 0.6rem;
      font-size: 1.75rem;
      letter-spacing: -0.02em;
    }
    .ticket-sub {
      margin: 0 0 1.25rem;
      color: var(--muted);
      line-height: 1.5;
    }
    .ticket-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 1rem;
      align-items: start;
    }
    .tfg {
      display: grid;
      gap: 0.35rem;
    }
    .tfg label {
      font-weight: 650;
      font-size: 0.95rem;
    }
    .tfg input, .tfg select, .tfg textarea {
      width: 100%;
      border: 1px solid rgba(148, 163, 184, 0.55);
      border-radius: 14px;
      padding: 0.8rem 0.85rem;
      font: inherit;
      background: #fff;
      outline: none;
    }
    .tfg textarea {
      min-height: 140px;
      resize: vertical;
    }
    .tfg input:focus, .tfg select:focus, .tfg textarea:focus {
      border-color: rgba(22, 101, 52, 0.65);
      box-shadow: 0 0 0 4px rgba(22, 101, 52, 0.10);
    }
    .full {
      grid-column: 1 / -1;
    }
    .req {
      color: #b91c1c;
      font-weight: 800;
      margin-left: 0.15rem;
    }
    .terms {
      display: grid;
      gap: 0.45rem;
      padding: 0.75rem 0.9rem;
      border: 1px solid rgba(148, 163, 184, 0.35);
      border-radius: 16px;
      background: rgba(15, 23, 42, 0.02);
    }

    .ticket-terms-box {
      border: 1px solid rgba(148, 163, 184, 0.35);
      border-radius: 14px;
      background: rgba(255, 255, 255, 0.72);
      padding: 0.8rem 0.9rem;
      max-height: min(240px, 34vh);
      overflow: auto;
      -webkit-overflow-scrolling: touch;
      scrollbar-width: thin;
    }
    .ticket-terms-title {
      font-weight: 900;
      letter-spacing: -0.01em;
      margin: 0 0 0.55rem;
      color: var(--text);
    }
    .ticket-terms-box ol {
      margin: 0;
      padding-left: 1.15rem;
      display: grid;
      gap: 0.7rem;
    }
    .ticket-terms-box li {
      color: var(--text);
      line-height: 1.35;
    }
    .ticket-terms-box li strong {
      display: inline-block;
      margin-bottom: 0.15rem;
    }
    .ticket-terms-box li p {
      margin: 0.35rem 0 0;
      color: var(--muted);
    }
    .terms label {
      display: flex;
      gap: 0.65rem;
      align-items: flex-start;
      line-height: 1.35;
      color: #0f172a;
    }
    .terms input[type="checkbox"] {
      margin-top: 0.15rem;
      width: 18px;
      height: 18px;
      accent-color: #166534;
    }
    .terms-footer {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 1rem;
      margin-top: 0.15rem;
    }
    .terms-footer .ticket-note {
      margin: 0;
    }
    .ticket-actions {
      display: flex;
      gap: 0.75rem;
      align-items: center;
      justify-content: flex-end;
      margin: 0;
    }
    .ticket-btn {
      border: 0;
      border-radius: 999px;
      padding: 0.85rem 1.15rem;
      font-weight: 750;
      cursor: pointer;
      background: #166534;
      color: #fff;
      box-shadow: 0 10px 24px rgba(22, 101, 52, 0.22);
    }
    .ticket-btn:hover {
      filter: brightness(0.98);
      transform: translateY(-1px);
    }
    .ticket-note {
      color: var(--muted);
      font-size: 0.92rem;
      margin: 0;
    }
    .ticket-error {
      color: #b91c1c;
      font-weight: 650;
      margin: 0.5rem 0 0;
      min-height: 1.1em;
    }
    @media (max-width: 860px) {
      .ticket-grid {
        grid-template-columns: 1fr;
      }
      .terms-footer {
        flex-direction: column;
        align-items: stretch;
      }
      .ticket-actions {
        justify-content: stretch;
      }
      .ticket-btn {
        width: 100%;
      }
    }
