.subpage-body {
  background: #f7f8f2;
}

.subpage-main {
  padding-top: 96px;
}

.subpage-hero {
  position: relative;
  padding: 92px 0 58px;
  overflow: hidden;
  background:
    radial-gradient(circle at 88% 10%, rgba(200, 241, 223, .9), transparent 30%),
    linear-gradient(145deg, #f7f8f2, #eef5eb);
  border-bottom: 1px solid var(--line);
}

.subpage-hero::after {
  position: absolute;
  width: 240px;
  height: 240px;
  right: -90px;
  bottom: -145px;
  border: 1px solid rgba(13, 124, 102, .16);
  border-radius: 50%;
  box-shadow: 0 0 0 55px rgba(13, 124, 102, .035), 0 0 0 110px rgba(13, 124, 102, .02);
  content: "";
}

.subpage-hero .container {
  position: relative;
  z-index: 1;
}

.subpage-hero h1 {
  max-width: 880px;
  margin: 0;
  color: var(--ink);
  font: 700 clamp(42px, 6vw, 72px)/1.04 "Manrope", sans-serif;
  letter-spacing: -.055em;
}

.subpage-hero .lead {
  max-width: 760px;
  margin: 23px 0 0;
  color: var(--ink-soft);
  font-size: 18px;
}

.updated-date {
  display: inline-flex;
  margin-top: 24px;
  padding: 8px 12px;
  align-items: center;
  gap: 8px;
  color: #41635b;
  background: rgba(255, 255, 255, .72);
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
}

.legal-section {
  padding: 58px 0 110px;
}

.legal-content,
.deletion-card,
.deletion-details .col-lg-9 {
  padding: clamp(28px, 5vw, 64px);
  color: var(--ink);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 28px;
  box-shadow: 0 22px 65px rgba(8, 42, 34, .07);
}

.legal-content > :first-child,
.deletion-card > :first-child,
.deletion-details .col-lg-9 > :first-child {
  margin-top: 0;
}

.legal-content p,
.legal-content li,
.deletion-card p,
.deletion-card li,
.deletion-details p,
.deletion-details li,
.timeline span {
  color: #405d56;
  line-height: 1.78;
}

.legal-content p {
  margin: 0 0 18px;
}

.legal-content p > b:only-child,
.legal-content p > strong:only-child {
  display: block;
  margin-top: 42px;
  color: var(--ink);
  font: 800 18px/1.35 "Manrope", sans-serif;
  letter-spacing: -.02em;
}

.legal-content ul,
.legal-content ol,
.deletion-card ul,
.deletion-card ol,
.deletion-details ul {
  margin: 16px 0 28px;
  padding-left: 24px;
}

.legal-content li,
.deletion-card li,
.deletion-details li {
  margin: 8px 0;
  padding-left: 5px;
}

.legal-content br {
  display: none;
}

.legal-content a,
.deletion-card a,
.deletion-details a {
  color: var(--green);
  font-weight: 700;
  text-decoration: underline;
  text-decoration-color: rgba(13, 124, 102, .35);
  text-underline-offset: 3px;
}

.legal-content table {
  display: block;
  max-width: 100%;
  margin: 24px 0;
  overflow-x: auto;
  border-collapse: collapse;
}

.legal-content th,
.legal-content td {
  padding: 12px 14px;
  border: 1px solid var(--line);
  text-align: left;
}

.policy-note,
.support-note {
  margin: 30px 0 0;
  padding: 22px 24px;
  background: #edf7f2;
  border: 0;
  border-left: 4px solid var(--green);
  border-radius: 0 16px 16px 0;
}

.policy-note strong,
.support-note h3 {
  color: var(--ink);
}

.policy-note strong {
  display: block;
  margin-bottom: 6px;
}

.deletion-content {
  padding: 58px 0 28px;
}

.deletion-content .deletion-card {
  box-shadow: 0 22px 65px rgba(8, 42, 34, .07);
}

.deletion-card h2,
.deletion-details h2 {
  margin-bottom: 22px;
  color: var(--ink);
  font: 700 clamp(28px, 4vw, 40px)/1.15 "Manrope", sans-serif;
  letter-spacing: -.04em;
}

.deletion-card h3,
.deletion-details h3 {
  color: var(--ink);
  font: 700 18px/1.35 "Manrope", sans-serif;
}

.steps-list {
  padding: 0 !important;
  counter-reset: deletion-step;
  list-style: none;
}

.steps-list li {
  position: relative;
  min-height: 48px;
  margin: 0 !important;
  padding: 12px 0 18px 62px !important;
  counter-increment: deletion-step;
  border-bottom: 1px solid var(--line);
}

.steps-list li::before {
  position: absolute;
  left: 0;
  top: 8px;
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  color: var(--green);
  background: #dff2e7;
  border-radius: 50%;
  content: counter(deletion-step, decimal-leading-zero);
  font-size: 11px;
  font-weight: 800;
}

.deletion-details {
  padding: 28px 0 110px;
  background: transparent;
}

.timeline {
  margin: 32px 0;
  padding-left: 27px;
  border-left: 2px solid #b9e3d4;
}

.timeline > div {
  position: relative;
  display: grid;
  gap: 5px;
  margin-bottom: 28px;
}

.timeline > div::before {
  position: absolute;
  width: 14px;
  height: 14px;
  left: -35px;
  top: 5px;
  background: var(--green);
  border: 3px solid #fff;
  border-radius: 50%;
  box-shadow: 0 0 0 2px #b9e3d4;
  content: "";
}

.timeline strong {
  color: var(--ink);
  font-family: "Manrope", sans-serif;
}

.subpage-footer {
  margin-top: 0;
}

@media (max-width: 760px) {
  .subpage-main { padding-top: 61px; }
  .subpage-hero { padding: 70px 0 44px; }
  .subpage-hero h1 { font-size: clamp(38px, 12vw, 54px); }
  .subpage-hero .lead { font-size: 16px; }
  .legal-section { padding: 28px 0 72px; }
  .legal-content, .deletion-card, .deletion-details .col-lg-9 { padding: 25px 20px; border-radius: 20px; }
  .deletion-content { padding: 28px 0 14px; }
  .deletion-details { padding: 14px 0 72px; }
  .steps-list li { padding-left: 54px !important; }
}
