/* ============================================================
   delete-account.css — Account deletion page styles
   ============================================================ */

/* ── Hero ── */
.da-hero {
  background: linear-gradient(135deg, #1a0a0a 0%, #4C0519 50%, #881337 100%);
  padding: 100px 0 56px;
  text-align: center;
}

.da-hero-inner {
  max-width: 680px;
  margin: 0 auto;
}

.da-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  color: #FCA5A5;
  font-size: 13px;
  font-weight: 600;
  padding: 7px 16px;
  border-radius: 999px;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.da-hero h1 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: clamp(32px, 5vw, 48px);
  font-weight: 800;
  color: #fff;
  margin-bottom: 16px;
  line-height: 1.15;
}

.da-hero p {
  font-size: 18px;
  color: rgba(255,255,255,0.7);
  line-height: 1.7;
  margin-bottom: 28px;
}

.da-hero-chips {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

.da-hero-chips span {
  display: flex;
  align-items: center;
  gap: 7px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  color: rgba(255,255,255,0.8);
  font-size: 13px;
  font-weight: 500;
  padding: 8px 16px;
  border-radius: 999px;
}

.da-hero-chips span i { color: #FCA5A5; }

/* ── Body Layout ── */
.da-body {
  background: #F8FAFC;
  padding: 48px 0 80px;
}

.da-container {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 40px;
  align-items: start;
}

/* ── Warning Banner ── */
.da-warning-banner {
  display: flex;
  gap: 16px;
  background: #FFF1F2;
  border: 1.5px solid #FDA4AF;
  border-radius: 16px;
  padding: 20px 24px;
  margin-bottom: 40px;
}

.da-warning-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: #FFE4E6;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: #E11D48;
  flex-shrink: 0;
}

.da-warning-text strong {
  display: block;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: #881337;
  margin-bottom: 6px;
}

.da-warning-text p {
  font-size: 14px;
  color: #9F1239;
  line-height: 1.6;
  margin: 0;
}

/* ── Steps Header ── */
.da-steps-header {
  margin-bottom: 28px;
}

.da-steps-header h2 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 24px;
  font-weight: 700;
  color: #0F172A;
  margin-bottom: 8px;
}

.da-steps-header p {
  font-size: 15px;
  color: #64748B;
}

/* ── Steps list ── */
.da-steps {
  list-style: none;
  padding: 0;
  margin: 0 0 48px;
  display: flex;
  flex-direction: column;
  gap: 0;
  position: relative;
}

