@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap");

html {
  scroll-padding-top: 84px;
}

:root {
  --primary: #e5487a;
  --primary-dark: #c53b68;
  --secondary: #7a3ff2;
  --bg-main: #0f0f14;
  --bg-surface: #171723;
  --text-main: #ffffff;
  --text-muted: #b7b7c9;
  --border: #2a2a3a;
  --success: #20c997;
  --shadow-soft: 0 10px 30px rgba(0, 0, 0, 0.25);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", Segoe UI, Roboto, Arial, sans-serif;
  background: var(--bg-main);
  color: var(--text-main);
  line-height: 1.6;
  background-image: radial-gradient(circle at 20% -10%, rgba(122, 63, 242, 0.2), transparent 35%),
    radial-gradient(circle at 80% -30%, rgba(229, 72, 122, 0.22), transparent 38%);
  background-attachment: fixed;
}

.container {
  width: min(1120px, 92%);
  margin: 0 auto;
}

.header {
  position: sticky;
  top: 0;
  z-index: 10;
  border-bottom: 1px solid var(--border);
  background: rgba(15, 15, 20, 0.9);
  backdrop-filter: blur(10px);
}

.nav {
  min-height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.logo {
  font-size: 1.1rem;
  font-weight: 700;
  text-decoration: none;
  color: var(--text-main);
  letter-spacing: 0.02em;
}

.links {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.links a {
  color: var(--text-muted);
  text-decoration: none;
}

.links a:hover {
  color: var(--text-main);
}

.hero {
  padding: 88px 0 44px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.86rem;
  border: 1px solid var(--border);
  border-radius: 999px;
  color: var(--text-muted);
  background: rgba(23, 23, 35, 0.82);
  padding: 6px 12px;
  margin-bottom: 14px;
}

h1,
h2,
h3 {
  line-height: 1.2;
  margin-top: 0;
}

h1 {
  font-size: clamp(2rem, 4vw, 3rem);
}

.hero p {
  color: var(--text-muted);
  max-width: 760px;
  font-size: 1.05rem;
}

.actions {
  margin-top: 24px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.btn {
  display: inline-block;
  padding: 12px 18px;
  border-radius: 10px;
  border: 1px solid transparent;
  font-weight: 600;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.btn:hover {
  transform: translateY(-1px);
  box-shadow: var(--shadow-soft);
}

.btn-primary {
  background: var(--primary);
  color: #fff;
}

.btn-primary:hover {
  background: var(--primary-dark);
}

.btn-outline {
  color: #fff;
  border-color: var(--border);
  background: rgba(255, 255, 255, 0.02);
}

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 16px;
  margin: 24px 0 56px;
}

.card {
  background: var(--bg-surface);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 18px;
  box-shadow: var(--shadow-soft);
}

.card h3 {
  margin-bottom: 8px;
}

.kpis {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
  gap: 14px;
  margin: 0 0 38px;
}

.kpi {
  border: 1px solid var(--border);
  border-radius: 12px;
  background: rgba(23, 23, 35, 0.86);
  padding: 14px;
}

.kpi-value {
  font-size: 1.5rem;
  line-height: 1.1;
  font-weight: 700;
}

.kpi-label {
  margin-top: 4px;
  color: var(--text-muted);
  font-size: 0.9rem;
}

.trust {
  margin: 8px 0 56px;
  padding: 20px;
  border: 1px solid var(--border);
  border-radius: 14px;
  background: linear-gradient(180deg, #1a1a2a, #141420);
  box-shadow: var(--shadow-soft);
}

.badge {
  color: var(--success);
  font-weight: 700;
}

.page {
  padding: 48px 0 64px;
}

.page p,
.page li {
  color: var(--text-muted);
}

.footer {
  border-top: 1px solid var(--border);
  margin-top: 28px;
}

.footer-wrap {
  min-height: 72px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.small {
  font-size: 0.9rem;
  color: var(--text-muted);
}

a:focus-visible,
.btn:focus-visible {
  outline: 2px solid var(--secondary);
  outline-offset: 2px;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.logo-mark {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.logo-icon {
  border-radius: 11px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.35);
}

.nav-shell {
  flex-wrap: nowrap;
}

.nav-end {
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav-panel {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}

.nav-link {
  color: var(--text-muted);
  text-decoration: none;
  font-weight: 500;
}

.nav-link:hover {
  color: var(--text-main);
}

.lang-row {
  display: inline-flex;
  border: 1px solid var(--border);
  border-radius: 10px;
  overflow: hidden;
  background: rgba(23, 23, 35, 0.65);
}

.lang-btn {
  font: inherit;
  font-size: 0.82rem;
  font-weight: 600;
  padding: 8px 12px;
  border: none;
  background: transparent;
  color: var(--text-muted);
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease;
}

.lang-btn:hover {
  color: var(--text-main);
  background: rgba(255, 255, 255, 0.04);
}

.lang-btn--active {
  color: #fff;
  background: rgba(229, 72, 122, 0.22);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid var(--border);
  border-radius: 10px;
  background: rgba(23, 23, 35, 0.9);
  cursor: pointer;
}

.nav-toggle-bar {
  display: block;
  width: 20px;
  height: 2px;
  margin: 0 auto;
  background: var(--text-main);
  border-radius: 2px;
  transition: transform 0.25s ease, opacity 0.2s ease;
}

body.nav-open .nav-toggle-bar:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

body.nav-open .nav-toggle-bar:nth-child(2) {
  opacity: 0;
}

body.nav-open .nav-toggle-bar:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1), transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

.hero-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.75fr);
  gap: 36px;
  align-items: center;
}

.hero-visual {
  position: relative;
  min-height: 220px;
}

.hero-orb {
  position: absolute;
  inset: auto 0 0 auto;
  width: min(100%, 320px);
  aspect-ratio: 1;
  border-radius: 32px;
  background: radial-gradient(circle at 30% 30%, rgba(229, 72, 122, 0.55), transparent 55%),
    radial-gradient(circle at 70% 60%, rgba(122, 63, 242, 0.5), transparent 50%);
  filter: blur(0px);
  animation: orb-float 9s ease-in-out infinite;
  opacity: 0.95;
}

.hero-card {
  position: relative;
  z-index: 1;
  margin: 0 auto;
  max-width: 280px;
  padding: 22px;
  border-radius: 22px;
  border: 1px solid var(--border);
  background: rgba(23, 23, 35, 0.92);
  box-shadow: var(--shadow-soft);
  text-align: center;
  animation: card-pop 0.9s cubic-bezier(0.22, 1, 0.36, 1) 0.15s both;
}

.hero-card img {
  width: 96px;
  height: 96px;
  border-radius: 22px;
  margin-bottom: 12px;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.35);
}

.hero-card p {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.92rem;
}

@keyframes orb-float {
  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }
  50% {
    transform: translate(-10px, -12px) scale(1.04);
  }
}

@keyframes card-pop {
  from {
    opacity: 0;
    transform: translateY(16px) scale(0.96);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

.legal-toolbar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 20px;
}

.legal-note {
  font-size: 0.9rem;
  color: var(--text-muted);
  max-width: 520px;
}

.legal-source {
  font-size: 0.88rem;
  color: var(--text-muted);
}

.legal-source a {
  color: var(--secondary);
}

#legal-status {
  font-size: 0.95rem;
  color: var(--text-muted);
  margin-bottom: 12px;
}

.legal-brief {
  margin-bottom: 20px;
  padding: 18px;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: rgba(23, 23, 35, 0.75);
}

.legal-brief p {
  margin: 0 0 10px;
  color: var(--text-muted);
  font-size: 0.95rem;
}

.legal-brief p:last-child {
  margin-bottom: 0;
}

.legal-brief-links a {
  color: var(--secondary);
}

.legal-content {
  padding: 8px 0 48px;
}

.legal-content h1 {
  font-size: 1.75rem;
  margin-bottom: 0.5rem;
}

.legal-content h2 {
  font-size: 1.2rem;
  margin-top: 1.75rem;
  color: var(--text-main);
}

.legal-content h3 {
  font-size: 1.05rem;
  margin-top: 1.25rem;
  color: var(--text-main);
}

.legal-content p,
.legal-content li {
  color: var(--text-muted);
}

.legal-content a {
  color: var(--secondary);
}

.legal-content ul {
  padding-left: 1.25rem;
}

.section {
  padding: 56px 0;
  scroll-margin-top: 84px;
}

.section-kicker {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin-bottom: 10px;
}

.section-title {
  font-size: clamp(1.45rem, 3vw, 2rem);
  margin: 0 0 12px;
}

.section-lead {
  color: var(--text-muted);
  max-width: 720px;
  margin: 0 0 28px;
  font-size: 1.05rem;
}

.doc-track {
  position: relative;
  border-left: 2px solid var(--border);
  margin-left: 12px;
  padding-left: 28px;
}

.doc-step {
  position: relative;
  padding-bottom: 28px;
}

.doc-step:last-child {
  padding-bottom: 0;
}

.doc-step::before {
  content: "";
  position: absolute;
  left: -37px;
  top: 6px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  box-shadow: 0 0 0 4px var(--bg-main);
}

.doc-step h3 {
  margin: 0 0 8px;
  font-size: 1.05rem;
}

.doc-step p {
  margin: 0;
  color: var(--text-muted);
}

.dual-split {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 18px;
  margin-bottom: 22px;
}

.profile-card {
  border-radius: 16px;
  padding: 22px;
  border: 1px solid var(--border);
  background: rgba(23, 23, 35, 0.75);
  position: relative;
  overflow: hidden;
}

.profile-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 3px;
  border-radius: 16px 16px 0 0;
}

.profile-card--classic::before {
  background: linear-gradient(90deg, #20c997, #7a3ff2);
}

.profile-card--spicy::before {
  background: linear-gradient(90deg, #e5487a, #7a3ff2);
}

.profile-card h3 {
  margin-top: 0;
}

.profile-card p {
  color: var(--text-muted);
  margin-bottom: 0;
}

.switch-banner {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 18px 20px;
  border-radius: 14px;
  border: 1px solid var(--border);
  background: linear-gradient(120deg, rgba(229, 72, 122, 0.12), rgba(122, 63, 242, 0.12));
}

.switch-icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--bg-surface);
  border: 1px solid var(--border);
  display: grid;
  place-items: center;
  font-size: 1.25rem;
}

.switch-banner p {
  margin: 0;
  color: var(--text-muted);
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 16px;
}

.feature-card {
  border-radius: 16px;
  padding: 20px;
  border: 1px solid var(--border);
  background: rgba(23, 23, 35, 0.88);
  box-shadow: var(--shadow-soft);
  min-height: 140px;
}

.feature-card h3 {
  margin: 0 0 8px;
  font-size: 1rem;
}

.feature-card p {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.95rem;
}

.privacy-panel {
  border-radius: 18px;
  padding: 24px;
  border: 1px solid var(--border);
  background: radial-gradient(ellipse 80% 60% at 20% 0%, rgba(32, 201, 151, 0.15), transparent),
    var(--bg-surface);
}

.privacy-panel p {
  margin: 0;
  color: var(--text-muted);
  max-width: 800px;
}

.spicy-panel {
  border-radius: 18px;
  padding: 24px;
  border: 1px solid rgba(122, 63, 242, 0.45);
  background: linear-gradient(160deg, rgba(122, 63, 242, 0.14), rgba(229, 72, 122, 0.1));
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.25);
}

