
/* ── Brand Tokens ──────────────────────────── */
:root {
  --brand-gradient : linear-gradient(135deg, #ff7396 0%, #e8507a 50%, #c93060 100%);
  --brand-mid      : #e8507a;
  --brand-dark     : #c93060;
  --brand-bg       : linear-gradient(135deg, #fff0f4 0%, #ffe6ed 100%);
  --brand-bg-flat  : #fff0f4;
  --brand-border   : #ffd0dc;
  --brand-border-2 : #ffc0ce;

  --text-primary   : #1a1a1a;
  --text-secondary : #555555;
  --text-muted     : #888888;
  --text-faint     : #aaaaaa;
  --text-notice    : #8a2a4a;

  --surface        : #fafafa;
  --surface-border : #ebebeb;
  --divider        : #f0f0f0;

  --radius-sm  : 8px;
  --radius-md  : 10px;
  --radius-lg  : 12px;
  --radius-xl  : 16px;
  --radius-pill: 50%;
}

/* ── Page Wrapper ─────────────────────────────────────────── */
.ddp-wrap {
  max-width: 780px;
  margin: 40px auto;
  padding: 0 20px 60px;
  font-family: 'Segoe UI', Georgia, sans-serif;
  color: var(--text-primary);
  line-height: 1.75;
  box-sizing: border-box;
}

/* ── Page Header ──────────────────────────────────────────── */
.ddp-header {
  text-align: center;
  padding: 48px 32px 40px;
  background: var(--brand-bg);
  border-radius: var(--radius-xl);
  margin-bottom: 40px;
  border: 1px solid var(--brand-border);
}

.ddp-header__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  background: var(--brand-gradient);
  border-radius: var(--radius-pill);
  margin-bottom: 18px;
}

.ddp-header__icon svg {
  display: block;
}

.ddp-header h1 {
  margin: 0 0 12px;
  font-size: 28px;
  font-weight: 700;
  color: var(--text-primary);
  letter-spacing: -0.3px;
}

.ddp-header p {
  margin: 0 auto;
  font-size: 16px;
  color: #666;
  max-width: 520px;
}

.ddp-header p strong {
  color: var(--brand-dark);
}

/* ── Notice Banner ────────────────────────────────────────── */
.ddp-notice {
  background: var(--brand-bg-flat);
  border-left: 4px solid var(--brand-mid);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  padding: 16px 20px;
  margin-bottom: 36px;
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.ddp-notice svg {
  flex-shrink: 0;
  margin-top: 2px;
}

.ddp-notice p {
  margin: 0;
  font-size: 14.5px;
  color: var(--text-notice);
}

/* ── Section Shell ────────────────────────────────────────── */
.ddp-section {
  margin-bottom: 32px;
}

.ddp-section__head {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}

.ddp-step-badge {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  background: var(--brand-gradient);
  border-radius: var(--radius-pill);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  line-height: 1;
}

.ddp-step-badge--sm {
  width: 28px;
  height: 28px;
  font-size: 12px;
}

.ddp-section__head h2 {
  margin: 0;
  font-size: 19px;
  font-weight: 700;
  color: var(--text-primary);
}

.ddp-card {
  background: var(--surface);
  border: 1px solid var(--surface-border);
  border-radius: var(--radius-md);
  padding: 20px 24px;
}

.ddp-card p {
  margin: 0 0 14px;
  font-size: 15px;
  color: var(--text-secondary);
}

.ddp-card p:last-child {
  margin-bottom: 0;
}

/* ── Checklist ────────────────────────────────────────────── */
.ddp-checklist {
  margin: 0;
  padding: 0;
  list-style: none;
}

.ddp-checklist li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 9px 0;
  border-bottom: 1px solid var(--divider);
  font-size: 15px;
  color: #333;
}

.ddp-checklist li:last-child {
  border-bottom: none;
}

.ddp-checklist svg {
  flex-shrink: 0;
  margin-top: 3px;
}

/* ── Dot List ─────────────────────────────────────────────── */
.ddp-dotlist {
  margin: 0;
  padding: 0;
  list-style: none;
}

.ddp-dotlist li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 7px 0;
  font-size: 15px;
  color: #444;
}

.ddp-dotlist__dot {
  color: var(--brand-dark);
  font-weight: 700;
  font-size: 18px;
  flex-shrink: 0;
  line-height: 1.4;
}

