/* =========================================================
   MINUVIA DELETE ACCOUNT
   Shared navigation + footer come from styles.css
========================================================= */

:root {
  --delete-navy: #0B1F3C;
  --delete-blue: #246CF5;
  --delete-text: #304665;
  --delete-muted: #687991;
  --delete-line: #DDE6F1;
  --delete-pale: #F5F9FE;
  --delete-white: #FFFFFF;
  --delete-red: #D84B4B;
  --delete-red-pale: #FFF4F4;
}



/* =========================================================
   BASE
========================================================= */

html {
  scroll-behavior: smooth;
}


body {
  margin: 0;

  color: var(--delete-text);

  background: #FFFFFF;

  font-family:
    "Manrope",
    Arial,
    sans-serif;

  -webkit-font-smoothing: antialiased;
}


.delete-page {
  background: #FFFFFF;
}


.delete-container {
  width:
    min(
      980px,
      calc(100% - 40px)
    );

  margin: 0 auto;
}



/* =========================================================
   HERO
========================================================= */

.delete-hero {
  position: relative;

  padding:
    82px 0 70px;

  overflow: hidden;

  background:
    linear-gradient(
      135deg,
      #F8FBFF 0%,
      #FFFFFF 48%,
      #EEF5FF 100%
    );
}


.delete-heading {
  position: relative;

  z-index: 3;

  max-width: 900px;

  margin: 0 auto;

  text-align: center;
}


.delete-heading h1 {
  margin:
    0 0 18px;

  color:
    var(--delete-navy);

  font-size:
    clamp(
      46px,
      5.4vw,
      66px
    );

  line-height: 1;

  letter-spacing: -3px;
}


.delete-heading h1 span {
  color:
    var(--delete-blue);
}


.delete-heading p {
  max-width: 710px;

  margin: 0 auto;

  color:
    var(--delete-muted);

  font-size: 16px;

  line-height: 1.75;
}



/* =========================================================
   HERO ORBS
========================================================= */

.delete-orb {
  position: absolute;

  border-radius: 50%;

  pointer-events: none;
}


.delete-orb-left {
  width: 430px;
  height: 430px;

  left: -270px;
  bottom: -240px;

  background:
    rgba(
      201,
      221,
      250,
      0.35
    );
}


.delete-orb-right {
  width: 430px;
  height: 430px;

  right: -270px;
  top: -220px;

  background:
    rgba(
      201,
      221,
      250,
      0.30
    );
}



/* =========================================================
   CONTENT
========================================================= */

.delete-content-section {
  position: relative;

  padding:
    60px 0 100px;

  background:
    linear-gradient(
      180deg,
      #FFFFFF 0%,
      #F6F9FD 100%
    );
}



/* =========================================================
   CARDS
========================================================= */

.delete-card {
  margin-bottom: 22px;

  padding:
    32px 36px;

  border:
    1px solid #DCE6F2;

  border-radius: 24px;

  background: #FFFFFF;

  box-shadow:
    0 20px 50px
    rgba(
      11,
      31,
      60,
      0.065
    );
}


.delete-card:last-child {
  margin-bottom: 0;
}



/* =========================================================
   CARD HEADING
========================================================= */

.delete-card-heading {
  margin-bottom: 21px;

  display: flex;

  align-items: flex-start;

  gap: 14px;
}


.delete-card-number {
  flex:
    0 0 auto;

  width: 36px;
  height: 36px;

  border-radius: 10px;

  display: flex;

  align-items: center;
  justify-content: center;

  color:
    var(--delete-blue);

  background: #EFF5FF;

  font-size: 10px;

  font-weight: 900;
}


.delete-card-heading h2 {
  margin:
    2px 0 7px;

  color:
    var(--delete-navy);

  font-size: 23px;

  line-height: 1.25;

  letter-spacing: -0.7px;
}


.delete-card-heading p {
  margin: 0;

  color:
    var(--delete-muted);

  font-size: 14px;

  line-height: 1.7;
}


.delete-card > p {
  margin:
    0 0 15px;

  color:
    var(--delete-muted);

  font-size: 14px;

  line-height: 1.8;
}


.delete-card > p:last-child {
  margin-bottom: 0;
}


.delete-card strong {
  color:
    #263B58;
}



/* =========================================================
   DELETE STEPS
========================================================= */

.delete-steps {
  margin:
    10px 0 0;

  padding: 0;

  display: grid;

  gap: 12px;

  list-style: none;
}


.delete-steps li {
  min-height: 58px;

  padding:
    11px 15px;

  border:
    1px solid #DDE6F1;

  border-radius: 13px;

  display: flex;

  align-items: center;

  gap: 13px;

  color: #526780;

  background: #F9FBFD;

  font-size: 14px;

  line-height: 1.55;
}


.delete-step-number {
  flex:
    0 0 auto;

  width: 30px;
  height: 30px;

  border-radius: 50%;

  display: flex;

  align-items: center;
  justify-content: center;

  color: #FFFFFF;

  background:
    var(--delete-blue);

  font-size: 11px;

  font-weight: 900;
}



/* =========================================================
   WEB REQUEST CARD
========================================================= */