.spicy-panel .section-kicker {
  color: var(--text-main);
  background: none;
  -webkit-text-fill-color: var(--primary);
}

.spicy-panel h2 {
  margin-top: 0;
}

.spicy-panel p {
  margin: 0;
  color: var(--text-muted);
  line-height: 1.65;
}

.rewards-block {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 16px;
}

.rewards-block article {
  padding: 20px;
  border-radius: 14px;
  border: 1px solid var(--border);
  background: rgba(23, 23, 35, 0.85);
}

.rewards-block p {
  margin: 0;
  color: var(--text-muted);
}

.qr-section {
  border-radius: 20px;
  padding: 28px 24px 32px;
  border: 1px solid var(--border);
  background: linear-gradient(180deg, rgba(23, 23, 35, 0.95), rgba(15, 15, 20, 0.98));
  text-align: center;
}

.qr-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 32px;
  margin-top: 20px;
}

.qr-block {
  flex: 0 1 220px;
}

.qr-frame {
  width: 168px;
  height: 168px;
  margin: 0 auto 12px;
  padding: 12px;
  border-radius: 16px;
  background: var(--bg-main);
  border: 1px dashed var(--border);
  display: grid;
  place-items: center;
}

.qr-frame img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  opacity: 0.92;
}

.qr-label {
  font-weight: 700;
  margin-bottom: 4px;
}