/* ── Email CTA Box ────────────────────────────────────────── */
.ddp-email-cta {
  background: #fff;
  border: 1.5px solid var(--brand-border-2);
  border-radius: var(--radius-md);
  padding: 18px 20px;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

.ddp-email-cta__left {
  display: flex;
  align-items: center;
  gap: 12px;
}

.ddp-email-cta__icon {
  width: 40px;
  height: 40px;
  background: var(--brand-bg-flat);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.ddp-email-cta__label {
  font-size: 12px;
  color: var(--text-muted);
  margin-bottom: 2px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.ddp-email-cta__address {
  font-size: 16px;
  font-weight: 600;
  color: var(--brand-dark);
  text-decoration: none;
  word-break: break-all;
}

.ddp-email-cta__address:hover {
  text-decoration: underline;
}

.ddp-btn {
  display: inline-block;
  background: var(--brand-gradient);
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  padding: 10px 20px;
  border-radius: var(--radius-sm);
  text-decoration: none;
  white-space: nowrap;
  transition: opacity 0.2s ease;
}

.ddp-btn:hover {
  opacity: 0.88;
  color: #fff;
  text-decoration: none;
}

.ddp-btn--lg {
  font-size: 15px;
  padding: 12px 28px;
}

.ddp-include-label {
  margin: 0 0 10px;
  font-size: 14px;
  font-weight: 600;
  color: #333;
}

/* ── Two-Column Grid (Sections 3 & 4) ────────────────────── */
.ddp-grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 32px;
}

.ddp-grid-2 .ddp-card {
  padding: 20px;
}

.ddp-grid-2 .ddp-section__head {
  margin-bottom: 12px;
}

.ddp-grid-2 .ddp-section__head h2 {
  font-size: 16px;
}

.ddp-grid-2 .ddp-card p {
  font-size: 14.5px;
  line-height: 1.7;
}

.ddp-grid-2 .ddp-card p strong {
  color: var(--brand-dark);
}

.ddp-grid-2 .ddp-card p.ddp-fine {
  font-size: 13.5px;
  color: var(--text-muted);
}

/* ── Contact Section ──────────────────────────────────────── */
.ddp-contact {
  background: var(--brand-bg);
  border: 1px solid var(--brand-border);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  text-align: center;
}

.ddp-contact__head {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
  justify-content: center;
}

.ddp-contact__head h2 {
  margin: 0;
  font-size: 18px;
  font-weight: 700;
  color: var(--text-primary);
}

.ddp-contact p {
  margin: 0 auto 20px;
  font-size: 15px;
  color: #666;
  max-width: 460px;
}

.ddp-contact__note {
  margin: 14px 0 0 !important;
  font-size: 13px;
  color: var(--text-faint);
}

.ddp-contact__note a {
  color: var(--brand-dark);
  text-decoration: none;
}

.ddp-contact__note a:hover {
  text-decoration: underline;
}

/* ── Related Links Footer ─────────────────────────────────── */
.ddp-related {
  margin-top: 36px;
  padding-top: 24px;
  border-top: 1px solid var(--surface-border);
  text-align: center;
}

.ddp-related__label {
  margin: 0 0 12px;
  font-size: 13px;
  color: var(--text-faint);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-weight: 600;
}

.ddp-related__links {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.ddp-related__links a {
  font-size: 14px;
  color: var(--brand-dark);
  text-decoration: none;
  font-weight: 500;
}

.ddp-related__links a:hover {
  text-decoration: underline;
}

.ddp-related__sep {
  color: #ddd;
  font-size: 14px;
}

/* ============================================================
   RESPONSIVE BREAKPOINTS
   ============================================================ */

/* ── Tablet: 600px – 780px ────────────────────────────────── */
@media (max-width: 780px) {
  .ddp-wrap {
    margin: 24px auto;
    padding: 0 16px 48px;
  }

  .ddp-header {
    padding: 36px 24px 32px;
    border-radius: var(--radius-lg);
    margin-bottom: 28px;
  }

  .ddp-header h1 {
    font-size: 24px;
  }

  .ddp-header p {
    font-size: 15px;
  }
}

/* ── Mobile: ≤ 600px ──────────────────────────────────────── */
@media (max-width: 600px) {
  .ddp-wrap {
    margin: 16px auto;
    padding: 0 14px 40px;
  }

  .ddp-header {
    padding: 28px 18px 26px;
    border-radius: var(--radius-md);
    margin-bottom: 22px;
  }

  .ddp-header__icon {
    width: 52px;
    height: 52px;
    margin-bottom: 14px;
  }

  .ddp-header h1 {
    font-size: 21px;
    letter-spacing: 0;
  }

  .ddp-header p {
    font-size: 14px;
  }

  .ddp-notice {
    padding: 14px 16px;
    margin-bottom: 24px;
  }

  .ddp-notice p {
    font-size: 13.5px;
  }

  /* Stack the step badge + heading on very small screens if needed */
  .ddp-section__head h2 {
    font-size: 17px;
  }

  .ddp-card {
    padding: 16px 18px;
  }

  .ddp-checklist li,
  .ddp-dotlist li {
    font-size: 14px;
  }

  /* Email CTA: stack vertically on mobile */
  .ddp-email-cta {
    flex-direction: column;
    align-items: flex-start;
    padding: 16px;
  }

  .ddp-email-cta__address {
    font-size: 14px;
  }

  .ddp-btn {
    width: 100%;
    text-align: center;
    padding: 12px 16px;
    box-sizing: border-box;
  }

  /* Grid: stack to single column on mobile */
  .ddp-grid-2 {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .ddp-contact {
    padding: 24px 18px;
  }

  .ddp-contact p {
    font-size: 14px;
  }

  .ddp-btn--lg {
    width: 100%;
    text-align: center;
    box-sizing: border-box;
    padding: 13px 16px;
  }

  .ddp-related__links {
    flex-direction: column;
    gap: 10px;
  }

  .ddp-related__sep {
    display: none;
  }
}

/* ── Small Mobile: ≤ 380px ────────────────────────────────── */
@media (max-width: 380px) {
  .ddp-header h1 {
    font-size: 19px;
  }

  .ddp-step-badge {
    width: 28px;
    height: 28px;
    font-size: 12px;
  }

  .ddp-section__head h2 {
    font-size: 16px;
  }

  .ddp-card {
    padding: 14px;
  }
}