.delete-request-card {
  border-color: #CEE0FF;

  background:
    linear-gradient(
      135deg,
      #FFFFFF 0%,
      #F3F7FF 100%
    );
}


.delete-request-button {
  min-height: 48px;

  margin-top: 7px;

  padding:
    0 19px;

  border:
    1px solid var(--delete-red);

  border-radius: 11px;

  display: inline-flex;

  align-items: center;
  justify-content: center;

  gap: 9px;

  color: #FFFFFF;

  background:
    var(--delete-red);

  box-shadow:
    0 10px 22px
    rgba(
      216,
      75,
      75,
      0.16
    );

  font-size: 12px;

  font-weight: 800;

  text-decoration: none;

  transition:
    transform 0.18s ease,
    box-shadow 0.18s ease;
}


.delete-request-button:hover {
  transform:
    translateY(-2px);

  box-shadow:
    0 13px 28px
    rgba(
      216,
      75,
      75,
      0.23
    );
}


.delete-email-row {
  margin-top: 20px;

  padding-top: 17px;

  border-top:
    1px solid #DBE5F1;

  display: flex;

  align-items: center;

  flex-wrap: wrap;

  gap: 10px;
}


.delete-email-row > span {
  color:
    var(--delete-blue);

  font-size: 9px;

  font-weight: 900;

  letter-spacing: 0.5px;
}


.delete-email-row a {
  color:
    var(--delete-blue);

  font-size: 13px;

  font-weight: 800;

  text-decoration: none;
}


.delete-email-row a:hover {
  text-decoration: underline;
}



/* =========================================================
   INFO GRID
========================================================= */

.delete-info-grid {
  margin-top: 20px;

  display: grid;

  grid-template-columns:
    repeat(
      2,
      minmax(0, 1fr)
    );

  gap: 13px;
}


.delete-info-box {
  min-height: 145px;

  padding:
    19px;

  border:
    1px solid #DDE6F1;

  border-radius: 15px;

  background: #F8FAFD;
}


.delete-info-box > span {
  display: block;

  margin-bottom: 7px;

  color:
    var(--delete-blue);

  font-size: 9px;

  font-weight: 900;

  letter-spacing: 0.5px;
}


.delete-info-box strong {
  display: block;

  margin-bottom: 8px;

  color:
    var(--delete-navy);

  font-size: 14px;
}


.delete-info-box p {
  margin: 0;

  color:
    var(--delete-muted);

  font-size: 12px;

  line-height: 1.7;
}



/* =========================================================
   WARNING CARD
========================================================= */

.delete-warning-card {
  border:
    1px solid #F3CCCC;

  background:
    linear-gradient(
      135deg,
      #FFFFFF,
      #FFF6F6
    );
}


.delete-card-number-warning {
  color:
    var(--delete-red);

  background:
    var(--delete-red-pale);
}


.delete-warning-card strong {
  color:
    #B93D3D;
}



/* =========================================================
   SUBSCRIPTION CARD
========================================================= */

.delete-subscription-card {
  background:
    linear-gradient(
      135deg,
      #FFFFFF,
      #F6F9FF
    );
}



/* =========================================================
   PRIVACY BUTTON
========================================================= */

.delete-privacy-button {
  min-height: 46px;

  padding:
    0 18px;

  border:
    1px solid var(--delete-blue);

  border-radius: 11px;

  display: inline-flex;

  align-items: center;
  justify-content: center;

  gap: 9px;

  color: #FFFFFF;

  background:
    var(--delete-blue);

  box-shadow:
    0 10px 22px
    rgba(
      36,
      108,
      245,
      0.15
    );

  font-size: 12px;

  font-weight: 800;

  text-decoration: none;

  transition:
    transform 0.18s ease,
    box-shadow 0.18s ease;
}


.delete-privacy-button:hover {
  transform:
    translateY(-2px);

  box-shadow:
    0 13px 28px
    rgba(
      36,
      108,
      245,
      0.22
    );
}



/* =========================================================
   TABLET
========================================================= */

@media (max-width: 900px) {

  .delete-hero {
    padding:
      65px 0 55px;
  }


  .delete-heading h1 {
    font-size: 54px;

    letter-spacing: -2.5px;
  }


  .delete-content-section {
    padding:
      45px 0 80px;
  }

}



/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 650px) {

  .delete-container {
    width:
      calc(
        100% - 26px
      );
  }


  .delete-hero {
    padding:
      52px 0 45px;
  }


  .delete-heading h1 {
    font-size: 42px;

    letter-spacing: -2px;
  }


  .delete-heading p {
    font-size: 14px;
  }


  .delete-content-section {
    padding:
      32px 0 60px;
  }


  .delete-card {
    padding:
      24px 20px;

    border-radius: 20px;
  }


  .delete-card-heading {
    gap: 11px;
  }


  .delete-card-heading h2 {
    font-size: 20px;
  }


  .delete-card > p,
  .delete-card-heading p,
  .delete-steps li {
    font-size: 13px;
  }


  .delete-info-grid {
    grid-template-columns: 1fr;
  }


  .delete-info-box {
    min-height: auto;
  }


  .delete-request-button,
  .delete-privacy-button {
    width: 100%;
  }


  .delete-email-row {
    align-items: flex-start;

    flex-direction: column;
  }

}