.qr-fake-note {
  font-size: 0.82rem;
  color: var(--text-muted);
  margin: 0 0 10px;
}

.reveal-child {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.65s cubic-bezier(0.22, 1, 0.36, 1), transform 0.65s cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal-child.is-visible {
  opacity: 1;
  transform: none;
}

.reveal-child--left {
  transform: translate(28px, 20px);
}

.reveal-child--right {
  transform: translate(-28px, 20px);
}

.reveal-child--left.is-visible,
.reveal-child--right.is-visible {
  transform: none;
}

.section--muted {
  background: rgba(23, 23, 35, 0.45);
  border-radius: 22px;
  border: 1px solid var(--border);
  padding: 40px 22px;
  margin: 32px 0;
}

@media (max-width: 900px) {
  .hero-layout {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    order: -1;
    min-height: 200px;
  }
}

@media (max-width: 720px) {
  .hero {
    padding-top: 58px;
  }

  .links {
    gap: 12px;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .nav-panel {
    position: fixed;
    left: 0;
    right: 0;
    top: 69px;
    padding: 18px 5% 22px;
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
    background: rgba(15, 15, 20, 0.97);
    border-bottom: 1px solid var(--border);
    transform: translateY(-8px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.25s ease, transform 0.25s ease;
    box-shadow: var(--shadow-soft);
  }

  .nav-panel.is-open {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }

  body.nav-open {
    overflow: hidden;
  }
}

@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .reveal-child {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .hero-orb,
  .hero-card {
    animation: none;
  }
}

/* Page suppression compte / données (vitrine) */
.delete-account-page {
  color-scheme: dark;
  padding-bottom: 4rem;
}

.delete-account-page .da-page-head {
  margin-bottom: 1.5rem;
  max-width: 42rem;
}

.delete-account-page .da-lead {
  margin: 0.75rem 0 0;
  font-size: 1.05rem;
  color: var(--text-muted);
  line-height: 1.65;
}

.delete-account-page .da-privacy-link {
  margin: 1rem 0 0;
}

.delete-account-page .da-privacy-link a {
  color: var(--secondary);
  font-weight: 500;
  text-decoration: none;
}

.delete-account-page .da-privacy-link a:hover {
  text-decoration: underline;
}

.delete-account-page .da-steps-card {
  margin-bottom: 1.75rem;
  padding: 1.35rem 1.5rem;
  max-width: 42rem;
}

.delete-account-page .da-steps-title {
  margin: 0 0 0.85rem;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--text-main);
}

.delete-account-page .da-steps-list {
  margin: 0;
  padding-left: 1.25rem;
  color: var(--text-muted);
  line-height: 1.65;
  font-size: 0.95rem;
}

.delete-account-page .da-steps-list li + li {
  margin-top: 0.5rem;
}

.delete-account-page .da-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(240px, 300px);
  gap: 1.5rem;
  align-items: start;
}

@media (max-width: 900px) {
  .delete-account-page .da-layout {
    grid-template-columns: 1fr;
  }
}

.delete-account-page .da-form {
  padding: 1.5rem 1.5rem 1.75rem;
}

.delete-account-page .da-form-title {
  margin: 0 0 1.25rem;
  font-size: 1.15rem;
  font-weight: 700;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid var(--border);
}

.delete-account-page .da-fieldset {
  margin: 0 0 1.5rem;
  padding: 0;
  border: none;
  min-width: 0;
}

.delete-account-page .da-fieldset:last-of-type {
  margin-bottom: 0.25rem;
}

.delete-account-page .da-legend {
  padding: 0;
  margin: 0 0 0.85rem;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-main);
}

