@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@600;700;800;900&family=DM+Sans:opsz,wght@9..40,400;9..40,500;9..40,600;9..40,700&display=swap');

/* ════════════════════════════════════════════════════════
   DOWNLOAD ACCESS PAGE  [azoma_download_access]
════════════════════════════════════════════════════════ */

.azoma-dl-wrap {
  max-width: 520px;
  margin: 0 auto;
  font-family: 'DM Sans', sans-serif;
  -webkit-font-smoothing: antialiased;
}

/* Header */
.azoma-dl-header {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 24px;
  background: linear-gradient(135deg, #f5f3ff 0%, #ede9fe 100%);
  border: 1px solid #ddd6fe;
  border-radius: 16px;
  margin-bottom: 16px;
}
.azoma-dl-icon-ring {
  width: 56px; height: 56px; flex-shrink: 0;
  background: linear-gradient(135deg, #7c3aed, #9333ea);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: #fff;
  box-shadow: 0 4px 20px rgba(124, 58, 237, .28);
}
.azoma-dl-title {
  font-family: 'Outfit', sans-serif;
  font-size: 20px; font-weight: 800;
  color: #111827; margin: 0 0 3px; padding: 0;
  border: none; line-height: 1.2;
}
.azoma-dl-subtitle {
  font-size: 13.5px; color: #6b7280; margin: 0;
}

/* Single file button */
.azoma-dl-btn-main {
  display: flex;
  align-items: center; justify-content: center; gap: 10px;
  width: 100%; padding: 16px;
  font-family: 'Outfit', sans-serif;
  font-size: 16px; font-weight: 700;
  color: #fff;
  background: linear-gradient(135deg, #7c3aed, #9333ea);
  border-radius: 12px;
  text-decoration: none;
  margin-bottom: 16px;
  box-shadow: 0 4px 20px rgba(124, 58, 237, .3),
              inset 0 1px 0 rgba(255,255,255,.12);
  transition: filter .18s, transform .18s;
  box-sizing: border-box;
}
.azoma-dl-btn-main:hover {
  filter: brightness(1.08);
  transform: translateY(-1px);
  box-shadow: 0 8px 28px rgba(124, 58, 237, .4);
  color: #fff; text-decoration: none;
}

/* Multiple files list */
.azoma-dl-files {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 14px;
  overflow: hidden;
  margin-bottom: 16px;
  box-shadow: 0 1px 4px rgba(0,0,0,.05);
}
.azoma-dl-files-header {
  display: flex; align-items: center; gap: 7px;
  padding: 12px 18px;
  background: #f9fafb;
  border-bottom: 1px solid #e5e7eb;
  font-family: 'Outfit', sans-serif;
  font-size: 12.5px; font-weight: 700;
  color: #374151;
  text-transform: uppercase; letter-spacing: .5px;
}
.azoma-dl-file-row {
  display: flex; align-items: center; gap: 12px;
  padding: 14px 18px;
  border-bottom: 1px solid #f3f4f6;
  transition: background .15s;
}
.azoma-dl-file-row:last-child { border-bottom: none; }
.azoma-dl-file-row:hover { background: #fafafa; }
.azoma-dl-file-icon {
  width: 38px; height: 38px; flex-shrink: 0;
  background: #f5f3ff; border: 1px solid #ede9fe;
  border-radius: 9px;
  display: flex; align-items: center; justify-content: center;
}
.azoma-dl-file-info { flex: 1; min-width: 0; }
.azoma-dl-file-name {
  font-size: 13.5px; font-weight: 600; color: #111827;
  overflow: hidden; text-overflow: ellipsis; white-space: nowrap;
}
.azoma-dl-file-meta { font-size: 11.5px; color: #9ca3af; margin-top: 2px; }
.azoma-dl-file-btn {
  display: inline-flex; align-items: center; gap: 5px;
  padding: 8px 16px; flex-shrink: 0;
  font-family: 'Outfit', sans-serif;
  font-size: 12px; font-weight: 700;
  color: #fff;
  background: linear-gradient(135deg, #7c3aed, #9333ea);
  border-radius: 8px; text-decoration: none;
  white-space: nowrap;
  transition: filter .15s, transform .15s;
}
.azoma-dl-file-btn:hover {
  filter: brightness(1.1); transform: translateY(-1px);
  color: #fff; text-decoration: none;
}

/* Footer */
.azoma-dl-footer { text-align: center; }
.azoma-dl-expiry {
  display: inline-flex; align-items: center; gap: 5px;
  font-size: 12px; color: #6b7280;
  background: #f9fafb; border: 1px solid #e5e7eb;
  padding: 5px 12px; border-radius: 20px;
  margin-bottom: 10px;
}
.azoma-dl-support { font-size: 12px; color: #9ca3af; margin: 0; }


/* ════════════════════════════════════════════════════════
   THANK-YOU PAGE  [azoma_thankyou]
════════════════════════════════════════════════════════ */

.azoma-ty-wrap {
  max-width: 560px;
  margin: 0 auto;
  font-family: 'DM Sans', sans-serif;
  -webkit-font-smoothing: antialiased;
}

/* Hero */
.azoma-ty-hero {
  text-align: center;
  padding: 44px 24px 36px;
  background: linear-gradient(160deg, #f0fdf4 0%, #f5f3ff 100%);
  border: 1px solid #d1fae5;
  border-radius: 20px;
  margin-bottom: 20px;
  position: relative;
  overflow: hidden;
}
.azoma-ty-hero::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, #10b981, #7c3aed, #10b981);
}
.azoma-ty-check {
  width: 76px; height: 76px;
  background: linear-gradient(135deg, #10b981, #34d399);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px;
  box-shadow: 0 6px 28px rgba(16, 185, 129, .32);
  animation: asf-pop .5s cubic-bezier(.34,1.56,.64,1) forwards;
}
@keyframes asf-pop {
  0%   { transform: scale(.6); opacity: 0; }
  100% { transform: scale(1);  opacity: 1; }
}
.azoma-ty-heading {
  font-family: 'Outfit', sans-serif;
  font-size: 28px; font-weight: 900;
  color: #111827; margin: 0 0 8px; padding: 0;
  letter-spacing: -.4px; border: none;
}
.azoma-ty-sub {
  font-size: 15px; color: #4b5563; margin: 0 0 16px;
}
.azoma-ty-badge {
  display: inline-flex; align-items: center; gap: 5px;
  font-size: 11px; font-weight: 700; text-transform: uppercase;
  letter-spacing: .5px; color: #6b7280;
  background: rgba(255,255,255,.7); border: 1px solid #e5e7eb;
  padding: 4px 12px; border-radius: 20px;
}

.azoma-ty-body { }

/* Cards */
.azoma-ty-card {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 16px;
  overflow: hidden;
  margin-bottom: 16px;
  box-shadow: 0 1px 4px rgba(0,0,0,.05);
}
.azoma-ty-card-head {
  display: flex; align-items: center; gap: 7px;
  padding: 13px 20px;
  background: #f9fafb;
  border-bottom: 1px solid #e5e7eb;
  font-family: 'Outfit', sans-serif;
  font-size: 12.5px; font-weight: 700;
  color: #374151;
  text-transform: uppercase; letter-spacing: .5px;
}

/* Order rows */
.azoma-ty-rows { }
.azoma-ty-row {
  display: flex; align-items: flex-start;
  padding: 12px 20px;
  border-bottom: 1px solid #f3f4f6;
}
.azoma-ty-row-last { border-bottom: none; }
.azoma-ty-row-label {
  width: 130px; flex-shrink: 0;
  font-size: 13px; color: #6b7280; font-weight: 500;
}
.azoma-ty-row-value {
  flex: 1; font-size: 13.5px; color: #111827; font-weight: 600;
}
.azoma-ty-mono {
  font-family: 'JetBrains Mono', 'Courier New', monospace;
  font-size: 12.5px; font-weight: 600;
  background: #f5f3ff; color: #7c3aed;
  padding: 2px 8px; border-radius: 5px;
  border: 1px solid #ede9fe;
}
.azoma-ty-amount {
  font-family: 'Outfit', sans-serif;
  font-size: 18px; font-weight: 800;
  color: #10b981;
}

/* Download CTA card */
.azoma-ty-download-card {
  background: linear-gradient(135deg, #f5f3ff 0%, #ede9fe 100%);
  border: 1px solid #ddd6fe;
  border-radius: 16px;
  padding: 28px 24px;
  text-align: center;
  margin-bottom: 16px;
}
.azoma-ty-dl-icon { font-size: 44px; margin-bottom: 12px; line-height: 1; }
.azoma-ty-dl-title {
  font-family: 'Outfit', sans-serif;
  font-size: 18px; font-weight: 800;
  color: #111827; margin: 0 0 8px; padding: 0; border: none;
}
.azoma-ty-dl-sub {
  font-size: 13.5px; color: #6b7280; margin: 0 0 22px;
}
.azoma-ty-dl-btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  padding: 15px 36px;
  font-family: 'Outfit', sans-serif;
  font-size: 15.5px; font-weight: 800;
  color: #fff;
  background: linear-gradient(135deg, #7c3aed, #9333ea);
  border-radius: 12px; text-decoration: none;
  box-shadow: 0 4px 20px rgba(124,58,237,.35),
              inset 0 1px 0 rgba(255,255,255,.15);
  transition: filter .18s, transform .18s, box-shadow .18s;
}
.azoma-ty-dl-btn:hover {
  filter: brightness(1.1);
  transform: translateY(-2px);
  box-shadow: 0 10px 32px rgba(124,58,237,.45);
  color: #fff; text-decoration: none;
}
.azoma-ty-dl-expiry {
  display: inline-flex; align-items: center; gap: 5px;
  font-size: 12px; color: #9ca3af; margin: 14px 0 0;
}

/* What's next */
.azoma-ty-next {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 16px;
  padding: 20px;
  margin-bottom: 16px;
  box-shadow: 0 1px 4px rgba(0,0,0,.05);
}
.azoma-ty-next-title {
  font-family: 'Outfit', sans-serif;
  font-size: 13px; font-weight: 700;
  color: #374151; margin: 0 0 14px; padding: 0; border: none;
  text-transform: uppercase; letter-spacing: .5px;
}
.azoma-ty-steps { display: flex; flex-direction: column; gap: 12px; }
.azoma-ty-step {
  display: flex; align-items: flex-start; gap: 12px;
  font-size: 13.5px; color: #374151; line-height: 1.55;
}
.azoma-ty-step-num {
  width: 24px; height: 24px; flex-shrink: 0;
  background: linear-gradient(135deg, #7c3aed, #9333ea);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 11px; font-weight: 800; color: #fff;
  margin-top: 1px;
}
.azoma-ty-mono-inline {
  font-family: 'JetBrains Mono', 'Courier New', monospace;
  font-size: 11.5px; background: #f5f3ff; color: #7c3aed;
  padding: 1px 6px; border-radius: 4px; border: 1px solid #ede9fe;
}

.azoma-ty-support {
  font-size: 12.5px; color: #9ca3af; text-align: center; margin: 0;
}

/* Responsive */
@media (max-width: 540px) {
  .azoma-ty-heading  { font-size: 22px; }
  .azoma-ty-hero     { padding: 32px 16px 28px; }
  .azoma-ty-dl-btn   { padding: 14px 24px; font-size: 14px; }
  .azoma-ty-row-label{ width: 100px; font-size: 12px; }
  .azoma-dl-file-btn { padding: 7px 12px; font-size: 11.5px; }
}
