
  .tc-modal { position: fixed; inset: 0; background: var(--overlay); backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px); display: none; align-items: center; justify-content: center; z-index: 10000; padding: 10px; overflow-y: auto; }
  .tc-modal-content { max-width: 480px; width: 100%; background: var(--purple-light); background: linear-gradient(180deg, #f3f1ff 0%, var(--white) 55%); border: 1px solid var(--purple-border); border-radius: 22px; overflow: hidden; box-shadow: 0 30px 80px rgba(60, 40, 160, 0.25), 0 10px 30px rgba(0,0,0,0.08); position: relative; max-height: 96vh; overflow-y: auto; }
  .tc-modal-header { padding: 18px 20px 12px; position: relative; display: flex; align-items: center; gap: 12px; border: none; }
  .tc-modal-close { position: absolute; top: 12px; right: 12px; width: 32px; height: 32px; border-radius: 50%; background: var(--white); border: 1px solid #ece9f7; color: #5b4e8a; font-size: 14px; cursor: pointer; display: inline-flex; align-items: center; justify-content: center; box-shadow: 0 2px 8px rgba(70,40,160,0.08); transition: transform .2s ease, background .2s ease; z-index: 2; }
  .tc-modal-close:hover { background: #f5f2ff; transform: rotate(90deg); }
  .tc-modal-icon { flex-shrink: 0; width: 54px; height: 54px; display: flex; align-items: center; justify-content: center; }
  .tc-modal-icon svg { width: 100%; height: 100%; display: block; }
  .tc-modal-heading { flex: 1; min-width: 0; padding-right: 32px; }
  .tc-modal-header h3 { font-size: clamp(17px, 2.6vw, 21px); font-weight: 800; color: #0f0a2e; margin: 0 0 4px; font-family: var(--font-montserrat); letter-spacing: -0.02em; line-height: 1.15; }
  .tc-modal-header h3 .tc-underline { position: relative; display: inline-block; }
  .tc-modal-header h3 .tc-underline::after { content: ''; position: absolute; left: 0; right: 0; bottom: -2px; height: 3px; border-radius: 3px; background: linear-gradient(90deg, #7c5cff, #b591ff); }
  .tc-modal-header p { color: #5b5677; font-size: 12px; line-height: 1.4; margin: 0; font-weight: 500; }
  .tc-modal-body { padding: 4px 20px 18px; }
  .tc-form-group { margin-bottom: 10px; }
  .tc-form-label { display: block; font-size: 12.5px; font-weight: 700; text-transform: none; letter-spacing: 0; color: #0f0a2e; margin-bottom: 5px; font-family: var(--font-montserrat); }
  .tc-form-label .req { color: var(--red-primary); margin-left: 2px; }
  .tc-input-wrap { position: relative; display: flex; align-items: center; background: var(--white); border: 1.5px solid var(--purple-border); border-radius: 12px; padding: 4px 6px 4px 5px; transition: border-color .2s ease, box-shadow .2s ease; }
  .tc-input-wrap:focus-within { border-color: #7c5cff; box-shadow: 0 0 0 3px rgba(124,92,255,0.12); }
  .tc-input-icon { width: 34px; height: 34px; border-radius: 9px; background: #efeaff; color: #6a4dd6; display: inline-flex; align-items: center; justify-content: center; flex-shrink: 0; }
  .tc-input-icon.wa { background: linear-gradient(135deg, var(--green-whatsapp) 0%, var(--green-whatsapp-dark) 100%); color: var(--white); box-shadow: 0 4px 10px rgba(37,211,102,0.3); }
  .tc-input-icon svg { width: 18px; height: 18px; stroke-width: 2; display: block; }
  .tc-input-icon.wa svg { width: 20px; height: 20px; }
  .tc-form-control { flex: 1; width: 100%; padding: 8px 10px; background: transparent; border: none; color: #0f0a2e; font-size: 14px; font-family: var(--font-montserrat); outline: none; font-weight: 500; }
  .tc-form-control::placeholder { color: #9a93b8; font-weight: 400; }
  .tc-select-wrap { position: relative; }
  .tc-select-wrap::after { content: ''; position: absolute; right: 16px; top: 50%; width: 8px; height: 8px; border-right: 2px solid #5b4e8a; border-bottom: 2px solid #5b4e8a; transform: translateY(-70%) rotate(45deg); pointer-events: none; }
  .tc-select { appearance: none; -webkit-appearance: none; background-image: none; padding-right: 34px; cursor: pointer; }
  .tc-modal-submit { display: flex; align-items: center; justify-content: space-between; width: 100%; padding: 6px 6px 6px 14px; background: linear-gradient(135deg, var(--purple-accent) 0%, #5a36e8 50%, var(--purple-accent-dark) 100%); color: var(--white); border: none; border-radius: 14px; font-family: var(--font-montserrat); font-size: 14px; font-weight: 700; cursor: pointer; transition: transform .2s ease, box-shadow .2s ease; margin-top: 6px; box-shadow: 0 8px 20px rgba(90, 54, 232, 0.35), 0 3px 8px rgba(74,38,214,0.25); position: relative; overflow: hidden; gap: 8px; min-height: 48px; }
  .tc-modal-submit:hover { transform: translateY(-2px); box-shadow: 0 14px 28px rgba(90, 54, 232, 0.45), 0 5px 12px rgba(74,38,214,0.3); }
  .tc-modal-submit:disabled { opacity: 0.6; cursor: not-allowed; transform: none; }
  .tc-submit-icon { width: 34px; height: 34px; border-radius: 50%; background: var(--white); color: #5a36e8; display: inline-flex; align-items: center; justify-content: center; flex-shrink: 0; box-shadow: 0 4px 10px rgba(0,0,0,0.15); }
  .tc-submit-icon svg { width: 15px; height: 15px; }
  .tc-submit-text { flex: 1; text-align: center; letter-spacing: -0.01em; }
  .tc-submit-arrow { width: 34px; height: 34px; border-radius: 50%; background: var(--white); color: #0f0a2e; display: inline-flex; align-items: center; justify-content: center; flex-shrink: 0; }
  .tc-submit-arrow svg { width: 15px; height: 15px; stroke-width: 2.5; }

  @media (max-width: 520px) {
      .tc-modal { padding: 8px; align-items: center; }
      .tc-modal-content { border-radius: 18px; max-height: 96vh; }
      .tc-modal-header { padding: 14px 14px 8px; gap: 10px; }
      .tc-modal-icon { width: 44px; height: 44px; }
      .tc-modal-heading { padding-right: 28px; }
      .tc-modal-header h3 { font-size: 16px; margin-bottom: 2px; }
      .tc-modal-header p { font-size: 11px; line-height: 1.3; }
      .tc-modal-body { padding: 2px 14px 14px; }
      .tc-form-group { margin-bottom: 8px; }
      .tc-form-label { font-size: 11.5px; margin-bottom: 4px; }
      .tc-input-icon { width: 30px; height: 30px; border-radius: 8px; }
      .tc-input-icon svg { width: 15px; height: 15px; }
      .tc-input-icon.wa svg { width: 17px; height: 17px; }
      .tc-form-control { font-size: 13px; padding: 7px 8px; }
      .tc-modal-submit { font-size: 13px; min-height: 44px; padding: 5px 5px 5px 12px; }
      .tc-submit-icon, .tc-submit-arrow { width: 30px; height: 30px; }
      .tc-submit-icon svg, .tc-submit-arrow svg { width: 13px; height: 13px; }
  }