.delete-account-page .da-legend-text {
  display: inline-block;
}

.delete-account-page .da-label-row {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0.5rem 0.75rem;
  margin-bottom: 0.35rem;
}

.delete-account-page .da-label {
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--text-main);
  cursor: pointer;
}

.delete-account-page .da-badge {
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  padding: 0.2rem 0.5rem;
  border-radius: 6px;
  line-height: 1.2;
}

.delete-account-page .da-badge--req {
  background: rgba(229, 72, 122, 0.2);
  color: #ffb3c9;
  border: 1px solid rgba(229, 72, 122, 0.45);
}

.delete-account-page .da-badge--opt {
  background: rgba(255, 255, 255, 0.06);
  color: var(--text-muted);
  border: 1px solid var(--border);
}

.delete-account-page .da-hint {
  margin: 0 0 0.65rem;
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.55;
}

.delete-account-page .da-callout {
  margin: 0 0 1rem;
  padding: 0.75rem 1rem;
  font-size: 0.88rem;
  line-height: 1.55;
  color: var(--text-muted);
  background: rgba(122, 63, 242, 0.1);
  border: 1px solid rgba(122, 63, 242, 0.28);
  border-radius: 10px;
}

.delete-account-page .da-field {
  margin: 0;
}

.delete-account-page .da-input,
.delete-account-page .da-textarea {
  display: block;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  padding: 12px 14px;
  border-radius: 10px;
  border: 1px solid var(--border);
  background-color: #12121a;
  color: #f4f4f8;
  font: inherit;
  font-size: 1rem;
  line-height: 1.45;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.delete-account-page .da-input::placeholder,
.delete-account-page .da-textarea::placeholder {
  color: #6e6e82;
  opacity: 1;
}

.delete-account-page .da-input:hover,
.delete-account-page .da-textarea:hover {
  border-color: #3d3d52;
}

.delete-account-page .da-input:focus,
.delete-account-page .da-textarea:focus {
  outline: none;
  border-color: var(--secondary);
  box-shadow: 0 0 0 3px rgba(122, 63, 242, 0.25);
}

.delete-account-page .da-textarea {
  min-height: 120px;
  resize: vertical;
}

.delete-account-page .da-input:-webkit-autofill,
.delete-account-page .da-input:-webkit-autofill:hover,
.delete-account-page .da-input:-webkit-autofill:focus {
  -webkit-box-shadow: 0 0 0 1000px #12121a inset;
  -webkit-text-fill-color: #f4f4f8;
  caret-color: #f4f4f8;
  border: 1px solid var(--border);
}

.delete-account-page .da-actions {
  margin-top: 1.75rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--border);
}

.delete-account-page .da-submit {
  width: 100%;
  max-width: 320px;
  padding: 14px 22px;
  font-size: 1rem;
  cursor: pointer;
  border: none;
}

.delete-account-page .da-submit:disabled {
  opacity: 0.65;
  cursor: not-allowed;
  transform: none;
}

.delete-account-page .da-status {
  margin: 1rem 0 0;
  font-size: 0.95rem;
  line-height: 1.5;
  min-height: 1.5em;
}

.delete-account-page .da-status.da-status--ok {
  color: var(--success);
  font-weight: 500;
}

.delete-account-page .da-status.da-status--err {
  color: #ff8a80;
  font-weight: 500;
}

.delete-account-page .da-aside {
  padding: 1.35rem 1.35rem 1.5rem;
  position: sticky;
  top: 88px;
}

.delete-account-page .da-aside-title {
  margin: 0 0 0.85rem;
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-main);
}

.delete-account-page .da-aside-list {
  margin: 0;
  padding-left: 1.15rem;
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.6;
}

.delete-account-page .da-aside-list li + li {
  margin-top: 0.55rem;
}

@media (max-width: 900px) {
  .delete-account-page .da-aside {
    position: static;
  }
}