/* Connector line */
.da-steps::before {
  content: '';
  position: absolute;
  left: 21px;
  top: 44px;
  bottom: 44px;
  width: 2px;
  background: linear-gradient(to bottom, #E2E8F0, #E2E8F0);
  z-index: 0;
}

.da-step {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  padding: 24px 0;
  border-bottom: 1px solid #F1F5F9;
  position: relative;
}

.da-step:last-child { border-bottom: none; }

.da-step-num {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, #2563EB, #1D4ED8);
  color: #fff;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 17px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  z-index: 1;
  box-shadow: 0 4px 12px rgba(37,99,235,0.3);
}

.da-step-num-done {
  background: linear-gradient(135deg, #16A34A, #15803D);
  box-shadow: 0 4px 12px rgba(22,163,74,0.3);
}

.da-step-done .da-step-body h3 { color: #16A34A; }

.da-step-body {
  flex: 1;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: center;
  min-width: 0;
}

.da-step-info h3 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: #0F172A;
  margin-bottom: 8px;
}

.da-step-info p {
  font-size: 15px;
  color: #475569;
  line-height: 1.7;
  margin: 0;
}

.da-step-tip {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  background: #EFF6FF;
  border: 1px solid #BFDBFE;
  border-radius: 10px;
  padding: 10px 14px;
  font-size: 13px;
  color: #1E40AF;
  margin-top: 12px;
  line-height: 1.5;
}

.da-step-tip i { color: #2563EB; flex-shrink: 0; margin-top: 1px; }
.da-step-tip a { color: #2563EB; font-weight: 600; }

.da-tip-warning {
  background: #FFF7ED;
  border-color: #FED7AA;
  color: #92400E;
}

.da-tip-warning i { color: #F97316; }

/* What gets deleted list */
.da-what-deleted {
  list-style: none;
  padding: 0;
  margin: 14px 0 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.da-what-deleted li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: #475569;
  padding: 8px 12px;
  background: #FFF1F2;
  border-radius: 8px;
}

.da-x { color: #E11D48; font-size: 12px; }

/* ── Timeline ── */
.da-timeline {
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 0;
  position: relative;
}

.da-timeline::before {
  content: '';
  position: absolute;
  left: 9px;
  top: 10px;
  bottom: 10px;
  width: 2px;
  background: #E2E8F0;
}

.da-tl-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 8px 0;
  position: relative;
}

.da-tl-dot {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #E2E8F0;
  border: 3px solid #fff;
  box-shadow: 0 0 0 2px #E2E8F0;
  flex-shrink: 0;
  z-index: 1;
  margin-top: 2px;
}

.da-tl-done .da-tl-dot {
  background: #16A34A;
  box-shadow: 0 0 0 2px #BBF7D0;
}

.da-tl-content strong {
  display: block;
  font-size: 14px;
  font-weight: 700;
  color: #0F172A;
  margin-bottom: 2px;
}

.da-tl-content span {
  font-size: 13px;
  color: #64748B;
}

/* ── Phone Mockup ── */
.da-step-visual { flex-shrink: 0; }

.da-mockup {
  width: 130px;
  background: #1E293B;
  border-radius: 20px;
  padding: 6px;
  box-shadow:
    0 20px 40px rgba(0,0,0,0.25),
    0 0 0 1px rgba(255,255,255,0.06);
}

.da-mockup-bar {
  width: 40px;
  height: 4px;
  background: #475569;
  border-radius: 999px;
  margin: 0 auto 6px;
}

.da-mockup-screen {
  background: #F8FAFC;
  border-radius: 14px;
  min-height: 200px;
  overflow: hidden;
  position: relative;
}

/* Screen: Home / App icon */
.da-screen-home {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 20px 12px;
}

.dm-app-icon img {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: block;
}

.dm-label {
  font-size: 11px;
  font-weight: 600;
  color: #0F172A;
}

.dm-tap-hint {
  font-size: 10px;
  color: #2563EB;
  display: flex;
  align-items: center;
  gap: 4px;
  background: #EFF6FF;
  padding: 4px 8px;
  border-radius: 999px;
}

/* Screen: Nav */
.da-screen-nav {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.dm-nav {
  display: flex;
  background: rgba(255,255,255,0.9);
  backdrop-filter: blur(8px);
  border-top: 1px solid #E2E8F0;
  padding: 10px 4px 6px;
}

.dm-nav-item {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  font-size: 8px;
  color: #94A3B8;
  position: relative;
}

.dm-nav-item i { font-size: 14px; }

.dm-nav-active {
  color: #2563EB;
  font-weight: 600;
}

/* Screen: Profile */
.da-screen-profile {
  padding: 12px;
}

.dm-profile-header {
  text-align: center;
  margin-bottom: 12px;
}

.dm-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: linear-gradient(135deg, #2563EB, #7C3AED);
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 6px;
}

.dm-profile-name { font-size: 11px; font-weight: 700; color: #0F172A; }
.dm-profile-email { font-size: 9px; color: #94A3B8; }

.dm-settings-btn {
  display: flex;
  align-items: center;
  gap: 6px;
  background: #F1F5F9;
  border-radius: 8px;
  padding: 8px 10px;
  font-size: 11px;
  color: #0F172A;
  font-weight: 600;
  position: relative;
  cursor: pointer;
}

.dm-settings-btn i { color: #2563EB; font-size: 12px; }
.dm-chevron { margin-left: auto; color: #94A3B8; font-size: 9px; }

/* Screen: Settings list */
.da-screen-settings { padding: 12px 8px; }

.dm-settings-list { display: flex; flex-direction: column; gap: 4px; }

.dm-setting-item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 10px;
  border-radius: 8px;
  font-size: 10px;
  color: #475569;
  font-weight: 500;
  position: relative;
}

.dm-setting-item i { font-size: 11px; color: #64748B; }

.dm-setting-active {
  background: #EFF6FF;
  color: #1D4ED8;
  font-weight: 700;
}

.dm-setting-active i { color: #2563EB; }

/* Screen: Account */
.da-screen-account { padding: 12px 8px; }

.dm-account-list { display: flex; flex-direction: column; gap: 4px; }

.dm-account-item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 9px 10px;
  border-radius: 8px;
  font-size: 10px;
  color: #475569;
  font-weight: 500;
  background: #F8FAFC;
  position: relative;
}

.dm-account-item i { font-size: 11px; color: #64748B; }

.dm-delete-btn {
  background: #FFF1F2 !important;
  color: #E11D48 !important;
  font-weight: 700 !important;
  border: 1px solid #FDA4AF;
}

.dm-delete-btn i { color: #E11D48 !important; }

/* Screen: Confirm dialog */
.da-screen-confirm {
  padding: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 210px;
}

.dm-dialog {
  background: #fff;
  border-radius: 12px;
  padding: 12px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.15);
  text-align: center;
  width: 100%;
}

.dm-dialog-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #FFF1F2;
  color: #E11D48;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  margin: 0 auto 8px;
}

.dm-dialog-title { font-size: 12px; font-weight: 700; color: #0F172A; margin-bottom: 4px; }
.dm-dialog-body  { font-size: 9px;  color: #64748B; margin-bottom: 8px; line-height: 1.5; }

.dm-dialog-input {
  background: #F1F5F9;
  border: 1px solid #E11D48;
  border-radius: 6px;
  padding: 5px 8px;
  font-size: 10px;
  font-weight: 700;
  color: #E11D48;
  letter-spacing: 1px;
  margin-bottom: 8px;
  text-align: center;
}

.dm-dialog-actions { display: flex; gap: 6px; }

.dm-btn-cancel {
  flex: 1;
  background: #F1F5F9;
  color: #475569;
  border-radius: 6px;
  padding: 6px;
  font-size: 10px;
  font-weight: 600;
  text-align: center;
}

.dm-btn-delete {
  flex: 1;
  background: #E11D48;
  color: #fff;
  border-radius: 6px;
  padding: 6px;
  font-size: 10px;
  font-weight: 700;
  text-align: center;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
}

/* Screen: Done */
.da-screen-done {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 200px;
}

.dm-success { text-align: center; padding: 16px; }

.dm-success-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #DCFCE7;
  color: #16A34A;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  margin: 0 auto 10px;
  border: 2px solid #BBF7D0;
}

.dm-success-title { font-size: 12px; font-weight: 700; color: #15803D; margin-bottom: 6px; }
.dm-success-body  { font-size: 9px; color: #64748B; line-height: 1.5; }

/* Tap ring pulse */
.dm-tap-ring {
  position: absolute;
  inset: -4px;
  border-radius: inherit;
  border: 2px solid #2563EB;
  opacity: 0.5;
  animation: pulse-ring 1.5s ease-out infinite;
  pointer-events: none;
}

.dm-tap-ring-red { border-color: #E11D48; }

@keyframes pulse-ring {
  0%   { transform: scale(1);    opacity: 0.6; }
  70%  { transform: scale(1.12); opacity: 0; }
  100% { transform: scale(1.12); opacity: 0; }
}

/* ── Alternative method ── */
.da-alt-method {
  background: #fff;
  border: 1px solid #E2E8F0;
  border-radius: 20px;
  padding: 36px 40px;
}

.da-alt-method h2 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: #0F172A;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.da-alt-method h2 i { color: #2563EB; }

.da-alt-method > p {
  font-size: 15px;
  color: #475569;
  line-height: 1.7;
  margin-bottom: 24px;
}

.da-email-steps {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 24px;
}

.da-email-step {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 14.5px;
  color: #475569;
  line-height: 1.5;
}

.da-email-num {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #EFF6FF;
  border: 1.5px solid #BFDBFE;
  color: #2563EB;
  font-size: 13px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.da-email-step a { color: #2563EB; font-weight: 600; }

.da-email-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 15px;
  padding: 13px 28px;
  text-decoration: none;
}

/* ── Sidebar ── */
.da-sidebar {
  position: sticky;
  top: 130px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.da-info-card {
  background: #fff;
  border: 1px solid #E2E8F0;
  border-radius: 16px;
  padding: 20px;
}

.da-info-card h3 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: #0F172A;
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.da-info-card h3 i { color: #2563EB; }

.da-info-card-green { border-color: #BBF7D0; }
.da-info-card-green h3 i { color: #16A34A; }

.da-info-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.da-info-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13.5px;
  line-height: 1.5;
}

.da-info-del { color: #475569; }
.da-info-del i { color: #E11D48; font-size: 11px; }

.da-info-keep { color: #475569; }
.da-info-keep i { color: #16A34A; font-size: 11px; }

/* Alt options card */
.da-info-card-alt > p {
  font-size: 13.5px;
  color: #64748B;
  margin-bottom: 14px;
  line-height: 1.6;
}

.da-alt-list { display: flex; flex-direction: column; gap: 12px; }

.da-alt-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13px;
}

.da-alt-item > i {
  color: #2563EB;
  font-size: 15px;
  width: 20px;
  flex-shrink: 0;
  margin-top: 1px;
}

.da-alt-item strong { display: block; font-size: 13px; color: #0F172A; margin-bottom: 2px; }
.da-alt-item span   { font-size: 12px; color: #64748B; line-height: 1.4; }

/* Contact card */
.da-info-card-contact {
  background: linear-gradient(135deg, #1E3A8A, #2563EB);
  border: none;
}

.da-info-card-contact h3 { color: #fff; }
.da-info-card-contact h3 i { color: #93C5FD; }

.da-info-card-contact > p {
  font-size: 13.5px;
  color: rgba(255,255,255,0.7);
  margin-bottom: 14px;
  line-height: 1.6;
}

.da-contact-link {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.2);
  color: #fff;
  text-decoration: none;
  font-size: 13px;
  font-weight: 600;
  padding: 10px 14px;
  border-radius: 10px;
  transition: background 0.2s;
  margin-bottom: 10px;
}

.da-contact-link:hover { background: rgba(255,255,255,0.22); }

.da-response-time {
  font-size: 12px;
  color: rgba(255,255,255,0.55);
  display: flex;
  align-items: center;
  gap: 6px;
  margin: 0;
}

.da-response-time i { color: #93C5FD; }

/* ── Responsive ── */
@media (max-width: 1024px) {
  .da-container { grid-template-columns: 1fr 260px; gap: 28px; }
}

@media (max-width: 768px) {
  .da-hero { padding: 80px 0 40px; }
  .da-hero p { font-size: 16px; }

  .da-container { grid-template-columns: 1fr; }

  .da-sidebar {
    position: static;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
  }

  .da-info-card-contact { grid-column: 1 / -1; }

  .da-step-body { grid-template-columns: 1fr; }
  .da-step-visual { display: none; }

  .da-alt-method { padding: 24px; }
  .da-steps::before { display: none; }
}

@media (max-width: 480px) {
  .da-hero-chips { flex-direction: column; align-items: center; }
  .da-sidebar { grid-template-columns: 1fr; }
  .da-warning-banner { flex-direction: column; }
  .da-info-card-contact { grid-column: auto; }
  .da-alt-method { padding: 20px 18px; }
  .da-steps-header h2 { font-size: 20px; }
}
